aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/arm/skyeye_common
Commit message (Collapse)AuthorAge
* armdefs: Remove unnecessary extern keywordsGravatar Lioncash2015-07-25
|
* Merge pull request #876 from linkmauve/include-cleanupsGravatar Yuri Kunde Schlesner2015-07-10
|\ | | | | Cleanup includes, mostly in common
* | vfp: Change return type of VFPInit from unsigned int to void.Gravatar Lioncash2015-06-29
| |
* | vfp: Handle accesses to FPINST/FPINST2 system registersGravatar Lioncash2015-06-29
| | | | | | | | Also has a side-benefit of correcting access to the FPEXC register.
| * Core, VideoCore: Replace or fix exit() calls.Gravatar Emmanuel Gil Peyrot2015-06-28
|/
* vfp: Handle accesses to the VFP media feature registersGravatar Lioncash2015-06-12
| | | | These are able to be accessed in any privilege mode.
* vfp: Implement VMOVBCR/VMOVBRCGravatar Lioncash2015-06-12
|
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-29
|
* dyncom: Get rid of armemu.hGravatar Lioncash2015-05-23
|
* dyncom: remove load_r15 from arm_instGravatar Lioncash2015-05-22
| | | | It's entirely unused. Also allows getting rid of more clunky macros.
* VFP: Log as trace to get rid of spamming.Gravatar bunnei2015-05-22
|
* dyncom: Eliminate clang warningsGravatar Lioncash2015-05-21
| | | | Gets rid of a whole load of missing brace initialization warnings.
* Merge pull request #772 from lioncash/warnGravatar bunnei2015-05-18
|\ | | | | core/video_core: Fix a few warnings when compiling on MSVC.
* \ Merge pull request #770 from lioncash/dyncom_cleanGravatar bunnei2015-05-15
|\ \ | | | | | | dyncom: Minor cleanup.
* | | Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner2015-05-15
| | | | | | | | | | | | | | | | | | | | | memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory.
| | * vfp: Get rid of warningsGravatar Lioncash2015-05-14
| |/ |/| | | | | | | - Unary minus operator applied to unsigned type. - Unsafe use of bool.
| * dyncom: Remove unnecessary typedefsGravatar Lioncash2015-05-14
|/
* vfp: Handle flush-to-zero mode.Gravatar Lioncash2015-05-11
|
* Remove unnecessary dyncom header filesGravatar Lioncash2015-05-07
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Clean-up includesGravatar Yuri Kunde Schlesner2015-05-06
|
* Dyncom: Move cream cache to ARMul_State.Gravatar bunnei2015-05-01
|
* dyncom: Remove more unused/unnecessary codeGravatar Lioncash2015-04-20
| | | | Gets rid of a sizeable amount of stuff in armdefs.
* dyncom: Remove unused/unnecessary VFP cruftGravatar Lioncash2015-04-17
|
* Core_ARM11: Replace debug prints with our own logging functions in vfpsingle.Gravatar Emmanuel Gil Peyrot2015-04-14
|
* dyncom: Remove unnecessary enum and typedefGravatar Lioncash2015-04-07
| | | | Also fixes descriptions in the process.
* vfp: Make the FPSID values match the MPCoreGravatar Lioncash2015-04-06
|
* vfp: Get rid of the VFP_OFFSET macroGravatar Lioncash2015-04-06
|
* Move CP15 enum definitions into their own enum.Gravatar Lioncash2015-04-06
| | | | Also gets rid of preprocessor mumbo-jumbo
* dyncom: Move CP15 register writing into its own function.Gravatar Lioncash2015-04-02
| | | | Also implements writing to the rest of the ARM11 MPCore CP15 register set.
* dyncom: Move CP15 register reading into its own function.Gravatar Lioncash2015-04-02
| | | | Keeps everything contained. Added all supported readable registers in an ARM11 MPCore.
* dyncom: Migrate InAPrivilegedMode to armsuppGravatar Lioncash2015-03-26
| | | | It's a generic helper function, so it should be here anyway.
* armmmu: Remove unnecessary enum valuesGravatar Lioncash2015-03-20
| | | | We don't need to care about XScale or Intel specific ARM stuff.
* dyncom: Make Load/Store instructions support big endianGravatar Lioncash2015-03-17
|
* vfp: Get rid of warningsGravatar Lioncash2015-03-03
|
* arm: Remove unnecessary booleansGravatar Lioncash2015-02-25
| | | | We don't care about any of these.
* vfpinstr: Fix trivial signed/unsigned mismatch warningsGravatar Lioncash2015-02-17
|
* vfpdouble: Use %p for printing pointer addresses.Gravatar Lioncash2015-02-15
|
* arm: Set the A bit on reset.Gravatar Lioncash2015-02-15
| | | | This enum value is ORed against in ARMul_Reset (and used to refer to all interrupt bits in the CPSR). So simply updating this is enough.
* core: Apply static to local functionsGravatar Lioncash2015-02-13
|
* arm: General cleanupGravatar Lioncash2015-02-13
| | | | | | | - Remove several typedefs for ARMul_State. - Remove unused functions - Remove unused/unnecessary headers - Removed unused enums, etc.
* dyncom: Switch the app and system cores into the correct mode at initializationGravatar Lioncash2015-02-12
|
* dyncom: Clean up the constructorGravatar Lioncash2015-02-12
| | | | Some function calls aren't necessary and would be handled by regular initialization routines.
* arm: Remove ARMul_EmulateInitGravatar Lioncash2015-02-12
| | | | This was only used for armemu, which has since been removed. Removed components related to this as well.
* armdefs: Remove unnecessary extern CGravatar Lioncash2015-02-12
|
* arm: Remove ARM26 support.Gravatar Lioncash2015-02-11
| | | | This will never be used. 32-bit is the norm.
* arm: Get rid of some magic constants. Specify proper ARM mode.Gravatar Lioncash2015-02-11
| | | | Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE.
* arm: Change some more constants into enumsGravatar Lioncash2015-02-11
|
* arm: Remove TRUE/FALSE definesGravatar Lioncash2015-02-10
| | | | | - Removed the Debug parameter from ARMul_State since it isn't used. - Changed ARMul_CoProInit to a void function. It always returned true.
* Merge pull request #553 from lioncash/denormGravatar bunnei2015-02-10
|\ | | | | vfp: Normalize accumulator for multiply accumulate instructions