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
   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
# RUN: yaml2obj %s > %t
# RUN: llvm-objcopy --strip-all --keep-file-symbols %t %t2
# RUN: llvm-readobj --symbols %t2 | FileCheck %s --check-prefix=STRIPALL
# RUN: llvm-objcopy --keep-file-symbols --strip-symbol foo %t %t2
# RUN: llvm-readobj --symbols %t2 | FileCheck %s --check-prefix=STRIP

# RUN: llvm-strip --keep-file-symbols %t -o %t3
# RUN: llvm-readobj --symbols %t3 | FileCheck %s --check-prefix=STRIPALL
# RUN: llvm-strip --keep-file-symbols --strip-symbol foo %t -o %t4
# RUN: llvm-readobj --symbols %t4 | FileCheck %s --check-prefix=STRIP

!ELF
FileHeader:
  Class:           ELFCLASS64
  Data:            ELFDATA2LSB
  Type:            ET_REL
  Machine:         EM_X86_64
Sections:
  - Name:            .text
    Type:            SHT_PROGBITS
    Flags:           [ SHF_ALLOC, SHF_EXECINSTR ]
    Address:         0x1000
    AddressAlign:    0x0000000000000010
    Size:            64
Symbols:
  - Name:     foo
    Type:     STT_FILE
    Section:  .text
  - Name:     bar
    Type:     STT_FUNC
    Section:  .text
    Binding:  STB_GLOBAL

#STRIPALL: Symbols [
#STRIPALL-NEXT:  Symbol {
#STRIPALL-NEXT:    Name:
#STRIPALL-NEXT:    Value: 0x0
#STRIPALL-NEXT:    Size: 0
#STRIPALL-NEXT:    Binding: Local
#STRIPALL-NEXT:    Type: None
#STRIPALL-NEXT:    Other: 0
#STRIPALL-NEXT:    Section: Undefined
#STRIPALL-NEXT:  }
#STRIPALL-NEXT:  Symbol {
#STRIPALL-NEXT:    Name: foo
#STRIPALL-NEXT:    Value: 0x0
#STRIPALL-NEXT:    Size: 0
#STRIPALL-NEXT:    Binding: Local
#STRIPALL-NEXT:    Type: File
#STRIPALL-NEXT:    Other: 0
#STRIPALL-NEXT:    Section: .text
#STRIPALL-NEXT:  }
#STRIPALL-NEXT:]

#STRIP: Symbols [
#STRIP-NEXT:  Symbol {
#STRIP-NEXT:    Name:
#STRIP-NEXT:    Value: 0x0
#STRIP-NEXT:    Size: 0
#STRIP-NEXT:    Binding: Local
#STRIP-NEXT:    Type: None
#STRIP-NEXT:    Other: 0
#STRIP-NEXT:    Section: Undefined
#STRIP-NEXT:  }
#STRIP-NEXT:  Symbol {
#STRIP-NEXT:    Name: foo
#STRIP-NEXT:    Value: 0x0
#STRIP-NEXT:    Size: 0
#STRIP-NEXT:    Binding: Local
#STRIP-NEXT:    Type: File
#STRIP-NEXT:    Other: 0
#STRIP-NEXT:    Section: .text
#STRIP-NEXT:  }
#STRIP-NEXT:  Symbol {
#STRIP-NEXT:    Name: bar
#STRIP-NEXT:    Value: 0x0
#STRIP-NEXT:    Size: 0
#STRIP-NEXT:    Binding: Global
#STRIP-NEXT:    Type: Function
#STRIP-NEXT:    Other: 0
#STRIP-NEXT:    Section: .text
#STRIP-NEXT:  }
#STRIP-NEXT:]