Commit graph

590 commits

Author SHA1 Message Date
bunnei
06fa90a262 HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only module where they are needed). 2014-06-09 22:40:52 -04:00
bunnei
c42e93aaca SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace. 2014-06-09 22:30:39 -04:00
inspuration
53d6c7a078 Updated gitignore 2014-06-09 22:14:11 -04:00
bunnei
2524c78394 Thread: Renamed occurrences of "t" to "thread" to improve readability. 2014-06-09 22:14:03 -04:00
bunnei
0940335242 Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessarily be logged. 2014-06-09 22:08:49 -04:00
bunnei
21beafaec0 Merge pull request #15 from archshift/nonosx-fixes
#if's out OSX-specific GL changes on other platforms
2014-06-09 21:59:15 -04:00
bunnei
2e9f13f4eb Common: Removed duplicate "LONG" and "MAX_PATH" definitions. 2014-06-09 20:54:28 -04:00
archshift
1d2ef1253d Preprocessor: #if's out OSX-specific GL changes on other platforms 2014-06-09 16:51:09 -07:00
inspuration
ff95b7ea24 updated gitignore 2014-06-09 16:29:22 -04:00
inspuration
fc191a3490 Fixed build errors and runtime errors in new gpu debugger menus. 2014-06-09 15:52:51 -04:00
inspuration
85e8edbdd9 Merge branch 'master' of https://github.com/citra-emu/citra
Conflicts:
	src/core/CMakeLists.txt
2014-06-09 14:45:21 -04:00
inspuration
b7be03fd2c Added preliminary support for shared memory objects and handles. 2014-06-09 14:42:01 -04:00
bunnei
95441df10d HLE: Removed usnused EatCycles function. 2014-06-06 23:34:49 -04:00
bunnei
00b0b69b76 SVC: Cleaned up function wrappers to pass in correct argument types. 2014-06-06 23:31:29 -04:00
bunnei
c0fd909258 Thread: Moved position of * in arguments. 2014-06-06 20:05:16 -04:00
bunnei
b05ed89f4a Thread: Updated VerifyWait to be more readable (but functionally the same). 2014-06-06 17:57:52 -04:00
bunnei
3f469e147f SVC: Moved declaration of "wait" variable in SendSyncRequest for improved readability. 2014-06-06 00:44:44 -04:00
bunnei
f922bd14c1 HLE: Updated all uses of NULL to nullptr (to be C++11 compliant) 2014-06-06 00:35:49 -04:00
bunnei
0fc4c88e7f Kernel: Updated various kernel function "name" arguments to be const references. 2014-06-06 00:23:33 -04:00
bunnei
9b59fb0db8 HLE: Updated various handle debug assertions to be more clear. 2014-06-06 00:19:40 -04:00
bunnei
d97b143af9 Mutex: Moved ReleaseMutex iterator declaration to be inside while loop. 2014-06-06 00:13:50 -04:00
bunnei
d472743ec6 Kernel: Updated several member functions to be const 2014-06-06 00:10:50 -04:00
bunnei
bac6ca233c Core: Cleaned up SingleStep(), updated default LCD refresh to assume each instruction is ~3 cycles 2014-06-06 00:06:33 -04:00
bunnei
52735d5513 Core: Changed HW update/thread reschedule to occur more frequently (assume each instruction is ~3 cycles) 2014-06-05 23:32:02 -04:00
bunnei
b31f7293a6 Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrectly set 2014-06-05 23:19:55 -04:00
bunnei
6fd870e6bb Kernel: Made SyncRequest not pure virtual, with a default implementation of error (as this is not required for all kernel objects) 2014-06-05 23:13:28 -04:00
bunnei
1c867b569d Kernel: Added real support for thread and event blocking
- SVC: Added ExitThread support
- SVC: Added SignalEvent support
- Thread: Added WAITTYPE_EVENT for waiting threads for event signals
- Thread: Added support for blocking on other threads to finish (e.g. Thread::Join)
- Thread: Added debug function for printing current threads ready for execution
- Thread: Removed hack/broken thread ready state code from Kernel::Reschedule
- Mutex: Moved WaitCurrentThread from SVC to Mutex::WaitSynchronization
- Event: Added support for blocking threads on event signalling
2014-06-05 22:35:36 -04:00
bunnei
4a0430d5eb Merge pull request #1 from neobrain/master
Cleanup GPU headers and add a GPU debugger with command list parsing capability.
2014-06-05 10:15:41 -04:00
bunnei
a002abf171 qt: updated disassembler to show 2X as many instructions 2014-06-05 01:08:54 -04:00
bunnei
174cc9a0ed hle: added a hokey way to force a thread reschedule during CPU single step mode (as used by the debugger) 2014-06-05 00:26:48 -04:00
bunnei
6cdad8390c arm: fixed a bug where ARM_Interpreter::ExecuteInstructions was actually executing one more instruction than expected 2014-06-05 00:25:32 -04:00
bunnei
ce1c561278 kernel: changed current default thread priority back to 0x30 - I think this is more correct 2014-06-05 00:20:58 -04:00
bunnei
9ece9da50d arm: fixed bug in how thread context switch occurs with SkyEye 2014-06-05 00:20:11 -04:00
bunnei
870c6146e7 service: added a error log messages for unimplemented WaitSynchronization 2014-06-04 18:50:50 -04:00
bunnei
c330a0a1d6 arm: reverting a change made with cb0663de - this has to have been a typo! 2014-06-04 18:41:44 -04:00
Tony Wasserka
d8148eaa6b Pica: Use some template magic to define register structures efficiently. 2014-06-04 23:42:52 +02:00
Tony Wasserka
2cf87fb10a Further refine GPU command list debugging. 2014-06-04 23:42:52 +02:00
Tony Wasserka
8f1c998472 Refine command list debugging functionality and its qt interface. 2014-06-04 23:42:52 +02:00
Tony Wasserka
9fbfd928a1 citra-qt: Add command list view. 2014-06-04 23:42:51 +02:00
Tony Wasserka
90fd4e111c GPU debugger: Add functionality to inspect command lists. 2014-06-04 23:42:51 +02:00
Tony Wasserka
930a4a3f9e video core: added PICA definitions file. 2014-06-04 23:42:51 +02:00
Tony Wasserka
3240b6ef31 GPU: Cleanup register definitions. 2014-06-04 23:42:51 +02:00
Tony Wasserka
7c5f1647be Rename LCD to GPU. 2014-06-04 23:42:51 +02:00
Tony Wasserka
5cc0497f8e citra-qt: Add GX command history viewer. 2014-06-04 23:42:51 +02:00
Tony Wasserka
944dfe2f86 Add initial graphics debugger interface. 2014-06-04 23:42:48 +02:00
Tony Wasserka
8941090389 GSP: Define more GX commands. 2014-06-04 23:42:37 +02:00
Tony Wasserka
66754b121f Pica: Add command list registers. 2014-06-04 23:42:37 +02:00
bunnei
b78aff8585 svc: added optional name field to Event and Mutex (used for debugging) 2014-06-02 20:38:34 -04:00
bunnei
8c0f02a70c kernel: moved position of * for GetTypeName and GetName 2014-06-02 20:36:58 -04:00
bunnei
2773360f84 coprocessor: reenabled debug log 2014-06-02 20:36:34 -04:00