summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_address_space_info.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-08general: fix type inconsistenciesLiam1-2/+2
2023-03-01kernel: simplify AddressSpaceInfo, update valuesLiam1-66/+13
2022-06-14common: Change semantics of UNREACHABLE to unconditionally crashLiam1-2/+2
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-06-24common: Replace common_sizes into user-literalsWunkolo1-16/+19
Removes common_sizes.h in favor of having `_KiB`, `_MiB`, `_GiB`, etc user-literals within literals.h. To keep the global namespace clean, users will have to use: ``` using namespace Common::Literals; ``` to access these literals.
2021-03-24common: common_sizes: Move sizes to the Common namespace.bunnei1-14/+15
2021-03-21common: common_sizes: Move Invalid to Size_* prefix and add missing values.bunnei1-14/+14
2021-03-21common: Move common sizes to their own header for code reuse.bunnei1-13/+1
2021-03-21hle: kernel: k_address_space_info: Cleanup.bunnei1-9/+9
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