aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/arm/dyncom/arm_dyncom.cpp
Commit message (Collapse)AuthorAge
* dyncom: Use std::array for register arraysGravatar Lioncash2015-07-26
|
* dyncom: Use ARMul_State as an objectGravatar Lioncash2015-07-26
| | | | Gets rid of C-like parameter passing.
* dyncom: Remove unnecessary initialization code.Gravatar Lioncash2015-07-25
| | | | | | 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 cruftGravatar Lioncash2015-07-25
| | | | 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.hGravatar Lioncash2015-07-25
|
* dyncom: Move helper functions to their own headerGravatar Lioncash2015-07-25
|
* dyncom: Get rid of armemu.hGravatar Lioncash2015-05-23
|
* Remove unnecessary dyncom header filesGravatar Lioncash2015-05-07
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Dyncom: Move cream cache to ARMul_State.Gravatar bunnei2015-05-01
|
* dyncom: Remove more unused/unnecessary codeGravatar Lioncash2015-04-20
| | | | Gets rid of a sizeable amount of stuff in armdefs.
* arm_interface: Support retrieval/storage to CP15 registersGravatar Lioncash2015-04-06
|
* arm_interface: Get rid of GetTicks.Gravatar Lioncash2015-03-16
| | | | Removes a TODO.
* dyncom: Switch the app and system cores into the correct mode at initializationGravatar Lioncash2015-02-12
|
* dyncom: Clean up the constructorGravatar Lioncash2015-02-12
| | | | Some function calls aren't necessary and would be handled by regular initialization routines.
* arm: Remove ARMul_EmulateInitGravatar Lioncash2015-02-12
| | | | 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.Gravatar Lioncash2015-02-11
| | | | Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE.
* Scheduler refactor Pt. 1Gravatar Kevin Hartman2015-02-09
| | | | | | | | | | | | | * 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_StateGravatar Lioncash2015-01-31
| | | | Remove unnecessary/unused struct variables.
* arm: Get rid of armcpu.h and skyeye_types.hGravatar Lioncash2015-01-30
|
* Move ThreadContext to core/core.h and deal with the falloutGravatar Yuri Kunde Schlesner2015-01-09
|
* DynCom: Add a comment to GetTicks.Gravatar Subv2015-01-08
|
* Timing: Use CoreTiming::GetTicks to keep track of ticks.Gravatar Subv2015-01-08
| | | | This will keep track of idle ticks for us, and fixes some tickcount-related issues
* CoreTiming: Ported the CoreTiming namespace from PPSSPPGravatar Subv2015-01-07
| | | | | | 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.Gravatar bunnei2014-12-25
| | | | - Also a few cleanups.
* License changeGravatar purpasmart962014-12-20
|
* Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Gravatar Emmanuel Gil Peyrot2014-11-19
| | | | or generated
* ARM: Fixed dyncom to use reg15 for PC (this core doesn't use pc variable).Gravatar bunnei2014-11-11
| | | | - Fixes single stepping in debugger.
* ARM: Fixed several dyncom bugs.Gravatar bunnei2014-11-11
| | | | | | | - 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.Gravatar bunnei2014-10-25
| | | | Added license header back in. I originally removed this because I mostly rewrote the file, but meh
* ARM: Integrate SkyEye faster "dyncom" interpreter.Gravatar bunnei2014-10-25
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.