| Commit message (Expand) | Author | Files | Lines |
2020-01-31 | core/arm: Remove usage of global GetCurrentThread() | Lioncash | 1 | -1/+2 |
2020-01-26 | Core: Refactor CpuCoreManager to CpuManager and Cpu to Core Manager. | Fernando Sahmkow | 1 | -1/+1 |
2020-01-01 | core/memory + arm/dynarmic: Use a global offset within our arm page table. | Markus Wick | 1 | -0/+1 |
2019-11-27 | core/memory: Migrate over Write{8, 16, 32, 64, Block} to the Memory class | Lioncash | 2 | -15/+22 |
2019-11-27 | core/memory: Migrate over Read{8, 16, 32, 64, Block} to the Memory class | Lioncash | 1 | -6/+6 |
2019-11-27 | core: Prepare various classes for memory read/write migration | Lioncash | 2 | -4/+5 |
2019-11-12 | arm_unicorn: Resolve sign conversion warnings | Lioncash | 1 | -1/+1 |
2019-10-11 | Core_Timing: Address Feedback and suppress warnings. | Fernando Sahmkow | 1 | -1/+1 |
2019-10-09 | Core Timing: Rework Core Timing to run all cores evenly. | Fernando Sahmkow | 1 | -1/+1 |
2019-09-30 | Revert "arm_dynarmic: Check if jit is nullptr when preparing reschedule" | bunnei | 1 | -3/+0 |
2019-07-11 | core/arm: Remove obsolete Unicorn memory mapping | Lioncash | 2 | -12/+0 |
2019-06-10 | arm_dynarmic: Check if jit is nullptr when preparing reschedule | Zach Hilman | 1 | -0/+3 |
2019-04-12 | core/cpu_core_manager: Create threads separately from initialization. | Lioncash | 2 | -17/+12 |
2019-04-08 | kernel/svc: Deglobalize the supervisor call handlers | Lioncash | 2 | -15/+12 |
2019-04-07 | arm/arm_dynarmic: Remove unnecessary current_page_table member | Lioncash | 2 | -8/+0 |
2019-04-04 | core: Add missing override specifiers where applicable | Lioncash | 2 | -3/+2 |
2019-03-17 | core: Move PageTable struct into Common. | bunnei | 1 | -2/+2 |
2019-02-16 | Corrections, documenting and fixes. | Fernando Sahmkow | 1 | -1/+1 |
2019-02-16 | Use u128 on Clock Cycles calculation. | Fernando Sahmkow | 1 | -1/+1 |
2019-02-16 | Correct CNTPCT to use Clock Cycles instead of Cpu Cycles. | Fernando Sahmkow | 1 | -2/+3 |
2019-02-16 | core_timing: Convert core timing into a class | Lioncash | 2 | -6/+14 |
2019-02-12 | core_timing: Rename CoreTiming namespace to Core::Timing | Lioncash | 1 | -3/+3 |
2018-12-19 | Moved backtrace to ArmInterface | David Marcec | 2 | -18/+0 |
2018-12-18 | arm_dynarmic: Set CNTFRQ value | MerryMage | 1 | -0/+1 |
2018-12-03 | Moved backtrace to ArmInterface | David Marcec | 2 | -0/+18 |
2018-10-15 | core: Make the exclusive monitor a unique_ptr instead of a shared_ptr | Lioncash | 2 | -6/+5 |
2018-10-10 | kernel/thread: Use a regular pointer for the owner/current process | Lioncash | 1 | -1/+1 |
2018-10-04 | kernel/thread: Make all instance variables private | Lioncash | 1 | -1/+1 |
2018-09-30 | kernel/process: Make data member variables private | Lioncash | 1 | -2/+2 |
2018-09-30 | arm_interface: Add missing fpsr/tpidr members to the ThreadContext struct | Lioncash | 1 | -2/+6 |
2018-09-25 | memory: Dehardcode the use of a 36-bit address space | Lioncash | 1 | -2/+3 |
2018-09-23 | FPCR register was uninitialized at start up | Philippe Babin | 1 | -1/+1 |
2018-09-21 | arm_interface: Replace kernel vm_manager include with a forward declaration | Lioncash | 2 | -0/+5 |
2018-09-20 | arm_dynarmic: Halt when BRK encountered | MerryMage | 1 | -0/+1 |
2018-09-19 | arm_dynarmic: Support BKPT instruction | MerryMage | 1 | -0/+11 |
2018-09-18 | arm_dynarmic: Correct ExclusiveWrite128()'s operation | Lioncash | 1 | -2/+2 |
2018-09-18 | arm_interface: Remove ARM11-isms from the CPU interface | Lioncash | 2 | -26/+15 |
2018-09-15 | Port #4182 from Citra: "Prefix all size_t with std::" | fearlessTobi | 2 | -24/+25 |
2018-09-04 | Update microprofile scopes. | Markus Wick | 1 | -0/+4 |
2018-08-31 | core/core: Replace includes with forward declarations where applicable | Lioncash | 1 | -0/+1 |
2018-08-25 | core: Namespace all code in the arm subdirectory under the Core namespace | Lioncash | 2 | -0/+8 |
2018-08-16 | dynarmic: Update to 550d662 | MerryMage | 1 | -0/+3 |
2018-08-13 | arm_dynarmic: Remove IsExecuting check from PrepareReschedule | MerryMage | 1 | -3/+1 |
2018-08-13 | CPU/Timing: Use an approximated amortized amount of ticks when advancing timing. | Subv | 1 | -1/+10 |
2018-07-31 | kernel: Remove unnecessary includes | Lioncash | 1 | -1/+1 |
2018-07-31 | arm_dynarmic: Make SetTlsAddress() prototype and definition consistent | Lioncash | 1 | -1/+1 |
2018-07-31 | arm_dynarmic: Remove unnecessary qualifying of ThreadContext | Lioncash | 1 | -3/+3 |
2018-07-31 | arm_dynarmic: Correct initializer list order | Lioncash | 1 | -5/+3 |
2018-07-24 | arm_dynarmic: Make MakeJit() a const member function | Lioncash | 2 | -3/+3 |
2018-07-24 | exclusive_monitor: Use consistent type alias for u64 | Lioncash | 2 | -14/+12 |
2018-07-22 | Implement exclusive monitor | MerryMage | 2 | -8/+89 |
2018-07-21 | CPU: Save and restore the TPIDR_EL0 system register on every context switch. | Subv | 2 | -0/+10 |
2018-07-21 | arm_interface: Remove unused tls_address member of ThreadContext | Lioncash | 1 | -2/+0 |
2018-07-16 | scheduler: Clear exclusive state when switching contexts | MerryMage | 2 | -0/+5 |
2018-07-03 | Update clang format | James Rowe | 1 | -1/+1 |
2018-07-03 | Rename logging macro back to LOG_* | James Rowe | 1 | -1/+1 |
2018-05-02 | general: Make formatting of logged hex values more straightforward | Lioncash | 1 | -1/+1 |
2018-04-27 | general: Convert assertion macros over to be fmt-compatible | Lioncash | 1 | -1/+1 |
2018-04-26 | core: Replace remaining old non-generic logger usages with fmt-capable equivalents | Lioncash | 1 | -2/+2 |
2018-03-24 | arm_dynarmic: Fix timing | MerryMage | 1 | -7/+3 |
2018-03-16 | arm_interface: Support unmapping previously mapped memory. | bunnei | 2 | -1/+5 |
2018-03-14 | core: Move process creation out of global state. | bunnei | 1 | -1/+2 |
2018-02-25 | Implements citra-emu/citra#3184 | N00byKing | 2 | -8/+16 |
2018-02-21 | dynarmic: Update to 6b4c6b0 | MerryMage | 1 | -2/+18 |
2018-02-21 | arm_dynarmic: LOG_INFO on unicorn fallback | MerryMage | 1 | -0/+4 |
2018-02-12 | arm_dynarmic: Support direct page table access | MerryMage | 1 | -6/+14 |
2018-02-09 | dynarmic: Update to 41ae12263 | MerryMage | 2 | -31/+45 |
2018-01-20 | Fixes some cast warnings, partial port of citra #3064 (#106) | River City Ransomware | 1 | -3/+3 |
2018-01-13 | Update dynarmic to bc73004 | MerryMage | 1 | -12/+17 |
2018-01-13 | yuzu: Update license text to be consistent across project. | bunnei | 2 | -2/+2 |
2018-01-12 | arm_dynarmic: Implement core | MerryMage | 2 | -44/+142 |
2018-01-04 | arm_dynarmic: More cleanup. | bunnei | 1 | -6/+0 |
2018-01-04 | arm_dynarmic: Gut interface until dynarmic is ready for general use. | bunnei | 2 | -142/+44 |
2018-01-03 | arm: Remove SkyEye/Dyncom code that is ARMv6-only. | bunnei | 4 | -147/+6 |
2017-09-30 | arm_interface: Set TLS address for dynarmic core. | bunnei | 2 | -0/+16 |
2017-09-30 | arm: Use 64-bit addressing in a bunch of places. | bunnei | 2 | -52/+85 |
2017-09-30 | Moved down_count to CoreTiming | Huw Pascoe | 2 | -10/+1 |
2017-09-25 | ARM_Interface: Implement PageTableChanged | MerryMage | 2 | -6/+26 |
2017-09-15 | CPU/Dynarmic: Disable the fast page-table access in dynarmic until it supports switching page tables at runtime. | Subv | 1 | -1/+3 |
2017-08-21 | CPU/Dynarmic: Fixed a warning when incrementing the number of ticks in ExecuteInstructions. | Subv | 1 | -1/+1 |
2017-02-03 | arm_dynarmic: Update memory interface | MerryMage | 1 | -10/+10 |
2017-02-03 | arm_dynarmic: CP15 support | MerryMage | 4 | -5/+128 |
2016-12-22 | arm_dynarmic: Provide MemoryReadCode callback | MerryMage | 1 | -0/+1 |
2016-12-22 | ThreadContext: Move from "core" to "arm_interface". | bunnei | 2 | -8/+4 |
2016-12-11 | Core: Add a forgotten #include <cstring> for memcpy. | Emmanuel Gil Peyrot | 1 | -0/+1 |
2016-11-26 | dynarmic: Add ticks based on ticks executed, not ticks requested | MerryMage | 1 | -2/+2 |
2016-11-25 | Expose page table to dynarmic for optimized reads and writes to the JIT | James Rowe | 1 | -0/+1 |
2016-09-21 | Use negative priorities to avoid special-casing the self-include | Yuri Kunde Schlesner | 1 | -1/+1 |
2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 2 | -7/+2 |
2016-09-15 | arm_dynarmic: Implement GetVFPSystemReg/SetVFPSystemReg. | bunnei | 1 | -5/+12 |
2016-09-15 | arm: ResetContext shouldn't be part of ARM_Interface. | bunnei | 2 | -10/+0 |
2016-09-15 | arm_dynarmic/arm_dyncom: Remove unnecessary "virtual" keyword. | bunnei | 1 | -1/+1 |
2016-09-15 | dynarmic: Implement ARM CPU interface. | bunnei | 2 | -0/+227 |