File: eh-frame-nonzero-offset-x86.s

package info (click to toggle)
llvm-toolchain-18 1%3A18.1.8-18
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,908,340 kB
  • sloc: cpp: 6,667,937; ansic: 1,440,452; asm: 883,619; python: 230,549; objc: 76,880; f90: 74,238; lisp: 35,989; pascal: 16,571; sh: 10,229; perl: 7,459; ml: 5,047; awk: 3,523; makefile: 2,987; javascript: 2,149; xml: 892; fortran: 649; cs: 573
file content (55 lines) | stat: -rw-r--r-- 1,680 bytes parent folder | download | duplicates (12)
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
// REQUIRES: x86
// RUN: rm -rf %t && split-file %s %t && cd %t

// RUN: llvm-mc -filetype=obj -triple=x86_64 a.s -o a.o
// RUN: ld.lld a.o -T eh-frame-non-zero-offset.t -o non-zero
// RUN: llvm-readelf --program-headers --unwind --symbols -x .eh_frame non-zero | FileCheck --check-prefix=NONZERO %s
// RUN: ld.lld a.o -T eh-frame-zero-offset.t -o zero
// RUN: llvm-readelf --program-headers --unwind --symbols -x .eh_frame zero | FileCheck --check-prefix=ZERO %s

// NONZERO:      {{[0-9]+}}: 0000000000000088 {{.*}} __eh_frame_start
// NONZERO-NEXT: {{[0-9]+}}: 00000000000000bc {{.*}} __eh_frame_end

// NONZERO:      0x00000088 14000000 00000000 017a5200 01781001
// NONZERO-NEXT: 0x00000098 1b0c0708 90010000 14000000 1c000000
// NONZERO-NEXT: 0x000000a8 58ffffff 04000000 00000000 00000000
// NONZERO-NEXT: 0x000000b8 00000000

// ZERO:      {{[0-9]+}}: 0000000000000008 {{.*}} __eh_frame_start
// ZERO-NEXT: {{[0-9]+}}: 000000000000003c {{.*}} __eh_frame_end

// ZERO:      0x00000008 14000000 00000000 017a5200 01781001
// ZERO-NEXT: 0x00000018 1b0c0708 90010000 14000000 1c000000
// ZERO-NEXT: 0x00000028 d8ffffff 04000000 00000000 00000000
// ZERO-NEXT: 0x00000038 00000000

//--- eh-frame-non-zero-offset.t
SECTIONS {
  .text : { *(.text .text.*) }
  .eh_frame : {
    /* Padding within .eh_frame */
    . += 128;
    __eh_frame_start = .;
    *(.eh_frame) ;
    __eh_frame_end = .;
  }
}

//--- eh-frame-zero-offset.t
SECTIONS {
  .text : { *(.text .text.*) }
  .eh_frame : {
    __eh_frame_start = .;
    *(.eh_frame) ;
    __eh_frame_end = .;
  }
}

//--- a.s
.section .text.01, "ax",%progbits
.global f1
.type f1, %function
f1:
.cfi_startproc
.space 4
.cfi_endproc