diff options
| author | Daniel Sanders <daniel.sanders@imgtec.com> | 2015-06-02 15:01:25 +0000 |
|---|---|---|
| committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2015-06-02 15:01:25 +0000 |
| commit | 531063b274924d6db9d4058eb1163c051e3525a4 (patch) | |
| tree | fb93edf4cc77f0f7e9eb0f8b338ce773d7e85015 | |
| parent | ddf646b8c7823b5c5ba73d22f5f1ded4d767e559 (diff) | |
| download | bcm5719-llvm-531063b274924d6db9d4058eb1163c051e3525a4.tar.gz bcm5719-llvm-531063b274924d6db9d4058eb1163c051e3525a4.zip | |
[mips] Add RuntimeDyld tests for currently supported O32 relocations.
Reviewers: petarj, vkalintiris
Reviewed By: vkalintiris
Subscribers: vkalintiris, llvm-commits
Differential Revision: http://reviews.llvm.org/D10126
llvm-svn: 238838
| -rw-r--r-- | llvm/test/ExecutionEngine/RuntimeDyld/Mips/ELF_O32_PIC_relocations.s | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/llvm/test/ExecutionEngine/RuntimeDyld/Mips/ELF_O32_PIC_relocations.s b/llvm/test/ExecutionEngine/RuntimeDyld/Mips/ELF_O32_PIC_relocations.s new file mode 100644 index 00000000000..c9f9e1fb7b2 --- /dev/null +++ b/llvm/test/ExecutionEngine/RuntimeDyld/Mips/ELF_O32_PIC_relocations.s @@ -0,0 +1,40 @@ +# RUN: llvm-mc -triple=mipsel-unknown-linux -relocation-model=pic -code-model=small -filetype=obj -o %T/test_ELF_O32.o %s +# RUN: llc -mtriple=mipsel-unknown-linux -relocation-model=pic -filetype=obj -o %T/test_ELF_ExternalFunction_O32.o %S/Inputs/ExternalFunction.ll +# RUN: llvm-rtdyld -triple=mipsel-unknown-linux -verify -map-section test_ELF_O32.o,.text=0x1000 -map-section test_ELF_ExternalFunction_O32.o,.text=0x10000 -check=%s %T/test_ELF_O32.o %T/test_ELF_ExternalFunction_O32.o + + .data +# rtdyld-check: *{4}R_MIPS_32 = foo +R_MIPS_32: + .word foo +# rtdyld-check: *{4}(R_MIPS_32+4) = foo + .4byte foo + + .text + .abicalls + .nan legacy + .text + .set nomicromips + .set nomips16 + .set noreorder + .set nomacro + .set noat + + .align 3 + .globl bar + .type bar,@function +bar: +# rtdyld-check: decode_operand(R_MIPS_26, 0)[27:0] = stub_addr(test_ELF_O32.o, .text, foo)[27:0] +# rtdyld-check: decode_operand(R_MIPS_26, 0)[1:0] = 0 +R_MIPS_26: + j foo + nop + +# rtdyld-check: decode_operand(R_MIPS_HI16, 1)[15:0] = foo[31:16] +R_MIPS_HI16: + lui $1, %hi(foo) + +# rtdyld-check: decode_operand(R_MIPS_LO16, 1)[15:0] = foo[15:0] +R_MIPS_LO16: + lui $1, %lo(foo) + + .size bar, .-bar |

