aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/arm/dyncom/arm_dyncom.h
Commit message (Collapse)AuthorAge
* arm_interface: Implement interface for retrieving VFP registersGravatar Lioncash2015-08-06
|
* dyncom: Rename armdefs.h to armstate.hGravatar Lioncash2015-07-25
|
* Core: Cleanup core includes.Gravatar Emmanuel Gil Peyrot2015-06-28
|
* Headers: Add some forgotten overrides, thanks clang!Gravatar Emmanuel Gil Peyrot2015-04-14
|
* 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
|
* 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.
* Move ThreadContext to core/core.h and deal with the falloutGravatar Yuri Kunde Schlesner2015-01-09
|
* 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
* 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
* Fix documentation of parametersGravatar Lioncash2014-11-18
|
* Add `override` keyword through the code.Gravatar Yuri Kunde Schlesner2014-10-26
| | | | This was automated using `clang-modernize`.
* 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.