From: Max Filippov Date: Sat, 9 May 2015 22:02:31 +0000 (+0300) Subject: xtensa: fix gas trampolines regression X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc58915f3af581f32d575acd37e0cfe047c7990b;p=binutils-gdb.git xtensa: fix gas trampolines regression Extra condition 'abs (addr - trampaddr) < J_RANGE / 2' for trampoline selection results in regressions: when relaxable jump is little longer than J_RANGE so that single trampoline makes two new jumps, one longer than J_RANGE / 2 and one shorter, correct trampoline cannot be found. Drop that condition. 2015-05-13 Max Filippov gas/ * config/tc-xtensa.c (xtensa_relax_frag): Allow trampoline to be closer than J_RANGE / 2 to jump frag. gas/testsuite/ * gas/xtensa/trampoline.s: Add regression testcase. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 48775387ed8..683a30ed324 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2015-05-13 Max Filippov + + * config/tc-xtensa.c (xtensa_relax_frag): Allow trampoline to be + closer than J_RANGE / 2 to jump frag. + 2015-05-11 H.J. Lu * configure.tgt (arch): Set to iamcu for i386-*-elfiamcu target. diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c index b1827fa9a3e..31c0b6be7ee 100644 --- a/gas/config/tc-xtensa.c +++ b/gas/config/tc-xtensa.c @@ -9071,8 +9071,7 @@ xtensa_relax_frag (fragS *fragP, long stretch, int *stretched_p) trampaddr = fragP->fr_address + fragP->fr_fix; - if ((addr + J_RANGE < trampaddr) || - abs (addr - trampaddr) < J_RANGE / 2) + if (addr + J_RANGE < trampaddr) continue; if (addr > trampaddr + J_RANGE) break; diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 793b329ceaa..5f3f43dbd09 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2015-05-13 Max Filippov + + * gas/xtensa/trampoline.s: Add regression testcase. + 2015-05-11 H.J. Lu * gas/i386/i386.exp: Run iamcu-1, iamcu-2, iamcu-3, iamcu-inval-1, diff --git a/gas/testsuite/gas/xtensa/trampoline.s b/gas/testsuite/gas/xtensa/trampoline.s index 4465786bb06..3cfbe97991a 100644 --- a/gas/testsuite/gas/xtensa/trampoline.s +++ b/gas/testsuite/gas/xtensa/trampoline.s @@ -26,3 +26,13 @@ .endr 4: j 4b + +5: + j 6f + + .rep 43691 + _nop + .endr + +6: + j 5b