[yaml2obj][obj2yaml] - Do not create a symbol table by default.
[llvm-complete.git] / test / tools / yaml2obj / elf-sht-symtab-shndx.yaml
blob612087a305c859d6578045674728c32ffc0c1a52
1 ## Check that yaml2obj is able to produce output
2 ## when a symbol with section index SHN_XINDEX is used,
3 ## but no SHT_SYMTAB_SHNDX section is defined.
5 # RUN: yaml2obj --docnum=1 %s -o %t1
6 # RUN: not llvm-readobj --symbols 2>&1 %t1 | FileCheck -DFILE=%t1 %s --check-prefix=CASE1
8 # CASE1: error: '[[FILE]]': extended symbol index (1) is past the end of the SHT_SYMTAB_SHNDX section of size 0
10 --- !ELF
11 FileHeader:
12   Class:   ELFCLASS64
13   Data:    ELFDATA2LSB
14   Type:    ET_REL
15   Machine: EM_X86_64
16 Sections:
17   - Name: bar
18     Type: SHT_PROGBITS
19 Symbols:
20   - Type:  STT_SECTION
21     Index: SHN_XINDEX
23 ## Check that yaml2obj keeps the SHT_SYMTAB_SHNDX section in the output
24 ## even when symbol's section index value is low enough to not require the extended symtab. 
25 ## Also, check that symbols in .symtab still have the SHN_XINDEX index.
27 # RUN: yaml2obj --docnum=2 %s -o %t2
28 # RUN: llvm-readobj --sections --symbols --section-data 2>&1 %t2 | FileCheck %s --check-prefix=CASE2
30 # CASE2:      Section {
31 # CASE2:       Name: .symtab_shndx (1)
32 # CASE2-NEXT:  Type: SHT_SYMTAB_SHNDX (0x12)
34 # CASE2:      Name: .symtab
35 # CASE2:      SectionData (
36 # CASE2-NEXT:   0000: 00000000 00000000 00000000 00000000
37 # CASE2-NEXT:   0010: 00000000 00000000 00000000 0300FFFF
38 ##                                                   ^-- 0xFFFF here is a SHN_XINDEX.
39 # CASE2-NEXT:   0020: 00000000 00000000 00000000 00000000
40 # CASE2-NEXT: )
42 # CASE2:      Symbol {
43 # CASE2:        Name: bar (0)
44 # CASE2-NEXT:   Value: 0x0
45 # CASE2-NEXT:   Size: 0
46 # CASE2-NEXT:   Binding: Local (0x0)
47 # CASE2-NEXT:   Type: Section (0x3)
48 # CASE2-NEXT:   Other: 0
49 # CASE2-NEXT:   Section: bar (0x1)
50 # CASE2-NEXT: }
52 --- !ELF
53 FileHeader:
54   Class:   ELFCLASS64
55   Data:    ELFDATA2LSB
56   Type:    ET_REL
57   Machine: EM_X86_64
58 Sections:
59   - Name: bar
60     Type: SHT_PROGBITS
61   - Name:    .symtab_shndx
62     Type:    SHT_SYMTAB_SHNDX
63     Entries: [ 0, 1 ]
64     Link:    .symtab
65 Symbols:
66   - Type:  STT_SECTION
67     Index: SHN_XINDEX
69 ## Check that yaml2obj allows producing broken SHT_SYMTAB_SHNDX section
70 ## content (in the case below it contains 0xff as an index of a section,
71 ## which is larger than the total number of sections in the file).
73 # RUN: yaml2obj --docnum=3 %s -o %t3
74 # RUN: not llvm-readobj --symbols 2>&1 %t3 | FileCheck %s -DFILE=%t3 --check-prefix=CASE3
76 # CASE3: error: '[[FILE]]': invalid section index: 255
78 --- !ELF
79 FileHeader:
80   Class:   ELFCLASS64
81   Data:    ELFDATA2LSB
82   Type:    ET_REL
83   Machine: EM_X86_64
84 Sections:
85   - Name: bar
86     Type: SHT_PROGBITS
87   - Name:    .symtab_shndx
88     Type:    SHT_SYMTAB_SHNDX
89     Entries: [ 0, 255 ]
90     Link:    .symtab
91 Symbols:
92   - Type:  STT_SECTION
93     Index: SHN_XINDEX
95 ## Check that yaml2obj reports an error if a symbol index does not fit into 2 bytes.
97 # RUN: not yaml2obj --docnum=4 %s -o %t4 2>&1 | FileCheck %s --check-prefix=CASE4
99 # CASE4: error: out of range hex16 number
101 --- !ELF
102 FileHeader:
103   Class:   ELFCLASS64
104   Data:    ELFDATA2LSB
105   Type:    ET_REL
106   Machine: EM_X86_64
107 Symbols:
108   - Type:  STT_SECTION
109     Index: 65536
111 ## Check we can set a custom sh_entsize for SHT_SYMTAB_SHNDX section.
113 # RUN: yaml2obj --docnum=5 %s -o %t5
114 # RUN: not llvm-readelf -S 2>&1 %t5 | FileCheck %s -DFILE=%t5 --check-prefix=CASE5
116 # CASE5: error: '[[FILE]]': section [index 1] has an invalid sh_entsize: 2
118 --- !ELF
119 FileHeader:
120   Class:   ELFCLASS64
121   Data:    ELFDATA2LSB
122   Type:    ET_REL
123   Machine: EM_X86_64
124 Sections:
125   - Name:    .symtab_shndx
126     Type:    SHT_SYMTAB_SHNDX
127     Entries: [ 0 ]
128     EntSize: 2