forked from OSchip/llvm-project
73 lines
2.1 KiB
ArmAsm
73 lines
2.1 KiB
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t.o
|
|
# RUN: echo "-sectcreate 1.1" >%t1
|
|
# RUN: echo "-sectcreate 1.2" >%t2
|
|
# RUN: echo "-sectcreate 2" >%t3
|
|
# RUN: %lld \
|
|
# RUN: -sectcreate SEG SEC1 %t1 \
|
|
# RUN: -segcreate SEG SEC2 %t3 \
|
|
# RUN: -sectcreate SEG SEC1 %t2 \
|
|
# RUN: -add_empty_section __DATA __data \
|
|
# RUN: -o %t %t.o
|
|
# RUN: llvm-objdump -s %t | FileCheck %s
|
|
|
|
## -dead_strip does not strip -sectcreate sections,
|
|
## but also doesn't set S_ATTR_NO_DEAD_STRIP on them.
|
|
# RUN: %lld -dead_strip \
|
|
# RUN: -sectcreate SEG SEC1 %t1 \
|
|
# RUN: -segcreate SEG SEC2 %t3 \
|
|
# RUN: -sectcreate SEG SEC1 %t2 \
|
|
# RUN: -add_empty_section SEG SEC1 \
|
|
# RUN: -o %t %t.o
|
|
# RUN: llvm-objdump -s %t | FileCheck --check-prefix=STRIPPED %s
|
|
# RUN: llvm-readobj --sections %t | FileCheck --check-prefix=STRIPPEDSEC %s
|
|
|
|
# RUN: %lld -add_empty_section foo bar -o %t %t.o
|
|
# RUN: llvm-readobj --sections %t | FileCheck --check-prefix=EMPTYSECTION %s
|
|
|
|
# RUN: %lld -sectcreate SEG SEC1 %t1 -add_empty_section SEG SEC1 -o %t %t.o
|
|
# RUN: llvm-readobj --sections %t | FileCheck --check-prefix=CREATEDANDEMPTY %s
|
|
|
|
# CHECK: Contents of section __TEXT,__text:
|
|
# CHECK: Contents of section __DATA,__data:
|
|
# CHECK: my string!.
|
|
# CHECK: Contents of section SEG,SEC1:
|
|
# CHECK: -sectcreate 1.1.
|
|
# CHECK: -sectcreate 1.2.
|
|
# CHECK: Contents of section SEG,SEC2:
|
|
# CHECK: -sectcreate 2.
|
|
|
|
# STRIPPED: Contents of section __TEXT,__text:
|
|
# STRIPPED-NOT: Contents of section __DATA,__data:
|
|
# STRIPPED-NOT: my string!.
|
|
# STRIPPED: Contents of section SEG,SEC1:
|
|
# STRIPPED: -sectcreate 1.1.
|
|
# STRIPPED: -sectcreate 1.2.
|
|
# STRIPPED: Contents of section SEG,SEC2:
|
|
# STRIPPED: -sectcreate 2.
|
|
|
|
# STRIPPEDSEC-NOT: NoDeadStrip
|
|
|
|
# EMPTYSECTION: Name: bar
|
|
# EMPTYSECTION: Segment: foo
|
|
# EMPTYSECTION: Size: 0x0
|
|
# EMPTYSECTION-NOT: Name:
|
|
|
|
# CREATEDANDEMPTY: Name: SEC1
|
|
# CREATEDANDEMPTY: Segment: SEG
|
|
# CREATEDANDEMPTY: Size: 0x10
|
|
# CREATEDANDEMPTY-NOT: Name:
|
|
|
|
.text
|
|
.global _main
|
|
_main:
|
|
mov $0, %eax
|
|
ret
|
|
|
|
.data
|
|
.global my_string
|
|
my_string:
|
|
.string "my string!"
|
|
|
|
.subsections_via_symbols
|