From: Ulrich Weigand Date: Wed, 14 Nov 2012 13:44:45 +0000 (+0000) Subject: gas/ChangeLog: X-Git-Tag: cgen-snapshot-20121201~142 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=46b596ff8c4997f2774e832fe503a9af2bc6f4b3;p=external%2Fbinutils.git gas/ChangeLog: * config/tc-ppc.c (md_apply_fix): Leave field zero when emitting an ELF reloc on data as well. gas/testsuite/ChangeLog: * gas/ppc/astest.d: Update for fixup changes. * gas/ppc/astest64.d: Likewise. * gas/ppc/astest2.d: Likewise. * gas/ppc/astest2_64.d: Likewise. * gas/ppc/test1elf32.d: Likewise. * gas/ppc/test1elf64.d: Likewise. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 412ee11..a3a33d8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2012-11-14 Ulrich Weigand + + * config/tc-ppc.c (md_apply_fix): Leave field zero when emitting + an ELF reloc on data as well. + 2012-11-09 Maciej W. Rozycki * read.h (s_vendor_attribute): Move to... diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 1b12f57..de13ab1 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -6620,6 +6620,9 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) } else { + int size = 0; + offsetT fieldval = value; + /* Handle relocs in data. */ switch (fixP->fx_r_type) { @@ -6635,8 +6638,7 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) case BFD_RELOC_32_PCREL: case BFD_RELOC_RVA: - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - value, 4); + size = 4; break; case BFD_RELOC_64: @@ -6646,8 +6648,7 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) /* fall through */ case BFD_RELOC_64_PCREL: - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - value, 8); + size = 8; break; case BFD_RELOC_16: @@ -6656,8 +6657,7 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) /* fall through */ case BFD_RELOC_16_PCREL: - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - value, 2); + size = 2; break; case BFD_RELOC_8: @@ -6690,8 +6690,7 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) fixP->fx_done = 1; } else - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - value, 1); + size = 1; break; case BFD_RELOC_VTABLE_INHERIT: @@ -6711,52 +6710,51 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) if (fixP->fx_pcrel) fixP->fx_r_type = BFD_RELOC_LO16_PCREL; case BFD_RELOC_LO16_PCREL: - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - value, 2); + size = 2; break; case BFD_RELOC_HI16: if (fixP->fx_pcrel) fixP->fx_r_type = BFD_RELOC_HI16_PCREL; case BFD_RELOC_HI16_PCREL: - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - PPC_HI (value), 2); + size = 2; + fieldval = PPC_HI (value); break; case BFD_RELOC_HI16_S: if (fixP->fx_pcrel) fixP->fx_r_type = BFD_RELOC_HI16_S_PCREL; case BFD_RELOC_HI16_S_PCREL: - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - PPC_HA (value), 2); + size = 2; + fieldval = PPC_HA (value); break; case BFD_RELOC_PPC64_HIGHER: if (fixP->fx_pcrel) goto bad_pcrel; - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - PPC_HIGHER (value), 2); + size = 2; + fieldval = PPC_HIGHER (value); break; case BFD_RELOC_PPC64_HIGHER_S: if (fixP->fx_pcrel) goto bad_pcrel; - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - PPC_HIGHERA (value), 2); + size = 2; + fieldval = PPC_HIGHERA (value); break; case BFD_RELOC_PPC64_HIGHEST: if (fixP->fx_pcrel) goto bad_pcrel; - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - PPC_HIGHEST (value), 2); + size = 2; + fieldval = PPC_HIGHEST (value); break; case BFD_RELOC_PPC64_HIGHEST_S: if (fixP->fx_pcrel) goto bad_pcrel; - md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, - PPC_HIGHESTA (value), 2); + size = 2; + fieldval = PPC_HIGHESTA (value); break; case BFD_RELOC_PPC_DTPMOD: @@ -6856,6 +6854,10 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) fflush (stderr); abort (); } + + if (size && APPLY_RELOC) + md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where, + fieldval, size); } #ifdef OBJ_ELF diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 7797e19..a7b4f42 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,12 @@ +2012-11-14 Ulrich Weigand + + * gas/ppc/astest.d: Update for fixup changes. + * gas/ppc/astest64.d: Likewise. + * gas/ppc/astest2.d: Likewise. + * gas/ppc/astest2_64.d: Likewise. + * gas/ppc/test1elf32.d: Likewise. + * gas/ppc/test1elf64.d: Likewise. + 2012-11-09 David Holsgrove * gas/microblaze/endian.exp: New file - endian testcase for microblaze / microblazeel. diff --git a/gas/testsuite/gas/ppc/astest.d b/gas/testsuite/gas/ppc/astest.d index 20ac38c..70a11ac 100644 --- a/gas/testsuite/gas/ppc/astest.d +++ b/gas/testsuite/gas/ppc/astest.d @@ -33,42 +33,28 @@ Disassembly of section \.text: 38: (48 00 00 00|00 00 00 48) b .* 38: R_PPC_LOCAL24PC a 3c: (4b ff ff d4|d4 ff ff 4b) b 10 - 40: (00 00 00 40|40 00 00 00) \.long 0x40 + \.\.\. 40: R_PPC_ADDR32 \.text\+0x40 - 44: (00 00 00 4c|4c 00 00 00) \.long 0x4c 44: R_PPC_ADDR32 \.text\+0x4c - 48: (00 00 00 00|00 00 00 00) \.long 0x0 48: R_PPC_REL32 x - 4c: (00 00 00 04|04 00 00 00) \.long 0x4 4c: R_PPC_REL32 x\+0x4 - 50: (00 00 00 00|00 00 00 00) \.long 0x0 50: R_PPC_REL32 z - 54: (00 00 00 04|04 00 00 00) \.long 0x4 54: R_PPC_REL32 \.data\+0x4 - 58: (00 00 00 00|00 00 00 00) \.long 0x0 58: R_PPC_ADDR32 x - 5c: (00 00 00 04|04 00 00 00) \.long 0x4 5c: R_PPC_ADDR32 \.data\+0x4 - 60: (00 00 00 00|00 00 00 00) \.long 0x0 60: R_PPC_ADDR32 z - 64: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 64: R_PPC_ADDR32 x-0x4 - 68: (00 00 00 00|00 00 00 00) \.long 0x0 68: R_PPC_ADDR32 \.data - 6c: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 6c: R_PPC_ADDR32 z-0x4 70: (ff ff ff 9c|9c ff ff ff) \.long 0xffffff9c 74: (ff ff ff 9c|9c ff ff ff) \.long 0xffffff9c - 78: (00 00 00 00|00 00 00 00) \.long 0x0 + \.\.\. 78: R_PPC_ADDR32 a - 7c: (00 00 00 10|10 00 00 00) \.long 0x10 7c: R_PPC_ADDR32 \.text\+0x10 - 80: (00 00 00 10|10 00 00 00) \.long 0x10 80: R_PPC_ADDR32 \.text\+0x10 84: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 - 88: (00 00 00 12|12 00 00 00) \.long 0x12 + \.\.\. 88: R_PPC_ADDR32 \.text\+0x12 - 8c: 00 00 00 00 \.long 0x0 Disassembly of section \.data: 0+0000000 : diff --git a/gas/testsuite/gas/ppc/astest2.d b/gas/testsuite/gas/ppc/astest2.d index 0946eb5..ddbd952 100644 --- a/gas/testsuite/gas/ppc/astest2.d +++ b/gas/testsuite/gas/ppc/astest2.d @@ -29,29 +29,18 @@ Disassembly of section \.text: 38: (48 00 00 00|00 00 00 48) b .* 38: R_PPC_LOCAL24PC a 3c: (48 00 00 40|40 00 00 48) b 7c - 40: (00 00 00 40|40 00 00 00) \.long 0x40 + \.\.\. 40: R_PPC_ADDR32 \.text\+0x40 - 44: (00 00 00 4c|4c 00 00 00) \.long 0x4c 44: R_PPC_ADDR32 \.text\+0x4c - 48: (00 00 00 00|00 00 00 00) \.long 0x0 48: R_PPC_REL32 x - 4c: (00 00 00 04|04 00 00 00) \.long 0x4 4c: R_PPC_REL32 x\+0x4 - 50: (00 00 00 00|00 00 00 00) \.long 0x0 50: R_PPC_REL32 z - 54: (00 00 00 04|04 00 00 00) \.long 0x4 54: R_PPC_REL32 \.data\+0x4 - 58: (00 00 00 00|00 00 00 00) \.long 0x0 58: R_PPC_ADDR32 x - 5c: (00 00 00 04|04 00 00 00) \.long 0x4 5c: R_PPC_ADDR32 \.data\+0x4 - 60: (00 00 00 00|00 00 00 00) \.long 0x0 60: R_PPC_ADDR32 z - 64: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 64: R_PPC_ADDR32 x-0x4 - 68: (00 00 00 00|00 00 00 00) \.long 0x0 68: R_PPC_ADDR32 \.data - 6c: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 6c: R_PPC_ADDR32 z-0x4 70: (00 00 00 08|08 00 00 00) \.long 0x8 74: (00 00 00 08|08 00 00 00) \.long 0x8 @@ -61,14 +50,12 @@ Disassembly of section \.text: 78: R_PPC_ADDR32 a 0+000007c : - 7c: (00 00 00 7c|7c 00 00 00) \.long 0x7c + \.\.\. 7c: R_PPC_ADDR32 \.text\+0x7c - 80: (00 00 00 7c|7c 00 00 00) \.long 0x7c 80: R_PPC_ADDR32 \.text\+0x7c 84: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 - 88: (00 00 00 7e|7e 00 00 00) \.long 0x7e + \.\.\. 88: R_PPC_ADDR32 \.text\+0x7e - 8c: (00 00 00 00|00 00 00 00) \.long 0x0 90: (60 00 00 00|00 00 00 60) nop 94: (40 a5 ff fc|fc ff a5 40) ble- cr1,90 98: (41 a9 ff f8|f8 ff a9 41) bgt- cr2,90 diff --git a/gas/testsuite/gas/ppc/astest2_64.d b/gas/testsuite/gas/ppc/astest2_64.d index 07fca24..516b8bc 100644 --- a/gas/testsuite/gas/ppc/astest2_64.d +++ b/gas/testsuite/gas/ppc/astest2_64.d @@ -26,29 +26,18 @@ Disassembly of section \.text: 30: (48 00 00 0.|0. 00 00 48) b .* 30: R_PPC64_REL24 a\+0x4 34: (48 00 00 44|44 00 00 48) b 78 - 38: (00 00 00 38|38 00 00 00) \.long 0x38 + \.\.\. 38: R_PPC64_ADDR32 \.text\+0x38 - 3c: (00 00 00 44|44 00 00 00) \.long 0x44 3c: R_PPC64_ADDR32 \.text\+0x44 - 40: (00 00 00 00|00 00 00 00) \.long 0x0 40: R_PPC64_REL32 x - 44: (00 00 00 04|04 00 00 00) \.long 0x4 44: R_PPC64_REL32 x\+0x4 - 48: (00 00 00 00|00 00 00 00) \.long 0x0 48: R_PPC64_REL32 z - 4c: (00 00 00 04|04 00 00 00) \.long 0x4 4c: R_PPC64_REL32 \.data\+0x4 - 50: (00 00 00 00|00 00 00 00) \.long 0x0 50: R_PPC64_ADDR32 x - 54: (00 00 00 04|04 00 00 00) \.long 0x4 54: R_PPC64_ADDR32 \.data\+0x4 - 58: (00 00 00 00|00 00 00 00) \.long 0x0 58: R_PPC64_ADDR32 z - 5c: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 5c: R_PPC64_ADDR32 x-0x4 - 60: (00 00 00 00|00 00 00 00) \.long 0x0 60: R_PPC64_ADDR32 \.data - 64: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 64: R_PPC64_ADDR32 z-0x4 68: (00 00 00 08|08 00 00 00) \.long 0x8 6c: (00 00 00 08|08 00 00 00) \.long 0x8 @@ -58,14 +47,12 @@ Disassembly of section \.text: 70: R_PPC64_ADDR32 a 0000000000000074 : - 74: (00 00 00 74|74 00 00 00) \.long 0x74 + \.\.\. 74: R_PPC64_ADDR32 \.text\+0x74 - 78: (00 00 00 74|74 00 00 00) \.long 0x74 78: R_PPC64_ADDR32 \.text\+0x74 7c: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 - 80: (00 00 00 76|76 00 00 00) \.long 0x76 + \.\.\. 80: R_PPC64_ADDR32 \.text\+0x76 - 84: (00 00 00 00|00 00 00 00) \.long 0x0 Disassembly of section \.data: 0000000000000000 : diff --git a/gas/testsuite/gas/ppc/astest64.d b/gas/testsuite/gas/ppc/astest64.d index bdd7cc2..82ccb90 100644 --- a/gas/testsuite/gas/ppc/astest64.d +++ b/gas/testsuite/gas/ppc/astest64.d @@ -30,42 +30,28 @@ Disassembly of section \.text: 30: (48 00 00 0.|0. 00 00 48) b .* 30: R_PPC64_REL24 a\+0x4 34: (4b ff ff e0|e0 ff ff 4b) b 14 - 38: (00 00 00 38|38 00 00 00) \.long 0x38 + \.\.\. 38: R_PPC64_ADDR32 \.text\+0x38 - 3c: (00 00 00 44|44 00 00 00) \.long 0x44 3c: R_PPC64_ADDR32 \.text\+0x44 - 40: (00 00 00 00|00 00 00 00) \.long 0x0 40: R_PPC64_REL32 x - 44: (00 00 00 04|04 00 00 00) \.long 0x4 44: R_PPC64_REL32 x\+0x4 - 48: (00 00 00 00|00 00 00 00) \.long 0x0 48: R_PPC64_REL32 z - 4c: (00 00 00 04|04 00 00 00) \.long 0x4 4c: R_PPC64_REL32 \.data\+0x4 - 50: (00 00 00 00|00 00 00 00) \.long 0x0 50: R_PPC64_ADDR32 x - 54: (00 00 00 04|04 00 00 00) \.long 0x4 54: R_PPC64_ADDR32 \.data\+0x4 - 58: (00 00 00 00|00 00 00 00) \.long 0x0 58: R_PPC64_ADDR32 z - 5c: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 5c: R_PPC64_ADDR32 x-0x4 - 60: (00 00 00 00|00 00 00 00) \.long 0x0 60: R_PPC64_ADDR32 \.data - 64: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 64: R_PPC64_ADDR32 z-0x4 68: (ff ff ff a4|a4 ff ff ff) \.long 0xffffffa4 6c: (ff ff ff a4|a4 ff ff ff) \.long 0xffffffa4 - 70: (00 00 00 00|00 00 00 00) \.long 0x0 + \.\.\. 70: R_PPC64_ADDR32 a - 74: (00 00 00 10|10 00 00 00) \.long 0x10 74: R_PPC64_ADDR32 \.text\+0x10 - 78: (00 00 00 10|10 00 00 00) \.long 0x10 78: R_PPC64_ADDR32 \.text\+0x10 7c: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 - 80: (00 00 00 12|12 00 00 00) \.long 0x12 + \.\.\. 80: R_PPC64_ADDR32 \.text\+0x12 - 84: (00 00 00 00|00 00 00 00) \.long 0x0 Disassembly of section \.data: 0000000000000000 : diff --git a/gas/testsuite/gas/ppc/test1elf32.d b/gas/testsuite/gas/ppc/test1elf32.d index 376eccc..d8d6835 100644 --- a/gas/testsuite/gas/ppc/test1elf32.d +++ b/gas/testsuite/gas/ppc/test1elf32.d @@ -74,17 +74,17 @@ Disassembly of section \.data: 4: (ca fe ba be|be ba fe ca) lfd f23,-17730\(r30\) 0+0008 : - 8: (00 98 96 80|80 96 98 00) \.long 0x989680 + 8: 00 00 00 00 \.long 0x0 8: R_PPC_REL32 jk\+0x989680 0+000c : - c: (ff ff ff fc|fc ff ff ff) fnmsub f31,f31,f31,f31 + c: 00 00 00 00 \.long 0x0 c: R_PPC_REL32 jk-0x4 0+0010 : - 10: (00 00 00 00|00 00 00 00) \.long 0x0 + 10: 00 00 00 00 \.long 0x0 10: R_PPC_REL32 jk 0+0014 : - 14: (00 00 00 04|04 00 00 00) \.long 0x4 + 14: 00 00 00 00 \.long 0x0 14: R_PPC_REL32 jk\+0x4 diff --git a/gas/testsuite/gas/ppc/test1elf64.d b/gas/testsuite/gas/ppc/test1elf64.d index 2e32b58..d6383e1 100644 --- a/gas/testsuite/gas/ppc/test1elf64.d +++ b/gas/testsuite/gas/ppc/test1elf64.d @@ -109,11 +109,11 @@ Disassembly of section \.data: c: (ca fe ba be|00 00 00 00) .* 0000000000000010 : - 10: (00 98 96 80|80 96 98 00) .* + 10: 00 00 00 00 .* 10: R_PPC64_REL32 jk\+0x989680 0000000000000014 : - 14: (ff ff ff fc|fc ff ff ff) .* + 14: 00 00 00 00 .* 14: R_PPC64_REL32 jk-0x4 0000000000000018 : @@ -121,18 +121,16 @@ Disassembly of section \.data: 18: R_PPC64_REL32 jk 000000000000001c : - 1c: (00 00 00 04|04 00 00 00) .* + 1c: 00 00 00 00 .* 1c: R_PPC64_REL32 jk\+0x4 0000000000000020 : - 20: (00 00 00 00|08 00 00 00) .* + \.\.\. 20: R_PPC64_REL64 jk\+0x8 - 24: (00 00 00 08|00 00 00 00) .* 0000000000000028 : - 28: (00 00 00 00|10 00 00 00) .* + \.\.\. 28: R_PPC64_REL64 jk\+0x10 - 2c: (00 00 00 10|00 00 00 00) .* Disassembly of section \.toc: 0000000000000000 <\.toc>: