Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Expose page table to dynarmic for optimized reads and writes to the JIT | James Rowe | 2016-11-25 | 1 | -0/+9 |
| | |||||
* | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 2016-09-21 | 1 | -1/+0 |
| | | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | ||||
* | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 2016-09-18 | 1 | -35/+35 |
| | |||||
* | Memory: add ReadCString function | wwylele | 2016-08-27 | 1 | -0/+3 |
| | |||||
* | Memory: Make ReadBlock and WriteBlock accept void pointers. | Subv | 2016-05-28 | 1 | -2/+2 |
| | |||||
* | Memory: CopyBlock | MerryMage | 2016-05-28 | 1 | -2/+2 |
| | |||||
* | Memory: ZeroBlock | MerryMage | 2016-05-21 | 1 | -0/+1 |
| | |||||
* | Memory: ReadBlock/WriteBlock | MerryMage | 2016-05-21 | 1 | -1/+3 |
| | |||||
* | Memory: IsValidVirtualAddress/IsValidPhysicalAddress | MerryMage | 2016-05-21 | 1 | -0/+3 |
| | |||||
* | Merge pull request #1695 from Subv/tls_alloc | bunnei | 2016-05-13 | 1 | -6/+0 |
|\ | | | | | Kernel/Threads: Dynamically allocate the TLS region for threads. | ||||
| * | Kernel/Threads: Dynamically allocate the TLS region for threads in the BASE region of the linear heap. | Subv | 2016-05-07 | 1 | -6/+0 |
| | | | | | | | | | | | | 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. | ||||
* | | HWRasterizer: Texture forwarding | tfarley | 2016-04-21 | 1 | -0/+16 |
|/ | |||||
* | Fix broken boot introduced by last-minute change in #1025 | Yuri Kunde Schlesner | 2015-08-22 | 1 | -1/+1 |
| | |||||
* | Kernel: Implement svcGetProcessInfo in a basic way | Yuri Kunde Schlesner | 2015-08-16 | 1 | -1/+3 |
| | | | | | This also adds some basic memory usage accounting. These two types are used by Super Smash Bros. during startup. | ||||
* | Kernel: Add more infrastructure to support different memory layouts | Yuri Kunde Schlesner | 2015-08-16 | 1 | -0/+5 |
| | | | | | | 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. | ||||
* | Memory: Move address type conversion routines to memory.cpp/h | Yuri Kunde Schlesner | 2015-08-16 | 1 | -0/+11 |
| | | | | | These helpers aren't really part of the kernel, and mem_map.cpp/h is going to be moved there next. | ||||
* | Memory: Move PAGE_MASK and PAGE_BITS to memory.h | Yuri Kunde Schlesner | 2015-08-16 | 1 | -0/+2 |
| | |||||
* | Common: Cleanup memory and misc includes. | Emmanuel Gil Peyrot | 2015-06-28 | 1 | -0/+2 |
| | |||||
* | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | 2015-05-29 | 1 | -1/+1 |
| | |||||
* | Memory: Use a table based lookup scheme to read from memory regions | Yuri Kunde Schlesner | 2015-05-15 | 1 | -0/+4 |
| | |||||
* | Memmap: Re-organize memory function in two files | Yuri Kunde Schlesner | 2015-05-15 | 1 | -0/+125 |
memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory. |