File: symtab-file2.yaml

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (106 lines) | stat: -rw-r--r-- 2,564 bytes parent folder | download | duplicates (10)
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
# RUN: yaml2obj --docnum=1 %s -o %t1
# RUN: llvm-symbolizer --obj=%t1 0 1 2 | FileCheck %s

## The local symbol has no preceding STT_FILE. Its filename is unavailable.
# CHECK:       local
# CHECK-NEXT:  ??:0:0
# CHECK-EMPTY:

## All local symbols precede all non-local symbols. When there are multiple
## STT_FILE symbols, we cannot tell which file defines the non-local symbol in
## question. We could tell if there is only one STT_FILE but in reality there
## are always more than one file, so implementing the special case is not useful.
# CHECK-NEXT:  global
# CHECK-NEXT:  ??:0:0
# CHECK-EMPTY:
# CHECK-NEXT:  weak
# CHECK-NEXT:  ??:0:0
# CHECK-EMPTY:

--- !ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_DYN
  Machine: EM_X86_64
Sections:
  - Name:  .text
    Type:  SHT_PROGBITS
    Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
    Size:  3
Symbols:
  - Name:    local
    Section: .text
    Value:   0
  - Name:    1.c
    Type:    STT_FILE
    Index:   SHN_ABS
  - Name:    global
    Binding: STB_GLOBAL
    Section: .text
    Value:   1
  - Name:    weak
    Binding: STB_WEAK
    Section: .text
    Value:   2

## If st_name of the STT_FILE symbols is invalid, the symbol name is lost as well.
## TODO Keep the symbol name.
# RUN: yaml2obj --docnum=2 %s -o %t2
# RUN: not llvm-symbolizer --obj=%t2 0 0 2>&1 | FileCheck %s --check-prefix=CHECK2

# CHECK2:      llvm-symbolizer{{.*}}: error: '{{.*}}symtab-file2.yaml.tmp2': st_name (0xffff) is past the end of the string table of size

--- !ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_DYN
  Machine: EM_X86_64
Sections:
  - Name:  .text
    Type:  SHT_PROGBITS
    Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
    Size:  1
Symbols:
  - StName:  0xffff
    Type:    STT_FILE
    Index:   SHN_ABS
  - Name:    local
    Section: .text

# RUN: yaml2obj --docnum=3 %s -o %t3
# RUN: llvm-symbolizer --obj=%t3 'DATA 0x1001' 2>&1 | FileCheck %s --check-prefix=CHECK3

# CHECK3:      code
# CHECK3-NEXT: 4096 2
# CHECK3-NEXT: ??:?
# CHECK3-EMPTY:

--- !ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_DYN
  Machine: EM_X86_64
Sections:
  - Name:    .text
    Type:    SHT_PROGBITS
    Flags:   [ SHF_ALLOC, SHF_EXECINSTR ]
    Address: 0x1000
    Size:    1
  - Name:    .debug
    Type:    SHT_PROGBITS
    Address: 0x0000
    Size:    0xFFFF
Symbols:
  - Name:    debug
    Section: .debug
    Binding: STB_WEAK
    Value:   0x1001
    Size:    0
  - Name:    code
    Section: .text
    Binding: STB_WEAK
    Value:   0x1000
    Size:    2