summaryrefslogtreecommitdiffstats
path: root/llvm/test/tools/llvm-readobj/ELF/gnu-file-headers.test
blob: 015616e6c8557ae530794f0f4e213441640a1341 (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
122
123
124
125
126
127
128
129
130
131
## In this test we test how llvm-readelf prints file headers.

## Case 1: Test EM_386 object.
# RUN: yaml2obj %s --docnum=1 -o %t1
# RUN: llvm-readelf -h %t1 | FileCheck %s --check-prefix=I386
# RUN: llvm-readelf --file-header %t1 \
# RUN:   | FileCheck %s --strict-whitespace --match-full-lines --check-prefix=I386
# RUN: llvm-readelf --file-headers %t1  \
# RUN:   | FileCheck %s --strict-whitespace --match-full-lines --check-prefix=I386

#      I386:ELF Header:
# I386-NEXT:  Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
# I386-NEXT:  Class:                             ELF32
# I386-NEXT:  Data:                              2's complement, little endian
# I386-NEXT:  Version:                           1 (current)
# I386-NEXT:  OS/ABI:                            UNIX - System V
# I386-NEXT:  ABI Version:                       0
# I386-NEXT:  Type:                              REL (Relocatable file)
# I386-NEXT:  Machine:                           Intel 80386
# I386-NEXT:  Version:                           0x1
# I386-NEXT:  Entry point address:               0x11223344
# I386-NEXT:  Start of program headers:          52 (bytes into file)
# I386-NEXT:  Start of section headers:          112 (bytes into file)
# I386-NEXT:  Flags:                             0x0
# I386-NEXT:  Size of this header:               52 (bytes)
# I386-NEXT:  Size of program headers:           32 (bytes)
# I386-NEXT:  Number of program headers:         1
# I386-NEXT:  Size of section headers:           40 (bytes)
# I386-NEXT:  Number of section headers:         4
# I386-NEXT:  Section header string table index: 3

--- !ELF
FileHeader:
  Class:   ELFCLASS32
  Data:    ELFDATA2LSB
  Type:    ET_REL
  Machine: EM_386
  Entry:   0x11223344
Sections:
  - Name: .foo
    Type: SHT_PROGBITS
ProgramHeaders:
  - Type: PT_LOAD
    Flags: [ PF_R ]

## Case 2: Test EM_X86_64 object.
# RUN: yaml2obj %s --docnum=2 -o %t2
# RUN: llvm-readelf -h %t2 | FileCheck %s --check-prefix=X86-64
# RUN: llvm-readelf --file-header %t2 \
# RUN:   | FileCheck %s --check-prefix=X86-64 --strict-whitespace --match-full-lines
# RUN: llvm-readelf --file-headers %t2 \
# RUN:   | FileCheck %s --check-prefix=X86-64 --strict-whitespace --match-full-lines

#      X86-64:ELF Header:
# X86-64-NEXT:  Magic:   7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00
# X86-64-NEXT:  Class:                             ELF64
# X86-64-NEXT:  Data:                              2's complement, little endian
# X86-64-NEXT:  Version:                           1 (current)
# X86-64-NEXT:  OS/ABI:                            UNIX - System V
# X86-64-NEXT:  ABI Version:                       0
# X86-64-NEXT:  Type:                              REL (Relocatable file)
# X86-64-NEXT:  Machine:                           Advanced Micro Devices X86-64
# X86-64-NEXT:  Version:                           0x1
# X86-64-NEXT:  Entry point address:               0x1122334455667788
# X86-64-NEXT:  Start of program headers:          64 (bytes into file)
# X86-64-NEXT:  Start of section headers:          152 (bytes into file)
# X86-64-NEXT:  Flags:                             0x0
# X86-64-NEXT:  Size of this header:               64 (bytes)
# X86-64-NEXT:  Size of program headers:           56 (bytes)
# X86-64-NEXT:  Number of program headers:         1
# X86-64-NEXT:  Size of section headers:           64 (bytes)
# X86-64-NEXT:  Number of section headers:         4
# X86-64-NEXT:  Section header string table index: 3

--- !ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_REL
  Machine: EM_X86_64
  Entry:   0x1122334455667788
Sections:
  - Name: .foo
    Type: SHT_PROGBITS
ProgramHeaders:
  - Type: PT_LOAD
    Flags: [ PF_R ]

## Case 3: Use an arbitrary machine type that allows to show how we print Flags.
##         Here we use an EM_MIPS object for that.
# RUN: yaml2obj %s --docnum=3 -o %t3
# RUN: llvm-readelf -h %t3 | FileCheck %s --check-prefix=MIPSEL
# RUN: llvm-readelf --file-header %t3 \
# RUN:   | FileCheck %s --check-prefix=MIPSEL --strict-whitespace --match-full-lines
# RUN: llvm-readelf --file-headers %t3 \
# RUN:   | FileCheck %s --check-prefix=MIPSEL --strict-whitespace --match-full-lines

#      MIPSEL:ELF Header:
# MIPSEL-NEXT:  Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
# MIPSEL-NEXT:  Class:                             ELF32
# MIPSEL-NEXT:  Data:                              2's complement, little endian
# MIPSEL-NEXT:  Version:                           1 (current)
# MIPSEL-NEXT:  OS/ABI:                            UNIX - System V
# MIPSEL-NEXT:  ABI Version:                       0
# MIPSEL-NEXT:  Type:                              REL (Relocatable file)
# MIPSEL-NEXT:  Machine:                           MIPS R3000
# MIPSEL-NEXT:  Version:                           0x1
# MIPSEL-NEXT:  Entry point address:               0x0
# MIPSEL-NEXT:  Start of program headers:          52 (bytes into file)
# MIPSEL-NEXT:  Start of section headers:          112 (bytes into file)
# MIPSEL-NEXT:  Flags:                             0x50001000, o32, mips32
# MIPSEL-NEXT:  Size of this header:               52 (bytes)
# MIPSEL-NEXT:  Size of program headers:           32 (bytes)
# MIPSEL-NEXT:  Number of program headers:         1
# MIPSEL-NEXT:  Size of section headers:           40 (bytes)
# MIPSEL-NEXT:  Number of section headers:         4
# MIPSEL-NEXT:  Section header string table index: 3

--- !ELF
FileHeader:
  Class:   ELFCLASS32
  Data:    ELFDATA2LSB
  Type:    ET_REL
  Machine: EM_MIPS
  Flags:   [ EF_MIPS_ARCH_32, EF_MIPS_ABI_O32 ]
Sections:
  - Name: .foo
    Type: SHT_PROGBITS
ProgramHeaders:
  - Type: PT_LOAD
    Flags: [ PF_R ]
OpenPOWER on IntegriCloud