summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_memory_manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-12-15common: use memory holepunching when clearing memoryLiam1-2/+3
2023-11-10kernel: add KPageTableBaseLiam1-8/+4
Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk>
2023-10-22kernel: update KProcessLiam1-14/+111
2023-10-20kernel: reshuffle ini1 size, add slab clear noteLiam1-4/+5
2023-03-22kernel: use KTypedAddress for addressesLiam1-25/+26
2023-01-08Revert "Revert "k_page_group: synchronize""bunnei1-4/+4
2022-12-29Revert "k_page_group: synchronize"gidoly1-4/+4
2022-12-25k_page_group: synchronizeLiam1-4/+4
2022-11-23general: fix compile for Apple ClangLiam1-2/+2
2022-11-04core: hle: kernel: k_memory_manager: Refresh.bunnei1-119/+151
2022-10-19core: device_memory: Templatize GetPointer(..).bunnei1-1/+1
2022-06-27core: kernel: Replace instances of KPageLinkedList with KPageGroupgerman771-6/+6
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-5/+5
2022-06-14common: Change semantics of UNREACHABLE to unconditionally crashLiam1-1/+1
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.
2022-03-19core: Reduce unused includesameerj1-1/+0
2022-02-28hle: kernel: k_memory_manager: Rework for latest kernel behavior.bunnei1-123/+346
- Updates the KMemoryManager implementation against latest documentation. - Reworks KMemoryLayout to be accessed throughout the kernel. - Fixes an issue with pool sizes being incorrectly reported.
2022-01-15hle: kernel: k_memory_manager: Clear pages on allocation & free.bunnei1-2/+13
- Heap pages should be zero'd. - Also explicitly passed along heap allocation option.
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-4/+4
Transition to PascalCase for result names.
2021-03-21hle: kernel: KMemoryManager: Add CalculateManagementOverheadSize.bunnei1-0/+12
2021-02-19hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei1-5/+5
2021-02-19hle: kernel: Migrate MemoryManager to KMemoryManager.bunnei1-16/+16
2021-02-19hle: kernel: Migrate PageLinkedList to KPageLinkedList.bunnei1-3/+3
2021-02-19hle: kernel: memory_manager: Rename AllocateContinuous to AllocateContinuous.bunnei1-2/+3
2021-02-19hle: kernel: memory: PageHeap: Migrate to KPageBitmap class.bunnei1-3/+3
2021-02-13kernel: Unify result codes (#5890)Chloe1-3/+3
* kernel: Unify result codes Drop the usage of ERR_NAME convention in kernel for ResultName. Removed seperation between svc_results.h & errors.h as we mainly include both most of the time anyways. * oops * rename errors to svc_results
2020-10-21Revert "core: Fix clang build"bunnei1-2/+2
2020-10-18core: Fix clang buildLioncash1-2/+2
Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
2020-06-25memory_manager: Remove useless assertionDavid Marcec1-1/+0
num_pages is an std::size_t. It will always be >= 0
2020-06-18memory_manager: Explicitly specifcy std::min<size_t>MerryMage1-2/+2
2020-05-03kernel/memory: Resolve -Wshadow warningsLioncash1-4/+4
Prevents variable name clashing.
2020-04-17core: hle: Address various feedback & code cleanup.bunnei1-15/+14
- Should be no functional changes.
2020-04-17kernel: memory: Add MemoryManager class, to manage page heaps.bunnei1-0/+177