Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | arm: Remove SkyEye/Dyncom code that is ARMv6-only. | bunnei | 2018-01-03 | 1 | -132/+0 |
| | |||||
* | Merge remote-tracking branch 'upstream/master' into nx | bunnei | 2017-10-10 | 1 | -7/+12 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # src/core/CMakeLists.txt # src/core/arm/dynarmic/arm_dynarmic.cpp # src/core/arm/dyncom/arm_dyncom.cpp # src/core/hle/kernel/process.cpp # src/core/hle/kernel/thread.cpp # src/core/hle/kernel/thread.h # src/core/hle/kernel/vm_manager.cpp # src/core/loader/3dsx.cpp # src/core/loader/elf.cpp # src/core/loader/ncch.cpp # src/core/memory.cpp # src/core/memory.h # src/core/memory_setup.h | ||||
| * | Moved down_count to CoreTiming | Huw Pascoe | 2017-09-30 | 1 | -7/+1 |
| | | |||||
| * | ARM_Interface: Implement PageTableChanged | MerryMage | 2017-09-25 | 1 | -0/+4 |
| | | |||||
* | | arm_interface: Set TLS address for dynarmic core. | bunnei | 2017-09-30 | 1 | -0/+7 |
| | | |||||
* | | arm: Use 64-bit addressing in a bunch of places. | bunnei | 2017-09-30 | 1 | -4/+4 |
|/ | |||||
* | ThreadContext: Move from "core" to "arm_interface". | bunnei | 2016-12-22 | 1 | -2/+2 |
| | |||||
* | Use negative priorities to avoid special-casing the self-include | Yuri Kunde Schlesner | 2016-09-21 | 1 | -1/+1 |
| | |||||
* | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 2016-09-21 | 1 | -7/+4 |
| | | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | ||||
* | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | 2016-09-19 | 1 | -2/+1 |
| | |||||
* | arm: ResetContext shouldn't be part of ARM_Interface. | bunnei | 2016-09-15 | 1 | -9/+0 |
| | |||||
* | dyncom: Use VFP_FPSCR/VFP_FPEXC. | bunnei | 2016-09-15 | 1 | -4/+4 |
| | |||||
* | ARM: add ClearInstructionCache function | wwylele | 2016-08-27 | 1 | -0/+6 |
| | |||||
* | dyncom: Reset the context into user mode correctly | Lioncash | 2016-05-09 | 1 | -1/+1 |
| | | | | The other mode was system mode. | ||||
* | Update cpsr (T)humb bit while creating thread | mailwl | 2016-04-08 | 1 | -1/+1 |
| | |||||
* | Common: Remove Common::make_unique, use std::make_unique | MerryMage | 2016-04-05 | 1 | -3/+2 |
| | |||||
* | arm_interface: Implement interface for retrieving VFP registers | Lioncash | 2015-08-07 | 1 | -0/+16 |
| | |||||
* | dyncom: Use std::array for register arrays | Lioncash | 2015-07-26 | 1 | -4/+4 |
| | |||||
* | dyncom: Use ARMul_State as an object | Lioncash | 2015-07-26 | 1 | -10/+1 |
| | | | | Gets rid of C-like parameter passing. | ||||
* | dyncom: Remove unnecessary initialization code. | Lioncash | 2015-07-26 | 1 | -7/+0 |
| | | | | | | 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 | Lioncash | 2015-07-26 | 1 | -3/+0 |
| | | | | 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 | Lioncash | 2015-07-26 | 1 | -1/+1 |
| | |||||
* | dyncom: Move helper functions to their own header | Lioncash | 2015-07-26 | 1 | -0/+1 |
| | |||||
* | dyncom: Get rid of armemu.h | Lioncash | 2015-05-24 | 1 | -1/+1 |
| | |||||
* | Remove unnecessary dyncom header files | Lioncash | 2015-05-08 | 1 | -5/+0 |
| | |||||
* | Common: Remove common.h | Yuri Kunde Schlesner | 2015-05-07 | 1 | -0/+2 |
| | |||||
* | Dyncom: Move cream cache to ARMul_State. | bunnei | 2015-05-02 | 1 | -1/+3 |
| | |||||
* | dyncom: Remove more unused/unnecessary code | Lioncash | 2015-04-20 | 1 | -6/+0 |
| | | | | Gets rid of a sizeable amount of stuff in armdefs. | ||||
* | arm_interface: Support retrieval/storage to CP15 registers | Lioncash | 2015-04-06 | 1 | -0/+8 |
| | |||||
* | arm_interface: Get rid of GetTicks. | Lioncash | 2015-03-16 | 1 | -5/+0 |
| | | | | Removes a TODO. | ||||
* | dyncom: Switch the app and system cores into the correct mode at initialization | Lioncash | 2015-02-13 | 1 | -1/+5 |
| | |||||
* | dyncom: Clean up the constructor | Lioncash | 2015-02-13 | 1 | -7/+4 |
| | | | | Some function calls aren't necessary and would be handled by regular initialization routines. | ||||
* | arm: Remove ARMul_EmulateInit | Lioncash | 2015-02-12 | 1 | -6/+1 |
| | | | | This was only used for armemu, which has since been removed. Removed components related to this as well. | ||||
* | arm: Get rid of some magic constants. Specify proper ARM mode. | Lioncash | 2015-02-11 | 1 | -2/+2 |
| | | | | Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE. | ||||
* | Scheduler refactor Pt. 1 | Kevin Hartman | 2015-02-10 | 1 | -0/+10 |
| | | | | | | | | | | | | | * Simplifies scheduling logic, specifically regarding thread status. It should be much clearer which statuses are valid for a thread at any given point in the system. * Removes dead code from thread.cpp. * Moves the implementation of resetting a ThreadContext to the corresponding core's implementation. Other changes: * Fixed comments in arm interfaces. * Updated comments in thread.cpp * Removed confusing, useless, functions like MakeReady() and ChangeStatus() from thread.cpp. * Removed stack_size from Thread. In the CTR kernel, the thread's stack would be allocated before thread creation. | ||||
* | arm: Clean up ARMul_State | Lioncash | 2015-02-01 | 1 | -6/+3 |
| | | | | Remove unnecessary/unused struct variables. | ||||
* | arm: Get rid of armcpu.h and skyeye_types.h | Lioncash | 2015-01-30 | 1 | -1/+0 |
| | |||||
* | Move ThreadContext to core/core.h and deal with the fallout | Yuri Kunde Schlesner | 2015-01-09 | 1 | -2/+3 |
| | |||||
* | DynCom: Add a comment to GetTicks. | Subv | 2015-01-09 | 1 | -0/+1 |
| | |||||
* | Timing: Use CoreTiming::GetTicks to keep track of ticks. | Subv | 2015-01-09 | 1 | -3/+2 |
| | | | | This will keep track of idle ticks for us, and fixes some tickcount-related issues | ||||
* | CoreTiming: Ported the CoreTiming namespace from PPSSPP | Subv | 2015-01-07 | 1 | -1/+7 |
| | | | | | | Implemented the required calls to make it work. CoreTiming: Added a new logging class Core_Timing. | ||||
* | ARM: Add a mechanism for faking CPU time elapsed during HLE. | bunnei | 2014-12-26 | 1 | -45/+4 |
| | | | | - Also a few cleanups. | ||||
* | License change | purpasmart96 | 2014-12-21 | 1 | -1/+1 |
| | |||||
* | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generated | Emmanuel Gil Peyrot | 2014-11-19 | 1 | -2/+2 |
| | |||||
* | ARM: Fixed dyncom to use reg15 for PC (this core doesn't use pc variable). | bunnei | 2014-11-12 | 1 | -2/+2 |
| | | | | - Fixes single stepping in debugger. | ||||
* | ARM: Fixed several dyncom bugs. | bunnei | 2014-11-12 | 1 | -2/+5 |
| | | | | | | | - Fixed NZCVT flags to properly save state when function returns. - Fixed counter to keep track of the actual number of instructions executed. - Fixed single-step mode to only execute one instruction at a time. - DefaultIni: Removed comment that no longer applied to dyncom. | ||||
* | ARM: Removed unnecessary and unused SkyEye MMU code. | bunnei | 2014-10-25 | 1 | -1/+0 |
| | | | | Added license header back in. I originally removed this because I mostly rewrote the file, but meh | ||||
* | ARM: Integrate SkyEye faster "dyncom" interpreter. | bunnei | 2014-10-25 | 1 | -0/+164 |
Fixed typo (make protected member public) Added license header back in. I originally removed this because I mostly rewrote the file, but meh ARM: Fixed a type error in dyncom interpreter. ARM: Updated dyncom to use unique_ptr for internal ARM state. |