Files
ppsspp/Core/MIPS
Unknown W. Brackets b03460c169 Improve function range detection.
This improves a pattern like this:

  j endOfLoop;
  li v0, 0;
  startOfLoop:
  addiu v0, v0, 1
endOfLoop:
  bne v0, a0, startOfLoop;
  nop
  jr ra
  nop

Where it jumps to the end of the loop, which only jumps back to the top of
the loop.  This might misdetect a few cases of tail recursion, but only
when the funcs are right next to each other.

Also, stops scanning at a jr ra, which was causing funcs to be incorrectly
long in cases.
2014-07-20 14:42:20 -07:00
..
2014-07-17 02:34:22 +10:00
2014-06-30 08:10:14 -07:00
2013-10-13 10:36:43 +02:00
2014-03-15 10:02:47 -04:00
2014-03-15 12:03:33 -07:00
2014-03-15 12:03:33 -07:00