File: fill-exec-sections.s

package info (click to toggle)
llvm-toolchain-7 1%3A7.0.1-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 733,456 kB
  • sloc: cpp: 3,776,651; ansic: 633,271; asm: 350,301; python: 142,716; objc: 107,612; sh: 22,626; lisp: 11,056; perl: 7,999; pascal: 6,742; ml: 5,537; awk: 3,536; makefile: 2,557; cs: 2,027; xml: 841; ruby: 156
file content (40 lines) | stat: -rw-r--r-- 1,681 bytes parent folder | download | duplicates (31)
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
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t

## Check that padding of executable sections are filled with trap bytes if not
## otherwise specified in the script.
# RUN: echo "SECTIONS { .exec : { *(.exec*) } }" > %t.script
# RUN: ld.lld -o %t.out --script %t.script %t
# RUN: llvm-objdump -s %t.out | FileCheck %s --check-prefix=EXEC
# EXEC:      0000 66cccccc cccccccc cccccccc cccccccc
# EXEC-NEXT: 0010 66

## Check that a fill expression or command overrides the default filler...
# RUN: echo "SECTIONS { .exec : { *(.exec*) }=0x11223344 }" > %t2.script
# RUN: ld.lld -o %t2.out --script %t2.script %t
# RUN: llvm-objdump -s %t2.out | FileCheck %s --check-prefix=OVERRIDE
# RUN: echo "SECTIONS { .exec : { FILL(0x11223344); *(.exec*) } }" > %t3.script
# RUN: ld.lld -o %t3.out --script %t3.script %t
# RUN: llvm-objdump -s %t3.out | FileCheck %s --check-prefix=OVERRIDE
# OVERRIDE:      Contents of section .exec:
# OVERRIDE-NEXT:  0000 66112233 44112233 44112233 44112233
# OVERRIDE-NEXT:  0010 66

## ...even for a value of zero.
# RUN: echo "SECTIONS { .exec : { *(.exec*) }=0x00000000 }" > %t4.script
# RUN: ld.lld -o %t4.out --script %t4.script %t
# RUN: llvm-objdump -s %t4.out | FileCheck %s --check-prefix=ZERO
# RUN: echo "SECTIONS { .exec : { FILL(0x00000000); *(.exec*) } }" > %t5.script
# RUN: ld.lld -o %t5.out --script %t5.script %t
# RUN: llvm-objdump -s %t5.out | FileCheck %s --check-prefix=ZERO
# ZERO:      Contents of section .exec:
# ZERO-NEXT:  0000 66000000 00000000 00000000 00000000
# ZERO-NEXT:  0010 66

.section        .exec.1,"ax"
.align  16
.byte   0x66

.section        .exec.2,"ax"
.align  16
.byte   0x66