aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/Mips/eh-frame.s
blob: 167159885d72170ce2a4933ab59677969b7594e6 (plain)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// Test the bits of .eh_frame on mips that are already implemented correctly.

// FIXME: This test would be a lot cleaner if llvm-objdump had the
// --dwarf=frames option.

// RUN: llvm-mc -filetype=obj %s -o %t.o -arch=mips
// RUN: llvm-objdump -r -s %t.o | FileCheck --check-prefix=MIPS32 %s

// RUN: llvm-mc -filetype=obj %s -o %t.o -arch=mipsel
// RUN: llvm-objdump -r -s %t.o | FileCheck --check-prefix=MIPS32EL %s

// RUN: llvm-mc -filetype=obj %s -o %t.o -arch=mips64
// RUN: llvm-objdump -r -s %t.o | FileCheck --check-prefix=MIPS64 %s

// RUN: llvm-mc -filetype=obj %s -o %t.o -arch=mips64el
// RUN: llvm-objdump -r -s %t.o | FileCheck --check-prefix=MIPS64EL %s

func:
	.cfi_startproc
	.cfi_endproc

// MIPS32: RELOCATION RECORDS FOR [.rel.eh_frame]:
// MIPS32-NEXT: R_MIPS_32
// MIPS32: Contents of section .eh_frame:
// MIPS32-NEXT: 0000

// Length
// MIPS32: 00000010

// CIE ID
// MIPS32: 00000000

// Version
// MIPS32: 01

// Augmentation String
// MIPS32: 7a5200

// Code Alignment Factor
// MIPS32: 01

// Data Alignment Factor (-4)
// MIPS32: 7c

// Return Address Register
// MIPS32: 1f

// Augmentation Size
// MIPS32: 01

// MIPS32: .........zR..|..
// MIPS32-NEXT: 0010

// Augmentation (fde pointer encoding: DW_EH_PE_sdata4)
// MIPS32: 0b
// FIXME: The instructions are different from the ones produces by gas.

// MIPS32EL: RELOCATION RECORDS FOR [.rel.eh_frame]:
// MIPS32EL-NEXT: R_MIPS_32
// MIPS32EL: Contents of section .eh_frame:
// MIPS32EL-NEXT: 0000

// Length
// MIPS32EL: 10000000

// CIE ID
// MIPS32EL: 00000000

// Version
// MIPS32EL: 01

// Augmentation String
// MIPS32EL: 7a5200

// Code Alignment Factor
// MIPS32EL: 01

// Data Alignment Factor (-4)
// MIPS32EL: 7c

// Return Address Register
// MIPS32EL: 1f

// Augmentation Size
// MIPS32EL: 01

// MIPS32EL: .........zR..|..
// MIPS32EL-NEXT: 0010

// Augmentation (fde pointer encoding: DW_EH_PE_sdata4)
// MIPS32EL: 0b
// FIXME: The instructions are different from the ones produces by gas.

// MIPS64: RELOCATION RECORDS FOR [.rela.eh_frame]:
// MIPS64-NEXT: R_MIPS_64
// MIPS64: Contents of section .eh_frame:
// MIPS64-NEXT: 0000

// Length
// MIPS64: 00000010

// CIE ID
// MIPS64: 00000000

// Version
// MIPS64: 01

// Augmentation String
// MIPS64: 7a5200

// Code Alignment Factor
// MIPS64: 01

// Data Alignment Factor (-8). GAS uses -4. Should be ok as long as all
// offsets we need are a multiple of 8.
// MIPS64: 78

// Return Address Register
// MIPS64: 1f

// Augmentation Size
// MIPS64: 01

// MIPS64: .........zR..x..
// MIPS64-NEXT: 0010

// Augmentation (fde pointer encoding: DW_EH_PE_sdata8)
// MIPS64: 0c
// FIXME: The instructions are different from the ones produces by gas.


// MIPS64EL: RELOCATION RECORDS FOR [.rela.eh_frame]:
// MIPS64EL-NEXT: R_MIPS_64
// MIPS64EL: Contents of section .eh_frame:
// MIPS64EL-NEXT: 0000

// Length
// MIPS64EL: 10000000

// CIE ID
// MIPS64EL: 00000000

// Version
// MIPS64EL: 01

// Augmentation String
// MIPS64EL: 7a5200

// Code Alignment Factor
// MIPS64EL: 01

// Data Alignment Factor (-8). GAS uses -4. Should be ok as long as all
// offsets we need are a multiple of 8.
// MIPS64EL: 78

// Return Address Register
// MIPS64EL: 1f

// Augmentation Size
// MIPS64EL: 01

// MIPS64EL: .........zR..x..
// MIPS64EL-NEXT: 0010

// Augmentation (fde pointer encoding: DW_EH_PE_sdata8)
// MIPS64EL: 0c
// FIXME: The instructions are different from the ones produces by gas.