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
   84
   85
   86
   87
   88
   89
   90
   91
   92
   93
   94
   95
   96
   97
   98
   99
  100
  101
  102
# RUN: yaml2obj %s > %t
# RUN: llvm-objcopy -R .test2 -R .test3 -R .test5 %t %t2
# RUN: llvm-readobj --sections %t2 | FileCheck %s

!ELF
FileHeader:
  Class:           ELFCLASS64
  Data:            ELFDATA2LSB
  Type:            ET_EXEC
  Machine:         EM_X86_64
Sections:
  - Name:            .test1
    Type:            SHT_PROGBITS
    Flags:           [ ]
  - Name:            .test2
    Type:            SHT_PROGBITS
    Flags:           [ ]
  - Name:            .test3
    Type:            SHT_PROGBITS
    Flags:           [ ]
  - Name:            .test4
    Type:            SHT_PROGBITS
    Flags:           [ ]
  - Name:            .test5
    Type:            SHT_PROGBITS
    Flags:           [ ]
  - Name:            .test6
    Type:            SHT_PROGBITS
    Flags:           [ ]

# CHECK: Sections [
# CHECK:   Section {
# CHECK:     Index: 0
# CHECK:     Name:  (0)
# CHECK:     Type: SHT_NULL (0x0)
# CHECK:     Flags [ (0x0)
# CHECK:     ]
# CHECK:     Address: 0x0
# CHECK:     Offset:
# CHECK:     Size:
# CHECK:     Link: 0
# CHECK:     Info: 0
# CHECK:     AddressAlignment: 0
# CHECK:     EntrySize: 0
# CHECK:   }
# CHECK:   Section {
# CHECK:     Index: 1
# CHECK:     Name: .test1
# CHECK:     Type: SHT_PROGBITS (0x1)
# CHECK:     Flags [ (0x0)
# CHECK:     ]
# CHECK:     Address: 0x0
# CHECK:     Offset:
# CHECK:     Size:
# CHECK:     Link: 0
# CHECK:     Info: 0
# CHECK:     AddressAlignment: 0
# CHECK:     EntrySize: 0
# CHECK:   }
# CHECK:   Section {
# CHECK:     Index: 2
# CHECK:     Name: .test4
# CHECK:     Type: SHT_PROGBITS (0x1)
# CHECK:     Flags [ (0x0)
# CHECK:     ]
# CHECK:     Address: 0x0
# CHECK:     Offset:
# CHECK:     Size:
# CHECK:     Link: 0
# CHECK:     Info: 0
# CHECK:     AddressAlignment: 0
# CHECK:     EntrySize: 0
# CHECK:   }
# CHECK:   Section {
# CHECK:     Index: 3
# CHECK:     Name: .test6
# CHECK:     Type: SHT_PROGBITS (0x1)
# CHECK:     Flags [ (0x0)
# CHECK:     ]
# CHECK:     Address: 0x0
# CHECK:     Offset:
# CHECK:     Size:
# CHECK:     Link: 0
# CHECK:     Info: 0
# CHECK:     AddressAlignment: 0
# CHECK:     EntrySize: 0
# CHECK:   }
# CHECK:   Section {
# CHECK:     Index: 4
# CHECK:     Name: .shstrtab
# CHECK:     Type: SHT_STRTAB (0x3)
# CHECK:     Flags [ (0x0)
# CHECK:     ]
# CHECK:     Address: 0x0
# CHECK:     Offset:
# CHECK:     Size:
# CHECK:     Link: 0
# CHECK:     Info: 0
# CHECK:     AddressAlignment: 1
# CHECK:     EntrySize: 0
# CHECK:   }
# CHECK: ]