| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | CitraQt, SkyEye, Loader, VideoCore: Remove newlines in LOG_* calls. | 2015-10-09 | 3 | -45/+45 | |
| | | | | | The LOG_* function itself already appends one. | ||||
| * | general: Silence some warnings when using clang | 2015-09-16 | 1 | -1/+0 | |
| | | |||||
| * | General: Replace NULL and '0' usages with nullptr where applicable | 2015-09-11 | 3 | -30/+30 | |
| | | |||||
| * | DynCom: Converted all 0xE condition code checks to ConditionCode::AL | 2015-09-05 | 2 | -132/+132 | |
| | | |||||
| * | dyncom: Simplify some comparisons in CondPassed | 2015-08-26 | 1 | -4/+4 | |
| | | |||||
| * | dyncom: Change return type of CondPassed to bool | 2015-08-25 | 1 | -57/+39 | |
| | | |||||
| * | Integrate the MicroProfile profiling library | 2015-08-24 | 1 | -0/+7 | |
| | | | | | | This brings goodies such as a configurable user interface and multi-threaded timeline view. | ||||
| * | Merge pull request #1025 from yuriks/heap-management | 2015-08-22 | 2 | -2/+0 | |
| |\ | | | | | Kernel: Correct(er) handling of Heap and Linear Heap allocations | ||||
| | * | Memory: Move address type conversion routines to memory.cpp/h | 2015-08-16 | 2 | -2/+0 | |
| | | | | | | | | | | | These helpers aren't really part of the kernel, and mem_map.cpp/h is going to be moved there next. | ||||
| * | | vfp: use std::swap where applicable | 2015-08-15 | 2 | -12/+6 | |
| |/ | |||||
| * | Merge pull request #1027 from lioncash/debugger | 2015-08-13 | 4 | -1/+49 | |
| |\ | | | | | debugger: Add the ability to view VFP register contents | ||||
| | * | arm_interface: Implement interface for retrieving VFP registers | 2015-08-06 | 4 | -1/+49 | |
| | | | |||||
| * | | ARM Core, Video Core, CitraQt, Citrace: Use CommonTypes types instead of the ↵ | 2015-08-11 | 4 | -305/+310 | |
| | | | | | | | | | standard u?int*_t types. | ||||
| * | | arm_disasm: ARMv6 mul/div and abs media instructions | 2015-08-11 | 2 | -1/+119 | |
| | | | | | | | | | | | | | SMLAD, SMUAD, SMLSD, SMUSD, SMLALD, SMLSLD, SMMLA, SMMUL, SMMLS USAD8, USADA8 | ||||
| * | | arm_disasm: ARMv6 parallel add/sub media instructions | 2015-08-11 | 2 | -0/+167 | |
| | | | | | | | | | {S, U, Q, UQ, SH, UH}{ADD16, ASX, SAX, SUB16, ADD8, SUB8} | ||||
| * | | arm_disasm: ARMv6 reversal media instructions | 2015-08-09 | 2 | -0/+26 | |
| | | | | | | | | | | | REV, REV16, REVSH Only their ARM encoding, Thumb encoding is still missing. | ||||
| * | | arm_disasm: ARMv6 saturation media instructions | 2015-08-09 | 2 | -2/+55 | |
| | | | | | | | | | SSAT, SSAT16, USAT, USAT16 | ||||
| * | | arm_disasm: ARMv6 packing and sign-extend media instructions | 2015-08-09 | 2 | -1/+181 | |
| | | | | | | | | | | | | | PKH, SEL SXTAB, SXTAB16, SXTB, SXTB16, SXTH, SXTAH UXTAB, UXTAB16, UXTB, UXTB16, UXTH, UXTAH | ||||
| * | | Merge pull request #1026 from lioncash/disasm | 2015-08-07 | 1 | -12/+4 | |
| |\ \ | |/ |/| | arm_disasm: Remove unnecessary code | ||||
| | * | arm_disasm: Remove unnecessary code | 2015-08-06 | 1 | -12/+4 | |
| | | | | | | | | | This part of disassembly only determines the opcode, there's no need for offset calculation here. | ||||
| * | | Disassembler: ARMv6K REX instructions | 2015-08-06 | 2 | -6/+97 | |
| | | | |||||
| * | | Disassembler: ARMv6K hint instructions | 2015-08-06 | 2 | -0/+56 | |
| | | | |||||
| * | | Merge pull request #1008 from lioncash/pc | 2015-07-30 | 2 | -21/+40 | |
| |\ \ | | | | | | | dyncom: Handle the case where PC is the source register for STR/VSTM/VLDM | ||||
| | * | | dyncom: Handle the case where PC is the source register for STR/VSTM/VLDM | 2015-07-29 | 2 | -21/+40 | |
| | |/ | |||||
| * / | dyncom: Remove an unused variable | 2015-07-29 | 1 | -3/+0 | |
| |/ | | | | This was used prior to InterpreterTranslate existing. | ||||
| * | dyncom: Handle left-operand PC correctly for data-processing ops | 2015-07-28 | 1 | -7/+33 | |
| | | | | | | | 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 typedef | 2015-07-28 | 2 | -7/+5 | |
| | | |||||
| * | dyncom: Use enum class for instruction decoding results | 2015-07-28 | 5 | -41/+40 | |
| | | |||||
| * | dyncom: Remove code duplication regarding thumb instructions | 2015-07-27 | 3 | -23/+12 | |
| | | |||||
| * | dyncom: Migrate exclusive memory access control into armstate | 2015-07-27 | 2 | -50/+35 | |
| | | |||||
| * | dyncom: Remove duplicated typedef and extern | 2015-07-27 | 1 | -4/+0 | |
| | | | | | These are already present in arm_dyncom_dec.h. | ||||
| * | dyncom: Use std::array for register arrays | 2015-07-26 | 2 | -28/+29 | |
| | | |||||
| * | dyncom: Use ARMul_State as an object | 2015-07-26 | 11 | -1102/+1022 | |
| | | | | | Gets rid of C-like parameter passing. | ||||
| * | dyncom: Remove unnecessary initialization code. | 2015-07-25 | 4 | -59/+2 | |
| | | | | | | | 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 cruft | 2015-07-25 | 2 | -48/+1 | |
| | | | | | 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.h | 2015-07-25 | 13 | -31/+31 | |
| | | |||||
| * | dyncom: Get rid of skyeye typedefs | 2015-07-25 | 7 | -61/+55 | |
| | | |||||
| * | dyncom: Move helper functions to their own header | 2015-07-25 | 9 | -41/+56 | |
| | | |||||
| * | dyncom: Move arminit.cpp and armsupp.cpp into skyeye_common | 2015-07-25 | 2 | -0/+0 | |
| | | |||||
| * | armdefs: Remove unnecessary extern keywords | 2015-07-25 | 1 | -25/+25 | |
| | | |||||
| * | dyncom: Pass SVC immediates directly. | 2015-07-21 | 1 | -1/+2 | |
| | | | | | 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. | 2015-07-19 | 1 | -3/+5 | |
| | | |||||
| * | 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. | ||||