| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-01-02 | arm: Remove SkyEye/Dyncom code that is ARMv6-only. | bunnei | |
| 2017-10-23 | logging: Rename category "Core_ARM11" to "Core_ARM". | bunnei | |
| 2017-08-21 | Dyncom: Use size_t instead of int to store the instruction offsets in the ↵ | Subv | |
| instruction cache. Fixes a few warnings. | |||
| 2017-05-22 | Merge pull request #2692 from Subv/vfp_ftz | Sebastian Valle | |
| Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled. | |||
| 2017-05-21 | fixup! Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled. | Subv | |
| 2017-05-22 | Merge pull request #2694 from Subv/vfp_vsub_ftz | Merry | |
| Dyncom/VFP: Perform flush-to-zero on the second operand of vsub before sending it to vadd. | |||
| 2017-05-13 | Dyncom/VFP: Perform flush-to-zero on the second operand of vsub before ↵ | Subv | |
| sending it to vadd. Previously we were letting vadd flush the value to positive 0, but there are cases where this behavior is wrong, for example, vsub: -0 - +0 = -0 vadd: -0 + +0 = +0 Now we'll flush the value to +0 inside vsub, and then negate it. | |||
| 2017-05-09 | Dyncom/VFP: Strip the VFP_NAN_FLAG sentinel value when setting vfp exceptions. | Subv | |
| 2017-05-09 | Revert "Remove `exceptions` parameter from `normaliseround` VFP functions" | Subv | |
| This reverts commit edf30d84cc0e8299d61c98f5bb40a6428d1576bc. Conflicts: src/core/arm/skyeye_common/vfp/vfp_helper.h src/core/arm/skyeye_common/vfp/vfpdouble.cpp src/core/arm/skyeye_common/vfp/vfpsingle.cpp | |||
| 2017-05-08 | Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled. | Subv | |
| Inputs are still not flushed to 0 if they are denormals. | |||
| 2016-12-15 | gdbstub: Remove global variable from public interface | Lioncash | |
| Currently, this is only ever queried, so adding a function to check if the server is enabled is more sensible. If directly modifying this externally is ever desirable, it should be done by adding a function to the interface, rather than exposing implementation details directly. | |||
| 2016-09-21 | Use negative priorities to avoid special-casing the self-include | Yuri Kunde Schlesner | |
| 2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | |
| This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | |||
| 2016-09-18 | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | |
| 2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | |
| 2016-06-10 | arm_dyncom_interpreter: Rename anonymous enum to TransExtData | archshift | |
| 2016-05-26 | Merge pull request #1568 from JayFoxRox/fix-printf | Mat M | |
| Fix ftoi and disable VFPv3 | |||
| 2016-05-18 | Remove `exceptions` parameter from `normaliseround` VFP functions | Jannik Vogel | |
| 2016-05-18 | Fix exception propagation for VFP single precision | Jannik Vogel | |
| 2016-05-18 | Fix exception propagation for VFP double precision | Jannik Vogel | |
| 2016-05-16 | Fix ftoi behaviour | Jannik Vogel | |
| 2016-05-16 | Respect fpscr in ftoiz | Jannik Vogel | |
| 2016-03-21 | armstate: Correct FIQ register banking | Lioncash | |
| FIQ has seven banked registers (R8 to R14), not two. | |||
| 2015-12-06 | dyncom: Remove static keyword from header functions | Lioncash | |
| 2015-12-06 | dyncom: const correctness changes | Lioncash | |
| 2015-11-29 | armstate: Zero out the registers on creation | Lioncash | |
| std::array isn't always guaranteed to explicitly zero out it's contents without an initializer list. | |||
| 2015-11-11 | Merge pull request #1122 from polaris-/gdbstub | bunnei | |
| gdbstub implementation | |||
| 2015-10-09 | CitraQt, SkyEye, Loader, VideoCore: Remove newlines in LOG_* calls. | Emmanuel Gil Peyrot | |
| The LOG_* function itself already appends one. | |||
| 2015-10-04 | Implement gdbstub | polaris- | |
| 2015-09-16 | general: Silence some warnings when using clang | Lioncash | |
| 2015-09-11 | General: Replace NULL and '0' usages with nullptr where applicable | Lioncash | |
| 2015-09-05 | DynCom: Converted all 0xE condition code checks to ConditionCode::AL | archshift | |
| 2015-08-22 | Merge pull request #1025 from yuriks/heap-management | Yuri Kunde Schlesner | |
| Kernel: Correct(er) handling of Heap and Linear Heap allocations | |||
| 2015-08-16 | Memory: Move address type conversion routines to memory.cpp/h | Yuri Kunde Schlesner | |
| These helpers aren't really part of the kernel, and mem_map.cpp/h is going to be moved there next. | |||
| 2015-08-15 | vfp: use std::swap where applicable | Lioncash | |
| 2015-08-13 | Merge pull request #1027 from lioncash/debugger | bunnei | |
| debugger: Add the ability to view VFP register contents | |||
| 2015-08-11 | ARM Core, Video Core, CitraQt, Citrace: Use CommonTypes types instead of the ↵ | Emmanuel Gil Peyrot | |
| standard u?int*_t types. | |||
| 2015-08-06 | arm_interface: Implement interface for retrieving VFP registers | Lioncash | |
| 2015-07-29 | dyncom: Handle the case where PC is the source register for STR/VSTM/VLDM | Lioncash | |
| 2015-07-27 | dyncom: Migrate exclusive memory access control into armstate | Lioncash | |
| 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-10 | Merge pull request #876 from linkmauve/include-cleanups | Yuri Kunde Schlesner | |
| Cleanup includes, mostly in common | |||
