aboutsummaryrefslogtreecommitdiff
path: root/src/core/arm
AgeCommit message (Collapse)Author
2015-02-12dyncom: Switch the app and system cores into the correct mode at initializationLioncash
2015-02-12dyncom: Clean up the constructorLioncash
Some function calls aren't necessary and would be handled by regular initialization routines.
2015-02-12dyncom: Remove warning for SXTAHLioncash
This is tested to work correctly.
2015-02-12arm: Remove ARMul_EmulateInitLioncash
This was only used for armemu, which has since been removed. Removed components related to this as well.
2015-02-12armdefs: Remove unnecessary extern CLioncash
2015-02-11arm: Remove ARM26 support.Lioncash
This will never be used. 32-bit is the norm.
2015-02-11Merge pull request #559 from lioncash/cleanbunnei
arm: Some cleanup. Also fixed the initial ARM mode that is emulated.
2015-02-11arm: Get rid of some magic constants. Specify proper ARM mode.Lioncash
Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE.
2015-02-11arm: Change some more constants into enumsLioncash
2015-02-10Asserts: break/crash program, fit to style guide; log.h->assert.harchshift
Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
2015-02-10Merge pull request #556 from lioncash/cleanbunnei
arm: Remove TRUE/FALSE defines
2015-02-10arm: Remove TRUE/FALSE definesLioncash
- Removed the Debug parameter from ARMul_State since it isn't used. - Changed ARMul_CoProInit to a void function. It always returned true.
2015-02-10arm_dyncom_thumb: Make lookup tables staticLioncash
These don't need to be recreated all the time.
2015-02-10Merge pull request #553 from lioncash/denormbunnei
vfp: Normalize accumulator for multiply accumulate instructions
2015-02-10dyncom: Add more regs to MCR/MRCLioncash
Adds the registers that were left out of some coprocessor ranges.
2015-02-10vfp: Normalize accumulator for multiply accumulate instructionsLioncash
2015-02-09Scheduler refactor Pt. 1Kevin Hartman
* 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.
2015-02-09vfpdouble: Fix the FTOUI NaN sign settingLioncash
This was fixed for vfpsingle, but not vfpdouble
2015-02-09Throw more unused/unnecessary VFP code outLioncash
2015-02-09vfp_helper: Convert some flags to enums. Throw out more duplicated FPSCR stuffLioncash
2015-02-09vfp_helper: Normalize tabs to spacesLioncash
2015-02-06vfp_helper: Remove unnecessary extern C blocksLioncash
2015-02-06vfp: Move FPSID, FPEXC, and FPSCR values over to enums.Lioncash
Also got rid of duplicate definitions of some of these values.
2015-02-04Merge pull request #537 from lioncash/vfpbunnei
vfp: Fix VCVT
2015-02-04Merge pull request #536 from lioncash/deadbunnei
vfp: Throw out unused code
2015-02-04vfp: Fix VCVTLioncash
These variants exclusively read from the single precision regs and write to double-precision registers Fixes issues where converted values would be way off from what they should be due to the results being stored in the wrong registers.
2015-02-04vfp: Throw out unused codeLioncash
2015-02-03dyncom: Remove more unnecessary codeLioncash
2015-02-03core: Fix some warnings on OSXLioncash
2015-02-01Merge pull request #525 from lioncash/armwarnbunnei
vfp: Get rid of some compile warnings
2015-01-31vfp: Get rid of some compile warningsLioncash
2015-01-31arm: Clean up ARMul_StateLioncash
Remove unnecessary/unused struct variables.
2015-01-31arm: Adios armemuLioncash
2015-01-30dyncom: clean up arm_dyncom_dec.hLioncash
2015-01-30arm: Move headers over to pragma onceLioncash
2015-01-30arm: Get rid of armcpu.h and skyeye_types.hLioncash
2015-01-30arm: Clean out armos.h and armmmu.hLioncash
2015-01-30arm: Throw out a lot of unnecessary codeLioncash
2015-01-30armdefs: Move some defines over to enumsLioncash
2015-01-27dyncom: Minor cleanupLioncash
Narrow scopes for the instruction variables. Remove unnecessary parentheses.
2015-01-26Update vfp.cppbunnei
VFP: Changed a debug log to trace.
2015-01-24Merge pull request #410 from chinhodado/cleanupbunnei
Cleanup: Logging in Core
2015-01-23vfp: Clean up vertical alignment for instructionsLioncash
2015-01-22dyncom: Minor cleanupLioncash
Removes some unused macros and cleans up indentation inconsistencies
2015-01-19dyncom: Clarify precedence for ternary statementsLioncash
2015-01-19Cleanup: Logging in CoreChin
2015-01-18dyncom: Implement missing shifts in ScaledRegisterPostIndexed, etcLioncash
2015-01-17dyncom: Handle the ARM A2 encoding of STRT/LDRTLioncash
These were also missing the shifted register case.
2015-01-16dyncom: Handle the ARM A2 encoding of LDRBT/STRBT.Lioncash
2015-01-12vfp: Remove dead codeLioncash