summaryrefslogtreecommitdiffstats
path: root/src/core/arm/skyeye_common (follow)
Commit message (Collapse)AuthorAgeFilesLines
* armemu: Fix FTOUI NaN sign.Normmatt2014-12-161-1/+1
|
* armemu: Fix FSUBS bug where NaN shouldn't be negatedNormmatt2014-12-161-1/+4
|
* Merge pull request #276 from lioncash/decrappifybunnei2014-12-151-306/+169
|\ | | | | Clean up armdefs.h a little.
| * Clean up armdefs.hLioncash2014-12-141-306/+169
| |
* | ARM: Pull some SkyEye fixes from 3dmoo.bunnei2014-12-152-4/+4
|/
* Convert old logging calls to new logging macrosYuri Kunde Schlesner2014-12-131-3/+1
|
* Remove unused includes to common/thread.hEmmanuel Gil Peyrot2014-11-251-2/+0
|
* HLE: Revamp error handling throrough the HLE codeYuri Kunde Schlesner2014-11-241-16/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
* Change some SkyEye defines to const intsYuri Kunde Schlesner2014-11-242-34/+16
| | | | | This prevents them from interfering with other constants defined in different namespaces.
* Fix compilation errorsSean Maas2014-11-031-2/+2
|
* ARM: Merge latest VFP fixes from 3dmoo team.bunnei2014-11-024-2096/+2388
|
* Fix VFP compilation errors with gccYuri Kunde Schlesner2014-10-311-12/+12
|
* vfp_helper: Get rid of integer type redefinitionsLioncash2014-10-261-7/+1
|
* ARM: Removed unnecessary and unused SkyEye MMU code.bunnei2014-10-252-118/+0
| | | | Added license header back in. I originally removed this because I mostly rewrote the file, but meh
* ARM: Integrate SkyEye faster "dyncom" interpreter.bunnei2014-10-256-38/+87
| | | | | | | | | | 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.
* ARM: Reorganized file structure to move shared SkyEye code to a more common area.bunnei2014-10-2514-0/+11033
Removed s_ prefix