File: synthetic-symbols1.test

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (56 lines) | stat: -rw-r--r-- 2,237 bytes parent folder | download | duplicates (2)
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
53
54
55
56
# 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: 0000000000000158 g       .foo   0000000000000000 _begin_sec
# CHECK-NEXT: 0000000000000160 g       *ABS*  0000000000000000 _end_sec_abs
# CHECK-NEXT: 000000000000104c g       .text  0000000000000000 _start
# 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