Commit Graph

2869 Commits

Author SHA1 Message Date
xsacha
9973f0456b Merge pull request #897 from unknownbrackets/jit-minor
Some armjit sync
2013-03-07 18:18:13 -08:00
Henrik Rydgård
31a282bcde Merge pull request #899 from sum2012/patch-1
Add log.bat in to windows version
2013-03-07 05:32:54 -08:00
sum2012
7a035cc28b Add log.bat in to windows version
For windows user can easier to post the log.
I don't know whether ppsspp will add this file after merge
2013-03-07 21:10:36 +08:00
Sacha
cc65b0add9 Fix rounding. Was disabling wrong rounding mode. Previous one wasn't merge-ready but should be OK now. Only tests that fail are VFPU now. 2013-03-07 22:34:20 +10:00
Henrik Rydgård
5854460a3d Merge pull request #893 from xsacha/master
Armjit: Bug fixes
2013-03-07 04:03:41 -08:00
Henrik Rydgård
67964f6f3b Merge pull request #898 from raven02/patch-6
Add optionAddr to sceKernelLoadModule
2013-03-07 04:02:48 -08:00
raven02
1fd2e5aadb Add optionAddr to sceKernelLoadModule 2013-03-07 19:43:17 +08:00
Sacha
b9ec281c55 Disable rounding methods that aren't working in hardware. Add some notes. Fix compare fall-through and choose right round method. 2013-03-07 21:33:30 +10:00
raven02
691bc2df3f Update sceKernelGetModuleIdByAddress 2013-03-07 19:29:49 +08:00
Unknown W. Brackets
cea396e901 armjit: Don't use R1 in the regcache.
This way it can be used in swl/swr/ins as a temp reg.
Note: those instructions are currently DISABLEd, though.
2013-03-07 02:09:13 -08:00
Unknown W. Brackets
925e4e42bd armjit: Disable ext for now, breaks Disgaea? 2013-03-07 02:08:45 -08:00
Unknown W. Brackets
d525abbcad Cleanup some indentation, more compares to 0. 2013-03-07 02:08:45 -08:00
Unknown W. Brackets
028e85dc92 Cleanup some differences between the two jits. 2013-03-07 02:08:44 -08:00
Unknown W. Brackets
669600bd8a Minor cleanup. 2013-03-07 02:08:44 -08:00
CrazyMax
bcac3e288b Buildfix: missing semicolon. 2013-03-07 01:58:58 -08:00
Henrik Rydgård
c3bb71ae5b Merge pull request #896 from raven02/patch-5
Set accumulatedHcount based on currentHCount
2013-03-07 00:55:01 -08:00
raven02
bda4a64e0d Update AccumulatedHcount based on currentHCount 2013-03-07 16:47:09 +08:00
Henrik Rydgård
0f7eb63fe7 Merge pull request #895 from unknownbrackets/io-fix
Set the times when reading a dir on Windows
2013-03-07 00:16:20 -08:00
Unknown W. Brackets
be600e5095 Set the times when reading a dir on Windows.
Test doesn't pass but it's not gonna.
2013-03-07 00:02:01 -08:00
Sacha
2a9074d92f Fix FPU comp UEQ case. 2013-03-07 14:46:11 +10:00
Sacha
9f0bb8cf52 armv6: Reuse constants in literal pool.
May reduce memory loads?
2013-03-07 14:44:55 +10:00
Henrik Rydgard
7ba1664f8b Oops. 2013-03-07 00:59:03 +01:00
Henrik Rydgard
6702f0c78c Tiny optimization and bugfix 2013-03-07 00:47:48 +01:00
Henrik Rydgard
963a6603fc Fix two armjit bugs the testrunner found. 2013-03-07 00:37:00 +01:00
Henrik Rydgard
a0cf3b9151 Restore a log statement, #pragma once. 2013-03-07 00:27:00 +01:00
Henrik Rydgard
a69b09a831 More work on TestRunner, now runs all the CPU tests. 2013-03-07 00:22:39 +01:00
Henrik Rydgard
57d4544ef4 Basic testrunner for Android.
Running it as-is reveals that clo and rotrv are broken in ARMJIT.
2013-03-07 00:10:53 +01:00
Henrik Rydgard
a972d211c5 Call __LoadInternalFonts in __FontDoState to be safe. 2013-03-06 23:42:55 +01:00
Henrik Rydgard
43df3c9071 Lazy font loading (to speed up running unit tests...) 2013-03-06 22:26:54 +01:00
Henrik Rydgard
477aeee0ee Compute current hCount correctly instead of incrementing a counter. 2013-03-06 20:31:51 +01:00
Henrik Rydgård
b1013f1442 Merge pull request #891 from xsacha/master
Armjit update
2013-03-06 10:17:59 -08:00
Sacha
94a11ef3c0 Armjit: Implement movn, movz 2013-03-07 04:11:48 +10:00
Henrik Rydgard
4d7a2497a1 Update native (zip logging fixes) 2013-03-06 19:06:33 +01:00
xsacha
647f8729ef Merge pull request #884 from xsacha/master
Armjit, graphical issues, literal pool, func definitions, ...
2013-03-06 08:41:35 -08:00
Sacha
87de6be239 Fix the shift regs in ARM JIT that were causing graphical issues in some games. Set avoidload flag. 2013-03-07 02:39:28 +10:00
Sacha
d77632bfb0 Fix literal pools on games with very large code blocks (eg. Zero no Kieski).
Was flushing after an offset of 4088 which did not take in to account that a single MIPS instruction can turn in to numerous ARM instructions. Chose a safer value of 4020.
Was insta-flushing after reaching this offset value. Some code blocks are over 8K in size. Use a partialFlushOffset to keep track of when the next flush is required.
Was protecting flush branch manually. Can use B_CC(CC_AL) for this instead.
2013-03-07 02:25:27 +10:00
Sacha
8125d96ce1 Small update for shifted load/stores. Still disabled. 2013-03-07 01:04:41 +10:00
Sacha
a8b6fca61b Separate codepaths for shifted load/stores and normal load/stores. Fix dirty regs. 2013-03-07 00:59:07 +10:00
Sacha
ae3b881a7f Use correct args for Operand2(..) through armjit. Fix STR(..). 2013-03-07 00:59:07 +10:00
Sacha
268d16bd24 Use correct args for STR(..) throughout armjit. 2013-03-07 00:59:07 +10:00
Sacha
23fb88c5fe Enable optimisation codepath (left+right combines). 2013-03-07 00:59:07 +10:00
Henrik Rydgård
c2ab3bbc31 Merge pull request #885 from unknownbrackets/psmfplayer-fix
Small scePsmfPlayer cleanup
2013-03-06 01:36:54 -08:00
Unknown W. Brackets
b87c9839de Correctly make psmfPlayerStatus per instance. 2013-03-06 01:00:26 -08:00
Unknown W. Brackets
e361ae7e85 Check for bad psmfplayer param in status.
Improves Mana Khemia: Student Alliance.
2013-03-06 00:50:42 -08:00
Henrik Rydgård
33902ed8c8 Merge pull request #883 from m45t3r/master
Fixes to Portuguese (Brazillian) translation.
2013-03-06 00:18:23 -08:00
Thiago Kenji Okada
ce6036400f Fixes to Portuguese (Brazillian) translation. 2013-03-05 20:54:24 -03:00
Henrik Rydgård
a57b1b8864 Merge pull request #881 from raven02/patch-3
Turn down sceMpegAtracDecode and sceAtracDecodeData log level
2013-03-05 15:23:10 -08:00
raven02
9f127fcf0d Turn down level sceAtracDecodeData log level 2013-03-06 07:02:40 +08:00
raven02
db7f23faf7 Turn down level sceMpegAtracDecode log level 2013-03-06 07:01:40 +08:00
Henrik Rydgård
ba24e62c14 Merge pull request #880 from raven02/patch-3
Making the input letter closer
2013-03-05 14:49:51 -08:00