2 # Check R_MIPS_CALL_HI16 / R_MIPS_CALL_LO16 relocations calculation.
4 # RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t.o
5 # RUN: ld.lld %t.o -shared -o %t.so
6 # RUN: llvm-objdump --no-print-imm-hex -d --no-show-raw-insn %t.so | FileCheck %s
7 # RUN: llvm-readelf -r -s -A %t.so | FileCheck -check-prefix=GOT %s
9 # CHECK: Disassembly of section .text:
12 # CHECK-NEXT: {{.*}}: lui $2, 0
13 # CHECK-NEXT: {{.*}}: lw $2, -32736($2)
14 # CHECK-NEXT: {{.*}}: lui $2, 0
15 # CHECK-NEXT: {{.*}}: lw $2, -32744($2)
16 # CHECK-NEXT: {{.*}}: lui $2, 0
17 # CHECK-NEXT: {{.*}}: lw $2, -32740($2)
19 # GOT: There are no relocations in this file.
21 # GOT: Symbol table '.symtab'
22 # GOT: {{.*}}: [[LOC1:[0-9a-f]+]] {{.*}} loc1
23 # GOT: {{.*}}: [[LOC2:[0-9a-f]+]] {{.*}} loc2
26 # GOT-NEXT: Canonical gp value:
28 # GOT-NEXT: Reserved entries:
29 # GOT-NEXT: Address Access Initial Purpose
30 # GOT-NEXT: {{.*}} -32752(gp) 00000000 Lazy resolver
31 # GOT-NEXT: {{.*}} -32748(gp) 80000000 Module pointer (GNU extension)
33 # GOT-NEXT: Local entries:
34 # GOT-NEXT: Address Access Initial
35 # GOT-NEXT: {{.*}} -32744(gp) [[LOC1]]
36 # GOT-NEXT: {{.*}} -32740(gp) [[LOC2]]
38 # GOT-NEXT: Global entries:
39 # GOT-NEXT: Address Access Initial Sym.Val. Type Ndx Name
40 # GOT-NEXT: {{.*}} -32736(gp) 00000000 00000000 NOTYPE UND bar
46 lw $
2, %call_lo
(bar
)($
2)
47 lui $
2, %call_hi
(loc1
)
48 lw $
2, %call_lo
(loc1
)($
2)
49 lui $
2, %call_hi
(loc2
)
50 lw $
2, %call_lo
(loc2
)($
2)