summaryrefslogtreecommitdiffstats
path: root/src/core/arm/dynarmic (unfollow)
Commit message (Expand)AuthorFilesLines
2020-02-12Core: Set all hardware emulation constants in a single file.Fernando Sahmkow1-1/+2
2020-01-31core/arm: Remove usage of global GetCurrentThread()Lioncash1-1/+2
2020-01-26Core: Refactor CpuCoreManager to CpuManager and Cpu to Core Manager.Fernando Sahmkow1-1/+1
2020-01-01core/memory + arm/dynarmic: Use a global offset within our arm page table.Markus Wick1-0/+1
2019-11-27core/memory: Migrate over Write{8, 16, 32, 64, Block} to the Memory classLioncash2-15/+22
2019-11-27core/memory: Migrate over Read{8, 16, 32, 64, Block} to the Memory classLioncash1-6/+6
2019-11-27core: Prepare various classes for memory read/write migrationLioncash2-4/+5
2019-11-12arm_unicorn: Resolve sign conversion warningsLioncash1-1/+1
2019-10-11Core_Timing: Address Feedback and suppress warnings.Fernando Sahmkow1-1/+1
2019-10-09Core Timing: Rework Core Timing to run all cores evenly.Fernando Sahmkow1-1/+1
2019-09-30Revert "arm_dynarmic: Check if jit is nullptr when preparing reschedule"bunnei1-3/+0
2019-07-11core/arm: Remove obsolete Unicorn memory mappingLioncash2-12/+0
2019-06-10arm_dynarmic: Check if jit is nullptr when preparing rescheduleZach Hilman1-0/+3
2019-04-12core/cpu_core_manager: Create threads separately from initialization.Lioncash2-17/+12
2019-04-08kernel/svc: Deglobalize the supervisor call handlersLioncash2-15/+12
2019-04-07arm/arm_dynarmic: Remove unnecessary current_page_table memberLioncash2-8/+0
2019-04-04core: Add missing override specifiers where applicableLioncash2-3/+2
2019-03-17core: Move PageTable struct into Common.bunnei1-2/+2
2019-02-16Corrections, documenting and fixes.Fernando Sahmkow1-1/+1
2019-02-16Use u128 on Clock Cycles calculation.Fernando Sahmkow1-1/+1
2019-02-16Correct CNTPCT to use Clock Cycles instead of Cpu Cycles.Fernando Sahmkow1-2/+3
2019-02-16core_timing: Convert core timing into a classLioncash2-6/+14
2019-02-12core_timing: Rename CoreTiming namespace to Core::TimingLioncash1-3/+3
2018-12-19Moved backtrace to ArmInterfaceDavid Marcec2-18/+0
2018-12-18arm_dynarmic: Set CNTFRQ valueMerryMage1-0/+1
2018-12-03Moved backtrace to ArmInterfaceDavid Marcec2-0/+18
2018-10-15core: Make the exclusive monitor a unique_ptr instead of a shared_ptrLioncash2-6/+5
2018-10-10kernel/thread: Use a regular pointer for the owner/current processLioncash1-1/+1
2018-10-04kernel/thread: Make all instance variables privateLioncash1-1/+1
2018-09-30kernel/process: Make data member variables privateLioncash1-2/+2
2018-09-30arm_interface: Add missing fpsr/tpidr members to the ThreadContext structLioncash1-2/+6
2018-09-25memory: Dehardcode the use of a 36-bit address spaceLioncash1-2/+3
2018-09-23FPCR register was uninitialized at start upPhilippe Babin1-1/+1
2018-09-21arm_interface: Replace kernel vm_manager include with a forward declarationLioncash2-0/+5
2018-09-20arm_dynarmic: Halt when BRK encounteredMerryMage1-0/+1
2018-09-19arm_dynarmic: Support BKPT instructionMerryMage1-0/+11
2018-09-18arm_dynarmic: Correct ExclusiveWrite128()'s operationLioncash1-2/+2
2018-09-18arm_interface: Remove ARM11-isms from the CPU interfaceLioncash2-26/+15
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2-24/+25
2018-09-04Update microprofile scopes.Markus Wick1-0/+4
2018-08-31core/core: Replace includes with forward declarations where applicableLioncash1-0/+1
2018-08-25core: Namespace all code in the arm subdirectory under the Core namespaceLioncash2-0/+8
2018-08-16dynarmic: Update to 550d662MerryMage1-0/+3
2018-08-13arm_dynarmic: Remove IsExecuting check from PrepareRescheduleMerryMage1-3/+1
2018-08-13CPU/Timing: Use an approximated amortized amount of ticks when advancing timing.Subv1-1/+10
2018-07-31kernel: Remove unnecessary includesLioncash1-1/+1
2018-07-31arm_dynarmic: Make SetTlsAddress() prototype and definition consistentLioncash1-1/+1
2018-07-31arm_dynarmic: Remove unnecessary qualifying of ThreadContextLioncash1-3/+3
2018-07-31arm_dynarmic: Correct initializer list orderLioncash1-5/+3
2018-07-24arm_dynarmic: Make MakeJit() a const member functionLioncash2-3/+3
2018-07-24exclusive_monitor: Use consistent type alias for u64Lioncash2-14/+12
2018-07-22Implement exclusive monitorMerryMage2-8/+89
2018-07-21CPU: Save and restore the TPIDR_EL0 system register on every context switch.Subv2-0/+10
2018-07-21arm_interface: Remove unused tls_address member of ThreadContextLioncash1-2/+0
2018-07-16scheduler: Clear exclusive state when switching contextsMerryMage2-0/+5
2018-07-03Update clang formatJames Rowe1-1/+1
2018-07-03Rename logging macro back to LOG_*James Rowe1-1/+1
2018-05-02general: Make formatting of logged hex values more straightforwardLioncash1-1/+1
2018-04-27general: Convert assertion macros over to be fmt-compatibleLioncash1-1/+1
2018-04-26core: Replace remaining old non-generic logger usages with fmt-capable equivalentsLioncash1-2/+2
2018-03-24arm_dynarmic: Fix timingMerryMage1-7/+3
2018-03-16arm_interface: Support unmapping previously mapped memory.bunnei2-1/+5
2018-03-14core: Move process creation out of global state.bunnei1-1/+2
2018-02-25Implements citra-emu/citra#3184N00byKing2-8/+16
2018-02-21dynarmic: Update to 6b4c6b0MerryMage1-2/+18
2018-02-21arm_dynarmic: LOG_INFO on unicorn fallbackMerryMage1-0/+4
2018-02-12arm_dynarmic: Support direct page table accessMerryMage1-6/+14
2018-02-09dynarmic: Update to 41ae12263MerryMage2-31/+45
2018-01-20Fixes some cast warnings, partial port of citra #3064 (#106)River City Ransomware1-3/+3
2018-01-13Update dynarmic to bc73004MerryMage1-12/+17
2018-01-13yuzu: Update license text to be consistent across project.bunnei2-2/+2
2018-01-12arm_dynarmic: Implement coreMerryMage2-44/+142
2018-01-04arm_dynarmic: More cleanup.bunnei1-6/+0
2018-01-04arm_dynarmic: Gut interface until dynarmic is ready for general use.bunnei2-142/+44
2018-01-03arm: Remove SkyEye/Dyncom code that is ARMv6-only.bunnei4-147/+6
2017-09-30arm_interface: Set TLS address for dynarmic core.bunnei2-0/+16
2017-09-30arm: Use 64-bit addressing in a bunch of places.bunnei2-52/+85
2017-09-30Moved down_count to CoreTimingHuw Pascoe2-10/+1
2017-09-25ARM_Interface: Implement PageTableChangedMerryMage2-6/+26
2017-09-15CPU/Dynarmic: Disable the fast page-table access in dynarmic until it supports switching page tables at runtime.Subv1-1/+3
2017-08-21CPU/Dynarmic: Fixed a warning when incrementing the number of ticks in ExecuteInstructions.Subv1-1/+1
2017-02-03arm_dynarmic: Update memory interfaceMerryMage1-10/+10
2017-02-03arm_dynarmic: CP15 supportMerryMage4-5/+128
2016-12-22arm_dynarmic: Provide MemoryReadCode callbackMerryMage1-0/+1
2016-12-22ThreadContext: Move from "core" to "arm_interface".bunnei2-8/+4
2016-12-11Core: Add a forgotten #include <cstring> for memcpy.Emmanuel Gil Peyrot1-0/+1
2016-11-26dynarmic: Add ticks based on ticks executed, not ticks requestedMerryMage1-2/+2
2016-11-25Expose page table to dynarmic for optimized reads and writes to the JITJames Rowe1-0/+1
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2-7/+2
2016-09-15arm_dynarmic: Implement GetVFPSystemReg/SetVFPSystemReg.bunnei1-5/+12
2016-09-15arm: ResetContext shouldn't be part of ARM_Interface.bunnei2-10/+0
2016-09-15arm_dynarmic/arm_dyncom: Remove unnecessary "virtual" keyword.bunnei1-1/+1
2016-09-15dynarmic: Implement ARM CPU interface.bunnei2-0/+227