aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/arm
Commit message (Collapse)AuthorAge
* Merge pull request #1008 from lioncash/pcGravatar bunnei2015-07-30
|\ | | | | dyncom: Handle the case where PC is the source register for STR/VSTM/VLDM
* | dyncom: Remove an unused variableGravatar Lioncash2015-07-29
| | | | | | | | This was used prior to InterpreterTranslate existing.
| * dyncom: Handle the case where PC is the source register for STR/VSTM/VLDMGravatar Lioncash2015-07-29
|/
* dyncom: Handle left-operand PC correctly for data-processing opsGravatar Lioncash2015-07-28
| | | | | | This is considered deprecated in the ARM manual (using PC as an operand), however, this is still able to be executed on the MPCore (which I'm quite sure would be rare to begin with).
* dyncom: Remove an unnecessary typedefGravatar Lioncash2015-07-28
|
* dyncom: Use enum class for instruction decoding resultsGravatar Lioncash2015-07-28
|
* dyncom: Remove code duplication regarding thumb instructionsGravatar Lioncash2015-07-27
|
* dyncom: Migrate exclusive memory access control into armstateGravatar Lioncash2015-07-27
|
* dyncom: Remove duplicated typedef and externGravatar Lioncash2015-07-27
| | | | These are already present in arm_dyncom_dec.h.
* dyncom: Use std::array for register arraysGravatar Lioncash2015-07-26
|
* dyncom: Use ARMul_State as an objectGravatar Lioncash2015-07-26
| | | | Gets rid of C-like parameter passing.
* dyncom: Remove unnecessary initialization code.Gravatar Lioncash2015-07-25
| | | | | | Targeting ARM version variants was only a thing on armemu. The reset routine also does basically the same thing as NewState.
* dyncom: Remove unnecessary abort-related cruftGravatar Lioncash2015-07-25
| | | | Both the MPCore and the ARM9 have the same data abort model (base restored), so differentiating isn't necessary.
* dyncom: Rename armdefs.h to armstate.hGravatar Lioncash2015-07-25
|
* dyncom: Get rid of skyeye typedefsGravatar Lioncash2015-07-25
|
* dyncom: Move helper functions to their own headerGravatar Lioncash2015-07-25
|
* dyncom: Move arminit.cpp and armsupp.cpp into skyeye_commonGravatar Lioncash2015-07-25
|
* armdefs: Remove unnecessary extern keywordsGravatar Lioncash2015-07-25
|
* dyncom: Pass SVC immediates directly.Gravatar Lioncash2015-07-21
| | | | Previously it would just re-read the already decoded instruction and extract the immediate value.
* dyncom: Properly retrieve the PC value in BX if used.Gravatar Lioncash2015-07-19
|
* Dyncom: Support for a missing ARMv6 Thumb MOV encodingGravatar Yuri Kunde Schlesner2015-07-18
|
* arm_dyncom_interpreter: Simplify assignment in SMLAWGravatar Lioncash2015-07-16
| | | | Also a side-benefit of not having implementation-defined behavior.
* Merge pull request #876 from linkmauve/include-cleanupsGravatar Yuri Kunde Schlesner2015-07-10
|\ | | | | Cleanup includes, mostly in common
* | vfp: Change return type of VFPInit from unsigned int to void.Gravatar Lioncash2015-06-29
| |
* | vfp: Handle accesses to FPINST/FPINST2 system registersGravatar Lioncash2015-06-29
| | | | | | | | Also has a side-benefit of correcting access to the FPEXC register.
| * Core, VideoCore: Replace or fix exit() calls.Gravatar Emmanuel Gil Peyrot2015-06-28
| |
| * Core: Cleanup core includes.Gravatar Emmanuel Gil Peyrot2015-06-28
| |
| * Common: Fix FileUtil includes, and everything relying on those.Gravatar Emmanuel Gil Peyrot2015-06-28
|/
* vfp: Handle accesses to the VFP media feature registersGravatar Lioncash2015-06-12
| | | | These are able to be accessed in any privilege mode.
* vfp: Implement VMOVBCR/VMOVBRCGravatar Lioncash2015-06-12
|
* arm_dyncom_thumb: Fix handling of writeback for thumb LDMIAGravatar Lioncash2015-06-04
|
* arm_dyncom_thumb: Fix encoding of BKPT's immediateGravatar Lioncash2015-05-31
|
* arm_dyncom_thumb: Implement CPS and SETENDGravatar Lioncash2015-05-31
|
* arm_dyncom_thumb: Implement SXTH, SXTB, UXTH, and UXTB.Gravatar Lioncash2015-05-31
|
* arm_dyncom_thumb: Implement REV, REV16, and REVSH.Gravatar Lioncash2015-05-31
|
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-29
|
* Merge pull request #826 from lioncash/tablesGravatar Yuri Kunde Schlesner2015-05-26
|\ | | | | arm_dyncom_thumb: Merge STR/LDR table subsets.
| * arm_dyncom_thumb: Merge STR/LDR table subsets.Gravatar Lioncash2015-05-26
| |
* | arm_dyncom_interpreter: Remove unused variableGravatar Lioncash2015-05-26
| | | | | | | | Thum decoding directly checks if the thumb bit is set instead of using a temporary.
* | arm_dyncom_interpreter: Remove unused macroGravatar Lioncash2015-05-24
|/
* dyncom: Get rid of armemu.hGravatar Lioncash2015-05-23
|
* dyncom: Remove unused cpu parameter from decode_thumb_instrGravatar Lioncash2015-05-22
|
* dyncom: remove load_r15 from arm_instGravatar Lioncash2015-05-22
| | | | It's entirely unused. Also allows getting rid of more clunky macros.
* dyncom: Remove unnecessary parameter for load/store operationsGravatar Lioncash2015-05-22
|
* VFP: Log as trace to get rid of spamming.Gravatar bunnei2015-05-22
|
* dyncom: Eliminate clang warningsGravatar Lioncash2015-05-21
| | | | Gets rid of a whole load of missing brace initialization warnings.
* Merge pull request #772 from lioncash/warnGravatar bunnei2015-05-18
|\ | | | | core/video_core: Fix a few warnings when compiling on MSVC.
* \ Merge pull request #774 from lioncash/decodingsGravatar Yuri Kunde Schlesner2015-05-15
|\ \ | | | | | | dyncom: Add ARMv6K NOP and hint instructions to the interpreter.
* \ \ Merge pull request #770 from lioncash/dyncom_cleanGravatar bunnei2015-05-15
|\ \ \ | | | | | | | | dyncom: Minor cleanup.
* | | | Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner2015-05-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.