File: excludefile.s

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-18
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 1,999,584 kB
  • sloc: cpp: 6,951,724; ansic: 1,486,157; asm: 913,598; python: 232,059; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,079; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,430; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (52 lines) | stat: -rw-r--r-- 1,813 bytes parent folder | download | duplicates (17)
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
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t1
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux \
# RUN:   %p/Inputs/include.s -o %t2
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux \
# RUN:   %p/Inputs/notinclude.s -o %t3.notinclude

# RUN: echo "SECTIONS {} " > %t.script
# RUN: ld.lld -o %t --script %t.script %t1 %t2 %t3.notinclude
# RUN: llvm-objdump --no-print-imm-hex -d %t | FileCheck %s

# CHECK: Disassembly of section .text:
# CHECK-EMPTY:
# CHECK: <_start>:
# CHECK-NEXT: :       48 c7 c0 3c 00 00 00    movq    $60, %rax
# CHECK-NEXT: :       48 c7 c7 2a 00 00 00    movq    $42, %rdi
# CHECK-NEXT: :       cc      int3
# CHECK-NEXT: :       cc      int3
# CHECK: <_potato>:
# CHECK-NEXT: :       90      nop
# CHECK-NEXT: :       90      nop
# CHECK-NEXT: :       cc      int3
# CHECK-NEXT: :       cc      int3
# CHECK: <tomato>:
# CHECK-NEXT: :       b8 01 00 00 00  movl    $1, %eax

# RUN: echo "SECTIONS { .patatino : \
# RUN: { KEEP(*(EXCLUDE_FILE(*notinclude) .text)) } }" \
# RUN:  > %t.script
# RUN: ld.lld -o %t4 --script %t.script %t1 %t2 %t3.notinclude
# RUN: llvm-objdump --no-print-imm-hex -d %t4 | FileCheck %s --check-prefix=EXCLUDE

# EXCLUDE: Disassembly of section .patatino:
# EXCLUDE-EMPTY:
# EXCLUDE: <_start>:
# EXCLUDE-NEXT: :       48 c7 c0 3c 00 00 00    movq    $60, %rax
# EXCLUDE-NEXT: :       48 c7 c7 2a 00 00 00    movq    $42, %rdi
# EXCLUDE-NEXT: :       cc      int3
# EXCLUDE-NEXT: :       cc      int3
# EXCLUDE: <_potato>:
# EXCLUDE-NEXT: :       90      nop
# EXCLUDE-NEXT: :       90      nop
# EXCLUDE: Disassembly of section .text:
# EXCLUDE-EMPTY:
# EXCLUDE: <tomato>:
# EXCLUDE-NEXT: :       b8 01 00 00 00  movl    $1, %eax

.section .text
.globl _start
_start:
    mov $60, %rax
    mov $42, %rdi