| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-07-28 | dyncom: Remove an unnecessary typedef | Lioncash | |
| 2015-07-28 | dyncom: Use enum class for instruction decoding results | Lioncash | |
| 2015-07-27 | dyncom: Remove code duplication regarding thumb instructions | Lioncash | |
| 2015-07-27 | dyncom: Migrate exclusive memory access control into armstate | Lioncash | |
| 2015-07-27 | dyncom: Remove duplicated typedef and extern | Lioncash | |
| These are already present in arm_dyncom_dec.h. | |||
| 2015-07-26 | dyncom: Use std::array for register arrays | Lioncash | |
| 2015-07-26 | dyncom: Use ARMul_State as an object | Lioncash | |
| Gets rid of C-like parameter passing. | |||
| 2015-07-25 | dyncom: Remove unnecessary initialization code. | Lioncash | |
| Targeting ARM version variants was only a thing on armemu. The reset routine also does basically the same thing as NewState. | |||
| 2015-07-25 | dyncom: Remove unnecessary abort-related cruft | Lioncash | |
| Both the MPCore and the ARM9 have the same data abort model (base restored), so differentiating isn't necessary. | |||
| 2015-07-25 | dyncom: Rename armdefs.h to armstate.h | Lioncash | |
| 2015-07-25 | dyncom: Get rid of skyeye typedefs | Lioncash | |
| 2015-07-25 | dyncom: Move helper functions to their own header | Lioncash | |
| 2015-07-25 | dyncom: Move arminit.cpp and armsupp.cpp into skyeye_common | Lioncash | |
| 2015-07-25 | armdefs: Remove unnecessary extern keywords | Lioncash | |
| 2015-07-21 | dyncom: Pass SVC immediates directly. | Lioncash | |
| Previously it would just re-read the already decoded instruction and extract the immediate value. | |||
| 2015-07-19 | dyncom: Properly retrieve the PC value in BX if used. | Lioncash | |
| 2015-07-18 | Dyncom: Support for a missing ARMv6 Thumb MOV encoding | Yuri Kunde Schlesner | |
| 2015-07-16 | arm_dyncom_interpreter: Simplify assignment in SMLAW | Lioncash | |
| Also a side-benefit of not having implementation-defined behavior. | |||
| 2015-07-10 | Merge pull request #876 from linkmauve/include-cleanups | Yuri Kunde Schlesner | |
| Cleanup includes, mostly in common | |||
| 2015-06-29 | vfp: Change return type of VFPInit from unsigned int to void. | Lioncash | |
| 2015-06-29 | vfp: Handle accesses to FPINST/FPINST2 system registers | Lioncash | |
| Also has a side-benefit of correcting access to the FPEXC register. | |||
| 2015-06-28 | Core, VideoCore: Replace or fix exit() calls. | Emmanuel Gil Peyrot | |
| 2015-06-28 | Core: Cleanup core includes. | Emmanuel Gil Peyrot | |
| 2015-06-28 | Common: Fix FileUtil includes, and everything relying on those. | Emmanuel Gil Peyrot | |
| 2015-06-12 | vfp: Handle accesses to the VFP media feature registers | Lioncash | |
| These are able to be accessed in any privilege mode. | |||
| 2015-06-12 | vfp: Implement VMOVBCR/VMOVBRC | Lioncash | |
| 2015-06-04 | arm_dyncom_thumb: Fix handling of writeback for thumb LDMIA | Lioncash | |
| 2015-05-31 | arm_dyncom_thumb: Fix encoding of BKPT's immediate | Lioncash | |
| 2015-05-31 | arm_dyncom_thumb: Implement CPS and SETEND | Lioncash | |
| 2015-05-31 | arm_dyncom_thumb: Implement SXTH, SXTB, UXTH, and UXTB. | Lioncash | |
| 2015-05-31 | arm_dyncom_thumb: Implement REV, REV16, and REVSH. | Lioncash | |
| 2015-05-29 | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | |
| 2015-05-26 | Merge pull request #826 from lioncash/tables | Yuri Kunde Schlesner | |
| arm_dyncom_thumb: Merge STR/LDR table subsets. | |||
| 2015-05-26 | arm_dyncom_thumb: Merge STR/LDR table subsets. | Lioncash | |
| 2015-05-26 | arm_dyncom_interpreter: Remove unused variable | Lioncash | |
| Thum decoding directly checks if the thumb bit is set instead of using a temporary. | |||
| 2015-05-24 | arm_dyncom_interpreter: Remove unused macro | Lioncash | |
| 2015-05-23 | dyncom: Get rid of armemu.h | Lioncash | |
| 2015-05-22 | dyncom: Remove unused cpu parameter from decode_thumb_instr | Lioncash | |
| 2015-05-22 | dyncom: remove load_r15 from arm_inst | Lioncash | |
| It's entirely unused. Also allows getting rid of more clunky macros. | |||
| 2015-05-22 | dyncom: Remove unnecessary parameter for load/store operations | Lioncash | |
| 2015-05-22 | VFP: Log as trace to get rid of spamming. | bunnei | |
| 2015-05-21 | dyncom: Eliminate clang warnings | Lioncash | |
| Gets rid of a whole load of missing brace initialization warnings. | |||
| 2015-05-18 | Merge pull request #772 from lioncash/warn | bunnei | |
| core/video_core: Fix a few warnings when compiling on MSVC. | |||
| 2015-05-15 | Merge pull request #774 from lioncash/decodings | Yuri Kunde Schlesner | |
| dyncom: Add ARMv6K NOP and hint instructions to the interpreter. | |||
| 2015-05-15 | Merge pull request #770 from lioncash/dyncom_clean | bunnei | |
| dyncom: Minor cleanup. | |||
| 2015-05-15 | Memmap: Re-organize memory function in two files | Yuri Kunde Schlesner | |
| 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: Add ARMv6K NOP and hint instructions to the decoding table | Lioncash | |
| 2015-05-14 | dyncom: Handle some MSR variants individually | Lioncash | |
| This is necessary, as hint instructions will be recognized as MSR, which is pretty bad. | |||
| 2015-05-14 | dyncom: Move exclusive load/stores above bbl and swi in the decoding table | Lioncash | |
| 2015-05-14 | dyncom: Remove duplicate enums/prototypes | Lioncash | |
| These are already defined in arm_dyncom_interpreter_dec.cpp. | |||
