50 lines
1.4 KiB
ArmAsm
50 lines
1.4 KiB
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
|
|
# RUN: echo "SECTIONS { \
|
|
# RUN: .writable : ONLY_IF_RW { *(.writable) } \
|
|
# RUN: .readable : ONLY_IF_RO { *(.readable) }}" > %t.script
|
|
# RUN: ld.lld -o %t1 --script %t.script %t
|
|
# RUN: llvm-objdump -section-headers %t1 | \
|
|
# RUN: FileCheck -check-prefix=BASE %s
|
|
# BASE: Sections:
|
|
# BASE-NEXT: Idx Name Size Address Type
|
|
# BASE-NEXT: 0 00000000 0000000000000000
|
|
# BASE-NEXT: 1 .writable 00000004 0000000000000200 DATA
|
|
# BASE-NEXT: 2 .readable 00000004 0000000000000204 DATA
|
|
|
|
# RUN: echo "SECTIONS { \
|
|
# RUN: .writable : ONLY_IF_RO { *(.writable) } \
|
|
# RUN: .readable : ONLY_IF_RW { *(.readable) }}" > %t.script
|
|
# RUN: ld.lld -o %t1 --script %t.script %t
|
|
# RUN: llvm-objdump -section-headers %t1 | \
|
|
# RUN: FileCheck -check-prefix=NOSECTIONS %s
|
|
# NOSECTIONS: Sections:
|
|
# NOSECTIONS-NOT: .writable
|
|
# NOSECTIONS-NOT: .readable
|
|
|
|
# RUN: echo "SECTIONS { \
|
|
# RUN: .foo : ONLY_IF_RO { *(.foo.*) }}" > %t.script
|
|
# RUN: ld.lld -o %t1 --script %t.script %t
|
|
# RUN: llvm-objdump -section-headers %t1 | \
|
|
# RUN: FileCheck -check-prefix=NOSECTIONS2 %s
|
|
# NOSECTIONS2: Sections:
|
|
# NOSECTIONS2-NOT: .foo
|
|
|
|
.global _start
|
|
_start:
|
|
nop
|
|
|
|
.section .writable, "aw"
|
|
writable:
|
|
.long 1
|
|
|
|
.section .readable, "a"
|
|
readable:
|
|
.long 2
|
|
|
|
.section .foo.1, "awx"
|
|
.long 0
|
|
|
|
.section .foo.2, "aw"
|
|
.long 0
|