diff options
| author | Jack Carter <jcarter@mips.com> | 2012-11-21 23:38:59 +0000 |
|---|---|---|
| committer | Jack Carter <jcarter@mips.com> | 2012-11-21 23:38:59 +0000 |
| commit | b05cb67b81550c31ac7af441b5aabfc88d3576ea (patch) | |
| tree | c729276503a4ac2e8c87e577bc5e71299fa522e0 /llvm/test | |
| parent | 2fef6b6a1eb99cd75846a8ef22c9e0b36b3806c7 (diff) | |
| download | bcm5719-llvm-b05cb67b81550c31ac7af441b5aabfc88d3576ea.tar.gz bcm5719-llvm-b05cb67b81550c31ac7af441b5aabfc88d3576ea.zip | |
Mips direct object xgot support
This patch provides support for the MIPS relocations:
*) R_MIPS_GOT_HI16
*) R_MIPS_GOT_LO16
*) R_MIPS_CALL_HI16
*) R_MIPS_CALL_LO16
These are used for large GOT instruction sequences.
Contributer: Jack Carter
llvm-svn: 168471
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/MC/Mips/xgot.ll | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/llvm/test/MC/Mips/xgot.ll b/llvm/test/MC/Mips/xgot.ll new file mode 100644 index 00000000000..bfe9b9ad660 --- /dev/null +++ b/llvm/test/MC/Mips/xgot.ll @@ -0,0 +1,42 @@ +; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mxgot %s -o - | elf-dump --dump-section-data | FileCheck %s + +@.str = private unnamed_addr constant [16 x i8] c"ext_1=%d, i=%d\0A\00", align 1 +@ext_1 = external global i32 + +define void @fill() nounwind { +entry: + +; Check that the appropriate relocations were created. +; For the xgot case we want to see R_MIPS_[GOT|CALL]_[HI|LO]16. + +; R_MIPS_HI16 +; CHECK: ('r_type', 0x05) + +; R_MIPS_LO16 +; CHECK: ('r_type', 0x06) + +; R_MIPS_GOT_HI16 +; CHECK: ('r_type', 0x16) + +; R_MIPS_GOT_LO16 +; CHECK: ('r_type', 0x17) + +; R_MIPS_GOT +; CHECK: ('r_type', 0x09) + +; R_MIPS_LO16 +; CHECK: ('r_type', 0x06) + +; R_MIPS_CALL_HI16 +; CHECK: ('r_type', 0x1e) + +; R_MIPS_CALL_LO16 +; CHECK: ('r_type', 0x1f) + + %0 = load i32* @ext_1, align 4 + %call = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([16 x i8]* @.str, i32 0, i32 0), i32 %0) nounwind + ret void +} + +declare i32 @printf(i8* nocapture, ...) nounwind + |

