summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/vm_manager.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2019-04-17kernel/vm_manager: Remove usages of global system accessorsLioncash1-5/+2
2019-04-13kernel/svc: Implement svcUnmapProcessCodeMemoryLioncash1-0/+51
2019-04-13kernel/svc: Implement svcMapProcessCodeMemoryLioncash1-0/+29
2019-03-24kernel/vm_manager: Handle shrinking of the heap size within SetHeapSize()Lioncash1-21/+13
2019-03-24kernel/vm_manager: Rename HeapAllocate to SetHeapSizeLioncash1-1/+1
2019-03-24kernel/vm_manager: Handle case of identical calls to HeapAllocateLioncash1-0/+5
2019-03-24kernel/vm_manager: Remove unnecessary heap_used data memberLioncash1-6/+1
2019-03-24kernel/vm_manager: Tidy up heap allocation codeLioncash1-20/+22
2019-03-21kernel/vm_manager: Rename CodeStatic/CodeMutable to Code and CodeData respectivelyLioncash1-10/+10
2019-03-17core: Move PageTable struct into Common.bunnei1-3/+3
2019-03-05vm_manager: Remove cheat-specific ranges from VMManagerZach Hilman1-17/+0
2019-03-05vm_manager: Add support for storing and getting main code regionZach Hilman1-0/+17
2019-03-04vm_manager: Use range helpers in HeapAlloc() and HeapFree()Lioncash1-4/+2
2019-03-04vm_manager: Provide address range checking functions for other memory regionsLioncash1-0/+19
2019-03-04svc: Migrate address range checking functions to VMManagerLioncash1-2/+20
2018-12-27kernel/vm_manager: Reset region attributes when unmapping a VMALioncash1-0/+1
2018-12-19vm_manager: Add member function for setting memory attributes across an address rangeLioncash1-0/+28
2018-12-19vm_manager: Add member function for checking a memory range adheres to certain attributes, permissions and statesLioncash1-0/+60
2018-12-16vm_manager: Rename meminfo_state to stateLioncash1-8/+8
2018-12-16vm_manager: Add backing functionality for memory attributesLioncash1-1/+2
2018-12-12vm_manager: Amend the returned values for invalid memory queries in QueryMemory()Lioncash1-4/+4
2018-12-12vm_manager: Migrate memory querying to the VMManager interfaceLioncash1-0/+19
2018-12-12vm_manager: Amend MemoryState enum membersLioncash1-2/+2
2018-12-06vm_manager: Make vma_map privateLioncash1-0/+4
2018-11-18ldr_ro: Add error check for memory allocation failureZach Hilman1-3/+3
2018-11-13vm_manager: Unstub GetTotalHeapUsage()Lioncash1-2/+1
2018-11-13kernel/process: Migrate heap-related memory management out of the process class and into the vm managerLioncash1-0/+79
2018-10-26Kernel/Memory: Added a function to first a suitable guest address at which to allocate a region of a given size.bunnei1-0/+20
2018-10-18svc: Add missing sanitizing checks for MapSharedMemory/UnmapSharedMemoryLioncash1-0/+20
2018-10-15svc: Clarify enum values for AddressSpaceBaseAddr and AddressSpaceSize in svcGetInfo()Lioncash1-9/+26
2018-09-25svc: Report correct memory-related values within some of the cases in svcGetInfo()Lioncash1-5/+7
2018-09-25memory: Dehardcode the use of a 36-bit address spaceLioncash1-5/+13
2018-09-24process/vm_manager: Amend API to allow reading parameters from NPDM metadataLioncash1-8/+146
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-1/+1
2018-08-02kernel/vm_manager: Convert loop into std::any_of()Lioncash1-4/+4
2018-08-02kernel/vm_manager: Use const where applicableLioncash1-14/+14
2018-08-02kernel/vm_manager: Use the VAddr type alias in CarveVMA()Lioncash1-2/+2
2018-07-19vm_manager: Add missing commas to string literal array elements in GetMemoryStateName()Lioncash1-22/+12
2018-07-19core/memory, core/hle/kernel: Use std::move where applicableLioncash1-2/+3
2018-07-03Update clang formatJames Rowe1-5/+5
2018-07-03Rename logging macro back to LOG_*James Rowe1-5/+5
2018-05-11core: Implement multicore support.bunnei1-4/+19
2018-05-02general: Make formatting of logged hex values more straightforwardLioncash1-4/+4
2018-04-27core: Replace usages of LOG_GENERIC with new fmt-capable equivalentsLioncash1-4/+2
2018-04-27general: Convert assertion macros over to be fmt-compatibleLioncash1-4/+4
2018-04-26kernel: Migrate logging macros to fmt-compatible onesLioncash1-4/+4
2018-04-15vm_manager: Increase GetTotalMemoryUsage value.bunnei1-1/+1
2018-03-16arm_interface: Support unmapping previously mapped memory.bunnei1-0/+3
2018-03-16svc: Use more correct values for GetInfo MapRegion and NewMapRegion.bunnei1-15/+0
2018-03-16MemoryState: Add additional memory states and improve naming.bunnei1-3/+21
2018-02-14vm_manager: Silence formatting specifier warningsLioncash1-5/+7
2018-01-27memory: Replace all memory hooking with Special regionsMerryMage1-3/+3
2018-01-19svc: Fix svcGetInfo MapRegionBaseAddr.bunnei1-0/+5
2018-01-16Added more svcGetInfo pairsDavid Marcec1-2/+2
2018-01-16clang-formatMerryMage1-2/+3
2018-01-01vm_manager: Stub out a bunch of interfaces used by svcGetInfo.bunnei1-1/+33
2017-09-30core: Various changes to support 64-bit addressing.bunnei1-11/+11
2017-09-10Kernel/Memory: Give each Process its own page table.Subv1-4/+9
2017-05-25Kernel: Centralize error definitions in errors.hYuri Kunde Schlesner1-0/+1
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-3/+1
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-16/+20
2016-05-26Memory: Added necessary headers and removed unnecessary headerMerryMage1-0/+1
2016-01-30Memory: Implement MMIOMerryMage1-3/+4
2015-08-16Kernel: Properly implement ControlMemory FREE and COMMITYuri Kunde Schlesner1-10/+81
2015-08-16VMManager: Introduce names for used ResultCodesYuri Kunde Schlesner1-6/+3
2015-08-16VMManager: Make LogLayout log level configurable as a parameterYuri Kunde Schlesner1-3/+13
2015-08-16VMManager: Change block offsets to size_tYuri Kunde Schlesner1-1/+1
2015-07-12Core: Properly configure address space when loading a binaryYuri Kunde Schlesner1-0/+14
2015-06-28Core: Cleanup core includes.Emmanuel Gil Peyrot1-0/+2
2015-05-27Kernel: Add VMManager to manage process address spacesYuri Kunde Schlesner1-0/+245