File: format-binary.test

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (50 lines) | stat: -rw-r--r-- 2,305 bytes parent folder | download | duplicates (5)
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
# REQUIRES: x86

# RUN: rm -rf %t.dir
# RUN: mkdir %t.dir
# RUN: cd %t.dir

# RUN: mkdir d
# RUN: echo -n "Fluffle Puff" > d/t.txt
# RUN: ld.lld -m elf_x86_64 -r -b binary d/t.txt -o ro
# RUN: llvm-readelf -h -S -s -x .data ro | FileCheck --check-prefix=RO %s

# RO:      Machine: Advanced Micro Devices X86-64
# RO:      Name         Type     Address          Off    Size   ES Flg Lk Inf Al
# RO-NEXT:              NULL     0000000000000000 000000 000000 00      0   0  0
# RO-NEXT: .data        PROGBITS 0000000000000000 {{.*}} 00000c 00  WA  0   0  8
# RO:         Value          Size Type    Bind   Vis      Ndx Name
# RO:      0000000000000000     0 OBJECT  GLOBAL DEFAULT    1 _binary_d_t_txt_start
# RO-NEXT: 000000000000000c     0 OBJECT  GLOBAL DEFAULT    1 _binary_d_t_txt_end
# RO-NEXT: 000000000000000c     0 OBJECT  GLOBAL DEFAULT  ABS _binary_d_t_txt_size
# RO:      Hex dump of section '.data':
# RO-NEXT: 0x00000000 466c7566 666c6520 50756666          Fluffle Puff

# RUN: echo 'OUTPUT_FORMAT(elf64-x86-64)' > t.lds
# RUN: ld.lld -b binary -T t.lds d/t.txt -o exe
# RUN: llvm-readelf -h -S -s exe | FileCheck --check-prefix=EXE %s

## bfdname can be quoted.
# RUN: echo 'OUTPUT_FORMAT("elf64-x86-64")' > t1.lds
# RUN: ld.lld -b binary -T t1.lds d/t.txt -o exe1
# RUN: llvm-readelf -h -S -s exe | FileCheck --check-prefix=EXE %s

# EXE:      Machine: Advanced Micro Devices X86-64
# EXE:      [Nr] Name         Type     Address          Off    Size   ES Flg Lk Inf Al
# EXE:      [ 3] .data        PROGBITS {{.*}}                  00000c 00  WA  0   0  8
# EXE:      Size Type    Bind   Vis      Ndx Name
# EXE:         0 OBJECT  GLOBAL DEFAULT    3 _binary_d_t_txt_start
# EXE-NEXT:    0 OBJECT  GLOBAL DEFAULT    3 _binary_d_t_txt_end
# EXE-NEXT:    0 OBJECT  GLOBAL DEFAULT  ABS _binary_d_t_txt_size

# RUN: not ld.lld -b foo 2>&1 | FileCheck --check-prefix=ERR %s
# ERR: error: unknown -format value: foo (supported formats: elf, default, binary)

## Non-isalnum bytes are converted to _. See D37331.
# RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o d/£.o
# RUN: ld.lld d/£.o --format=binary d/£.o -o unicode
# RUN: llvm-nm -p unicode | FileCheck --check-prefix=UNICODE %s

# UNICODE: D _binary_d_{{_+}}o_start
# UNICODE: D _binary_d_{{_+}}o_end
# UNICODE: A _binary_d_{{_+}}o_size