| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Dyncom: Support for a missing ARMv6 Thumb MOV encoding | 2015-07-18 | 1 | -10/+4 | |
| | | |||||
| * | arm_dyncom_interpreter: Simplify assignment in SMLAW | 2015-07-16 | 1 | -1/+1 | |
| | | | | | Also a side-benefit of not having implementation-defined behavior. | ||||
| * | Merge pull request #876 from linkmauve/include-cleanups | 2015-07-10 | 4 | -4/+12 | |
| |\ | | | | | Cleanup includes, mostly in common | ||||
| | * | Core, VideoCore: Replace or fix exit() calls. | 2015-06-28 | 2 | -4/+6 | |
| | | | |||||
| | * | Core: Cleanup core includes. | 2015-06-28 | 1 | -0/+5 | |
| | | | |||||
| | * | Common: Fix FileUtil includes, and everything relying on those. | 2015-06-28 | 1 | -0/+1 | |
| | | | |||||
| * | | vfp: Change return type of VFPInit from unsigned int to void. | 2015-06-29 | 2 | -4/+2 | |
| | | | |||||
| * | | vfp: Handle accesses to FPINST/FPINST2 system registers | 2015-06-29 | 4 | -42/+53 | |
| |/ | | | | Also has a side-benefit of correcting access to the FPEXC register. | ||||
| * | vfp: Handle accesses to the VFP media feature registers | 2015-06-12 | 3 | -4/+8 | |
| | | | | | These are able to be accessed in any privilege mode. | ||||
| * | vfp: Implement VMOVBCR/VMOVBRC | 2015-06-12 | 2 | -5/+8 | |
| | | |||||
| * | arm_dyncom_thumb: Fix handling of writeback for thumb LDMIA | 2015-06-04 | 1 | -5/+19 | |
| | | |||||
| * | arm_dyncom_thumb: Fix encoding of BKPT's immediate | 2015-05-31 | 1 | -1/+4 | |
| | | |||||
| * | arm_dyncom_thumb: Implement CPS and SETEND | 2015-05-31 | 1 | -0/+13 | |
| | | |||||
| * | arm_dyncom_thumb: Implement SXTH, SXTB, UXTH, and UXTB. | 2015-05-31 | 1 | -0/+11 | |
| | | |||||
| * | arm_dyncom_thumb: Implement REV, REV16, and REVSH. | 2015-05-31 | 1 | -2/+12 | |
| | | |||||
| * | Remove every trailing whitespace from the project (but externals). | 2015-05-29 | 6 | -24/+24 | |
| | | |||||
| * | Merge pull request #826 from lioncash/tables | 2015-05-26 | 1 | -22/+11 | |
| |\ | | | | | arm_dyncom_thumb: Merge STR/LDR table subsets. | ||||
| | * | arm_dyncom_thumb: Merge STR/LDR table subsets. | 2015-05-26 | 1 | -22/+11 | |
| | | | |||||
| * | | arm_dyncom_interpreter: Remove unused variable | 2015-05-26 | 1 | -5/+1 | |
| | | | | | | | | | Thum decoding directly checks if the thumb bit is set instead of using a temporary. | ||||
| * | | arm_dyncom_interpreter: Remove unused macro | 2015-05-24 | 1 | -1/+0 | |
| |/ | |||||
| * | dyncom: Get rid of armemu.h | 2015-05-23 | 4 | -49/+29 | |
| | | |||||
| * | dyncom: Remove unused cpu parameter from decode_thumb_instr | 2015-05-22 | 1 | -3/+2 | |
| | | |||||
| * | dyncom: remove load_r15 from arm_inst | 2015-05-22 | 2 | -490/+331 | |
| | | | | | It's entirely unused. Also allows getting rid of more clunky macros. | ||||
| * | dyncom: Remove unnecessary parameter for load/store operations | 2015-05-22 | 1 | -39/+39 | |
| | | |||||
| * | VFP: Log as trace to get rid of spamming. | 2015-05-22 | 1 | -23/+23 | |
| | | |||||
| * | dyncom: Eliminate clang warnings | 2015-05-21 | 4 | -406/+404 | |
| | | | | | Gets rid of a whole load of missing brace initialization warnings. | ||||
| * | Merge pull request #772 from lioncash/warn | 2015-05-18 | 2 | -6/+6 | |
| |\ | | | | | core/video_core: Fix a few warnings when compiling on MSVC. | ||||
| | * | vfp: Get rid of warnings | 2015-05-14 | 2 | -6/+6 | |
| | | | | | | | | | | | - Unary minus operator applied to unsigned type. - Unsafe use of bool. | ||||
| * | | Merge pull request #774 from lioncash/decodings | 2015-05-15 | 2 | -33/+191 | |
| |\ \ | | | | | | | dyncom: Add ARMv6K NOP and hint instructions to the interpreter. | ||||
| | * | | dyncom: Add ARMv6K NOP and hint instructions to the decoding table | 2015-05-14 | 2 | -12/+152 | |
| | | | | |||||
| | * | | dyncom: Handle some MSR variants individually | 2015-05-14 | 2 | -24/+41 | |
| | | | | | | | | | | | | | 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 table | 2015-05-14 | 2 | -14/+15 | |
| | |/ | |||||
| * | | Merge pull request #770 from lioncash/dyncom_clean | 2015-05-15 | 2 | -275/+260 | |
| |\ \ | | | | | | | dyncom: Minor cleanup. | ||||
| | * | | dyncom: Remove duplicate enums/prototypes | 2015-05-14 | 1 | -7/+1 | |
| | | | | | | | | | | | | | These are already defined in arm_dyncom_interpreter_dec.cpp. | ||||
| | * | | dyncom: Remove unnecessary defines | 2015-05-14 | 1 | -4/+4 | |
| | | | | | | | | | | | | | These can simply be const vars. | ||||
| | * | | dyncom: Make translation-unit functions and variables static | 2015-05-14 | 1 | -66/+64 | |
| | | | | |||||
| | * | | dyncom: Remove unnecessary typedefs | 2015-05-14 | 2 | -196/+197 | |
| | | | | |||||
| | * | | dyncom: Remove unused structs | 2015-05-14 | 1 | -8/+0 | |
| | |/ | |||||
| * / | Memmap: Re-organize memory function in two files | 2015-05-15 | 3 | -3/+2 | |
| |/ | | | | | | | 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. | ||||
| * | dyncom: Removed irrelevant log. | 2015-05-14 | 1 | -2/+0 | |
| | | |||||
| * | dyncom: Fix decoding of BKPT's immediate | 2015-05-13 | 1 | -1/+1 | |
| | | | | | A shift here is intended since the representation is imm12:imm4 | ||||
| * | Merge pull request #752 from lioncash/flush | 2015-05-11 | 3 | -84/+98 | |
| |\ | | | | | vfp: Handle flush-to-zero mode. | ||||
| | * | vfp: Handle flush-to-zero mode. | 2015-05-11 | 3 | -84/+98 | |
| | | | |||||
| * | | dyncom: Stub MCRR and MRRC | 2015-05-11 | 1 | -7/+68 | |
| |/ | | | | | 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. | ||||
| * | Merge pull request #728 from lioncash/vars | 2015-05-07 | 1 | -19/+17 | |
| |\ | | | | | dyncom: Remove an unnecessary variable in the interpreter | ||||
| | * | dyncom: Remove an unnecessary variable in the interpreter | 2015-05-07 | 1 | -19/+17 | |
| | | | | | | | | | All this was doing was needlessly aliasing a variable. | ||||
| * | | Remove unnecessary dyncom header files | 2015-05-07 | 5 | -80/+2 | |
| |/ | |||||
| * | Common: Remove common.h | 2015-05-07 | 3 | -2/+2 | |
| | | |||||
| * | Clean-up includes | 2015-05-06 | 2 | -0/+4 | |
| | | |||||
| * | HLE: Clean up SVC dispatch mechanism | 2015-05-06 | 1 | -2/+2 | |
| | | |||||