Recommit "rL366894: [yaml2obj] - Allow custom fields for the SHT_UNDEF sections."
[llvm-complete.git] / test / tools / yaml2obj / implicit-sections.test
blobfef2f1ea4243c7dc1d500e9d4493ee365b05aaef
1 ## Check the section header properties of ".dynsym",
2 ## ".dynstr", ".symtab", ".strtab", ".shstrtab".
3 ## These sections sections are usually added implicitly,
4 ## but here we add them explicitly in YAML and verify.
5 ## We check their order matches YAML and that file offset is
6 ## ascending. This is a natural default behavior.
8 # RUN: yaml2obj --docnum=1 %s -o %t1
9 # RUN: llvm-readelf -S %t1 | FileCheck %s
11 # CHECK:      Section Headers:
12 # CHECK-NEXT:  [Nr] Name      Type     Address          Off    Size
13 # CHECK-NEXT:  [ 0]           NULL     0000000000000000 000000 000000
14 # CHECK-NEXT:  [ 1] .dynstr   STRTAB   0000000000000100 000200 000009
15 # CHECK-NEXT:  [ 2] .dynsym   DYNSYM   0000000000000150 000209 000030
16 # CHECK-NEXT:  [ 3] .symtab   SYMTAB   0000000000000000 000239 000018
17 # CHECK-NEXT:  [ 4] .strtab   STRTAB   0000000000000000 000251 000001
18 # CHECK-NEXT:  [ 5] .shstrtab STRTAB   0000000000000000 000252 000035
19 # CHECK-NEXT:  [ 6] .text.foo PROGBITS 0000000000000200 000287 000000
21 --- !ELF
22 FileHeader:
23   Class:   ELFCLASS64
24   Data:    ELFDATA2LSB
25   Type:    ET_DYN
26   Machine: EM_X86_64
27 Sections:
28   - Name:    .dynstr
29     Type:    SHT_STRTAB
30     Address: 0x100
31   - Name:    .dynsym
32     Type:    SHT_DYNSYM
33     Address: 0x150
34   - Name:    .symtab
35     Type:    SHT_SYMTAB
36   - Name:    .strtab
37     Type:    SHT_STRTAB
38   - Name:    .shstrtab
39     Type:    SHT_STRTAB
40   - Name:    .text.foo
41     Type:    SHT_PROGBITS
42     Address: 0x200
43 ## Symbol is required for the .dynsym to be generated.
44 DynamicSymbols:
45   - Name:    _Z3fooi
46     Binding: STB_GLOBAL
48 ## Check that yaml2obj creates empty .dynstr and .dynsym sections for
49 ## the case when no dynamic symbols were specified and Content wasn't set,
50 ## but the sections were explicitly listed. Check their VAs are correct.
52 # RUN: yaml2obj --docnum=2 %s -o %t2
53 # RUN: llvm-readelf -S %t2 | FileCheck %s --check-prefix=NODYNSYM
55 # NODYNSYM:      Section Headers:
56 # NODYNSYM-NEXT: [Nr] Name      Type      Address          Off    Size
57 # NODYNSYM-NEXT: [ 0]           NULL      0000000000000000 000000 000000
58 # NODYNSYM-NEXT: [ 1] .dynstr   STRTAB    0000000000000100 000200 000001
59 # NODYNSYM-NEXT: [ 2] .dynsym   DYNSYM    0000000000000150 000201 000018
60 # NODYNSYM-NEXT: [ 3] .symtab   SYMTAB    0000000000000000 000219 000018
61 # NODYNSYM-NEXT: [ 4] .strtab   STRTAB    0000000000000000 000231 000001
62 # NODYNSYM-NEXT: [ 5] .shstrtab STRTAB    0000000000000000 000232 000035
63 # NODYNSYM-NEXT: [ 6] .text.foo PROGBITS  0000000000000200 000267 000000
65 --- !ELF
66 FileHeader:
67   Class:   ELFCLASS64
68   Data:    ELFDATA2LSB
69   Type:    ET_DYN
70   Machine: EM_X86_64
71 Sections:
72   - Name:    .dynstr
73     Type:    SHT_STRTAB
74     Address: 0x100
75   - Name:    .dynsym
76     Type:    SHT_DYNSYM
77     Address: 0x150
78   - Name:    .symtab
79     Type:    SHT_SYMTAB
80   - Name:    .strtab
81     Type:    SHT_STRTAB
82   - Name:    .shstrtab
83     Type:    SHT_STRTAB
84   - Name:    .text.foo
85     Type:    SHT_PROGBITS
86     Address: 0x200