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
  103
  104
  105
  106
  107
  108
  109
  110
  111
  112
  113
  114
  115
  116
  117
  118
  119
  120
  121
  122
  123
  124
  125
  126
  127
  128
  129
  130
  131
  132
  133
  134
  135
  136
  137
  138
  139
  140
  141
  142
  143
  144
  145
  146
  147
  148
  149
  150
  151
  152
  153
  154
  155
## Test various details of llvm-objdump -h (--section-headers).

## Check leading and trailing whitespace for full lines.

# RUN: yaml2obj %s --docnum=1 -o %t-whitespace.o
# RUN: llvm-objdump -h --show-lma %t-whitespace.o \
# RUN:   | FileCheck %s --check-prefix=WHITESPACE --strict-whitespace
# RUN: llvm-objdump -h %t-whitespace.o \
# RUN:   | FileCheck %s --check-prefix=WHITESPACE-NO-LMA --strict-whitespace

# WHITESPACE:      {{^}}Sections:{{$}}
# WHITESPACE-NEXT: {{^}}Idx Name          Size     VMA              LMA              Type{{$}}
# WHITESPACE-NEXT: {{^}}  0               00000000 0000000000000000 0000000000000000 {{$}}
# WHITESPACE-NEXT: {{^}}  1 .text         00000000 0000000000000000 0000000000000000 TEXT{{$}}
# WHITESPACE-NEXT: {{^}}  2 .data         00000000 0000000000000000 0000000000000000 DATA{{$}}
# WHITESPACE-NEXT: {{^}}  3 .bss          00000000 0000000000000000 0000000000000000 BSS{{$}}
# WHITESPACE-NEXT: {{^}}  4 .other        00000000 0000000000000000 0000000000000000 {{$}}

# WHITESPACE-NO-LMA:      {{^}}Sections:{{$}}
# WHITESPACE-NO-LMA-NEXT: {{^}}Idx Name          Size     VMA              Type{{$}}
# WHITESPACE-NO-LMA-NEXT: {{^}}  0               00000000 0000000000000000 {{$}}
# WHITESPACE-NO-LMA-NEXT: {{^}}  1 .text         00000000 0000000000000000 TEXT{{$}}
# WHITESPACE-NO-LMA-NEXT: {{^}}  2 .data         00000000 0000000000000000 DATA{{$}}
# WHITESPACE-NO-LMA-NEXT: {{^}}  3 .bss          00000000 0000000000000000 BSS{{$}}
# WHITESPACE-NO-LMA-NEXT: {{^}}  4 .other        00000000 0000000000000000 {{$}}

--- !ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_EXEC
  Machine: EM_X86_64
Sections:
  - Name:  .text
    Type:  SHT_PROGBITS
    Flags: [SHF_ALLOC, SHF_EXECINSTR]
  - Name:  .data
    Type:  SHT_PROGBITS
    Flags: [SHF_ALLOC, SHF_WRITE]
  - Name:  .bss
    Type:  SHT_NOBITS
    Flags: [SHF_ALLOC, SHF_WRITE]
  - Name:  .other
    Type:  SHT_REL

## The name field automatically expands past the default 13 columns when a
## section name is longer than that.
## Note: check with and without --show-lma to make sure resizing happens in
## both cases.

# RUN: yaml2obj %s --docnum=2 -o %t-name13chars.o
# RUN: llvm-objdump -h --show-lma %t-name13chars.o \
# RUN:   | FileCheck %s --check-prefix=NAME-13 --strict-whitespace
# RUN: llvm-objdump -h %t-name13chars.o \
# RUN:   | FileCheck %s --check-prefix=NAME-13 --strict-whitespace

# NAME-13:      Sections:
# NAME-13-NEXT: {{^}}Idx Name          Size
# NAME-13-NEXT: {{^}}  0               00000000
# NAME-13-NEXT: {{^}}  1 .foo          00000000
# NAME-13-NEXT: {{^}}  2 .thirteenchar 00000000
# NAME-13-NEXT: {{^}}  3 .bar          00000000

