summaryrefslogtreecommitdiffstats
path: root/src/core/arm/dyncom/arm_dyncom.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ThreadContext: Move from "core" to "arm_interface".bunnei2016-12-221-6/+2
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-2/+0
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* arm: ResetContext shouldn't be part of ARM_Interface.bunnei2016-09-151-1/+0
|
* arm_dynarmic/arm_dyncom: Remove unnecessary "virtual" keyword.bunnei2016-09-151-1/+1
|
* ARM: add ClearInstructionCache functionwwylele2016-08-271-0/+2
|
* arm_interface: Implement interface for retrieving VFP registersLioncash2015-08-071-0/+4
|
* dyncom: Rename armdefs.h to armstate.hLioncash2015-07-261-1/+1
|
* Core: Cleanup core includes.Emmanuel Gil Peyrot2015-06-281-0/+5
|
* Headers: Add some forgotten overrides, thanks clang!Emmanuel Gil Peyrot2015-04-141-1/+1
|
* arm_interface: Support retrieval/storage to CP15 registersLioncash2015-04-061-0/+2
|
* arm_interface: Get rid of GetTicks.Lioncash2015-03-161-1/+0
| | | | Removes a TODO.
* dyncom: Switch the app and system cores into the correct mode at initializationLioncash2015-02-131-1/+1
|
* Scheduler refactor Pt. 1Kevin Hartman2015-02-101-56/+1
| | | | | | | | | | | | | * 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 falloutYuri Kunde Schlesner2015-01-091-2/+2
|
* Timing: Use CoreTiming::GetTicks to keep track of ticks.Subv2015-01-091-3/+0
| | | | 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.bunnei2014-12-261-4/+10
| | | | - 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-1/+1
|
* Fix documentation of parametersLioncash2014-11-181-1/+1
|
* Add `override` keyword through the code.Yuri Kunde Schlesner2014-10-261-7/+7
| | | | This was automated using `clang-modernize`.
* ARM: Integrate SkyEye faster "dyncom" interpreter.bunnei2014-10-251-0/+90
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.