diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2003-12-18 10:25:12 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2003-12-18 10:25:12 +0000 |
commit | 18ab192184fb5f5c087651ac8fdfe2b3f1cdf720 (patch) | |
tree | c5af55301074fda48774b53b6a48b7d17e8c5539 /ld/testsuite/ld-mips-elf/reloc-1a.s | |
parent | 30ac9238dfbbddadd84b277a9cae57a006aac265 (diff) | |
download | gdb-18ab192184fb5f5c087651ac8fdfe2b3f1cdf720.zip gdb-18ab192184fb5f5c087651ac8fdfe2b3f1cdf720.tar.gz gdb-18ab192184fb5f5c087651ac8fdfe2b3f1cdf720.tar.bz2 |
* ld-mips-elf/reloc-1[ab].s: New source files.
* ld-mips-elf/reloc-1-{n32,n64,rel}.d: New tests.
* ld-mips-elf/reloc-2[ab].s: New source files.
* ld-mips-elf/reloc-2.{d,ld}: New test.
* ld-mips-elf/reloc-3[ab].s: New source files.
* ld-mips-elf/reloc-3-{r,srec}.d: New tests.
* ld-mips-elf/mips-elf.exp: Run them.
Diffstat (limited to 'ld/testsuite/ld-mips-elf/reloc-1a.s')
-rw-r--r-- | ld/testsuite/ld-mips-elf/reloc-1a.s | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/ld/testsuite/ld-mips-elf/reloc-1a.s b/ld/testsuite/ld-mips-elf/reloc-1a.s new file mode 100644 index 0000000..5fcd4bb --- /dev/null +++ b/ld/testsuite/ld-mips-elf/reloc-1a.s @@ -0,0 +1,100 @@ + .globl _start + .globl sdg + .set noreorder + .ent tstarta +tstarta: +_start: + lui $4,%hi(tstarta - 0x8010) + addiu $4,$4,%lo(tstarta - 0x8010) + lui $4,%hi(tstarta - 0x8000) + addiu $4,$4,%lo(tstarta - 0x8000) + lui $4,%hi(tstarta) + addiu $4,$4,%lo(tstarta) + lui $4,%hi(tstarta + 0x7ff0) + addiu $4,$4,%lo(tstarta + 0x7ff0) +t32a: + lui $4,%hi(tstarta + 0x8010) + addiu $4,$4,%lo(tstarta + 0x8010) + + lui $4,%hi(t32a - 0x8010) + addiu $4,$4,%lo(t32a - 0x8010) + lui $4,%hi(t32a - 0x8000) + addiu $4,$4,%lo(t32a - 0x8000) + lui $4,%hi(t32a) + addiu $4,$4,%lo(t32a) + lui $4,%hi(t32a + 0x7ff0) + addiu $4,$4,%lo(t32a + 0x7ff0) + lui $4,%hi(t32a + 0x8010) + addiu $4,$4,%lo(t32a + 0x8010) + + lui $4,%hi(_start - 0x8010) + addiu $4,$4,%lo(_start - 0x8010) + lui $4,%hi(_start - 0x8000) + addiu $4,$4,%lo(_start - 0x8000) + lui $4,%hi(_start) + addiu $4,$4,%lo(_start) + lui $4,%hi(_start + 0x7ff0) + addiu $4,$4,%lo(_start + 0x7ff0) + lui $4,%hi(_start + 0x8010) + addiu $4,$4,%lo(_start + 0x8010) + + lui $4,%got(tstarta - 0x8010) + addiu $4,$4,%lo(tstarta - 0x8010) + lui $4,%got(tstarta - 0x8000) + addiu $4,$4,%lo(tstarta - 0x8000) + lui $4,%got(tstarta) + addiu $4,$4,%lo(tstarta) + lui $4,%got(tstarta + 0x7ff0) + addiu $4,$4,%lo(tstarta + 0x7ff0) + lui $4,%got(tstarta + 0x8010) + addiu $4,$4,%lo(tstarta + 0x8010) + + lui $4,%got(t32a - 0x8010) + addiu $4,$4,%lo(t32a - 0x8010) + lui $4,%got(t32a - 0x8000) + addiu $4,$4,%lo(t32a - 0x8000) + lui $4,%got(t32a) + addiu $4,$4,%lo(t32a) + lui $4,%got(t32a + 0x7ff0) + addiu $4,$4,%lo(t32a + 0x7ff0) + lui $4,%got(t32a + 0x8010) + addiu $4,$4,%lo(t32a + 0x8010) + + addiu $4,$4,%gp_rel(sdg - 4) + addiu $4,$4,%gp_rel(sdg) + addiu $4,$4,%gp_rel(sdg + 4) + + addiu $4,$4,%gp_rel(sdla - 4) + addiu $4,$4,%gp_rel(sdla) + addiu $4,$4,%gp_rel(sdla + 4) + + jal tstarta - 4 + nop + jal tstarta + nop + jal tstarta + 4 + nop + + jal t32a - 4 + nop + jal t32a + nop + jal t32a + 4 + nop + + jal _start - 4 + nop + jal _start + nop + jal _start + 4 + nop + + .org 0xfff0 + + .end tstarta + + .section .sdata + .space 16 +sdg: +sdla: + .space 16 |