File: symtab-file2.yaml

package info (click to toggle)
llvm-toolchain-15 1%3A15.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,554,644 kB
  • sloc: cpp: 5,922,452; ansic: 1,012,136; asm: 674,362; python: 191,568; objc: 73,855; f90: 42,327; lisp: 31,913; pascal: 11,973; javascript: 10,144; sh: 9,421; perl: 7,447; ml: 5,527; awk: 3,523; makefile: 2,520; xml: 885; cs: 573; fortran: 567
file content (75 lines) | stat: -rw-r--r-- 1,885 bytes parent folder | download | duplicates (7)
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
# 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: llvm-symbolizer --obj=%t2 0 0 2>&1 | FileCheck %s --check-prefix=CHECK2

# CHECK2:      error reading file: st_name (0xffff) is past the end of the string table of size
# CHECK2-NEXT: ??
# CHECK2-NEXT: ??:0:0
# CHECK2-EMPTY:
# CHECK2-NEXT: ??
# CHECK2-NEXT: ??:0:0

--- !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