Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-07-26 | dyncom: Move arminit.cpp and armsupp.cpp into skyeye_common | Lioncash | 2 | -765/+0 | |
2015-05-29 | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | 1 | -1/+1 | |
2015-05-24 | dyncom: Get rid of armemu.h | Lioncash | 1 | -1/+0 | |
2015-05-15 | Memmap: Re-organize memory function in two files | Yuri Kunde Schlesner | 1 | -1/+0 | |
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. | |||||
2015-05-14 | dyncom: Removed irrelevant log. | bunnei | 1 | -2/+0 | |
2015-05-07 | Clean-up includes | Yuri Kunde Schlesner | 1 | -0/+2 | |
2015-05-02 | Dyncom: Move cream cache to ARMul_State. | bunnei | 1 | -2/+0 | |
2015-04-20 | dyncom: Remove more unused/unnecessary code | Lioncash | 1 | -22/+0 | |
Gets rid of a sizeable amount of stuff in armdefs. | |||||
2015-04-18 | dyncom: Remove unused/unnecessary VFP cruft | Lioncash | 2 | -151/+8 | |
2015-04-06 | core: Migrate 3DS-specific CP15 register setting into Init | Lioncash | 1 | -8/+0 | |
2015-04-06 | Move CP15 enum definitions into their own enum. | Lioncash | 2 | -144/+144 | |
Also gets rid of preprocessor mumbo-jumbo | |||||
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-02 | dyncom: Move CP15 register writing into its own function. | Lioncash | 1 | -0/+229 | |
Also implements writing to the rest of the ARM11 MPCore CP15 register set. | |||||
2015-04-02 | dyncom: Move CP15 register reading into its own function. | Lioncash | 1 | -0/+196 | |
Keeps everything contained. Added all supported readable registers in an ARM11 MPCore. | |||||
2015-03-26 | dyncom: Migrate InAPrivilegedMode to armsupp | Lioncash | 1 | -0/+6 | |
It's a generic helper function, so it should be here anyway. | |||||
2015-03-17 | dyncom: Make Load/Store instructions support big endian | Lioncash | 1 | -0/+6 | |
2015-02-25 | arm: Remove unnecessary booleans | Lioncash | 1 | -4/+0 | |
We don't care about any of these. | |||||
2015-02-13 | arm: General cleanup | Lioncash | 2 | -4/+2 | |
- Remove several typedefs for ARMul_State. - Remove unused functions - Remove unused/unnecessary headers - Removed unused enums, etc. | |||||
2015-02-13 | dyncom: Clean up the constructor | Lioncash | 1 | -4/+3 | |
Some function calls aren't necessary and would be handled by regular initialization routines. | |||||
2015-02-12 | arm: Remove ARMul_EmulateInit | Lioncash | 1 | -40/+0 | |
This was only used for armemu, which has since been removed. Removed components related to this as well. | |||||
2015-02-11 | arm: Remove ARM26 support. | Lioncash | 1 | -25/+4 | |
This will never be used. 32-bit is the norm. | |||||
2015-02-11 | arm: Get rid of some magic constants. Specify proper ARM mode. | Lioncash | 1 | -1/+1 | |
Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE. | |||||
2015-02-10 | arm: Remove TRUE/FALSE defines | Lioncash | 2 | -12/+9 | |
- Removed the Debug parameter from ARMul_State since it isn't used. - Changed ARMul_CoProInit to a void function. It always returned true. | |||||
2015-02-01 | arm: Clean up ARMul_State | Lioncash | 1 | -20/+9 | |
Remove unnecessary/unused struct variables. | |||||
2015-02-01 | arm: Adios armemu | Lioncash | 8 | -7751/+56 | |
2015-01-30 | arm: Throw out a lot of unnecessary code | Lioncash | 3 | -1257/+36 | |
2015-01-19 | Cleanup: Logging in Core | Chin | 1 | -51/+6 | |
2015-01-12 | dyncom: Add a helper function for addition with a carry | Lioncash | 1 | -0/+16 | |
2015-01-09 | Move ThreadContext to core/core.h and deal with the fallout | Yuri Kunde Schlesner | 2 | -4/+6 | |
2015-01-05 | dyncom: Implement QADD/QSUB/QDADD/QDSUB | Lioncash | 1 | -12/+8 | |
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 | 2 | -5/+9 | |
2015-01-01 | Fix SADD8/SSUB8 in the armemu | Lioncash | 1 | -50/+28 | |
2014-12-30 | dyncom: Implement USAT/SSAT | bunnei | 1 | -0/+35 | |
2014-12-29 | armemu: Implement QADD8/QSUB8 | Lioncash | 2 | -33/+95 | |
2014-12-28 | armemu: Fix PKHTB to do an arithmetic shift and correctly decode immediate field. | bunnei | 1 | -13/+5 | |
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 | 2 | -4/+13 | |
Initially reported by xdec. | |||||
2014-12-27 | armemu: Implement UQADD8, UQADD16, UQSUB16, UQASX, and UQSAX | Lioncash | 2 | -19/+89 | |
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 | 2 | -46/+11 | |
- Also a few cleanups. | |||||
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 | |
They were setting the old S flag. | |||||
2014-12-23 | armemu: Set the Q flag properly for SMLAD/SMUAD | Lioncash | 2 | -13/+27 | |
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 | |
Needs to use the updated state of the CPSR. | |||||
2014-12-23 | armemu: Fix construction of the CPSR | Lioncash | 2 | -11/+49 | |
2014-12-23 | armemu: Fix retrieval of the CPSR in MRS instructions. | Lioncash | 1 | -1/+1 | |
2014-12-21 | License change | purpasmart96 | 2 | -2/+2 | |
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 | armemu: Implement USAD8 and USADA8 | Lioncash | 1 | -1/+24 | |
2014-12-19 | armemu: Fix SSAT16 | Lioncash | 1 | -1/+1 | |
The lower-bound would never be negative like it should | |||||
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 | |
Reference manual states these must be set to zero if this case is true. | |||||
2014-12-17 | armemu: Fix SSUB16 | Lioncash | 1 | -8/+8 | |
Broken from the same reason SADD16 was. The lo part of the result should only be constructed from the lo halfwords of rm and rn. The hi part of the result should only be constructed from the hi halfwords of rm and rn. | |||||
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 | |
There's no reason to have these in the outer-most scope. | |||||
2014-12-17 | armemu: Fix SADD16 | Lioncash | 1 | -8/+9 | |
The lo and hi parts of the result were being constructed as a result of hi and lo halfword intermixing from the rm and rn regs. However the lo part of the result should be constructed only from the lo halfwords of rm and rn, and the hi part of the result should only be constructed from the hi halfwords of rm and rn. | |||||
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 SMUAD, SMUSD, and SMLAD | Lioncash | 1 | -3/+3 | |
Wrong values were being multiplied together. | |||||
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 | |
The only difference between these ops is one adds and one subtracts. Everything is literally the same. | |||||
2014-12-16 | armemu: Implement UXTAB16 | Lioncash | 1 | -10/+25 | |
2014-12-15 | armemu: Fix UXTB16 | Lioncash | 1 | -12/+12 | |
Rotation bits are 10 and 11, not 9 and 10. | |||||
2014-12-15 | ARM: Pull some SkyEye fixes from 3dmoo. | bunnei | 1 | -415/+481 | |
2014-12-13 | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | 3 | -7/+7 | |
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-19 | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generated | Emmanuel Gil Peyrot | 2 | -3/+3 | |
2014-11-18 | Fix documentation of parameters | Lioncash | 1 | -1/+1 | |
2014-11-02 | ARM: Merged additional ARMv6 instructions implemented by 3dmoo. | bunnei | 1 | -42/+234 | |
2014-10-26 | Add `override` keyword through the code. | Yuri Kunde Schlesner | 1 | -11/+11 | |
This was automated using `clang-modernize`. | |||||
2014-10-25 | ARM: Removed unnecessary and unused SkyEye MMU code. | bunnei | 18 | -7609/+326 | |
Added license header back in. I originally removed this because I mostly rewrote the file, but meh | |||||
2014-10-25 | ARM: Removed unused armos code from SkyEye. | bunnei | 3 | -746/+0 | |
2014-10-25 | ARM: Integrate SkyEye faster "dyncom" interpreter. | bunnei | 2 | -12/+5 | |
Fixed typo (make protected member public) Added license header back in. I originally removed this because I mostly rewrote the file, but meh ARM: Fixed a type error in dyncom interpreter. ARM: Updated dyncom to use unique_ptr for internal ARM state. | |||||
2014-10-25 | ARM: Reorganized file structure to move shared SkyEye code to a more common area. | bunnei | 31 | -11069/+36 | |
Removed s_ prefix | |||||
2014-09-06 | core: Make the ARM disassembler use std::string internally | Lioncash | 1 | -6/+3 | |
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 | 2 | -0/+8 | |
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 | 2 | -40/+40 | |
2014-05-21 | ARM_Interface: added SaveContext and LoadContext functions for HLE thread switching | bunnei | 2 | -0/+48 | |
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 | 4 | -15/+14 | |
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 | |
- removed HLE::CallMCR function (was pointless) | |||||
2014-05-17 | - removed unused stubbed out code | bunnei | 5 | -33/+27 | |
- fixed some compiler issues with xscale_copro when porting code to Windows - fixed some #include's | |||||
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/+10304 | |
- added initial VFP code from skyeye | |||||
2014-05-12 | added option to set CPSR register to arm_interface | bunnei | 2 | -0/+14 | |
2014-05-07 | - disable strict alignment on LDRD/STRD | bunnei | 1 | -17/+22 | |
- handle RD in STREX/STREXB | |||||
2014-05-02 | - added CallMCR function to coprocessor HLE module | bunnei | 1 | -22/+23 | |
- moved instruction decoding to coprocessor HLE module | |||||
2014-05-02 | renamed hle "mrc" module to "coprocessor" | bunnei | 1 | -8/+8 | |
2014-04-28 | removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable class | bunnei | 1 | -1/+0 | |
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 | |
- added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function | |||||
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 | 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 | 2 | -85/+46 | |
2014-04-09 | fixed project includes to use new directory structure | bunnei | 7 | -21/+20 | |
2014-04-09 | got rid of 'src' folders in each sub-project | bunnei | 16 | -0/+12762 | |