reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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
# RUN: yaml2obj %s -o %t
# RUN: llvm-nm --no-sort %t | FileCheck %s

# CHECK:      b mybss_local
# CHECK-NEXT: d mydata_local
# CHECK-NEXT: d mytdata_local
# CHECK-NEXT: B mybss_global
# CHECK-NEXT: D mydata_global
# CHECK-NEXT: D mytdata_global

!ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_EXEC
  Machine: EM_X86_64
Sections:
  - Name: mybss
    Type: SHT_NOBITS
    Flags: [ SHF_ALLOC, SHF_WRITE ]
  - Name: mydata
    Type: SHT_PROGBITS
    Flags: [ SHF_ALLOC, SHF_WRITE ]
  - Name: mytdata
    Type: SHT_PROGBITS
    Flags: [ SHF_ALLOC, SHF_WRITE, SHF_TLS ]
Symbols:
  - Name:    mybss_local
    Section: mybss
  - Name:    mydata_local
    Section: mydata
  - Name:    mytdata_local
    Section: mytdata

  - Name:    mybss_global
    Binding: STB_GLOBAL
    Section: mybss
  - Name:    mydata_global
    Binding: STB_GLOBAL
    Section: mydata
  - Name:    mytdata_global
    Binding: STB_GLOBAL
    Section: mytdata