aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/arm/dyncom
Commit message (Collapse)AuthorAge
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* Merge pull request #235 from yuriks/dyncom-mapGravatar bunnei2014-11-30
|\ | | | | dyncom: Use unordered_map rather than the terrible 2-level bb_map
| * dyncom: Use unordered_map rather than the terrible 2-level bb_mapGravatar Yuri Kunde Schlesner2014-11-29
| | | | | | | | | | | | Seems (probably just placebo/wishful thinking) to make it slightly faster. Also reduces memory usage and makes shutdown when debugging from MSVC fast.
* | arm_dyncom_interpreter: Get rid of unused var warningsGravatar Lioncash2014-11-29
|/
* 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
|
* 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: Removed unnecessary goto with each instruction.Gravatar bunnei2014-11-11
|
* 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.
* Add `override` keyword through the code.Gravatar Yuri Kunde Schlesner2014-10-26
| | | | This was automated using `clang-modernize`.
* 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: Updated dyncom core to use fast label lookup table on clang.Gravatar bunnei2014-10-25
|
* 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.