diff options
author | Paul Brook <paul@codesourcery.com> | 2004-09-17 12:18:19 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2004-09-17 12:18:19 +0000 |
commit | 3674e28ad07f67fd87b8d04cb36d27b0b7f75d65 (patch) | |
tree | d0759de15e16e2721686ddc82d9eebdc32c26f44 /ld/testsuite | |
parent | f6e332e6604aa0bbc05b745d677222e25da2133e (diff) | |
download | gdb-3674e28ad07f67fd87b8d04cb36d27b0b7f75d65.zip gdb-3674e28ad07f67fd87b8d04cb36d27b0b7f75d65.tar.gz gdb-3674e28ad07f67fd87b8d04cb36d27b0b7f75d65.tar.bz2 |
bfd/
* bfd-in.h (bfd_elf32_arm_set_target_relocs): Add prototype.
(bfd_elf32_arm_process_before_allocation): Update prototype.
* bfd-in2.h: Regenerate.
* bfd/elf32-arm.h (elf32_arm_link_hash_table): Add target2_reloc.
(elf32_arm_link_hash_table_create): Set it.
(bfd_elf32_arm_process_before_allocation): Remove target1_is_rel.
(bfd_elf32_arm_set_target_relocs): New function.
(arm_real_reloc_type): New function.
(elf32_arm_final_link_relocate): Use it. Handle R_ARM_PREL31 and
R_ARM_GOT_PREL. Remove R_ARM_TARGET1.
(elf32_arm_gc_sweep_hook): Ditto.
(elf32_arm_check_relocs): Ditto.
(elf32_arm_relocate_section): Handle R_ARM_GOT_PREL.
* elfarm-nabi.c (elf32_arm_howto_table): Add R_ARM_PREL31 and
R_ARM_GOT_TARGET2.
(elf32_arm_got_prel): New variable.
(elf32_arm_howto_from_type): New function.
(elf32_arm_info_to_howto): Use it.
(elf32_arm_reloc_map): Add BFD_RELOC_ARM_PREL31 and
BFD_RELOC_ARM_TARGET2.
* libbfd.h: Regenerate.
* reloc.c: Add BFD_RELOC_ARM_TARGET2 and BFD_RELOC_ARM_PREL31.
gas/
* config/tc-arm.c (s_arm_rel31): New funciton.
(md_pseudo_table): Add .rel31.
(md_apply_fix3): Handle BFD_RELOC_ARM_TARGET2,
BFD_RELOC_32_PCREL and BFD_RELOC_ARM_PREL31.
(tc_gen_reloc): Handle BFD_RELOC_ARM_PREL31 and BFD_RELOC_ARM_TARGET2.
(arm_fix_adjustable): Return 0 for BFD_RELOC_ARM_TARGET2.
(arm_parse_reloc): Add (target2).
gas/testsuite/
* gas/arm/pic.s: Add (target2).
* gas/arm/pic.d: Ditto.
include/
* elf/arm.h: Remove R_ARM_STKCHK and R_ARM_THM_STKCHK.
Add R_ARM_TARGET2, R_ARM_PREL31, R_ARM_GOT_ABS, R_ARM_GOT_PREL,
R_ARM_GOT_BREL12, R_ARM_GOTOFF12 and R_ARM_GOTRELAX.
ld/
* ld.texinfo: Rename arm-specific section. Document --target*
* emulparams/armelf_fbsd.sh: Set TARGET2_TYPE.
* emulparams/armelf_linux.sh: Ditto.
* emulparams/armelf_nbsd.sh: Ditto.
* emultempl/armelf.em: Set default for TARGET2_TYPE.
(target2_type): New variable.
(arm_elf_before_allocation): Don't pass target1_type.
(arm_elf_create_output_section_statements): New function.
(PARSE_AND_LIST_PROLOGUE): Add OPTION_TARGET2.
(PARSE_AND_LIST_LONGOPTS, PARSE_AND_LIST_OPTIONS): Add --target=.
(PARSE_AND_LIST_ARGS_CASES): Handle OPTION_TARGET2.
(LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS): Set.
* emultempl/armelf_oabi.em (_before_allocation): Remove extra
argument to bfd_elf32_arm_process_before_allocation.
ld/testsuite/
* ld-arm/arm-target1-{abs,rel}.d}: New files.
* ld-arm/arm-target1.s: New file.
* ld-arm/arm-target2-{,got-}rel.d: New files.
* ld-arm/arm-target2.s: New file.
* ld-arm/arm-rel31.d: New files.
* ld-arm/arm-rel31.s: New files.
* ld-arm/arm.ld: New file.
* ld-arm/arm-elf.exp: Add new tests.
Diffstat (limited to 'ld/testsuite')
-rw-r--r-- | ld/testsuite/ChangeLog | 11 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm-elf.exp | 15 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm-rel31.d | 5 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm-rel31.s | 11 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm-target1-abs.d | 5 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm-target1-rel.d | 5 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm-target1.s | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm-target2-got-rel.d | 7 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm-target2-rel.d | 5 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm-target2.s | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm.ld | 16 |
11 files changed, 92 insertions, 0 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 4772ab5..bc25d1c 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,14 @@ +2004-09-17 Paul Brook <paul@codesourcery.com> + + * ld-arm/arm-target1-{abs,rel}.d}: New files. + * ld-arm/arm-target1.s: New file. + * ld-arm/arm-target2-{,got-}rel.d: New files. + * ld-arm/arm-target2.s: New file. + * ld-arm/arm-rel31.d: New files. + * ld-arm/arm-rel31.s: New files. + * ld-arm/arm.ld: New file. + * ld-arm/arm-elf.exp: Add new tests. + 2004-09-07 Hans-Peter Nilsson <hp@axis.com> * ld-cris/hiddef1.d, ld-cris/hiddef1.s, ld-cris/hidrefgotplt1.s: diff --git a/ld/testsuite/ld-arm/arm-elf.exp b/ld/testsuite/ld-arm/arm-elf.exp index 2f32a11..17fb089 100644 --- a/ld/testsuite/ld-arm/arm-elf.exp +++ b/ld/testsuite/ld-arm/arm-elf.exp @@ -47,6 +47,21 @@ set armelftests { {"Non-pcrel function reference" "tmpdir/arm-lib.so" "" {arm-app-abs32.s} {{objdump -fdw arm-app-abs32.d} {objdump -Rw arm-app-abs32.r}} "arm-app-abs32"} + {"target1-abs" "-static --target1-abs -T arm.ld" "" {arm-target1.s} + {{objdump -s arm-target1-abs.d}} + "arm-target1-abs"} + {"target1-rel" "-static --target1-rel -T arm.ld" "" {arm-target1.s} + {{objdump -s arm-target1-rel.d}} + "arm-target1-rel"} + {"target2-rel" "-static --target2=rel -T arm.ld" "" {arm-target2.s} + {{objdump -s arm-target2-rel.d}} + "arm-target2-rel"} + {"target2-got-rel" "-static --target2=got-rel -T arm.ld" "" {arm-target2.s} + {{objdump -s arm-target2-got-rel.d}} + "arm-target2-got-rel"} + {"arm-rel31" "-static -T arm.ld" "" {arm-rel31.s} + {{objdump -s arm-rel31.d}} + "arm-rel31"} } run_ld_link_tests $armelftests diff --git a/ld/testsuite/ld-arm/arm-rel31.d b/ld/testsuite/ld-arm/arm-rel31.d new file mode 100644 index 0000000..1ab6839 --- /dev/null +++ b/ld/testsuite/ld-arm/arm-rel31.d @@ -0,0 +1,5 @@ + +.*: file format.* + +Contents of section .text: + 8000 (10000000 fcffff7f 08000080 f4ffffff|00000010 7ffffffc 80000008 fffffff4) .* diff --git a/ld/testsuite/ld-arm/arm-rel31.s b/ld/testsuite/ld-arm/arm-rel31.s new file mode 100644 index 0000000..37eee66 --- /dev/null +++ b/ld/testsuite/ld-arm/arm-rel31.s @@ -0,0 +1,11 @@ +# Test the R_ARM_REL31 relocation + .section .before + .global _start +_start: + .text + .rel31 0, foo + .rel31 0, _start + .rel31 1, foo + .rel31 1, _start + .section .after +foo: diff --git a/ld/testsuite/ld-arm/arm-target1-abs.d b/ld/testsuite/ld-arm/arm-target1-abs.d new file mode 100644 index 0000000..81cc9cc --- /dev/null +++ b/ld/testsuite/ld-arm/arm-target1-abs.d @@ -0,0 +1,5 @@ + +.*: file format.* + +Contents of section .text: + 8000 (04800000|00008004) .* diff --git a/ld/testsuite/ld-arm/arm-target1-rel.d b/ld/testsuite/ld-arm/arm-target1-rel.d new file mode 100644 index 0000000..2d10dee --- /dev/null +++ b/ld/testsuite/ld-arm/arm-target1-rel.d @@ -0,0 +1,5 @@ + +.*: file format .* + +Contents of section .text: + 8000 (04000000|00000004) .* diff --git a/ld/testsuite/ld-arm/arm-target1.s b/ld/testsuite/ld-arm/arm-target1.s new file mode 100644 index 0000000..5a7ba91 --- /dev/null +++ b/ld/testsuite/ld-arm/arm-target1.s @@ -0,0 +1,6 @@ +# Test the R_ARM_TARGET1 relocation + .text + .global _start +_start: + .word foo(target1) +foo: diff --git a/ld/testsuite/ld-arm/arm-target2-got-rel.d b/ld/testsuite/ld-arm/arm-target2-got-rel.d new file mode 100644 index 0000000..089c061 --- /dev/null +++ b/ld/testsuite/ld-arm/arm-target2-got-rel.d @@ -0,0 +1,7 @@ + +.*: file format.* + +Contents of section .text: + 8000 (00100000|00001000) .* +Contents of section .got: + 9000 (04800000|00008004) .* diff --git a/ld/testsuite/ld-arm/arm-target2-rel.d b/ld/testsuite/ld-arm/arm-target2-rel.d new file mode 100644 index 0000000..4913e07 --- /dev/null +++ b/ld/testsuite/ld-arm/arm-target2-rel.d @@ -0,0 +1,5 @@ + +.*: file format.* + +Contents of section .text: + 8000 (04000000|00000004) .* diff --git a/ld/testsuite/ld-arm/arm-target2.s b/ld/testsuite/ld-arm/arm-target2.s new file mode 100644 index 0000000..0c343ef --- /dev/null +++ b/ld/testsuite/ld-arm/arm-target2.s @@ -0,0 +1,6 @@ +# Test the R_ARM_TARGET2 relocation + .text + .global _start +_start: + .word foo(target2) +foo: diff --git a/ld/testsuite/ld-arm/arm.ld b/ld/testsuite/ld-arm/arm.ld new file mode 100644 index 0000000..23d914b --- /dev/null +++ b/ld/testsuite/ld-arm/arm.ld @@ -0,0 +1,16 @@ +/* Script for ld testsuite */ +OUTPUT_ARCH(arm) +ENTRY(_start) +SECTIONS +{ + /* Read-only sections, merged into text segment: */ + PROVIDE (__executable_start = 0x8000); . = 0x8000; + .text : + { + *(.before) + *(.text) + *(.after) + } =0 + . = 0x9000; + .got : { *(.got) *(.got.plt)} +} |