summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_page_table.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2022-03-08hle: kernel: KPageTable: Improve implementations of MapCodeMemory and UnmapCodeMemory.bunnei1-45/+114
2022-02-28hle: kernel: k_memory_manager: Rework for latest kernel behavior.bunnei1-16/+30
2022-02-27hle: kernel: k_page_heap: Remove superfluous consexpr.bunnei1-2/+2
2022-02-19fixup! core: hle: kernel: KPageTable: Improve Un/MapPhysicalMemory.bunnei1-22/+2
2022-02-19core: hle: kernel: KPageTable: Fix UnmapPages.bunnei1-3/+2
2022-02-19core: hle: kernel: KPageTable: Improve Un/MapPhysicalMemory.bunnei1-107/+432
2022-02-02general: Replace NonCopyable struct with equivalentsLioncash1-0/+2
2022-02-02hle: kernel: KPageTable: Migrate locks to KScopedLightLock.bunnei1-28/+37
2022-01-23core: hle: kernel: KPageTable: Various improvements to MapPages and UnmapPages.bunnei1-22/+25
2022-01-23core: hle: kernel: KPageTable: MapProcessCode: Various cleanup.bunnei1-11/+12
2022-01-23core: hle: kernel: KPageTable: ReserveTransferMemory: Various cleanup.bunnei1-6/+6
2022-01-23core: hle: kernel: KPageTable: ResetTransferMemory: Various cleanup.bunnei1-6/+5
2022-01-23core: hle: kernel: KPageTable: SetMemoryAttribute: Various cleanup.bunnei1-2/+3
2022-01-22core: hle: kernel: KPageTable: Operate: Assert lock ownership.bunnei1-2/+2
2022-01-22core: hle: kernel: KPageTable: SetHeapSize: Cleanup & take physical memory lock.bunnei1-4/+7
2022-01-22core: hle: kernel: Refactor Un/MapPhysicalMemory to remove unnecessary methods.bunnei1-49/+38
2022-01-22core: hle: kernel: Rename Un/Map to Un/MapMeory.bunnei1-2/+2
2022-01-15hle: kernel: k_memory_manager: Clear pages on allocation & free.bunnei1-8/+9
2022-01-12hle: kernel: k_page_table: Update SetProcessMemoryPermission.bunnei1-31/+42
2022-01-12hle: kernel: k_page_table: ReadAndWrite -> UserReadWrite.bunnei1-14/+14
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-13/+25
2022-01-08core: hle: kernel: k_page_table: Update CheckMemoryState.bunnei1-97/+104
2021-12-28core: hle: kernel: Updated implementation of svcSetHeapSize.bunnei1-52/+115
2021-12-23core: hle: kernel: Implement SetMemoryPermission.bunnei1-0/+27
2021-12-06fix formattingitsmeft241-4/+1
2021-12-05kernel: svc: Implement Map/UnmapProcessMemory and Create/ControlCodeMemoryitsmeft241-1/+123
2021-11-21kernel: KPageTable: Rename SetCodeMemoryPermission to SetProcessMemoryPermissionMorph1-2/+2
2021-11-02general: Remove MakeResult helpersMorph1-2/+2
2021-10-13KPageTable: Perform ranged invalidation when unmapping code memoryMorph1-0/+2
2021-06-24common: Replace common_sizes into user-literalsWunkolo1-1/+4
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-30/+30
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-5/+5
2021-05-06hle: kernel: KPageTable: CanContain should not be constexpr.bunnei1-1/+1
2021-05-06hle: kernel: Improve MapSharedMemory and implement UnmapSharedMemory.bunnei1-0/+39
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-1/+1
2021-05-06hle: kernel: svc_results: Update naming..bunnei1-3/+3
2021-02-19hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei1-61/+62
2021-02-19hle: kernel: Migrate MemoryManager to KMemoryManager.bunnei1-1/+1
2021-02-19hle: kernel: Migrate PageLinkedList to KPageLinkedList.bunnei1-15/+15
2021-02-19hle: kernel: Migrate to KMemoryBlock, KMemoryBlockManager, and others.bunnei1-226/+230
2021-02-19hle: kernel: Migrate AddressSpaceInfo to KAddressSpaceInfo.bunnei1-17/+17
2021-02-19hle: kernel: KSystemControl does not belong in Memory namespace.bunnei1-5/+6
2021-02-13kernel: KScopedReservation implementationameerj1-16/+21
2021-02-13kernel: Unify result codes (#5890)Chloe1-24/+24
2021-02-03Simplify limitableresource namesChloe Marcec1-6/+5
2021-01-30kernel: Rewrite resource limit to be more accurateChloe Marcec1-6/+7
2021-01-02general: Fix various spelling errorsMorph1-6/+6
2020-12-30core/memory: Read and write page table atomicallyReinUsesLisp1-1/+1
2020-11-29core: arm: Implement InvalidateCacheRange for CPU cache invalidation.bunnei1-0/+5
2020-10-21Revert "core: Fix clang build"bunnei1-4/+2
2020-10-18core: Fix clang buildLioncash1-2/+4
2020-08-13General: Tidy up clang-format warnings part 2Lioncash1-10/+12
2020-08-05kernel: Remove unused variablesLioncash1-1/+0
2020-05-03kernel/memory: Remove unused includesLioncash1-1/+0
2020-04-23page_table: Remove unused capturesLioncash1-2/+2
2020-04-23kernel: memory: Improve implementation of device shared memory. (#3707)bunnei1-0/+44
2020-04-17core: hle: Address various feedback & code cleanup.bunnei1-178/+78
2020-04-17kernel: memory: page_table: Simplify GetPhysicalAddr impl.bunnei1-4/+0
2020-04-17core: system: Rename GetDeviceManager -> DeviceManager.bunnei1-1/+1
2020-04-17kernel: memory: Add PageTable class, to manage process address space.bunnei1-0/+1234