forked from OSchip/llvm-project
57 lines
2.2 KiB
Plaintext
57 lines
2.2 KiB
Plaintext
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %p/Inputs/synthetic-symbols.s -o %t
|
|
# RUN: ld.lld -o %t.exe --eh-frame-hdr --script %s %t
|
|
# RUN: llvm-objdump -t %t.exe | FileCheck %s
|
|
|
|
# Simple symbol assignment within input section list. The '.' symbol
|
|
# is not location counter but offset from the beginning of output
|
|
# section .foo
|
|
|
|
SECTIONS {
|
|
. = SIZEOF_HEADERS;
|
|
.foo : {
|
|
begin_foo = .;
|
|
PROVIDE(_begin_sec = .);
|
|
*(.foo)
|
|
end_foo = .;
|
|
PROVIDE_HIDDEN(_end_sec = .);
|
|
PROVIDE(_end_sec_abs = ABSOLUTE(.));
|
|
size_foo_1 = SIZEOF(.foo);
|
|
size_foo_1_abs = ABSOLUTE(SIZEOF(.foo));
|
|
. = ALIGN(0x1000);
|
|
begin_bar = .;
|
|
*(.bar)
|
|
end_bar = .;
|
|
size_foo_2 = SIZEOF(.foo);
|
|
}
|
|
|
|
size_foo_3 = SIZEOF(.foo);
|
|
|
|
.eh_frame_hdr : {
|
|
__eh_frame_hdr_start = .;
|
|
__eh_frame_hdr_start2 = ABSOLUTE(ALIGN(0x10));
|
|
*(.eh_frame_hdr)
|
|
__eh_frame_hdr_end = .;
|
|
__eh_frame_hdr_end2 = ABSOLUTE(ALIGN(0x10));
|
|
}
|
|
|
|
.eh_frame : {}
|
|
}
|
|
|
|
# CHECK: 0000000000000160 l .foo 0000000000000000 .hidden _end_sec
|
|
# CHECK-NEXT: 000000000000104c g .text 0000000000000000 _start
|
|
# CHECK-NEXT: 0000000000000158 g .foo 0000000000000000 _begin_sec
|
|
# CHECK-NEXT: 0000000000000160 g *ABS* 0000000000000000 _end_sec_abs
|
|
# CHECK-NEXT: 0000000000000158 g .foo 0000000000000000 begin_foo
|
|
# CHECK-NEXT: 0000000000000160 g .foo 0000000000000000 end_foo
|
|
# CHECK-NEXT: 0000000000000008 g *ABS* 0000000000000000 size_foo_1
|
|
# CHECK-NEXT: 0000000000000008 g *ABS* 0000000000000000 size_foo_1_abs
|
|
# CHECK-NEXT: 0000000000001000 g .foo 0000000000000000 begin_bar
|
|
# CHECK-NEXT: 0000000000001004 g .foo 0000000000000000 end_bar
|
|
# CHECK-NEXT: 0000000000000eac g *ABS* 0000000000000000 size_foo_2
|
|
# CHECK-NEXT: 0000000000000eac g *ABS* 0000000000000000 size_foo_3
|
|
# CHECK-NEXT: 0000000000001004 g .eh_frame_hdr 0000000000000000 __eh_frame_hdr_start
|
|
# CHECK-NEXT: 0000000000001010 g *ABS* 0000000000000000 __eh_frame_hdr_start2
|
|
# CHECK-NEXT: 0000000000001018 g .eh_frame_hdr 0000000000000000 __eh_frame_hdr_end
|
|
# CHECK-NEXT: 0000000000001020 g *ABS* 0000000000000000 __eh_frame_hdr_end2
|