FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
llvm/test/Object/relocation-executable.test at master · unison-code/llvm · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
unison-code
/
llvm
Public
forked from
llvm-mirror/llvm
Notifications
You must be signed in to change notification settings
Fork
2
Star
6
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
llvm
/
test
/
Object
/
relocation-executable.test
Copy path
More file actions
More file actions
Latest commit
History
History
History
61 lines (57 loc) · 1.94 KB
Breadcrumbs
llvm
/
test
/
Object
/
relocation-executable.test
Copy path
File metadata and controls
61 lines (57 loc) · 1.94 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
RUN: llvm-readobj -r -expand-relocs %p/Inputs/hello-world.elf-x86-64 \
RUN: | FileCheck %s
RUN: llvm-readobj -dyn-relocations -expand-relocs \
RUN: %p/Inputs/hello-world.elf-x86-64 | FileCheck %s --check-prefix=DYN
// CHECK: Relocations [
// CHECK-NEXT: Section (8) .rela.dyn {
// CHECK-NEXT: Relocation {
// CHECK-NEXT: Offset: 0x4018D8
// CHECK-NEXT: Type: R_X86_64_GLOB_DAT (6)
// CHECK-NEXT: Symbol: __gmon_start__
// CHECK-NEXT: Addend: 0x0
// CHECK-NEXT: }
// CHECK-NEXT: }
// CHECK-NEXT: Section (9) .rela.plt {
// CHECK-NEXT: Relocation {
// CHECK-NEXT: Offset: 0x4018F8
// CHECK-NEXT: Type: R_X86_64_JUMP_SLOT (7)
// CHECK-NEXT: Symbol: __libc_start_main
// CHECK-NEXT: Addend: 0x0
// CHECK-NEXT: }
// CHECK-NEXT: Relocation {
// CHECK-NEXT: Offset: 0x401900
// CHECK-NEXT: Type: R_X86_64_JUMP_SLOT (7)
// CHECK-NEXT: Symbol: puts
// CHECK-NEXT: Addend: 0x0
// CHECK-NEXT: }
// CHECK-NEXT: }
// DYN: Dynamic Relocations {
// DYN-NEXT: Relocation {
// DYN-NEXT: Offset: 0x4018D8
// DYN-NEXT: Type: R_X86_64_GLOB_DAT (6)
// DYN-NEXT: Symbol: __gmon_start__
// DYN-NEXT: Addend: 0x0
// DYN-NEXT: }
// DYN-NEXT: Relocation {
// DYN-NEXT: Offset: 0x4018F8
// DYN-NEXT: Type: R_X86_64_JUMP_SLOT (7)
// DYN-NEXT: Symbol: __libc_start_main
// DYN-NEXT: Addend: 0x0
// DYN-NEXT: }
// DYN-NEXT: Relocation {
// DYN-NEXT: Offset: 0x401900
// DYN-NEXT: Type: R_X86_64_JUMP_SLOT (7)
// DYN-NEXT: Symbol: puts
// DYN-NEXT: Addend: 0x0
// DYN-NEXT: }
// DYN-NEXT: }
RUN: llvm-readobj -dyn-relocations -expand-relocs \
RUN: %p/Inputs/rel-no-sec-table.elf-x86-64 | FileCheck %s --check-prefix=DYN2
// DYN2: Dynamic Relocations {
// DYN2-NEXT: Relocation {
// DYN2-NEXT: Offset: 0x12F0
// DYN2-NEXT: Type: R_X86_64_GLOB_DAT (6)
// DYN2-NEXT: Symbol: g
// DYN2-NEXT: Addend: 0x0
// DYN2-NEXT: }
// DYN2-NEXT: }
Back
|
FazBrowse Home
|
New Git URL