aboutsummaryrefslogtreecommitdiff
path: root/test/ELF/gnu-ifunc-plt.s
blob: cf46380d3894516a600be69bc800ee158a7137ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %S/Inputs/shared2-x86-64.s -o %t1.o
// RUN: ld.lld %t1.o --shared -o %t.so
// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
// RUN: ld.lld %t.so %t.o -o %tout
// RUN: llvm-objdump -d %tout | FileCheck %s --check-prefix=DISASM
// RUN: llvm-objdump -s %tout | FileCheck %s --check-prefix=GOTPLT
// RUN: llvm-readobj -r -dynamic-table %tout | FileCheck %s
// REQUIRES: x86

// Check that the IRELATIVE relocations are after the JUMP_SLOT in the plt
// CHECK: Relocations [
// CHECK-NEXT:   Section (4) .rela.plt {
// CHECK-NEXT:     0x202018 R_X86_64_JUMP_SLOT bar2 0x0
// CHECK-NEXT:     0x202020 R_X86_64_JUMP_SLOT zed2 0x0
// CHECK-NEXT:     0x202028 R_X86_64_IRELATIVE - 0x201000
// CHECK-NEXT:     0x202030 R_X86_64_IRELATIVE - 0x201001

// Check that .got.plt entries point back to PLT header
// GOTPLT: Contents of section .got.plt:
// GOTPLT-NEXT:  202000 00302000 00000000 00000000 00000000
// GOTPLT-NEXT:  202010 00000000 00000000 36102000 00000000
// GOTPLT-NEXT:  202020 46102000 00000000 56102000 00000000
// GOTPLT-NEXT:  202030 66102000 00000000

// Check that the PLTRELSZ tag includes the IRELATIVE relocations
// CHECK: DynamicSection [
// CHECK:   0x0000000000000002 PLTRELSZ             96 (bytes)

// Check that a PLT header is written and the ifunc entries appear last
// DISASM: Disassembly of section .text:
// DISASM-NEXT: foo:
// DISASM-NEXT:   201000:       c3      retq
// DISASM:      bar:
// DISASM-NEXT:   201001:       c3      retq
// DISASM:      _start:
// DISASM-NEXT:   201002:       e8 49 00 00 00          callq   73
// DISASM-NEXT:   201007:       e8 54 00 00 00          callq   84
// DISASM-NEXT:   20100c:       e8 1f 00 00 00          callq   31
// DISASM-NEXT:   201011:       e8 2a 00 00 00          callq   42
// DISASM-NEXT: Disassembly of section .plt:
// DISASM-NEXT: .plt:
// DISASM-NEXT:   201020:       ff 35 e2 0f 00 00       pushq   4066(%rip)
// DISASM-NEXT:   201026:       ff 25 e4 0f 00 00       jmpq    *4068(%rip)
// DISASM-NEXT:   20102c:       0f 1f 40 00     nopl    (%rax)
// DISASM-NEXT:   201030:       ff 25 e2 0f 00 00       jmpq    *4066(%rip)
// DISASM-NEXT:   201036:       68 00 00 00 00          pushq   $0
// DISASM-NEXT:   20103b:       e9 e0 ff ff ff          jmp     -32 <.plt>
// DISASM-NEXT:   201040:       ff 25 da 0f 00 00       jmpq    *4058(%rip)
// DISASM-NEXT:   201046:       68 01 00 00 00          pushq   $1
// DISASM-NEXT:   20104b:       e9 d0 ff ff ff          jmp     -48 <.plt>
// DISASM-NEXT:   201050:       ff 25 d2 0f 00 00       jmpq    *4050(%rip)
// DISASM-NEXT:   201056:       68 00 00 00 00          pushq   $0
// DISASM-NEXT:   20105b:       e9 e0 ff ff ff          jmp     -32 <.plt+0x20>
// DISASM-NEXT:   201060:       ff 25 ca 0f 00 00       jmpq    *4042(%rip)
// DISASM-NEXT:   201066:       68 01 00 00 00          pushq   $1
// DISASM-NEXT:   20106b:       e9 d0 ff ff ff          jmp     -48 <.plt+0x20>

.text
.type foo STT_GNU_IFUNC
.globl foo
foo:
 ret

.type bar STT_GNU_IFUNC
.globl bar
bar:
 ret

.globl _start
_start:
 call foo
 call bar
 call bar2
 call zed2