File: eh_frame_suffix_sorting.s

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 (39 lines) | stat: -rw-r--r-- 1,077 bytes parent folder | download | duplicates (26)
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
# REQUIRES: x86

# RUN: llvm-mc -triple=i686-windows-gnu %s -filetype=obj -o %t.main.o
# RUN: llvm-mc -filetype=obj -triple=i686-windows-gnu \
# RUN:   %p/Inputs/eh_frame_terminator-crtend.s -o %t.crtend.o

# RUN: lld-link -lldmingw -entry:main %t.main.o %t.crtend.o -out:%t.exe
# RUN: llvm-objdump -s %t.exe | FileCheck %s

# Check that the contents of .eh_frame$foo was placed before .eh_frame from
# crtend.o, even if the former had a section name suffix.

# CHECK: Contents of section .eh_fram:
# CHECK:  403000 4203

        .text
        .def            _main;
        .scl            2;
        .type           32;
        .endef
        .globl          _main
        .p2align        4, 0x90
_main:
        call            _foo
        ret

        .section        .eh_frame$foo,"dr"
        .linkonce       discard
        .byte           0x42

        .def            _foo;
        .scl            2;
        .type           32;
        .endef
        .section        .text$foo,"xr",discard,foo
        .globl          _foo
        .p2align        4
_foo:
        ret