| Commit message (Expand) | Author | Files | Lines |
2020-02-12 | Core: Set all hardware emulation constants in a single file. | Fernando Sahmkow | 1 | -1/+2 |
2020-01-31 | core/arm: Remove usage of global GetCurrentThread() | Lioncash | 2 | -2/+4 |
2020-01-27 | System: Address Feedback | Fernando Sahmkow | 2 | -3/+5 |
2020-01-26 | Core: Refactor CpuCoreManager to CpuManager and Cpu to Core Manager. | Fernando Sahmkow | 1 | -1/+1 |
2020-01-26 | ArmInterface: Delegate Exclusive monitor factory to exclusive monitor interfasce. | Fernando Sahmkow | 2 | -1/+22 |
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 | 2 | -18/+18 |
2019-11-27 | core: Prepare various classes for memory read/write migration | Lioncash | 6 | -9/+14 |
2019-11-12 | arm_unicorn: Resolve sign conversion warnings | Lioncash | 3 | -8/+10 |
2019-10-11 | Core_Timing: Address Feedback and suppress warnings. | Fernando Sahmkow | 2 | -2/+2 |
2019-10-09 | Core Timing: Rework Core Timing to run all cores evenly. | Fernando Sahmkow | 2 | -2/+2 |
2019-09-30 | Revert "arm_dynarmic: Check if jit is nullptr when preparing reschedule" | bunnei | 1 | -3/+0 |
2019-07-13 | core: Remove CurrentArmInterface() global accessor | Lioncash | 1 | -3/+6 |
2019-07-11 | core/arm: Remove obsolete Unicorn memory mapping | Lioncash | 5 | -31/+0 |
2019-06-10 | arm_dynarmic: Check if jit is nullptr when preparing reschedule | Zach Hilman | 1 | -0/+3 |
2019-05-26 | loader: Move NSO module tracking to AppLoader | Zach Hilman | 1 | -8/+19 |
2019-05-25 | arm_interface: Expand backtrace generation | Zach Hilman | 2 | -7/+194 |
2019-04-12 | core/cpu_core_manager: Create threads separately from initialization. | Lioncash | 4 | -20/+25 |
2019-04-08 | kernel/svc: Deglobalize the supervisor call handlers | Lioncash | 4 | -39/+37 |
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 | 3 | -4/+3 |
2019-03-17 | core: Move PageTable struct into Common. | bunnei | 1 | -2/+2 |
2019-03-15 | gdbstub: Fix some bugs in IsMemoryBreak() and ServeBreak. Add workaround to let watchpoints break into GDB. (#4651) | Dimitri A | 2 | -3/+4 |
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 | 4 | -10/+24 |
2019-02-12 | core_timing: Rename CoreTiming namespace to Core::Timing | Lioncash | 2 | -5/+5 |
2018-12-31 | arm_interface: Make include path relative for arm_interface.h | Lioncash | 1 | -1/+1 |
2018-12-31 | arm_interface: Make LogBacktrace() a const member function | Lioncash | 2 | -2/+2 |
2018-12-31 | arm_interface: Mark variables as const where applicable in LogBacktrace() | Lioncash | 1 | -3/+4 |
2018-12-31 | arm_interface: Remove unnecessary semicolon | Lioncash | 1 | -1/+1 |
2018-12-29 | Moved log backtrace to arm_interface.cpp. Added printing of error code to fatal | David Marcec | 2 | -17/+33 |
2018-12-19 | Moved backtrace to ArmInterface | David Marcec | 5 | -36/+17 |
2018-12-18 | arm_dynarmic: Set CNTFRQ value | MerryMage | 1 | -0/+1 |
2018-12-03 | Moved backtrace to ArmInterface | David Marcec | 5 | -0/+38 |
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 | 2 | -2/+2 |
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 | 2 | -4/+14 |
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 | 3 | -1/+9 |
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 | 5 | -72/+59 |
2018-09-15 | Port #4182 from Citra: "Prefix all size_t with std::" | fearlessTobi | 6 | -36/+37 |
2018-09-04 | Update microprofile scopes. | Markus Wick | 2 | -2/+6 |
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 | 7 | -2/+30 |
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-08-07 | GDBStub works with both Unicorn and Dynarmic now (#941) | Hedges | 1 | -1/+1 |
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 | 3 | -22/+18 |
2018-07-22 | Implement exclusive monitor | MerryMage | 4 | -8/+119 |
2018-07-21 | CPU: Save and restore the TPIDR_EL0 system register on every context switch. | Subv | 5 | -0/+26 |
2018-07-21 | arm_interface: Remove unused tls_address member of ThreadContext | Lioncash | 3 | -9/+0 |
2018-07-16 | scheduler: Clear exclusive state when switching contexts | MerryMage | 5 | -0/+10 |
2018-07-13 | More improvements to GDBStub (#653) | Hedges | 1 | -2/+2 |
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-06-06 | GDB Stub Improvements (#508) | Hedges | 2 | -1/+41 |
2018-05-11 | core: Implement multicore support. | bunnei | 1 | -1/+1 |
2018-05-02 | general: Make formatting of logged hex values more straightforward | Lioncash | 2 | -2/+2 |
2018-04-27 | general: Convert assertion macros over to be fmt-compatible | Lioncash | 2 | -3/+3 |
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-19 | Clean Warnings (?) | N00byKing | 1 | -1/+1 |
2018-03-16 | arm_interface: Support unmapping previously mapped memory. | bunnei | 5 | -2/+15 |
2018-03-14 | core: Move process creation out of global state. | bunnei | 1 | -1/+2 |
2018-02-25 | Implements citra-emu/citra#3184 | N00byKing | 5 | -35/+31 |
2018-02-22 | Stub am::SetScreenShotPermission, and bsd::StartMonitoring functions | mailwl | 1 | -1/+2 |
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-16 | clang-format | MerryMage | 1 | -1/+2 |
2018-01-16 | Build: Automagically handle unicorn | James Rowe | 1 | -1/+1 |
2018-01-16 | Build: Add unicorn as a submodule and build it if needed | James Rowe | 1 | -1/+1 |
2018-01-13 | Update dynarmic to bc73004 | MerryMage | 1 | -12/+17 |
2018-01-13 | arm_unicorn: Log unmapped memory access address. | bunnei | 1 | -1/+1 |
2018-01-13 | yuzu: Update license text to be consistent across project. | bunnei | 4 | -4/+4 |
2018-01-12 | arm_dynarmic: Implement core | MerryMage | 5 | -62/+161 |
2018-01-04 | arm_unicorn: Load/release unicorn DLL. | bunnei | 1 | -0/+16 |
2018-01-04 | unicorn: Use for arm interface on Windows. | bunnei | 2 | -0/+240 |
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 | 28 | -14492/+6 |
2017-10-23 | logging: Rename category "Core_ARM11" to "Core_ARM". | bunnei | 7 | -86/+86 |
2017-09-30 | arm_interface: Set TLS address for dynarmic core. | bunnei | 5 | -0/+32 |
2017-09-30 | arm: Use 64-bit addressing in a bunch of places. | bunnei | 5 | -74/+107 |
2017-09-30 | Moved down_count to CoreTiming | Huw Pascoe | 5 | -28/+2 |
2017-09-25 | ARM_Interface: Implement PageTableChanged | MerryMage | 5 | -6/+34 |
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-08-21 | Dyncom: Use size_t instead of int to store the instruction offsets in the instruction cache. | Subv | 2 | -4/+4 |
2017-08-21 | Dyncom: Fixed a conversion warning when decoding thumb instructions. | Subv | 1 | -1/+1 |
2017-05-22 | fixup! Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled. | Subv | 2 | -4/+0 |
2017-05-14 | Dyncom/VFP: Perform flush-to-zero on the second operand of vsub before sending it to vadd. | Subv | 1 | -2/+12 |
2017-05-09 | Dyncom/VFP: Strip the VFP_NAN_FLAG sentinel value when setting vfp exceptions. | Subv | 2 | -2/+2 |
2017-05-09 | Revert "Remove `exceptions` parameter from `normaliseround` VFP functions" | Subv | 3 | -57/+28 |
2017-05-08 | Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled. | Subv | 2 | -0/+30 |
2017-05-08 | Dyncom: Remove disassembler code | Yuri Kunde Schlesner | 3 | -1587/+2 |
2017-05-08 | Dyncom: Tweak types and log formatting | Yuri Kunde Schlesner | 3 | -8/+10 |
2017-05-08 | Remove unused symbols code | Yuri Kunde Schlesner | 2 | -44/+0 |
2017-02-18 | dyncom: Correct SXTAB16 and SXTB16 | MerryMage | 1 | -4/+4 |
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 | 5 | -22/+21 |
2016-12-15 | gdbstub: Remove global variable from public interface | Lioncash | 2 | -3/+3 |
2016-12-15 | core: Add missing #pragma once directives where applicable | Lioncash | 1 | -0/+2 |
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 | 11 | -11/+11 |
2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 15 | -40/+18 |
2016-09-19 | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | 6 | -16/+15 |
2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 22 | -6274/+5726 |
2016-09-18 | Dyncom: Disable clang-format on the decoding table. | Emmanuel Gil Peyrot | 1 | -0/+3 |
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 | 5 | -29/+0 |
2016-09-15 | arm_dynarmic/arm_dyncom: Remove unnecessary "virtual" keyword. | bunnei | 2 | -2/+2 |
2016-09-15 | dyncom: Use VFP_FPSCR/VFP_FPEXC. | bunnei | 1 | -4/+4 |
2016-09-15 | dynarmic: Implement ARM CPU interface. | bunnei | 2 | -0/+227 |
2016-08-27 | ARM: add ClearInstructionCache function | wwylele | 3 | -0/+11 |
2016-08-22 | dyncom: Read-after-write in SMLA | MerryMage | 1 | -2/+4 |
2016-08-14 | Dyncom: Correct implementation of STM for R15 | MerryMage | 1 | -3/+4 |
2016-07-28 | dyncom: Fix translation of thumb REVSH | MerryMage | 1 | -4/+13 |
2016-06-12 | Make arm_dyncom_trans* into a fully fledged compilation unit | archshift | 3 | -53/+71 |
2016-06-12 | arm_dyncom_interpreter: slightly change AllocBuffer to be intuitive | archshift | 1 | -15/+15 |
2016-06-11 | arm_dyncom_interpreter: Add specialized GetAddressingOpLoadStoreT func | archshift | 2 | -39/+19 |
2016-06-11 | arm_dyncom_interpreter: rename operation functions to fit style guide | archshift | 2 | -34/+34 |
2016-06-11 | arm_dyncom_interpreter: Rename anonymous enum to TransExtData | archshift | 4 | -166/+164 |
2016-06-11 | arm_dyncom_interpreter.cpp: #include translation info from inc files | archshift | 3 | -2648/+2652 |
2016-06-11 | Revert "Split huge interpreter source file into translation info and interpreter (+ some tiny misc style fixes)" | archshift | 4 | -2729/+2727 |
2016-06-09 | arm_dyncom_interpreter: rename operation functions to fit style guide | archshift | 2 | -42/+42 |
2016-06-09 | arm_dyncom_interpreter.cpp: Split by translation and interpreter logic | archshift | 4 | -2727/+2729 |
2016-05-18 | Remove `exceptions` parameter from `normaliseround` VFP functions | Jannik Vogel | 3 | -28/+57 |
2016-05-18 | Fix exception propagation for VFP single precision | Jannik Vogel | 2 | -33/+38 |
2016-05-18 | Fix exception propagation for VFP double precision | Jannik Vogel | 2 | -34/+39 |
2016-05-18 | Fix read-after-write in SMUAD, SMLAD, SMUSD, SMLSD | Jannik Vogel | 1 | -4/+8 |
2016-05-17 | Set fpscr for new threads | Jannik Vogel | 1 | -0/+1 |
2016-05-16 | Fix ftoi behaviour | Jannik Vogel | 2 | -22/+53 |
2016-05-16 | Respect fpscr in ftoiz | Jannik Vogel | 2 | -4/+4 |
2016-05-16 | Disable VFP3 instructions | Jannik Vogel | 1 | -0/+4 |
2016-05-09 | dyncom: Reset the context into user mode correctly | Lioncash | 1 | -1/+1 |
2016-04-29 | Common: Remove section measurement from profiler (#1731) | Yuri Kunde Schlesner | 1 | -7/+0 |
2016-04-09 | Fix BLX LR opcode interpretation | mailwl | 1 | -2/+3 |
2016-04-08 | Update cpsr (T)humb bit while creating thread | mailwl | 1 | -1/+1 |
2016-04-06 | Fix thumb ADR instruction alignment | mailwl | 1 | -6/+2 |
2016-04-05 | Common: Remove Common::make_unique, use std::make_unique | MerryMage | 1 | -3/+2 |
2016-03-30 | DynCom: Optimize single stepping | MerryMage | 1 | -26/+57 |
2016-03-21 | armstate: Correct FIQ register banking | Lioncash | 1 | -4/+3 |
2016-01-19 | ARM_Disasm::DisassembleMemHalf: actually use width in determining opcode name | rob turner | 1 | -9/+9 |
2015-12-30 | arm_dyncom_dec: Fix decoding of VMLS | Lioncash | 2 | -206/+202 |
2015-12-28 | dyncom: Handle modifying the APSR via an MRC instruction | Lioncash | 1 | -12/+9 |
2015-12-21 | dyncom: Remove PC dispatch from several instructions | Lioncash | 1 | -94/+0 |
2015-12-20 | dyncom: Handle unprivileged load/store variants correctly | Lioncash | 1 | -7/+33 |
2015-12-06 | dyncom: Remove static keyword from header functions | Lioncash | 3 | -19/+19 |
2015-12-06 | arm_interface: Make GetNumInstructions const | Lioncash | 1 | -1/+1 |
2015-12-06 | arm_interface: directly initialize class members | Lioncash | 1 | -7/+2 |
2015-12-06 | dyncom: const correctness changes | Lioncash | 3 | -7/+7 |
2015-11-29 | armstate: Zero out the registers on creation | Lioncash | 1 | -11/+11 |
2015-10-12 | Remove unnecessary new lines, changed Deinit to Shutdown | polaris- | 1 | -1/+0 |
2015-10-09 | CitraQt, SkyEye, Loader, VideoCore: Remove newlines in LOG_* calls. | Emmanuel Gil Peyrot | 3 | -45/+45 |
2015-10-04 | Use BreakpointAddress struct instead of passing address directly | polaris- | 1 | -3/+3 |
2015-10-04 | Implement gdbstub | polaris- | 3 | -9/+69 |
2015-09-20 | Implement gdbstub | polaris- | 3 | -9/+69 |
2015-09-16 | general: Silence some warnings when using clang | Lioncash | 1 | -1/+0 |
2015-09-11 | General: Replace NULL and '0' usages with nullptr where applicable | Lioncash | 3 | -30/+30 |
2015-09-06 | DynCom: Converted all 0xE condition code checks to ConditionCode::AL | archshift | 2 | -132/+132 |
2015-08-26 | dyncom: Simplify some comparisons in CondPassed | Lioncash | 1 | -4/+4 |
2015-08-26 | dyncom: Change return type of CondPassed to bool | Lioncash | 1 | -57/+39 |
2015-08-25 | Integrate the MicroProfile profiling library | Yuri Kunde Schlesner | 1 | -0/+7 |
2015-08-16 | Memory: Move address type conversion routines to memory.cpp/h | Yuri Kunde Schlesner | 2 | -2/+0 |
2015-08-16 | vfp: use std::swap where applicable | Lioncash | 2 | -12/+6 |
2015-08-11 | ARM Core, Video Core, CitraQt, Citrace: Use CommonTypes types instead of the standard u?int*_t types. | Emmanuel Gil Peyrot | 4 | -305/+310 |
2015-08-11 | arm_disasm: ARMv6 mul/div and abs media instructions | aroulin | 2 | -1/+119 |
2015-08-11 | arm_disasm: ARMv6 parallel add/sub media instructions | aroulin | 2 | -0/+167 |
2015-08-09 | arm_disasm: ARMv6 reversal media instructions | aroulin | 2 | -0/+26 |
2015-08-09 | arm_disasm: ARMv6 saturation media instructions | aroulin | 2 | -2/+55 |
2015-08-09 | arm_disasm: ARMv6 packing and sign-extend media instructions | aroulin | 2 | -1/+181 |
2015-08-07 | arm_interface: Implement interface for retrieving VFP registers | Lioncash | 4 | -1/+49 |
2015-08-07 | arm_disasm: Remove unnecessary code | Lioncash | 1 | -12/+4 |
2015-08-06 | Disassembler: ARMv6K REX instructions | aroulin | 2 | -6/+97 |
2015-08-06 | Disassembler: ARMv6K hint instructions | aroulin | 2 | -0/+56 |
2015-07-29 | dyncom: Remove an unused variable | Lioncash | 1 | -3/+0 |
2015-07-29 | dyncom: Handle the case where PC is the source register for STR/VSTM/VLDM | Lioncash | 2 | -21/+40 |
2015-07-29 | dyncom: Handle left-operand PC correctly for data-processing ops | Lioncash | 1 | -7/+33 |
2015-07-28 | dyncom: Remove an unnecessary typedef | Lioncash | 2 | -7/+5 |
2015-07-28 | dyncom: Use enum class for instruction decoding results | Lioncash | 5 | -41/+40 |
2015-07-28 | dyncom: Remove code duplication regarding thumb instructions | Lioncash | 3 | -23/+12 |
2015-07-28 | dyncom: Migrate exclusive memory access control into armstate | Lioncash | 2 | -50/+35 |
2015-07-28 | dyncom: Remove duplicated typedef and extern | Lioncash | 1 | -4/+0 |
2015-07-26 | dyncom: Use std::array for register arrays | Lioncash | 2 | -28/+29 |
2015-07-26 | dyncom: Use ARMul_State as an object | Lioncash | 11 | -1102/+1022 |
2015-07-26 | dyncom: Remove unnecessary initialization code. | Lioncash | 4 | -59/+2 |
2015-07-26 | dyncom: Remove unnecessary abort-related cruft | Lioncash | 2 | -48/+1 |
2015-07-26 | dyncom: Rename armdefs.h to armstate.h | Lioncash | 13 | -31/+31 |
2015-07-26 | dyncom: Get rid of skyeye typedefs | Lioncash | 7 | -61/+55 |
2015-07-26 | dyncom: Move helper functions to their own header | Lioncash | 9 | -41/+56 |
2015-07-26 | dyncom: Move arminit.cpp and armsupp.cpp into skyeye_common | Lioncash | 2 | -0/+0 |
2015-07-26 | armdefs: Remove unnecessary extern keywords | Lioncash | 1 | -25/+25 |
2015-07-21 | dyncom: Pass SVC immediates directly. | Lioncash | 1 | -1/+2 |
2015-07-20 | dyncom: Properly retrieve the PC value in BX if used. | Lioncash | 1 | -3/+5 |
2015-07-18 | Dyncom: Support for a missing ARMv6 Thumb MOV encoding | Yuri Kunde Schlesner | 1 | -10/+4 |
2015-07-17 | arm_dyncom_interpreter: Simplify assignment in SMLAW | Lioncash | 1 | -1/+1 |
2015-06-29 | vfp: Change return type of VFPInit from unsigned int to void. | Lioncash | 2 | -4/+2 |
2015-06-29 | vfp: Handle accesses to FPINST/FPINST2 system registers | Lioncash | 4 | -42/+53 |
2015-06-28 | Core, VideoCore: Replace or fix exit() calls. | Emmanuel Gil Peyrot | 2 | -4/+6 |
2015-06-28 | Core: Cleanup core includes. | Emmanuel Gil Peyrot | 1 | -0/+5 |
2015-06-28 | Common: Fix FileUtil includes, and everything relying on those. | Emmanuel Gil Peyrot | 1 | -0/+1 |
2015-06-13 | vfp: Handle accesses to the VFP media feature registers | Lioncash | 3 | -4/+8 |
2015-06-12 | vfp: Implement VMOVBCR/VMOVBRC | Lioncash | 2 | -5/+8 |
2015-06-04 | arm_dyncom_thumb: Fix handling of writeback for thumb LDMIA | Lioncash | 1 | -5/+19 |
2015-06-01 | arm_dyncom_thumb: Fix encoding of BKPT's immediate | Lioncash | 1 | -1/+4 |
2015-06-01 | arm_dyncom_thumb: Implement CPS and SETEND | Lioncash | 1 | -0/+13 |
2015-06-01 | arm_dyncom_thumb: Implement SXTH, SXTB, UXTH, and UXTB. | Lioncash | 1 | -0/+11 |
2015-06-01 | arm_dyncom_thumb: Implement REV, REV16, and REVSH. | Lioncash | 1 | -2/+12 |
2015-05-29 | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | 6 | -24/+24 |
2015-05-27 | arm_dyncom_thumb: Merge STR/LDR table subsets. | Lioncash | 1 | -22/+11 |
2015-05-26 | arm_dyncom_interpreter: Remove unused variable | Lioncash | 1 | -5/+1 |
2015-05-25 | arm_dyncom_interpreter: Remove unused macro | Lioncash | 1 | -1/+0 |
2015-05-24 | dyncom: Get rid of armemu.h | Lioncash | 4 | -49/+29 |
2015-05-23 | dyncom: Remove unused cpu parameter from decode_thumb_instr | Lioncash | 1 | -3/+2 |
2015-05-23 | dyncom: remove load_r15 from arm_inst | Lioncash | 2 | -490/+331 |
2015-05-23 | dyncom: Remove unnecessary parameter for load/store operations | Lioncash | 1 | -39/+39 |
2015-05-23 | VFP: Log as trace to get rid of spamming. | bunnei | 1 | -23/+23 |
2015-05-21 | dyncom: Eliminate clang warnings | Lioncash | 4 | -406/+404 |
2015-05-15 | Memmap: Re-organize memory function in two files | Yuri Kunde Schlesner | 3 | -3/+2 |
2015-05-14 | dyncom: Add ARMv6K NOP and hint instructions to the decoding table | Lioncash | 2 | -12/+152 |
2015-05-14 | dyncom: Handle some MSR variants individually | Lioncash | 2 | -24/+41 |
2015-05-14 | dyncom: Move exclusive load/stores above bbl and swi in the decoding table | Lioncash | 2 | -14/+15 |
2015-05-14 | dyncom: Remove duplicate enums/prototypes | Lioncash | 1 | -7/+1 |
2015-05-14 | dyncom: Remove unnecessary defines | Lioncash | 1 | -4/+4 |
2015-05-14 | dyncom: Make translation-unit functions and variables static | Lioncash | 1 | -66/+64 |
2015-05-14 | vfp: Get rid of warnings | Lioncash | 2 | -6/+6 |
2015-05-14 | dyncom: Remove unnecessary typedefs | Lioncash | 2 | -196/+197 |
2015-05-14 | dyncom: Remove unused structs | Lioncash | 1 | -8/+0 |
2015-05-14 | dyncom: Removed irrelevant log. | bunnei | 1 | -2/+0 |
2015-05-13 | dyncom: Fix decoding of BKPT's immediate | Lioncash | 1 | -1/+1 |
2015-05-12 | dyncom: Stub MCRR and MRRC | Lioncash | 1 | -7/+68 |
2015-05-11 | vfp: Handle flush-to-zero mode. | Lioncash | 3 | -84/+98 |
2015-05-11 | fixup! Set the TLS address in the scheduler | Subv | 3 | -7/+3 |
2015-05-11 | Core/Memory: Give every emulated thread it's own TLS area. | Subv | 3 | -3/+7 |
2015-05-08 | Remove unnecessary dyncom header files | Lioncash | 5 | -80/+2 |
2015-05-08 | dyncom: Remove an unnecessary variable in the interpreter | Lioncash | 1 | -19/+17 |
2015-05-07 | Common: Remove common.h | Yuri Kunde Schlesner | 3 | -2/+2 |
2015-05-07 | Clean-up includes | Yuri Kunde Schlesner | 2 | -0/+4 |
2015-05-06 | HLE: Clean up SVC dispatch mechanism | Yuri Kunde Schlesner | 1 | -2/+2 |
2015-05-02 | Dyncom: Move cream cache to ARMul_State. | bunnei | 4 | -25/+18 |
2015-04-20 | dyncom: Remove more unused/unnecessary code | Lioncash | 4 | -92/+1 |
2015-04-18 | dyncom: Remove unused/unnecessary VFP cruft | Lioncash | 6 | -822/+15 |
2015-04-14 | Core_ARM11: Replace debug prints with our own logging functions in vfpsingle. | Emmanuel Gil Peyrot | 2 | -39/+36 |
2015-04-14 | Headers: Add some forgotten overrides, thanks clang! | Emmanuel Gil Peyrot | 1 | -1/+1 |
2015-04-07 | dyncom: Remove unnecessary enum and typedef | Lioncash | 5 | -50/+30 |
2015-04-06 | vfp: Make the FPSID values match the MPCore | Lioncash | 1 | -7/+7 |
2015-04-06 | vfp: Get rid of the VFP_OFFSET macro | Lioncash | 5 | -64/+69 |
2015-04-06 | core: Migrate 3DS-specific CP15 register setting into Init | Lioncash | 1 | -8/+0 |
2015-04-06 | arm_interface: Support retrieval/storage to CP15 registers | Lioncash | 3 | -0/+25 |
2015-04-06 | Move CP15 enum definitions into their own enum. | Lioncash | 5 | -168/+163 |
2015-04-06 | dyncom: Properly return the value of the user RO thread register | Lioncash | 2 | -4/+10 |
2015-04-06 | dyncom: Set CP15 reset values on initialization | Lioncash | 1 | -0/+60 |
2015-04-06 | dyncom: Suppress uninitialized variable warnings | Lioncash | 1 | -4/+4 |
2015-04-02 | dyncom: Move CP15 register writing into its own function. | Lioncash | 4 | -88/+265 |
2015-04-02 | dyncom: Move CP15 register reading into its own function. | Lioncash | 4 | -49/+253 |
2015-03-26 | dyncom: Migrate InAPrivilegedMode to armsupp | Lioncash | 3 | -4/+7 |
2015-03-24 | dyncom: Implement SRS | Lioncash | 1 | -1/+32 |
2015-03-24 | dyncom: Implement RFE | Lioncash | 1 | -1/+30 |
2015-03-24 | dyncom: Remove unused/unnecessary macros and macro constants | Lioncash | 2 | -39/+2 |
2015-03-21 | armmmu: Remove unnecessary enum values | Lioncash | 1 | -30/+20 |
2015-03-17 | dyncom: Make Load/Store instructions support big endian | Lioncash | 5 | -82/+198 |
2015-03-16 | arm_interface: Get rid of GetTicks. | Lioncash | 3 | -12/+0 |
2015-03-15 | dyncom: Implement SETEND | Lioncash | 1 | -1/+35 |
2015-03-10 | dyncom: Minor cleanup | Lioncash | 1 | -26/+7 |
2015-03-09 | dyncom: Fix an indexing bug in STM | Lioncash | 1 | -5/+4 |
2015-03-09 | dyncom: General cleanup of STM | Lioncash | 1 | -16/+14 |
2015-03-09 | dyncom: Increment addr when accessing LR in LDM | Lioncash | 1 | -0/+2 |
2015-03-04 | vfp: Get rid of warnings | Lioncash | 2 | -4/+4 |
2015-03-02 | Add profiling infrastructure and widget | Yuri Kunde Schlesner | 1 | -0/+8 |
2015-02-28 | arm_disasm: Show conditional code for BKPT instructions. | Lioncash | 1 | -2/+3 |
2015-02-28 | arm_disasm: Remove unused variable | Lioncash | 1 | -2/+1 |
2015-02-26 | arm: The CP15 Main ID register is not writeable | Lioncash | 1 | -3/+1 |
2015-02-25 | arm: Remove unnecessary booleans | Lioncash | 2 | -22/+5 |
2015-02-22 | Cleaned up unaligned access. | Kevin Hartman | 1 | -17/+2 |
2015-02-18 | vfpinstr: Fix trivial signed/unsigned mismatch warnings | Lioncash | 1 | -4/+4 |
2015-02-17 | dyncom: Support conditional BKPT instructions | Lioncash | 2 | -2/+28 |
2015-02-16 | dyncom: Actually set the destination register for USAD8/USADA8. | Lioncash | 1 | -0/+1 |
2015-02-15 | vfpdouble: Use %p for printing pointer addresses. | Lioncash | 1 | -2/+2 |
2015-02-15 | arm: Set the A bit on reset. | Lioncash | 1 | -1/+1 |
2015-02-13 | core: Apply static to local functions | Lioncash | 5 | -221/+227 |
2015-02-13 | arm: General cleanup | Lioncash | 13 | -227/+116 |
2015-02-13 | dyncom: Switch the app and system cores into the correct mode at initialization | Lioncash | 4 | -12/+17 |
2015-02-13 | dyncom: Clean up the constructor | Lioncash | 3 | -16/+7 |
2015-02-13 | dyncom: Remove warning for SXTAH | Lioncash | 1 | -1/+0 |
2015-02-12 | arm: Remove ARMul_EmulateInit | Lioncash | 4 | -55/+1 |
2015-02-12 | armdefs: Remove unnecessary extern C | Lioncash | 1 | -6/+0 |
2015-02-11 | arm: Remove ARM26 support. | Lioncash | 2 | -45/+4 |
2015-02-11 | arm: Get rid of some magic constants. Specify proper ARM mode. | Lioncash | 3 | -3/+10 |
2015-02-11 | arm: Change some more constants into enums | Lioncash | 2 | -21/+30 |
2015-02-11 | Asserts: break/crash program, fit to style guide; log.h->assert.h | archshift | 2 | -1/+2 |
2015-02-10 | arm: Remove TRUE/FALSE defines | Lioncash | 4 | -28/+19 |
2015-02-10 | arm_dyncom_thumb: Make lookup tables static | Lioncash | 1 | -7/+7 |
2015-02-10 | dyncom: Add more regs to MCR/MRC | Lioncash | 2 | -18/+35 |
2015-02-10 | vfp: Normalize accumulator for multiply accumulate instructions | Lioncash | 2 | -0/+6 |
2015-02-10 | Scheduler refactor Pt. 1 | Kevin Hartman | 3 | -56/+20 |
2015-02-09 | vfpdouble: Fix the FTOUI NaN sign setting | Lioncash | 1 | -1/+1 |
2015-02-09 | Throw more unused/unnecessary VFP code out | Lioncash | 3 | -215/+1 |
2015-02-09 | vfp_helper: Convert some flags to enums. Throw out more duplicated FPSCR stuff | Lioncash | 4 | -192/+153 |
2015-02-09 | vfp_helper: Normalize tabs to spaces | Lioncash | 1 | -172/+170 |
2015-02-06 | vfp_helper: Remove unnecessary extern C blocks | Lioncash | 1 | -17/+1 |
2015-02-06 | vfp: Move FPSID, FPEXC, and FPSCR values over to enums. | Lioncash | 3 | -150/+104 |
2015-02-04 | vfp: Fix VCVT | Lioncash | 1 | -6/+6 |
2015-02-04 | vfp: Throw out unused code | Lioncash | 2 | -1765/+0 |
2015-02-03 | dyncom: Remove more unnecessary code | Lioncash | 1 | -45/+3 |
2015-02-03 | core: Fix some warnings on OSX | Lioncash | 1 | -2/+4 |
2015-02-01 | vfp: Get rid of some compile warnings | Lioncash | 2 | -6/+3 |
2015-02-01 | arm: Clean up ARMul_State | Lioncash | 3 | -136/+83 |
2015-02-01 | arm: Adios armemu | Lioncash | 12 | -8576/+164 |
2015-01-30 | dyncom: clean up arm_dyncom_dec.h | Lioncash | 1 | -43/+2 |
2015-01-30 | arm: Move headers over to pragma once | Lioncash | 7 | -31/+11 |
2015-01-30 | arm: Get rid of armcpu.h and skyeye_types.h | Lioncash | 5 | -113/+0 |
2015-01-30 | arm: Clean out armos.h and armmmu.h | Lioncash | 2 | -181/+23 |
2015-01-30 | arm: Throw out a lot of unnecessary code | Lioncash | 6 | -1536/+56 |
2015-01-30 | armdefs: Move some defines over to enums | Lioncash | 1 | -131/+112 |
2015-01-27 | dyncom: Minor cleanup | Lioncash | 1 | -126/+137 |
2015-01-27 | Update vfp.cpp | bunnei | 1 | -1/+1 |
2015-01-23 | vfp: Clean up vertical alignment for instructions | Lioncash | 1 | -131/+125 |
2015-01-22 | dyncom: Minor cleanup | Lioncash | 1 | -282/+270 |
2015-01-20 | dyncom: Clarify precedence for ternary statements | Lioncash | 3 | -3/+3 |
2015-01-19 | Cleanup: Logging in Core | Chin | 5 | -483/+157 |
2015-01-19 | dyncom: Implement missing shifts in ScaledRegisterPostIndexed, etc | Lioncash | 1 | -7/+33 |
2015-01-17 | dyncom: Handle the ARM A2 encoding of STRT/LDRT | Lioncash | 1 | -10/+24 |
2015-01-17 | dyncom: Handle the ARM A2 encoding of LDRBT/STRBT. | Lioncash | 1 | -17/+15 |
2015-01-12 | vfp: Remove dead code | Lioncash | 1 | -50/+14 |
2015-01-12 | dyncom: Fix 32-bit ASR shifts for immediates | Lioncash | 1 | -5/+3 |
2015-01-12 | dyncom: Remove unused flag macros | Lioncash | 1 | -15/+3 |
2015-01-12 | dyncom: Get rid of unnecessary outer-scope variables in InterpreterMainLoop | Lioncash | 1 | -97/+108 |
2015-01-12 | dyncom: Fix overflow flag setting for ADD/RSB/RSC/SUB/SBC | Lioncash | 1 | -38/+41 |
2015-01-12 | dyncom: Add a helper function for addition with a carry | Lioncash | 3 | -12/+26 |
2015-01-12 | dyncom: Fix ADC overflow flag setting | Lioncash | 1 | -8/+12 |
2015-01-12 | dyncom: Fix conditional execution of MSR | Lioncash | 1 | -29/+31 |
2015-01-09 | Move ThreadContext to core/core.h and deal with the fallout | Yuri Kunde Schlesner | 5 | -11/+16 |
2015-01-09 | DynCom: Add a comment to GetTicks. | Subv | 1 | -0/+1 |
2015-01-09 | Timing: Use CoreTiming::GetTicks to keep track of ticks. | Subv | 2 | -6/+2 |
2015-01-08 | dyncom: Fix UMAAL | Lioncash | 1 | -4/+4 |
2015-01-07 | dyncom: Fix SMULWB/SMULWT | Lioncash | 1 | -10/+7 |
2015-01-07 | CoreTiming: Ported the CoreTiming namespace from PPSSPP | Subv | 2 | -1/+9 |
2015-01-07 | dyncom: Fix SWPB | Lioncash | 1 | -0/+1 |
2015-01-07 | dyncom: Move over SMLALXY | Lioncash | 1 | -1/+56 |
2015-01-06 | Added exclusive reservation granule from ARMv7 spec to dyncom to protect LDR/STREX. | Kevin Hartman | 2 | -16/+18 |
2015-01-05 | dyncom: Partially emulate BXJ | Lioncash | 1 | -8/+25 |
2015-01-05 | dyncom: Actually set the Q flag for SMLABB/SMLABT/SMLATB/SMLATT | Lioncash | 1 | -1/+2 |
2015-01-05 | dyncom: Implement QADD/QSUB/QDADD/QDSUB | Lioncash | 4 | -25/+117 |
2015-01-04 | skyeye: Remove duplicate typedefs | Lioncash | 4 | -41/+17 |
2015-01-03 | dyncom: Implement SMLAW | Lioncash | 1 | -1/+43 |
2015-01-03 | VFP: Minor cleanup, functionally the same. | bunnei | 1 | -2587/+2476 |
2015-01-03 | dyncom: Implement REVSH | Lioncash | 1 | -45/+45 |
2015-01-03 | dyncom: Implement SMLALD/SMLSLD | Lioncash | 1 | -3/+72 |
2015-01-03 | dyncom: Implement SMMLA/SMMUL/SMMLS | Lioncash | 1 | -3/+64 |
2015-01-03 | dyncom: Implemented LDREXD/STREXD/LDREXH/STREXH | bunnei | 3 | -227/+282 |
2015-01-03 | dyncom: Remove dead function InterpreterInitInstLength | Lioncash | 1 | -27/+0 |
2015-01-03 | armemu: Fix missing Q flag check for SMLSD. | Lioncash | 1 | -2/+6 |
2015-01-03 | dyncom: Implement SMLAD/SMUAD/SMLSD/SMUSD | Lioncash | 5 | -50/+84 |
2015-01-02 | dyncom: Implement SXTAB16 and SXTB16 | Lioncash | 1 | -3/+58 |
2015-01-01 | dyncom: Implement SHADD8/SHADD16/SHSUB8/SHSUB16/SHASX/SHSAX | Lioncash | 1 | -8/+110 |
2015-01-01 | Fix SADD8/SSUB8 in the armemu | Lioncash | 1 | -50/+28 |
2015-01-01 | dyncom: Implement SADD8/SSUB8 | Lioncash | 1 | -55/+108 |
2014-12-31 | dyncom: Implement UADD8/UADD16/USUB8/USUB16/UASX/USAX | Lioncash | 1 | -9/+208 |
2014-12-31 | dyncom: Massive refactor | bunnei | 2 | -654/+221 |
2014-12-30 | vfp: Get rid of a few warnings | Lioncash | 2 | -2/+2 |
2014-12-30 | vfp: Implement VMOVBRRSS | Lioncash | 3 | -12/+44 |
2014-12-30 | dyncom: Implement USAT16/SSAT16 | Lioncash | 1 | -2/+61 |
2014-12-30 | dyncom: Implement USAT/SSAT | bunnei | 3 | -2/+131 |
2014-12-30 | dyncom: Various cleanups to match coding style, no functional changes. | bunnei | 5 | -7087/+5962 |
2014-12-29 | dyncom: Fix SMLALXY's instruction labels | Lioncash | 1 | -2/+2 |
2014-12-29 | dyncom: Implement QADD8/QSUB8 | Lioncash | 1 | -32/+42 |
2014-12-29 | armemu: Implement QADD8/QSUB8 | Lioncash | 3 | -33/+100 |
2014-12-29 | dyncom: Implement UXTB16/UXTAB16 | Lioncash | 1 | -2/+55 |
2014-12-29 | vfp: Actually make the code somewhat readable | Lioncash | 5 | -1664/+1053 |
2014-12-28 | dyncom: Implement PKHBT and PKHTB. | bunnei | 1 | -2/+57 |
2014-12-28 | armemu: Fix PKHTB to do an arithmetic shift and correctly decode immediate field. | bunnei | 1 | -13/+5 |
2014-12-28 | dyncom: Implement USAD8/USADA8 | Lioncash | 3 | -3/+53 |
2014-12-28 | armemu: Simplify SSAT/SSAT16/SXTB/SXTAB | Lioncash | 1 | -71/+48 |
2014-12-28 | armemu: Simplify REV/REV16/SXTH/SXTAH | Lioncash | 1 | -38/+26 |
2014-12-28 | armemu: Simplify USAT16/UXTB/UXTAB | Lioncash | 1 | -65/+42 |
2014-12-28 | armemu: Simplify REVSH/UXTH/UXTAH | Lioncash | 1 | -48/+23 |
2014-12-28 | armemu: Fix underflows in USAD8/USADA8 | Lioncash | 3 | -4/+14 |
2014-12-27 | dyncom: Implement UQADD8, UQADD16, UQSUB8, UQSUB16, UQASX, and UQSAX. | Lioncash | 3 | -12/+102 |
2014-12-27 | armemu: Implement UQADD8, UQADD16, UQSUB16, UQASX, and UQSAX | Lioncash | 3 | -19/+93 |
2014-12-27 | dyncom: Implement UHADD8, UHADD16, UHSUB8, UHSUB16, UHASX, and UHSAX | Lioncash | 1 | -11/+123 |
2014-12-27 | armemu: Implement UHADD8, UHADD16, UHSUB8, UHSUB16, UHASX, and UHSAX | Lioncash | 1 | -2/+73 |
2014-12-26 | ARM: Add a mechanism for faking CPU time elapsed during HLE. | bunnei | 5 | -95/+31 |
2014-12-25 | armemu: Implement SMMUL, SMMLA, and SMMLS. | Lioncash | 1 | -2/+30 |
2014-12-24 | armemu: Implement SMLALD/SMLSLD | Lioncash | 1 | -2/+33 |
2014-12-24 | armemu: Fix GE/Q flag setting semantics | Lioncash | 1 | -62/+56 |
2014-12-23 | armemu: Set the Q flag correctly for much of the other ops | Lioncash | 1 | -8/+8 |
2014-12-23 | armemu: Set the Q flag properly for SMLAD/SMUAD | Lioncash | 3 | -13/+28 |
2014-12-23 | armemu: Properly set the Q flag for SSAT16/USAT16 upon saturation. | Lioncash | 1 | -9/+23 |
2014-12-23 | armemu: Fix SEL | Lioncash | 1 | -1/+1 |
2014-12-23 | armemu: Fix construction of the CPSR | Lioncash | 4 | -15/+54 |
2014-12-23 | armemu: Fix retrieval of the CPSR in MRS instructions. | Lioncash | 1 | -1/+1 |
2014-12-22 | dyncom: Move over QADD16/QASX/QSAX/QSUB16 | Lioncash | 1 | -7/+87 |
2014-12-22 | dyncom: Move SEL over | Lioncash | 1 | -1/+58 |
2014-12-22 | dyncom: Move over SASX/SSAX/SADD16/SSUB16 | Lioncash | 1 | -7/+102 |
2014-12-21 | More warning cleanups | Chin | 3 | -9/+6 |
2014-12-21 | License change | purpasmart96 | 8 | -8/+8 |
2014-12-21 | armemu: Implement SADD8/SSUB8 | Lioncash | 1 | -14/+87 |
2014-12-20 | armemu: Should be using labs for USAD8/USADA8 | Lioncash | 1 | -4/+4 |
2014-12-19 | armemu: Implement QASX and QSAX | Lioncash | 1 | -7/+20 |
2014-12-19 | armemu: Implement SMLSD | Lioncash | 1 | -6/+10 |
2014-12-19 | dyncom: Implement UMAAL | Lioncash | 1 | -1/+47 |
2014-12-19 | armemu: Implement USAD8 and USADA8 | Lioncash | 1 | -1/+24 |
2014-12-19 | armemu: Fix SSAT16 | Lioncash | 1 | -1/+1 |
2014-12-19 | armemu: Clean up naming and formatting for SSAT16 | Lioncash | 1 | -14/+20 |
2014-12-18 | armemu: Fix lower-bounds clamping for USAT16 | Lioncash | 1 | -1/+6 |
2014-12-18 | armemu: More concise names for USAT16-related variables | Lioncash | 1 | -11/+15 |
2014-12-18 | armemu: Get rid of bitwise parenthesis warnings | Lioncash | 1 | -4/+4 |
2014-12-18 | armemu: Set GE flags correctly for SSUB16, SADD16, SSAX, and SASX. | Lioncash | 1 | -4/+29 |
2014-12-18 | armemu: Combine SSUB16, SADD16, SASX, and SSAX. | Lioncash | 1 | -34/+23 |
2014-12-17 | armemu: Unset GE flags for UADD8 if results are < 0x100 | Lioncash | 1 | -4/+22 |
2014-12-17 | armemu: Fix SSUB16 | Lioncash | 1 | -8/+8 |
2014-12-17 | armemu: Implement UMAAL | Lioncash | 1 | -3/+25 |
2014-12-17 | armemu: Narrow the scope of some variables in handle_v6_insn | Lioncash | 1 | -12/+9 |
2014-12-17 | armemu: Fix SADD16 | Lioncash | 1 | -8/+9 |
2014-12-17 | armemu: Fix PKHTB | Normmatt | 1 | -6/+12 |
2014-12-17 | armemu: Implement REVSH | Normmatt | 1 | -5/+9 |
2014-12-17 | armemu: Fix UXTAB/UXTAH | Normmatt | 1 | -4/+4 |
2014-12-17 | armemu: Fix SXTAB | Normmatt | 1 | -2/+2 |
2014-12-17 | armemu: Fix SXTAH | Normmatt | 1 | -2/+3 |
2014-12-16 | armemu: Fix FTOUI NaN sign. | Normmatt | 1 | -1/+1 |
2014-12-16 | armemu: Fix FSUBS bug where NaN shouldn't be negated | Normmatt | 1 | -1/+4 |
2014-12-16 | armemu: Fix SMUAD, SMUSD, and SMLAD | Lioncash | 1 | -3/+3 |
2014-12-16 | armemu: Join SMUAD, SMUSD, and SMLAD | Lioncash | 1 | -38/+35 |
2014-12-16 | armemu: Fix lower-bound signed saturation clamping for QADD16/QSUB16. | Lioncash | 1 | -2/+2 |
2014-12-16 | armemu: Join QADD16 and QSUB16 together. | Lioncash | 1 | -33/+37 |
2014-12-16 | armemu: Implement UXTAB16 | Lioncash | 1 | -10/+25 |
2014-12-15 | armemu: Fix UXTB16 | Lioncash | 1 | -12/+12 |
2014-12-15 | ARM: Pull some SkyEye fixes from 3dmoo. | bunnei | 3 | -419/+485 |
2014-12-14 | Clean up armdefs.h | Lioncash | 1 | -306/+169 |
2014-12-13 | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | 5 | -109/+109 |
2014-12-08 | armemu: Fix SSAX | Lioncash | 1 | -1/+1 |
2014-12-08 | armemu: Fix SASX | Lioncash | 1 | -1/+1 |
2014-12-08 | armemu: Fix parenthesis warnings regarding bitwise ops | Lioncash | 1 | -4/+4 |
2014-11-29 | dyncom: Use unordered_map rather than the terrible 2-level bb_map | Yuri Kunde Schlesner | 1 | -33/+15 |
2014-11-29 | arm_dyncom_interpreter: Get rid of unused var warnings | Lioncash | 1 | -4/+2 |
2014-11-29 | Add comment regarding __WIN32__ in SkyEye code | darkf | 1 | -0/+4 |
2014-11-29 | Fix MinGW build | darkf | 1 | -0/+4 |
2014-11-25 | Remove unused includes to common/thread.h | Emmanuel Gil Peyrot | 1 | -2/+0 |
2014-11-24 | HLE: Revamp error handling throrough the HLE code | Yuri Kunde Schlesner | 1 | -16/+18 |
2014-11-24 | Change some SkyEye defines to const ints | Yuri Kunde Schlesner | 2 | -34/+16 |
2014-11-19 | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generated | Emmanuel Gil Peyrot | 7 | -12/+12 |
2014-11-18 | Fix documentation of parameters | Lioncash | 2 | -2/+2 |
2014-11-14 | ARM_Interface: Make destructor virtual | Lioncash | 1 | -1/+1 |
2014-11-12 | ARM: Fixed dyncom to use reg15 for PC (this core doesn't use pc variable). | bunnei | 1 | -2/+2 |
2014-11-12 | ARM: Removed unnecessary goto with each instruction. | bunnei | 1 | -43/+39 |
2014-11-12 | ARM: Fixed several dyncom bugs. | bunnei | 3 | -17/+25 |
2014-11-03 | Fix compilation errors | Sean Maas | 1 | -2/+2 |
2014-11-02 | ARM: Merged additional ARMv6 instructions implemented by 3dmoo. | bunnei | 1 | -42/+234 |
2014-11-02 | ARM: Merge latest VFP fixes from 3dmoo team. | bunnei | 4 | -2096/+2388 |
2014-10-31 | Fix VFP compilation errors with gcc | Yuri Kunde Schlesner | 1 | -12/+12 |
2014-10-26 | vfp_helper: Get rid of integer type redefinitions | Lioncash | 1 | -7/+1 |
2014-10-26 | Add `override` keyword through the code. | Yuri Kunde Schlesner | 2 | -18/+18 |
2014-10-25 | ARM: Removed unnecessary and unused SkyEye MMU code. | bunnei | 21 | -7728/+326 |
2014-10-25 | ARM: Removed unused armos code from SkyEye. | bunnei | 3 | -746/+0 |
2014-10-25 | ARM: Updated dyncom core to use fast label lookup table on clang. | bunnei | 1 | -3/+7 |
2014-10-25 | ARM: Integrate SkyEye faster "dyncom" interpreter. | bunnei | 18 | -50/+8216 |
2014-10-25 | ARM: Reorganized file structure to move shared SkyEye code to a more common area. | bunnei | 31 | -63/+63 |
2014-09-09 | core: Prune redundant includes | archshift | 1 | -1/+0 |
2014-09-09 | Added string_util to common, small changes in loader.cpp | archshift | 1 | -39/+39 |
2014-09-07 | Dead code removal: video_core.cpp, load_symbol_map.cpp | archshift | 1 | -1/+1 |
2014-09-06 | core: Make the ARM disassembler use std::string internally | Lioncash | 3 | -189/+143 |
2014-08-31 | Threading: Fix thread starting to execute first instruction correctly. | bunnei | 1 | -1/+1 |
2014-08-28 | Threading: Fix thread starting to execute first instruction correctly. | bunnei | 1 | -1/+1 |
2014-08-20 | ARM: Remove a forgotten const in vfp. | Emmanuel Gil Peyrot | 2 | -2/+2 |
2014-07-24 | ARM: Synchronize Citra's SkyEye core with 3dmoo's. | bunnei | 6 | -5919/+5303 |
2014-07-20 | core: Kill off type redefenitions in armdefs.h | Lioncash | 1 | -7/+0 |
2014-06-05 | arm: fixed a bug where ARM_Interpreter::ExecuteInstructions was actually executing one more instruction than expected | bunnei | 1 | -1/+1 |
2014-06-05 | arm: fixed bug in how thread context switch occurs with SkyEye | bunnei | 1 | -2/+5 |
2014-06-05 | arm: reverting a change made with cb0663de - this has to have been a typo! | bunnei | 1 | -1/+1 |
2014-06-02 | arm: added option to prepare CPU core (while mid-instruction) for thread reschedule | bunnei | 3 | -0/+11 |
2014-06-01 | Added 'this' reference to num_instructions field so it's properly updated,as before the method was affecting the local method parameter rather than the class field | Disruption | 1 | -1/+1 |
2014-05-30 | arm: removed unnecessary code when calling SVC from skyeye | bunnei | 1 | -16/+0 |
2014-05-23 | arm_interpreter: fixed load context to currently resume a thread | bunnei | 1 | -1/+4 |
2014-05-21 | arm: removed include of windows.h from armdefs.h to arminit.c (only module that uses it) | bunnei | 2 | -4/+3 |
2014-05-21 | armemu: missed rename of "Syscall" to "SVC" | bunnei | 1 | -1/+1 |
2014-05-21 | ARM_Interpreter/ARM_Interface: Fixed member variable naming to be consistent with style guide | bunnei | 3 | -45/+45 |
2014-05-21 | ARM_Interface: added SaveContext and LoadContext functions for HLE thread switching | bunnei | 3 | -1/+63 |
2014-05-20 | VFP: disable DBG messages because they spam the console with unimportant skyeye junk | bunnei | 1 | -1/+1 |
2014-05-17 | Fixed vfp issues | archshift | 4 | -10/+10 |
2014-05-17 | ignore thumbemu 0xDEADCODE debugging catch on MCR | bunnei | 1 | -2/+1 |
2014-05-17 | updated how we call ARM core to make things much faster | bunnei | 5 | -20/+30 |
2014-05-17 | same fix as last commit - just for vfpsingle.cpp | bunnei | 1 | -2/+2 |
2014-05-17 | another VFP fix for GCC | bunnei | 1 | -2/+2 |
2014-05-17 | fixed VFP DBG log for GCC | bunnei | 1 | -1/+1 |
2014-05-17 | - reenabled MCR and MRC functions now that VFP is attached | bunnei | 2 | -95/+92 |
2014-05-17 | - removed unused stubbed out code | bunnei | 5 | -33/+27 |
2014-05-16 | added maverick.cpp to ARM core from skyeye | bunnei | 1 | -0/+1206 |
2014-05-16 | fixed includes | bunnei | 1 | -2/+2 |
2014-05-16 | enabled CP_ACCESS_ALLOWED | bunnei | 1 | -6/+4 |
2014-05-16 | fixed include path | bunnei | 1 | -1/+1 |
2014-05-16 | removed undefined function ARMul_ConsolePrint | bunnei | 1 | -1/+1 |
2014-05-16 | added missing armcopro from skyeye | bunnei | 3 | -251/+1093 |
2014-05-16 | added missing skyeye mmu code | bunnei | 9 | -17/+3272 |
2014-05-16 | fixed armmmu imports | bunnei | 1 | -5/+5 |
2014-05-16 | - moved mmu to arm/interpreter folder | bunnei | 13 | -0/+8755 |
2014-05-12 | added option to set CPSR register to arm_interface | bunnei | 3 | -0/+20 |
2014-05-07 | - disable strict alignment on LDRD/STRD | bunnei | 1 | -17/+22 |
2014-05-06 | commented out useless debug logs that just spammed console | bunnei | 1 | -3/+3 |
2014-05-02 | - added CallMCR function to coprocessor HLE module | bunnei | 1 | -22/+23 |
2014-05-02 | renamed hle "mrc" module to "coprocessor" | bunnei | 1 | -8/+8 |
2014-05-01 | added a module to load symbol map files for debugging | bunnei | 2 | -0/+46 |
2014-04-28 | removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable class | bunnei | 2 | -3/+1 |
2014-04-28 | removed commented out line - this was for an unimplemented MRC call, no longer need to leave this here | bunnei | 1 | -1/+0 |
2014-04-25 | moved HLE::MRC to its own module, added support for catching data synchronization barrier command | bunnei | 2 | -3/+5 |
2014-04-25 | added disassembly to unimplemented instruction | bunnei | 1 | -1/+6 |
2014-04-23 | fixes to build on linux | bunnei | 1 | -0/+2 |
2014-04-13 | - added HLE to connect to "srv:" service | bunnei | 1 | -33/+35 |
2014-04-12 | hacked CPU interpreter to ignore branch on SVC instruction (as we are HLEing this...) | bunnei | 1 | -2/+6 |
2014-04-12 | added a SETABORT method that does not update LR (for HLE'd SVC that does not jump appcore CPU to an IRQ vector) | bunnei | 1 | -0/+11 |
2014-04-11 | base code to call a syscall from ARM11 appcore | bunnei | 1 | -0/+3 |
2014-04-11 | missed this file with commit 95e5436f | bunnei | 1 | -1/+10 |
2014-04-11 | cleaned up arm_interface, added a setter to set registers for use with HLE return values | bunnei | 2 | -6/+70 |
2014-04-09 | fixed licensing and updated code style naming for arm_interface/arm_interpreter frontend module | bunnei | 3 | -94/+57 |
2014-04-09 | fixed project includes to use new directory structure | bunnei | 10 | -27/+27 |
2014-04-09 | got rid of 'src' folders in each sub-project | bunnei | 25 | -0/+15528 |