1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00
llvm-mirror/test/tools/yaml2obj/ELF/header-sh-fields.yaml
Georgii Rymar f954f43df3 [yaml2obj] - ProgramHeaders: introduce FirstSec/LastSec instead of Sections list.
Imagine we have a YAML declaration of few sections: `foo1`, `<unnamed 2>`, `foo3`, `foo4`.

To put them into segment we can do (1*):

```
Sections:
 - Section: foo1
 - Section: foo4
```

or we can use (2*):

```
Sections:
 - Section: foo1
 - Section: foo3
 - Section: foo4
```

or (3*) :

```
Sections:
 - Section: foo1
## "(index 2)" here is a name that we automatically created for a unnamed section.
 - Section: (index 2)
 - Section: foo3
 - Section: foo4
```

It looks really confusing that we don't have to list all of sections.

At first I've tried to make this rule stricter and report an error when there is a gap
(i.e. when a section is included into segment, but not listed explicitly).
This did not work perfect, because such approach conflicts with unnamed sections/fills (see (3*)).

This patch drops "Sections" key and introduces 2 keys instead: `FirstSec` and `LastSec`.
Both are optional.

Differential revision: https://reviews.llvm.org/D90458
2020-11-09 13:00:50 +03:00

94 lines
3.0 KiB
YAML

## In this test case we check that we can override the default values for
## ELF header fields in the YAML.
## First we check the default values.
# RUN: yaml2obj %s -o %t-default
# RUN: llvm-readelf --file-headers %t-default | FileCheck %s --check-prefix=DEFAULT
# DEFAULT: Start of program headers: 64 (bytes into file)
# DEFAULT: Start of section headers: 200 (bytes into file)
# DEFAULT: Size of program headers: 56 (bytes)
# DEFAULT: Number of program headers: 2
# DEFAULT: Size of section headers: 64 (bytes)
# DEFAULT: Number of section headers: 3
# DEFAULT: Section header string table index: 2
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
ProgramHeaders:
- Type: PT_LOAD
- Type: PT_LOAD
## Check we can override all default values using the same values
## and that this does not change the output.
# RUN: yaml2obj --docnum=2 %s -o %t-default-override
# RUN: cmp %t-default %t-default-override
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
EShEntSize: [[SHENTSIZE=64]]
EShOff: [[SHOFF=200]]
EShNum: [[SHNUM=3]]
EShStrNdx: [[SHSTRNDX=2]]
EPhOff: [[PHOFF=64]]
EPhEntSize: [[PHENTSIZE=56]]
EPhNum: [[PHNUM=2]]
ProgramHeaders:
- Type: PT_LOAD
- Type: PT_LOAD
## Override different fields to check the output produced.
## Override the e_shoff field.
# RUN: yaml2obj --docnum=2 %s -DSHOFF=3 -o %t2
# RUN: llvm-readelf --file-headers %t2 | FileCheck %s --check-prefix=SHOFF
# SHOFF: Start of section headers: 3 (bytes into file)
## Override the e_shnum field.
# RUN: yaml2obj --docnum=2 %s -DSHNUM=2 -o %t3
# RUN: llvm-readelf --file-headers %t3 | FileCheck %s --check-prefix=SHNUM
# SHNUM: Number of section headers: 2{{$}}
## Override the e_shstrndx field.
# RUN: yaml2obj --docnum=2 %s -DSHSTRNDX=4 -o %t4
# RUN: llvm-readelf --file-headers %t4 | FileCheck %s --check-prefix=SHSTRNDX
# SHSTRNDX: Section header string table index: 4{{$}}
## Override the e_shentsize field.
## Check the result using raw output from 'od' because llvm-readelf
## is unable to dump such headers.
# RUN: yaml2obj --docnum=2 %s -DSHENTSIZE=1 -o %t5
# RUN: od -A n -t x1 -v -j 0x3a -N 1 %t5 | FileCheck %s --check-prefix=NEWSIZE
# RUN: od -A n -t x1 -v -j 0x3a -N 1 %t-default | FileCheck %s --check-prefix=OLDSIZE
# NEWSIZE: 01
# OLDSIZE: 40
## Override the e_phoff field.
# RUN: yaml2obj --docnum=2 %s -DPHOFF=3 -o %t6
# RUN: llvm-readelf --file-headers %t6 | FileCheck %s --check-prefix=PHOFF
# PHOFF: Start of program headers: 3 (bytes into file){{$}}
## Override the e_phnum field.
# RUN: yaml2obj --docnum=2 %s -DPHNUM=1 -o %t7
# RUN: llvm-readelf --file-headers %t7 | FileCheck %s --check-prefix=PHNUM
# PHNUM: Number of program headers: 1{{$}}
## Override the e_phentsize field.
# RUN: yaml2obj --docnum=2 %s -DPHENTSIZE=1 -o %t8
# RUN: llvm-readelf --file-headers %t8 | FileCheck %s --check-prefix=PHENTSIZE
# PHENTSIZE: Size of program headers: 1 (bytes)