Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-29 | fix some build issues and warnings | notaz | |
2012-04-22 | bring in configure build system | notaz | |
not using autotools, trying to do something similar like qemu instead. | |||
2012-04-18 | drc: inv: fix ram ofset and mirror handling | notaz | |
2012-04-18 | support emulated RAM mapped at offset | notaz | |
Thanks to CatalystG for some initial code and testing. | |||
2012-01-14 | drc: allow translation cache in data segment | notaz | |
useful for Android | |||
2012-01-07 | drc: do basic current block modification detection | notaz | |
const writes only.. | |||
2012-01-06 | drc: never read to r0 | notaz | |
r0 can be allocated for a write and program may decide to read to r0 while we have it alloacted, so *_readstub must be ready for it | |||
2012-01-01 | change lcf handling | notaz | |
not quite right but better than before, I hope | |||
2011-12-11 | drc: fix bad gte unneeded reg assumption | notaz | |
2011-12-08 | drc: move constmap out of regstat | notaz | |
saves close to 1MB, should help Wiz a bit | |||
2011-12-05 | move some gpu status handling to core | notaz | |
this removes need to update each gpu plugin when this stuff is changed | |||
2011-11-01 | drc/gte: decode MVMVA data deps | notaz | |
2011-11-01 | drc/gte: fix dep list | notaz | |
2011-10-30 | drc: detect sw irqs properly | notaz | |
2011-10-30 | drc: fix various register trashing in mtc0 | notaz | |
2011-10-30 | drc: fix cycle multiplier code | notaz | |
rounding wrong way is enough to cause nasty timing problems | |||
2011-10-30 | drc: fix mtc0 argument | notaz | |
HOST_CCREG is not always cc.. | |||
2011-10-30 | drc: some debug code improvements | notaz | |
2011-10-30 | make root counters use generic event scheduling code | notaz | |
simplifies event handling code a bit | |||
2011-10-30 | drc: always use physical block addresses | notaz | |
there is no reason to use virtual addressing, things can't be remapped on PSX as there is no MMU anyway. Fixes somewhat related invalidation bug along the way. | |||
2011-10-30 | rcnt: remove gate guess for cnt 0 and 1 | notaz | |
at least 1 is wrong according to Ryphecha's info, and breaks at least Wipeout XL. | |||
2011-10-30 | drc: detect dead gte reads too | notaz | |
2011-10-30 | drc: add some hack options | notaz | |
intended for caanoo/Wiz, some users want to trade glitches for performance boost. | |||
2011-10-30 | gte: parametrize remaining ops | notaz | |
at least the ones from C source, it looks like there could be more. | |||
2011-10-30 | drc: try to avoid full constant reload | notaz | |
derive from existing ones if possible | |||
2011-10-30 | drc: fix sub assem_debug print | notaz | |
2011-10-30 | drc: avoid invcode checks on close addesses | notaz | |
yes this makes it possible to miss something, but I hope it's not going to happen and will deal with it if it does. | |||
2011-10-30 | pcnt: measure gte too | notaz | |
2011-10-30 | drc: do MVMVA decoding; parametrize handlers | notaz | |
2011-10-30 | drc: finish GTE reg liveness analysis | notaz | |
2011-10-30 | drc: implement literal dupe merging | notaz | |
doesn't seem to make much difference, but theoretically should help. | |||
2011-10-30 | inline/parametrize rootcounter reads | notaz | |
makes rcnt1 hack impossible though, overclock PSX instead | |||
2011-10-10 | drc: check for interrupts after RFE | notaz | |
this missing check wasn't causing too many problems because of events on every hsync, which are gone now. | |||
2011-10-10 | new ability to adjust psx cpu clock | notaz | |
2011-10-10 | get rid of old memhandlers | notaz | |
2011-10-10 | drc: remove some old inline memhandlers | notaz | |
generic code handles it better now. | |||
2011-10-10 | drc: implement memory access speculation | notaz | |
try to guess RAM mirror we are going to hit | |||
2011-10-08 | drc: implement shiftimm constant propagation | notaz | |
it's rare, but it happens. | |||
2011-10-08 | recompilation-caused frameskip workaround | notaz | |
2011-10-08 | try to support more compilers | notaz | |
2011-10-08 | rewrite memhandlers (write) | notaz | |
2011-10-04 | rewrite memhandlers (read) | notaz | |
2011-10-02 | yet more random armv5 tweaks | notaz | |
2011-09-30 | gte_arm: implement RTPS, RTPT | notaz | |
2011-09-27 | drc: do gte flag liveness detection | notaz | |
just copy-paste existing code and use _nf handlers from previous patch. | |||
2011-09-27 | gte: split arm code for pollux, generate flagless handlers | notaz | |
flagless are unused but will be used later, at least I hope so. | |||
2011-09-25 | drc: fix PCSX HLE hack for armv5 | notaz | |
also adds some asserts I did during debugging this | |||
2011-09-23 | support armv5 build | notaz | |
2011-09-22 | drc: do modification check in smaller than page granularity | notaz | |
There are some games that keep writing in the same 4k page where the code resides (Alien Ressurection is one such example). I've noticed those accesses are usually to a small region, so keep range of addresses that has no code and has been recently accessed and check it when the writes come. | |||
2011-09-20 | drc: make sure dyna_linker is really called from stub | notaz | |
in very rare cases add_link() would end up being called with jump to another block and not stub, which would later cause kill_pointer() to crash while cleaning jump_out. I'm guessing wrong pointer was being picked from jump_in by dyna_linker, failing to detect stale cache, and hoping this will fix it. |