summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_address_space_info.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-02-19hle: kernel: Migrate AddressSpaceInfo to KAddressSpaceInfo.bunnei1-31/+29
2021-01-05core: Silence warnings when compiling without assertsReinUsesLisp1-0/+2
2020-10-21Revert "core: Fix clang build"bunnei1-2/+0
2020-10-18core: Fix clang buildLioncash1-0/+2
Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
2020-07-13address_space_info: Use type alias to simplify codeLioncash1-14/+13
We can define an alias for the index arrays and then just reuse it to make the code nicer to read.
2020-07-13address_space_info: Make use of designated initializersLioncash1-22/+22
We can alter the structure so that we can use designated initializers in the array, eliminating the comments that indicate their field names.
2020-05-03kernel/memory: Make use of std::array consistently in address_space_infoLioncash1-6/+6
This allows tuning standard library implementations to enable or disable range checks at runtime, which is nicer for debugging.
2020-05-03kernel/memory: Amend potential encoding warningsLioncash1-2/+2
While èis generally representable in some language encodings, in some it isn't and will result in compilation warnings occurring. To remain friendly with other language's codepages on Windows, we normalize it to an ASCII e.
2020-04-17core: hle: Address various feedback & code cleanup.bunnei1-10/+12
- Should be no functional changes.
2020-04-17memory: Add copyright notice for Atmosphere where applicable.bunnei1-0/+3
2020-04-17kernel: memory: Add AddressSpaceInfo class, for managing the memory address space.bunnei1-0/+113