50 lines · plain
1# REQUIRES: mips2# Check R_MIPS_GOT_HI16 / R_MIPS_GOT_LO16 relocations calculation.3 4# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t.o5# RUN: ld.lld %t.o -shared -o %t.so6# RUN: llvm-objdump --no-print-imm-hex -d --no-show-raw-insn %t.so | FileCheck %s7# RUN: llvm-readelf -r -s -A %t.so | FileCheck -check-prefix=GOT %s8 9# CHECK: Disassembly of section .text:10# CHECK-EMPTY:11# CHECK-NEXT: <foo>:12# CHECK-NEXT: {{.*}}: lui $2, 013# CHECK-NEXT: {{.*}}: lw $2, -32736($2)14# CHECK-NEXT: {{.*}}: lui $2, 015# CHECK-NEXT: {{.*}}: lw $2, -32744($2)16# CHECK-NEXT: {{.*}}: lui $2, 017# CHECK-NEXT: {{.*}}: lw $2, -32740($2)18 19# GOT: There are no relocations in this file20 21# GOT: Symbol table '.symtab'22# GOT: {{.*}}: [[LOC1:[0-9a-f]+]] {{.*}} loc123# GOT: {{.*}}: [[LOC2:[0-9a-f]+]] {{.*}} loc224 25# GOT: Primary GOT:26# GOT: Local entries:27# GOT-NEXT: Address Access Initial28# GOT-NEXT: {{.*}} -32744(gp) [[LOC1]]29# GOT-NEXT: {{.*}} -32740(gp) [[LOC2]]30# GOT-EMPTY:31# GOT-NEXT: Global entries:32# GOT-NEXT: Address Access Initial Sym.Val. Type Ndx Name33# GOT-NEXT: {{.*}} -32736(gp) 00000000 00000000 NOTYPE UND bar34 35 .text36 .global foo37foo:38 lui $2, %got_hi(bar)39 lw $2, %got_lo(bar)($2)40 lui $2, %got_hi(loc1)41 lw $2, %got_lo(loc1)($2)42 lui $2, %got_hi(loc2)43 lw $2, %got_lo(loc2)($2)44 45 .data46loc1:47 .word 048loc2:49 .word 050