aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/arm
Commit message (Collapse)AuthorAge
...
| | * | dyncom: Add ARMv6K NOP and hint instructions to the decoding tableGravatar Lioncash2015-05-14
| | | |
| | * | dyncom: Handle some MSR variants individuallyGravatar Lioncash2015-05-14
| | | | | | | | | | | | | | | | This is necessary, as hint instructions will be recognized as MSR, which is pretty bad.
| | * | dyncom: Move exclusive load/stores above bbl and swi in the decoding tableGravatar Lioncash2015-05-14
| |/ / |/| |
| * | dyncom: Remove duplicate enums/prototypesGravatar Lioncash2015-05-14
| | | | | | | | | | | | These are already defined in arm_dyncom_interpreter_dec.cpp.
| * | dyncom: Remove unnecessary definesGravatar Lioncash2015-05-14
| | | | | | | | | | | | These can simply be const vars.
| * | dyncom: Make translation-unit functions and variables staticGravatar Lioncash2015-05-14
| | |
| | * vfp: Get rid of warningsGravatar Lioncash2015-05-14
| |/ |/| | | | | | | - Unary minus operator applied to unsigned type. - Unsafe use of bool.
| * dyncom: Remove unnecessary typedefsGravatar Lioncash2015-05-14
| |
| * dyncom: Remove unused structsGravatar Lioncash2015-05-14
|/
* dyncom: Removed irrelevant log.Gravatar bunnei2015-05-14
|
* dyncom: Fix decoding of BKPT's immediateGravatar Lioncash2015-05-13
| | | | A shift here is intended since the representation is imm12:imm4
* Merge pull request #752 from lioncash/flushGravatar bunnei2015-05-11
|\ | | | | vfp: Handle flush-to-zero mode.
* | dyncom: Stub MCRR and MRRCGravatar Lioncash2015-05-11
| | | | | | | | | | There's no other coprocessor outside the VFP (which has its own VMOV variants) in which the MPCore can send/retrieve data from. Stubbed so citra won't crash and burn on the odd chance someone actually tries to use these.
| * vfp: Handle flush-to-zero mode.Gravatar Lioncash2015-05-11
|/
* Merge pull request #728 from lioncash/varsGravatar Lioncash2015-05-07
|\ | | | | dyncom: Remove an unnecessary variable in the interpreter
* | Remove unnecessary dyncom header filesGravatar Lioncash2015-05-07
| |
| * dyncom: Remove an unnecessary variable in the interpreterGravatar Lioncash2015-05-07
|/ | | | All this was doing was needlessly aliasing a variable.
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Clean-up includesGravatar Yuri Kunde Schlesner2015-05-06
|
* HLE: Clean up SVC dispatch mechanismGravatar Yuri Kunde Schlesner2015-05-06
|
* Dyncom: Move cream cache to ARMul_State.Gravatar bunnei2015-05-01
|
* dyncom: Remove more unused/unnecessary codeGravatar Lioncash2015-04-20
| | | | Gets rid of a sizeable amount of stuff in armdefs.
* dyncom: Remove unused/unnecessary VFP cruftGravatar Lioncash2015-04-17
|
* Core_ARM11: Replace debug prints with our own logging functions in vfpsingle.Gravatar Emmanuel Gil Peyrot2015-04-14
|
* Headers: Add some forgotten overrides, thanks clang!Gravatar Emmanuel Gil Peyrot2015-04-14
|
* dyncom: Remove unnecessary enum and typedefGravatar Lioncash2015-04-07
| | | | Also fixes descriptions in the process.
* vfp: Make the FPSID values match the MPCoreGravatar Lioncash2015-04-06
|
* vfp: Get rid of the VFP_OFFSET macroGravatar Lioncash2015-04-06
|
* Merge pull request #685 from lioncash/cpregsGravatar bunnei2015-04-06
|\ | | | | dyncom: Set the MPCore CP15 register reset values on initialization.
| * core: Migrate 3DS-specific CP15 register setting into InitGravatar Lioncash2015-04-06
| |
| * arm_interface: Support retrieval/storage to CP15 registersGravatar Lioncash2015-04-06
| |
| * Move CP15 enum definitions into their own enum.Gravatar Lioncash2015-04-06
| | | | | | | | Also gets rid of preprocessor mumbo-jumbo
| * dyncom: Properly return the value of the user RO thread registerGravatar Lioncash2015-04-06
| |
| * dyncom: Set CP15 reset values on initializationGravatar Lioncash2015-04-06
| |
* | dyncom: Suppress uninitialized variable warningsGravatar Lioncash2015-04-05
|/ | | | The switch cases will always be hit, but this makes compilers stop complaining.
* dyncom: Move CP15 register writing into its own function.Gravatar Lioncash2015-04-02
| | | | Also implements writing to the rest of the ARM11 MPCore CP15 register set.
* dyncom: Move CP15 register reading into its own function.Gravatar Lioncash2015-04-02
| | | | Keeps everything contained. Added all supported readable registers in an ARM11 MPCore.
* dyncom: Migrate InAPrivilegedMode to armsuppGravatar Lioncash2015-03-26
| | | | It's a generic helper function, so it should be here anyway.
* Merge pull request #674 from lioncash/sys-instrsGravatar bunnei2015-03-24
|\ | | | | dyncom: Implement RFE and SRS.
| * dyncom: Implement SRSGravatar Lioncash2015-03-24
| |
| * dyncom: Implement RFEGravatar Lioncash2015-03-24
| |
* | dyncom: Remove unused/unnecessary macros and macro constantsGravatar Lioncash2015-03-24
|/
* armmmu: Remove unnecessary enum valuesGravatar Lioncash2015-03-20
| | | | We don't need to care about XScale or Intel specific ARM stuff.
* Merge pull request #659 from lioncash/setendGravatar bunnei2015-03-19
|\ | | | | Implement SETEND.
| * dyncom: Make Load/Store instructions support big endianGravatar Lioncash2015-03-17
| |
* | arm_interface: Get rid of GetTicks.Gravatar Lioncash2015-03-16
| | | | | | | | Removes a TODO.
| * dyncom: Implement SETENDGravatar Lioncash2015-03-14
|/
* dyncom: Minor cleanupGravatar Lioncash2015-03-10
| | | | Assemblers will exit with an error when trying to assemble instructions with disallowed registers.
* dyncom: Fix an indexing bug in STMGravatar Lioncash2015-03-08
| | | | Previously it would write the contents of register 13 for the case where the link register (r14) is supposed to be written.
* dyncom: General cleanup of STMGravatar Lioncash2015-03-08
|