Unknown W. Brackets 1fd6214945 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-18 00:22:19 -07:00
..
2014-06-09 19:40:05 +02:00
2014-07-15 23:35:19 -07:00
2014-06-23 22:56:12 +02:00
2014-07-18 00:22:19 -07:00
2014-06-25 22:01:40 +10:00
2014-06-11 03:10:50 +10:00