aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
Commit message (Collapse)AuthorAge
* GSP: Call SetBufferSwap for each screen on corresponding signal interrupt.Gravatar bunnei2015-02-10
|
* Merge pull request #551 from bunnei/mutex-fixesGravatar bunnei2015-02-09
|\ | | | | Mutex/synch fixes
| * Mutex: Locks should be recursive.Gravatar bunnei2015-02-09
| |
| * WaitSynch: Always reschedule (verified behavior on hw).Gravatar bunnei2015-02-09
| |
* | vfpdouble: Fix the FTOUI NaN sign settingGravatar Lioncash2015-02-09
| | | | | | | | This was fixed for vfpsingle, but not vfpdouble
* | Throw more unused/unnecessary VFP code outGravatar Lioncash2015-02-09
| |
* | vfp_helper: Convert some flags to enums. Throw out more duplicated FPSCR stuffGravatar Lioncash2015-02-09
| |
* | vfp_helper: Normalize tabs to spacesGravatar Lioncash2015-02-09
|/
* vfp_helper: Remove unnecessary extern C blocksGravatar Lioncash2015-02-06
|
* vfp: Move FPSID, FPEXC, and FPSCR values over to enums.Gravatar Lioncash2015-02-06
| | | | Also got rid of duplicate definitions of some of these values.
* Merge pull request #537 from lioncash/vfpGravatar bunnei2015-02-04
|\ | | | | vfp: Fix VCVT
* \ Merge pull request #536 from lioncash/deadGravatar bunnei2015-02-04
|\ \ | | | | | | vfp: Throw out unused code
| | * vfp: Fix VCVTGravatar Lioncash2015-02-04
| |/ |/| | | | | | | 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.
| * vfp: Throw out unused codeGravatar Lioncash2015-02-04
| |
* | dyncom: Remove more unnecessary codeGravatar Lioncash2015-02-03
|/
* core: Fix some warnings on OSXGravatar Lioncash2015-02-03
|
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-02
| | | | | They're finally unnecessary, and will stop cluttering the application's handle table.
* Kernel: Make WaitObjects share ownership of Threads waiting on themGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | | | | | | | | | | | During normal operation, a thread waiting on an WaitObject and the object hold mutual references to each other for the duration of the wait. If a process is forcefully terminated (The CTR kernel has a SVC to do this, TerminateProcess, though no equivalent exists for threads.) its threads would also be stopped and destroyed, leaving dangling pointers in the WaitObjects. The solution is to simply have the Thread remove itself from WaitObjects when it is stopped. The vector of Threads in WaitObject has also been changed to hold SharedPtrs, just in case. (Better to have a reference cycle than a crash.)
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.)
* Mutex: Replace g_mutex_held_locks with a set inside ThreadGravatar Yuri Kunde Schlesner2015-02-02
|
* HID: Fix crash when pressing a key when the emulator is stoppedGravatar Yuri Kunde Schlesner2015-02-02
|
* SVC: Enable CloseHandle, clean up DuplicateHandleGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Fix bug in HandleTable::CloseGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Remove Object::GetHandle (it's not used anymore :D)Gravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Introduce unique Object ids for debuggingGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Use separate Handle tables for CoreTiming userdataGravatar Yuri Kunde Schlesner2015-02-02
| | | | This is to support the removal of GetHandle soon
* Kernel: Remove previous scheduled event when a Timer is re-SetGravatar Yuri Kunde Schlesner2015-02-02
|
* FS: Remove use of GetHandleGravatar Yuri Kunde Schlesner2015-02-02
|
* Thread: Modernize two functions that slipped through previous rebasesGravatar Yuri Kunde Schlesner2015-02-02
|
* Service: Store function names as const char* instead of std::stringGravatar Yuri Kunde Schlesner2015-02-02
| | | | | Uses less memory (strings and function table is stored in constant data) and speeds up start up (no need to allocate and copy strings).
* Service: Clean-up InterfaceGravatar Yuri Kunde Schlesner2015-02-02
|
* Make Port/Service registration and querying more HW-accurateGravatar Yuri Kunde Schlesner2015-02-02
|
* Filesys: Move creation of Handles for File/Directory to service handlersGravatar Yuri Kunde Schlesner2015-02-02
|
* Merge pull request #514 from rohit-n/fix-warningsGravatar bunnei2015-02-01
|\ | | | | Silence a few warnings.
* \ Merge pull request #525 from lioncash/armwarnGravatar bunnei2015-02-01
|\ \ | | | | | | vfp: Get rid of some compile warnings
| * | vfp: Get rid of some compile warningsGravatar Lioncash2015-01-31
| | |
* | | arm: Clean up ARMul_StateGravatar Lioncash2015-01-31
|/ / | | | | | | Remove unnecessary/unused struct variables.
* | arm: Adios armemuGravatar Lioncash2015-01-31
| |
* | Merge pull request #512 from lioncash/assignmentGravatar Tony Wasserka2015-01-31
|\ \ | | | | | | shared_memory: Fix assignments in SharedMemory::Map
* | | dyncom: clean up arm_dyncom_dec.hGravatar Lioncash2015-01-30
| | |
* | | arm: Move headers over to pragma onceGravatar Lioncash2015-01-30
| | |
* | | arm: Get rid of armcpu.h and skyeye_types.hGravatar Lioncash2015-01-30
| | |
* | | arm: Clean out armos.h and armmmu.hGravatar Lioncash2015-01-30
| | |
* | | Merge pull request #513 from lioncash/cleanupGravatar bunnei2015-01-30
|\ \ \ | | | | | | | | arm: Cleanup.
| | | * Silence a few warnings.Gravatar Rohit Nirmal2015-01-30
| | | |
| * | | arm: Throw out a lot of unnecessary codeGravatar Lioncash2015-01-30
| | | |
| * | | armdefs: Move some defines over to enumsGravatar Lioncash2015-01-30
| | |/ | |/|
| | * shared_memory: Fix assignments in SharedMemory::MapGravatar Lioncash2015-01-30
| |/
* | loader: Add missing printf argumentGravatar Lioncash2015-01-30
| |
* | archive: Fix initializer list order for the File class.Gravatar Lioncash2015-01-30
| |