summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_page_table.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-01-15hle: kernel: k_memory_manager: Clear pages on allocation & free.bunnei1-0/+1
- Heap pages should be zero'd. - Also explicitly passed along heap allocation option.
2022-01-12hle: kernel: k_page_table: Update SetProcessMemoryPermission.bunnei1-1/+2
2022-01-12hle: kernel: k_page_table: Rename *ProcessCodeMemory -> *CodeMemory.bunnei1-2/+2
2022-01-08core: hle: kernel: svc: Updates to SetMemoryAttribute and SetMemoryPermission.bunnei1-2/+1
2022-01-08core: hle: kernel: k_page_table: Update CheckMemoryState.bunnei1-11/+33
2021-12-28core: hle: kernel: Updated implementation of svcSetHeapSize.bunnei1-10/+9
- Updates our svcSetHeapSize with latest HOS, furthermore allowing heap size to properly be extended/shrunk. - Validated with tests https://github.com/Atmosphere-NX/Atmosphere/blob/master/tests/TestSvc/source/test_set_heap_size.cpp.
2021-12-23core: hle: kernel: Implement SetMemoryPermission.bunnei1-0/+1
- Not seen in any games yet, but validated with kernel tests.
2021-12-05kernel: svc: Implement Map/UnmapProcessMemory and Create/ControlCodeMemoryitsmeft241-0/+8
Used by Skyline modding framework
2021-11-21kernel: KPageTable: Rename SetCodeMemoryPermission to SetProcessMemoryPermissionMorph1-1/+1
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-1/+1
Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
2021-05-06hle: kernel: KPageTable: CanContain should not be constexpr.bunnei1-1/+1
2021-05-06hle: kernel: Improve MapSharedMemory and implement UnmapSharedMemory.bunnei1-1/+4
2021-05-06hle: kernel: Migrate KTransferMemory to KAutoObject.bunnei1-2/+2
2021-02-19hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei1-6/+4
2021-02-19hle: kernel: Migrate MemoryManager to KMemoryManager.bunnei1-3/+3
2021-02-19hle: kernel: Migrate PageLinkedList to KPageLinkedList.bunnei1-5/+6
2021-02-19hle: kernel: Migrate to KMemoryBlock, KMemoryBlockManager, and others.bunnei1-39/+42
2020-05-03kernel/memory: Remove unused includesLioncash1-2/+1
Prevents header churn and needing to recompile these files if these headers are ever changed in the future.
2020-04-23kernel: memory: Improve implementation of device shared memory. (#3707)bunnei1-0/+2
* kernel: memory: Improve implementation of device shared memory. * fixup! kernel: memory: Improve implementation of device shared memory. * fixup! kernel: memory: Improve implementation of device shared memory.
2020-04-17kernel: memory: page_table: Simplify GetPhysicalAddr impl.bunnei1-1/+3
2020-04-17kernel: memory: Add PageTable class, to manage process address space.bunnei1-0/+274