diff options
author | Alan Modra <amodra@gmail.com> | 2008-05-12 12:23:13 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-05-12 12:23:13 +0000 |
commit | cef1fe971fc0fc51c87b64f242d49fbe2cfe5351 (patch) | |
tree | d75aa2265cf2c876320a31ea7d7c7b54c3ccf0b3 /binutils | |
parent | cc5ca406f932c14b0af83d96756f2198b55a5c7c (diff) | |
download | gdb-cef1fe971fc0fc51c87b64f242d49fbe2cfe5351.zip gdb-cef1fe971fc0fc51c87b64f242d49fbe2cfe5351.tar.gz gdb-cef1fe971fc0fc51c87b64f242d49fbe2cfe5351.tar.bz2 |
* embedspu.sh: Test for presence of ._ea by looking at section
table rather than looking at relocs. Correct toe_addr substitution.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/embedspu.sh | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 9ee4875..d64994d 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2008-05-12 Alan Modra <amodra@bigpond.net.au> + + * embedspu.sh: Test for presence of ._ea by looking at section + table rather than looking at relocs. Correct toe_addr substitution. + 2008-05-08 Alan Modra <amodra@bigpond.net.au> * embedspu.sh: Take note of R_SPU_PPU32/64 relocs without a symbol, diff --git a/binutils/embedspu.sh b/binutils/embedspu.sh index f44d665..5f9d20c 100644 --- a/binutils/embedspu.sh +++ b/binutils/embedspu.sh @@ -119,6 +119,7 @@ main () toe=`${READELF} -S ${INFILE} | sed -n -e 's, *\[ *\([0-9]*\)\] *\.toe *[PROGN]*BITS *\([0-9a-f]*\).*,\1 \2,p'` toe_addr=`echo $toe | sed -n -e 's,.* ,,p'` toe=`echo $toe | sed -n -e 's, .*,,p'` + has_ea=`${READELF} -S ${INFILE} | sed -n -e 's, *\[ *\([0-9]*\)\] *\._ea *PROGBITS.*,\1,p'` # For loaded sections, pick off section number, address, and file offset sections=`${READELF} -S ${INFILE} | sed -n -e 's, *\[ *\([0-9]*\)\] *[^ ]* *PROGBITS *\([0-9a-f]*\) *\([0-9a-f]*\).*,\1 \2 \3,p'` sections=`echo ${sections}` @@ -151,7 +152,7 @@ main () __spetoe__: `${READELF} -s -W ${INFILE} | grep ' _EAR_' | sort -k 2 | awk \ 'BEGIN { \ - addr = strtonum ("0x" "'${toe_addr-0}'"); \ + addr = strtonum ("0x" "'${toe_addr:-0}'"); \ split ("'"${sections}"'", s, " "); \ for (i = 1; i in s; i += 3) { \ sec_off[s[i]] = strtonum ("0x" s[i+2]) - strtonum ("0x" s[i+1]); \ @@ -202,7 +203,6 @@ $3 ~ /R_SPU_PPU/ { \ print "#else"; \ print " .reloc __speelf__+" strtonum ("0x" $1) + sec_off[rela[sec]] + (substr($3, 10) == "64" ? 4 : 0)", R_PPC_ADDR32, " ($5 != "" ? $5 "+0x" $7 : "__speelf__ + 0x" $4); \ print "#endif"; \ - if (!has_ea && $5 == "") { print "#define HAS_EA 1"; has_ea = 1; }; \ if (!donedef) { print "#define HAS_RELOCS 1"; donedef = 1; }; \ } \ $3 ~ /unrecognized:/ { \ @@ -211,11 +211,10 @@ $3 ~ /unrecognized:/ { \ print "#else"; \ print " .reloc __speelf__+" strtonum ("0x" $1) + sec_off[rela[sec]] + ($4 == "f" ? 4 : 0)", R_PPC_ADDR32, " ($6 != "" ? $6 "+0x" $8 : "__speelf__ + 0x" $5); \ print "#endif"; \ - if (!has_ea && $5 == "") { print "#define HAS_EA 1"; has_ea = 1; }; \ if (!donedef) { print "#define HAS_RELOCS 1"; donedef = 1; }; \ } \ '` -#ifdef HAS_EA +#if ${has_ea:-0} .section .data.speelf,"aw",@progbits #elif defined (HAS_RELOCS) && (defined (__PIC__) || defined (__PIE__)) .section .data.rel.ro.speelf,"a",@progbits |