[InstCombine] Signed saturation patterns
[llvm-core.git] / test / tools / yaml2obj / implicit-sections.test
blobcde17c23287d758c109ce9d5a2e8f9a2969e8d20
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 000040 000009
15 # CHECK-NEXT:  [ 2] .dynsym   DYNSYM   0000000000000150 000049 000030
16 # CHECK-NEXT:  [ 3] .symtab   SYMTAB   0000000000000000 000079 000018
17 # CHECK-NEXT:  [ 4] .strtab   STRTAB   0000000000000000 000091 000001
18 # CHECK-NEXT:  [ 5] .shstrtab STRTAB   0000000000000000 000092 000035
19 # CHECK-NEXT:  [ 6] .text.foo PROGBITS 0000000000000200 0000c7 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 000040 000001
59 # NODYNSYM-NEXT: [ 2] .dynsym   DYNSYM    0000000000000150 000041 000018
60 # NODYNSYM-NEXT: [ 3] .symtab   SYMTAB    0000000000000000 000059 000018
61 # NODYNSYM-NEXT: [ 4] .strtab   STRTAB    0000000000000000 000071 000001
62 # NODYNSYM-NEXT: [ 5] .shstrtab STRTAB    0000000000000000 000072 000035
63 # NODYNSYM-NEXT: [ 6] .text.foo PROGBITS  0000000000000200 0000a7 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
88 ## Check we don't add a symbol table when no "Symbols" key is specified.
90 # RUN: yaml2obj --docnum=3 %s -o %t3
91 # RUN: llvm-readelf -S %t3 | FileCheck /dev/null --implicit-check-not=.symtab
93 --- !ELF
94 FileHeader:
95   Class:   ELFCLASS64
96   Data:    ELFDATA2LSB
97   Type:    ET_DYN
98   Machine: EM_X86_64
100 ## Check we add a symbol table when "Symbols" key is specified.
102 # RUN: yaml2obj --docnum=4 %s -o %t4
103 # RUN: llvm-readelf -S %t4 | FileCheck %s --check-prefix=SYMTAB
105 # SYMTAB: .symtab
107 --- !ELF
108 FileHeader:
109   Class:   ELFCLASS64
110   Data:    ELFDATA2LSB
111   Type:    ET_DYN
112   Machine: EM_X86_64
113 Symbols: []