summaryrefslogtreecommitdiffstats
path: root/src/core/hle/hle.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-05-06HLE: Clean up SVC dispatch mechanismYuri Kunde Schlesner1-46/+3
2015-05-02HLE: Properly initialize and shutdown remaining modules.bunnei1-3/+6
2015-04-14De-inline functions from Interface, removing them from service.hYuri Kunde Schlesner1-0/+1
This reduces the time for a full recompile from 65.43s to 59.53s (~9%)
2015-03-04Services: Moved the PTM and APT services to their own folderSubv1-9/+0
This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.
2015-03-02Add profiling infrastructure and widgetYuri Kunde Schlesner1-0/+6
2015-02-17ConfigMem: Clean up the Config memory to be more like the shared page and movedpurpasmart961-0/+2
the helper macro for padding to common_funcs.h
2015-02-13core: Apply static to local functionsLioncash1-2/+2
2015-02-11Asserts: break/crash program, fit to style guide; log.h->assert.harchshift1-1/+1
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-01-21Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxxarchshift1-0/+3
2015-01-16Add some support for the shared page (currently 3d slider is implemented)Zhuowei Zhang1-0/+3
2015-01-09Move ThreadContext to core/core.h and deal with the falloutYuri Kunde Schlesner1-0/+1
2014-12-26ARM: Add a mechanism for faking CPU time elapsed during HLE.bunnei1-0/+8
- Also a few cleanups.
2014-12-21CFG: Create a new subfolder cfg inside service to handle cfgSubv1-0/+3
Moved most of the shared CFG code there, implemented a few CFG:I functions
2014-12-21License changepurpasmart961-1/+1
2014-12-16HLE: Rename namespaces to match move & fix initialization orderYuri Kunde Schlesner1-0/+3
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner1-7/+5
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot1-3/+3
2014-09-09core: Prune redundant includesarchshift1-1/+0
2014-06-13HLE: Removed usnused EatCycles function.bunnei1-4/+0
2014-06-13HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei1-1/+1
2014-06-05hle: added a hokey way to force a thread reschedule during CPU single step mode (as used by the debugger)bunnei1-0/+3
2014-06-02kernel: changed main thread priority to default, updated Kernel::Reschedule to use PrepareReschedulebunnei1-2/+3
2014-05-30hle: cleaned up log messagesbunnei1-3/+3
2014-05-21renamed "syscall" module to "svc" (more accurate naming)bunnei1-7/+7
2014-05-15added function stubs for EatCycles and ReSchedulebunnei1-0/+11
2014-05-08- removed HLE mem "hack" and replaced with kernel mem regionbunnei1-47/+0
- added a helper function for getting command buffer for services - fixed bug where GSP DMA was incorrectly being done in DataSynchronizationBarrier (instead of gsp_TriggerCmdReqQueue)
2014-04-25moved HLE::MRC to its own module, added support for catching data synchronization barrier commandbunnei1-8/+0
2014-04-17- fixed tabs in function_wrappers.hbunnei1-1/+1
- fixed log message wording in hle.cpp - added syscall stubs for CloseHandle and WaitSynchronization1
2014-04-13added framework for APT service (application and title launching service)bunnei1-0/+1
2014-04-13added a GetPointer function for reading from HLE command bufferbunnei1-0/+8
2014-04-13added OS memory read/write for thread command bufferbunnei1-2/+43
2014-04-13- added HLE to connect to "srv:" servicebunnei1-0/+13
- added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function
2014-04-12- renamed hle_syscall to just syscallbunnei1-2/+2
- added service.h as an initial service interface
2014-04-12moved hle.cpp into hle folder (due to mistake earlier)bunnei1-0/+0
2014-04-11base code to call a syscall from ARM11 appcorebunnei1-2/+26
2014-04-11changed some naming/misc cleanupsbunnei1-3/+3
2014-04-11- removed syscall classes (will just use HLEFunction)bunnei1-0/+33
- added hle.cpp and module registration - removed unused code