File: eh-frame.s

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (83 lines) | stat: -rw-r--r-- 2,735 bytes parent folder | download | duplicates (15)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# REQUIRES: x86
# RUN: rm -rf %t; split-file %s %t

# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-macos10.15 %t/too-small-1.s -o %t/too-small-1.o
# RUN: not %lld -lSystem -dylib %t/too-small-1.o -o /dev/null 2>&1 | FileCheck %s --check-prefix TOO-SMALL-1
# TOO-SMALL-1: error: {{.*}}too-small-1.o:(__eh_frame+0x0): CIE/FDE too small

# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-macos10.15 %t/too-small-2.s -o %t/too-small-2.o
# RUN: not %lld -lSystem -dylib %t/too-small-2.o -o /dev/null 2>&1 | FileCheck %s --check-prefix TOO-SMALL-2
# TOO-SMALL-2: error: {{.*}}too-small-2.o:(__eh_frame+0x0): CIE/FDE extends past the end of the section

# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-macos10.15 %t/personality-enc.s -o %t/personality-enc.o
# RUN: not %lld -lSystem -dylib %t/personality-enc.o -o /dev/null 2>&1 | FileCheck %s --check-prefix PERS-ENC
# PERS-ENC: error: {{.*}}personality-enc.o:(__eh_frame+0x12): unexpected personality encoding 0xb

# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-macos10.15 %t/pointer-enc.s -o %t/pointer-enc.o
# RUN: not %lld -lSystem -dylib %t/pointer-enc.o -o /dev/null 2>&1 | FileCheck %s --check-prefix PTR-ENC
# PTR-ENC: error: {{.*}}pointer-enc.o:(__eh_frame+0x11): unexpected pointer encoding 0x12

# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-macos10.15 %t/string-err.s -o %t/string-err.o
# RUN: not %lld -lSystem -dylib %t/string-err.o -o /dev/null 2>&1 | FileCheck %s --check-prefix STR
# STR: error: {{.*}}string-err.o:(__eh_frame+0x9): corrupted CIE (failed to read string)

#--- too-small-1.s
.p2align 3
.section __TEXT,__eh_frame
.short 0x3

.subsections_via_symbols

#--- too-small-2.s
.p2align 3
.section __TEXT,__eh_frame
.long 0x3  # length

.subsections_via_symbols

#--- personality-enc.s
.p2align 3
.section __TEXT,__eh_frame

.long 0x14   # length
.long 0      # CIE offset
.byte 1      # version
.asciz "zPR" # aug string
.byte 0x01   # code alignment
.byte 0x78   # data alignment
.byte 0x10   # return address register
.byte 0x01   # aug length
.byte 0x0b   # personality encoding
.long 0xffff # personality pointer
.byte 0x10   # pointer encoding
.space 1     # pad to alignment

.subsections_via_symbols

#--- pointer-enc.s
.p2align 3
.section __TEXT,__eh_frame

.long 0x14  # length
.long 0     # CIE offset
.byte 1     # version
.asciz "zR" # aug string
.byte 0x01  # code alignment
.byte 0x78  # data alignment
.byte 0x10  # return address register
.byte 0x01  # aug length
.byte 0x12  # pointer encoding
.space 7    # pad to alignment

.subsections_via_symbols

#--- string-err.s
.p2align 3
.section __TEXT,__eh_frame

.long 0x7   # length
.long 0     # CIE offset
.byte 1     # version
.ascii "zR" # invalid aug string

.subsections_via_symbols