| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-08-05 | memory: Make prototype parameter names match their definitions | Lioncash | |
| Keeps the code consistent. | |||
| 2018-08-05 | memory: Correct prototype of ZeroBlock | Lioncash | |
| Previously, the prototype wasn't matching the definition, which has a Processor parameter before the destination address. | |||
| 2018-08-05 | memory: Remove unnecessary const qualifiers in prototypes | Lioncash | |
| These aren't necessary, as value-wise const only matters in the definition. | |||
| 2018-08-03 | core/memory: Get rid of 3DS leftovers | Lioncash | |
| Removes leftover code from citra that isn't needed. | |||
| 2018-06-22 | Kernel/Arbiters: Fix casts, cleanup comments/magic numbers | Michael Scire | |
| 2018-04-24 | gl_rasterizer_cache: Update to be based on GPU addresses, not CPU addresses. | bunnei | |
| 2018-03-31 | memory: Fix stack region. | bunnei | |
| 2018-03-26 | memory: Add RasterizerMarkRegionCached code and cleanup. | bunnei | |
| 2018-03-23 | Merge pull request #265 from bunnei/tegra-progress-2 | bunnei | |
| Tegra progress 2 | |||
| 2018-03-23 | rasterizer: Flush and invalidate regions should be 64-bit. | bunnei | |
| 2018-03-22 | memory: Port RasterizerFlushVirtualRegion from Citra. | bunnei | |
| 2018-03-22 | Remove more N3DS References | N00byKing | |
| 2018-03-16 | memory: Add regions for map region, "new" map region, etc. | bunnei | |
| 2018-02-12 | arm_dynarmic: Support direct page table access | MerryMage | |
| 2018-01-27 | memory: Replace all memory hooking with Special regions | MerryMage | |
| 2018-01-16 | Update memory.h | David | |
| 2018-01-16 | Increased heap size and changed tls area vaddr | David Marcec | |
| 2018-01-01 | core/video_core: Fix a bunch of u64 -> u32 warnings. | bunnei | |
| 2017-12-28 | svc: Implement MapMemory. | bunnei | |
| 2017-10-22 | memory: Support 32-bit paging, move heap address space up. | bunnei | |
| 2017-10-09 | Merge remote-tracking branch 'upstream/master' into nx | bunnei | |
| # Conflicts: # src/core/CMakeLists.txt # src/core/arm/dynarmic/arm_dynarmic.cpp # src/core/arm/dyncom/arm_dyncom.cpp # src/core/hle/kernel/process.cpp # src/core/hle/kernel/thread.cpp # src/core/hle/kernel/thread.h # src/core/hle/kernel/vm_manager.cpp # src/core/loader/3dsx.cpp # src/core/loader/elf.cpp # src/core/loader/ncch.cpp # src/core/memory.cpp # src/core/memory.h # src/core/memory_setup.h | |||
| 2017-10-09 | loader: Various improvements for NSO/NRO loaders. | bunnei | |
| 2017-10-01 | Memory: Make WriteBlock take a Process parameter on which to operate | Subv | |
| 2017-10-01 | Memory: Make ReadBlock take a Process parameter on which to operate | Subv | |
| 2017-09-30 | core: Various changes to support 64-bit addressing. | bunnei | |
| 2017-09-26 | Memory: Allow IsValidVirtualAddress to be called with a specific process ↵ | Subv | |
| parameter. There is still an overload of IsValidVirtualAddress that only takes the VAddr and will default to the current process. | |||
| 2017-09-24 | memory: Remove GetCurrentPageTablePointers | MerryMage | |
| 2017-09-24 | memory: Add GetCurrentPageTable/SetCurrentPageTable | MerryMage | |
| Don't expose Memory::current_page_table as a global. | |||
| 2017-09-15 | Kernel/Memory: Changed GetPhysicalPointer so that it doesn't go through the ↵ | Subv | |
| current process' page table to obtain a pointer. | |||
| 2017-09-10 | Kernel/Memory: Give each Process its own page table. | Subv | |
| The loader is in charge of setting the newly created process's page table as the main one during the loading process. | |||
| 2017-06-21 | Memory: Add function to flush a virtual range from the rasterizer cache | Yuri Kunde Schlesner | |
| This is slightly more ergonomic to use, correctly handles virtual regions which are disjoint in physical addressing space, and checks only regions which can be cached by the rasterizer. | |||
| 2017-06-21 | Memory: Add TryVirtualToPhysicalAddress, returning a boost::optional | Yuri Kunde Schlesner | |
| 2017-06-21 | Memory: Make PhysicalToVirtualAddress return a boost::optional | Yuri Kunde Schlesner | |
| And fix a few places in the code to take advantage of that. | |||
| 2017-06-20 | Memory: Add enum definitions for the n3DS FCRAM size | Yuri Kunde Schlesner | |
| 2017-05-09 | Memory: Add constants for the n3DS additional RAM | Yuri Kunde Schlesner | |
| This is 4MB of extra, separate memory that was added on the New 3DS. | |||
| 2016-11-24 | Expose page table to dynarmic for optimized reads and writes to the JIT | James Rowe | |
| 2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | |
| This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | |||
| 2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | |
| 2016-08-27 | Memory: add ReadCString function | wwylele | |
| 2016-05-28 | Memory: Make ReadBlock and WriteBlock accept void pointers. | Subv | |
| 2016-05-28 | Memory: CopyBlock | MerryMage | |
| 2016-05-21 | Memory: ZeroBlock | MerryMage | |
| 2016-05-21 | Memory: ReadBlock/WriteBlock | MerryMage | |
| 2016-05-21 | Memory: IsValidVirtualAddress/IsValidPhysicalAddress | MerryMage | |
| 2016-05-12 | Merge pull request #1695 from Subv/tls_alloc | bunnei | |
| Kernel/Threads: Dynamically allocate the TLS region for threads. | |||
| 2016-05-07 | Kernel/Threads: Dynamically allocate the TLS region for threads in the BASE ↵ | Subv | |
| region of the linear heap. Each thread gets a 0x200-byte area from the 0x1000-sized page, when all 8 thread slots in a single page are used up, the kernel allocates a new page to hold another 8 entries. This is consistent with what the real kernel does. | |||
| 2016-04-21 | HWRasterizer: Texture forwarding | tfarley | |
| 2015-08-22 | Fix broken boot introduced by last-minute change in #1025 | Yuri Kunde Schlesner | |
| 2015-08-16 | Kernel: Implement svcGetProcessInfo in a basic way | Yuri Kunde Schlesner | |
| This also adds some basic memory usage accounting. These two types are used by Super Smash Bros. during startup. | |||
| 2015-08-16 | Kernel: Add more infrastructure to support different memory layouts | Yuri Kunde Schlesner | |
| This adds some structures necessary to support multiple memory regions in the future. It also adds support for different system memory types and the new linear heap mapping at 0x30000000. | |||