## Including a section with a name of length 14 expands the width of the "Name"
## column.
# RUN: yaml2obj %s --docnum=3 -o %t-name14chars.o
# RUN: llvm-objdump -h --show-lma %t-name14chars.o \
# RUN:   | FileCheck %s --check-prefix=NAME-14 --strict-whitespace
# RUN: llvm-objdump -h %t-name14chars.o \
# RUN:   | FileCheck %s --check-prefix=NAME-14 --strict-whitespace

# NAME-14:      Sections:
# NAME-14-NEXT: {{^}}Idx Name           Size
# NAME-14-NEXT: {{^}}  0                00000000
# NAME-14-NEXT: {{^}}  1 .foo           00000000
# NAME-14-NEXT: {{^}}  2 .fourteenchars 00000000
# NAME-14-NEXT: {{^}}  3 .bar           00000000

--- !ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_EXEC
  Machine: EM_X86_64
Sections:
  - Name: .foo
    Type: SHT_PROGBITS
  - Name: .thirteenchar
    Type: SHT_PROGBITS
  - Name: .bar
    Type: SHT_PROGBITS

--- !ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_EXEC
  Machine: EM_X86_64
Sections:
  - Name: .foo
    Type: SHT_PROGBITS
  - Name: .fourteenchars
    Type: SHT_PROGBITS
  - Name: .bar
    Type: SHT_PROGBITS

## Check that objdump -h only prints the necessary amount of bytes for
## addresses.

# RUN: yaml2obj %s --docnum=4 -o %t-32bit.o
# RUN: yaml2obj %s --docnum=5 -o %t-64bit.o

# RUN: llvm-objdump -h --show-lma %t-32bit.o \
# RUN:   | FileCheck %s --check-prefix=32 --strict-whitespace
# 32: {{^}}Idx Name          Size     VMA      LMA      Type{{$}}
# 32: {{^}}  1 .foo          00000000 00000400 00000400 TEXT{{$}}

# RUN: llvm-objdump -h %t-32bit.o \
# RUN:   | FileCheck %s --check-prefix=32-NO-LMA --strict-whitespace
# 32-NO-LMA: {{^}}Idx Name          Size     VMA      Type{{$}}
# 32-NO-LMA: {{^}}  1 .foo          00000000 00000400 TEXT{{$}}

# RUN: llvm-objdump -h --show-lma %t-64bit.o \
# RUN:   | FileCheck %s --check-prefix=64 --strict-whitespace
# 64: {{^}}Idx Name          Size     VMA              LMA              Type{{$}}
# 64: {{^}}  1 .foo          00000000 0000000000000400 0000000000000400 TEXT{{$}}

# RUN: llvm-objdump -h %t-64bit.o \
# RUN:   | FileCheck %s --check-prefix=64-NO-LMA --strict-whitespace
# 64-NO-LMA: {{^}}Idx Name          Size     VMA              Type{{$}}
# 64-NO-LMA: {{^}}  1 .foo          00000000 0000000000000400 TEXT{{$}}

--- !ELF
FileHeader:
  Class:   ELFCLASS32
  Data:    ELFDATA2LSB
  Type:    ET_EXEC
  Machine: EM_386
Sections:
  - Name:    .foo
    Type:    SHT_PROGBITS
    Flags:   [SHF_ALLOC, SHF_EXECINSTR]
    Address: 0x400

--- !ELF
FileHeader:
  Class:   ELFCLASS64
  Data:    ELFDATA2LSB
  Type:    ET_EXEC
  Machine: EM_X86_64
Sections:
  - Name:    .foo
    Type:    SHT_PROGBITS
    Flags:   [SHF_ALLOC, SHF_EXECINSTR]
    Address: 0x400