summaryrefslogtreecommitdiffstats
path: root/src/core/arm/dyncom/arm_dyncom.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* arm: Get rid of some magic constants. Specify proper ARM mode.Lioncash2015-02-111-2/+2
| | | | Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE.
* Scheduler refactor Pt. 1Kevin Hartman2015-02-101-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_StateLioncash2015-02-011-6/+3
| | | | Remove unnecessary/unused struct variables.
* arm: Get rid of armcpu.h and skyeye_types.hLioncash2015-01-301-1/+0
|
* Move ThreadContext to core/core.h and deal with the falloutYuri Kunde Schlesner2015-01-091-2/+3
|
* DynCom: Add a comment to GetTicks.Subv2015-01-091-0/+1
|
* Timing: Use CoreTiming::GetTicks to keep track of ticks.Subv2015-01-091-3/+2
| | | | This will keep track of idle ticks for us, and fixes some tickcount-related issues
* CoreTiming: Ported the CoreTiming namespace from PPSSPPSubv2015-01-071-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.bunnei2014-12-261-45/+4
| | | | - Also a few cleanups.
* License changepurpasmart962014-12-211-1/+1
|
* Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot2014-11-191-2/+2
|
* ARM: Fixed dyncom to use reg15 for PC (this core doesn't use pc variable).bunnei2014-11-121-2/+2
| | | | - Fixes single stepping in debugger.
* ARM: Fixed several dyncom bugs.bunnei2014-11-121-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.bunnei2014-10-251-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.bunnei2014-10-251-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.