blob: 87dad02940b98b6a2855263a34440544c5687722 (
plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
## Under some circumstances, GNU tools strip/objcopy change REL to RELA. https://sourceware.org/bugzilla/show_bug.cgi?id=28035
## Test that LLD can handle call graph profile data relocated with RELA relocations.
# REQUIRES: x86
# RUN: yaml2obj %s -o %t.o
# RUN: ld.lld --call-graph-profile-sort=hfsort %t.o -o %t
# RUN: llvm-nm --no-sort %t | FileCheck %s
# RUN: ld.lld --no-call-graph-profile-sort %t.o -o %t
# RUN: llvm-nm --no-sort %t | FileCheck %s --check-prefix=NO-CG
# RUN: yaml2obj -DTYPE=SHT_CREL %s -o %tcrel.o
# RUN: ld.lld --call-graph-profile-sort=hfsort %tcrel.o -o %t
# RUN: llvm-nm --no-sort %t | FileCheck %s
# CHECK: 0000000000201124 t D
# CHECK: 0000000000201122 t C
# CHECK: 0000000000201128 t B
# CHECK: 0000000000201120 t A
# CHECK: 0000000000201126 T _start
# NO-CG: 0000000000201120 t D
# NO-CG: 0000000000201122 t C
# NO-CG: 0000000000201124 t B
# NO-CG: 0000000000201126 t A
# NO-CG: 0000000000201128 T _start
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_X86_64
Sections:
- Name: .text.D
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
Size: 2
- Name: .text.C
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
Size: 2
- Name: .text.B
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
Size: 2
- Name: .text.A
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
Size: 2
- Name: .text._start
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
Size: 2
- Name: .llvm.call-graph-profile
Type: SHT_LLVM_CALL_GRAPH_PROFILE
Flags: [ SHF_EXCLUDE ]
Link: .symtab
AddressAlign: 0x1
Entries:
- Weight: 10
- Weight: 10
- Weight: 80
- Weight: 40
- Weight: 30
- Weight: 90
- Name: .rela.llvm.call-graph-profile
Type: [[TYPE=SHT_RELA]]
Info: .llvm.call-graph-profile
Relocations:
- Offset: 0x0
Symbol: A
Type: R_X86_64_NONE
- Offset: 0x0
Symbol: B
Type: R_X86_64_NONE
- Offset: 0x8
Symbol: A
Type: R_X86_64_NONE
- Offset: 0x8
Symbol: B
Type: R_X86_64_NONE
- Offset: 0x10
Symbol: _start
Type: R_X86_64_NONE
- Offset: 0x10
Symbol: B
Type: R_X86_64_NONE
- Offset: 0x18
Symbol: A
Type: R_X86_64_NONE
- Offset: 0x18
Symbol: C
Type: R_X86_64_NONE
- Offset: 0x20
Symbol: B
Type: R_X86_64_NONE
- Offset: 0x20
Symbol: C
Type: R_X86_64_NONE
- Offset: 0x28
Symbol: C
Type: R_X86_64_NONE
- Offset: 0x28
Symbol: D
Type: R_X86_64_NONE
Symbols:
- Name: D
Type: STT_FUNC
Section: .text.D
- Name: C
Type: STT_FUNC
Section: .text.C
- Name: B
Type: STT_FUNC
Section: .text.B
- Name: A
Type: STT_FUNC
Section: .text.A
- Name: _start
Binding: STB_GLOBAL
Section: .text._start
|