summaryrefslogtreecommitdiffstats
path: root/src/core/arm/dynarmic/arm_dynarmic.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* core: track separate heap allocation for linuxLiam2023-12-261-0/+49
* core: Implement separate A32/A64 ARM interfaces.bunnei2020-03-031-320/+0
* ARM_Interface: Cache the JITs instead of deleting/recreating.Fernando Sahmkow2020-02-261-2/+9
* Core: Set all hardware emulation constants in a single file.Fernando Sahmkow2020-02-121-1/+2
* core/arm: Remove usage of global GetCurrentThread()Lioncash2020-01-311-1/+2
* Core: Refactor CpuCoreManager to CpuManager and Cpu to Core Manager.Fernando Sahmkow2020-01-261-1/+1
* core/memory + arm/dynarmic: Use a global offset within our arm page table.Markus Wick2020-01-011-0/+1
* core/memory: Migrate over Write{8, 16, 32, 64, Block} to the Memory classLioncash2019-11-271-14/+16
* core/memory: Migrate over Read{8, 16, 32, 64, Block} to the Memory classLioncash2019-11-271-6/+6
* core: Prepare various classes for memory read/write migrationLioncash2019-11-271-3/+5
* arm_unicorn: Resolve sign conversion warningsLioncash2019-11-121-1/+1
* Core_Timing: Address Feedback and suppress warnings.Fernando Sahmkow2019-10-111-1/+1
* Core Timing: Rework Core Timing to run all cores evenly.Fernando Sahmkow2019-10-091-1/+1
* Revert "arm_dynarmic: Check if jit is nullptr when preparing reschedule"bunnei2019-09-301-3/+0
* Merge pull request #2574 from DarkLordZach/dynarmic-jit-nullptrbunnei2019-09-301-0/+3
|\
| * arm_dynarmic: Check if jit is nullptr when preparing rescheduleZach Hilman2019-06-101-0/+3
* | core/arm: Remove obsolete Unicorn memory mappingLioncash2019-07-111-9/+0
|/
* core/cpu_core_manager: Create threads separately from initialization.Lioncash2019-04-121-15/+8
* kernel/svc: Deglobalize the supervisor call handlersLioncash2019-04-081-8/+9
* arm/arm_dynarmic: Remove unnecessary current_page_table memberLioncash2019-04-071-2/+0
* core: Add missing override specifiers where applicableLioncash2019-04-041-1/+0
* Corrections, documenting and fixes.Fernando Sahmkow2019-02-161-1/+1
* Use u128 on Clock Cycles calculation.Fernando Sahmkow2019-02-161-1/+1
* Correct CNTPCT to use Clock Cycles instead of Cpu Cycles.Fernando Sahmkow2019-02-161-2/+3
* core_timing: Convert core timing into a classLioncash2019-02-161-5/+7
* core_timing: Rename CoreTiming namespace to Core::TimingLioncash2019-02-121-3/+3
* arm_dynarmic: Set CNTFRQ valueMerryMage2018-12-181-0/+1
* core: Make the exclusive monitor a unique_ptr instead of a shared_ptrLioncash2018-10-151-4/+3
* kernel/thread: Use a regular pointer for the owner/current processLioncash2018-10-101-1/+1
* kernel/thread: Make all instance variables privateLioncash2018-10-041-1/+1
* kernel/process: Make data member variables privateLioncash2018-09-301-2/+2
* arm_interface: Add missing fpsr/tpidr members to the ThreadContext structLioncash2018-09-301-2/+6
* Merge pull request #1395 from lioncash/vmbunnei2018-09-291-2/+3
|\
| * memory: Dehardcode the use of a 36-bit address spaceLioncash2018-09-251-2/+3
* | FPCR register was uninitialized at start upPhilippe Babin2018-09-231-1/+1
|/
* arm_interface: Replace kernel vm_manager include with a forward declarationLioncash2018-09-211-0/+1
* arm_dynarmic: Halt when BRK encounteredMerryMage2018-09-201-0/+1
* arm_dynarmic: Support BKPT instructionMerryMage2018-09-191-0/+11
* Merge pull request #1344 from lioncash/armbunnei2018-09-181-20/+11
|\
| * arm_interface: Remove ARM11-isms from the CPU interfaceLioncash2018-09-181-20/+11
* | arm_dynarmic: Correct ExclusiveWrite128()'s operationLioncash2018-09-181-2/+2
|/
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-13/+14
* Update microprofile scopes.Markus Wick2018-09-041-0/+4
* core/core: Replace includes with forward declarations where applicableLioncash2018-08-311-0/+1
* core: Namespace all code in the arm subdirectory under the Core namespaceLioncash2018-08-251-0/+4
* dynarmic: Update to 550d662MerryMage2018-08-161-0/+3
* arm_dynarmic: Remove IsExecuting check from PrepareRescheduleMerryMage2018-08-131-3/+1
* CPU/Timing: Use an approximated amortized amount of ticks when advancing timing.Subv2018-08-131-1/+10
* Merge pull request #876 from lioncash/includebunnei2018-08-011-1/+1
|\
| * kernel: Remove unnecessary includesLioncash2018-07-311-1/+1
* | arm_dynarmic: Make SetTlsAddress() prototype and definition consistentLioncash2018-07-311-1/+1
* | arm_dynarmic: Remove unnecessary qualifying of ThreadContextLioncash2018-07-311-3/+3
* | arm_dynarmic: Correct initializer list orderLioncash2018-07-311-5/+3
|/
* arm_dynarmic: Make MakeJit() a const member functionLioncash2018-07-241-2/+2
* exclusive_monitor: Use consistent type alias for u64Lioncash2018-07-241-7/+6
* Implement exclusive monitorMerryMage2018-07-221-7/+60
* Merge pull request #750 from lioncash/ctxbunnei2018-07-211-2/+0
|\
| * arm_interface: Remove unused tls_address member of ThreadContextLioncash2018-07-211-2/+0
* | CPU: Save and restore the TPIDR_EL0 system register on every context switch.Subv2018-07-211-0/+8
|/
* scheduler: Clear exclusive state when switching contextsMerryMage2018-07-161-0/+4
* Update clang formatJames Rowe2018-07-031-1/+1
* Rename logging macro back to LOG_*James Rowe2018-07-031-1/+1
* general: Make formatting of logged hex values more straightforwardLioncash2018-05-021-1/+1
* general: Convert assertion macros over to be fmt-compatibleLioncash2018-04-271-1/+1
* core: Replace remaining old non-generic logger usages with fmt-capable equivalentsLioncash2018-04-261-2/+2
* arm_dynarmic: Fix timingMerryMage2018-03-241-7/+3
* Merge pull request #193 from N00byKing/3184_2_robotic_boogaloobunnei2018-03-191-7/+12
|\
| * Implements citra-emu/citra#3184N00byKing2018-02-251-7/+12
* | arm_interface: Support unmapping previously mapped memory.bunnei2018-03-161-0/+4
* | core: Move process creation out of global state.bunnei2018-03-141-1/+2
* | dynarmic: Update to 6b4c6b0MerryMage2018-02-211-2/+18
* | arm_dynarmic: LOG_INFO on unicorn fallbackMerryMage2018-02-211-0/+4
|/
* arm_dynarmic: Support direct page table accessMerryMage2018-02-121-6/+14
* dynarmic: Update to 41ae12263MerryMage2018-02-091-30/+44
* Fixes some cast warnings, partial port of citra #3064 (#106)River City Ransomware2018-01-201-3/+3
* Update dynarmic to bc73004MerryMage2018-01-131-12/+17
* yuzu: Update license text to be consistent across project.bunnei2018-01-131-1/+1
* arm_dynarmic: Implement coreMerryMage2018-01-121-42/+128
* arm_dynarmic: Gut interface until dynarmic is ready for general use.bunnei2018-01-041-134/+41
* arm: Remove SkyEye/Dyncom code that is ARMv6-only.bunnei2018-01-031-21/+5
* Merge remote-tracking branch 'upstream/master' into nxbunnei2017-10-101-58/+35
|\
| * Moved down_count to CoreTimingHuw Pascoe2017-09-301-8/+1
| * ARM_Interface: Implement PageTableChangedMerryMage2017-09-251-5/+17
| * Merge pull request #2842 from Subv/switchable_page_tableB3n302017-09-151-1/+3
| |\
| | * CPU/Dynarmic: Disable the fast page-table access in dynarmic until it supports switching page tables at runtime.Subv2017-09-151-1/+3
| * | CPU/Dynarmic: Fixed a warning when incrementing the number of ticks in ExecuteInstructions.Subv2017-08-211-1/+1
| |/
* | arm_interface: Set TLS address for dynarmic core.bunnei2017-09-301-0/+14
* | arm: Use 64-bit addressing in a bunch of places.bunnei2017-09-301-48/+81
|/
* arm_dynarmic: Update memory interfaceMerryMage2017-02-031-10/+10
* arm_dynarmic: CP15 supportMerryMage2017-02-031-4/+7
* Merge pull request #2366 from MerryMage/MemoryReadCodebunnei2016-12-221-0/+1
|\
| * arm_dynarmic: Provide MemoryReadCode callbackMerryMage2016-12-221-0/+1
* | ThreadContext: Move from "core" to "arm_interface".bunnei2016-12-221-2/+2
|/
* Core: Add a forgotten #include <cstring> for memcpy.Emmanuel Gil Peyrot2016-12-111-0/+1
* dynarmic: Add ticks based on ticks executed, not ticks requestedMerryMage2016-11-261-2/+2
* Expose page table to dynarmic for optimized reads and writes to the JITJames Rowe2016-11-251-0/+1
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-4/+2
* arm_dynarmic: Implement GetVFPSystemReg/SetVFPSystemReg.bunnei2016-09-151-5/+12
* arm: ResetContext shouldn't be part of ARM_Interface.bunnei2016-09-151-9/+0
* dynarmic: Implement ARM CPU interface.bunnei2016-09-151-0/+176