1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=mips-unknown-linux-gnu -mcpu=mips32 -disable-mips-delay-filler | FileCheck %s --check-prefixes=MIPS32,MIPS32EB
3 ; RUN: llc < %s -mtriple=mips64-unknown-linux-gnu -relocation-model=pic -mcpu=mips64 -disable-mips-delay-filler -mips-jalr-reloc=false | FileCheck %s --check-prefixes=MIPS64,MIPS64EB
4 ; RUN: llc < %s -mtriple=mips-unknown-linux-gnu -mcpu=mips32r5 -mattr=+fp64,+msa -disable-mips-delay-filler | FileCheck %s --check-prefixes=MIPS32R5,MIPS32R5EB
5 ; RUN: llc < %s -mtriple=mips64-unknown-linux-gnu -relocation-model=pic -mcpu=mips64r5 -mattr=+fp64,+msa -disable-mips-delay-filler -mips-jalr-reloc=false | FileCheck %s --check-prefixes=MIPS64R5,MIPS64R5EB
6 ; RUN: llc < %s -mtriple=mipsel-unknown-linux-gnu -mcpu=mips32 -disable-mips-delay-filler | FileCheck %s --check-prefixes=MIPS32,MIPS32EL
7 ; RUN: llc < %s -mtriple=mips64el-unknown-linux-gnu -relocation-model=pic -mcpu=mips64 -disable-mips-delay-filler -mips-jalr-reloc=false | FileCheck %s --check-prefixes=MIPS64,MIPS64EL
8 ; RUN: llc < %s -mtriple=mipsel-unknown-linux-gnu -mcpu=mips32r5 -mattr=+fp64,+msa -disable-mips-delay-filler | FileCheck %s --check-prefixes=MIPS32R5,MIPS32R5EL
9 ; RUN: llc < %s -mtriple=mips64el-unknown-linux-gnu -relocation-model=pic -mcpu=mips64r5 -mattr=+fp64,+msa -disable-mips-delay-filler -mips-jalr-reloc=false | FileCheck %s --check-prefixes=MIPS64R5,MIPS64R5EL
11 ; Test that vector types are passed through the integer register set whether or
12 ; not MSA is enabled. This is a ABI requirement for MIPS. For GCC compatibility
13 ; we need to handle any power of 2 number of elements. We will test this
14 ; exhaustively for combinations up to MSA register (128 bits) size.
16 ; First set of tests are for argument passing.
18 define <2 x i8> @i8_2(<2 x i8> %a, <2 x i8> %b) {
21 ; MIPS32-NEXT: addu $1, $4, $5
22 ; MIPS32-NEXT: andi $1, $1, 255
23 ; MIPS32-NEXT: andi $2, $5, 65280
24 ; MIPS32-NEXT: srl $2, $2, 8
25 ; MIPS32-NEXT: andi $3, $4, 65280
26 ; MIPS32-NEXT: srl $3, $3, 8
27 ; MIPS32-NEXT: addu $2, $3, $2
28 ; MIPS32-NEXT: sll $2, $2, 8
29 ; MIPS32-NEXT: or $2, $1, $2
35 ; MIPS64-NEXT: sll $1, $5, 0
36 ; MIPS64-NEXT: sll $2, $4, 0
37 ; MIPS64-NEXT: addu $3, $2, $1
38 ; MIPS64-NEXT: andi $3, $3, 255
39 ; MIPS64-NEXT: andi $1, $1, 65280
40 ; MIPS64-NEXT: srl $1, $1, 8
41 ; MIPS64-NEXT: andi $2, $2, 65280
42 ; MIPS64-NEXT: srl $2, $2, 8
43 ; MIPS64-NEXT: addu $1, $2, $1
44 ; MIPS64-NEXT: sll $1, $1, 8
45 ; MIPS64-NEXT: or $2, $3, $1
49 ; MIPS32R5EB-LABEL: i8_2:
50 ; MIPS32R5EB: # %bb.0:
51 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -64
52 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 64
53 ; MIPS32R5EB-NEXT: sw $ra, 60($sp) # 4-byte Folded Spill
54 ; MIPS32R5EB-NEXT: sw $fp, 56($sp) # 4-byte Folded Spill
55 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
56 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
57 ; MIPS32R5EB-NEXT: move $fp, $sp
58 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
59 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
60 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
61 ; MIPS32R5EB-NEXT: sh $5, 48($sp)
62 ; MIPS32R5EB-NEXT: sh $4, 52($sp)
63 ; MIPS32R5EB-NEXT: lbu $1, 49($sp)
64 ; MIPS32R5EB-NEXT: sw $1, 28($sp)
65 ; MIPS32R5EB-NEXT: lbu $1, 48($sp)
66 ; MIPS32R5EB-NEXT: sw $1, 20($sp)
67 ; MIPS32R5EB-NEXT: lbu $1, 53($sp)
68 ; MIPS32R5EB-NEXT: sw $1, 12($sp)
69 ; MIPS32R5EB-NEXT: lbu $1, 52($sp)
70 ; MIPS32R5EB-NEXT: sw $1, 4($sp)
71 ; MIPS32R5EB-NEXT: ld.d $w0, 16($sp)
72 ; MIPS32R5EB-NEXT: ld.d $w1, 0($sp)
73 ; MIPS32R5EB-NEXT: addv.d $w0, $w1, $w0
74 ; MIPS32R5EB-NEXT: shf.w $w0, $w0, 177
75 ; MIPS32R5EB-NEXT: copy_s.w $1, $w0[1]
76 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[3]
77 ; MIPS32R5EB-NEXT: sb $2, 45($sp)
78 ; MIPS32R5EB-NEXT: sb $1, 44($sp)
79 ; MIPS32R5EB-NEXT: lhu $2, 44($sp)
80 ; MIPS32R5EB-NEXT: move $sp, $fp
81 ; MIPS32R5EB-NEXT: lw $fp, 56($sp) # 4-byte Folded Reload
82 ; MIPS32R5EB-NEXT: lw $ra, 60($sp) # 4-byte Folded Reload
83 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 64
84 ; MIPS32R5EB-NEXT: jr $ra
85 ; MIPS32R5EB-NEXT: nop
87 ; MIPS64R5-LABEL: i8_2:
89 ; MIPS64R5-NEXT: daddiu $sp, $sp, -16
90 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 16
91 ; MIPS64R5-NEXT: sh $5, 8($sp)
92 ; MIPS64R5-NEXT: sh $4, 12($sp)
93 ; MIPS64R5-NEXT: lb $1, 9($sp)
94 ; MIPS64R5-NEXT: lb $2, 8($sp)
95 ; MIPS64R5-NEXT: insert.d $w0[0], $2
96 ; MIPS64R5-NEXT: insert.d $w0[1], $1
97 ; MIPS64R5-NEXT: lb $1, 13($sp)
98 ; MIPS64R5-NEXT: lb $2, 12($sp)
99 ; MIPS64R5-NEXT: insert.d $w1[0], $2
100 ; MIPS64R5-NEXT: insert.d $w1[1], $1
101 ; MIPS64R5-NEXT: addv.d $w0, $w1, $w0
102 ; MIPS64R5-NEXT: copy_s.d $1, $w0[0]
103 ; MIPS64R5-NEXT: copy_s.d $2, $w0[1]
104 ; MIPS64R5-NEXT: sb $2, 5($sp)
105 ; MIPS64R5-NEXT: sb $1, 4($sp)
106 ; MIPS64R5-NEXT: lh $2, 4($sp)
107 ; MIPS64R5-NEXT: daddiu $sp, $sp, 16
108 ; MIPS64R5-NEXT: jr $ra
111 ; MIPS32R5EL-LABEL: i8_2:
112 ; MIPS32R5EL: # %bb.0:
113 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -64
114 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 64
115 ; MIPS32R5EL-NEXT: sw $ra, 60($sp) # 4-byte Folded Spill
116 ; MIPS32R5EL-NEXT: sw $fp, 56($sp) # 4-byte Folded Spill
117 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
118 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
119 ; MIPS32R5EL-NEXT: move $fp, $sp
120 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
121 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
122 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
123 ; MIPS32R5EL-NEXT: sh $5, 48($sp)
124 ; MIPS32R5EL-NEXT: sh $4, 52($sp)
125 ; MIPS32R5EL-NEXT: lbu $1, 49($sp)
126 ; MIPS32R5EL-NEXT: sw $1, 24($sp)
127 ; MIPS32R5EL-NEXT: lbu $1, 48($sp)
128 ; MIPS32R5EL-NEXT: sw $1, 16($sp)
129 ; MIPS32R5EL-NEXT: lbu $1, 53($sp)
130 ; MIPS32R5EL-NEXT: sw $1, 8($sp)
131 ; MIPS32R5EL-NEXT: lbu $1, 52($sp)
132 ; MIPS32R5EL-NEXT: sw $1, 0($sp)
133 ; MIPS32R5EL-NEXT: ld.d $w0, 16($sp)
134 ; MIPS32R5EL-NEXT: ld.d $w1, 0($sp)
135 ; MIPS32R5EL-NEXT: addv.d $w0, $w1, $w0
136 ; MIPS32R5EL-NEXT: copy_s.w $1, $w0[0]
137 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[2]
138 ; MIPS32R5EL-NEXT: sb $2, 45($sp)
139 ; MIPS32R5EL-NEXT: sb $1, 44($sp)
140 ; MIPS32R5EL-NEXT: lhu $2, 44($sp)
141 ; MIPS32R5EL-NEXT: move $sp, $fp
142 ; MIPS32R5EL-NEXT: lw $fp, 56($sp) # 4-byte Folded Reload
143 ; MIPS32R5EL-NEXT: lw $ra, 60($sp) # 4-byte Folded Reload
144 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 64
145 ; MIPS32R5EL-NEXT: jr $ra
146 ; MIPS32R5EL-NEXT: nop
147 %1 = add <2 x i8> %a, %b
151 ; Test that vector spilled to the outgoing argument area have the expected
154 define <2 x i8> @i8x2_7(<2 x i8> %a, <2 x i8> %b, <2 x i8> %c, <2 x i8> %d, <2 x i8> %e, <2 x i8> %f, <2 x i8> %g) {
155 ; MIPS32EB-LABEL: i8x2_7:
156 ; MIPS32EB: # %bb.0: # %entry
157 ; MIPS32EB-NEXT: addu $1, $4, $5
158 ; MIPS32EB-NEXT: addu $1, $1, $6
159 ; MIPS32EB-NEXT: addu $1, $1, $7
160 ; MIPS32EB-NEXT: andi $2, $5, 65280
161 ; MIPS32EB-NEXT: lbu $3, 19($sp)
162 ; MIPS32EB-NEXT: addu $1, $1, $3
163 ; MIPS32EB-NEXT: srl $2, $2, 8
164 ; MIPS32EB-NEXT: andi $3, $4, 65280
165 ; MIPS32EB-NEXT: srl $3, $3, 8
166 ; MIPS32EB-NEXT: addu $2, $3, $2
167 ; MIPS32EB-NEXT: andi $3, $6, 65280
168 ; MIPS32EB-NEXT: srl $3, $3, 8
169 ; MIPS32EB-NEXT: lbu $4, 23($sp)
170 ; MIPS32EB-NEXT: addu $2, $2, $3
171 ; MIPS32EB-NEXT: addu $1, $1, $4
172 ; MIPS32EB-NEXT: lbu $3, 27($sp)
173 ; MIPS32EB-NEXT: addu $1, $1, $3
174 ; MIPS32EB-NEXT: andi $3, $7, 65280
175 ; MIPS32EB-NEXT: srl $3, $3, 8
176 ; MIPS32EB-NEXT: lbu $4, 26($sp)
177 ; MIPS32EB-NEXT: andi $1, $1, 255
178 ; MIPS32EB-NEXT: addu $2, $2, $3
179 ; MIPS32EB-NEXT: lbu $3, 18($sp)
180 ; MIPS32EB-NEXT: addu $2, $2, $3
181 ; MIPS32EB-NEXT: lbu $3, 22($sp)
182 ; MIPS32EB-NEXT: addu $2, $2, $3
183 ; MIPS32EB-NEXT: addu $2, $2, $4
184 ; MIPS32EB-NEXT: sll $2, $2, 8
185 ; MIPS32EB-NEXT: or $2, $1, $2
186 ; MIPS32EB-NEXT: jr $ra
189 ; MIPS64-LABEL: i8x2_7:
190 ; MIPS64: # %bb.0: # %entry
191 ; MIPS64-NEXT: sll $1, $5, 0
192 ; MIPS64-NEXT: sll $2, $4, 0
193 ; MIPS64-NEXT: addu $3, $2, $1
194 ; MIPS64-NEXT: sll $4, $6, 0
195 ; MIPS64-NEXT: andi $1, $1, 65280
196 ; MIPS64-NEXT: srl $1, $1, 8
197 ; MIPS64-NEXT: andi $2, $2, 65280
198 ; MIPS64-NEXT: srl $2, $2, 8
199 ; MIPS64-NEXT: addu $1, $2, $1
200 ; MIPS64-NEXT: addu $2, $3, $4
201 ; MIPS64-NEXT: sll $3, $7, 0
202 ; MIPS64-NEXT: andi $5, $3, 65280
203 ; MIPS64-NEXT: andi $4, $4, 65280
204 ; MIPS64-NEXT: srl $4, $4, 8
205 ; MIPS64-NEXT: addu $2, $2, $3
206 ; MIPS64-NEXT: addu $1, $1, $4
207 ; MIPS64-NEXT: srl $3, $5, 8
208 ; MIPS64-NEXT: sll $4, $8, 0
209 ; MIPS64-NEXT: andi $5, $4, 65280
210 ; MIPS64-NEXT: srl $5, $5, 8
211 ; MIPS64-NEXT: addu $1, $1, $3
212 ; MIPS64-NEXT: addu $2, $2, $4
213 ; MIPS64-NEXT: sll $3, $9, 0
214 ; MIPS64-NEXT: addu $2, $2, $3
215 ; MIPS64-NEXT: sll $4, $10, 0
216 ; MIPS64-NEXT: addu $2, $2, $4
217 ; MIPS64-NEXT: andi $2, $2, 255
218 ; MIPS64-NEXT: addu $1, $1, $5
219 ; MIPS64-NEXT: andi $3, $3, 65280
220 ; MIPS64-NEXT: srl $3, $3, 8
221 ; MIPS64-NEXT: addu $1, $1, $3
222 ; MIPS64-NEXT: andi $3, $4, 65280
223 ; MIPS64-NEXT: srl $3, $3, 8
224 ; MIPS64-NEXT: addu $1, $1, $3
225 ; MIPS64-NEXT: sll $1, $1, 8
226 ; MIPS64-NEXT: or $2, $2, $1
227 ; MIPS64-NEXT: jr $ra
230 ; MIPS32R5EB-LABEL: i8x2_7:
231 ; MIPS32R5EB: # %bb.0: # %entry
232 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -144
233 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 144
234 ; MIPS32R5EB-NEXT: sw $ra, 140($sp) # 4-byte Folded Spill
235 ; MIPS32R5EB-NEXT: sw $fp, 136($sp) # 4-byte Folded Spill
236 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
237 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
238 ; MIPS32R5EB-NEXT: move $fp, $sp
239 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
240 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
241 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
242 ; MIPS32R5EB-NEXT: sh $5, 128($sp)
243 ; MIPS32R5EB-NEXT: sh $4, 132($sp)
244 ; MIPS32R5EB-NEXT: lbu $1, 129($sp)
245 ; MIPS32R5EB-NEXT: sw $1, 76($sp)
246 ; MIPS32R5EB-NEXT: lbu $1, 128($sp)
247 ; MIPS32R5EB-NEXT: sw $1, 68($sp)
248 ; MIPS32R5EB-NEXT: lbu $1, 133($sp)
249 ; MIPS32R5EB-NEXT: sw $1, 60($sp)
250 ; MIPS32R5EB-NEXT: lbu $1, 132($sp)
251 ; MIPS32R5EB-NEXT: sw $1, 52($sp)
252 ; MIPS32R5EB-NEXT: ld.d $w0, 64($sp)
253 ; MIPS32R5EB-NEXT: ld.d $w1, 48($sp)
254 ; MIPS32R5EB-NEXT: addv.d $w0, $w1, $w0
255 ; MIPS32R5EB-NEXT: sh $6, 124($sp)
256 ; MIPS32R5EB-NEXT: lbu $1, 125($sp)
257 ; MIPS32R5EB-NEXT: sw $1, 92($sp)
258 ; MIPS32R5EB-NEXT: lbu $1, 124($sp)
259 ; MIPS32R5EB-NEXT: sw $1, 84($sp)
260 ; MIPS32R5EB-NEXT: ld.d $w1, 80($sp)
261 ; MIPS32R5EB-NEXT: addv.d $w0, $w0, $w1
262 ; MIPS32R5EB-NEXT: sh $7, 120($sp)
263 ; MIPS32R5EB-NEXT: lbu $1, 121($sp)
264 ; MIPS32R5EB-NEXT: sw $1, 108($sp)
265 ; MIPS32R5EB-NEXT: lbu $1, 120($sp)
266 ; MIPS32R5EB-NEXT: sw $1, 100($sp)
267 ; MIPS32R5EB-NEXT: ld.d $w1, 96($sp)
268 ; MIPS32R5EB-NEXT: addv.d $w0, $w0, $w1
269 ; MIPS32R5EB-NEXT: lbu $1, 163($fp)
270 ; MIPS32R5EB-NEXT: sw $1, 12($sp)
271 ; MIPS32R5EB-NEXT: lbu $1, 162($fp)
272 ; MIPS32R5EB-NEXT: sw $1, 4($sp)
273 ; MIPS32R5EB-NEXT: ld.d $w1, 0($sp)
274 ; MIPS32R5EB-NEXT: addv.d $w0, $w0, $w1
275 ; MIPS32R5EB-NEXT: lbu $1, 167($fp)
276 ; MIPS32R5EB-NEXT: sw $1, 28($sp)
277 ; MIPS32R5EB-NEXT: lbu $1, 166($fp)
278 ; MIPS32R5EB-NEXT: sw $1, 20($sp)
279 ; MIPS32R5EB-NEXT: ld.d $w1, 16($sp)
280 ; MIPS32R5EB-NEXT: addv.d $w0, $w0, $w1
281 ; MIPS32R5EB-NEXT: lbu $1, 171($fp)
282 ; MIPS32R5EB-NEXT: sw $1, 44($sp)
283 ; MIPS32R5EB-NEXT: lbu $1, 170($fp)
284 ; MIPS32R5EB-NEXT: sw $1, 36($sp)
285 ; MIPS32R5EB-NEXT: ld.d $w1, 32($sp)
286 ; MIPS32R5EB-NEXT: addv.d $w0, $w0, $w1
287 ; MIPS32R5EB-NEXT: shf.w $w0, $w0, 177
288 ; MIPS32R5EB-NEXT: copy_s.w $1, $w0[1]
289 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[3]
290 ; MIPS32R5EB-NEXT: sb $2, 117($sp)
291 ; MIPS32R5EB-NEXT: sb $1, 116($sp)
292 ; MIPS32R5EB-NEXT: lhu $2, 116($sp)
293 ; MIPS32R5EB-NEXT: move $sp, $fp
294 ; MIPS32R5EB-NEXT: lw $fp, 136($sp) # 4-byte Folded Reload
295 ; MIPS32R5EB-NEXT: lw $ra, 140($sp) # 4-byte Folded Reload
296 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 144
297 ; MIPS32R5EB-NEXT: jr $ra
298 ; MIPS32R5EB-NEXT: nop
300 ; MIPS64R5-LABEL: i8x2_7:
301 ; MIPS64R5: # %bb.0: # %entry
302 ; MIPS64R5-NEXT: daddiu $sp, $sp, -32
303 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 32
304 ; MIPS64R5-NEXT: sh $5, 24($sp)
305 ; MIPS64R5-NEXT: sh $4, 28($sp)
306 ; MIPS64R5-NEXT: lb $1, 25($sp)
307 ; MIPS64R5-NEXT: lb $2, 24($sp)
308 ; MIPS64R5-NEXT: insert.d $w0[0], $2
309 ; MIPS64R5-NEXT: insert.d $w0[1], $1
310 ; MIPS64R5-NEXT: lb $1, 29($sp)
311 ; MIPS64R5-NEXT: lb $2, 28($sp)
312 ; MIPS64R5-NEXT: insert.d $w1[0], $2
313 ; MIPS64R5-NEXT: insert.d $w1[1], $1
314 ; MIPS64R5-NEXT: addv.d $w0, $w1, $w0
315 ; MIPS64R5-NEXT: sh $6, 20($sp)
316 ; MIPS64R5-NEXT: lb $1, 21($sp)
317 ; MIPS64R5-NEXT: lb $2, 20($sp)
318 ; MIPS64R5-NEXT: insert.d $w1[0], $2
319 ; MIPS64R5-NEXT: insert.d $w1[1], $1
320 ; MIPS64R5-NEXT: addv.d $w0, $w0, $w1
321 ; MIPS64R5-NEXT: sh $7, 16($sp)
322 ; MIPS64R5-NEXT: lb $1, 17($sp)
323 ; MIPS64R5-NEXT: lb $2, 16($sp)
324 ; MIPS64R5-NEXT: insert.d $w1[0], $2
325 ; MIPS64R5-NEXT: insert.d $w1[1], $1
326 ; MIPS64R5-NEXT: addv.d $w0, $w0, $w1
327 ; MIPS64R5-NEXT: sh $8, 12($sp)
328 ; MIPS64R5-NEXT: lb $1, 13($sp)
329 ; MIPS64R5-NEXT: lb $2, 12($sp)
330 ; MIPS64R5-NEXT: insert.d $w1[0], $2
331 ; MIPS64R5-NEXT: insert.d $w1[1], $1
332 ; MIPS64R5-NEXT: addv.d $w0, $w0, $w1
333 ; MIPS64R5-NEXT: sh $9, 8($sp)
334 ; MIPS64R5-NEXT: lb $1, 9($sp)
335 ; MIPS64R5-NEXT: lb $2, 8($sp)
336 ; MIPS64R5-NEXT: insert.d $w1[0], $2
337 ; MIPS64R5-NEXT: insert.d $w1[1], $1
338 ; MIPS64R5-NEXT: addv.d $w0, $w0, $w1
339 ; MIPS64R5-NEXT: sh $10, 4($sp)
340 ; MIPS64R5-NEXT: lb $1, 5($sp)
341 ; MIPS64R5-NEXT: lb $2, 4($sp)
342 ; MIPS64R5-NEXT: insert.d $w1[0], $2
343 ; MIPS64R5-NEXT: insert.d $w1[1], $1
344 ; MIPS64R5-NEXT: addv.d $w0, $w0, $w1
345 ; MIPS64R5-NEXT: copy_s.d $1, $w0[0]
346 ; MIPS64R5-NEXT: copy_s.d $2, $w0[1]
347 ; MIPS64R5-NEXT: sb $2, 1($sp)
348 ; MIPS64R5-NEXT: sb $1, 0($sp)
349 ; MIPS64R5-NEXT: lh $2, 0($sp)
350 ; MIPS64R5-NEXT: daddiu $sp, $sp, 32
351 ; MIPS64R5-NEXT: jr $ra
354 ; MIPS32EL-LABEL: i8x2_7:
355 ; MIPS32EL: # %bb.0: # %entry
356 ; MIPS32EL-NEXT: addu $1, $4, $5
357 ; MIPS32EL-NEXT: addu $1, $1, $6
358 ; MIPS32EL-NEXT: addu $1, $1, $7
359 ; MIPS32EL-NEXT: andi $2, $5, 65280
360 ; MIPS32EL-NEXT: lbu $3, 16($sp)
361 ; MIPS32EL-NEXT: addu $1, $1, $3
362 ; MIPS32EL-NEXT: srl $2, $2, 8
363 ; MIPS32EL-NEXT: andi $3, $4, 65280
364 ; MIPS32EL-NEXT: srl $3, $3, 8
365 ; MIPS32EL-NEXT: addu $2, $3, $2
366 ; MIPS32EL-NEXT: andi $3, $6, 65280
367 ; MIPS32EL-NEXT: srl $3, $3, 8
368 ; MIPS32EL-NEXT: lbu $4, 20($sp)
369 ; MIPS32EL-NEXT: addu $2, $2, $3
370 ; MIPS32EL-NEXT: addu $1, $1, $4
371 ; MIPS32EL-NEXT: lbu $3, 24($sp)
372 ; MIPS32EL-NEXT: addu $1, $1, $3
373 ; MIPS32EL-NEXT: andi $3, $7, 65280
374 ; MIPS32EL-NEXT: srl $3, $3, 8
375 ; MIPS32EL-NEXT: lbu $4, 25($sp)
376 ; MIPS32EL-NEXT: andi $1, $1, 255
377 ; MIPS32EL-NEXT: addu $2, $2, $3
378 ; MIPS32EL-NEXT: lbu $3, 17($sp)
379 ; MIPS32EL-NEXT: addu $2, $2, $3
380 ; MIPS32EL-NEXT: lbu $3, 21($sp)
381 ; MIPS32EL-NEXT: addu $2, $2, $3
382 ; MIPS32EL-NEXT: addu $2, $2, $4
383 ; MIPS32EL-NEXT: sll $2, $2, 8
384 ; MIPS32EL-NEXT: or $2, $1, $2
385 ; MIPS32EL-NEXT: jr $ra
388 ; MIPS32R5EL-LABEL: i8x2_7:
389 ; MIPS32R5EL: # %bb.0: # %entry
390 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -144
391 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 144
392 ; MIPS32R5EL-NEXT: sw $ra, 140($sp) # 4-byte Folded Spill
393 ; MIPS32R5EL-NEXT: sw $fp, 136($sp) # 4-byte Folded Spill
394 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
395 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
396 ; MIPS32R5EL-NEXT: move $fp, $sp
397 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
398 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
399 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
400 ; MIPS32R5EL-NEXT: sh $5, 128($sp)
401 ; MIPS32R5EL-NEXT: sh $4, 132($sp)
402 ; MIPS32R5EL-NEXT: lbu $1, 129($sp)
403 ; MIPS32R5EL-NEXT: sw $1, 72($sp)
404 ; MIPS32R5EL-NEXT: lbu $1, 128($sp)
405 ; MIPS32R5EL-NEXT: sw $1, 64($sp)
406 ; MIPS32R5EL-NEXT: lbu $1, 133($sp)
407 ; MIPS32R5EL-NEXT: sw $1, 56($sp)
408 ; MIPS32R5EL-NEXT: lbu $1, 132($sp)
409 ; MIPS32R5EL-NEXT: sw $1, 48($sp)
410 ; MIPS32R5EL-NEXT: ld.d $w0, 64($sp)
411 ; MIPS32R5EL-NEXT: ld.d $w1, 48($sp)
412 ; MIPS32R5EL-NEXT: addv.d $w0, $w1, $w0
413 ; MIPS32R5EL-NEXT: sh $6, 124($sp)
414 ; MIPS32R5EL-NEXT: lbu $1, 125($sp)
415 ; MIPS32R5EL-NEXT: sw $1, 88($sp)
416 ; MIPS32R5EL-NEXT: lbu $1, 124($sp)
417 ; MIPS32R5EL-NEXT: sw $1, 80($sp)
418 ; MIPS32R5EL-NEXT: ld.d $w1, 80($sp)
419 ; MIPS32R5EL-NEXT: addv.d $w0, $w0, $w1
420 ; MIPS32R5EL-NEXT: sh $7, 120($sp)
421 ; MIPS32R5EL-NEXT: lbu $1, 121($sp)
422 ; MIPS32R5EL-NEXT: sw $1, 104($sp)
423 ; MIPS32R5EL-NEXT: lbu $1, 120($sp)
424 ; MIPS32R5EL-NEXT: sw $1, 96($sp)
425 ; MIPS32R5EL-NEXT: ld.d $w1, 96($sp)
426 ; MIPS32R5EL-NEXT: addv.d $w0, $w0, $w1
427 ; MIPS32R5EL-NEXT: lbu $1, 161($fp)
428 ; MIPS32R5EL-NEXT: sw $1, 8($sp)
429 ; MIPS32R5EL-NEXT: lbu $1, 160($fp)
430 ; MIPS32R5EL-NEXT: sw $1, 0($sp)
431 ; MIPS32R5EL-NEXT: ld.d $w1, 0($sp)
432 ; MIPS32R5EL-NEXT: addv.d $w0, $w0, $w1
433 ; MIPS32R5EL-NEXT: lbu $1, 165($fp)
434 ; MIPS32R5EL-NEXT: sw $1, 24($sp)
435 ; MIPS32R5EL-NEXT: lbu $1, 164($fp)
436 ; MIPS32R5EL-NEXT: sw $1, 16($sp)
437 ; MIPS32R5EL-NEXT: ld.d $w1, 16($sp)
438 ; MIPS32R5EL-NEXT: addv.d $w0, $w0, $w1
439 ; MIPS32R5EL-NEXT: lbu $1, 169($fp)
440 ; MIPS32R5EL-NEXT: sw $1, 40($sp)
441 ; MIPS32R5EL-NEXT: lbu $1, 168($fp)
442 ; MIPS32R5EL-NEXT: sw $1, 32($sp)
443 ; MIPS32R5EL-NEXT: ld.d $w1, 32($sp)
444 ; MIPS32R5EL-NEXT: addv.d $w0, $w0, $w1
445 ; MIPS32R5EL-NEXT: copy_s.w $1, $w0[0]
446 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[2]
447 ; MIPS32R5EL-NEXT: sb $2, 117($sp)
448 ; MIPS32R5EL-NEXT: sb $1, 116($sp)
449 ; MIPS32R5EL-NEXT: lhu $2, 116($sp)
450 ; MIPS32R5EL-NEXT: move $sp, $fp
451 ; MIPS32R5EL-NEXT: lw $fp, 136($sp) # 4-byte Folded Reload
452 ; MIPS32R5EL-NEXT: lw $ra, 140($sp) # 4-byte Folded Reload
453 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 144
454 ; MIPS32R5EL-NEXT: jr $ra
455 ; MIPS32R5EL-NEXT: nop
457 %0 = add <2 x i8> %a, %b
458 %1 = add <2 x i8> %0, %c
459 %2 = add <2 x i8> %1, %d
460 %3 = add <2 x i8> %2, %e
461 %4 = add <2 x i8> %3, %f
462 %5 = add <2 x i8> %4, %g
466 define <4 x i8> @i8_4(<4 x i8> %a, <4 x i8> %b) {
467 ; MIPS32-LABEL: i8_4:
469 ; MIPS32-NEXT: srl $1, $5, 24
470 ; MIPS32-NEXT: srl $2, $4, 24
471 ; MIPS32-NEXT: addu $1, $2, $1
472 ; MIPS32-NEXT: addu $2, $4, $5
473 ; MIPS32-NEXT: sll $1, $1, 24
474 ; MIPS32-NEXT: srl $3, $5, 16
475 ; MIPS32-NEXT: srl $6, $4, 16
476 ; MIPS32-NEXT: addu $3, $6, $3
477 ; MIPS32-NEXT: andi $3, $3, 255
478 ; MIPS32-NEXT: sll $3, $3, 16
479 ; MIPS32-NEXT: or $1, $1, $3
480 ; MIPS32-NEXT: andi $2, $2, 255
481 ; MIPS32-NEXT: srl $3, $5, 8
482 ; MIPS32-NEXT: srl $4, $4, 8
483 ; MIPS32-NEXT: addu $3, $4, $3
484 ; MIPS32-NEXT: sll $3, $3, 8
485 ; MIPS32-NEXT: or $2, $2, $3
486 ; MIPS32-NEXT: andi $2, $2, 65535
487 ; MIPS32-NEXT: or $2, $2, $1
488 ; MIPS32-NEXT: jr $ra
491 ; MIPS64-LABEL: i8_4:
493 ; MIPS64-NEXT: sll $1, $5, 0
494 ; MIPS64-NEXT: srl $2, $1, 24
495 ; MIPS64-NEXT: sll $3, $4, 0
496 ; MIPS64-NEXT: srl $4, $3, 24
497 ; MIPS64-NEXT: addu $2, $4, $2
498 ; MIPS64-NEXT: addu $4, $3, $1
499 ; MIPS64-NEXT: sll $2, $2, 24
500 ; MIPS64-NEXT: srl $5, $1, 16
501 ; MIPS64-NEXT: srl $6, $3, 16
502 ; MIPS64-NEXT: addu $5, $6, $5
503 ; MIPS64-NEXT: andi $5, $5, 255
504 ; MIPS64-NEXT: sll $5, $5, 16
505 ; MIPS64-NEXT: or $2, $2, $5
506 ; MIPS64-NEXT: andi $4, $4, 255
507 ; MIPS64-NEXT: srl $1, $1, 8
508 ; MIPS64-NEXT: srl $3, $3, 8
509 ; MIPS64-NEXT: addu $1, $3, $1
510 ; MIPS64-NEXT: sll $1, $1, 8
511 ; MIPS64-NEXT: or $1, $4, $1
512 ; MIPS64-NEXT: andi $1, $1, 65535
513 ; MIPS64-NEXT: or $2, $1, $2
514 ; MIPS64-NEXT: jr $ra
517 ; MIPS32R5-LABEL: i8_4:
519 ; MIPS32R5-NEXT: addiu $sp, $sp, -16
520 ; MIPS32R5-NEXT: .cfi_def_cfa_offset 16
521 ; MIPS32R5-NEXT: sw $5, 8($sp)
522 ; MIPS32R5-NEXT: sw $4, 12($sp)
523 ; MIPS32R5-NEXT: lbu $1, 9($sp)
524 ; MIPS32R5-NEXT: lbu $2, 8($sp)
525 ; MIPS32R5-NEXT: insert.w $w0[0], $2
526 ; MIPS32R5-NEXT: insert.w $w0[1], $1
527 ; MIPS32R5-NEXT: lbu $1, 10($sp)
528 ; MIPS32R5-NEXT: insert.w $w0[2], $1
529 ; MIPS32R5-NEXT: lbu $1, 11($sp)
530 ; MIPS32R5-NEXT: insert.w $w0[3], $1
531 ; MIPS32R5-NEXT: lbu $1, 13($sp)
532 ; MIPS32R5-NEXT: lbu $2, 12($sp)
533 ; MIPS32R5-NEXT: insert.w $w1[0], $2
534 ; MIPS32R5-NEXT: insert.w $w1[1], $1
535 ; MIPS32R5-NEXT: lbu $1, 14($sp)
536 ; MIPS32R5-NEXT: insert.w $w1[2], $1
537 ; MIPS32R5-NEXT: lbu $1, 15($sp)
538 ; MIPS32R5-NEXT: insert.w $w1[3], $1
539 ; MIPS32R5-NEXT: addv.w $w0, $w1, $w0
540 ; MIPS32R5-NEXT: copy_s.w $1, $w0[0]
541 ; MIPS32R5-NEXT: copy_s.w $2, $w0[1]
542 ; MIPS32R5-NEXT: copy_s.w $3, $w0[2]
543 ; MIPS32R5-NEXT: copy_s.w $4, $w0[3]
544 ; MIPS32R5-NEXT: sb $4, 7($sp)
545 ; MIPS32R5-NEXT: sb $3, 6($sp)
546 ; MIPS32R5-NEXT: sb $2, 5($sp)
547 ; MIPS32R5-NEXT: sb $1, 4($sp)
548 ; MIPS32R5-NEXT: lw $2, 4($sp)
549 ; MIPS32R5-NEXT: addiu $sp, $sp, 16
550 ; MIPS32R5-NEXT: jr $ra
553 ; MIPS64R5-LABEL: i8_4:
555 ; MIPS64R5-NEXT: daddiu $sp, $sp, -16
556 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 16
557 ; MIPS64R5-NEXT: sw $5, 8($sp)
558 ; MIPS64R5-NEXT: sw $4, 12($sp)
559 ; MIPS64R5-NEXT: lbu $1, 9($sp)
560 ; MIPS64R5-NEXT: lbu $2, 8($sp)
561 ; MIPS64R5-NEXT: insert.w $w0[0], $2
562 ; MIPS64R5-NEXT: insert.w $w0[1], $1
563 ; MIPS64R5-NEXT: lbu $1, 10($sp)
564 ; MIPS64R5-NEXT: insert.w $w0[2], $1
565 ; MIPS64R5-NEXT: lbu $1, 11($sp)
566 ; MIPS64R5-NEXT: insert.w $w0[3], $1
567 ; MIPS64R5-NEXT: lbu $1, 13($sp)
568 ; MIPS64R5-NEXT: lbu $2, 12($sp)
569 ; MIPS64R5-NEXT: insert.w $w1[0], $2
570 ; MIPS64R5-NEXT: insert.w $w1[1], $1
571 ; MIPS64R5-NEXT: lbu $1, 14($sp)
572 ; MIPS64R5-NEXT: insert.w $w1[2], $1
573 ; MIPS64R5-NEXT: lbu $1, 15($sp)
574 ; MIPS64R5-NEXT: insert.w $w1[3], $1
575 ; MIPS64R5-NEXT: addv.w $w0, $w1, $w0
576 ; MIPS64R5-NEXT: copy_s.w $1, $w0[0]
577 ; MIPS64R5-NEXT: copy_s.w $2, $w0[1]
578 ; MIPS64R5-NEXT: copy_s.w $3, $w0[2]
579 ; MIPS64R5-NEXT: copy_s.w $4, $w0[3]
580 ; MIPS64R5-NEXT: sb $4, 7($sp)
581 ; MIPS64R5-NEXT: sb $3, 6($sp)
582 ; MIPS64R5-NEXT: sb $2, 5($sp)
583 ; MIPS64R5-NEXT: sb $1, 4($sp)
584 ; MIPS64R5-NEXT: lw $2, 4($sp)
585 ; MIPS64R5-NEXT: daddiu $sp, $sp, 16
586 ; MIPS64R5-NEXT: jr $ra
588 %1 = add <4 x i8> %a, %b
592 define <8 x i8> @i8_8(<8 x i8> %a, <8 x i8> %b) {
593 ; MIPS32-LABEL: i8_8:
595 ; MIPS32-NEXT: addu $1, $4, $6
596 ; MIPS32-NEXT: srl $2, $6, 24
597 ; MIPS32-NEXT: srl $3, $4, 24
598 ; MIPS32-NEXT: addu $2, $3, $2
599 ; MIPS32-NEXT: andi $1, $1, 255
600 ; MIPS32-NEXT: srl $3, $6, 8
601 ; MIPS32-NEXT: srl $8, $4, 8
602 ; MIPS32-NEXT: addu $3, $8, $3
603 ; MIPS32-NEXT: sll $3, $3, 8
604 ; MIPS32-NEXT: srl $6, $6, 16
605 ; MIPS32-NEXT: srl $4, $4, 16
606 ; MIPS32-NEXT: or $1, $1, $3
607 ; MIPS32-NEXT: sll $2, $2, 24
608 ; MIPS32-NEXT: addu $3, $4, $6
609 ; MIPS32-NEXT: andi $3, $3, 255
610 ; MIPS32-NEXT: sll $3, $3, 16
611 ; MIPS32-NEXT: srl $4, $7, 24
612 ; MIPS32-NEXT: srl $6, $5, 24
613 ; MIPS32-NEXT: or $2, $2, $3
614 ; MIPS32-NEXT: andi $1, $1, 65535
615 ; MIPS32-NEXT: addu $3, $6, $4
616 ; MIPS32-NEXT: addu $4, $5, $7
617 ; MIPS32-NEXT: sll $3, $3, 24
618 ; MIPS32-NEXT: srl $6, $7, 16
619 ; MIPS32-NEXT: srl $8, $5, 16
620 ; MIPS32-NEXT: addu $6, $8, $6
621 ; MIPS32-NEXT: andi $6, $6, 255
622 ; MIPS32-NEXT: sll $6, $6, 16
623 ; MIPS32-NEXT: or $2, $1, $2
624 ; MIPS32-NEXT: or $1, $3, $6
625 ; MIPS32-NEXT: andi $3, $4, 255
626 ; MIPS32-NEXT: srl $4, $7, 8
627 ; MIPS32-NEXT: srl $5, $5, 8
628 ; MIPS32-NEXT: addu $4, $5, $4
629 ; MIPS32-NEXT: sll $4, $4, 8
630 ; MIPS32-NEXT: or $3, $3, $4
631 ; MIPS32-NEXT: andi $3, $3, 65535
632 ; MIPS32-NEXT: or $3, $3, $1
633 ; MIPS32-NEXT: jr $ra
636 ; MIPS64-LABEL: i8_8:
638 ; MIPS64-NEXT: dsrl $1, $5, 48
639 ; MIPS64-NEXT: sll $1, $1, 0
640 ; MIPS64-NEXT: dsrl $2, $4, 48
641 ; MIPS64-NEXT: sll $2, $2, 0
642 ; MIPS64-NEXT: addu $1, $2, $1
643 ; MIPS64-NEXT: dsrl $2, $5, 56
644 ; MIPS64-NEXT: andi $1, $1, 255
645 ; MIPS64-NEXT: sll $2, $2, 0
646 ; MIPS64-NEXT: dsrl $3, $4, 56
647 ; MIPS64-NEXT: sll $3, $3, 0
648 ; MIPS64-NEXT: addu $2, $3, $2
649 ; MIPS64-NEXT: dsrl $3, $5, 40
650 ; MIPS64-NEXT: sll $2, $2, 24
651 ; MIPS64-NEXT: sll $1, $1, 16
652 ; MIPS64-NEXT: sll $3, $3, 0
653 ; MIPS64-NEXT: dsrl $6, $4, 40
654 ; MIPS64-NEXT: sll $6, $6, 0
655 ; MIPS64-NEXT: addu $3, $6, $3
656 ; MIPS64-NEXT: dsrl $6, $5, 32
657 ; MIPS64-NEXT: sll $7, $4, 0
658 ; MIPS64-NEXT: sll $5, $5, 0
659 ; MIPS64-NEXT: srl $8, $5, 24
660 ; MIPS64-NEXT: srl $9, $7, 24
661 ; MIPS64-NEXT: or $1, $2, $1
662 ; MIPS64-NEXT: sll $2, $3, 8
663 ; MIPS64-NEXT: sll $3, $6, 0
664 ; MIPS64-NEXT: dsrl $4, $4, 32
665 ; MIPS64-NEXT: sll $4, $4, 0
666 ; MIPS64-NEXT: addu $3, $4, $3
667 ; MIPS64-NEXT: andi $3, $3, 255
668 ; MIPS64-NEXT: or $2, $3, $2
669 ; MIPS64-NEXT: andi $2, $2, 65535
670 ; MIPS64-NEXT: or $1, $2, $1
671 ; MIPS64-NEXT: addu $2, $9, $8
672 ; MIPS64-NEXT: addu $3, $7, $5
673 ; MIPS64-NEXT: sll $2, $2, 24
674 ; MIPS64-NEXT: srl $4, $5, 16
675 ; MIPS64-NEXT: srl $6, $7, 16
676 ; MIPS64-NEXT: addu $4, $6, $4
677 ; MIPS64-NEXT: andi $4, $4, 255
678 ; MIPS64-NEXT: sll $4, $4, 16
679 ; MIPS64-NEXT: dsll $1, $1, 32
680 ; MIPS64-NEXT: or $2, $2, $4
681 ; MIPS64-NEXT: andi $3, $3, 255
682 ; MIPS64-NEXT: srl $4, $5, 8
683 ; MIPS64-NEXT: srl $5, $7, 8
684 ; MIPS64-NEXT: addu $4, $5, $4
685 ; MIPS64-NEXT: sll $4, $4, 8
686 ; MIPS64-NEXT: or $3, $3, $4
687 ; MIPS64-NEXT: andi $3, $3, 65535
688 ; MIPS64-NEXT: or $2, $3, $2
689 ; MIPS64-NEXT: dsll $2, $2, 32
690 ; MIPS64-NEXT: dsrl $2, $2, 32
691 ; MIPS64-NEXT: or $2, $2, $1
692 ; MIPS64-NEXT: jr $ra
695 ; MIPS32R5EB-LABEL: i8_8:
696 ; MIPS32R5EB: # %bb.0:
697 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -48
698 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 48
699 ; MIPS32R5EB-NEXT: sw $ra, 44($sp) # 4-byte Folded Spill
700 ; MIPS32R5EB-NEXT: sw $fp, 40($sp) # 4-byte Folded Spill
701 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
702 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
703 ; MIPS32R5EB-NEXT: move $fp, $sp
704 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
705 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
706 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
707 ; MIPS32R5EB-NEXT: sw $6, 24($sp)
708 ; MIPS32R5EB-NEXT: lbu $1, 25($sp)
709 ; MIPS32R5EB-NEXT: lbu $2, 24($sp)
710 ; MIPS32R5EB-NEXT: sw $7, 28($sp)
711 ; MIPS32R5EB-NEXT: insert.h $w0[0], $2
712 ; MIPS32R5EB-NEXT: insert.h $w0[1], $1
713 ; MIPS32R5EB-NEXT: lbu $1, 26($sp)
714 ; MIPS32R5EB-NEXT: sw $4, 32($sp)
715 ; MIPS32R5EB-NEXT: insert.h $w0[2], $1
716 ; MIPS32R5EB-NEXT: lbu $1, 27($sp)
717 ; MIPS32R5EB-NEXT: insert.h $w0[3], $1
718 ; MIPS32R5EB-NEXT: lbu $1, 28($sp)
719 ; MIPS32R5EB-NEXT: sw $5, 36($sp)
720 ; MIPS32R5EB-NEXT: insert.h $w0[4], $1
721 ; MIPS32R5EB-NEXT: lbu $1, 33($sp)
722 ; MIPS32R5EB-NEXT: lbu $2, 32($sp)
723 ; MIPS32R5EB-NEXT: insert.h $w1[0], $2
724 ; MIPS32R5EB-NEXT: insert.h $w1[1], $1
725 ; MIPS32R5EB-NEXT: lbu $1, 29($sp)
726 ; MIPS32R5EB-NEXT: lbu $2, 34($sp)
727 ; MIPS32R5EB-NEXT: insert.h $w1[2], $2
728 ; MIPS32R5EB-NEXT: insert.h $w0[5], $1
729 ; MIPS32R5EB-NEXT: lbu $1, 35($sp)
730 ; MIPS32R5EB-NEXT: lbu $2, 31($sp)
731 ; MIPS32R5EB-NEXT: lbu $3, 30($sp)
732 ; MIPS32R5EB-NEXT: lbu $4, 39($sp)
733 ; MIPS32R5EB-NEXT: insert.h $w0[6], $3
734 ; MIPS32R5EB-NEXT: insert.h $w0[7], $2
735 ; MIPS32R5EB-NEXT: insert.h $w1[3], $1
736 ; MIPS32R5EB-NEXT: lbu $1, 36($sp)
737 ; MIPS32R5EB-NEXT: insert.h $w1[4], $1
738 ; MIPS32R5EB-NEXT: lbu $1, 37($sp)
739 ; MIPS32R5EB-NEXT: insert.h $w1[5], $1
740 ; MIPS32R5EB-NEXT: lbu $1, 38($sp)
741 ; MIPS32R5EB-NEXT: insert.h $w1[6], $1
742 ; MIPS32R5EB-NEXT: insert.h $w1[7], $4
743 ; MIPS32R5EB-NEXT: addv.h $w0, $w1, $w0
744 ; MIPS32R5EB-NEXT: copy_s.h $1, $w0[0]
745 ; MIPS32R5EB-NEXT: copy_s.h $2, $w0[1]
746 ; MIPS32R5EB-NEXT: copy_s.h $3, $w0[2]
747 ; MIPS32R5EB-NEXT: copy_s.h $4, $w0[3]
748 ; MIPS32R5EB-NEXT: copy_s.h $5, $w0[4]
749 ; MIPS32R5EB-NEXT: copy_s.h $6, $w0[5]
750 ; MIPS32R5EB-NEXT: copy_s.h $7, $w0[6]
751 ; MIPS32R5EB-NEXT: copy_s.h $8, $w0[7]
752 ; MIPS32R5EB-NEXT: sb $8, 23($sp)
753 ; MIPS32R5EB-NEXT: sb $7, 22($sp)
754 ; MIPS32R5EB-NEXT: sb $6, 21($sp)
755 ; MIPS32R5EB-NEXT: sb $5, 20($sp)
756 ; MIPS32R5EB-NEXT: sb $4, 19($sp)
757 ; MIPS32R5EB-NEXT: sb $3, 18($sp)
758 ; MIPS32R5EB-NEXT: sb $2, 17($sp)
759 ; MIPS32R5EB-NEXT: sb $1, 16($sp)
760 ; MIPS32R5EB-NEXT: lw $1, 20($sp)
761 ; MIPS32R5EB-NEXT: sw $1, 12($sp)
762 ; MIPS32R5EB-NEXT: lw $1, 16($sp)
763 ; MIPS32R5EB-NEXT: sw $1, 4($sp)
764 ; MIPS32R5EB-NEXT: ld.w $w0, 0($sp)
765 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[1]
766 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[3]
767 ; MIPS32R5EB-NEXT: move $sp, $fp
768 ; MIPS32R5EB-NEXT: lw $fp, 40($sp) # 4-byte Folded Reload
769 ; MIPS32R5EB-NEXT: lw $ra, 44($sp) # 4-byte Folded Reload
770 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 48
771 ; MIPS32R5EB-NEXT: jr $ra
772 ; MIPS32R5EB-NEXT: nop
774 ; MIPS64R5-LABEL: i8_8:
776 ; MIPS64R5-NEXT: daddiu $sp, $sp, -32
777 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 32
778 ; MIPS64R5-NEXT: sd $5, 16($sp)
779 ; MIPS64R5-NEXT: lbu $1, 17($sp)
780 ; MIPS64R5-NEXT: lbu $2, 16($sp)
781 ; MIPS64R5-NEXT: sd $4, 24($sp)
782 ; MIPS64R5-NEXT: insert.h $w0[0], $2
783 ; MIPS64R5-NEXT: insert.h $w0[1], $1
784 ; MIPS64R5-NEXT: lbu $1, 18($sp)
785 ; MIPS64R5-NEXT: insert.h $w0[2], $1
786 ; MIPS64R5-NEXT: lbu $1, 19($sp)
787 ; MIPS64R5-NEXT: insert.h $w0[3], $1
788 ; MIPS64R5-NEXT: lbu $1, 20($sp)
789 ; MIPS64R5-NEXT: insert.h $w0[4], $1
790 ; MIPS64R5-NEXT: lbu $1, 25($sp)
791 ; MIPS64R5-NEXT: lbu $2, 24($sp)
792 ; MIPS64R5-NEXT: insert.h $w1[0], $2
793 ; MIPS64R5-NEXT: insert.h $w1[1], $1
794 ; MIPS64R5-NEXT: lbu $1, 21($sp)
795 ; MIPS64R5-NEXT: lbu $2, 26($sp)
796 ; MIPS64R5-NEXT: insert.h $w1[2], $2
797 ; MIPS64R5-NEXT: insert.h $w0[5], $1
798 ; MIPS64R5-NEXT: lbu $1, 27($sp)
799 ; MIPS64R5-NEXT: lbu $2, 23($sp)
800 ; MIPS64R5-NEXT: lbu $3, 22($sp)
801 ; MIPS64R5-NEXT: lbu $4, 31($sp)
802 ; MIPS64R5-NEXT: insert.h $w0[6], $3
803 ; MIPS64R5-NEXT: insert.h $w0[7], $2
804 ; MIPS64R5-NEXT: insert.h $w1[3], $1
805 ; MIPS64R5-NEXT: lbu $1, 28($sp)
806 ; MIPS64R5-NEXT: insert.h $w1[4], $1
807 ; MIPS64R5-NEXT: lbu $1, 29($sp)
808 ; MIPS64R5-NEXT: insert.h $w1[5], $1
809 ; MIPS64R5-NEXT: lbu $1, 30($sp)
810 ; MIPS64R5-NEXT: insert.h $w1[6], $1
811 ; MIPS64R5-NEXT: insert.h $w1[7], $4
812 ; MIPS64R5-NEXT: addv.h $w0, $w1, $w0
813 ; MIPS64R5-NEXT: copy_s.h $1, $w0[0]
814 ; MIPS64R5-NEXT: copy_s.h $2, $w0[1]
815 ; MIPS64R5-NEXT: copy_s.h $3, $w0[2]
816 ; MIPS64R5-NEXT: copy_s.h $4, $w0[3]
817 ; MIPS64R5-NEXT: copy_s.h $5, $w0[4]
818 ; MIPS64R5-NEXT: copy_s.h $6, $w0[5]
819 ; MIPS64R5-NEXT: copy_s.h $7, $w0[6]
820 ; MIPS64R5-NEXT: copy_s.h $8, $w0[7]
821 ; MIPS64R5-NEXT: sb $8, 15($sp)
822 ; MIPS64R5-NEXT: sb $7, 14($sp)
823 ; MIPS64R5-NEXT: sb $6, 13($sp)
824 ; MIPS64R5-NEXT: sb $5, 12($sp)
825 ; MIPS64R5-NEXT: sb $4, 11($sp)
826 ; MIPS64R5-NEXT: sb $3, 10($sp)
827 ; MIPS64R5-NEXT: sb $2, 9($sp)
828 ; MIPS64R5-NEXT: sb $1, 8($sp)
829 ; MIPS64R5-NEXT: ld $2, 8($sp)
830 ; MIPS64R5-NEXT: daddiu $sp, $sp, 32
831 ; MIPS64R5-NEXT: jr $ra
834 ; MIPS32R5EL-LABEL: i8_8:
835 ; MIPS32R5EL: # %bb.0:
836 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -48
837 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 48
838 ; MIPS32R5EL-NEXT: sw $ra, 44($sp) # 4-byte Folded Spill
839 ; MIPS32R5EL-NEXT: sw $fp, 40($sp) # 4-byte Folded Spill
840 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
841 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
842 ; MIPS32R5EL-NEXT: move $fp, $sp
843 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
844 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
845 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
846 ; MIPS32R5EL-NEXT: sw $6, 24($sp)
847 ; MIPS32R5EL-NEXT: lbu $1, 25($sp)
848 ; MIPS32R5EL-NEXT: lbu $2, 24($sp)
849 ; MIPS32R5EL-NEXT: sw $7, 28($sp)
850 ; MIPS32R5EL-NEXT: insert.h $w0[0], $2
851 ; MIPS32R5EL-NEXT: insert.h $w0[1], $1
852 ; MIPS32R5EL-NEXT: lbu $1, 26($sp)
853 ; MIPS32R5EL-NEXT: sw $4, 32($sp)
854 ; MIPS32R5EL-NEXT: insert.h $w0[2], $1
855 ; MIPS32R5EL-NEXT: lbu $1, 27($sp)
856 ; MIPS32R5EL-NEXT: insert.h $w0[3], $1
857 ; MIPS32R5EL-NEXT: lbu $1, 28($sp)
858 ; MIPS32R5EL-NEXT: sw $5, 36($sp)
859 ; MIPS32R5EL-NEXT: insert.h $w0[4], $1
860 ; MIPS32R5EL-NEXT: lbu $1, 33($sp)
861 ; MIPS32R5EL-NEXT: lbu $2, 32($sp)
862 ; MIPS32R5EL-NEXT: insert.h $w1[0], $2
863 ; MIPS32R5EL-NEXT: insert.h $w1[1], $1
864 ; MIPS32R5EL-NEXT: lbu $1, 29($sp)
865 ; MIPS32R5EL-NEXT: lbu $2, 34($sp)
866 ; MIPS32R5EL-NEXT: insert.h $w1[2], $2
867 ; MIPS32R5EL-NEXT: insert.h $w0[5], $1
868 ; MIPS32R5EL-NEXT: lbu $1, 35($sp)
869 ; MIPS32R5EL-NEXT: lbu $2, 31($sp)
870 ; MIPS32R5EL-NEXT: lbu $3, 30($sp)
871 ; MIPS32R5EL-NEXT: lbu $4, 39($sp)
872 ; MIPS32R5EL-NEXT: insert.h $w0[6], $3
873 ; MIPS32R5EL-NEXT: insert.h $w0[7], $2
874 ; MIPS32R5EL-NEXT: insert.h $w1[3], $1
875 ; MIPS32R5EL-NEXT: lbu $1, 36($sp)
876 ; MIPS32R5EL-NEXT: insert.h $w1[4], $1
877 ; MIPS32R5EL-NEXT: lbu $1, 37($sp)
878 ; MIPS32R5EL-NEXT: insert.h $w1[5], $1
879 ; MIPS32R5EL-NEXT: lbu $1, 38($sp)
880 ; MIPS32R5EL-NEXT: insert.h $w1[6], $1
881 ; MIPS32R5EL-NEXT: insert.h $w1[7], $4
882 ; MIPS32R5EL-NEXT: addv.h $w0, $w1, $w0
883 ; MIPS32R5EL-NEXT: copy_s.h $1, $w0[0]
884 ; MIPS32R5EL-NEXT: copy_s.h $2, $w0[1]
885 ; MIPS32R5EL-NEXT: copy_s.h $3, $w0[2]
886 ; MIPS32R5EL-NEXT: copy_s.h $4, $w0[3]
887 ; MIPS32R5EL-NEXT: copy_s.h $5, $w0[4]
888 ; MIPS32R5EL-NEXT: copy_s.h $6, $w0[5]
889 ; MIPS32R5EL-NEXT: copy_s.h $7, $w0[6]
890 ; MIPS32R5EL-NEXT: copy_s.h $8, $w0[7]
891 ; MIPS32R5EL-NEXT: sb $8, 23($sp)
892 ; MIPS32R5EL-NEXT: sb $7, 22($sp)
893 ; MIPS32R5EL-NEXT: sb $6, 21($sp)
894 ; MIPS32R5EL-NEXT: sb $5, 20($sp)
895 ; MIPS32R5EL-NEXT: sb $4, 19($sp)
896 ; MIPS32R5EL-NEXT: sb $3, 18($sp)
897 ; MIPS32R5EL-NEXT: sb $2, 17($sp)
898 ; MIPS32R5EL-NEXT: sb $1, 16($sp)
899 ; MIPS32R5EL-NEXT: lw $1, 20($sp)
900 ; MIPS32R5EL-NEXT: sw $1, 8($sp)
901 ; MIPS32R5EL-NEXT: lw $1, 16($sp)
902 ; MIPS32R5EL-NEXT: sw $1, 0($sp)
903 ; MIPS32R5EL-NEXT: ld.w $w0, 0($sp)
904 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[0]
905 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[2]
906 ; MIPS32R5EL-NEXT: move $sp, $fp
907 ; MIPS32R5EL-NEXT: lw $fp, 40($sp) # 4-byte Folded Reload
908 ; MIPS32R5EL-NEXT: lw $ra, 44($sp) # 4-byte Folded Reload
909 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 48
910 ; MIPS32R5EL-NEXT: jr $ra
911 ; MIPS32R5EL-NEXT: nop
912 %1 = add <8 x i8> %a, %b
916 define <16 x i8> @i8_16(<16 x i8> %a, <16 x i8> %b) {
917 ; MIPS32-LABEL: i8_16:
919 ; MIPS32-NEXT: lw $1, 16($sp)
920 ; MIPS32-NEXT: lw $2, 20($sp)
921 ; MIPS32-NEXT: lw $3, 24($sp)
922 ; MIPS32-NEXT: srl $8, $3, 8
923 ; MIPS32-NEXT: srl $9, $6, 8
924 ; MIPS32-NEXT: srl $10, $2, 16
925 ; MIPS32-NEXT: srl $11, $5, 16
926 ; MIPS32-NEXT: srl $12, $1, 16
927 ; MIPS32-NEXT: srl $13, $4, 16
928 ; MIPS32-NEXT: srl $14, $1, 8
929 ; MIPS32-NEXT: srl $15, $4, 8
930 ; MIPS32-NEXT: addu $24, $6, $3
931 ; MIPS32-NEXT: addu $14, $15, $14
932 ; MIPS32-NEXT: addu $15, $4, $1
933 ; MIPS32-NEXT: addu $12, $13, $12
934 ; MIPS32-NEXT: addu $10, $11, $10
935 ; MIPS32-NEXT: srl $11, $2, 24
936 ; MIPS32-NEXT: addu $13, $5, $2
937 ; MIPS32-NEXT: addu $8, $9, $8
938 ; MIPS32-NEXT: srl $1, $1, 24
939 ; MIPS32-NEXT: srl $4, $4, 24
940 ; MIPS32-NEXT: srl $9, $5, 24
941 ; MIPS32-NEXT: srl $25, $3, 24
942 ; MIPS32-NEXT: srl $gp, $6, 24
943 ; MIPS32-NEXT: addu $25, $gp, $25
944 ; MIPS32-NEXT: andi $10, $10, 255
945 ; MIPS32-NEXT: addu $9, $9, $11
946 ; MIPS32-NEXT: andi $11, $12, 255
947 ; MIPS32-NEXT: addu $1, $4, $1
948 ; MIPS32-NEXT: andi $4, $15, 255
949 ; MIPS32-NEXT: sll $12, $14, 8
950 ; MIPS32-NEXT: andi $14, $24, 255
951 ; MIPS32-NEXT: sll $8, $8, 8
952 ; MIPS32-NEXT: andi $13, $13, 255
953 ; MIPS32-NEXT: srl $2, $2, 8
954 ; MIPS32-NEXT: srl $5, $5, 8
955 ; MIPS32-NEXT: addu $2, $5, $2
956 ; MIPS32-NEXT: sll $2, $2, 8
957 ; MIPS32-NEXT: srl $3, $3, 16
958 ; MIPS32-NEXT: srl $5, $6, 16
959 ; MIPS32-NEXT: or $2, $13, $2
960 ; MIPS32-NEXT: or $6, $14, $8
961 ; MIPS32-NEXT: or $4, $4, $12
962 ; MIPS32-NEXT: sll $1, $1, 24
963 ; MIPS32-NEXT: sll $8, $11, 16
964 ; MIPS32-NEXT: sll $9, $9, 24
965 ; MIPS32-NEXT: sll $10, $10, 16
966 ; MIPS32-NEXT: sll $11, $25, 24
967 ; MIPS32-NEXT: addu $3, $5, $3
968 ; MIPS32-NEXT: andi $3, $3, 255
969 ; MIPS32-NEXT: sll $3, $3, 16
970 ; MIPS32-NEXT: lw $5, 28($sp)
971 ; MIPS32-NEXT: srl $12, $5, 24
972 ; MIPS32-NEXT: srl $13, $7, 24
973 ; MIPS32-NEXT: or $11, $11, $3
974 ; MIPS32-NEXT: or $3, $9, $10
975 ; MIPS32-NEXT: or $1, $1, $8
976 ; MIPS32-NEXT: andi $4, $4, 65535
977 ; MIPS32-NEXT: addu $8, $13, $12
978 ; MIPS32-NEXT: andi $6, $6, 65535
979 ; MIPS32-NEXT: andi $9, $2, 65535
980 ; MIPS32-NEXT: addu $10, $7, $5
981 ; MIPS32-NEXT: sll $8, $8, 24
982 ; MIPS32-NEXT: srl $2, $5, 16
983 ; MIPS32-NEXT: srl $12, $7, 16
984 ; MIPS32-NEXT: addu $2, $12, $2
985 ; MIPS32-NEXT: andi $2, $2, 255
986 ; MIPS32-NEXT: sll $12, $2, 16
987 ; MIPS32-NEXT: or $2, $4, $1
988 ; MIPS32-NEXT: or $3, $9, $3
989 ; MIPS32-NEXT: or $4, $6, $11
990 ; MIPS32-NEXT: or $1, $8, $12
991 ; MIPS32-NEXT: andi $6, $10, 255
992 ; MIPS32-NEXT: srl $5, $5, 8
993 ; MIPS32-NEXT: srl $7, $7, 8
994 ; MIPS32-NEXT: addu $5, $7, $5
995 ; MIPS32-NEXT: sll $5, $5, 8
996 ; MIPS32-NEXT: or $5, $6, $5
997 ; MIPS32-NEXT: andi $5, $5, 65535
998 ; MIPS32-NEXT: or $5, $5, $1
999 ; MIPS32-NEXT: jr $ra
1002 ; MIPS64-LABEL: i8_16:
1004 ; MIPS64-NEXT: sll $1, $6, 0
1005 ; MIPS64-NEXT: dsrl $2, $6, 56
1006 ; MIPS64-NEXT: dsrl $3, $6, 48
1007 ; MIPS64-NEXT: dsrl $8, $4, 48
1008 ; MIPS64-NEXT: srl $9, $1, 16
1009 ; MIPS64-NEXT: sll $10, $4, 0
1010 ; MIPS64-NEXT: srl $11, $10, 16
1011 ; MIPS64-NEXT: dsrl $12, $7, 56
1012 ; MIPS64-NEXT: addu $13, $10, $1
1013 ; MIPS64-NEXT: addu $9, $11, $9
1014 ; MIPS64-NEXT: sll $2, $2, 0
1015 ; MIPS64-NEXT: dsrl $11, $7, 48
1016 ; MIPS64-NEXT: srl $14, $1, 8
1017 ; MIPS64-NEXT: srl $15, $10, 8
1018 ; MIPS64-NEXT: addu $14, $15, $14
1019 ; MIPS64-NEXT: dsrl $15, $4, 56
1020 ; MIPS64-NEXT: dsrl $24, $7, 40
1021 ; MIPS64-NEXT: sll $3, $3, 0
1022 ; MIPS64-NEXT: sll $8, $8, 0
1023 ; MIPS64-NEXT: sll $15, $15, 0
1024 ; MIPS64-NEXT: andi $9, $9, 255
1025 ; MIPS64-NEXT: addu $2, $15, $2
1026 ; MIPS64-NEXT: andi $13, $13, 255
1027 ; MIPS64-NEXT: sll $14, $14, 8
1028 ; MIPS64-NEXT: addu $3, $8, $3
1029 ; MIPS64-NEXT: sll $8, $11, 0
1030 ; MIPS64-NEXT: srl $1, $1, 24
1031 ; MIPS64-NEXT: sll $11, $12, 0
1032 ; MIPS64-NEXT: dsrl $12, $5, 56
1033 ; MIPS64-NEXT: dsrl $15, $5, 48
1034 ; MIPS64-NEXT: andi $3, $3, 255
1035 ; MIPS64-NEXT: dsrl $25, $6, 40
1036 ; MIPS64-NEXT: sll $15, $15, 0
1037 ; MIPS64-NEXT: srl $10, $10, 24
1038 ; MIPS64-NEXT: sll $12, $12, 0
1039 ; MIPS64-NEXT: or $13, $13, $14
1040 ; MIPS64-NEXT: sll $14, $24, 0
1041 ; MIPS64-NEXT: sll $2, $2, 24
1042 ; MIPS64-NEXT: addu $11, $12, $11
1043 ; MIPS64-NEXT: sll $9, $9, 16
1044 ; MIPS64-NEXT: addu $1, $10, $1
1045 ; MIPS64-NEXT: addu $8, $15, $8
1046 ; MIPS64-NEXT: sll $10, $25, 0
1047 ; MIPS64-NEXT: dsrl $12, $4, 40
1048 ; MIPS64-NEXT: sll $12, $12, 0
1049 ; MIPS64-NEXT: addu $10, $12, $10
1050 ; MIPS64-NEXT: sll $3, $3, 16
1051 ; MIPS64-NEXT: andi $8, $8, 255
1052 ; MIPS64-NEXT: sll $1, $1, 24
1053 ; MIPS64-NEXT: dsrl $12, $5, 40
1054 ; MIPS64-NEXT: sll $12, $12, 0
1055 ; MIPS64-NEXT: dsrl $6, $6, 32
1056 ; MIPS64-NEXT: or $1, $1, $9
1057 ; MIPS64-NEXT: addu $9, $12, $14
1058 ; MIPS64-NEXT: sll $11, $11, 24
1059 ; MIPS64-NEXT: sll $8, $8, 16
1060 ; MIPS64-NEXT: dsrl $12, $7, 32
1061 ; MIPS64-NEXT: andi $13, $13, 65535
1062 ; MIPS64-NEXT: or $2, $2, $3
1063 ; MIPS64-NEXT: sll $3, $10, 8
1064 ; MIPS64-NEXT: sll $6, $6, 0
1065 ; MIPS64-NEXT: dsrl $4, $4, 32
1066 ; MIPS64-NEXT: sll $4, $4, 0
1067 ; MIPS64-NEXT: addu $4, $4, $6
1068 ; MIPS64-NEXT: andi $4, $4, 255
1069 ; MIPS64-NEXT: or $3, $4, $3
1070 ; MIPS64-NEXT: andi $3, $3, 65535
1071 ; MIPS64-NEXT: or $2, $3, $2
1072 ; MIPS64-NEXT: or $1, $13, $1
1073 ; MIPS64-NEXT: or $3, $11, $8
1074 ; MIPS64-NEXT: sll $4, $9, 8
1075 ; MIPS64-NEXT: sll $6, $12, 0
1076 ; MIPS64-NEXT: dsrl $8, $5, 32
1077 ; MIPS64-NEXT: sll $8, $8, 0
1078 ; MIPS64-NEXT: addu $6, $8, $6
1079 ; MIPS64-NEXT: andi $6, $6, 255
1080 ; MIPS64-NEXT: or $4, $6, $4
1081 ; MIPS64-NEXT: andi $4, $4, 65535
1082 ; MIPS64-NEXT: dsll $1, $1, 32
1083 ; MIPS64-NEXT: or $3, $4, $3
1084 ; MIPS64-NEXT: sll $4, $7, 0
1085 ; MIPS64-NEXT: srl $6, $4, 24
1086 ; MIPS64-NEXT: sll $5, $5, 0
1087 ; MIPS64-NEXT: srl $7, $5, 24
1088 ; MIPS64-NEXT: addu $8, $5, $4
1089 ; MIPS64-NEXT: dsll $2, $2, 32
1090 ; MIPS64-NEXT: dsrl $1, $1, 32
1091 ; MIPS64-NEXT: addu $6, $7, $6
1092 ; MIPS64-NEXT: sll $6, $6, 24
1093 ; MIPS64-NEXT: srl $7, $4, 16
1094 ; MIPS64-NEXT: srl $9, $5, 16
1095 ; MIPS64-NEXT: addu $7, $9, $7
1096 ; MIPS64-NEXT: andi $7, $7, 255
1097 ; MIPS64-NEXT: sll $7, $7, 16
1098 ; MIPS64-NEXT: or $2, $1, $2
1099 ; MIPS64-NEXT: dsll $1, $3, 32
1100 ; MIPS64-NEXT: or $3, $6, $7
1101 ; MIPS64-NEXT: andi $6, $8, 255
1102 ; MIPS64-NEXT: srl $4, $4, 8
1103 ; MIPS64-NEXT: srl $5, $5, 8
1104 ; MIPS64-NEXT: addu $4, $5, $4
1105 ; MIPS64-NEXT: sll $4, $4, 8
1106 ; MIPS64-NEXT: or $4, $6, $4
1107 ; MIPS64-NEXT: andi $4, $4, 65535
1108 ; MIPS64-NEXT: or $3, $4, $3
1109 ; MIPS64-NEXT: dsll $3, $3, 32
1110 ; MIPS64-NEXT: dsrl $3, $3, 32
1111 ; MIPS64-NEXT: or $3, $3, $1
1112 ; MIPS64-NEXT: jr $ra
1115 ; MIPS32R5EB-LABEL: i8_16:
1116 ; MIPS32R5EB: # %bb.0:
1117 ; MIPS32R5EB-NEXT: lw $1, 20($sp)
1118 ; MIPS32R5EB-NEXT: lw $2, 16($sp)
1119 ; MIPS32R5EB-NEXT: insert.w $w0[0], $2
1120 ; MIPS32R5EB-NEXT: insert.w $w0[1], $1
1121 ; MIPS32R5EB-NEXT: lw $1, 24($sp)
1122 ; MIPS32R5EB-NEXT: insert.w $w0[2], $1
1123 ; MIPS32R5EB-NEXT: lw $1, 28($sp)
1124 ; MIPS32R5EB-NEXT: insert.w $w0[3], $1
1125 ; MIPS32R5EB-NEXT: shf.b $w0, $w0, 27
1126 ; MIPS32R5EB-NEXT: insert.w $w1[0], $4
1127 ; MIPS32R5EB-NEXT: insert.w $w1[1], $5
1128 ; MIPS32R5EB-NEXT: insert.w $w1[2], $6
1129 ; MIPS32R5EB-NEXT: insert.w $w1[3], $7
1130 ; MIPS32R5EB-NEXT: shf.b $w1, $w1, 27
1131 ; MIPS32R5EB-NEXT: addv.b $w0, $w1, $w0
1132 ; MIPS32R5EB-NEXT: shf.b $w0, $w0, 27
1133 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[0]
1134 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[1]
1135 ; MIPS32R5EB-NEXT: copy_s.w $4, $w0[2]
1136 ; MIPS32R5EB-NEXT: copy_s.w $5, $w0[3]
1137 ; MIPS32R5EB-NEXT: jr $ra
1138 ; MIPS32R5EB-NEXT: nop
1140 ; MIPS64R5EB-LABEL: i8_16:
1141 ; MIPS64R5EB: # %bb.0:
1142 ; MIPS64R5EB-NEXT: insert.d $w0[0], $6
1143 ; MIPS64R5EB-NEXT: insert.d $w0[1], $7
1144 ; MIPS64R5EB-NEXT: shf.b $w0, $w0, 27
1145 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
1146 ; MIPS64R5EB-NEXT: insert.d $w1[0], $4
1147 ; MIPS64R5EB-NEXT: insert.d $w1[1], $5
1148 ; MIPS64R5EB-NEXT: shf.b $w1, $w1, 27
1149 ; MIPS64R5EB-NEXT: shf.w $w1, $w1, 177
1150 ; MIPS64R5EB-NEXT: addv.b $w0, $w1, $w0
1151 ; MIPS64R5EB-NEXT: shf.b $w0, $w0, 27
1152 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
1153 ; MIPS64R5EB-NEXT: copy_s.d $2, $w0[0]
1154 ; MIPS64R5EB-NEXT: copy_s.d $3, $w0[1]
1155 ; MIPS64R5EB-NEXT: jr $ra
1156 ; MIPS64R5EB-NEXT: nop
1158 ; MIPS32R5EL-LABEL: i8_16:
1159 ; MIPS32R5EL: # %bb.0:
1160 ; MIPS32R5EL-NEXT: lw $1, 20($sp)
1161 ; MIPS32R5EL-NEXT: lw $2, 16($sp)
1162 ; MIPS32R5EL-NEXT: insert.w $w0[0], $2
1163 ; MIPS32R5EL-NEXT: insert.w $w0[1], $1
1164 ; MIPS32R5EL-NEXT: lw $1, 24($sp)
1165 ; MIPS32R5EL-NEXT: insert.w $w0[2], $1
1166 ; MIPS32R5EL-NEXT: lw $1, 28($sp)
1167 ; MIPS32R5EL-NEXT: insert.w $w0[3], $1
1168 ; MIPS32R5EL-NEXT: insert.w $w1[0], $4
1169 ; MIPS32R5EL-NEXT: insert.w $w1[1], $5
1170 ; MIPS32R5EL-NEXT: insert.w $w1[2], $6
1171 ; MIPS32R5EL-NEXT: insert.w $w1[3], $7
1172 ; MIPS32R5EL-NEXT: addv.b $w0, $w1, $w0
1173 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[0]
1174 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[1]
1175 ; MIPS32R5EL-NEXT: copy_s.w $4, $w0[2]
1176 ; MIPS32R5EL-NEXT: copy_s.w $5, $w0[3]
1177 ; MIPS32R5EL-NEXT: jr $ra
1178 ; MIPS32R5EL-NEXT: nop
1180 ; MIPS64R5EL-LABEL: i8_16:
1181 ; MIPS64R5EL: # %bb.0:
1182 ; MIPS64R5EL-NEXT: insert.d $w0[0], $6
1183 ; MIPS64R5EL-NEXT: insert.d $w0[1], $7
1184 ; MIPS64R5EL-NEXT: insert.d $w1[0], $4
1185 ; MIPS64R5EL-NEXT: insert.d $w1[1], $5
1186 ; MIPS64R5EL-NEXT: addv.b $w0, $w1, $w0
1187 ; MIPS64R5EL-NEXT: copy_s.d $2, $w0[0]
1188 ; MIPS64R5EL-NEXT: copy_s.d $3, $w0[1]
1189 ; MIPS64R5EL-NEXT: jr $ra
1190 ; MIPS64R5EL-NEXT: nop
1191 %1 = add <16 x i8> %a, %b
1195 define <2 x i16> @i16_2(<2 x i16> %a, <2 x i16> %b) {
1196 ; MIPS32-LABEL: i16_2:
1198 ; MIPS32-NEXT: addu $1, $4, $5
1199 ; MIPS32-NEXT: andi $1, $1, 65535
1200 ; MIPS32-NEXT: srl $2, $5, 16
1201 ; MIPS32-NEXT: srl $3, $4, 16
1202 ; MIPS32-NEXT: addu $2, $3, $2
1203 ; MIPS32-NEXT: sll $2, $2, 16
1204 ; MIPS32-NEXT: or $2, $1, $2
1205 ; MIPS32-NEXT: jr $ra
1208 ; MIPS64-LABEL: i16_2:
1210 ; MIPS64-NEXT: sll $1, $5, 0
1211 ; MIPS64-NEXT: sll $2, $4, 0
1212 ; MIPS64-NEXT: addu $3, $2, $1
1213 ; MIPS64-NEXT: andi $3, $3, 65535
1214 ; MIPS64-NEXT: srl $1, $1, 16
1215 ; MIPS64-NEXT: srl $2, $2, 16
1216 ; MIPS64-NEXT: addu $1, $2, $1
1217 ; MIPS64-NEXT: sll $1, $1, 16
1218 ; MIPS64-NEXT: or $2, $3, $1
1219 ; MIPS64-NEXT: jr $ra
1222 ; MIPS32R5EB-LABEL: i16_2:
1223 ; MIPS32R5EB: # %bb.0:
1224 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -64
1225 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 64
1226 ; MIPS32R5EB-NEXT: sw $ra, 60($sp) # 4-byte Folded Spill
1227 ; MIPS32R5EB-NEXT: sw $fp, 56($sp) # 4-byte Folded Spill
1228 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
1229 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
1230 ; MIPS32R5EB-NEXT: move $fp, $sp
1231 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
1232 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
1233 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
1234 ; MIPS32R5EB-NEXT: sw $5, 48($sp)
1235 ; MIPS32R5EB-NEXT: sw $4, 52($sp)
1236 ; MIPS32R5EB-NEXT: lhu $1, 50($sp)
1237 ; MIPS32R5EB-NEXT: sw $1, 28($sp)
1238 ; MIPS32R5EB-NEXT: lhu $1, 48($sp)
1239 ; MIPS32R5EB-NEXT: sw $1, 20($sp)
1240 ; MIPS32R5EB-NEXT: lhu $1, 54($sp)
1241 ; MIPS32R5EB-NEXT: sw $1, 12($sp)
1242 ; MIPS32R5EB-NEXT: lhu $1, 52($sp)
1243 ; MIPS32R5EB-NEXT: sw $1, 4($sp)
1244 ; MIPS32R5EB-NEXT: ld.d $w0, 16($sp)
1245 ; MIPS32R5EB-NEXT: ld.d $w1, 0($sp)
1246 ; MIPS32R5EB-NEXT: addv.d $w0, $w1, $w0
1247 ; MIPS32R5EB-NEXT: shf.w $w0, $w0, 177
1248 ; MIPS32R5EB-NEXT: copy_s.w $1, $w0[1]
1249 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[3]
1250 ; MIPS32R5EB-NEXT: sh $2, 46($sp)
1251 ; MIPS32R5EB-NEXT: sh $1, 44($sp)
1252 ; MIPS32R5EB-NEXT: lw $2, 44($sp)
1253 ; MIPS32R5EB-NEXT: move $sp, $fp
1254 ; MIPS32R5EB-NEXT: lw $fp, 56($sp) # 4-byte Folded Reload
1255 ; MIPS32R5EB-NEXT: lw $ra, 60($sp) # 4-byte Folded Reload
1256 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 64
1257 ; MIPS32R5EB-NEXT: jr $ra
1258 ; MIPS32R5EB-NEXT: nop
1260 ; MIPS64R5-LABEL: i16_2:
1261 ; MIPS64R5: # %bb.0:
1262 ; MIPS64R5-NEXT: daddiu $sp, $sp, -16
1263 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 16
1264 ; MIPS64R5-NEXT: sw $5, 8($sp)
1265 ; MIPS64R5-NEXT: sw $4, 12($sp)
1266 ; MIPS64R5-NEXT: lh $1, 10($sp)
1267 ; MIPS64R5-NEXT: lh $2, 8($sp)
1268 ; MIPS64R5-NEXT: insert.d $w0[0], $2
1269 ; MIPS64R5-NEXT: insert.d $w0[1], $1
1270 ; MIPS64R5-NEXT: lh $1, 14($sp)
1271 ; MIPS64R5-NEXT: lh $2, 12($sp)
1272 ; MIPS64R5-NEXT: insert.d $w1[0], $2
1273 ; MIPS64R5-NEXT: insert.d $w1[1], $1
1274 ; MIPS64R5-NEXT: addv.d $w0, $w1, $w0
1275 ; MIPS64R5-NEXT: copy_s.d $1, $w0[0]
1276 ; MIPS64R5-NEXT: copy_s.d $2, $w0[1]
1277 ; MIPS64R5-NEXT: sh $2, 6($sp)
1278 ; MIPS64R5-NEXT: sh $1, 4($sp)
1279 ; MIPS64R5-NEXT: lw $2, 4($sp)
1280 ; MIPS64R5-NEXT: daddiu $sp, $sp, 16
1281 ; MIPS64R5-NEXT: jr $ra
1282 ; MIPS64R5-NEXT: nop
1284 ; MIPS32R5EL-LABEL: i16_2:
1285 ; MIPS32R5EL: # %bb.0:
1286 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -64
1287 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 64
1288 ; MIPS32R5EL-NEXT: sw $ra, 60($sp) # 4-byte Folded Spill
1289 ; MIPS32R5EL-NEXT: sw $fp, 56($sp) # 4-byte Folded Spill
1290 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
1291 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
1292 ; MIPS32R5EL-NEXT: move $fp, $sp
1293 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
1294 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
1295 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
1296 ; MIPS32R5EL-NEXT: sw $5, 48($sp)
1297 ; MIPS32R5EL-NEXT: sw $4, 52($sp)
1298 ; MIPS32R5EL-NEXT: lhu $1, 50($sp)
1299 ; MIPS32R5EL-NEXT: sw $1, 24($sp)
1300 ; MIPS32R5EL-NEXT: lhu $1, 48($sp)
1301 ; MIPS32R5EL-NEXT: sw $1, 16($sp)
1302 ; MIPS32R5EL-NEXT: lhu $1, 54($sp)
1303 ; MIPS32R5EL-NEXT: sw $1, 8($sp)
1304 ; MIPS32R5EL-NEXT: lhu $1, 52($sp)
1305 ; MIPS32R5EL-NEXT: sw $1, 0($sp)
1306 ; MIPS32R5EL-NEXT: ld.d $w0, 16($sp)
1307 ; MIPS32R5EL-NEXT: ld.d $w1, 0($sp)
1308 ; MIPS32R5EL-NEXT: addv.d $w0, $w1, $w0
1309 ; MIPS32R5EL-NEXT: copy_s.w $1, $w0[0]
1310 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[2]
1311 ; MIPS32R5EL-NEXT: sh $2, 46($sp)
1312 ; MIPS32R5EL-NEXT: sh $1, 44($sp)
1313 ; MIPS32R5EL-NEXT: lw $2, 44($sp)
1314 ; MIPS32R5EL-NEXT: move $sp, $fp
1315 ; MIPS32R5EL-NEXT: lw $fp, 56($sp) # 4-byte Folded Reload
1316 ; MIPS32R5EL-NEXT: lw $ra, 60($sp) # 4-byte Folded Reload
1317 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 64
1318 ; MIPS32R5EL-NEXT: jr $ra
1319 ; MIPS32R5EL-NEXT: nop
1320 %1 = add <2 x i16> %a, %b
1324 define <4 x i16> @i16_4(<4 x i16> %a, <4 x i16> %b) {
1325 ; MIPS32-LABEL: i16_4:
1327 ; MIPS32-NEXT: addu $1, $4, $6
1328 ; MIPS32-NEXT: andi $1, $1, 65535
1329 ; MIPS32-NEXT: srl $2, $6, 16
1330 ; MIPS32-NEXT: srl $3, $4, 16
1331 ; MIPS32-NEXT: addu $2, $3, $2
1332 ; MIPS32-NEXT: sll $2, $2, 16
1333 ; MIPS32-NEXT: or $2, $1, $2
1334 ; MIPS32-NEXT: addu $1, $5, $7
1335 ; MIPS32-NEXT: andi $1, $1, 65535
1336 ; MIPS32-NEXT: srl $3, $7, 16
1337 ; MIPS32-NEXT: srl $4, $5, 16
1338 ; MIPS32-NEXT: addu $3, $4, $3
1339 ; MIPS32-NEXT: sll $3, $3, 16
1340 ; MIPS32-NEXT: or $3, $1, $3
1341 ; MIPS32-NEXT: jr $ra
1344 ; MIPS64-LABEL: i16_4:
1346 ; MIPS64-NEXT: dsrl $1, $5, 48
1347 ; MIPS64-NEXT: sll $1, $1, 0
1348 ; MIPS64-NEXT: dsrl $2, $4, 48
1349 ; MIPS64-NEXT: sll $2, $2, 0
1350 ; MIPS64-NEXT: addu $1, $2, $1
1351 ; MIPS64-NEXT: dsrl $2, $5, 32
1352 ; MIPS64-NEXT: sll $1, $1, 16
1353 ; MIPS64-NEXT: sll $2, $2, 0
1354 ; MIPS64-NEXT: dsrl $3, $4, 32
1355 ; MIPS64-NEXT: sll $3, $3, 0
1356 ; MIPS64-NEXT: addu $2, $3, $2
1357 ; MIPS64-NEXT: andi $2, $2, 65535
1358 ; MIPS64-NEXT: or $1, $2, $1
1359 ; MIPS64-NEXT: sll $2, $5, 0
1360 ; MIPS64-NEXT: sll $3, $4, 0
1361 ; MIPS64-NEXT: addu $4, $3, $2
1362 ; MIPS64-NEXT: dsll $1, $1, 32
1363 ; MIPS64-NEXT: andi $4, $4, 65535
1364 ; MIPS64-NEXT: srl $2, $2, 16
1365 ; MIPS64-NEXT: srl $3, $3, 16
1366 ; MIPS64-NEXT: addu $2, $3, $2
1367 ; MIPS64-NEXT: sll $2, $2, 16
1368 ; MIPS64-NEXT: or $2, $4, $2
1369 ; MIPS64-NEXT: dsll $2, $2, 32
1370 ; MIPS64-NEXT: dsrl $2, $2, 32
1371 ; MIPS64-NEXT: or $2, $2, $1
1372 ; MIPS64-NEXT: jr $ra
1375 ; MIPS32R5EB-LABEL: i16_4:
1376 ; MIPS32R5EB: # %bb.0:
1377 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -48
1378 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 48
1379 ; MIPS32R5EB-NEXT: sw $ra, 44($sp) # 4-byte Folded Spill
1380 ; MIPS32R5EB-NEXT: sw $fp, 40($sp) # 4-byte Folded Spill
1381 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
1382 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
1383 ; MIPS32R5EB-NEXT: move $fp, $sp
1384 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
1385 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
1386 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
1387 ; MIPS32R5EB-NEXT: sw $6, 24($sp)
1388 ; MIPS32R5EB-NEXT: sw $7, 28($sp)
1389 ; MIPS32R5EB-NEXT: lhu $1, 26($sp)
1390 ; MIPS32R5EB-NEXT: lhu $2, 24($sp)
1391 ; MIPS32R5EB-NEXT: sw $4, 32($sp)
1392 ; MIPS32R5EB-NEXT: insert.w $w0[0], $2
1393 ; MIPS32R5EB-NEXT: insert.w $w0[1], $1
1394 ; MIPS32R5EB-NEXT: lhu $1, 28($sp)
1395 ; MIPS32R5EB-NEXT: sw $5, 36($sp)
1396 ; MIPS32R5EB-NEXT: insert.w $w0[2], $1
1397 ; MIPS32R5EB-NEXT: lhu $1, 30($sp)
1398 ; MIPS32R5EB-NEXT: insert.w $w0[3], $1
1399 ; MIPS32R5EB-NEXT: lhu $1, 34($sp)
1400 ; MIPS32R5EB-NEXT: lhu $2, 32($sp)
1401 ; MIPS32R5EB-NEXT: insert.w $w1[0], $2
1402 ; MIPS32R5EB-NEXT: insert.w $w1[1], $1
1403 ; MIPS32R5EB-NEXT: lhu $1, 36($sp)
1404 ; MIPS32R5EB-NEXT: insert.w $w1[2], $1
1405 ; MIPS32R5EB-NEXT: lhu $1, 38($sp)
1406 ; MIPS32R5EB-NEXT: insert.w $w1[3], $1
1407 ; MIPS32R5EB-NEXT: addv.w $w0, $w1, $w0
1408 ; MIPS32R5EB-NEXT: copy_s.w $1, $w0[0]
1409 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[1]
1410 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[2]
1411 ; MIPS32R5EB-NEXT: copy_s.w $4, $w0[3]
1412 ; MIPS32R5EB-NEXT: sh $4, 22($sp)
1413 ; MIPS32R5EB-NEXT: sh $3, 20($sp)
1414 ; MIPS32R5EB-NEXT: sh $2, 18($sp)
1415 ; MIPS32R5EB-NEXT: sh $1, 16($sp)
1416 ; MIPS32R5EB-NEXT: lw $1, 20($sp)
1417 ; MIPS32R5EB-NEXT: sw $1, 12($sp)
1418 ; MIPS32R5EB-NEXT: lw $1, 16($sp)
1419 ; MIPS32R5EB-NEXT: sw $1, 4($sp)
1420 ; MIPS32R5EB-NEXT: ld.w $w0, 0($sp)
1421 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[1]
1422 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[3]
1423 ; MIPS32R5EB-NEXT: move $sp, $fp
1424 ; MIPS32R5EB-NEXT: lw $fp, 40($sp) # 4-byte Folded Reload
1425 ; MIPS32R5EB-NEXT: lw $ra, 44($sp) # 4-byte Folded Reload
1426 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 48
1427 ; MIPS32R5EB-NEXT: jr $ra
1428 ; MIPS32R5EB-NEXT: nop
1430 ; MIPS64R5-LABEL: i16_4:
1431 ; MIPS64R5: # %bb.0:
1432 ; MIPS64R5-NEXT: daddiu $sp, $sp, -32
1433 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 32
1434 ; MIPS64R5-NEXT: sd $5, 16($sp)
1435 ; MIPS64R5-NEXT: sd $4, 24($sp)
1436 ; MIPS64R5-NEXT: lhu $1, 18($sp)
1437 ; MIPS64R5-NEXT: lhu $2, 16($sp)
1438 ; MIPS64R5-NEXT: insert.w $w0[0], $2
1439 ; MIPS64R5-NEXT: insert.w $w0[1], $1
1440 ; MIPS64R5-NEXT: lhu $1, 20($sp)
1441 ; MIPS64R5-NEXT: insert.w $w0[2], $1
1442 ; MIPS64R5-NEXT: lhu $1, 22($sp)
1443 ; MIPS64R5-NEXT: insert.w $w0[3], $1
1444 ; MIPS64R5-NEXT: lhu $1, 26($sp)
1445 ; MIPS64R5-NEXT: lhu $2, 24($sp)
1446 ; MIPS64R5-NEXT: insert.w $w1[0], $2
1447 ; MIPS64R5-NEXT: insert.w $w1[1], $1
1448 ; MIPS64R5-NEXT: lhu $1, 28($sp)
1449 ; MIPS64R5-NEXT: insert.w $w1[2], $1
1450 ; MIPS64R5-NEXT: lhu $1, 30($sp)
1451 ; MIPS64R5-NEXT: insert.w $w1[3], $1
1452 ; MIPS64R5-NEXT: addv.w $w0, $w1, $w0
1453 ; MIPS64R5-NEXT: copy_s.w $1, $w0[0]
1454 ; MIPS64R5-NEXT: copy_s.w $2, $w0[1]
1455 ; MIPS64R5-NEXT: copy_s.w $3, $w0[2]
1456 ; MIPS64R5-NEXT: copy_s.w $4, $w0[3]
1457 ; MIPS64R5-NEXT: sh $4, 14($sp)
1458 ; MIPS64R5-NEXT: sh $3, 12($sp)
1459 ; MIPS64R5-NEXT: sh $2, 10($sp)
1460 ; MIPS64R5-NEXT: sh $1, 8($sp)
1461 ; MIPS64R5-NEXT: ld $2, 8($sp)
1462 ; MIPS64R5-NEXT: daddiu $sp, $sp, 32
1463 ; MIPS64R5-NEXT: jr $ra
1464 ; MIPS64R5-NEXT: nop
1466 ; MIPS32R5EL-LABEL: i16_4:
1467 ; MIPS32R5EL: # %bb.0:
1468 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -48
1469 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 48
1470 ; MIPS32R5EL-NEXT: sw $ra, 44($sp) # 4-byte Folded Spill
1471 ; MIPS32R5EL-NEXT: sw $fp, 40($sp) # 4-byte Folded Spill
1472 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
1473 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
1474 ; MIPS32R5EL-NEXT: move $fp, $sp
1475 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
1476 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
1477 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
1478 ; MIPS32R5EL-NEXT: sw $6, 24($sp)
1479 ; MIPS32R5EL-NEXT: sw $7, 28($sp)
1480 ; MIPS32R5EL-NEXT: lhu $1, 26($sp)
1481 ; MIPS32R5EL-NEXT: lhu $2, 24($sp)
1482 ; MIPS32R5EL-NEXT: sw $4, 32($sp)
1483 ; MIPS32R5EL-NEXT: insert.w $w0[0], $2
1484 ; MIPS32R5EL-NEXT: insert.w $w0[1], $1
1485 ; MIPS32R5EL-NEXT: lhu $1, 28($sp)
1486 ; MIPS32R5EL-NEXT: sw $5, 36($sp)
1487 ; MIPS32R5EL-NEXT: insert.w $w0[2], $1
1488 ; MIPS32R5EL-NEXT: lhu $1, 30($sp)
1489 ; MIPS32R5EL-NEXT: insert.w $w0[3], $1
1490 ; MIPS32R5EL-NEXT: lhu $1, 34($sp)
1491 ; MIPS32R5EL-NEXT: lhu $2, 32($sp)
1492 ; MIPS32R5EL-NEXT: insert.w $w1[0], $2
1493 ; MIPS32R5EL-NEXT: insert.w $w1[1], $1
1494 ; MIPS32R5EL-NEXT: lhu $1, 36($sp)
1495 ; MIPS32R5EL-NEXT: insert.w $w1[2], $1
1496 ; MIPS32R5EL-NEXT: lhu $1, 38($sp)
1497 ; MIPS32R5EL-NEXT: insert.w $w1[3], $1
1498 ; MIPS32R5EL-NEXT: addv.w $w0, $w1, $w0
1499 ; MIPS32R5EL-NEXT: copy_s.w $1, $w0[0]
1500 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[1]
1501 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[2]
1502 ; MIPS32R5EL-NEXT: copy_s.w $4, $w0[3]
1503 ; MIPS32R5EL-NEXT: sh $4, 22($sp)
1504 ; MIPS32R5EL-NEXT: sh $3, 20($sp)
1505 ; MIPS32R5EL-NEXT: sh $2, 18($sp)
1506 ; MIPS32R5EL-NEXT: sh $1, 16($sp)
1507 ; MIPS32R5EL-NEXT: lw $1, 20($sp)
1508 ; MIPS32R5EL-NEXT: sw $1, 8($sp)
1509 ; MIPS32R5EL-NEXT: lw $1, 16($sp)
1510 ; MIPS32R5EL-NEXT: sw $1, 0($sp)
1511 ; MIPS32R5EL-NEXT: ld.w $w0, 0($sp)
1512 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[0]
1513 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[2]
1514 ; MIPS32R5EL-NEXT: move $sp, $fp
1515 ; MIPS32R5EL-NEXT: lw $fp, 40($sp) # 4-byte Folded Reload
1516 ; MIPS32R5EL-NEXT: lw $ra, 44($sp) # 4-byte Folded Reload
1517 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 48
1518 ; MIPS32R5EL-NEXT: jr $ra
1519 ; MIPS32R5EL-NEXT: nop
1520 %1 = add <4 x i16> %a, %b
1524 define <8 x i16> @i16_8(<8 x i16> %a, <8 x i16> %b) {
1525 ; MIPS32-LABEL: i16_8:
1527 ; MIPS32-NEXT: lw $1, 24($sp)
1528 ; MIPS32-NEXT: srl $2, $1, 16
1529 ; MIPS32-NEXT: srl $3, $6, 16
1530 ; MIPS32-NEXT: lw $8, 20($sp)
1531 ; MIPS32-NEXT: srl $9, $8, 16
1532 ; MIPS32-NEXT: srl $10, $5, 16
1533 ; MIPS32-NEXT: addu $9, $10, $9
1534 ; MIPS32-NEXT: addu $5, $5, $8
1535 ; MIPS32-NEXT: addu $2, $3, $2
1536 ; MIPS32-NEXT: addu $1, $6, $1
1537 ; MIPS32-NEXT: lw $3, 16($sp)
1538 ; MIPS32-NEXT: lw $6, 28($sp)
1539 ; MIPS32-NEXT: addu $8, $7, $6
1540 ; MIPS32-NEXT: andi $1, $1, 65535
1541 ; MIPS32-NEXT: sll $10, $2, 16
1542 ; MIPS32-NEXT: andi $5, $5, 65535
1543 ; MIPS32-NEXT: sll $9, $9, 16
1544 ; MIPS32-NEXT: addu $2, $4, $3
1545 ; MIPS32-NEXT: andi $2, $2, 65535
1546 ; MIPS32-NEXT: srl $3, $3, 16
1547 ; MIPS32-NEXT: srl $4, $4, 16
1548 ; MIPS32-NEXT: addu $3, $4, $3
1549 ; MIPS32-NEXT: sll $3, $3, 16
1550 ; MIPS32-NEXT: or $2, $2, $3
1551 ; MIPS32-NEXT: or $3, $5, $9
1552 ; MIPS32-NEXT: or $4, $1, $10
1553 ; MIPS32-NEXT: andi $1, $8, 65535
1554 ; MIPS32-NEXT: srl $5, $6, 16
1555 ; MIPS32-NEXT: srl $6, $7, 16
1556 ; MIPS32-NEXT: addu $5, $6, $5
1557 ; MIPS32-NEXT: sll $5, $5, 16
1558 ; MIPS32-NEXT: or $5, $1, $5
1559 ; MIPS32-NEXT: jr $ra
1562 ; MIPS64-LABEL: i16_8:
1564 ; MIPS64-NEXT: dsrl $1, $6, 48
1565 ; MIPS64-NEXT: dsrl $2, $7, 48
1566 ; MIPS64-NEXT: sll $1, $1, 0
1567 ; MIPS64-NEXT: dsrl $3, $4, 48
1568 ; MIPS64-NEXT: sll $3, $3, 0
1569 ; MIPS64-NEXT: addu $1, $3, $1
1570 ; MIPS64-NEXT: dsrl $3, $6, 32
1571 ; MIPS64-NEXT: sll $2, $2, 0
1572 ; MIPS64-NEXT: dsrl $8, $5, 48
1573 ; MIPS64-NEXT: sll $8, $8, 0
1574 ; MIPS64-NEXT: addu $2, $8, $2
1575 ; MIPS64-NEXT: sll $1, $1, 16
1576 ; MIPS64-NEXT: sll $3, $3, 0
1577 ; MIPS64-NEXT: dsrl $8, $4, 32
1578 ; MIPS64-NEXT: sll $8, $8, 0
1579 ; MIPS64-NEXT: addu $3, $8, $3
1580 ; MIPS64-NEXT: andi $3, $3, 65535
1581 ; MIPS64-NEXT: dsrl $8, $7, 32
1582 ; MIPS64-NEXT: or $1, $3, $1
1583 ; MIPS64-NEXT: sll $2, $2, 16
1584 ; MIPS64-NEXT: sll $3, $8, 0
1585 ; MIPS64-NEXT: dsrl $8, $5, 32
1586 ; MIPS64-NEXT: sll $8, $8, 0
1587 ; MIPS64-NEXT: addu $3, $8, $3
1588 ; MIPS64-NEXT: andi $3, $3, 65535
1589 ; MIPS64-NEXT: or $3, $3, $2
1590 ; MIPS64-NEXT: sll $2, $6, 0
1591 ; MIPS64-NEXT: sll $4, $4, 0
1592 ; MIPS64-NEXT: addu $6, $4, $2
1593 ; MIPS64-NEXT: andi $6, $6, 65535
1594 ; MIPS64-NEXT: srl $2, $2, 16
1595 ; MIPS64-NEXT: srl $4, $4, 16
1596 ; MIPS64-NEXT: addu $2, $4, $2
1597 ; MIPS64-NEXT: sll $2, $2, 16
1598 ; MIPS64-NEXT: dsll $1, $1, 32
1599 ; MIPS64-NEXT: or $2, $6, $2
1600 ; MIPS64-NEXT: dsll $2, $2, 32
1601 ; MIPS64-NEXT: dsrl $2, $2, 32
1602 ; MIPS64-NEXT: sll $4, $7, 0
1603 ; MIPS64-NEXT: sll $5, $5, 0
1604 ; MIPS64-NEXT: addu $6, $5, $4
1605 ; MIPS64-NEXT: or $2, $2, $1
1606 ; MIPS64-NEXT: dsll $1, $3, 32
1607 ; MIPS64-NEXT: andi $3, $6, 65535
1608 ; MIPS64-NEXT: srl $4, $4, 16
1609 ; MIPS64-NEXT: srl $5, $5, 16
1610 ; MIPS64-NEXT: addu $4, $5, $4
1611 ; MIPS64-NEXT: sll $4, $4, 16
1612 ; MIPS64-NEXT: or $3, $3, $4
1613 ; MIPS64-NEXT: dsll $3, $3, 32
1614 ; MIPS64-NEXT: dsrl $3, $3, 32
1615 ; MIPS64-NEXT: or $3, $3, $1
1616 ; MIPS64-NEXT: jr $ra
1619 ; MIPS32R5EB-LABEL: i16_8:
1620 ; MIPS32R5EB: # %bb.0:
1621 ; MIPS32R5EB-NEXT: lw $1, 20($sp)
1622 ; MIPS32R5EB-NEXT: lw $2, 16($sp)
1623 ; MIPS32R5EB-NEXT: insert.w $w0[0], $2
1624 ; MIPS32R5EB-NEXT: insert.w $w0[1], $1
1625 ; MIPS32R5EB-NEXT: lw $1, 24($sp)
1626 ; MIPS32R5EB-NEXT: insert.w $w0[2], $1
1627 ; MIPS32R5EB-NEXT: lw $1, 28($sp)
1628 ; MIPS32R5EB-NEXT: insert.w $w0[3], $1
1629 ; MIPS32R5EB-NEXT: shf.h $w0, $w0, 177
1630 ; MIPS32R5EB-NEXT: insert.w $w1[0], $4
1631 ; MIPS32R5EB-NEXT: insert.w $w1[1], $5
1632 ; MIPS32R5EB-NEXT: insert.w $w1[2], $6
1633 ; MIPS32R5EB-NEXT: insert.w $w1[3], $7
1634 ; MIPS32R5EB-NEXT: shf.h $w1, $w1, 177
1635 ; MIPS32R5EB-NEXT: addv.h $w0, $w1, $w0
1636 ; MIPS32R5EB-NEXT: shf.h $w0, $w0, 177
1637 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[0]
1638 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[1]
1639 ; MIPS32R5EB-NEXT: copy_s.w $4, $w0[2]
1640 ; MIPS32R5EB-NEXT: copy_s.w $5, $w0[3]
1641 ; MIPS32R5EB-NEXT: jr $ra
1642 ; MIPS32R5EB-NEXT: nop
1644 ; MIPS64R5EB-LABEL: i16_8:
1645 ; MIPS64R5EB: # %bb.0:
1646 ; MIPS64R5EB-NEXT: insert.d $w0[0], $6
1647 ; MIPS64R5EB-NEXT: insert.d $w0[1], $7
1648 ; MIPS64R5EB-NEXT: shf.h $w0, $w0, 27
1649 ; MIPS64R5EB-NEXT: insert.d $w1[0], $4
1650 ; MIPS64R5EB-NEXT: insert.d $w1[1], $5
1651 ; MIPS64R5EB-NEXT: shf.h $w1, $w1, 27
1652 ; MIPS64R5EB-NEXT: addv.h $w0, $w1, $w0
1653 ; MIPS64R5EB-NEXT: shf.h $w0, $w0, 27
1654 ; MIPS64R5EB-NEXT: copy_s.d $2, $w0[0]
1655 ; MIPS64R5EB-NEXT: copy_s.d $3, $w0[1]
1656 ; MIPS64R5EB-NEXT: jr $ra
1657 ; MIPS64R5EB-NEXT: nop
1659 ; MIPS32R5EL-LABEL: i16_8:
1660 ; MIPS32R5EL: # %bb.0:
1661 ; MIPS32R5EL-NEXT: lw $1, 20($sp)
1662 ; MIPS32R5EL-NEXT: lw $2, 16($sp)
1663 ; MIPS32R5EL-NEXT: insert.w $w0[0], $2
1664 ; MIPS32R5EL-NEXT: insert.w $w0[1], $1
1665 ; MIPS32R5EL-NEXT: lw $1, 24($sp)
1666 ; MIPS32R5EL-NEXT: insert.w $w0[2], $1
1667 ; MIPS32R5EL-NEXT: lw $1, 28($sp)
1668 ; MIPS32R5EL-NEXT: insert.w $w0[3], $1
1669 ; MIPS32R5EL-NEXT: insert.w $w1[0], $4
1670 ; MIPS32R5EL-NEXT: insert.w $w1[1], $5
1671 ; MIPS32R5EL-NEXT: insert.w $w1[2], $6
1672 ; MIPS32R5EL-NEXT: insert.w $w1[3], $7
1673 ; MIPS32R5EL-NEXT: addv.h $w0, $w1, $w0
1674 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[0]
1675 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[1]
1676 ; MIPS32R5EL-NEXT: copy_s.w $4, $w0[2]
1677 ; MIPS32R5EL-NEXT: copy_s.w $5, $w0[3]
1678 ; MIPS32R5EL-NEXT: jr $ra
1679 ; MIPS32R5EL-NEXT: nop
1681 ; MIPS64R5EL-LABEL: i16_8:
1682 ; MIPS64R5EL: # %bb.0:
1683 ; MIPS64R5EL-NEXT: insert.d $w0[0], $6
1684 ; MIPS64R5EL-NEXT: insert.d $w0[1], $7
1685 ; MIPS64R5EL-NEXT: insert.d $w1[0], $4
1686 ; MIPS64R5EL-NEXT: insert.d $w1[1], $5
1687 ; MIPS64R5EL-NEXT: addv.h $w0, $w1, $w0
1688 ; MIPS64R5EL-NEXT: copy_s.d $2, $w0[0]
1689 ; MIPS64R5EL-NEXT: copy_s.d $3, $w0[1]
1690 ; MIPS64R5EL-NEXT: jr $ra
1691 ; MIPS64R5EL-NEXT: nop
1692 %1 = add <8 x i16> %a, %b
1696 define <2 x i32> @i32_2(<2 x i32> %a, <2 x i32> %b) {
1697 ; MIPS32-LABEL: i32_2:
1699 ; MIPS32-NEXT: addu $2, $4, $6
1700 ; MIPS32-NEXT: addu $3, $5, $7
1701 ; MIPS32-NEXT: jr $ra
1704 ; MIPS64-LABEL: i32_2:
1706 ; MIPS64-NEXT: sll $1, $5, 0
1707 ; MIPS64-NEXT: sll $2, $4, 0
1708 ; MIPS64-NEXT: addu $1, $2, $1
1709 ; MIPS64-NEXT: dsll $1, $1, 32
1710 ; MIPS64-NEXT: dsrl $2, $5, 32
1711 ; MIPS64-NEXT: dsrl $1, $1, 32
1712 ; MIPS64-NEXT: sll $2, $2, 0
1713 ; MIPS64-NEXT: dsrl $3, $4, 32
1714 ; MIPS64-NEXT: sll $3, $3, 0
1715 ; MIPS64-NEXT: addu $2, $3, $2
1716 ; MIPS64-NEXT: dsll $2, $2, 32
1717 ; MIPS64-NEXT: or $2, $1, $2
1718 ; MIPS64-NEXT: jr $ra
1721 ; MIPS32R5EB-LABEL: i32_2:
1722 ; MIPS32R5EB: # %bb.0:
1723 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -48
1724 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 48
1725 ; MIPS32R5EB-NEXT: sw $ra, 44($sp) # 4-byte Folded Spill
1726 ; MIPS32R5EB-NEXT: sw $fp, 40($sp) # 4-byte Folded Spill
1727 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
1728 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
1729 ; MIPS32R5EB-NEXT: move $fp, $sp
1730 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
1731 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
1732 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
1733 ; MIPS32R5EB-NEXT: sw $7, 28($sp)
1734 ; MIPS32R5EB-NEXT: sw $6, 20($sp)
1735 ; MIPS32R5EB-NEXT: sw $5, 12($sp)
1736 ; MIPS32R5EB-NEXT: sw $4, 4($sp)
1737 ; MIPS32R5EB-NEXT: ld.d $w0, 16($sp)
1738 ; MIPS32R5EB-NEXT: ld.d $w1, 0($sp)
1739 ; MIPS32R5EB-NEXT: addv.d $w0, $w1, $w0
1740 ; MIPS32R5EB-NEXT: shf.w $w0, $w0, 177
1741 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[1]
1742 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[3]
1743 ; MIPS32R5EB-NEXT: move $sp, $fp
1744 ; MIPS32R5EB-NEXT: lw $fp, 40($sp) # 4-byte Folded Reload
1745 ; MIPS32R5EB-NEXT: lw $ra, 44($sp) # 4-byte Folded Reload
1746 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 48
1747 ; MIPS32R5EB-NEXT: jr $ra
1748 ; MIPS32R5EB-NEXT: nop
1750 ; MIPS64R5EB-LABEL: i32_2:
1751 ; MIPS64R5EB: # %bb.0:
1752 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -32
1753 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 32
1754 ; MIPS64R5EB-NEXT: dsrl $1, $5, 32
1755 ; MIPS64R5EB-NEXT: insert.d $w0[0], $1
1756 ; MIPS64R5EB-NEXT: insert.d $w0[1], $5
1757 ; MIPS64R5EB-NEXT: dsrl $1, $4, 32
1758 ; MIPS64R5EB-NEXT: insert.d $w1[0], $1
1759 ; MIPS64R5EB-NEXT: insert.d $w1[1], $4
1760 ; MIPS64R5EB-NEXT: addv.d $w0, $w1, $w0
1761 ; MIPS64R5EB-NEXT: copy_s.d $1, $w0[0]
1762 ; MIPS64R5EB-NEXT: copy_s.d $2, $w0[1]
1763 ; MIPS64R5EB-NEXT: sw $2, 12($sp)
1764 ; MIPS64R5EB-NEXT: sw $1, 8($sp)
1765 ; MIPS64R5EB-NEXT: ld $2, 8($sp)
1766 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 32
1767 ; MIPS64R5EB-NEXT: jr $ra
1768 ; MIPS64R5EB-NEXT: nop
1770 ; MIPS32R5EL-LABEL: i32_2:
1771 ; MIPS32R5EL: # %bb.0:
1772 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -48
1773 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 48
1774 ; MIPS32R5EL-NEXT: sw $ra, 44($sp) # 4-byte Folded Spill
1775 ; MIPS32R5EL-NEXT: sw $fp, 40($sp) # 4-byte Folded Spill
1776 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
1777 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
1778 ; MIPS32R5EL-NEXT: move $fp, $sp
1779 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
1780 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
1781 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
1782 ; MIPS32R5EL-NEXT: sw $7, 24($sp)
1783 ; MIPS32R5EL-NEXT: sw $6, 16($sp)
1784 ; MIPS32R5EL-NEXT: sw $5, 8($sp)
1785 ; MIPS32R5EL-NEXT: sw $4, 0($sp)
1786 ; MIPS32R5EL-NEXT: ld.d $w0, 16($sp)
1787 ; MIPS32R5EL-NEXT: ld.d $w1, 0($sp)
1788 ; MIPS32R5EL-NEXT: addv.d $w0, $w1, $w0
1789 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[0]
1790 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[2]
1791 ; MIPS32R5EL-NEXT: move $sp, $fp
1792 ; MIPS32R5EL-NEXT: lw $fp, 40($sp) # 4-byte Folded Reload
1793 ; MIPS32R5EL-NEXT: lw $ra, 44($sp) # 4-byte Folded Reload
1794 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 48
1795 ; MIPS32R5EL-NEXT: jr $ra
1796 ; MIPS32R5EL-NEXT: nop
1798 ; MIPS64R5EL-LABEL: i32_2:
1799 ; MIPS64R5EL: # %bb.0:
1800 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -32
1801 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 32
1802 ; MIPS64R5EL-NEXT: sd $5, 16($sp)
1803 ; MIPS64R5EL-NEXT: sd $4, 24($sp)
1804 ; MIPS64R5EL-NEXT: lw $1, 20($sp)
1805 ; MIPS64R5EL-NEXT: insert.d $w0[0], $5
1806 ; MIPS64R5EL-NEXT: insert.d $w0[1], $1
1807 ; MIPS64R5EL-NEXT: lw $1, 28($sp)
1808 ; MIPS64R5EL-NEXT: insert.d $w1[0], $4
1809 ; MIPS64R5EL-NEXT: insert.d $w1[1], $1
1810 ; MIPS64R5EL-NEXT: addv.d $w0, $w1, $w0
1811 ; MIPS64R5EL-NEXT: copy_s.d $1, $w0[0]
1812 ; MIPS64R5EL-NEXT: copy_s.d $2, $w0[1]
1813 ; MIPS64R5EL-NEXT: sw $2, 12($sp)
1814 ; MIPS64R5EL-NEXT: sw $1, 8($sp)
1815 ; MIPS64R5EL-NEXT: ld $2, 8($sp)
1816 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 32
1817 ; MIPS64R5EL-NEXT: jr $ra
1818 ; MIPS64R5EL-NEXT: nop
1819 %1 = add <2 x i32> %a, %b
1823 define <4 x i32> @i32_4(<4 x i32> %a, <4 x i32> %b) {
1824 ; MIPS32-LABEL: i32_4:
1826 ; MIPS32-NEXT: lw $1, 20($sp)
1827 ; MIPS32-NEXT: lw $2, 16($sp)
1828 ; MIPS32-NEXT: addu $2, $4, $2
1829 ; MIPS32-NEXT: addu $3, $5, $1
1830 ; MIPS32-NEXT: lw $1, 24($sp)
1831 ; MIPS32-NEXT: addu $4, $6, $1
1832 ; MIPS32-NEXT: lw $1, 28($sp)
1833 ; MIPS32-NEXT: addu $5, $7, $1
1834 ; MIPS32-NEXT: jr $ra
1837 ; MIPS64-LABEL: i32_4:
1839 ; MIPS64-NEXT: sll $1, $6, 0
1840 ; MIPS64-NEXT: sll $2, $4, 0
1841 ; MIPS64-NEXT: addu $1, $2, $1
1842 ; MIPS64-NEXT: dsll $1, $1, 32
1843 ; MIPS64-NEXT: sll $2, $7, 0
1844 ; MIPS64-NEXT: sll $3, $5, 0
1845 ; MIPS64-NEXT: addu $2, $3, $2
1846 ; MIPS64-NEXT: dsrl $3, $6, 32
1847 ; MIPS64-NEXT: dsll $6, $2, 32
1848 ; MIPS64-NEXT: dsrl $1, $1, 32
1849 ; MIPS64-NEXT: sll $2, $3, 0
1850 ; MIPS64-NEXT: dsrl $3, $4, 32
1851 ; MIPS64-NEXT: sll $3, $3, 0
1852 ; MIPS64-NEXT: addu $2, $3, $2
1853 ; MIPS64-NEXT: dsll $2, $2, 32
1854 ; MIPS64-NEXT: dsrl $3, $7, 32
1855 ; MIPS64-NEXT: or $2, $1, $2
1856 ; MIPS64-NEXT: dsrl $1, $6, 32
1857 ; MIPS64-NEXT: sll $3, $3, 0
1858 ; MIPS64-NEXT: dsrl $4, $5, 32
1859 ; MIPS64-NEXT: sll $4, $4, 0
1860 ; MIPS64-NEXT: addu $3, $4, $3
1861 ; MIPS64-NEXT: dsll $3, $3, 32
1862 ; MIPS64-NEXT: or $3, $1, $3
1863 ; MIPS64-NEXT: jr $ra
1866 ; MIPS32R5-LABEL: i32_4:
1867 ; MIPS32R5: # %bb.0:
1868 ; MIPS32R5-NEXT: lw $1, 20($sp)
1869 ; MIPS32R5-NEXT: lw $2, 16($sp)
1870 ; MIPS32R5-NEXT: insert.w $w0[0], $2
1871 ; MIPS32R5-NEXT: insert.w $w0[1], $1
1872 ; MIPS32R5-NEXT: lw $1, 24($sp)
1873 ; MIPS32R5-NEXT: insert.w $w0[2], $1
1874 ; MIPS32R5-NEXT: lw $1, 28($sp)
1875 ; MIPS32R5-NEXT: insert.w $w0[3], $1
1876 ; MIPS32R5-NEXT: insert.w $w1[0], $4
1877 ; MIPS32R5-NEXT: insert.w $w1[1], $5
1878 ; MIPS32R5-NEXT: insert.w $w1[2], $6
1879 ; MIPS32R5-NEXT: insert.w $w1[3], $7
1880 ; MIPS32R5-NEXT: addv.w $w0, $w1, $w0
1881 ; MIPS32R5-NEXT: copy_s.w $2, $w0[0]
1882 ; MIPS32R5-NEXT: copy_s.w $3, $w0[1]
1883 ; MIPS32R5-NEXT: copy_s.w $4, $w0[2]
1884 ; MIPS32R5-NEXT: copy_s.w $5, $w0[3]
1885 ; MIPS32R5-NEXT: jr $ra
1886 ; MIPS32R5-NEXT: nop
1888 ; MIPS64R5EB-LABEL: i32_4:
1889 ; MIPS64R5EB: # %bb.0:
1890 ; MIPS64R5EB-NEXT: insert.d $w0[0], $6
1891 ; MIPS64R5EB-NEXT: insert.d $w0[1], $7
1892 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
1893 ; MIPS64R5EB-NEXT: insert.d $w1[0], $4
1894 ; MIPS64R5EB-NEXT: insert.d $w1[1], $5
1895 ; MIPS64R5EB-NEXT: shf.w $w1, $w1, 177
1896 ; MIPS64R5EB-NEXT: addv.w $w0, $w1, $w0
1897 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
1898 ; MIPS64R5EB-NEXT: copy_s.d $2, $w0[0]
1899 ; MIPS64R5EB-NEXT: copy_s.d $3, $w0[1]
1900 ; MIPS64R5EB-NEXT: jr $ra
1901 ; MIPS64R5EB-NEXT: nop
1903 ; MIPS64R5EL-LABEL: i32_4:
1904 ; MIPS64R5EL: # %bb.0:
1905 ; MIPS64R5EL-NEXT: insert.d $w0[0], $6
1906 ; MIPS64R5EL-NEXT: insert.d $w0[1], $7
1907 ; MIPS64R5EL-NEXT: insert.d $w1[0], $4
1908 ; MIPS64R5EL-NEXT: insert.d $w1[1], $5
1909 ; MIPS64R5EL-NEXT: addv.w $w0, $w1, $w0
1910 ; MIPS64R5EL-NEXT: copy_s.d $2, $w0[0]
1911 ; MIPS64R5EL-NEXT: copy_s.d $3, $w0[1]
1912 ; MIPS64R5EL-NEXT: jr $ra
1913 ; MIPS64R5EL-NEXT: nop
1914 %1 = add <4 x i32> %a, %b
1918 define <2 x i64> @i64_2(<2 x i64> %a, <2 x i64> %b) {
1919 ; MIPS32EB-LABEL: i64_2:
1920 ; MIPS32EB: # %bb.0:
1921 ; MIPS32EB-NEXT: lw $1, 16($sp)
1922 ; MIPS32EB-NEXT: addu $1, $4, $1
1923 ; MIPS32EB-NEXT: lw $2, 20($sp)
1924 ; MIPS32EB-NEXT: addu $3, $5, $2
1925 ; MIPS32EB-NEXT: sltu $2, $3, $5
1926 ; MIPS32EB-NEXT: lw $4, 24($sp)
1927 ; MIPS32EB-NEXT: addu $2, $1, $2
1928 ; MIPS32EB-NEXT: addu $1, $6, $4
1929 ; MIPS32EB-NEXT: lw $4, 28($sp)
1930 ; MIPS32EB-NEXT: addu $5, $7, $4
1931 ; MIPS32EB-NEXT: sltu $4, $5, $7
1932 ; MIPS32EB-NEXT: addu $4, $1, $4
1933 ; MIPS32EB-NEXT: jr $ra
1934 ; MIPS32EB-NEXT: nop
1936 ; MIPS64-LABEL: i64_2:
1938 ; MIPS64-NEXT: daddu $2, $4, $6
1939 ; MIPS64-NEXT: daddu $3, $5, $7
1940 ; MIPS64-NEXT: jr $ra
1943 ; MIPS32R5EB-LABEL: i64_2:
1944 ; MIPS32R5EB: # %bb.0:
1945 ; MIPS32R5EB-NEXT: lw $1, 20($sp)
1946 ; MIPS32R5EB-NEXT: lw $2, 16($sp)
1947 ; MIPS32R5EB-NEXT: insert.w $w0[0], $2
1948 ; MIPS32R5EB-NEXT: insert.w $w0[1], $1
1949 ; MIPS32R5EB-NEXT: lw $1, 24($sp)
1950 ; MIPS32R5EB-NEXT: insert.w $w0[2], $1
1951 ; MIPS32R5EB-NEXT: lw $1, 28($sp)
1952 ; MIPS32R5EB-NEXT: insert.w $w0[3], $1
1953 ; MIPS32R5EB-NEXT: shf.w $w0, $w0, 177
1954 ; MIPS32R5EB-NEXT: insert.w $w1[0], $4
1955 ; MIPS32R5EB-NEXT: insert.w $w1[1], $5
1956 ; MIPS32R5EB-NEXT: insert.w $w1[2], $6
1957 ; MIPS32R5EB-NEXT: insert.w $w1[3], $7
1958 ; MIPS32R5EB-NEXT: shf.w $w1, $w1, 177
1959 ; MIPS32R5EB-NEXT: addv.d $w0, $w1, $w0
1960 ; MIPS32R5EB-NEXT: shf.w $w0, $w0, 177
1961 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[0]
1962 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[1]
1963 ; MIPS32R5EB-NEXT: copy_s.w $4, $w0[2]
1964 ; MIPS32R5EB-NEXT: copy_s.w $5, $w0[3]
1965 ; MIPS32R5EB-NEXT: jr $ra
1966 ; MIPS32R5EB-NEXT: nop
1968 ; MIPS64R5-LABEL: i64_2:
1969 ; MIPS64R5: # %bb.0:
1970 ; MIPS64R5-NEXT: insert.d $w0[0], $6
1971 ; MIPS64R5-NEXT: insert.d $w0[1], $7
1972 ; MIPS64R5-NEXT: insert.d $w1[0], $4
1973 ; MIPS64R5-NEXT: insert.d $w1[1], $5
1974 ; MIPS64R5-NEXT: addv.d $w0, $w1, $w0
1975 ; MIPS64R5-NEXT: copy_s.d $2, $w0[0]
1976 ; MIPS64R5-NEXT: copy_s.d $3, $w0[1]
1977 ; MIPS64R5-NEXT: jr $ra
1978 ; MIPS64R5-NEXT: nop
1980 ; MIPS32EL-LABEL: i64_2:
1981 ; MIPS32EL: # %bb.0:
1982 ; MIPS32EL-NEXT: lw $1, 20($sp)
1983 ; MIPS32EL-NEXT: addu $1, $5, $1
1984 ; MIPS32EL-NEXT: lw $2, 16($sp)
1985 ; MIPS32EL-NEXT: addu $2, $4, $2
1986 ; MIPS32EL-NEXT: sltu $3, $2, $4
1987 ; MIPS32EL-NEXT: lw $4, 28($sp)
1988 ; MIPS32EL-NEXT: addu $3, $1, $3
1989 ; MIPS32EL-NEXT: addu $1, $7, $4
1990 ; MIPS32EL-NEXT: lw $4, 24($sp)
1991 ; MIPS32EL-NEXT: addu $4, $6, $4
1992 ; MIPS32EL-NEXT: sltu $5, $4, $6
1993 ; MIPS32EL-NEXT: addu $5, $1, $5
1994 ; MIPS32EL-NEXT: jr $ra
1995 ; MIPS32EL-NEXT: nop
1997 ; MIPS32R5EL-LABEL: i64_2:
1998 ; MIPS32R5EL: # %bb.0:
1999 ; MIPS32R5EL-NEXT: lw $1, 20($sp)
2000 ; MIPS32R5EL-NEXT: lw $2, 16($sp)
2001 ; MIPS32R5EL-NEXT: insert.w $w0[0], $2
2002 ; MIPS32R5EL-NEXT: insert.w $w0[1], $1
2003 ; MIPS32R5EL-NEXT: lw $1, 24($sp)
2004 ; MIPS32R5EL-NEXT: insert.w $w0[2], $1
2005 ; MIPS32R5EL-NEXT: lw $1, 28($sp)
2006 ; MIPS32R5EL-NEXT: insert.w $w0[3], $1
2007 ; MIPS32R5EL-NEXT: insert.w $w1[0], $4
2008 ; MIPS32R5EL-NEXT: insert.w $w1[1], $5
2009 ; MIPS32R5EL-NEXT: insert.w $w1[2], $6
2010 ; MIPS32R5EL-NEXT: insert.w $w1[3], $7
2011 ; MIPS32R5EL-NEXT: addv.d $w0, $w1, $w0
2012 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[0]
2013 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[1]
2014 ; MIPS32R5EL-NEXT: copy_s.w $4, $w0[2]
2015 ; MIPS32R5EL-NEXT: copy_s.w $5, $w0[3]
2016 ; MIPS32R5EL-NEXT: jr $ra
2017 ; MIPS32R5EL-NEXT: nop
2018 %1 = add <2 x i64> %a, %b
2022 ; The MIPS vector ABI treats vectors of floats differently to vectors of
2025 ; For arguments floating pointer vectors are bitcasted to integer vectors whose
2026 ; elements are of GPR width and where the element count is deduced from
2027 ; the length of the floating point vector divided by the size of the GPRs.
2029 ; For returns, integer vectors are passed via the GPR register set, but
2030 ; floating point vectors are returned via a hidden sret pointer.
2032 ; For testing purposes we skip returning values here and test them below
2034 @float_res_v2f32 = external global <2 x float>
2036 define void @float_2(<2 x float> %a, <2 x float> %b) {
2037 ; MIPS32-LABEL: float_2:
2039 ; MIPS32-NEXT: mtc1 $7, $f0
2040 ; MIPS32-NEXT: mtc1 $5, $f1
2041 ; MIPS32-NEXT: add.s $f0, $f1, $f0
2042 ; MIPS32-NEXT: lui $1, %hi(float_res_v2f32)
2043 ; MIPS32-NEXT: addiu $2, $1, %lo(float_res_v2f32)
2044 ; MIPS32-NEXT: swc1 $f0, 4($2)
2045 ; MIPS32-NEXT: mtc1 $6, $f0
2046 ; MIPS32-NEXT: mtc1 $4, $f1
2047 ; MIPS32-NEXT: add.s $f0, $f1, $f0
2048 ; MIPS32-NEXT: swc1 $f0, %lo(float_res_v2f32)($1)
2049 ; MIPS32-NEXT: jr $ra
2052 ; MIPS64EB-LABEL: float_2:
2053 ; MIPS64EB: # %bb.0:
2054 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(float_2)))
2055 ; MIPS64EB-NEXT: daddu $1, $1, $25
2056 ; MIPS64EB-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(float_2)))
2057 ; MIPS64EB-NEXT: sll $2, $5, 0
2058 ; MIPS64EB-NEXT: mtc1 $2, $f0
2059 ; MIPS64EB-NEXT: sll $2, $4, 0
2060 ; MIPS64EB-NEXT: mtc1 $2, $f1
2061 ; MIPS64EB-NEXT: add.s $f0, $f1, $f0
2062 ; MIPS64EB-NEXT: dsrl $2, $5, 32
2063 ; MIPS64EB-NEXT: sll $2, $2, 0
2064 ; MIPS64EB-NEXT: ld $1, %got_disp(float_res_v2f32)($1)
2065 ; MIPS64EB-NEXT: swc1 $f0, 4($1)
2066 ; MIPS64EB-NEXT: mtc1 $2, $f0
2067 ; MIPS64EB-NEXT: dsrl $2, $4, 32
2068 ; MIPS64EB-NEXT: sll $2, $2, 0
2069 ; MIPS64EB-NEXT: mtc1 $2, $f1
2070 ; MIPS64EB-NEXT: add.s $f0, $f1, $f0
2071 ; MIPS64EB-NEXT: swc1 $f0, 0($1)
2072 ; MIPS64EB-NEXT: jr $ra
2073 ; MIPS64EB-NEXT: nop
2075 ; MIPS32R5-LABEL: float_2:
2076 ; MIPS32R5: # %bb.0:
2077 ; MIPS32R5-NEXT: addiu $sp, $sp, -48
2078 ; MIPS32R5-NEXT: .cfi_def_cfa_offset 48
2079 ; MIPS32R5-NEXT: sw $ra, 44($sp) # 4-byte Folded Spill
2080 ; MIPS32R5-NEXT: sw $fp, 40($sp) # 4-byte Folded Spill
2081 ; MIPS32R5-NEXT: .cfi_offset 31, -4
2082 ; MIPS32R5-NEXT: .cfi_offset 30, -8
2083 ; MIPS32R5-NEXT: move $fp, $sp
2084 ; MIPS32R5-NEXT: .cfi_def_cfa_register 30
2085 ; MIPS32R5-NEXT: addiu $1, $zero, -16
2086 ; MIPS32R5-NEXT: and $sp, $sp, $1
2087 ; MIPS32R5-NEXT: sw $7, 20($sp)
2088 ; MIPS32R5-NEXT: sw $6, 16($sp)
2089 ; MIPS32R5-NEXT: sw $5, 4($sp)
2090 ; MIPS32R5-NEXT: sw $4, 0($sp)
2091 ; MIPS32R5-NEXT: ld.w $w0, 16($sp)
2092 ; MIPS32R5-NEXT: ld.w $w1, 0($sp)
2093 ; MIPS32R5-NEXT: fadd.w $w0, $w1, $w0
2094 ; MIPS32R5-NEXT: lui $1, %hi(float_res_v2f32)
2095 ; MIPS32R5-NEXT: addiu $2, $1, %lo(float_res_v2f32)
2096 ; MIPS32R5-NEXT: splati.w $w1, $w0[1]
2097 ; MIPS32R5-NEXT: swc1 $f1, 4($2)
2098 ; MIPS32R5-NEXT: swc1 $f0, %lo(float_res_v2f32)($1)
2099 ; MIPS32R5-NEXT: move $sp, $fp
2100 ; MIPS32R5-NEXT: lw $fp, 40($sp) # 4-byte Folded Reload
2101 ; MIPS32R5-NEXT: lw $ra, 44($sp) # 4-byte Folded Reload
2102 ; MIPS32R5-NEXT: addiu $sp, $sp, 48
2103 ; MIPS32R5-NEXT: jr $ra
2104 ; MIPS32R5-NEXT: nop
2106 ; MIPS64R5EB-LABEL: float_2:
2107 ; MIPS64R5EB: # %bb.0:
2108 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -32
2109 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 32
2110 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(float_2)))
2111 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
2112 ; MIPS64R5EB-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(float_2)))
2113 ; MIPS64R5EB-NEXT: sd $5, 16($sp)
2114 ; MIPS64R5EB-NEXT: sd $4, 0($sp)
2115 ; MIPS64R5EB-NEXT: ld.w $w0, 16($sp)
2116 ; MIPS64R5EB-NEXT: ld.w $w1, 0($sp)
2117 ; MIPS64R5EB-NEXT: fadd.w $w0, $w1, $w0
2118 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
2119 ; MIPS64R5EB-NEXT: copy_s.d $2, $w0[0]
2120 ; MIPS64R5EB-NEXT: ld $1, %got_disp(float_res_v2f32)($1)
2121 ; MIPS64R5EB-NEXT: sd $2, 0($1)
2122 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 32
2123 ; MIPS64R5EB-NEXT: jr $ra
2124 ; MIPS64R5EB-NEXT: nop
2126 ; MIPS64EL-LABEL: float_2:
2127 ; MIPS64EL: # %bb.0:
2128 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(float_2)))
2129 ; MIPS64EL-NEXT: daddu $1, $1, $25
2130 ; MIPS64EL-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(float_2)))
2131 ; MIPS64EL-NEXT: sll $2, $5, 0
2132 ; MIPS64EL-NEXT: mtc1 $2, $f0
2133 ; MIPS64EL-NEXT: sll $2, $4, 0
2134 ; MIPS64EL-NEXT: mtc1 $2, $f1
2135 ; MIPS64EL-NEXT: add.s $f0, $f1, $f0
2136 ; MIPS64EL-NEXT: dsrl $2, $5, 32
2137 ; MIPS64EL-NEXT: sll $2, $2, 0
2138 ; MIPS64EL-NEXT: ld $1, %got_disp(float_res_v2f32)($1)
2139 ; MIPS64EL-NEXT: swc1 $f0, 0($1)
2140 ; MIPS64EL-NEXT: mtc1 $2, $f0
2141 ; MIPS64EL-NEXT: dsrl $2, $4, 32
2142 ; MIPS64EL-NEXT: sll $2, $2, 0
2143 ; MIPS64EL-NEXT: mtc1 $2, $f1
2144 ; MIPS64EL-NEXT: add.s $f0, $f1, $f0
2145 ; MIPS64EL-NEXT: swc1 $f0, 4($1)
2146 ; MIPS64EL-NEXT: jr $ra
2147 ; MIPS64EL-NEXT: nop
2149 ; MIPS64R5EL-LABEL: float_2:
2150 ; MIPS64R5EL: # %bb.0:
2151 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -32
2152 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 32
2153 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(float_2)))
2154 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
2155 ; MIPS64R5EL-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(float_2)))
2156 ; MIPS64R5EL-NEXT: sd $5, 16($sp)
2157 ; MIPS64R5EL-NEXT: sd $4, 0($sp)
2158 ; MIPS64R5EL-NEXT: ld.w $w0, 16($sp)
2159 ; MIPS64R5EL-NEXT: ld.w $w1, 0($sp)
2160 ; MIPS64R5EL-NEXT: fadd.w $w0, $w1, $w0
2161 ; MIPS64R5EL-NEXT: copy_s.d $2, $w0[0]
2162 ; MIPS64R5EL-NEXT: ld $1, %got_disp(float_res_v2f32)($1)
2163 ; MIPS64R5EL-NEXT: sd $2, 0($1)
2164 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 32
2165 ; MIPS64R5EL-NEXT: jr $ra
2166 ; MIPS64R5EL-NEXT: nop
2167 %1 = fadd <2 x float> %a, %b
2168 store <2 x float> %1, ptr @float_res_v2f32
2172 @float_res_v4f32 = external global <4 x float>
2174 ; For MSA this case is suboptimal, the 4 loads can be combined into a single
2177 define void @float_4(<4 x float> %a, <4 x float> %b) {
2178 ; MIPS32-LABEL: float_4:
2180 ; MIPS32-NEXT: mtc1 $7, $f0
2181 ; MIPS32-NEXT: mtc1 $6, $f1
2182 ; MIPS32-NEXT: lwc1 $f2, 28($sp)
2183 ; MIPS32-NEXT: lwc1 $f3, 24($sp)
2184 ; MIPS32-NEXT: add.s $f1, $f1, $f3
2185 ; MIPS32-NEXT: add.s $f0, $f0, $f2
2186 ; MIPS32-NEXT: mtc1 $5, $f2
2187 ; MIPS32-NEXT: lui $1, %hi(float_res_v4f32)
2188 ; MIPS32-NEXT: addiu $2, $1, %lo(float_res_v4f32)
2189 ; MIPS32-NEXT: lwc1 $f3, 20($sp)
2190 ; MIPS32-NEXT: swc1 $f0, 12($2)
2191 ; MIPS32-NEXT: swc1 $f1, 8($2)
2192 ; MIPS32-NEXT: add.s $f0, $f2, $f3
2193 ; MIPS32-NEXT: swc1 $f0, 4($2)
2194 ; MIPS32-NEXT: mtc1 $4, $f0
2195 ; MIPS32-NEXT: lwc1 $f1, 16($sp)
2196 ; MIPS32-NEXT: add.s $f0, $f0, $f1
2197 ; MIPS32-NEXT: swc1 $f0, %lo(float_res_v4f32)($1)
2198 ; MIPS32-NEXT: jr $ra
2201 ; MIPS64EB-LABEL: float_4:
2202 ; MIPS64EB: # %bb.0:
2203 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(float_4)))
2204 ; MIPS64EB-NEXT: daddu $1, $1, $25
2205 ; MIPS64EB-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(float_4)))
2206 ; MIPS64EB-NEXT: dsrl $2, $7, 32
2207 ; MIPS64EB-NEXT: sll $2, $2, 0
2208 ; MIPS64EB-NEXT: sll $3, $4, 0
2209 ; MIPS64EB-NEXT: sll $8, $6, 0
2210 ; MIPS64EB-NEXT: sll $7, $7, 0
2211 ; MIPS64EB-NEXT: mtc1 $8, $f0
2212 ; MIPS64EB-NEXT: mtc1 $3, $f1
2213 ; MIPS64EB-NEXT: mtc1 $2, $f2
2214 ; MIPS64EB-NEXT: dsrl $2, $5, 32
2215 ; MIPS64EB-NEXT: sll $2, $2, 0
2216 ; MIPS64EB-NEXT: mtc1 $2, $f3
2217 ; MIPS64EB-NEXT: add.s $f2, $f3, $f2
2218 ; MIPS64EB-NEXT: add.s $f0, $f1, $f0
2219 ; MIPS64EB-NEXT: mtc1 $7, $f1
2220 ; MIPS64EB-NEXT: sll $2, $5, 0
2221 ; MIPS64EB-NEXT: mtc1 $2, $f3
2222 ; MIPS64EB-NEXT: add.s $f1, $f3, $f1
2223 ; MIPS64EB-NEXT: dsrl $2, $6, 32
2224 ; MIPS64EB-NEXT: sll $2, $2, 0
2225 ; MIPS64EB-NEXT: ld $1, %got_disp(float_res_v4f32)($1)
2226 ; MIPS64EB-NEXT: swc1 $f1, 12($1)
2227 ; MIPS64EB-NEXT: swc1 $f0, 4($1)
2228 ; MIPS64EB-NEXT: swc1 $f2, 8($1)
2229 ; MIPS64EB-NEXT: mtc1 $2, $f0
2230 ; MIPS64EB-NEXT: dsrl $2, $4, 32
2231 ; MIPS64EB-NEXT: sll $2, $2, 0
2232 ; MIPS64EB-NEXT: mtc1 $2, $f1
2233 ; MIPS64EB-NEXT: add.s $f0, $f1, $f0
2234 ; MIPS64EB-NEXT: swc1 $f0, 0($1)
2235 ; MIPS64EB-NEXT: jr $ra
2236 ; MIPS64EB-NEXT: nop
2238 ; MIPS32R5-LABEL: float_4:
2239 ; MIPS32R5: # %bb.0:
2240 ; MIPS32R5-NEXT: lw $1, 20($sp)
2241 ; MIPS32R5-NEXT: lw $2, 16($sp)
2242 ; MIPS32R5-NEXT: insert.w $w0[0], $2
2243 ; MIPS32R5-NEXT: insert.w $w0[1], $1
2244 ; MIPS32R5-NEXT: lw $1, 24($sp)
2245 ; MIPS32R5-NEXT: insert.w $w0[2], $1
2246 ; MIPS32R5-NEXT: lw $1, 28($sp)
2247 ; MIPS32R5-NEXT: insert.w $w0[3], $1
2248 ; MIPS32R5-NEXT: insert.w $w1[0], $4
2249 ; MIPS32R5-NEXT: insert.w $w1[1], $5
2250 ; MIPS32R5-NEXT: insert.w $w1[2], $6
2251 ; MIPS32R5-NEXT: insert.w $w1[3], $7
2252 ; MIPS32R5-NEXT: fadd.w $w0, $w1, $w0
2253 ; MIPS32R5-NEXT: lui $1, %hi(float_res_v4f32)
2254 ; MIPS32R5-NEXT: addiu $1, $1, %lo(float_res_v4f32)
2255 ; MIPS32R5-NEXT: st.w $w0, 0($1)
2256 ; MIPS32R5-NEXT: jr $ra
2257 ; MIPS32R5-NEXT: nop
2259 ; MIPS64R5EB-LABEL: float_4:
2260 ; MIPS64R5EB: # %bb.0:
2261 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(float_4)))
2262 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
2263 ; MIPS64R5EB-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(float_4)))
2264 ; MIPS64R5EB-NEXT: insert.d $w0[0], $6
2265 ; MIPS64R5EB-NEXT: insert.d $w0[1], $7
2266 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
2267 ; MIPS64R5EB-NEXT: insert.d $w1[0], $4
2268 ; MIPS64R5EB-NEXT: insert.d $w1[1], $5
2269 ; MIPS64R5EB-NEXT: shf.w $w1, $w1, 177
2270 ; MIPS64R5EB-NEXT: fadd.w $w0, $w1, $w0
2271 ; MIPS64R5EB-NEXT: ld $1, %got_disp(float_res_v4f32)($1)
2272 ; MIPS64R5EB-NEXT: st.w $w0, 0($1)
2273 ; MIPS64R5EB-NEXT: jr $ra
2274 ; MIPS64R5EB-NEXT: nop
2276 ; MIPS64EL-LABEL: float_4:
2277 ; MIPS64EL: # %bb.0:
2278 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(float_4)))
2279 ; MIPS64EL-NEXT: daddu $1, $1, $25
2280 ; MIPS64EL-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(float_4)))
2281 ; MIPS64EL-NEXT: dsrl $2, $7, 32
2282 ; MIPS64EL-NEXT: sll $2, $2, 0
2283 ; MIPS64EL-NEXT: sll $3, $4, 0
2284 ; MIPS64EL-NEXT: sll $8, $6, 0
2285 ; MIPS64EL-NEXT: sll $7, $7, 0
2286 ; MIPS64EL-NEXT: mtc1 $8, $f0
2287 ; MIPS64EL-NEXT: mtc1 $3, $f1
2288 ; MIPS64EL-NEXT: mtc1 $2, $f2
2289 ; MIPS64EL-NEXT: dsrl $2, $5, 32
2290 ; MIPS64EL-NEXT: sll $2, $2, 0
2291 ; MIPS64EL-NEXT: mtc1 $2, $f3
2292 ; MIPS64EL-NEXT: add.s $f2, $f3, $f2
2293 ; MIPS64EL-NEXT: add.s $f0, $f1, $f0
2294 ; MIPS64EL-NEXT: mtc1 $7, $f1
2295 ; MIPS64EL-NEXT: sll $2, $5, 0
2296 ; MIPS64EL-NEXT: mtc1 $2, $f3
2297 ; MIPS64EL-NEXT: add.s $f1, $f3, $f1
2298 ; MIPS64EL-NEXT: dsrl $2, $6, 32
2299 ; MIPS64EL-NEXT: sll $2, $2, 0
2300 ; MIPS64EL-NEXT: ld $1, %got_disp(float_res_v4f32)($1)
2301 ; MIPS64EL-NEXT: swc1 $f1, 8($1)
2302 ; MIPS64EL-NEXT: swc1 $f0, 0($1)
2303 ; MIPS64EL-NEXT: swc1 $f2, 12($1)
2304 ; MIPS64EL-NEXT: mtc1 $2, $f0
2305 ; MIPS64EL-NEXT: dsrl $2, $4, 32
2306 ; MIPS64EL-NEXT: sll $2, $2, 0
2307 ; MIPS64EL-NEXT: mtc1 $2, $f1
2308 ; MIPS64EL-NEXT: add.s $f0, $f1, $f0
2309 ; MIPS64EL-NEXT: swc1 $f0, 4($1)
2310 ; MIPS64EL-NEXT: jr $ra
2311 ; MIPS64EL-NEXT: nop
2313 ; MIPS64R5EL-LABEL: float_4:
2314 ; MIPS64R5EL: # %bb.0:
2315 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(float_4)))
2316 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
2317 ; MIPS64R5EL-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(float_4)))
2318 ; MIPS64R5EL-NEXT: insert.d $w0[0], $6
2319 ; MIPS64R5EL-NEXT: insert.d $w0[1], $7
2320 ; MIPS64R5EL-NEXT: insert.d $w1[0], $4
2321 ; MIPS64R5EL-NEXT: insert.d $w1[1], $5
2322 ; MIPS64R5EL-NEXT: fadd.w $w0, $w1, $w0
2323 ; MIPS64R5EL-NEXT: ld $1, %got_disp(float_res_v4f32)($1)
2324 ; MIPS64R5EL-NEXT: st.w $w0, 0($1)
2325 ; MIPS64R5EL-NEXT: jr $ra
2326 ; MIPS64R5EL-NEXT: nop
2327 %1 = fadd <4 x float> %a, %b
2328 store <4 x float> %1, ptr @float_res_v4f32
2332 @double_v2f64 = external global <2 x double>
2334 define void @double_2(<2 x double> %a, <2 x double> %b) {
2335 ; MIPS32-LABEL: double_2:
2337 ; MIPS32-NEXT: addiu $sp, $sp, -32
2338 ; MIPS32-NEXT: .cfi_def_cfa_offset 32
2339 ; MIPS32-NEXT: lw $1, 60($sp)
2340 ; MIPS32-NEXT: sw $1, 12($sp)
2341 ; MIPS32-NEXT: lw $1, 56($sp)
2342 ; MIPS32-NEXT: sw $1, 8($sp)
2343 ; MIPS32-NEXT: sw $7, 28($sp)
2344 ; MIPS32-NEXT: sw $6, 24($sp)
2345 ; MIPS32-NEXT: ldc1 $f0, 8($sp)
2346 ; MIPS32-NEXT: ldc1 $f2, 24($sp)
2347 ; MIPS32-NEXT: add.d $f0, $f2, $f0
2348 ; MIPS32-NEXT: lui $1, %hi(double_v2f64)
2349 ; MIPS32-NEXT: addiu $2, $1, %lo(double_v2f64)
2350 ; MIPS32-NEXT: lw $3, 52($sp)
2351 ; MIPS32-NEXT: sdc1 $f0, 8($2)
2352 ; MIPS32-NEXT: sw $3, 4($sp)
2353 ; MIPS32-NEXT: lw $2, 48($sp)
2354 ; MIPS32-NEXT: sw $2, 0($sp)
2355 ; MIPS32-NEXT: sw $5, 20($sp)
2356 ; MIPS32-NEXT: sw $4, 16($sp)
2357 ; MIPS32-NEXT: ldc1 $f0, 0($sp)
2358 ; MIPS32-NEXT: ldc1 $f2, 16($sp)
2359 ; MIPS32-NEXT: add.d $f0, $f2, $f0
2360 ; MIPS32-NEXT: sdc1 $f0, %lo(double_v2f64)($1)
2361 ; MIPS32-NEXT: addiu $sp, $sp, 32
2362 ; MIPS32-NEXT: jr $ra
2365 ; MIPS64-LABEL: double_2:
2367 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(double_2)))
2368 ; MIPS64-NEXT: daddu $1, $1, $25
2369 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(double_2)))
2370 ; MIPS64-NEXT: dmtc1 $7, $f0
2371 ; MIPS64-NEXT: dmtc1 $5, $f1
2372 ; MIPS64-NEXT: add.d $f0, $f1, $f0
2373 ; MIPS64-NEXT: ld $1, %got_disp(double_v2f64)($1)
2374 ; MIPS64-NEXT: sdc1 $f0, 8($1)
2375 ; MIPS64-NEXT: dmtc1 $6, $f0
2376 ; MIPS64-NEXT: dmtc1 $4, $f1
2377 ; MIPS64-NEXT: add.d $f0, $f1, $f0
2378 ; MIPS64-NEXT: sdc1 $f0, 0($1)
2379 ; MIPS64-NEXT: jr $ra
2382 ; MIPS32R5EB-LABEL: double_2:
2383 ; MIPS32R5EB: # %bb.0:
2384 ; MIPS32R5EB-NEXT: lw $1, 20($sp)
2385 ; MIPS32R5EB-NEXT: lw $2, 16($sp)
2386 ; MIPS32R5EB-NEXT: insert.w $w0[0], $2
2387 ; MIPS32R5EB-NEXT: insert.w $w0[1], $1
2388 ; MIPS32R5EB-NEXT: lw $1, 24($sp)
2389 ; MIPS32R5EB-NEXT: insert.w $w0[2], $1
2390 ; MIPS32R5EB-NEXT: lw $1, 28($sp)
2391 ; MIPS32R5EB-NEXT: insert.w $w0[3], $1
2392 ; MIPS32R5EB-NEXT: shf.w $w0, $w0, 177
2393 ; MIPS32R5EB-NEXT: insert.w $w1[0], $4
2394 ; MIPS32R5EB-NEXT: insert.w $w1[1], $5
2395 ; MIPS32R5EB-NEXT: insert.w $w1[2], $6
2396 ; MIPS32R5EB-NEXT: insert.w $w1[3], $7
2397 ; MIPS32R5EB-NEXT: shf.w $w1, $w1, 177
2398 ; MIPS32R5EB-NEXT: fadd.d $w0, $w1, $w0
2399 ; MIPS32R5EB-NEXT: lui $1, %hi(double_v2f64)
2400 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo(double_v2f64)
2401 ; MIPS32R5EB-NEXT: st.d $w0, 0($1)
2402 ; MIPS32R5EB-NEXT: jr $ra
2403 ; MIPS32R5EB-NEXT: nop
2405 ; MIPS64R5-LABEL: double_2:
2406 ; MIPS64R5: # %bb.0:
2407 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(double_2)))
2408 ; MIPS64R5-NEXT: daddu $1, $1, $25
2409 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(double_2)))
2410 ; MIPS64R5-NEXT: insert.d $w0[0], $6
2411 ; MIPS64R5-NEXT: insert.d $w0[1], $7
2412 ; MIPS64R5-NEXT: insert.d $w1[0], $4
2413 ; MIPS64R5-NEXT: insert.d $w1[1], $5
2414 ; MIPS64R5-NEXT: fadd.d $w0, $w1, $w0
2415 ; MIPS64R5-NEXT: ld $1, %got_disp(double_v2f64)($1)
2416 ; MIPS64R5-NEXT: st.d $w0, 0($1)
2417 ; MIPS64R5-NEXT: jr $ra
2418 ; MIPS64R5-NEXT: nop
2420 ; MIPS32R5EL-LABEL: double_2:
2421 ; MIPS32R5EL: # %bb.0:
2422 ; MIPS32R5EL-NEXT: lw $1, 20($sp)
2423 ; MIPS32R5EL-NEXT: lw $2, 16($sp)
2424 ; MIPS32R5EL-NEXT: insert.w $w0[0], $2
2425 ; MIPS32R5EL-NEXT: insert.w $w0[1], $1
2426 ; MIPS32R5EL-NEXT: lw $1, 24($sp)
2427 ; MIPS32R5EL-NEXT: insert.w $w0[2], $1
2428 ; MIPS32R5EL-NEXT: lw $1, 28($sp)
2429 ; MIPS32R5EL-NEXT: insert.w $w0[3], $1
2430 ; MIPS32R5EL-NEXT: insert.w $w1[0], $4
2431 ; MIPS32R5EL-NEXT: insert.w $w1[1], $5
2432 ; MIPS32R5EL-NEXT: insert.w $w1[2], $6
2433 ; MIPS32R5EL-NEXT: insert.w $w1[3], $7
2434 ; MIPS32R5EL-NEXT: fadd.d $w0, $w1, $w0
2435 ; MIPS32R5EL-NEXT: lui $1, %hi(double_v2f64)
2436 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo(double_v2f64)
2437 ; MIPS32R5EL-NEXT: st.d $w0, 0($1)
2438 ; MIPS32R5EL-NEXT: jr $ra
2439 ; MIPS32R5EL-NEXT: nop
2440 %1 = fadd <2 x double> %a, %b
2441 store <2 x double> %1, ptr @double_v2f64
2445 ; Return value testing.
2446 ; Integer vectors are returned in $2, $3, $4, $5 for O32, $2, $3 for N32/N64
2447 ; Floating point vectors are returned through a hidden sret pointer.
2449 @gv2i8 = global <2 x i8> <i8 1, i8 2>
2450 @gv4i8 = global <4 x i8> <i8 0, i8 1, i8 2, i8 3>
2451 @gv8i8 = global <8 x i8> <i8 0, i8 1, i8 2, i8 3, i8 4, i8 5, i8 6, i8 7>
2452 @gv16i8 = global <16 x i8> <i8 0, i8 1, i8 2, i8 3, i8 4, i8 5, i8 6, i8 7, i8 8, i8 9, i8 10, i8 11, i8 12, i8 13, i8 14, i8 15>
2454 @gv2i16 = global <2 x i16> <i16 1, i16 2>
2455 @gv4i16 = global <4 x i16> <i16 0, i16 1, i16 2, i16 3>
2456 @gv8i16 = global <8 x i16> <i16 0, i16 1, i16 2, i16 3, i16 4, i16 5, i16 6, i16 7>
2458 @gv2i24 = global <2 x i24> <i24 1, i24 2>
2460 @gv2i32 = global <2 x i32> <i32 0, i32 1>
2461 @gv4i32 = global <4 x i32> <i32 0, i32 1, i32 2, i32 3>
2463 @gv2i64 = global <2 x i64> <i64 0, i64 1>
2465 ; FIXME: why is this lh instead of lhu on mips64?
2466 define <2 x i8> @ret_2_i8() {
2467 ; MIPS32-LABEL: ret_2_i8:
2469 ; MIPS32-NEXT: lui $1, %hi(gv2i8)
2470 ; MIPS32-NEXT: lhu $2, %lo(gv2i8)($1)
2471 ; MIPS32-NEXT: jr $ra
2474 ; MIPS64-LABEL: ret_2_i8:
2476 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_2_i8)))
2477 ; MIPS64-NEXT: daddu $1, $1, $25
2478 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_2_i8)))
2479 ; MIPS64-NEXT: ld $1, %got_disp(gv2i8)($1)
2480 ; MIPS64-NEXT: lh $2, 0($1)
2481 ; MIPS64-NEXT: jr $ra
2484 ; MIPS32R5-LABEL: ret_2_i8:
2485 ; MIPS32R5: # %bb.0:
2486 ; MIPS32R5-NEXT: lui $1, %hi(gv2i8)
2487 ; MIPS32R5-NEXT: lhu $2, %lo(gv2i8)($1)
2488 ; MIPS32R5-NEXT: jr $ra
2489 ; MIPS32R5-NEXT: nop
2491 ; MIPS64R5-LABEL: ret_2_i8:
2492 ; MIPS64R5: # %bb.0:
2493 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_2_i8)))
2494 ; MIPS64R5-NEXT: daddu $1, $1, $25
2495 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_2_i8)))
2496 ; MIPS64R5-NEXT: ld $1, %got_disp(gv2i8)($1)
2497 ; MIPS64R5-NEXT: lh $2, 0($1)
2498 ; MIPS64R5-NEXT: jr $ra
2499 ; MIPS64R5-NEXT: nop
2500 %1 = load <2 x i8>, ptr @gv2i8
2504 define <4 x i8> @ret_4_i8() {
2505 ; MIPS32-LABEL: ret_4_i8:
2507 ; MIPS32-NEXT: lui $1, %hi(gv4i8)
2508 ; MIPS32-NEXT: lw $2, %lo(gv4i8)($1)
2509 ; MIPS32-NEXT: jr $ra
2512 ; MIPS64-LABEL: ret_4_i8:
2514 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_4_i8)))
2515 ; MIPS64-NEXT: daddu $1, $1, $25
2516 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_4_i8)))
2517 ; MIPS64-NEXT: ld $1, %got_disp(gv4i8)($1)
2518 ; MIPS64-NEXT: lw $2, 0($1)
2519 ; MIPS64-NEXT: jr $ra
2522 ; MIPS32R5-LABEL: ret_4_i8:
2523 ; MIPS32R5: # %bb.0:
2524 ; MIPS32R5-NEXT: lui $1, %hi(gv4i8)
2525 ; MIPS32R5-NEXT: lw $2, %lo(gv4i8)($1)
2526 ; MIPS32R5-NEXT: jr $ra
2527 ; MIPS32R5-NEXT: nop
2529 ; MIPS64R5-LABEL: ret_4_i8:
2530 ; MIPS64R5: # %bb.0:
2531 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_4_i8)))
2532 ; MIPS64R5-NEXT: daddu $1, $1, $25
2533 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_4_i8)))
2534 ; MIPS64R5-NEXT: ld $1, %got_disp(gv4i8)($1)
2535 ; MIPS64R5-NEXT: lw $2, 0($1)
2536 ; MIPS64R5-NEXT: jr $ra
2537 ; MIPS64R5-NEXT: nop
2538 %1 = load <4 x i8>, ptr @gv4i8
2542 define <8 x i8> @ret_8_i8() {
2543 ; MIPS32-LABEL: ret_8_i8:
2545 ; MIPS32-NEXT: lui $1, %hi(gv8i8)
2546 ; MIPS32-NEXT: lw $2, %lo(gv8i8)($1)
2547 ; MIPS32-NEXT: addiu $1, $1, %lo(gv8i8)
2548 ; MIPS32-NEXT: lw $3, 4($1)
2549 ; MIPS32-NEXT: jr $ra
2552 ; MIPS64-LABEL: ret_8_i8:
2554 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_8_i8)))
2555 ; MIPS64-NEXT: daddu $1, $1, $25
2556 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_8_i8)))
2557 ; MIPS64-NEXT: ld $1, %got_disp(gv8i8)($1)
2558 ; MIPS64-NEXT: ld $2, 0($1)
2559 ; MIPS64-NEXT: jr $ra
2562 ; MIPS32R5EB-LABEL: ret_8_i8:
2563 ; MIPS32R5EB: # %bb.0:
2564 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -32
2565 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 32
2566 ; MIPS32R5EB-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
2567 ; MIPS32R5EB-NEXT: sw $fp, 24($sp) # 4-byte Folded Spill
2568 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
2569 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
2570 ; MIPS32R5EB-NEXT: move $fp, $sp
2571 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
2572 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
2573 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
2574 ; MIPS32R5EB-NEXT: lui $1, %hi(gv8i8)
2575 ; MIPS32R5EB-NEXT: lw $2, %lo(gv8i8)($1)
2576 ; MIPS32R5EB-NEXT: sw $2, 4($sp)
2577 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo(gv8i8)
2578 ; MIPS32R5EB-NEXT: lw $1, 4($1)
2579 ; MIPS32R5EB-NEXT: sw $1, 12($sp)
2580 ; MIPS32R5EB-NEXT: ld.w $w0, 0($sp)
2581 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[1]
2582 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[3]
2583 ; MIPS32R5EB-NEXT: move $sp, $fp
2584 ; MIPS32R5EB-NEXT: lw $fp, 24($sp) # 4-byte Folded Reload
2585 ; MIPS32R5EB-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
2586 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 32
2587 ; MIPS32R5EB-NEXT: jr $ra
2588 ; MIPS32R5EB-NEXT: nop
2590 ; MIPS64R5-LABEL: ret_8_i8:
2591 ; MIPS64R5: # %bb.0:
2592 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_8_i8)))
2593 ; MIPS64R5-NEXT: daddu $1, $1, $25
2594 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_8_i8)))
2595 ; MIPS64R5-NEXT: ld $1, %got_disp(gv8i8)($1)
2596 ; MIPS64R5-NEXT: ld $2, 0($1)
2597 ; MIPS64R5-NEXT: jr $ra
2598 ; MIPS64R5-NEXT: nop
2600 ; MIPS32R5EL-LABEL: ret_8_i8:
2601 ; MIPS32R5EL: # %bb.0:
2602 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -32
2603 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 32
2604 ; MIPS32R5EL-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
2605 ; MIPS32R5EL-NEXT: sw $fp, 24($sp) # 4-byte Folded Spill
2606 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
2607 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
2608 ; MIPS32R5EL-NEXT: move $fp, $sp
2609 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
2610 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
2611 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
2612 ; MIPS32R5EL-NEXT: lui $1, %hi(gv8i8)
2613 ; MIPS32R5EL-NEXT: lw $2, %lo(gv8i8)($1)
2614 ; MIPS32R5EL-NEXT: sw $2, 0($sp)
2615 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo(gv8i8)
2616 ; MIPS32R5EL-NEXT: lw $1, 4($1)
2617 ; MIPS32R5EL-NEXT: sw $1, 8($sp)
2618 ; MIPS32R5EL-NEXT: ld.w $w0, 0($sp)
2619 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[0]
2620 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[2]
2621 ; MIPS32R5EL-NEXT: move $sp, $fp
2622 ; MIPS32R5EL-NEXT: lw $fp, 24($sp) # 4-byte Folded Reload
2623 ; MIPS32R5EL-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
2624 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 32
2625 ; MIPS32R5EL-NEXT: jr $ra
2626 ; MIPS32R5EL-NEXT: nop
2627 %1 = load <8 x i8>, ptr @gv8i8
2631 define <16 x i8> @ret_16_i8() {
2632 ; MIPS32-LABEL: ret_16_i8:
2634 ; MIPS32-NEXT: lui $1, %hi(gv16i8)
2635 ; MIPS32-NEXT: lw $2, %lo(gv16i8)($1)
2636 ; MIPS32-NEXT: addiu $1, $1, %lo(gv16i8)
2637 ; MIPS32-NEXT: lw $3, 4($1)
2638 ; MIPS32-NEXT: lw $4, 8($1)
2639 ; MIPS32-NEXT: lw $5, 12($1)
2640 ; MIPS32-NEXT: jr $ra
2643 ; MIPS64-LABEL: ret_16_i8:
2645 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_16_i8)))
2646 ; MIPS64-NEXT: daddu $1, $1, $25
2647 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_16_i8)))
2648 ; MIPS64-NEXT: ld $1, %got_disp(gv16i8)($1)
2649 ; MIPS64-NEXT: ld $2, 0($1)
2650 ; MIPS64-NEXT: ld $3, 8($1)
2651 ; MIPS64-NEXT: jr $ra
2654 ; MIPS32R5-LABEL: ret_16_i8:
2655 ; MIPS32R5: # %bb.0:
2656 ; MIPS32R5-NEXT: lui $1, %hi(gv16i8)
2657 ; MIPS32R5-NEXT: addiu $1, $1, %lo(gv16i8)
2658 ; MIPS32R5-NEXT: ld.w $w0, 0($1)
2659 ; MIPS32R5-NEXT: copy_s.w $2, $w0[0]
2660 ; MIPS32R5-NEXT: copy_s.w $3, $w0[1]
2661 ; MIPS32R5-NEXT: copy_s.w $4, $w0[2]
2662 ; MIPS32R5-NEXT: copy_s.w $5, $w0[3]
2663 ; MIPS32R5-NEXT: jr $ra
2664 ; MIPS32R5-NEXT: nop
2666 ; MIPS64R5-LABEL: ret_16_i8:
2667 ; MIPS64R5: # %bb.0:
2668 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_16_i8)))
2669 ; MIPS64R5-NEXT: daddu $1, $1, $25
2670 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_16_i8)))
2671 ; MIPS64R5-NEXT: ld $1, %got_disp(gv16i8)($1)
2672 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
2673 ; MIPS64R5-NEXT: copy_s.d $2, $w0[0]
2674 ; MIPS64R5-NEXT: copy_s.d $3, $w0[1]
2675 ; MIPS64R5-NEXT: jr $ra
2676 ; MIPS64R5-NEXT: nop
2677 %1 = load <16 x i8>, ptr @gv16i8
2681 define <2 x i16> @ret_2_i16() {
2682 ; MIPS32-LABEL: ret_2_i16:
2684 ; MIPS32-NEXT: lui $1, %hi(gv2i16)
2685 ; MIPS32-NEXT: lw $2, %lo(gv2i16)($1)
2686 ; MIPS32-NEXT: jr $ra
2689 ; MIPS64-LABEL: ret_2_i16:
2691 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_2_i16)))
2692 ; MIPS64-NEXT: daddu $1, $1, $25
2693 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_2_i16)))
2694 ; MIPS64-NEXT: ld $1, %got_disp(gv2i16)($1)
2695 ; MIPS64-NEXT: lw $2, 0($1)
2696 ; MIPS64-NEXT: jr $ra
2699 ; MIPS32R5-LABEL: ret_2_i16:
2700 ; MIPS32R5: # %bb.0:
2701 ; MIPS32R5-NEXT: lui $1, %hi(gv2i16)
2702 ; MIPS32R5-NEXT: lw $2, %lo(gv2i16)($1)
2703 ; MIPS32R5-NEXT: jr $ra
2704 ; MIPS32R5-NEXT: nop
2706 ; MIPS64R5-LABEL: ret_2_i16:
2707 ; MIPS64R5: # %bb.0:
2708 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_2_i16)))
2709 ; MIPS64R5-NEXT: daddu $1, $1, $25
2710 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_2_i16)))
2711 ; MIPS64R5-NEXT: ld $1, %got_disp(gv2i16)($1)
2712 ; MIPS64R5-NEXT: lw $2, 0($1)
2713 ; MIPS64R5-NEXT: jr $ra
2714 ; MIPS64R5-NEXT: nop
2715 %1 = load <2 x i16>, ptr @gv2i16
2719 define <4 x i16> @ret_4_i16() {
2720 ; MIPS32-LABEL: ret_4_i16:
2722 ; MIPS32-NEXT: lui $1, %hi(gv4i16)
2723 ; MIPS32-NEXT: lw $2, %lo(gv4i16)($1)
2724 ; MIPS32-NEXT: addiu $1, $1, %lo(gv4i16)
2725 ; MIPS32-NEXT: lw $3, 4($1)
2726 ; MIPS32-NEXT: jr $ra
2729 ; MIPS64-LABEL: ret_4_i16:
2731 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_4_i16)))
2732 ; MIPS64-NEXT: daddu $1, $1, $25
2733 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_4_i16)))
2734 ; MIPS64-NEXT: ld $1, %got_disp(gv4i16)($1)
2735 ; MIPS64-NEXT: ld $2, 0($1)
2736 ; MIPS64-NEXT: jr $ra
2739 ; MIPS32R5EB-LABEL: ret_4_i16:
2740 ; MIPS32R5EB: # %bb.0:
2741 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -32
2742 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 32
2743 ; MIPS32R5EB-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
2744 ; MIPS32R5EB-NEXT: sw $fp, 24($sp) # 4-byte Folded Spill
2745 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
2746 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
2747 ; MIPS32R5EB-NEXT: move $fp, $sp
2748 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
2749 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
2750 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
2751 ; MIPS32R5EB-NEXT: lui $1, %hi(gv4i16)
2752 ; MIPS32R5EB-NEXT: lw $2, %lo(gv4i16)($1)
2753 ; MIPS32R5EB-NEXT: sw $2, 4($sp)
2754 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo(gv4i16)
2755 ; MIPS32R5EB-NEXT: lw $1, 4($1)
2756 ; MIPS32R5EB-NEXT: sw $1, 12($sp)
2757 ; MIPS32R5EB-NEXT: ld.w $w0, 0($sp)
2758 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[1]
2759 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[3]
2760 ; MIPS32R5EB-NEXT: move $sp, $fp
2761 ; MIPS32R5EB-NEXT: lw $fp, 24($sp) # 4-byte Folded Reload
2762 ; MIPS32R5EB-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
2763 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 32
2764 ; MIPS32R5EB-NEXT: jr $ra
2765 ; MIPS32R5EB-NEXT: nop
2767 ; MIPS64R5-LABEL: ret_4_i16:
2768 ; MIPS64R5: # %bb.0:
2769 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_4_i16)))
2770 ; MIPS64R5-NEXT: daddu $1, $1, $25
2771 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_4_i16)))
2772 ; MIPS64R5-NEXT: ld $1, %got_disp(gv4i16)($1)
2773 ; MIPS64R5-NEXT: ld $2, 0($1)
2774 ; MIPS64R5-NEXT: jr $ra
2775 ; MIPS64R5-NEXT: nop
2777 ; MIPS32R5EL-LABEL: ret_4_i16:
2778 ; MIPS32R5EL: # %bb.0:
2779 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -32
2780 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 32
2781 ; MIPS32R5EL-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
2782 ; MIPS32R5EL-NEXT: sw $fp, 24($sp) # 4-byte Folded Spill
2783 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
2784 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
2785 ; MIPS32R5EL-NEXT: move $fp, $sp
2786 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
2787 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
2788 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
2789 ; MIPS32R5EL-NEXT: lui $1, %hi(gv4i16)
2790 ; MIPS32R5EL-NEXT: lw $2, %lo(gv4i16)($1)
2791 ; MIPS32R5EL-NEXT: sw $2, 0($sp)
2792 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo(gv4i16)
2793 ; MIPS32R5EL-NEXT: lw $1, 4($1)
2794 ; MIPS32R5EL-NEXT: sw $1, 8($sp)
2795 ; MIPS32R5EL-NEXT: ld.w $w0, 0($sp)
2796 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[0]
2797 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[2]
2798 ; MIPS32R5EL-NEXT: move $sp, $fp
2799 ; MIPS32R5EL-NEXT: lw $fp, 24($sp) # 4-byte Folded Reload
2800 ; MIPS32R5EL-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
2801 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 32
2802 ; MIPS32R5EL-NEXT: jr $ra
2803 ; MIPS32R5EL-NEXT: nop
2804 %1 = load <4 x i16>, ptr @gv4i16
2808 define <8 x i16> @ret_8_i16() {
2809 ; MIPS32-LABEL: ret_8_i16:
2811 ; MIPS32-NEXT: lui $1, %hi(gv8i16)
2812 ; MIPS32-NEXT: lw $2, %lo(gv8i16)($1)
2813 ; MIPS32-NEXT: addiu $1, $1, %lo(gv8i16)
2814 ; MIPS32-NEXT: lw $3, 4($1)
2815 ; MIPS32-NEXT: lw $4, 8($1)
2816 ; MIPS32-NEXT: lw $5, 12($1)
2817 ; MIPS32-NEXT: jr $ra
2820 ; MIPS64-LABEL: ret_8_i16:
2822 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_8_i16)))
2823 ; MIPS64-NEXT: daddu $1, $1, $25
2824 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_8_i16)))
2825 ; MIPS64-NEXT: ld $1, %got_disp(gv8i16)($1)
2826 ; MIPS64-NEXT: ld $2, 0($1)
2827 ; MIPS64-NEXT: ld $3, 8($1)
2828 ; MIPS64-NEXT: jr $ra
2831 ; MIPS32R5-LABEL: ret_8_i16:
2832 ; MIPS32R5: # %bb.0:
2833 ; MIPS32R5-NEXT: lui $1, %hi(gv8i16)
2834 ; MIPS32R5-NEXT: addiu $1, $1, %lo(gv8i16)
2835 ; MIPS32R5-NEXT: ld.w $w0, 0($1)
2836 ; MIPS32R5-NEXT: copy_s.w $2, $w0[0]
2837 ; MIPS32R5-NEXT: copy_s.w $3, $w0[1]
2838 ; MIPS32R5-NEXT: copy_s.w $4, $w0[2]
2839 ; MIPS32R5-NEXT: copy_s.w $5, $w0[3]
2840 ; MIPS32R5-NEXT: jr $ra
2841 ; MIPS32R5-NEXT: nop
2843 ; MIPS64R5-LABEL: ret_8_i16:
2844 ; MIPS64R5: # %bb.0:
2845 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_8_i16)))
2846 ; MIPS64R5-NEXT: daddu $1, $1, $25
2847 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_8_i16)))
2848 ; MIPS64R5-NEXT: ld $1, %got_disp(gv8i16)($1)
2849 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
2850 ; MIPS64R5-NEXT: copy_s.d $2, $w0[0]
2851 ; MIPS64R5-NEXT: copy_s.d $3, $w0[1]
2852 ; MIPS64R5-NEXT: jr $ra
2853 ; MIPS64R5-NEXT: nop
2854 %1 = load <8 x i16>, ptr @gv8i16
2858 define <2 x i32> @ret_2_i32() {
2859 ; MIPS32-LABEL: ret_2_i32:
2861 ; MIPS32-NEXT: lui $1, %hi(gv2i32)
2862 ; MIPS32-NEXT: lw $2, %lo(gv2i32)($1)
2863 ; MIPS32-NEXT: addiu $1, $1, %lo(gv2i32)
2864 ; MIPS32-NEXT: lw $3, 4($1)
2865 ; MIPS32-NEXT: jr $ra
2868 ; MIPS64-LABEL: ret_2_i32:
2870 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_2_i32)))
2871 ; MIPS64-NEXT: daddu $1, $1, $25
2872 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_2_i32)))
2873 ; MIPS64-NEXT: ld $1, %got_disp(gv2i32)($1)
2874 ; MIPS64-NEXT: ld $2, 0($1)
2875 ; MIPS64-NEXT: jr $ra
2878 ; MIPS32R5EB-LABEL: ret_2_i32:
2879 ; MIPS32R5EB: # %bb.0:
2880 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -32
2881 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 32
2882 ; MIPS32R5EB-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
2883 ; MIPS32R5EB-NEXT: sw $fp, 24($sp) # 4-byte Folded Spill
2884 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
2885 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
2886 ; MIPS32R5EB-NEXT: move $fp, $sp
2887 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
2888 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
2889 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
2890 ; MIPS32R5EB-NEXT: lui $1, %hi(gv2i32)
2891 ; MIPS32R5EB-NEXT: lw $2, %lo(gv2i32)($1)
2892 ; MIPS32R5EB-NEXT: sw $2, 4($sp)
2893 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo(gv2i32)
2894 ; MIPS32R5EB-NEXT: lw $1, 4($1)
2895 ; MIPS32R5EB-NEXT: sw $1, 12($sp)
2896 ; MIPS32R5EB-NEXT: ld.w $w0, 0($sp)
2897 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[1]
2898 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[3]
2899 ; MIPS32R5EB-NEXT: move $sp, $fp
2900 ; MIPS32R5EB-NEXT: lw $fp, 24($sp) # 4-byte Folded Reload
2901 ; MIPS32R5EB-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
2902 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 32
2903 ; MIPS32R5EB-NEXT: jr $ra
2904 ; MIPS32R5EB-NEXT: nop
2906 ; MIPS64R5-LABEL: ret_2_i32:
2907 ; MIPS64R5: # %bb.0:
2908 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_2_i32)))
2909 ; MIPS64R5-NEXT: daddu $1, $1, $25
2910 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_2_i32)))
2911 ; MIPS64R5-NEXT: ld $1, %got_disp(gv2i32)($1)
2912 ; MIPS64R5-NEXT: ld $2, 0($1)
2913 ; MIPS64R5-NEXT: jr $ra
2914 ; MIPS64R5-NEXT: nop
2916 ; MIPS32R5EL-LABEL: ret_2_i32:
2917 ; MIPS32R5EL: # %bb.0:
2918 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -32
2919 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 32
2920 ; MIPS32R5EL-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
2921 ; MIPS32R5EL-NEXT: sw $fp, 24($sp) # 4-byte Folded Spill
2922 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
2923 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
2924 ; MIPS32R5EL-NEXT: move $fp, $sp
2925 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
2926 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
2927 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
2928 ; MIPS32R5EL-NEXT: lui $1, %hi(gv2i32)
2929 ; MIPS32R5EL-NEXT: lw $2, %lo(gv2i32)($1)
2930 ; MIPS32R5EL-NEXT: sw $2, 0($sp)
2931 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo(gv2i32)
2932 ; MIPS32R5EL-NEXT: lw $1, 4($1)
2933 ; MIPS32R5EL-NEXT: sw $1, 8($sp)
2934 ; MIPS32R5EL-NEXT: ld.w $w0, 0($sp)
2935 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[0]
2936 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[2]
2937 ; MIPS32R5EL-NEXT: move $sp, $fp
2938 ; MIPS32R5EL-NEXT: lw $fp, 24($sp) # 4-byte Folded Reload
2939 ; MIPS32R5EL-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
2940 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 32
2941 ; MIPS32R5EL-NEXT: jr $ra
2942 ; MIPS32R5EL-NEXT: nop
2943 %1 = load <2 x i32>, ptr @gv2i32
2947 define <4 x i32> @ret_4_i32() {
2948 ; MIPS32-LABEL: ret_4_i32:
2950 ; MIPS32-NEXT: lui $1, %hi(gv4i32)
2951 ; MIPS32-NEXT: lw $2, %lo(gv4i32)($1)
2952 ; MIPS32-NEXT: addiu $1, $1, %lo(gv4i32)
2953 ; MIPS32-NEXT: lw $3, 4($1)
2954 ; MIPS32-NEXT: lw $4, 8($1)
2955 ; MIPS32-NEXT: lw $5, 12($1)
2956 ; MIPS32-NEXT: jr $ra
2959 ; MIPS64-LABEL: ret_4_i32:
2961 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_4_i32)))
2962 ; MIPS64-NEXT: daddu $1, $1, $25
2963 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_4_i32)))
2964 ; MIPS64-NEXT: ld $1, %got_disp(gv4i32)($1)
2965 ; MIPS64-NEXT: ld $2, 0($1)
2966 ; MIPS64-NEXT: ld $3, 8($1)
2967 ; MIPS64-NEXT: jr $ra
2970 ; MIPS32R5-LABEL: ret_4_i32:
2971 ; MIPS32R5: # %bb.0:
2972 ; MIPS32R5-NEXT: lui $1, %hi(gv4i32)
2973 ; MIPS32R5-NEXT: addiu $1, $1, %lo(gv4i32)
2974 ; MIPS32R5-NEXT: ld.w $w0, 0($1)
2975 ; MIPS32R5-NEXT: copy_s.w $2, $w0[0]
2976 ; MIPS32R5-NEXT: copy_s.w $3, $w0[1]
2977 ; MIPS32R5-NEXT: copy_s.w $4, $w0[2]
2978 ; MIPS32R5-NEXT: copy_s.w $5, $w0[3]
2979 ; MIPS32R5-NEXT: jr $ra
2980 ; MIPS32R5-NEXT: nop
2982 ; MIPS64R5-LABEL: ret_4_i32:
2983 ; MIPS64R5: # %bb.0:
2984 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_4_i32)))
2985 ; MIPS64R5-NEXT: daddu $1, $1, $25
2986 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_4_i32)))
2987 ; MIPS64R5-NEXT: ld $1, %got_disp(gv4i32)($1)
2988 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
2989 ; MIPS64R5-NEXT: copy_s.d $2, $w0[0]
2990 ; MIPS64R5-NEXT: copy_s.d $3, $w0[1]
2991 ; MIPS64R5-NEXT: jr $ra
2992 ; MIPS64R5-NEXT: nop
2993 %1 = load <4 x i32>, ptr @gv4i32
2997 define <2 x i64> @ret_2_i64() {
2998 ; MIPS32-LABEL: ret_2_i64:
3000 ; MIPS32-NEXT: lui $1, %hi(gv2i64)
3001 ; MIPS32-NEXT: lw $2, %lo(gv2i64)($1)
3002 ; MIPS32-NEXT: addiu $1, $1, %lo(gv2i64)
3003 ; MIPS32-NEXT: lw $3, 4($1)
3004 ; MIPS32-NEXT: lw $4, 8($1)
3005 ; MIPS32-NEXT: lw $5, 12($1)
3006 ; MIPS32-NEXT: jr $ra
3009 ; MIPS64-LABEL: ret_2_i64:
3011 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_2_i64)))
3012 ; MIPS64-NEXT: daddu $1, $1, $25
3013 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_2_i64)))
3014 ; MIPS64-NEXT: ld $1, %got_disp(gv2i64)($1)
3015 ; MIPS64-NEXT: ld $2, 0($1)
3016 ; MIPS64-NEXT: ld $3, 8($1)
3017 ; MIPS64-NEXT: jr $ra
3020 ; MIPS32R5-LABEL: ret_2_i64:
3021 ; MIPS32R5: # %bb.0:
3022 ; MIPS32R5-NEXT: lui $1, %hi(gv2i64)
3023 ; MIPS32R5-NEXT: addiu $1, $1, %lo(gv2i64)
3024 ; MIPS32R5-NEXT: ld.w $w0, 0($1)
3025 ; MIPS32R5-NEXT: copy_s.w $2, $w0[0]
3026 ; MIPS32R5-NEXT: copy_s.w $3, $w0[1]
3027 ; MIPS32R5-NEXT: copy_s.w $4, $w0[2]
3028 ; MIPS32R5-NEXT: copy_s.w $5, $w0[3]
3029 ; MIPS32R5-NEXT: jr $ra
3030 ; MIPS32R5-NEXT: nop
3032 ; MIPS64R5-LABEL: ret_2_i64:
3033 ; MIPS64R5: # %bb.0:
3034 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_2_i64)))
3035 ; MIPS64R5-NEXT: daddu $1, $1, $25
3036 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_2_i64)))
3037 ; MIPS64R5-NEXT: ld $1, %got_disp(gv2i64)($1)
3038 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
3039 ; MIPS64R5-NEXT: copy_s.d $2, $w0[0]
3040 ; MIPS64R5-NEXT: copy_s.d $3, $w0[1]
3041 ; MIPS64R5-NEXT: jr $ra
3042 ; MIPS64R5-NEXT: nop
3043 %1 = load <2 x i64>, ptr @gv2i64
3047 @gv2f32 = global <2 x float> <float 0.0, float 0.0>
3048 @gv4f32 = global <4 x float> <float 0.0, float 0.0, float 0.0, float 0.0>
3050 define <2 x float> @ret_float_2() {
3051 ; MIPS32-LABEL: ret_float_2:
3052 ; MIPS32: # %bb.0: # %entry
3053 ; MIPS32-NEXT: lui $1, %hi(gv2f32)
3054 ; MIPS32-NEXT: addiu $2, $1, %lo(gv2f32)
3055 ; MIPS32-NEXT: lwc1 $f0, 4($2)
3056 ; MIPS32-NEXT: swc1 $f0, 4($4)
3057 ; MIPS32-NEXT: lwc1 $f0, %lo(gv2f32)($1)
3058 ; MIPS32-NEXT: swc1 $f0, 0($4)
3059 ; MIPS32-NEXT: jr $ra
3062 ; MIPS64-LABEL: ret_float_2:
3063 ; MIPS64: # %bb.0: # %entry
3064 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_float_2)))
3065 ; MIPS64-NEXT: daddu $1, $1, $25
3066 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_float_2)))
3067 ; MIPS64-NEXT: ld $1, %got_disp(gv2f32)($1)
3068 ; MIPS64-NEXT: ld $2, 0($1)
3069 ; MIPS64-NEXT: jr $ra
3072 ; MIPS32R5-LABEL: ret_float_2:
3073 ; MIPS32R5: # %bb.0: # %entry
3074 ; MIPS32R5-NEXT: lui $1, %hi(gv2f32)
3075 ; MIPS32R5-NEXT: addiu $2, $1, %lo(gv2f32)
3076 ; MIPS32R5-NEXT: lwc1 $f0, 4($2)
3077 ; MIPS32R5-NEXT: swc1 $f0, 4($4)
3078 ; MIPS32R5-NEXT: lwc1 $f0, %lo(gv2f32)($1)
3079 ; MIPS32R5-NEXT: swc1 $f0, 0($4)
3080 ; MIPS32R5-NEXT: jr $ra
3081 ; MIPS32R5-NEXT: nop
3083 ; MIPS64R5-LABEL: ret_float_2:
3084 ; MIPS64R5: # %bb.0: # %entry
3085 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_float_2)))
3086 ; MIPS64R5-NEXT: daddu $1, $1, $25
3087 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_float_2)))
3088 ; MIPS64R5-NEXT: ld $1, %got_disp(gv2f32)($1)
3089 ; MIPS64R5-NEXT: ld $2, 0($1)
3090 ; MIPS64R5-NEXT: jr $ra
3091 ; MIPS64R5-NEXT: nop
3093 %0 = load <2 x float>, ptr @gv2f32
3097 define <4 x float> @ret_float_4() {
3098 ; MIPS32-LABEL: ret_float_4:
3099 ; MIPS32: # %bb.0: # %entry
3100 ; MIPS32-NEXT: lui $1, %hi(gv4f32)
3101 ; MIPS32-NEXT: addiu $2, $1, %lo(gv4f32)
3102 ; MIPS32-NEXT: lwc1 $f0, 12($2)
3103 ; MIPS32-NEXT: swc1 $f0, 12($4)
3104 ; MIPS32-NEXT: lwc1 $f0, 8($2)
3105 ; MIPS32-NEXT: swc1 $f0, 8($4)
3106 ; MIPS32-NEXT: lwc1 $f0, 4($2)
3107 ; MIPS32-NEXT: swc1 $f0, 4($4)
3108 ; MIPS32-NEXT: lwc1 $f0, %lo(gv4f32)($1)
3109 ; MIPS32-NEXT: swc1 $f0, 0($4)
3110 ; MIPS32-NEXT: jr $ra
3113 ; MIPS64-LABEL: ret_float_4:
3114 ; MIPS64: # %bb.0: # %entry
3115 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_float_4)))
3116 ; MIPS64-NEXT: daddu $1, $1, $25
3117 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_float_4)))
3118 ; MIPS64-NEXT: ld $1, %got_disp(gv4f32)($1)
3119 ; MIPS64-NEXT: ld $2, 0($1)
3120 ; MIPS64-NEXT: ld $3, 8($1)
3121 ; MIPS64-NEXT: jr $ra
3124 ; MIPS32R5-LABEL: ret_float_4:
3125 ; MIPS32R5: # %bb.0: # %entry
3126 ; MIPS32R5-NEXT: lui $1, %hi(gv4f32)
3127 ; MIPS32R5-NEXT: addiu $1, $1, %lo(gv4f32)
3128 ; MIPS32R5-NEXT: ld.w $w0, 0($1)
3129 ; MIPS32R5-NEXT: st.w $w0, 0($4)
3130 ; MIPS32R5-NEXT: jr $ra
3131 ; MIPS32R5-NEXT: nop
3133 ; MIPS64R5-LABEL: ret_float_4:
3134 ; MIPS64R5: # %bb.0: # %entry
3135 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_float_4)))
3136 ; MIPS64R5-NEXT: daddu $1, $1, $25
3137 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_float_4)))
3138 ; MIPS64R5-NEXT: ld $1, %got_disp(gv4f32)($1)
3139 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
3140 ; MIPS64R5-NEXT: copy_s.d $2, $w0[0]
3141 ; MIPS64R5-NEXT: copy_s.d $3, $w0[1]
3142 ; MIPS64R5-NEXT: jr $ra
3143 ; MIPS64R5-NEXT: nop
3145 %0 = load <4 x float>, ptr @gv4f32
3149 @gv2f64 = global <2 x double> <double 0.0, double 0.0>
3151 define <2 x double> @ret_double_2() {
3152 ; MIPS32-LABEL: ret_double_2:
3153 ; MIPS32: # %bb.0: # %entry
3154 ; MIPS32-NEXT: lui $1, %hi(gv2f64)
3155 ; MIPS32-NEXT: addiu $2, $1, %lo(gv2f64)
3156 ; MIPS32-NEXT: ldc1 $f0, 8($2)
3157 ; MIPS32-NEXT: sdc1 $f0, 8($4)
3158 ; MIPS32-NEXT: ldc1 $f0, %lo(gv2f64)($1)
3159 ; MIPS32-NEXT: sdc1 $f0, 0($4)
3160 ; MIPS32-NEXT: jr $ra
3163 ; MIPS64-LABEL: ret_double_2:
3164 ; MIPS64: # %bb.0: # %entry
3165 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(ret_double_2)))
3166 ; MIPS64-NEXT: daddu $1, $1, $25
3167 ; MIPS64-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_double_2)))
3168 ; MIPS64-NEXT: ld $1, %got_disp(gv2f64)($1)
3169 ; MIPS64-NEXT: ld $2, 0($1)
3170 ; MIPS64-NEXT: ld $3, 8($1)
3171 ; MIPS64-NEXT: jr $ra
3174 ; MIPS32R5-LABEL: ret_double_2:
3175 ; MIPS32R5: # %bb.0: # %entry
3176 ; MIPS32R5-NEXT: lui $1, %hi(gv2f64)
3177 ; MIPS32R5-NEXT: addiu $1, $1, %lo(gv2f64)
3178 ; MIPS32R5-NEXT: ld.d $w0, 0($1)
3179 ; MIPS32R5-NEXT: st.d $w0, 0($4)
3180 ; MIPS32R5-NEXT: jr $ra
3181 ; MIPS32R5-NEXT: nop
3183 ; MIPS64R5-LABEL: ret_double_2:
3184 ; MIPS64R5: # %bb.0: # %entry
3185 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(ret_double_2)))
3186 ; MIPS64R5-NEXT: daddu $1, $1, $25
3187 ; MIPS64R5-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(ret_double_2)))
3188 ; MIPS64R5-NEXT: ld $1, %got_disp(gv2f64)($1)
3189 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
3190 ; MIPS64R5-NEXT: copy_s.d $2, $w0[0]
3191 ; MIPS64R5-NEXT: copy_s.d $3, $w0[1]
3192 ; MIPS64R5-NEXT: jr $ra
3193 ; MIPS64R5-NEXT: nop
3195 %0 = load <2 x double>, ptr @gv2f64
3199 ; Test argument lowering and call result lowering.
3201 define void @call_i8_2() {
3202 ; MIPS32EB-LABEL: call_i8_2:
3203 ; MIPS32EB: # %bb.0: # %entry
3204 ; MIPS32EB-NEXT: addiu $sp, $sp, -24
3205 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 24
3206 ; MIPS32EB-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
3207 ; MIPS32EB-NEXT: .cfi_offset 31, -4
3208 ; MIPS32EB-NEXT: addiu $4, $zero, 1543
3209 ; MIPS32EB-NEXT: addiu $5, $zero, 3080
3210 ; MIPS32EB-NEXT: jal i8_2
3211 ; MIPS32EB-NEXT: nop
3212 ; MIPS32EB-NEXT: lui $1, %hi(gv2i8)
3213 ; MIPS32EB-NEXT: sh $2, %lo(gv2i8)($1)
3214 ; MIPS32EB-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
3215 ; MIPS32EB-NEXT: addiu $sp, $sp, 24
3216 ; MIPS32EB-NEXT: jr $ra
3217 ; MIPS32EB-NEXT: nop
3219 ; MIPS64EB-LABEL: call_i8_2:
3220 ; MIPS64EB: # %bb.0: # %entry
3221 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
3222 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
3223 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
3224 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
3225 ; MIPS64EB-NEXT: .cfi_offset 31, -8
3226 ; MIPS64EB-NEXT: .cfi_offset 28, -16
3227 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_2)))
3228 ; MIPS64EB-NEXT: daddu $1, $1, $25
3229 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_2)))
3230 ; MIPS64EB-NEXT: ld $25, %call16(i8_2)($gp)
3231 ; MIPS64EB-NEXT: daddiu $4, $zero, 1543
3232 ; MIPS64EB-NEXT: daddiu $5, $zero, 3080
3233 ; MIPS64EB-NEXT: jalr $25
3234 ; MIPS64EB-NEXT: nop
3235 ; MIPS64EB-NEXT: ld $1, %got_disp(gv2i8)($gp)
3236 ; MIPS64EB-NEXT: sh $2, 0($1)
3237 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
3238 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
3239 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
3240 ; MIPS64EB-NEXT: jr $ra
3241 ; MIPS64EB-NEXT: nop
3243 ; MIPS32R5EB-LABEL: call_i8_2:
3244 ; MIPS32R5EB: # %bb.0: # %entry
3245 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -32
3246 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 32
3247 ; MIPS32R5EB-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
3248 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
3249 ; MIPS32R5EB-NEXT: addiu $4, $zero, 1543
3250 ; MIPS32R5EB-NEXT: addiu $5, $zero, 3080
3251 ; MIPS32R5EB-NEXT: jal i8_2
3252 ; MIPS32R5EB-NEXT: nop
3253 ; MIPS32R5EB-NEXT: lui $1, %hi(gv2i8)
3254 ; MIPS32R5EB-NEXT: sh $2, %lo(gv2i8)($1)
3255 ; MIPS32R5EB-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
3256 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 32
3257 ; MIPS32R5EB-NEXT: jr $ra
3258 ; MIPS32R5EB-NEXT: nop
3260 ; MIPS64R5EB-LABEL: call_i8_2:
3261 ; MIPS64R5EB: # %bb.0: # %entry
3262 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -32
3263 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 32
3264 ; MIPS64R5EB-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
3265 ; MIPS64R5EB-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
3266 ; MIPS64R5EB-NEXT: .cfi_offset 31, -8
3267 ; MIPS64R5EB-NEXT: .cfi_offset 28, -16
3268 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_2)))
3269 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
3270 ; MIPS64R5EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_2)))
3271 ; MIPS64R5EB-NEXT: addiu $1, $zero, 1543
3272 ; MIPS64R5EB-NEXT: sh $1, 8($sp)
3273 ; MIPS64R5EB-NEXT: addiu $1, $zero, 3080
3274 ; MIPS64R5EB-NEXT: sh $1, 12($sp)
3275 ; MIPS64R5EB-NEXT: ld $25, %call16(i8_2)($gp)
3276 ; MIPS64R5EB-NEXT: lh $4, 8($sp)
3277 ; MIPS64R5EB-NEXT: lh $5, 12($sp)
3278 ; MIPS64R5EB-NEXT: jalr $25
3279 ; MIPS64R5EB-NEXT: nop
3280 ; MIPS64R5EB-NEXT: ld $1, %got_disp(gv2i8)($gp)
3281 ; MIPS64R5EB-NEXT: sh $2, 0($1)
3282 ; MIPS64R5EB-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
3283 ; MIPS64R5EB-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
3284 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 32
3285 ; MIPS64R5EB-NEXT: jr $ra
3286 ; MIPS64R5EB-NEXT: nop
3288 ; MIPS32EL-LABEL: call_i8_2:
3289 ; MIPS32EL: # %bb.0: # %entry
3290 ; MIPS32EL-NEXT: addiu $sp, $sp, -24
3291 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 24
3292 ; MIPS32EL-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
3293 ; MIPS32EL-NEXT: .cfi_offset 31, -4
3294 ; MIPS32EL-NEXT: addiu $4, $zero, 1798
3295 ; MIPS32EL-NEXT: addiu $5, $zero, 2060
3296 ; MIPS32EL-NEXT: jal i8_2
3297 ; MIPS32EL-NEXT: nop
3298 ; MIPS32EL-NEXT: lui $1, %hi(gv2i8)
3299 ; MIPS32EL-NEXT: sh $2, %lo(gv2i8)($1)
3300 ; MIPS32EL-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
3301 ; MIPS32EL-NEXT: addiu $sp, $sp, 24
3302 ; MIPS32EL-NEXT: jr $ra
3303 ; MIPS32EL-NEXT: nop
3305 ; MIPS64EL-LABEL: call_i8_2:
3306 ; MIPS64EL: # %bb.0: # %entry
3307 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
3308 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
3309 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
3310 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
3311 ; MIPS64EL-NEXT: .cfi_offset 31, -8
3312 ; MIPS64EL-NEXT: .cfi_offset 28, -16
3313 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_2)))
3314 ; MIPS64EL-NEXT: daddu $1, $1, $25
3315 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_2)))
3316 ; MIPS64EL-NEXT: ld $25, %call16(i8_2)($gp)
3317 ; MIPS64EL-NEXT: daddiu $4, $zero, 1798
3318 ; MIPS64EL-NEXT: daddiu $5, $zero, 2060
3319 ; MIPS64EL-NEXT: jalr $25
3320 ; MIPS64EL-NEXT: nop
3321 ; MIPS64EL-NEXT: ld $1, %got_disp(gv2i8)($gp)
3322 ; MIPS64EL-NEXT: sh $2, 0($1)
3323 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
3324 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
3325 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
3326 ; MIPS64EL-NEXT: jr $ra
3327 ; MIPS64EL-NEXT: nop
3329 ; MIPS32R5EL-LABEL: call_i8_2:
3330 ; MIPS32R5EL: # %bb.0: # %entry
3331 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -32
3332 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 32
3333 ; MIPS32R5EL-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
3334 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
3335 ; MIPS32R5EL-NEXT: addiu $4, $zero, 1798
3336 ; MIPS32R5EL-NEXT: addiu $5, $zero, 2060
3337 ; MIPS32R5EL-NEXT: jal i8_2
3338 ; MIPS32R5EL-NEXT: nop
3339 ; MIPS32R5EL-NEXT: lui $1, %hi(gv2i8)
3340 ; MIPS32R5EL-NEXT: sh $2, %lo(gv2i8)($1)
3341 ; MIPS32R5EL-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
3342 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 32
3343 ; MIPS32R5EL-NEXT: jr $ra
3344 ; MIPS32R5EL-NEXT: nop
3346 ; MIPS64R5EL-LABEL: call_i8_2:
3347 ; MIPS64R5EL: # %bb.0: # %entry
3348 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -32
3349 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 32
3350 ; MIPS64R5EL-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
3351 ; MIPS64R5EL-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
3352 ; MIPS64R5EL-NEXT: .cfi_offset 31, -8
3353 ; MIPS64R5EL-NEXT: .cfi_offset 28, -16
3354 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_2)))
3355 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
3356 ; MIPS64R5EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_2)))
3357 ; MIPS64R5EL-NEXT: addiu $1, $zero, 1798
3358 ; MIPS64R5EL-NEXT: sh $1, 8($sp)
3359 ; MIPS64R5EL-NEXT: addiu $1, $zero, 2060
3360 ; MIPS64R5EL-NEXT: sh $1, 12($sp)
3361 ; MIPS64R5EL-NEXT: ld $25, %call16(i8_2)($gp)
3362 ; MIPS64R5EL-NEXT: lh $4, 8($sp)
3363 ; MIPS64R5EL-NEXT: lh $5, 12($sp)
3364 ; MIPS64R5EL-NEXT: jalr $25
3365 ; MIPS64R5EL-NEXT: nop
3366 ; MIPS64R5EL-NEXT: ld $1, %got_disp(gv2i8)($gp)
3367 ; MIPS64R5EL-NEXT: sh $2, 0($1)
3368 ; MIPS64R5EL-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
3369 ; MIPS64R5EL-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
3370 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 32
3371 ; MIPS64R5EL-NEXT: jr $ra
3372 ; MIPS64R5EL-NEXT: nop
3374 %0 = call <2 x i8> @i8_2(<2 x i8> <i8 6, i8 7>, <2 x i8> <i8 12, i8 8>)
3375 store <2 x i8> %0, ptr @gv2i8
3379 define void @call_i8_4() {
3380 ; MIPS32EB-LABEL: call_i8_4:
3381 ; MIPS32EB: # %bb.0: # %entry
3382 ; MIPS32EB-NEXT: addiu $sp, $sp, -24
3383 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 24
3384 ; MIPS32EB-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
3385 ; MIPS32EB-NEXT: .cfi_offset 31, -4
3386 ; MIPS32EB-NEXT: lui $1, 1543
3387 ; MIPS32EB-NEXT: ori $4, $1, 2314
3388 ; MIPS32EB-NEXT: lui $1, 3080
3389 ; MIPS32EB-NEXT: ori $5, $1, 2314
3390 ; MIPS32EB-NEXT: jal i8_4
3391 ; MIPS32EB-NEXT: nop
3392 ; MIPS32EB-NEXT: lui $1, %hi(gv4i8)
3393 ; MIPS32EB-NEXT: sw $2, %lo(gv4i8)($1)
3394 ; MIPS32EB-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
3395 ; MIPS32EB-NEXT: addiu $sp, $sp, 24
3396 ; MIPS32EB-NEXT: jr $ra
3397 ; MIPS32EB-NEXT: nop
3399 ; MIPS64EB-LABEL: call_i8_4:
3400 ; MIPS64EB: # %bb.0: # %entry
3401 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
3402 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
3403 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
3404 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
3405 ; MIPS64EB-NEXT: .cfi_offset 31, -8
3406 ; MIPS64EB-NEXT: .cfi_offset 28, -16
3407 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_4)))
3408 ; MIPS64EB-NEXT: daddu $1, $1, $25
3409 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_4)))
3410 ; MIPS64EB-NEXT: lui $1, 1543
3411 ; MIPS64EB-NEXT: ori $4, $1, 2314
3412 ; MIPS64EB-NEXT: lui $1, 3080
3413 ; MIPS64EB-NEXT: ori $5, $1, 2314
3414 ; MIPS64EB-NEXT: ld $25, %call16(i8_4)($gp)
3415 ; MIPS64EB-NEXT: jalr $25
3416 ; MIPS64EB-NEXT: nop
3417 ; MIPS64EB-NEXT: ld $1, %got_disp(gv4i8)($gp)
3418 ; MIPS64EB-NEXT: sw $2, 0($1)
3419 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
3420 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
3421 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
3422 ; MIPS64EB-NEXT: jr $ra
3423 ; MIPS64EB-NEXT: nop
3425 ; MIPS32R5EB-LABEL: call_i8_4:
3426 ; MIPS32R5EB: # %bb.0: # %entry
3427 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -32
3428 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 32
3429 ; MIPS32R5EB-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
3430 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
3431 ; MIPS32R5EB-NEXT: lui $1, 1543
3432 ; MIPS32R5EB-NEXT: ori $4, $1, 2314
3433 ; MIPS32R5EB-NEXT: lui $1, 3080
3434 ; MIPS32R5EB-NEXT: ori $5, $1, 2314
3435 ; MIPS32R5EB-NEXT: jal i8_4
3436 ; MIPS32R5EB-NEXT: nop
3437 ; MIPS32R5EB-NEXT: lui $1, %hi(gv4i8)
3438 ; MIPS32R5EB-NEXT: sw $2, %lo(gv4i8)($1)
3439 ; MIPS32R5EB-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
3440 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 32
3441 ; MIPS32R5EB-NEXT: jr $ra
3442 ; MIPS32R5EB-NEXT: nop
3444 ; MIPS64R5EB-LABEL: call_i8_4:
3445 ; MIPS64R5EB: # %bb.0: # %entry
3446 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -32
3447 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 32
3448 ; MIPS64R5EB-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
3449 ; MIPS64R5EB-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
3450 ; MIPS64R5EB-NEXT: .cfi_offset 31, -8
3451 ; MIPS64R5EB-NEXT: .cfi_offset 28, -16
3452 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_4)))
3453 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
3454 ; MIPS64R5EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_4)))
3455 ; MIPS64R5EB-NEXT: lui $1, 1543
3456 ; MIPS64R5EB-NEXT: ori $4, $1, 2314
3457 ; MIPS64R5EB-NEXT: lui $1, 3080
3458 ; MIPS64R5EB-NEXT: ori $5, $1, 2314
3459 ; MIPS64R5EB-NEXT: ld $25, %call16(i8_4)($gp)
3460 ; MIPS64R5EB-NEXT: jalr $25
3461 ; MIPS64R5EB-NEXT: nop
3462 ; MIPS64R5EB-NEXT: ld $1, %got_disp(gv4i8)($gp)
3463 ; MIPS64R5EB-NEXT: sw $2, 0($1)
3464 ; MIPS64R5EB-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
3465 ; MIPS64R5EB-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
3466 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 32
3467 ; MIPS64R5EB-NEXT: jr $ra
3468 ; MIPS64R5EB-NEXT: nop
3470 ; MIPS32EL-LABEL: call_i8_4:
3471 ; MIPS32EL: # %bb.0: # %entry
3472 ; MIPS32EL-NEXT: addiu $sp, $sp, -24
3473 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 24
3474 ; MIPS32EL-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
3475 ; MIPS32EL-NEXT: .cfi_offset 31, -4
3476 ; MIPS32EL-NEXT: lui $1, 2569
3477 ; MIPS32EL-NEXT: ori $4, $1, 1798
3478 ; MIPS32EL-NEXT: ori $5, $1, 2060
3479 ; MIPS32EL-NEXT: jal i8_4
3480 ; MIPS32EL-NEXT: nop
3481 ; MIPS32EL-NEXT: lui $1, %hi(gv4i8)
3482 ; MIPS32EL-NEXT: sw $2, %lo(gv4i8)($1)
3483 ; MIPS32EL-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
3484 ; MIPS32EL-NEXT: addiu $sp, $sp, 24
3485 ; MIPS32EL-NEXT: jr $ra
3486 ; MIPS32EL-NEXT: nop
3488 ; MIPS64EL-LABEL: call_i8_4:
3489 ; MIPS64EL: # %bb.0: # %entry
3490 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
3491 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
3492 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
3493 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
3494 ; MIPS64EL-NEXT: .cfi_offset 31, -8
3495 ; MIPS64EL-NEXT: .cfi_offset 28, -16
3496 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_4)))
3497 ; MIPS64EL-NEXT: daddu $1, $1, $25
3498 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_4)))
3499 ; MIPS64EL-NEXT: lui $1, 2569
3500 ; MIPS64EL-NEXT: ori $4, $1, 1798
3501 ; MIPS64EL-NEXT: ori $5, $1, 2060
3502 ; MIPS64EL-NEXT: ld $25, %call16(i8_4)($gp)
3503 ; MIPS64EL-NEXT: jalr $25
3504 ; MIPS64EL-NEXT: nop
3505 ; MIPS64EL-NEXT: ld $1, %got_disp(gv4i8)($gp)
3506 ; MIPS64EL-NEXT: sw $2, 0($1)
3507 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
3508 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
3509 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
3510 ; MIPS64EL-NEXT: jr $ra
3511 ; MIPS64EL-NEXT: nop
3513 ; MIPS32R5EL-LABEL: call_i8_4:
3514 ; MIPS32R5EL: # %bb.0: # %entry
3515 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -32
3516 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 32
3517 ; MIPS32R5EL-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
3518 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
3519 ; MIPS32R5EL-NEXT: lui $1, 2569
3520 ; MIPS32R5EL-NEXT: ori $4, $1, 1798
3521 ; MIPS32R5EL-NEXT: ori $5, $1, 2060
3522 ; MIPS32R5EL-NEXT: jal i8_4
3523 ; MIPS32R5EL-NEXT: nop
3524 ; MIPS32R5EL-NEXT: lui $1, %hi(gv4i8)
3525 ; MIPS32R5EL-NEXT: sw $2, %lo(gv4i8)($1)
3526 ; MIPS32R5EL-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
3527 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 32
3528 ; MIPS32R5EL-NEXT: jr $ra
3529 ; MIPS32R5EL-NEXT: nop
3531 ; MIPS64R5EL-LABEL: call_i8_4:
3532 ; MIPS64R5EL: # %bb.0: # %entry
3533 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -32
3534 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 32
3535 ; MIPS64R5EL-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
3536 ; MIPS64R5EL-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
3537 ; MIPS64R5EL-NEXT: .cfi_offset 31, -8
3538 ; MIPS64R5EL-NEXT: .cfi_offset 28, -16
3539 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_4)))
3540 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
3541 ; MIPS64R5EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_4)))
3542 ; MIPS64R5EL-NEXT: lui $1, 2569
3543 ; MIPS64R5EL-NEXT: ori $4, $1, 1798
3544 ; MIPS64R5EL-NEXT: ori $5, $1, 2060
3545 ; MIPS64R5EL-NEXT: ld $25, %call16(i8_4)($gp)
3546 ; MIPS64R5EL-NEXT: jalr $25
3547 ; MIPS64R5EL-NEXT: nop
3548 ; MIPS64R5EL-NEXT: ld $1, %got_disp(gv4i8)($gp)
3549 ; MIPS64R5EL-NEXT: sw $2, 0($1)
3550 ; MIPS64R5EL-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
3551 ; MIPS64R5EL-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
3552 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 32
3553 ; MIPS64R5EL-NEXT: jr $ra
3554 ; MIPS64R5EL-NEXT: nop
3556 %0 = call <4 x i8> @i8_4(<4 x i8> <i8 6, i8 7, i8 9, i8 10>, <4 x i8> <i8 12, i8 8, i8 9, i8 10>)
3557 store <4 x i8> %0, ptr @gv4i8
3561 define void @call_i8_8() {
3562 ; MIPS32EB-LABEL: call_i8_8:
3563 ; MIPS32EB: # %bb.0: # %entry
3564 ; MIPS32EB-NEXT: addiu $sp, $sp, -24
3565 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 24
3566 ; MIPS32EB-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
3567 ; MIPS32EB-NEXT: .cfi_offset 31, -4
3568 ; MIPS32EB-NEXT: lui $1, 3080
3569 ; MIPS32EB-NEXT: ori $6, $1, 2314
3570 ; MIPS32EB-NEXT: lui $1, 1543
3571 ; MIPS32EB-NEXT: ori $4, $1, 2314
3572 ; MIPS32EB-NEXT: move $5, $4
3573 ; MIPS32EB-NEXT: move $7, $4
3574 ; MIPS32EB-NEXT: jal i8_8
3575 ; MIPS32EB-NEXT: nop
3576 ; MIPS32EB-NEXT: lui $1, %hi(gv8i8)
3577 ; MIPS32EB-NEXT: addiu $4, $1, %lo(gv8i8)
3578 ; MIPS32EB-NEXT: sw $3, 4($4)
3579 ; MIPS32EB-NEXT: sw $2, %lo(gv8i8)($1)
3580 ; MIPS32EB-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
3581 ; MIPS32EB-NEXT: addiu $sp, $sp, 24
3582 ; MIPS32EB-NEXT: jr $ra
3583 ; MIPS32EB-NEXT: nop
3585 ; MIPS64EB-LABEL: call_i8_8:
3586 ; MIPS64EB: # %bb.0: # %entry
3587 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
3588 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
3589 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
3590 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
3591 ; MIPS64EB-NEXT: .cfi_offset 31, -8
3592 ; MIPS64EB-NEXT: .cfi_offset 28, -16
3593 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_8)))
3594 ; MIPS64EB-NEXT: daddu $1, $1, $25
3595 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_8)))
3596 ; MIPS64EB-NEXT: lui $1, 772
3597 ; MIPS64EB-NEXT: daddiu $1, $1, -31611
3598 ; MIPS64EB-NEXT: dsll $1, $1, 17
3599 ; MIPS64EB-NEXT: daddiu $1, $1, 1543
3600 ; MIPS64EB-NEXT: dsll $1, $1, 16
3601 ; MIPS64EB-NEXT: daddiu $4, $1, 2314
3602 ; MIPS64EB-NEXT: lui $1, 1540
3603 ; MIPS64EB-NEXT: daddiu $1, $1, 1157
3604 ; MIPS64EB-NEXT: dsll $1, $1, 17
3605 ; MIPS64EB-NEXT: daddiu $1, $1, 1543
3606 ; MIPS64EB-NEXT: dsll $1, $1, 16
3607 ; MIPS64EB-NEXT: daddiu $5, $1, 2314
3608 ; MIPS64EB-NEXT: ld $25, %call16(i8_8)($gp)
3609 ; MIPS64EB-NEXT: jalr $25
3610 ; MIPS64EB-NEXT: nop
3611 ; MIPS64EB-NEXT: ld $1, %got_disp(gv8i8)($gp)
3612 ; MIPS64EB-NEXT: sd $2, 0($1)
3613 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
3614 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
3615 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
3616 ; MIPS64EB-NEXT: jr $ra
3617 ; MIPS64EB-NEXT: nop
3619 ; MIPS32R5EB-LABEL: call_i8_8:
3620 ; MIPS32R5EB: # %bb.0: # %entry
3621 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -24
3622 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 24
3623 ; MIPS32R5EB-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
3624 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
3625 ; MIPS32R5EB-NEXT: lui $1, 3080
3626 ; MIPS32R5EB-NEXT: ori $6, $1, 2314
3627 ; MIPS32R5EB-NEXT: lui $1, 1543
3628 ; MIPS32R5EB-NEXT: ori $4, $1, 2314
3629 ; MIPS32R5EB-NEXT: move $5, $4
3630 ; MIPS32R5EB-NEXT: move $7, $4
3631 ; MIPS32R5EB-NEXT: jal i8_8
3632 ; MIPS32R5EB-NEXT: nop
3633 ; MIPS32R5EB-NEXT: lui $1, %hi(gv8i8)
3634 ; MIPS32R5EB-NEXT: addiu $4, $1, %lo(gv8i8)
3635 ; MIPS32R5EB-NEXT: sw $3, 4($4)
3636 ; MIPS32R5EB-NEXT: sw $2, %lo(gv8i8)($1)
3637 ; MIPS32R5EB-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
3638 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 24
3639 ; MIPS32R5EB-NEXT: jr $ra
3640 ; MIPS32R5EB-NEXT: nop
3642 ; MIPS64R5EB-LABEL: call_i8_8:
3643 ; MIPS64R5EB: # %bb.0: # %entry
3644 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -32
3645 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 32
3646 ; MIPS64R5EB-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
3647 ; MIPS64R5EB-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
3648 ; MIPS64R5EB-NEXT: .cfi_offset 31, -8
3649 ; MIPS64R5EB-NEXT: .cfi_offset 28, -16
3650 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_8)))
3651 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
3652 ; MIPS64R5EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_8)))
3653 ; MIPS64R5EB-NEXT: lui $1, 772
3654 ; MIPS64R5EB-NEXT: daddiu $1, $1, -31611
3655 ; MIPS64R5EB-NEXT: dsll $1, $1, 17
3656 ; MIPS64R5EB-NEXT: daddiu $1, $1, 1543
3657 ; MIPS64R5EB-NEXT: dsll $1, $1, 16
3658 ; MIPS64R5EB-NEXT: daddiu $4, $1, 2314
3659 ; MIPS64R5EB-NEXT: lui $1, 1540
3660 ; MIPS64R5EB-NEXT: daddiu $1, $1, 1157
3661 ; MIPS64R5EB-NEXT: dsll $1, $1, 17
3662 ; MIPS64R5EB-NEXT: daddiu $1, $1, 1543
3663 ; MIPS64R5EB-NEXT: dsll $1, $1, 16
3664 ; MIPS64R5EB-NEXT: daddiu $5, $1, 2314
3665 ; MIPS64R5EB-NEXT: ld $25, %call16(i8_8)($gp)
3666 ; MIPS64R5EB-NEXT: jalr $25
3667 ; MIPS64R5EB-NEXT: nop
3668 ; MIPS64R5EB-NEXT: ld $1, %got_disp(gv8i8)($gp)
3669 ; MIPS64R5EB-NEXT: sd $2, 0($1)
3670 ; MIPS64R5EB-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
3671 ; MIPS64R5EB-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
3672 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 32
3673 ; MIPS64R5EB-NEXT: jr $ra
3674 ; MIPS64R5EB-NEXT: nop
3676 ; MIPS32EL-LABEL: call_i8_8:
3677 ; MIPS32EL: # %bb.0: # %entry
3678 ; MIPS32EL-NEXT: addiu $sp, $sp, -24
3679 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 24
3680 ; MIPS32EL-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
3681 ; MIPS32EL-NEXT: .cfi_offset 31, -4
3682 ; MIPS32EL-NEXT: lui $1, 2569
3683 ; MIPS32EL-NEXT: ori $6, $1, 2060
3684 ; MIPS32EL-NEXT: ori $4, $1, 1798
3685 ; MIPS32EL-NEXT: move $5, $4
3686 ; MIPS32EL-NEXT: move $7, $4
3687 ; MIPS32EL-NEXT: jal i8_8
3688 ; MIPS32EL-NEXT: nop
3689 ; MIPS32EL-NEXT: lui $1, %hi(gv8i8)
3690 ; MIPS32EL-NEXT: addiu $4, $1, %lo(gv8i8)
3691 ; MIPS32EL-NEXT: sw $3, 4($4)
3692 ; MIPS32EL-NEXT: sw $2, %lo(gv8i8)($1)
3693 ; MIPS32EL-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
3694 ; MIPS32EL-NEXT: addiu $sp, $sp, 24
3695 ; MIPS32EL-NEXT: jr $ra
3696 ; MIPS32EL-NEXT: nop
3698 ; MIPS64EL-LABEL: call_i8_8:
3699 ; MIPS64EL: # %bb.0: # %entry
3700 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
3701 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
3702 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
3703 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
3704 ; MIPS64EL-NEXT: .cfi_offset 31, -8
3705 ; MIPS64EL-NEXT: .cfi_offset 28, -16
3706 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_8)))
3707 ; MIPS64EL-NEXT: daddu $1, $1, $25
3708 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_8)))
3709 ; MIPS64EL-NEXT: lui $1, 1285
3710 ; MIPS64EL-NEXT: daddiu $1, $1, -31869
3711 ; MIPS64EL-NEXT: dsll $1, $1, 17
3712 ; MIPS64EL-NEXT: daddiu $1, $1, 2569
3713 ; MIPS64EL-NEXT: dsll $1, $1, 16
3714 ; MIPS64EL-NEXT: daddiu $4, $1, 1798
3715 ; MIPS64EL-NEXT: daddiu $5, $1, 2060
3716 ; MIPS64EL-NEXT: ld $25, %call16(i8_8)($gp)
3717 ; MIPS64EL-NEXT: jalr $25
3718 ; MIPS64EL-NEXT: nop
3719 ; MIPS64EL-NEXT: ld $1, %got_disp(gv8i8)($gp)
3720 ; MIPS64EL-NEXT: sd $2, 0($1)
3721 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
3722 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
3723 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
3724 ; MIPS64EL-NEXT: jr $ra
3725 ; MIPS64EL-NEXT: nop
3727 ; MIPS32R5EL-LABEL: call_i8_8:
3728 ; MIPS32R5EL: # %bb.0: # %entry
3729 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -24
3730 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 24
3731 ; MIPS32R5EL-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
3732 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
3733 ; MIPS32R5EL-NEXT: lui $1, 2569
3734 ; MIPS32R5EL-NEXT: ori $6, $1, 2060
3735 ; MIPS32R5EL-NEXT: ori $4, $1, 1798
3736 ; MIPS32R5EL-NEXT: move $5, $4
3737 ; MIPS32R5EL-NEXT: move $7, $4
3738 ; MIPS32R5EL-NEXT: jal i8_8
3739 ; MIPS32R5EL-NEXT: nop
3740 ; MIPS32R5EL-NEXT: lui $1, %hi(gv8i8)
3741 ; MIPS32R5EL-NEXT: addiu $4, $1, %lo(gv8i8)
3742 ; MIPS32R5EL-NEXT: sw $3, 4($4)
3743 ; MIPS32R5EL-NEXT: sw $2, %lo(gv8i8)($1)
3744 ; MIPS32R5EL-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
3745 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 24
3746 ; MIPS32R5EL-NEXT: jr $ra
3747 ; MIPS32R5EL-NEXT: nop
3749 ; MIPS64R5EL-LABEL: call_i8_8:
3750 ; MIPS64R5EL: # %bb.0: # %entry
3751 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -32
3752 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 32
3753 ; MIPS64R5EL-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
3754 ; MIPS64R5EL-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
3755 ; MIPS64R5EL-NEXT: .cfi_offset 31, -8
3756 ; MIPS64R5EL-NEXT: .cfi_offset 28, -16
3757 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(call_i8_8)))
3758 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
3759 ; MIPS64R5EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i8_8)))
3760 ; MIPS64R5EL-NEXT: lui $1, 1285
3761 ; MIPS64R5EL-NEXT: daddiu $1, $1, -31869
3762 ; MIPS64R5EL-NEXT: dsll $1, $1, 17
3763 ; MIPS64R5EL-NEXT: daddiu $1, $1, 2569
3764 ; MIPS64R5EL-NEXT: dsll $1, $1, 16
3765 ; MIPS64R5EL-NEXT: daddiu $4, $1, 1798
3766 ; MIPS64R5EL-NEXT: daddiu $5, $1, 2060
3767 ; MIPS64R5EL-NEXT: ld $25, %call16(i8_8)($gp)
3768 ; MIPS64R5EL-NEXT: jalr $25
3769 ; MIPS64R5EL-NEXT: nop
3770 ; MIPS64R5EL-NEXT: ld $1, %got_disp(gv8i8)($gp)
3771 ; MIPS64R5EL-NEXT: sd $2, 0($1)
3772 ; MIPS64R5EL-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
3773 ; MIPS64R5EL-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
3774 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 32
3775 ; MIPS64R5EL-NEXT: jr $ra
3776 ; MIPS64R5EL-NEXT: nop
3778 %0 = call <8 x i8> @i8_8(<8 x i8> <i8 6, i8 7, i8 9, i8 10, i8 6, i8 7, i8 9, i8 10>, <8 x i8> <i8 12, i8 8, i8 9, i8 10, i8 6, i8 7, i8 9, i8 10>)
3779 store <8 x i8> %0, ptr @gv8i8
3783 define void @calli8_16() {
3784 ; MIPS32EB-LABEL: calli8_16:
3785 ; MIPS32EB: # %bb.0: # %entry
3786 ; MIPS32EB-NEXT: addiu $sp, $sp, -40
3787 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 40
3788 ; MIPS32EB-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
3789 ; MIPS32EB-NEXT: .cfi_offset 31, -4
3790 ; MIPS32EB-NEXT: lui $1, 3080
3791 ; MIPS32EB-NEXT: ori $1, $1, 2314
3792 ; MIPS32EB-NEXT: lui $2, 1801
3793 ; MIPS32EB-NEXT: sw $1, 28($sp)
3794 ; MIPS32EB-NEXT: ori $1, $2, 1801
3795 ; MIPS32EB-NEXT: sw $1, 24($sp)
3796 ; MIPS32EB-NEXT: sw $1, 20($sp)
3797 ; MIPS32EB-NEXT: sw $1, 16($sp)
3798 ; MIPS32EB-NEXT: lui $1, 1543
3799 ; MIPS32EB-NEXT: ori $4, $1, 1543
3800 ; MIPS32EB-NEXT: ori $7, $1, 2314
3801 ; MIPS32EB-NEXT: move $5, $4
3802 ; MIPS32EB-NEXT: move $6, $4
3803 ; MIPS32EB-NEXT: jal i8_16
3804 ; MIPS32EB-NEXT: nop
3805 ; MIPS32EB-NEXT: lui $1, %hi(gv16i8)
3806 ; MIPS32EB-NEXT: addiu $6, $1, %lo(gv16i8)
3807 ; MIPS32EB-NEXT: sw $5, 12($6)
3808 ; MIPS32EB-NEXT: sw $4, 8($6)
3809 ; MIPS32EB-NEXT: sw $3, 4($6)
3810 ; MIPS32EB-NEXT: sw $2, %lo(gv16i8)($1)
3811 ; MIPS32EB-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
3812 ; MIPS32EB-NEXT: addiu $sp, $sp, 40
3813 ; MIPS32EB-NEXT: jr $ra
3814 ; MIPS32EB-NEXT: nop
3816 ; MIPS64EB-LABEL: calli8_16:
3817 ; MIPS64EB: # %bb.0: # %entry
3818 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
3819 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
3820 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
3821 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
3822 ; MIPS64EB-NEXT: .cfi_offset 31, -8
3823 ; MIPS64EB-NEXT: .cfi_offset 28, -16
3824 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(calli8_16)))
3825 ; MIPS64EB-NEXT: daddu $1, $1, $25
3826 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli8_16)))
3827 ; MIPS64EB-NEXT: lui $1, 1801
3828 ; MIPS64EB-NEXT: daddiu $1, $1, 1801
3829 ; MIPS64EB-NEXT: dsll $1, $1, 16
3830 ; MIPS64EB-NEXT: daddiu $1, $1, 1801
3831 ; MIPS64EB-NEXT: lui $2, 1543
3832 ; MIPS64EB-NEXT: dsll $1, $1, 16
3833 ; MIPS64EB-NEXT: daddiu $2, $2, 1543
3834 ; MIPS64EB-NEXT: dsll $2, $2, 16
3835 ; MIPS64EB-NEXT: daddiu $2, $2, 1543
3836 ; MIPS64EB-NEXT: dsll $2, $2, 16
3837 ; MIPS64EB-NEXT: daddiu $4, $2, 1543
3838 ; MIPS64EB-NEXT: daddiu $5, $2, 2314
3839 ; MIPS64EB-NEXT: daddiu $6, $1, 1801
3840 ; MIPS64EB-NEXT: lui $1, 225
3841 ; MIPS64EB-NEXT: daddiu $1, $1, 8417
3842 ; MIPS64EB-NEXT: dsll $1, $1, 16
3843 ; MIPS64EB-NEXT: daddiu $1, $1, 8577
3844 ; MIPS64EB-NEXT: dsll $1, $1, 19
3845 ; MIPS64EB-NEXT: daddiu $7, $1, 2314
3846 ; MIPS64EB-NEXT: ld $25, %call16(i8_16)($gp)
3847 ; MIPS64EB-NEXT: jalr $25
3848 ; MIPS64EB-NEXT: nop
3849 ; MIPS64EB-NEXT: ld $1, %got_disp(gv16i8)($gp)
3850 ; MIPS64EB-NEXT: sd $3, 8($1)
3851 ; MIPS64EB-NEXT: sd $2, 0($1)
3852 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
3853 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
3854 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
3855 ; MIPS64EB-NEXT: jr $ra
3856 ; MIPS64EB-NEXT: nop
3858 ; MIPS32R5-LABEL: calli8_16:
3859 ; MIPS32R5: # %bb.0: # %entry
3860 ; MIPS32R5-NEXT: addiu $sp, $sp, -40
3861 ; MIPS32R5-NEXT: .cfi_def_cfa_offset 40
3862 ; MIPS32R5-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
3863 ; MIPS32R5-NEXT: .cfi_offset 31, -4
3864 ; MIPS32R5-NEXT: lui $1, %hi($CPI30_0)
3865 ; MIPS32R5-NEXT: addiu $1, $1, %lo($CPI30_0)
3866 ; MIPS32R5-NEXT: ld.w $w0, 0($1)
3867 ; MIPS32R5-NEXT: copy_s.w $4, $w0[0]
3868 ; MIPS32R5-NEXT: copy_s.w $5, $w0[1]
3869 ; MIPS32R5-NEXT: copy_s.w $6, $w0[2]
3870 ; MIPS32R5-NEXT: copy_s.w $7, $w0[3]
3871 ; MIPS32R5-NEXT: lui $1, %hi($CPI30_1)
3872 ; MIPS32R5-NEXT: addiu $1, $1, %lo($CPI30_1)
3873 ; MIPS32R5-NEXT: ld.w $w0, 0($1)
3874 ; MIPS32R5-NEXT: copy_s.w $1, $w0[0]
3875 ; MIPS32R5-NEXT: copy_s.w $2, $w0[1]
3876 ; MIPS32R5-NEXT: copy_s.w $3, $w0[2]
3877 ; MIPS32R5-NEXT: copy_s.w $8, $w0[3]
3878 ; MIPS32R5-NEXT: sw $8, 28($sp)
3879 ; MIPS32R5-NEXT: sw $3, 24($sp)
3880 ; MIPS32R5-NEXT: sw $2, 20($sp)
3881 ; MIPS32R5-NEXT: sw $1, 16($sp)
3882 ; MIPS32R5-NEXT: jal i8_16
3883 ; MIPS32R5-NEXT: nop
3884 ; MIPS32R5-NEXT: lui $1, %hi(gv16i8)
3885 ; MIPS32R5-NEXT: insert.w $w0[0], $2
3886 ; MIPS32R5-NEXT: insert.w $w0[1], $3
3887 ; MIPS32R5-NEXT: addiu $1, $1, %lo(gv16i8)
3888 ; MIPS32R5-NEXT: insert.w $w0[2], $4
3889 ; MIPS32R5-NEXT: insert.w $w0[3], $5
3890 ; MIPS32R5-NEXT: st.w $w0, 0($1)
3891 ; MIPS32R5-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
3892 ; MIPS32R5-NEXT: addiu $sp, $sp, 40
3893 ; MIPS32R5-NEXT: jr $ra
3894 ; MIPS32R5-NEXT: nop
3896 ; MIPS64R5-LABEL: calli8_16:
3897 ; MIPS64R5: # %bb.0: # %entry
3898 ; MIPS64R5-NEXT: daddiu $sp, $sp, -16
3899 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 16
3900 ; MIPS64R5-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
3901 ; MIPS64R5-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
3902 ; MIPS64R5-NEXT: .cfi_offset 31, -8
3903 ; MIPS64R5-NEXT: .cfi_offset 28, -16
3904 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(calli8_16)))
3905 ; MIPS64R5-NEXT: daddu $1, $1, $25
3906 ; MIPS64R5-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli8_16)))
3907 ; MIPS64R5-NEXT: ld $1, %got_page(.LCPI30_0)($gp)
3908 ; MIPS64R5-NEXT: daddiu $1, $1, %got_ofst(.LCPI30_0)
3909 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
3910 ; MIPS64R5-NEXT: copy_s.d $4, $w0[0]
3911 ; MIPS64R5-NEXT: copy_s.d $5, $w0[1]
3912 ; MIPS64R5-NEXT: ld $1, %got_page(.LCPI30_1)($gp)
3913 ; MIPS64R5-NEXT: daddiu $1, $1, %got_ofst(.LCPI30_1)
3914 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
3915 ; MIPS64R5-NEXT: copy_s.d $6, $w0[0]
3916 ; MIPS64R5-NEXT: copy_s.d $7, $w0[1]
3917 ; MIPS64R5-NEXT: ld $25, %call16(i8_16)($gp)
3918 ; MIPS64R5-NEXT: jalr $25
3919 ; MIPS64R5-NEXT: nop
3920 ; MIPS64R5-NEXT: insert.d $w0[0], $2
3921 ; MIPS64R5-NEXT: insert.d $w0[1], $3
3922 ; MIPS64R5-NEXT: ld $1, %got_disp(gv16i8)($gp)
3923 ; MIPS64R5-NEXT: st.d $w0, 0($1)
3924 ; MIPS64R5-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
3925 ; MIPS64R5-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
3926 ; MIPS64R5-NEXT: daddiu $sp, $sp, 16
3927 ; MIPS64R5-NEXT: jr $ra
3928 ; MIPS64R5-NEXT: nop
3930 ; MIPS32EL-LABEL: calli8_16:
3931 ; MIPS32EL: # %bb.0: # %entry
3932 ; MIPS32EL-NEXT: addiu $sp, $sp, -40
3933 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 40
3934 ; MIPS32EL-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
3935 ; MIPS32EL-NEXT: .cfi_offset 31, -4
3936 ; MIPS32EL-NEXT: lui $1, 2569
3937 ; MIPS32EL-NEXT: ori $2, $1, 2060
3938 ; MIPS32EL-NEXT: lui $3, 2311
3939 ; MIPS32EL-NEXT: sw $2, 28($sp)
3940 ; MIPS32EL-NEXT: ori $2, $3, 2311
3941 ; MIPS32EL-NEXT: sw $2, 24($sp)
3942 ; MIPS32EL-NEXT: sw $2, 20($sp)
3943 ; MIPS32EL-NEXT: sw $2, 16($sp)
3944 ; MIPS32EL-NEXT: lui $2, 1798
3945 ; MIPS32EL-NEXT: ori $4, $2, 1798
3946 ; MIPS32EL-NEXT: ori $7, $1, 1798
3947 ; MIPS32EL-NEXT: move $5, $4
3948 ; MIPS32EL-NEXT: move $6, $4
3949 ; MIPS32EL-NEXT: jal i8_16
3950 ; MIPS32EL-NEXT: nop
3951 ; MIPS32EL-NEXT: lui $1, %hi(gv16i8)
3952 ; MIPS32EL-NEXT: addiu $6, $1, %lo(gv16i8)
3953 ; MIPS32EL-NEXT: sw $5, 12($6)
3954 ; MIPS32EL-NEXT: sw $4, 8($6)
3955 ; MIPS32EL-NEXT: sw $3, 4($6)
3956 ; MIPS32EL-NEXT: sw $2, %lo(gv16i8)($1)
3957 ; MIPS32EL-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
3958 ; MIPS32EL-NEXT: addiu $sp, $sp, 40
3959 ; MIPS32EL-NEXT: jr $ra
3960 ; MIPS32EL-NEXT: nop
3962 ; MIPS64EL-LABEL: calli8_16:
3963 ; MIPS64EL: # %bb.0: # %entry
3964 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
3965 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
3966 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
3967 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
3968 ; MIPS64EL-NEXT: .cfi_offset 31, -8
3969 ; MIPS64EL-NEXT: .cfi_offset 28, -16
3970 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(calli8_16)))
3971 ; MIPS64EL-NEXT: daddu $1, $1, $25
3972 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli8_16)))
3973 ; MIPS64EL-NEXT: lui $1, 1285
3974 ; MIPS64EL-NEXT: daddiu $1, $1, -31869
3975 ; MIPS64EL-NEXT: dsll $1, $1, 16
3976 ; MIPS64EL-NEXT: daddiu $1, $1, 899
3977 ; MIPS64EL-NEXT: lui $2, 2311
3978 ; MIPS64EL-NEXT: daddiu $2, $2, 2311
3979 ; MIPS64EL-NEXT: dsll $2, $2, 16
3980 ; MIPS64EL-NEXT: daddiu $2, $2, 2311
3981 ; MIPS64EL-NEXT: dsll $2, $2, 16
3982 ; MIPS64EL-NEXT: dsll $1, $1, 17
3983 ; MIPS64EL-NEXT: lui $3, 899
3984 ; MIPS64EL-NEXT: daddiu $3, $3, 899
3985 ; MIPS64EL-NEXT: dsll $3, $3, 16
3986 ; MIPS64EL-NEXT: daddiu $3, $3, 899
3987 ; MIPS64EL-NEXT: dsll $3, $3, 17
3988 ; MIPS64EL-NEXT: daddiu $4, $3, 1798
3989 ; MIPS64EL-NEXT: daddiu $5, $1, 1798
3990 ; MIPS64EL-NEXT: daddiu $6, $2, 2311
3991 ; MIPS64EL-NEXT: lui $1, 642
3992 ; MIPS64EL-NEXT: daddiu $1, $1, 16899
3993 ; MIPS64EL-NEXT: dsll $1, $1, 18
3994 ; MIPS64EL-NEXT: daddiu $1, $1, 2311
3995 ; MIPS64EL-NEXT: dsll $1, $1, 16
3996 ; MIPS64EL-NEXT: daddiu $7, $1, 2311
3997 ; MIPS64EL-NEXT: ld $25, %call16(i8_16)($gp)
3998 ; MIPS64EL-NEXT: jalr $25
3999 ; MIPS64EL-NEXT: nop
4000 ; MIPS64EL-NEXT: ld $1, %got_disp(gv16i8)($gp)
4001 ; MIPS64EL-NEXT: sd $3, 8($1)
4002 ; MIPS64EL-NEXT: sd $2, 0($1)
4003 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4004 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4005 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
4006 ; MIPS64EL-NEXT: jr $ra
4007 ; MIPS64EL-NEXT: nop
4009 %0 = call <16 x i8> @i8_16(<16 x i8> <i8 6, i8 7,i8 6, i8 7,i8 6, i8 7,i8 6, i8 7,i8 6, i8 7,i8 6, i8 7, i8 6, i8 7, i8 9, i8 10>, <16 x i8> <i8 7, i8 9,i8 7, i8 9,i8 7, i8 9,i8 7, i8 9,i8 7, i8 9,i8 7, i8 9,i8 12, i8 8, i8 9, i8 10>)
4010 store <16 x i8> %0, ptr @gv16i8
4014 define void @calli16_2() {
4015 ; MIPS32EB-LABEL: calli16_2:
4016 ; MIPS32EB: # %bb.0: # %entry
4017 ; MIPS32EB-NEXT: addiu $sp, $sp, -24
4018 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 24
4019 ; MIPS32EB-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
4020 ; MIPS32EB-NEXT: .cfi_offset 31, -4
4021 ; MIPS32EB-NEXT: lui $1, 6
4022 ; MIPS32EB-NEXT: ori $4, $1, 7
4023 ; MIPS32EB-NEXT: lui $1, 12
4024 ; MIPS32EB-NEXT: ori $5, $1, 8
4025 ; MIPS32EB-NEXT: jal i16_2
4026 ; MIPS32EB-NEXT: nop
4027 ; MIPS32EB-NEXT: lui $1, %hi(gv2i16)
4028 ; MIPS32EB-NEXT: sw $2, %lo(gv2i16)($1)
4029 ; MIPS32EB-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
4030 ; MIPS32EB-NEXT: addiu $sp, $sp, 24
4031 ; MIPS32EB-NEXT: jr $ra
4032 ; MIPS32EB-NEXT: nop
4034 ; MIPS64EB-LABEL: calli16_2:
4035 ; MIPS64EB: # %bb.0: # %entry
4036 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
4037 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
4038 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4039 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4040 ; MIPS64EB-NEXT: .cfi_offset 31, -8
4041 ; MIPS64EB-NEXT: .cfi_offset 28, -16
4042 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_2)))
4043 ; MIPS64EB-NEXT: daddu $1, $1, $25
4044 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_2)))
4045 ; MIPS64EB-NEXT: lui $1, 6
4046 ; MIPS64EB-NEXT: ori $4, $1, 7
4047 ; MIPS64EB-NEXT: lui $1, 12
4048 ; MIPS64EB-NEXT: ori $5, $1, 8
4049 ; MIPS64EB-NEXT: ld $25, %call16(i16_2)($gp)
4050 ; MIPS64EB-NEXT: jalr $25
4051 ; MIPS64EB-NEXT: nop
4052 ; MIPS64EB-NEXT: ld $1, %got_disp(gv2i16)($gp)
4053 ; MIPS64EB-NEXT: sw $2, 0($1)
4054 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4055 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4056 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
4057 ; MIPS64EB-NEXT: jr $ra
4058 ; MIPS64EB-NEXT: nop
4060 ; MIPS32R5EB-LABEL: calli16_2:
4061 ; MIPS32R5EB: # %bb.0: # %entry
4062 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -32
4063 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 32
4064 ; MIPS32R5EB-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
4065 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
4066 ; MIPS32R5EB-NEXT: lui $1, 6
4067 ; MIPS32R5EB-NEXT: ori $4, $1, 7
4068 ; MIPS32R5EB-NEXT: lui $1, 12
4069 ; MIPS32R5EB-NEXT: ori $5, $1, 8
4070 ; MIPS32R5EB-NEXT: jal i16_2
4071 ; MIPS32R5EB-NEXT: nop
4072 ; MIPS32R5EB-NEXT: lui $1, %hi(gv2i16)
4073 ; MIPS32R5EB-NEXT: sw $2, %lo(gv2i16)($1)
4074 ; MIPS32R5EB-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
4075 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 32
4076 ; MIPS32R5EB-NEXT: jr $ra
4077 ; MIPS32R5EB-NEXT: nop
4079 ; MIPS64R5EB-LABEL: calli16_2:
4080 ; MIPS64R5EB: # %bb.0: # %entry
4081 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -32
4082 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 32
4083 ; MIPS64R5EB-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
4084 ; MIPS64R5EB-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
4085 ; MIPS64R5EB-NEXT: .cfi_offset 31, -8
4086 ; MIPS64R5EB-NEXT: .cfi_offset 28, -16
4087 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_2)))
4088 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
4089 ; MIPS64R5EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_2)))
4090 ; MIPS64R5EB-NEXT: lui $1, 6
4091 ; MIPS64R5EB-NEXT: ori $4, $1, 7
4092 ; MIPS64R5EB-NEXT: lui $1, 12
4093 ; MIPS64R5EB-NEXT: ori $5, $1, 8
4094 ; MIPS64R5EB-NEXT: ld $25, %call16(i16_2)($gp)
4095 ; MIPS64R5EB-NEXT: jalr $25
4096 ; MIPS64R5EB-NEXT: nop
4097 ; MIPS64R5EB-NEXT: ld $1, %got_disp(gv2i16)($gp)
4098 ; MIPS64R5EB-NEXT: sw $2, 0($1)
4099 ; MIPS64R5EB-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
4100 ; MIPS64R5EB-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
4101 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 32
4102 ; MIPS64R5EB-NEXT: jr $ra
4103 ; MIPS64R5EB-NEXT: nop
4105 ; MIPS32EL-LABEL: calli16_2:
4106 ; MIPS32EL: # %bb.0: # %entry
4107 ; MIPS32EL-NEXT: addiu $sp, $sp, -24
4108 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 24
4109 ; MIPS32EL-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
4110 ; MIPS32EL-NEXT: .cfi_offset 31, -4
4111 ; MIPS32EL-NEXT: lui $1, 7
4112 ; MIPS32EL-NEXT: ori $4, $1, 6
4113 ; MIPS32EL-NEXT: lui $1, 8
4114 ; MIPS32EL-NEXT: ori $5, $1, 12
4115 ; MIPS32EL-NEXT: jal i16_2
4116 ; MIPS32EL-NEXT: nop
4117 ; MIPS32EL-NEXT: lui $1, %hi(gv2i16)
4118 ; MIPS32EL-NEXT: sw $2, %lo(gv2i16)($1)
4119 ; MIPS32EL-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
4120 ; MIPS32EL-NEXT: addiu $sp, $sp, 24
4121 ; MIPS32EL-NEXT: jr $ra
4122 ; MIPS32EL-NEXT: nop
4124 ; MIPS64EL-LABEL: calli16_2:
4125 ; MIPS64EL: # %bb.0: # %entry
4126 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
4127 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
4128 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4129 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4130 ; MIPS64EL-NEXT: .cfi_offset 31, -8
4131 ; MIPS64EL-NEXT: .cfi_offset 28, -16
4132 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_2)))
4133 ; MIPS64EL-NEXT: daddu $1, $1, $25
4134 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_2)))
4135 ; MIPS64EL-NEXT: lui $1, 7
4136 ; MIPS64EL-NEXT: ori $4, $1, 6
4137 ; MIPS64EL-NEXT: lui $1, 8
4138 ; MIPS64EL-NEXT: ori $5, $1, 12
4139 ; MIPS64EL-NEXT: ld $25, %call16(i16_2)($gp)
4140 ; MIPS64EL-NEXT: jalr $25
4141 ; MIPS64EL-NEXT: nop
4142 ; MIPS64EL-NEXT: ld $1, %got_disp(gv2i16)($gp)
4143 ; MIPS64EL-NEXT: sw $2, 0($1)
4144 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4145 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4146 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
4147 ; MIPS64EL-NEXT: jr $ra
4148 ; MIPS64EL-NEXT: nop
4150 ; MIPS32R5EL-LABEL: calli16_2:
4151 ; MIPS32R5EL: # %bb.0: # %entry
4152 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -32
4153 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 32
4154 ; MIPS32R5EL-NEXT: sw $ra, 28($sp) # 4-byte Folded Spill
4155 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
4156 ; MIPS32R5EL-NEXT: lui $1, 7
4157 ; MIPS32R5EL-NEXT: ori $4, $1, 6
4158 ; MIPS32R5EL-NEXT: lui $1, 8
4159 ; MIPS32R5EL-NEXT: ori $5, $1, 12
4160 ; MIPS32R5EL-NEXT: jal i16_2
4161 ; MIPS32R5EL-NEXT: nop
4162 ; MIPS32R5EL-NEXT: lui $1, %hi(gv2i16)
4163 ; MIPS32R5EL-NEXT: sw $2, %lo(gv2i16)($1)
4164 ; MIPS32R5EL-NEXT: lw $ra, 28($sp) # 4-byte Folded Reload
4165 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 32
4166 ; MIPS32R5EL-NEXT: jr $ra
4167 ; MIPS32R5EL-NEXT: nop
4169 ; MIPS64R5EL-LABEL: calli16_2:
4170 ; MIPS64R5EL: # %bb.0: # %entry
4171 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -32
4172 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 32
4173 ; MIPS64R5EL-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
4174 ; MIPS64R5EL-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
4175 ; MIPS64R5EL-NEXT: .cfi_offset 31, -8
4176 ; MIPS64R5EL-NEXT: .cfi_offset 28, -16
4177 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_2)))
4178 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
4179 ; MIPS64R5EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_2)))
4180 ; MIPS64R5EL-NEXT: lui $1, 7
4181 ; MIPS64R5EL-NEXT: ori $4, $1, 6
4182 ; MIPS64R5EL-NEXT: lui $1, 8
4183 ; MIPS64R5EL-NEXT: ori $5, $1, 12
4184 ; MIPS64R5EL-NEXT: ld $25, %call16(i16_2)($gp)
4185 ; MIPS64R5EL-NEXT: jalr $25
4186 ; MIPS64R5EL-NEXT: nop
4187 ; MIPS64R5EL-NEXT: ld $1, %got_disp(gv2i16)($gp)
4188 ; MIPS64R5EL-NEXT: sw $2, 0($1)
4189 ; MIPS64R5EL-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
4190 ; MIPS64R5EL-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
4191 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 32
4192 ; MIPS64R5EL-NEXT: jr $ra
4193 ; MIPS64R5EL-NEXT: nop
4195 %0 = call <2 x i16> @i16_2(<2 x i16> <i16 6, i16 7>, <2 x i16> <i16 12, i16 8>)
4196 store <2 x i16> %0, ptr @gv2i16
4200 define void @calli16_4() {
4201 ; MIPS32EB-LABEL: calli16_4:
4202 ; MIPS32EB: # %bb.0: # %entry
4203 ; MIPS32EB-NEXT: addiu $sp, $sp, -24
4204 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 24
4205 ; MIPS32EB-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
4206 ; MIPS32EB-NEXT: .cfi_offset 31, -4
4207 ; MIPS32EB-NEXT: lui $1, 6
4208 ; MIPS32EB-NEXT: ori $4, $1, 7
4209 ; MIPS32EB-NEXT: lui $1, 12
4210 ; MIPS32EB-NEXT: ori $6, $1, 8
4211 ; MIPS32EB-NEXT: lui $1, 9
4212 ; MIPS32EB-NEXT: ori $5, $1, 10
4213 ; MIPS32EB-NEXT: move $7, $5
4214 ; MIPS32EB-NEXT: jal i16_4
4215 ; MIPS32EB-NEXT: nop
4216 ; MIPS32EB-NEXT: lui $1, %hi(gv4i16)
4217 ; MIPS32EB-NEXT: addiu $4, $1, %lo(gv4i16)
4218 ; MIPS32EB-NEXT: sw $3, 4($4)
4219 ; MIPS32EB-NEXT: sw $2, %lo(gv4i16)($1)
4220 ; MIPS32EB-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
4221 ; MIPS32EB-NEXT: addiu $sp, $sp, 24
4222 ; MIPS32EB-NEXT: jr $ra
4223 ; MIPS32EB-NEXT: nop
4225 ; MIPS64EB-LABEL: calli16_4:
4226 ; MIPS64EB: # %bb.0: # %entry
4227 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
4228 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
4229 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4230 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4231 ; MIPS64EB-NEXT: .cfi_offset 31, -8
4232 ; MIPS64EB-NEXT: .cfi_offset 28, -16
4233 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_4)))
4234 ; MIPS64EB-NEXT: daddu $1, $1, $25
4235 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_4)))
4236 ; MIPS64EB-NEXT: lui $1, 6
4237 ; MIPS64EB-NEXT: daddiu $1, $1, 7
4238 ; MIPS64EB-NEXT: dsll $1, $1, 16
4239 ; MIPS64EB-NEXT: daddiu $1, $1, 9
4240 ; MIPS64EB-NEXT: dsll $1, $1, 16
4241 ; MIPS64EB-NEXT: daddiu $4, $1, 10
4242 ; MIPS64EB-NEXT: lui $1, 2
4243 ; MIPS64EB-NEXT: daddiu $1, $1, -32767
4244 ; MIPS64EB-NEXT: dsll $1, $1, 19
4245 ; MIPS64EB-NEXT: daddiu $1, $1, 9
4246 ; MIPS64EB-NEXT: dsll $1, $1, 16
4247 ; MIPS64EB-NEXT: daddiu $5, $1, 10
4248 ; MIPS64EB-NEXT: ld $25, %call16(i16_4)($gp)
4249 ; MIPS64EB-NEXT: jalr $25
4250 ; MIPS64EB-NEXT: nop
4251 ; MIPS64EB-NEXT: ld $1, %got_disp(gv4i16)($gp)
4252 ; MIPS64EB-NEXT: sd $2, 0($1)
4253 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4254 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4255 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
4256 ; MIPS64EB-NEXT: jr $ra
4257 ; MIPS64EB-NEXT: nop
4259 ; MIPS32R5EB-LABEL: calli16_4:
4260 ; MIPS32R5EB: # %bb.0: # %entry
4261 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -24
4262 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 24
4263 ; MIPS32R5EB-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
4264 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
4265 ; MIPS32R5EB-NEXT: lui $1, 6
4266 ; MIPS32R5EB-NEXT: ori $4, $1, 7
4267 ; MIPS32R5EB-NEXT: lui $1, 12
4268 ; MIPS32R5EB-NEXT: ori $6, $1, 8
4269 ; MIPS32R5EB-NEXT: lui $1, 9
4270 ; MIPS32R5EB-NEXT: ori $5, $1, 10
4271 ; MIPS32R5EB-NEXT: move $7, $5
4272 ; MIPS32R5EB-NEXT: jal i16_4
4273 ; MIPS32R5EB-NEXT: nop
4274 ; MIPS32R5EB-NEXT: lui $1, %hi(gv4i16)
4275 ; MIPS32R5EB-NEXT: addiu $4, $1, %lo(gv4i16)
4276 ; MIPS32R5EB-NEXT: sw $3, 4($4)
4277 ; MIPS32R5EB-NEXT: sw $2, %lo(gv4i16)($1)
4278 ; MIPS32R5EB-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
4279 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 24
4280 ; MIPS32R5EB-NEXT: jr $ra
4281 ; MIPS32R5EB-NEXT: nop
4283 ; MIPS64R5EB-LABEL: calli16_4:
4284 ; MIPS64R5EB: # %bb.0: # %entry
4285 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -32
4286 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 32
4287 ; MIPS64R5EB-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
4288 ; MIPS64R5EB-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
4289 ; MIPS64R5EB-NEXT: .cfi_offset 31, -8
4290 ; MIPS64R5EB-NEXT: .cfi_offset 28, -16
4291 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_4)))
4292 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
4293 ; MIPS64R5EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_4)))
4294 ; MIPS64R5EB-NEXT: lui $1, 6
4295 ; MIPS64R5EB-NEXT: daddiu $1, $1, 7
4296 ; MIPS64R5EB-NEXT: dsll $1, $1, 16
4297 ; MIPS64R5EB-NEXT: daddiu $1, $1, 9
4298 ; MIPS64R5EB-NEXT: dsll $1, $1, 16
4299 ; MIPS64R5EB-NEXT: daddiu $4, $1, 10
4300 ; MIPS64R5EB-NEXT: lui $1, 2
4301 ; MIPS64R5EB-NEXT: daddiu $1, $1, -32767
4302 ; MIPS64R5EB-NEXT: dsll $1, $1, 19
4303 ; MIPS64R5EB-NEXT: daddiu $1, $1, 9
4304 ; MIPS64R5EB-NEXT: dsll $1, $1, 16
4305 ; MIPS64R5EB-NEXT: daddiu $5, $1, 10
4306 ; MIPS64R5EB-NEXT: ld $25, %call16(i16_4)($gp)
4307 ; MIPS64R5EB-NEXT: jalr $25
4308 ; MIPS64R5EB-NEXT: nop
4309 ; MIPS64R5EB-NEXT: ld $1, %got_disp(gv4i16)($gp)
4310 ; MIPS64R5EB-NEXT: sd $2, 0($1)
4311 ; MIPS64R5EB-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
4312 ; MIPS64R5EB-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
4313 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 32
4314 ; MIPS64R5EB-NEXT: jr $ra
4315 ; MIPS64R5EB-NEXT: nop
4317 ; MIPS32EL-LABEL: calli16_4:
4318 ; MIPS32EL: # %bb.0: # %entry
4319 ; MIPS32EL-NEXT: addiu $sp, $sp, -24
4320 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 24
4321 ; MIPS32EL-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
4322 ; MIPS32EL-NEXT: .cfi_offset 31, -4
4323 ; MIPS32EL-NEXT: lui $1, 7
4324 ; MIPS32EL-NEXT: ori $4, $1, 6
4325 ; MIPS32EL-NEXT: lui $1, 8
4326 ; MIPS32EL-NEXT: ori $6, $1, 12
4327 ; MIPS32EL-NEXT: lui $1, 10
4328 ; MIPS32EL-NEXT: ori $5, $1, 9
4329 ; MIPS32EL-NEXT: move $7, $5
4330 ; MIPS32EL-NEXT: jal i16_4
4331 ; MIPS32EL-NEXT: nop
4332 ; MIPS32EL-NEXT: lui $1, %hi(gv4i16)
4333 ; MIPS32EL-NEXT: addiu $4, $1, %lo(gv4i16)
4334 ; MIPS32EL-NEXT: sw $3, 4($4)
4335 ; MIPS32EL-NEXT: sw $2, %lo(gv4i16)($1)
4336 ; MIPS32EL-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
4337 ; MIPS32EL-NEXT: addiu $sp, $sp, 24
4338 ; MIPS32EL-NEXT: jr $ra
4339 ; MIPS32EL-NEXT: nop
4341 ; MIPS64EL-LABEL: calli16_4:
4342 ; MIPS64EL: # %bb.0: # %entry
4343 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
4344 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
4345 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4346 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4347 ; MIPS64EL-NEXT: .cfi_offset 31, -8
4348 ; MIPS64EL-NEXT: .cfi_offset 28, -16
4349 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_4)))
4350 ; MIPS64EL-NEXT: daddu $1, $1, $25
4351 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_4)))
4352 ; MIPS64EL-NEXT: lui $1, 10
4353 ; MIPS64EL-NEXT: daddiu $1, $1, 9
4354 ; MIPS64EL-NEXT: dsll $1, $1, 16
4355 ; MIPS64EL-NEXT: daddiu $1, $1, 7
4356 ; MIPS64EL-NEXT: dsll $1, $1, 16
4357 ; MIPS64EL-NEXT: daddiu $4, $1, 6
4358 ; MIPS64EL-NEXT: lui $1, 1
4359 ; MIPS64EL-NEXT: daddiu $1, $1, 16385
4360 ; MIPS64EL-NEXT: dsll $1, $1, 16
4361 ; MIPS64EL-NEXT: daddiu $1, $1, 8193
4362 ; MIPS64EL-NEXT: dsll $1, $1, 19
4363 ; MIPS64EL-NEXT: daddiu $5, $1, 12
4364 ; MIPS64EL-NEXT: ld $25, %call16(i16_4)($gp)
4365 ; MIPS64EL-NEXT: jalr $25
4366 ; MIPS64EL-NEXT: nop
4367 ; MIPS64EL-NEXT: ld $1, %got_disp(gv4i16)($gp)
4368 ; MIPS64EL-NEXT: sd $2, 0($1)
4369 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4370 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4371 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
4372 ; MIPS64EL-NEXT: jr $ra
4373 ; MIPS64EL-NEXT: nop
4375 ; MIPS32R5EL-LABEL: calli16_4:
4376 ; MIPS32R5EL: # %bb.0: # %entry
4377 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -24
4378 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 24
4379 ; MIPS32R5EL-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
4380 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
4381 ; MIPS32R5EL-NEXT: lui $1, 7
4382 ; MIPS32R5EL-NEXT: ori $4, $1, 6
4383 ; MIPS32R5EL-NEXT: lui $1, 8
4384 ; MIPS32R5EL-NEXT: ori $6, $1, 12
4385 ; MIPS32R5EL-NEXT: lui $1, 10
4386 ; MIPS32R5EL-NEXT: ori $5, $1, 9
4387 ; MIPS32R5EL-NEXT: move $7, $5
4388 ; MIPS32R5EL-NEXT: jal i16_4
4389 ; MIPS32R5EL-NEXT: nop
4390 ; MIPS32R5EL-NEXT: lui $1, %hi(gv4i16)
4391 ; MIPS32R5EL-NEXT: addiu $4, $1, %lo(gv4i16)
4392 ; MIPS32R5EL-NEXT: sw $3, 4($4)
4393 ; MIPS32R5EL-NEXT: sw $2, %lo(gv4i16)($1)
4394 ; MIPS32R5EL-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
4395 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 24
4396 ; MIPS32R5EL-NEXT: jr $ra
4397 ; MIPS32R5EL-NEXT: nop
4399 ; MIPS64R5EL-LABEL: calli16_4:
4400 ; MIPS64R5EL: # %bb.0: # %entry
4401 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -32
4402 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 32
4403 ; MIPS64R5EL-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
4404 ; MIPS64R5EL-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
4405 ; MIPS64R5EL-NEXT: .cfi_offset 31, -8
4406 ; MIPS64R5EL-NEXT: .cfi_offset 28, -16
4407 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_4)))
4408 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
4409 ; MIPS64R5EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_4)))
4410 ; MIPS64R5EL-NEXT: lui $1, 10
4411 ; MIPS64R5EL-NEXT: daddiu $1, $1, 9
4412 ; MIPS64R5EL-NEXT: dsll $1, $1, 16
4413 ; MIPS64R5EL-NEXT: daddiu $1, $1, 7
4414 ; MIPS64R5EL-NEXT: dsll $1, $1, 16
4415 ; MIPS64R5EL-NEXT: daddiu $4, $1, 6
4416 ; MIPS64R5EL-NEXT: lui $1, 1
4417 ; MIPS64R5EL-NEXT: daddiu $1, $1, 16385
4418 ; MIPS64R5EL-NEXT: dsll $1, $1, 16
4419 ; MIPS64R5EL-NEXT: daddiu $1, $1, 8193
4420 ; MIPS64R5EL-NEXT: dsll $1, $1, 19
4421 ; MIPS64R5EL-NEXT: daddiu $5, $1, 12
4422 ; MIPS64R5EL-NEXT: ld $25, %call16(i16_4)($gp)
4423 ; MIPS64R5EL-NEXT: jalr $25
4424 ; MIPS64R5EL-NEXT: nop
4425 ; MIPS64R5EL-NEXT: ld $1, %got_disp(gv4i16)($gp)
4426 ; MIPS64R5EL-NEXT: sd $2, 0($1)
4427 ; MIPS64R5EL-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
4428 ; MIPS64R5EL-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
4429 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 32
4430 ; MIPS64R5EL-NEXT: jr $ra
4431 ; MIPS64R5EL-NEXT: nop
4433 %0 = call <4 x i16> @i16_4(<4 x i16> <i16 6, i16 7, i16 9, i16 10>, <4 x i16> <i16 12, i16 8, i16 9, i16 10>)
4434 store <4 x i16> %0, ptr @gv4i16
4438 define void @calli16_8() {
4439 ; MIPS32EB-LABEL: calli16_8:
4440 ; MIPS32EB: # %bb.0: # %entry
4441 ; MIPS32EB-NEXT: addiu $sp, $sp, -40
4442 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 40
4443 ; MIPS32EB-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
4444 ; MIPS32EB-NEXT: .cfi_offset 31, -4
4445 ; MIPS32EB-NEXT: lui $1, 9
4446 ; MIPS32EB-NEXT: ori $5, $1, 10
4447 ; MIPS32EB-NEXT: sw $5, 28($sp)
4448 ; MIPS32EB-NEXT: lui $1, 12
4449 ; MIPS32EB-NEXT: ori $1, $1, 8
4450 ; MIPS32EB-NEXT: sw $1, 24($sp)
4451 ; MIPS32EB-NEXT: sw $5, 20($sp)
4452 ; MIPS32EB-NEXT: lui $1, 6
4453 ; MIPS32EB-NEXT: ori $4, $1, 7
4454 ; MIPS32EB-NEXT: sw $4, 16($sp)
4455 ; MIPS32EB-NEXT: move $6, $4
4456 ; MIPS32EB-NEXT: move $7, $5
4457 ; MIPS32EB-NEXT: jal i16_8
4458 ; MIPS32EB-NEXT: nop
4459 ; MIPS32EB-NEXT: lui $1, %hi(gv8i16)
4460 ; MIPS32EB-NEXT: addiu $6, $1, %lo(gv8i16)
4461 ; MIPS32EB-NEXT: sw $5, 12($6)
4462 ; MIPS32EB-NEXT: sw $4, 8($6)
4463 ; MIPS32EB-NEXT: sw $3, 4($6)
4464 ; MIPS32EB-NEXT: sw $2, %lo(gv8i16)($1)
4465 ; MIPS32EB-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
4466 ; MIPS32EB-NEXT: addiu $sp, $sp, 40
4467 ; MIPS32EB-NEXT: jr $ra
4468 ; MIPS32EB-NEXT: nop
4470 ; MIPS64EB-LABEL: calli16_8:
4471 ; MIPS64EB: # %bb.0: # %entry
4472 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
4473 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
4474 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4475 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4476 ; MIPS64EB-NEXT: .cfi_offset 31, -8
4477 ; MIPS64EB-NEXT: .cfi_offset 28, -16
4478 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_8)))
4479 ; MIPS64EB-NEXT: daddu $1, $1, $25
4480 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_8)))
4481 ; MIPS64EB-NEXT: lui $1, 6
4482 ; MIPS64EB-NEXT: daddiu $1, $1, 7
4483 ; MIPS64EB-NEXT: dsll $1, $1, 16
4484 ; MIPS64EB-NEXT: daddiu $1, $1, 9
4485 ; MIPS64EB-NEXT: dsll $1, $1, 16
4486 ; MIPS64EB-NEXT: daddiu $4, $1, 10
4487 ; MIPS64EB-NEXT: lui $1, 2
4488 ; MIPS64EB-NEXT: daddiu $1, $1, -32767
4489 ; MIPS64EB-NEXT: dsll $1, $1, 19
4490 ; MIPS64EB-NEXT: daddiu $1, $1, 9
4491 ; MIPS64EB-NEXT: dsll $1, $1, 16
4492 ; MIPS64EB-NEXT: daddiu $7, $1, 10
4493 ; MIPS64EB-NEXT: ld $25, %call16(i16_8)($gp)
4494 ; MIPS64EB-NEXT: move $5, $4
4495 ; MIPS64EB-NEXT: move $6, $4
4496 ; MIPS64EB-NEXT: jalr $25
4497 ; MIPS64EB-NEXT: nop
4498 ; MIPS64EB-NEXT: ld $1, %got_disp(gv8i16)($gp)
4499 ; MIPS64EB-NEXT: sd $3, 8($1)
4500 ; MIPS64EB-NEXT: sd $2, 0($1)
4501 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4502 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4503 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
4504 ; MIPS64EB-NEXT: jr $ra
4505 ; MIPS64EB-NEXT: nop
4507 ; MIPS32R5EB-LABEL: calli16_8:
4508 ; MIPS32R5EB: # %bb.0: # %entry
4509 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -40
4510 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 40
4511 ; MIPS32R5EB-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
4512 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
4513 ; MIPS32R5EB-NEXT: lui $1, 6
4514 ; MIPS32R5EB-NEXT: ori $1, $1, 7
4515 ; MIPS32R5EB-NEXT: lui $2, 9
4516 ; MIPS32R5EB-NEXT: ori $2, $2, 10
4517 ; MIPS32R5EB-NEXT: fill.w $w0, $2
4518 ; MIPS32R5EB-NEXT: insert.w $w0[1], $1
4519 ; MIPS32R5EB-NEXT: splati.d $w0, $w0[0]
4520 ; MIPS32R5EB-NEXT: copy_s.w $4, $w0[0]
4521 ; MIPS32R5EB-NEXT: copy_s.w $5, $w0[1]
4522 ; MIPS32R5EB-NEXT: copy_s.w $6, $w0[2]
4523 ; MIPS32R5EB-NEXT: copy_s.w $7, $w0[3]
4524 ; MIPS32R5EB-NEXT: lui $1, %hi($CPI33_0)
4525 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo($CPI33_0)
4526 ; MIPS32R5EB-NEXT: ld.w $w0, 0($1)
4527 ; MIPS32R5EB-NEXT: copy_s.w $1, $w0[0]
4528 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[1]
4529 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[2]
4530 ; MIPS32R5EB-NEXT: copy_s.w $8, $w0[3]
4531 ; MIPS32R5EB-NEXT: sw $8, 28($sp)
4532 ; MIPS32R5EB-NEXT: sw $3, 24($sp)
4533 ; MIPS32R5EB-NEXT: sw $2, 20($sp)
4534 ; MIPS32R5EB-NEXT: sw $1, 16($sp)
4535 ; MIPS32R5EB-NEXT: jal i16_8
4536 ; MIPS32R5EB-NEXT: nop
4537 ; MIPS32R5EB-NEXT: lui $1, %hi(gv8i16)
4538 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo(gv8i16)
4539 ; MIPS32R5EB-NEXT: insert.w $w0[0], $2
4540 ; MIPS32R5EB-NEXT: insert.w $w0[1], $3
4541 ; MIPS32R5EB-NEXT: insert.w $w0[2], $4
4542 ; MIPS32R5EB-NEXT: insert.w $w0[3], $5
4543 ; MIPS32R5EB-NEXT: st.w $w0, 0($1)
4544 ; MIPS32R5EB-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
4545 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 40
4546 ; MIPS32R5EB-NEXT: jr $ra
4547 ; MIPS32R5EB-NEXT: nop
4549 ; MIPS64R5EB-LABEL: calli16_8:
4550 ; MIPS64R5EB: # %bb.0: # %entry
4551 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -16
4552 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 16
4553 ; MIPS64R5EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4554 ; MIPS64R5EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4555 ; MIPS64R5EB-NEXT: .cfi_offset 31, -8
4556 ; MIPS64R5EB-NEXT: .cfi_offset 28, -16
4557 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_8)))
4558 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
4559 ; MIPS64R5EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_8)))
4560 ; MIPS64R5EB-NEXT: lui $1, 9
4561 ; MIPS64R5EB-NEXT: ori $1, $1, 10
4562 ; MIPS64R5EB-NEXT: lui $2, 6
4563 ; MIPS64R5EB-NEXT: ori $2, $2, 7
4564 ; MIPS64R5EB-NEXT: dinsu $1, $2, 32, 32
4565 ; MIPS64R5EB-NEXT: fill.d $w0, $1
4566 ; MIPS64R5EB-NEXT: copy_s.d $4, $w0[0]
4567 ; MIPS64R5EB-NEXT: copy_s.d $5, $w0[1]
4568 ; MIPS64R5EB-NEXT: ld $1, %got_page(.LCPI33_0)($gp)
4569 ; MIPS64R5EB-NEXT: daddiu $1, $1, %got_ofst(.LCPI33_0)
4570 ; MIPS64R5EB-NEXT: ld.d $w0, 0($1)
4571 ; MIPS64R5EB-NEXT: copy_s.d $6, $w0[0]
4572 ; MIPS64R5EB-NEXT: copy_s.d $7, $w0[1]
4573 ; MIPS64R5EB-NEXT: ld $25, %call16(i16_8)($gp)
4574 ; MIPS64R5EB-NEXT: jalr $25
4575 ; MIPS64R5EB-NEXT: nop
4576 ; MIPS64R5EB-NEXT: ld $1, %got_disp(gv8i16)($gp)
4577 ; MIPS64R5EB-NEXT: insert.d $w0[0], $2
4578 ; MIPS64R5EB-NEXT: insert.d $w0[1], $3
4579 ; MIPS64R5EB-NEXT: st.d $w0, 0($1)
4580 ; MIPS64R5EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4581 ; MIPS64R5EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4582 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 16
4583 ; MIPS64R5EB-NEXT: jr $ra
4584 ; MIPS64R5EB-NEXT: nop
4586 ; MIPS32EL-LABEL: calli16_8:
4587 ; MIPS32EL: # %bb.0: # %entry
4588 ; MIPS32EL-NEXT: addiu $sp, $sp, -40
4589 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 40
4590 ; MIPS32EL-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
4591 ; MIPS32EL-NEXT: .cfi_offset 31, -4
4592 ; MIPS32EL-NEXT: lui $1, 10
4593 ; MIPS32EL-NEXT: ori $5, $1, 9
4594 ; MIPS32EL-NEXT: sw $5, 28($sp)
4595 ; MIPS32EL-NEXT: lui $1, 8
4596 ; MIPS32EL-NEXT: ori $1, $1, 12
4597 ; MIPS32EL-NEXT: sw $1, 24($sp)
4598 ; MIPS32EL-NEXT: sw $5, 20($sp)
4599 ; MIPS32EL-NEXT: lui $1, 7
4600 ; MIPS32EL-NEXT: ori $4, $1, 6
4601 ; MIPS32EL-NEXT: sw $4, 16($sp)
4602 ; MIPS32EL-NEXT: move $6, $4
4603 ; MIPS32EL-NEXT: move $7, $5
4604 ; MIPS32EL-NEXT: jal i16_8
4605 ; MIPS32EL-NEXT: nop
4606 ; MIPS32EL-NEXT: lui $1, %hi(gv8i16)
4607 ; MIPS32EL-NEXT: addiu $6, $1, %lo(gv8i16)
4608 ; MIPS32EL-NEXT: sw $5, 12($6)
4609 ; MIPS32EL-NEXT: sw $4, 8($6)
4610 ; MIPS32EL-NEXT: sw $3, 4($6)
4611 ; MIPS32EL-NEXT: sw $2, %lo(gv8i16)($1)
4612 ; MIPS32EL-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
4613 ; MIPS32EL-NEXT: addiu $sp, $sp, 40
4614 ; MIPS32EL-NEXT: jr $ra
4615 ; MIPS32EL-NEXT: nop
4617 ; MIPS64EL-LABEL: calli16_8:
4618 ; MIPS64EL: # %bb.0: # %entry
4619 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
4620 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
4621 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4622 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4623 ; MIPS64EL-NEXT: .cfi_offset 31, -8
4624 ; MIPS64EL-NEXT: .cfi_offset 28, -16
4625 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_8)))
4626 ; MIPS64EL-NEXT: daddu $1, $1, $25
4627 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_8)))
4628 ; MIPS64EL-NEXT: lui $1, 10
4629 ; MIPS64EL-NEXT: daddiu $1, $1, 9
4630 ; MIPS64EL-NEXT: dsll $1, $1, 16
4631 ; MIPS64EL-NEXT: daddiu $1, $1, 7
4632 ; MIPS64EL-NEXT: dsll $1, $1, 16
4633 ; MIPS64EL-NEXT: daddiu $4, $1, 6
4634 ; MIPS64EL-NEXT: lui $1, 1
4635 ; MIPS64EL-NEXT: daddiu $1, $1, 16385
4636 ; MIPS64EL-NEXT: dsll $1, $1, 16
4637 ; MIPS64EL-NEXT: daddiu $1, $1, 8193
4638 ; MIPS64EL-NEXT: dsll $1, $1, 19
4639 ; MIPS64EL-NEXT: daddiu $7, $1, 12
4640 ; MIPS64EL-NEXT: ld $25, %call16(i16_8)($gp)
4641 ; MIPS64EL-NEXT: move $5, $4
4642 ; MIPS64EL-NEXT: move $6, $4
4643 ; MIPS64EL-NEXT: jalr $25
4644 ; MIPS64EL-NEXT: nop
4645 ; MIPS64EL-NEXT: ld $1, %got_disp(gv8i16)($gp)
4646 ; MIPS64EL-NEXT: sd $3, 8($1)
4647 ; MIPS64EL-NEXT: sd $2, 0($1)
4648 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4649 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4650 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
4651 ; MIPS64EL-NEXT: jr $ra
4652 ; MIPS64EL-NEXT: nop
4654 ; MIPS32R5EL-LABEL: calli16_8:
4655 ; MIPS32R5EL: # %bb.0: # %entry
4656 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -40
4657 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 40
4658 ; MIPS32R5EL-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
4659 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
4660 ; MIPS32R5EL-NEXT: lui $1, 10
4661 ; MIPS32R5EL-NEXT: ori $1, $1, 9
4662 ; MIPS32R5EL-NEXT: lui $2, 7
4663 ; MIPS32R5EL-NEXT: ori $2, $2, 6
4664 ; MIPS32R5EL-NEXT: fill.w $w0, $2
4665 ; MIPS32R5EL-NEXT: insert.w $w0[1], $1
4666 ; MIPS32R5EL-NEXT: splati.d $w0, $w0[0]
4667 ; MIPS32R5EL-NEXT: copy_s.w $4, $w0[0]
4668 ; MIPS32R5EL-NEXT: copy_s.w $5, $w0[1]
4669 ; MIPS32R5EL-NEXT: copy_s.w $6, $w0[2]
4670 ; MIPS32R5EL-NEXT: copy_s.w $7, $w0[3]
4671 ; MIPS32R5EL-NEXT: lui $1, %hi($CPI33_0)
4672 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo($CPI33_0)
4673 ; MIPS32R5EL-NEXT: ld.w $w0, 0($1)
4674 ; MIPS32R5EL-NEXT: copy_s.w $1, $w0[0]
4675 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[1]
4676 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[2]
4677 ; MIPS32R5EL-NEXT: copy_s.w $8, $w0[3]
4678 ; MIPS32R5EL-NEXT: sw $8, 28($sp)
4679 ; MIPS32R5EL-NEXT: sw $3, 24($sp)
4680 ; MIPS32R5EL-NEXT: sw $2, 20($sp)
4681 ; MIPS32R5EL-NEXT: sw $1, 16($sp)
4682 ; MIPS32R5EL-NEXT: jal i16_8
4683 ; MIPS32R5EL-NEXT: nop
4684 ; MIPS32R5EL-NEXT: lui $1, %hi(gv8i16)
4685 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo(gv8i16)
4686 ; MIPS32R5EL-NEXT: insert.w $w0[0], $2
4687 ; MIPS32R5EL-NEXT: insert.w $w0[1], $3
4688 ; MIPS32R5EL-NEXT: insert.w $w0[2], $4
4689 ; MIPS32R5EL-NEXT: insert.w $w0[3], $5
4690 ; MIPS32R5EL-NEXT: st.w $w0, 0($1)
4691 ; MIPS32R5EL-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
4692 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 40
4693 ; MIPS32R5EL-NEXT: jr $ra
4694 ; MIPS32R5EL-NEXT: nop
4696 ; MIPS64R5EL-LABEL: calli16_8:
4697 ; MIPS64R5EL: # %bb.0: # %entry
4698 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -16
4699 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 16
4700 ; MIPS64R5EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4701 ; MIPS64R5EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4702 ; MIPS64R5EL-NEXT: .cfi_offset 31, -8
4703 ; MIPS64R5EL-NEXT: .cfi_offset 28, -16
4704 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(calli16_8)))
4705 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
4706 ; MIPS64R5EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli16_8)))
4707 ; MIPS64R5EL-NEXT: lui $1, 7
4708 ; MIPS64R5EL-NEXT: ori $1, $1, 6
4709 ; MIPS64R5EL-NEXT: lui $2, 10
4710 ; MIPS64R5EL-NEXT: ori $2, $2, 9
4711 ; MIPS64R5EL-NEXT: dinsu $1, $2, 32, 32
4712 ; MIPS64R5EL-NEXT: fill.d $w0, $1
4713 ; MIPS64R5EL-NEXT: copy_s.d $4, $w0[0]
4714 ; MIPS64R5EL-NEXT: copy_s.d $5, $w0[1]
4715 ; MIPS64R5EL-NEXT: ld $1, %got_page(.LCPI33_0)($gp)
4716 ; MIPS64R5EL-NEXT: daddiu $1, $1, %got_ofst(.LCPI33_0)
4717 ; MIPS64R5EL-NEXT: ld.d $w0, 0($1)
4718 ; MIPS64R5EL-NEXT: copy_s.d $6, $w0[0]
4719 ; MIPS64R5EL-NEXT: copy_s.d $7, $w0[1]
4720 ; MIPS64R5EL-NEXT: ld $25, %call16(i16_8)($gp)
4721 ; MIPS64R5EL-NEXT: jalr $25
4722 ; MIPS64R5EL-NEXT: nop
4723 ; MIPS64R5EL-NEXT: ld $1, %got_disp(gv8i16)($gp)
4724 ; MIPS64R5EL-NEXT: insert.d $w0[0], $2
4725 ; MIPS64R5EL-NEXT: insert.d $w0[1], $3
4726 ; MIPS64R5EL-NEXT: st.d $w0, 0($1)
4727 ; MIPS64R5EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4728 ; MIPS64R5EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4729 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 16
4730 ; MIPS64R5EL-NEXT: jr $ra
4731 ; MIPS64R5EL-NEXT: nop
4733 %0 = call <8 x i16> @i16_8(<8 x i16> <i16 6, i16 7, i16 9, i16 10, i16 6, i16 7, i16 9, i16 10>, <8 x i16> <i16 6, i16 7, i16 9, i16 10, i16 12, i16 8, i16 9, i16 10>)
4734 store <8 x i16> %0, ptr @gv8i16
4738 define void @calli32_2() {
4739 ; MIPS32-LABEL: calli32_2:
4740 ; MIPS32: # %bb.0: # %entry
4741 ; MIPS32-NEXT: addiu $sp, $sp, -24
4742 ; MIPS32-NEXT: .cfi_def_cfa_offset 24
4743 ; MIPS32-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
4744 ; MIPS32-NEXT: .cfi_offset 31, -4
4745 ; MIPS32-NEXT: addiu $4, $zero, 6
4746 ; MIPS32-NEXT: addiu $5, $zero, 7
4747 ; MIPS32-NEXT: addiu $6, $zero, 12
4748 ; MIPS32-NEXT: addiu $7, $zero, 8
4749 ; MIPS32-NEXT: jal i32_2
4751 ; MIPS32-NEXT: lui $1, %hi(gv2i32)
4752 ; MIPS32-NEXT: addiu $4, $1, %lo(gv2i32)
4753 ; MIPS32-NEXT: sw $3, 4($4)
4754 ; MIPS32-NEXT: sw $2, %lo(gv2i32)($1)
4755 ; MIPS32-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
4756 ; MIPS32-NEXT: addiu $sp, $sp, 24
4757 ; MIPS32-NEXT: jr $ra
4760 ; MIPS64EB-LABEL: calli32_2:
4761 ; MIPS64EB: # %bb.0: # %entry
4762 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
4763 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
4764 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4765 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4766 ; MIPS64EB-NEXT: .cfi_offset 31, -8
4767 ; MIPS64EB-NEXT: .cfi_offset 28, -16
4768 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(calli32_2)))
4769 ; MIPS64EB-NEXT: daddu $1, $1, $25
4770 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli32_2)))
4771 ; MIPS64EB-NEXT: daddiu $1, $zero, 3
4772 ; MIPS64EB-NEXT: dsll $2, $1, 33
4773 ; MIPS64EB-NEXT: daddiu $4, $2, 7
4774 ; MIPS64EB-NEXT: dsll $1, $1, 34
4775 ; MIPS64EB-NEXT: daddiu $5, $1, 8
4776 ; MIPS64EB-NEXT: ld $25, %call16(i32_2)($gp)
4777 ; MIPS64EB-NEXT: jalr $25
4778 ; MIPS64EB-NEXT: nop
4779 ; MIPS64EB-NEXT: ld $1, %got_disp(gv2i32)($gp)
4780 ; MIPS64EB-NEXT: sd $2, 0($1)
4781 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4782 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4783 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
4784 ; MIPS64EB-NEXT: jr $ra
4785 ; MIPS64EB-NEXT: nop
4787 ; MIPS32R5-LABEL: calli32_2:
4788 ; MIPS32R5: # %bb.0: # %entry
4789 ; MIPS32R5-NEXT: addiu $sp, $sp, -24
4790 ; MIPS32R5-NEXT: .cfi_def_cfa_offset 24
4791 ; MIPS32R5-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
4792 ; MIPS32R5-NEXT: .cfi_offset 31, -4
4793 ; MIPS32R5-NEXT: addiu $4, $zero, 6
4794 ; MIPS32R5-NEXT: addiu $5, $zero, 7
4795 ; MIPS32R5-NEXT: addiu $6, $zero, 12
4796 ; MIPS32R5-NEXT: addiu $7, $zero, 8
4797 ; MIPS32R5-NEXT: jal i32_2
4798 ; MIPS32R5-NEXT: nop
4799 ; MIPS32R5-NEXT: lui $1, %hi(gv2i32)
4800 ; MIPS32R5-NEXT: addiu $4, $1, %lo(gv2i32)
4801 ; MIPS32R5-NEXT: sw $3, 4($4)
4802 ; MIPS32R5-NEXT: sw $2, %lo(gv2i32)($1)
4803 ; MIPS32R5-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
4804 ; MIPS32R5-NEXT: addiu $sp, $sp, 24
4805 ; MIPS32R5-NEXT: jr $ra
4806 ; MIPS32R5-NEXT: nop
4808 ; MIPS64R5EB-LABEL: calli32_2:
4809 ; MIPS64R5EB: # %bb.0: # %entry
4810 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -32
4811 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 32
4812 ; MIPS64R5EB-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
4813 ; MIPS64R5EB-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
4814 ; MIPS64R5EB-NEXT: .cfi_offset 31, -8
4815 ; MIPS64R5EB-NEXT: .cfi_offset 28, -16
4816 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(calli32_2)))
4817 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
4818 ; MIPS64R5EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli32_2)))
4819 ; MIPS64R5EB-NEXT: daddiu $1, $zero, 3
4820 ; MIPS64R5EB-NEXT: dsll $2, $1, 33
4821 ; MIPS64R5EB-NEXT: daddiu $4, $2, 7
4822 ; MIPS64R5EB-NEXT: dsll $1, $1, 34
4823 ; MIPS64R5EB-NEXT: daddiu $5, $1, 8
4824 ; MIPS64R5EB-NEXT: ld $25, %call16(i32_2)($gp)
4825 ; MIPS64R5EB-NEXT: jalr $25
4826 ; MIPS64R5EB-NEXT: nop
4827 ; MIPS64R5EB-NEXT: ld $1, %got_disp(gv2i32)($gp)
4828 ; MIPS64R5EB-NEXT: sd $2, 0($1)
4829 ; MIPS64R5EB-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
4830 ; MIPS64R5EB-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
4831 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 32
4832 ; MIPS64R5EB-NEXT: jr $ra
4833 ; MIPS64R5EB-NEXT: nop
4835 ; MIPS64EL-LABEL: calli32_2:
4836 ; MIPS64EL: # %bb.0: # %entry
4837 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
4838 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
4839 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4840 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4841 ; MIPS64EL-NEXT: .cfi_offset 31, -8
4842 ; MIPS64EL-NEXT: .cfi_offset 28, -16
4843 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(calli32_2)))
4844 ; MIPS64EL-NEXT: daddu $1, $1, $25
4845 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli32_2)))
4846 ; MIPS64EL-NEXT: daddiu $1, $zero, 7
4847 ; MIPS64EL-NEXT: dsll $1, $1, 32
4848 ; MIPS64EL-NEXT: daddiu $4, $1, 6
4849 ; MIPS64EL-NEXT: daddiu $1, $zero, 1
4850 ; MIPS64EL-NEXT: dsll $1, $1, 35
4851 ; MIPS64EL-NEXT: daddiu $5, $1, 12
4852 ; MIPS64EL-NEXT: ld $25, %call16(i32_2)($gp)
4853 ; MIPS64EL-NEXT: jalr $25
4854 ; MIPS64EL-NEXT: nop
4855 ; MIPS64EL-NEXT: ld $1, %got_disp(gv2i32)($gp)
4856 ; MIPS64EL-NEXT: sd $2, 0($1)
4857 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4858 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4859 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
4860 ; MIPS64EL-NEXT: jr $ra
4861 ; MIPS64EL-NEXT: nop
4863 ; MIPS64R5EL-LABEL: calli32_2:
4864 ; MIPS64R5EL: # %bb.0: # %entry
4865 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -32
4866 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 32
4867 ; MIPS64R5EL-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
4868 ; MIPS64R5EL-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
4869 ; MIPS64R5EL-NEXT: .cfi_offset 31, -8
4870 ; MIPS64R5EL-NEXT: .cfi_offset 28, -16
4871 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(calli32_2)))
4872 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
4873 ; MIPS64R5EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli32_2)))
4874 ; MIPS64R5EL-NEXT: daddiu $1, $zero, 7
4875 ; MIPS64R5EL-NEXT: dsll $1, $1, 32
4876 ; MIPS64R5EL-NEXT: daddiu $4, $1, 6
4877 ; MIPS64R5EL-NEXT: daddiu $1, $zero, 1
4878 ; MIPS64R5EL-NEXT: dsll $1, $1, 35
4879 ; MIPS64R5EL-NEXT: daddiu $5, $1, 12
4880 ; MIPS64R5EL-NEXT: ld $25, %call16(i32_2)($gp)
4881 ; MIPS64R5EL-NEXT: jalr $25
4882 ; MIPS64R5EL-NEXT: nop
4883 ; MIPS64R5EL-NEXT: ld $1, %got_disp(gv2i32)($gp)
4884 ; MIPS64R5EL-NEXT: sd $2, 0($1)
4885 ; MIPS64R5EL-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
4886 ; MIPS64R5EL-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
4887 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 32
4888 ; MIPS64R5EL-NEXT: jr $ra
4889 ; MIPS64R5EL-NEXT: nop
4891 %0 = call <2 x i32> @i32_2(<2 x i32> <i32 6, i32 7>, <2 x i32> <i32 12, i32 8>)
4892 store <2 x i32> %0, ptr @gv2i32
4896 define void @calli32_4() {
4897 ; MIPS32-LABEL: calli32_4:
4898 ; MIPS32: # %bb.0: # %entry
4899 ; MIPS32-NEXT: addiu $sp, $sp, -40
4900 ; MIPS32-NEXT: .cfi_def_cfa_offset 40
4901 ; MIPS32-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
4902 ; MIPS32-NEXT: .cfi_offset 31, -4
4903 ; MIPS32-NEXT: addiu $1, $zero, 9
4904 ; MIPS32-NEXT: addiu $2, $zero, 10
4905 ; MIPS32-NEXT: sw $2, 28($sp)
4906 ; MIPS32-NEXT: sw $1, 24($sp)
4907 ; MIPS32-NEXT: addiu $1, $zero, 8
4908 ; MIPS32-NEXT: sw $1, 20($sp)
4909 ; MIPS32-NEXT: addiu $1, $zero, 12
4910 ; MIPS32-NEXT: sw $1, 16($sp)
4911 ; MIPS32-NEXT: addiu $4, $zero, 6
4912 ; MIPS32-NEXT: addiu $5, $zero, 7
4913 ; MIPS32-NEXT: addiu $6, $zero, 9
4914 ; MIPS32-NEXT: addiu $7, $zero, 10
4915 ; MIPS32-NEXT: jal i32_4
4917 ; MIPS32-NEXT: lui $1, %hi(gv4i32)
4918 ; MIPS32-NEXT: addiu $6, $1, %lo(gv4i32)
4919 ; MIPS32-NEXT: sw $5, 12($6)
4920 ; MIPS32-NEXT: sw $4, 8($6)
4921 ; MIPS32-NEXT: sw $3, 4($6)
4922 ; MIPS32-NEXT: sw $2, %lo(gv4i32)($1)
4923 ; MIPS32-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
4924 ; MIPS32-NEXT: addiu $sp, $sp, 40
4925 ; MIPS32-NEXT: jr $ra
4928 ; MIPS64EB-LABEL: calli32_4:
4929 ; MIPS64EB: # %bb.0: # %entry
4930 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
4931 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
4932 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4933 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4934 ; MIPS64EB-NEXT: .cfi_offset 31, -8
4935 ; MIPS64EB-NEXT: .cfi_offset 28, -16
4936 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(calli32_4)))
4937 ; MIPS64EB-NEXT: daddu $1, $1, $25
4938 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli32_4)))
4939 ; MIPS64EB-NEXT: daddiu $1, $zero, 3
4940 ; MIPS64EB-NEXT: dsll $2, $1, 33
4941 ; MIPS64EB-NEXT: daddiu $4, $2, 7
4942 ; MIPS64EB-NEXT: dsll $1, $1, 34
4943 ; MIPS64EB-NEXT: daddiu $6, $1, 8
4944 ; MIPS64EB-NEXT: daddiu $1, $zero, 9
4945 ; MIPS64EB-NEXT: dsll $1, $1, 32
4946 ; MIPS64EB-NEXT: daddiu $5, $1, 10
4947 ; MIPS64EB-NEXT: ld $25, %call16(i32_4)($gp)
4948 ; MIPS64EB-NEXT: move $7, $5
4949 ; MIPS64EB-NEXT: jalr $25
4950 ; MIPS64EB-NEXT: nop
4951 ; MIPS64EB-NEXT: ld $1, %got_disp(gv4i32)($gp)
4952 ; MIPS64EB-NEXT: sd $3, 8($1)
4953 ; MIPS64EB-NEXT: sd $2, 0($1)
4954 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
4955 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
4956 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
4957 ; MIPS64EB-NEXT: jr $ra
4958 ; MIPS64EB-NEXT: nop
4960 ; MIPS32R5-LABEL: calli32_4:
4961 ; MIPS32R5: # %bb.0: # %entry
4962 ; MIPS32R5-NEXT: addiu $sp, $sp, -40
4963 ; MIPS32R5-NEXT: .cfi_def_cfa_offset 40
4964 ; MIPS32R5-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
4965 ; MIPS32R5-NEXT: .cfi_offset 31, -4
4966 ; MIPS32R5-NEXT: addiu $1, $zero, 9
4967 ; MIPS32R5-NEXT: addiu $2, $zero, 10
4968 ; MIPS32R5-NEXT: sw $2, 28($sp)
4969 ; MIPS32R5-NEXT: sw $1, 24($sp)
4970 ; MIPS32R5-NEXT: addiu $1, $zero, 8
4971 ; MIPS32R5-NEXT: sw $1, 20($sp)
4972 ; MIPS32R5-NEXT: addiu $1, $zero, 12
4973 ; MIPS32R5-NEXT: sw $1, 16($sp)
4974 ; MIPS32R5-NEXT: addiu $4, $zero, 6
4975 ; MIPS32R5-NEXT: addiu $5, $zero, 7
4976 ; MIPS32R5-NEXT: addiu $6, $zero, 9
4977 ; MIPS32R5-NEXT: addiu $7, $zero, 10
4978 ; MIPS32R5-NEXT: jal i32_4
4979 ; MIPS32R5-NEXT: nop
4980 ; MIPS32R5-NEXT: insert.w $w0[0], $2
4981 ; MIPS32R5-NEXT: insert.w $w0[1], $3
4982 ; MIPS32R5-NEXT: insert.w $w0[2], $4
4983 ; MIPS32R5-NEXT: lui $1, %hi(gv4i32)
4984 ; MIPS32R5-NEXT: insert.w $w0[3], $5
4985 ; MIPS32R5-NEXT: addiu $1, $1, %lo(gv4i32)
4986 ; MIPS32R5-NEXT: st.w $w0, 0($1)
4987 ; MIPS32R5-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
4988 ; MIPS32R5-NEXT: addiu $sp, $sp, 40
4989 ; MIPS32R5-NEXT: jr $ra
4990 ; MIPS32R5-NEXT: nop
4992 ; MIPS64R5-LABEL: calli32_4:
4993 ; MIPS64R5: # %bb.0: # %entry
4994 ; MIPS64R5-NEXT: daddiu $sp, $sp, -16
4995 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 16
4996 ; MIPS64R5-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
4997 ; MIPS64R5-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
4998 ; MIPS64R5-NEXT: .cfi_offset 31, -8
4999 ; MIPS64R5-NEXT: .cfi_offset 28, -16
5000 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(calli32_4)))
5001 ; MIPS64R5-NEXT: daddu $1, $1, $25
5002 ; MIPS64R5-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli32_4)))
5003 ; MIPS64R5-NEXT: ld $1, %got_page(.LCPI35_0)($gp)
5004 ; MIPS64R5-NEXT: daddiu $1, $1, %got_ofst(.LCPI35_0)
5005 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
5006 ; MIPS64R5-NEXT: copy_s.d $4, $w0[0]
5007 ; MIPS64R5-NEXT: copy_s.d $5, $w0[1]
5008 ; MIPS64R5-NEXT: ld $1, %got_page(.LCPI35_1)($gp)
5009 ; MIPS64R5-NEXT: daddiu $1, $1, %got_ofst(.LCPI35_1)
5010 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
5011 ; MIPS64R5-NEXT: copy_s.d $6, $w0[0]
5012 ; MIPS64R5-NEXT: copy_s.d $7, $w0[1]
5013 ; MIPS64R5-NEXT: ld $25, %call16(i32_4)($gp)
5014 ; MIPS64R5-NEXT: jalr $25
5015 ; MIPS64R5-NEXT: nop
5016 ; MIPS64R5-NEXT: insert.d $w0[0], $2
5017 ; MIPS64R5-NEXT: insert.d $w0[1], $3
5018 ; MIPS64R5-NEXT: ld $1, %got_disp(gv4i32)($gp)
5019 ; MIPS64R5-NEXT: st.d $w0, 0($1)
5020 ; MIPS64R5-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5021 ; MIPS64R5-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5022 ; MIPS64R5-NEXT: daddiu $sp, $sp, 16
5023 ; MIPS64R5-NEXT: jr $ra
5024 ; MIPS64R5-NEXT: nop
5026 ; MIPS64EL-LABEL: calli32_4:
5027 ; MIPS64EL: # %bb.0: # %entry
5028 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
5029 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
5030 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5031 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5032 ; MIPS64EL-NEXT: .cfi_offset 31, -8
5033 ; MIPS64EL-NEXT: .cfi_offset 28, -16
5034 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(calli32_4)))
5035 ; MIPS64EL-NEXT: daddu $1, $1, $25
5036 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli32_4)))
5037 ; MIPS64EL-NEXT: daddiu $1, $zero, 7
5038 ; MIPS64EL-NEXT: dsll $1, $1, 32
5039 ; MIPS64EL-NEXT: daddiu $4, $1, 6
5040 ; MIPS64EL-NEXT: daddiu $1, $zero, 1
5041 ; MIPS64EL-NEXT: dsll $1, $1, 35
5042 ; MIPS64EL-NEXT: daddiu $6, $1, 12
5043 ; MIPS64EL-NEXT: daddiu $1, $zero, 5
5044 ; MIPS64EL-NEXT: dsll $1, $1, 33
5045 ; MIPS64EL-NEXT: daddiu $5, $1, 9
5046 ; MIPS64EL-NEXT: ld $25, %call16(i32_4)($gp)
5047 ; MIPS64EL-NEXT: move $7, $5
5048 ; MIPS64EL-NEXT: jalr $25
5049 ; MIPS64EL-NEXT: nop
5050 ; MIPS64EL-NEXT: ld $1, %got_disp(gv4i32)($gp)
5051 ; MIPS64EL-NEXT: sd $3, 8($1)
5052 ; MIPS64EL-NEXT: sd $2, 0($1)
5053 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5054 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5055 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
5056 ; MIPS64EL-NEXT: jr $ra
5057 ; MIPS64EL-NEXT: nop
5059 %0 = call <4 x i32> @i32_4(<4 x i32> <i32 6, i32 7, i32 9, i32 10>, <4 x i32> <i32 12, i32 8, i32 9, i32 10>)
5060 store <4 x i32> %0, ptr @gv4i32
5064 define void @calli64_2() {
5065 ; MIPS32EB-LABEL: calli64_2:
5066 ; MIPS32EB: # %bb.0: # %entry
5067 ; MIPS32EB-NEXT: addiu $sp, $sp, -40
5068 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 40
5069 ; MIPS32EB-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
5070 ; MIPS32EB-NEXT: .cfi_offset 31, -4
5071 ; MIPS32EB-NEXT: addiu $1, $zero, 8
5072 ; MIPS32EB-NEXT: sw $1, 28($sp)
5073 ; MIPS32EB-NEXT: addiu $1, $zero, 12
5074 ; MIPS32EB-NEXT: sw $1, 20($sp)
5075 ; MIPS32EB-NEXT: sw $zero, 24($sp)
5076 ; MIPS32EB-NEXT: sw $zero, 16($sp)
5077 ; MIPS32EB-NEXT: addiu $4, $zero, 0
5078 ; MIPS32EB-NEXT: addiu $5, $zero, 6
5079 ; MIPS32EB-NEXT: addiu $6, $zero, 0
5080 ; MIPS32EB-NEXT: addiu $7, $zero, 7
5081 ; MIPS32EB-NEXT: jal i64_2
5082 ; MIPS32EB-NEXT: nop
5083 ; MIPS32EB-NEXT: lui $1, %hi(gv2i64)
5084 ; MIPS32EB-NEXT: addiu $6, $1, %lo(gv2i64)
5085 ; MIPS32EB-NEXT: sw $5, 12($6)
5086 ; MIPS32EB-NEXT: sw $4, 8($6)
5087 ; MIPS32EB-NEXT: sw $3, 4($6)
5088 ; MIPS32EB-NEXT: sw $2, %lo(gv2i64)($1)
5089 ; MIPS32EB-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
5090 ; MIPS32EB-NEXT: addiu $sp, $sp, 40
5091 ; MIPS32EB-NEXT: jr $ra
5092 ; MIPS32EB-NEXT: nop
5094 ; MIPS64-LABEL: calli64_2:
5095 ; MIPS64: # %bb.0: # %entry
5096 ; MIPS64-NEXT: daddiu $sp, $sp, -16
5097 ; MIPS64-NEXT: .cfi_def_cfa_offset 16
5098 ; MIPS64-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5099 ; MIPS64-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5100 ; MIPS64-NEXT: .cfi_offset 31, -8
5101 ; MIPS64-NEXT: .cfi_offset 28, -16
5102 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(calli64_2)))
5103 ; MIPS64-NEXT: daddu $1, $1, $25
5104 ; MIPS64-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli64_2)))
5105 ; MIPS64-NEXT: ld $25, %call16(i64_2)($gp)
5106 ; MIPS64-NEXT: daddiu $4, $zero, 6
5107 ; MIPS64-NEXT: daddiu $5, $zero, 7
5108 ; MIPS64-NEXT: daddiu $6, $zero, 12
5109 ; MIPS64-NEXT: daddiu $7, $zero, 8
5110 ; MIPS64-NEXT: jalr $25
5112 ; MIPS64-NEXT: ld $1, %got_disp(gv2i64)($gp)
5113 ; MIPS64-NEXT: sd $3, 8($1)
5114 ; MIPS64-NEXT: sd $2, 0($1)
5115 ; MIPS64-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5116 ; MIPS64-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5117 ; MIPS64-NEXT: daddiu $sp, $sp, 16
5118 ; MIPS64-NEXT: jr $ra
5121 ; MIPS32R5EB-LABEL: calli64_2:
5122 ; MIPS32R5EB: # %bb.0: # %entry
5123 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -40
5124 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 40
5125 ; MIPS32R5EB-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
5126 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
5127 ; MIPS32R5EB-NEXT: lui $1, %hi($CPI36_0)
5128 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo($CPI36_0)
5129 ; MIPS32R5EB-NEXT: ld.w $w0, 0($1)
5130 ; MIPS32R5EB-NEXT: copy_s.w $5, $w0[1]
5131 ; MIPS32R5EB-NEXT: copy_s.w $7, $w0[3]
5132 ; MIPS32R5EB-NEXT: lui $1, %hi($CPI36_1)
5133 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo($CPI36_1)
5134 ; MIPS32R5EB-NEXT: ld.w $w0, 0($1)
5135 ; MIPS32R5EB-NEXT: copy_s.w $1, $w0[1]
5136 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[3]
5137 ; MIPS32R5EB-NEXT: sw $2, 28($sp)
5138 ; MIPS32R5EB-NEXT: sw $1, 20($sp)
5139 ; MIPS32R5EB-NEXT: sw $zero, 24($sp)
5140 ; MIPS32R5EB-NEXT: sw $zero, 16($sp)
5141 ; MIPS32R5EB-NEXT: addiu $4, $zero, 0
5142 ; MIPS32R5EB-NEXT: addiu $6, $zero, 0
5143 ; MIPS32R5EB-NEXT: jal i64_2
5144 ; MIPS32R5EB-NEXT: nop
5145 ; MIPS32R5EB-NEXT: lui $1, %hi(gv2i64)
5146 ; MIPS32R5EB-NEXT: insert.w $w0[0], $2
5147 ; MIPS32R5EB-NEXT: insert.w $w0[1], $3
5148 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo(gv2i64)
5149 ; MIPS32R5EB-NEXT: insert.w $w0[2], $4
5150 ; MIPS32R5EB-NEXT: insert.w $w0[3], $5
5151 ; MIPS32R5EB-NEXT: st.w $w0, 0($1)
5152 ; MIPS32R5EB-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
5153 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 40
5154 ; MIPS32R5EB-NEXT: jr $ra
5155 ; MIPS32R5EB-NEXT: nop
5157 ; MIPS64R5-LABEL: calli64_2:
5158 ; MIPS64R5: # %bb.0: # %entry
5159 ; MIPS64R5-NEXT: daddiu $sp, $sp, -16
5160 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 16
5161 ; MIPS64R5-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5162 ; MIPS64R5-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5163 ; MIPS64R5-NEXT: .cfi_offset 31, -8
5164 ; MIPS64R5-NEXT: .cfi_offset 28, -16
5165 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(calli64_2)))
5166 ; MIPS64R5-NEXT: daddu $1, $1, $25
5167 ; MIPS64R5-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calli64_2)))
5168 ; MIPS64R5-NEXT: ld $25, %call16(i64_2)($gp)
5169 ; MIPS64R5-NEXT: daddiu $4, $zero, 6
5170 ; MIPS64R5-NEXT: daddiu $5, $zero, 7
5171 ; MIPS64R5-NEXT: daddiu $6, $zero, 12
5172 ; MIPS64R5-NEXT: daddiu $7, $zero, 8
5173 ; MIPS64R5-NEXT: jalr $25
5174 ; MIPS64R5-NEXT: nop
5175 ; MIPS64R5-NEXT: insert.d $w0[0], $2
5176 ; MIPS64R5-NEXT: insert.d $w0[1], $3
5177 ; MIPS64R5-NEXT: ld $1, %got_disp(gv2i64)($gp)
5178 ; MIPS64R5-NEXT: st.d $w0, 0($1)
5179 ; MIPS64R5-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5180 ; MIPS64R5-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5181 ; MIPS64R5-NEXT: daddiu $sp, $sp, 16
5182 ; MIPS64R5-NEXT: jr $ra
5183 ; MIPS64R5-NEXT: nop
5185 ; MIPS32EL-LABEL: calli64_2:
5186 ; MIPS32EL: # %bb.0: # %entry
5187 ; MIPS32EL-NEXT: addiu $sp, $sp, -40
5188 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 40
5189 ; MIPS32EL-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
5190 ; MIPS32EL-NEXT: .cfi_offset 31, -4
5191 ; MIPS32EL-NEXT: addiu $1, $zero, 8
5192 ; MIPS32EL-NEXT: sw $1, 24($sp)
5193 ; MIPS32EL-NEXT: addiu $1, $zero, 12
5194 ; MIPS32EL-NEXT: sw $1, 16($sp)
5195 ; MIPS32EL-NEXT: sw $zero, 28($sp)
5196 ; MIPS32EL-NEXT: sw $zero, 20($sp)
5197 ; MIPS32EL-NEXT: addiu $4, $zero, 6
5198 ; MIPS32EL-NEXT: addiu $5, $zero, 0
5199 ; MIPS32EL-NEXT: addiu $6, $zero, 7
5200 ; MIPS32EL-NEXT: addiu $7, $zero, 0
5201 ; MIPS32EL-NEXT: jal i64_2
5202 ; MIPS32EL-NEXT: nop
5203 ; MIPS32EL-NEXT: lui $1, %hi(gv2i64)
5204 ; MIPS32EL-NEXT: addiu $6, $1, %lo(gv2i64)
5205 ; MIPS32EL-NEXT: sw $5, 12($6)
5206 ; MIPS32EL-NEXT: sw $4, 8($6)
5207 ; MIPS32EL-NEXT: sw $3, 4($6)
5208 ; MIPS32EL-NEXT: sw $2, %lo(gv2i64)($1)
5209 ; MIPS32EL-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
5210 ; MIPS32EL-NEXT: addiu $sp, $sp, 40
5211 ; MIPS32EL-NEXT: jr $ra
5212 ; MIPS32EL-NEXT: nop
5214 ; MIPS32R5EL-LABEL: calli64_2:
5215 ; MIPS32R5EL: # %bb.0: # %entry
5216 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -40
5217 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 40
5218 ; MIPS32R5EL-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
5219 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
5220 ; MIPS32R5EL-NEXT: lui $1, %hi($CPI36_0)
5221 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo($CPI36_0)
5222 ; MIPS32R5EL-NEXT: ld.w $w0, 0($1)
5223 ; MIPS32R5EL-NEXT: copy_s.w $4, $w0[0]
5224 ; MIPS32R5EL-NEXT: copy_s.w $6, $w0[2]
5225 ; MIPS32R5EL-NEXT: lui $1, %hi($CPI36_1)
5226 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo($CPI36_1)
5227 ; MIPS32R5EL-NEXT: ld.w $w0, 0($1)
5228 ; MIPS32R5EL-NEXT: copy_s.w $1, $w0[0]
5229 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[2]
5230 ; MIPS32R5EL-NEXT: sw $2, 24($sp)
5231 ; MIPS32R5EL-NEXT: sw $1, 16($sp)
5232 ; MIPS32R5EL-NEXT: sw $zero, 28($sp)
5233 ; MIPS32R5EL-NEXT: sw $zero, 20($sp)
5234 ; MIPS32R5EL-NEXT: addiu $5, $zero, 0
5235 ; MIPS32R5EL-NEXT: addiu $7, $zero, 0
5236 ; MIPS32R5EL-NEXT: jal i64_2
5237 ; MIPS32R5EL-NEXT: nop
5238 ; MIPS32R5EL-NEXT: lui $1, %hi(gv2i64)
5239 ; MIPS32R5EL-NEXT: insert.w $w0[0], $2
5240 ; MIPS32R5EL-NEXT: insert.w $w0[1], $3
5241 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo(gv2i64)
5242 ; MIPS32R5EL-NEXT: insert.w $w0[2], $4
5243 ; MIPS32R5EL-NEXT: insert.w $w0[3], $5
5244 ; MIPS32R5EL-NEXT: st.w $w0, 0($1)
5245 ; MIPS32R5EL-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
5246 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 40
5247 ; MIPS32R5EL-NEXT: jr $ra
5248 ; MIPS32R5EL-NEXT: nop
5250 %0 = call <2 x i64> @i64_2(<2 x i64> <i64 6, i64 7>, <2 x i64> <i64 12, i64 8>)
5251 store <2 x i64> %0, ptr @gv2i64
5255 declare <2 x float> @float2_extern(<2 x float>, <2 x float>)
5256 declare <4 x float> @float4_extern(<4 x float>, <4 x float>)
5257 declare <2 x double> @double2_extern(<2 x double>, <2 x double>)
5259 define void @callfloat_2() {
5260 ; MIPS32-LABEL: callfloat_2:
5261 ; MIPS32: # %bb.0: # %entry
5262 ; MIPS32-NEXT: addiu $sp, $sp, -40
5263 ; MIPS32-NEXT: .cfi_def_cfa_offset 40
5264 ; MIPS32-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
5265 ; MIPS32-NEXT: .cfi_offset 31, -4
5266 ; MIPS32-NEXT: lui $1, 16736
5267 ; MIPS32-NEXT: sw $1, 20($sp)
5268 ; MIPS32-NEXT: lui $1, 16704
5269 ; MIPS32-NEXT: sw $1, 16($sp)
5270 ; MIPS32-NEXT: addiu $4, $sp, 24
5271 ; MIPS32-NEXT: addiu $6, $zero, 0
5272 ; MIPS32-NEXT: lui $7, 49024
5273 ; MIPS32-NEXT: jal float2_extern
5275 ; MIPS32-NEXT: lui $1, %hi(gv2f32)
5276 ; MIPS32-NEXT: addiu $2, $1, %lo(gv2f32)
5277 ; MIPS32-NEXT: lwc1 $f0, 28($sp)
5278 ; MIPS32-NEXT: swc1 $f0, 4($2)
5279 ; MIPS32-NEXT: lwc1 $f0, 24($sp)
5280 ; MIPS32-NEXT: swc1 $f0, %lo(gv2f32)($1)
5281 ; MIPS32-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
5282 ; MIPS32-NEXT: addiu $sp, $sp, 40
5283 ; MIPS32-NEXT: jr $ra
5286 ; MIPS64EB-LABEL: callfloat_2:
5287 ; MIPS64EB: # %bb.0: # %entry
5288 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
5289 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
5290 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5291 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5292 ; MIPS64EB-NEXT: .cfi_offset 31, -8
5293 ; MIPS64EB-NEXT: .cfi_offset 28, -16
5294 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(callfloat_2)))
5295 ; MIPS64EB-NEXT: daddu $1, $1, $25
5296 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(callfloat_2)))
5297 ; MIPS64EB-NEXT: daddiu $1, $zero, 383
5298 ; MIPS64EB-NEXT: dsll $4, $1, 23
5299 ; MIPS64EB-NEXT: daddiu $1, $zero, 261
5300 ; MIPS64EB-NEXT: dsll $1, $1, 33
5301 ; MIPS64EB-NEXT: daddiu $1, $1, 523
5302 ; MIPS64EB-NEXT: dsll $5, $1, 21
5303 ; MIPS64EB-NEXT: ld $25, %call16(float2_extern)($gp)
5304 ; MIPS64EB-NEXT: jalr $25
5305 ; MIPS64EB-NEXT: nop
5306 ; MIPS64EB-NEXT: ld $1, %got_disp(gv2f32)($gp)
5307 ; MIPS64EB-NEXT: sd $2, 0($1)
5308 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5309 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5310 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
5311 ; MIPS64EB-NEXT: jr $ra
5312 ; MIPS64EB-NEXT: nop
5314 ; MIPS32R5-LABEL: callfloat_2:
5315 ; MIPS32R5: # %bb.0: # %entry
5316 ; MIPS32R5-NEXT: addiu $sp, $sp, -40
5317 ; MIPS32R5-NEXT: .cfi_def_cfa_offset 40
5318 ; MIPS32R5-NEXT: sw $ra, 36($sp) # 4-byte Folded Spill
5319 ; MIPS32R5-NEXT: .cfi_offset 31, -4
5320 ; MIPS32R5-NEXT: lui $1, 16736
5321 ; MIPS32R5-NEXT: sw $1, 20($sp)
5322 ; MIPS32R5-NEXT: lui $1, 16704
5323 ; MIPS32R5-NEXT: sw $1, 16($sp)
5324 ; MIPS32R5-NEXT: addiu $4, $sp, 24
5325 ; MIPS32R5-NEXT: addiu $6, $zero, 0
5326 ; MIPS32R5-NEXT: lui $7, 49024
5327 ; MIPS32R5-NEXT: jal float2_extern
5328 ; MIPS32R5-NEXT: nop
5329 ; MIPS32R5-NEXT: lui $1, %hi(gv2f32)
5330 ; MIPS32R5-NEXT: addiu $2, $1, %lo(gv2f32)
5331 ; MIPS32R5-NEXT: lwc1 $f0, 28($sp)
5332 ; MIPS32R5-NEXT: swc1 $f0, 4($2)
5333 ; MIPS32R5-NEXT: lwc1 $f0, 24($sp)
5334 ; MIPS32R5-NEXT: swc1 $f0, %lo(gv2f32)($1)
5335 ; MIPS32R5-NEXT: lw $ra, 36($sp) # 4-byte Folded Reload
5336 ; MIPS32R5-NEXT: addiu $sp, $sp, 40
5337 ; MIPS32R5-NEXT: jr $ra
5338 ; MIPS32R5-NEXT: nop
5340 ; MIPS64R5-LABEL: callfloat_2:
5341 ; MIPS64R5: # %bb.0: # %entry
5342 ; MIPS64R5-NEXT: daddiu $sp, $sp, -16
5343 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 16
5344 ; MIPS64R5-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5345 ; MIPS64R5-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5346 ; MIPS64R5-NEXT: .cfi_offset 31, -8
5347 ; MIPS64R5-NEXT: .cfi_offset 28, -16
5348 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(callfloat_2)))
5349 ; MIPS64R5-NEXT: daddu $1, $1, $25
5350 ; MIPS64R5-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(callfloat_2)))
5351 ; MIPS64R5-NEXT: ld $1, %got_page(.LCPI37_0)($gp)
5352 ; MIPS64R5-NEXT: daddiu $1, $1, %got_ofst(.LCPI37_0)
5353 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
5354 ; MIPS64R5-NEXT: copy_s.d $4, $w0[0]
5355 ; MIPS64R5-NEXT: ld $1, %got_page(.LCPI37_1)($gp)
5356 ; MIPS64R5-NEXT: daddiu $1, $1, %got_ofst(.LCPI37_1)
5357 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
5358 ; MIPS64R5-NEXT: copy_s.d $5, $w0[0]
5359 ; MIPS64R5-NEXT: ld $25, %call16(float2_extern)($gp)
5360 ; MIPS64R5-NEXT: jalr $25
5361 ; MIPS64R5-NEXT: nop
5362 ; MIPS64R5-NEXT: ld $1, %got_disp(gv2f32)($gp)
5363 ; MIPS64R5-NEXT: sd $2, 0($1)
5364 ; MIPS64R5-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5365 ; MIPS64R5-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5366 ; MIPS64R5-NEXT: daddiu $sp, $sp, 16
5367 ; MIPS64R5-NEXT: jr $ra
5368 ; MIPS64R5-NEXT: nop
5370 ; MIPS64EL-LABEL: callfloat_2:
5371 ; MIPS64EL: # %bb.0: # %entry
5372 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
5373 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
5374 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5375 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5376 ; MIPS64EL-NEXT: .cfi_offset 31, -8
5377 ; MIPS64EL-NEXT: .cfi_offset 28, -16
5378 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(callfloat_2)))
5379 ; MIPS64EL-NEXT: daddu $1, $1, $25
5380 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(callfloat_2)))
5381 ; MIPS64EL-NEXT: daddiu $1, $zero, 383
5382 ; MIPS64EL-NEXT: dsll $4, $1, 55
5383 ; MIPS64EL-NEXT: daddiu $1, $zero, 523
5384 ; MIPS64EL-NEXT: dsll $1, $1, 31
5385 ; MIPS64EL-NEXT: daddiu $1, $1, 261
5386 ; MIPS64EL-NEXT: dsll $5, $1, 22
5387 ; MIPS64EL-NEXT: ld $25, %call16(float2_extern)($gp)
5388 ; MIPS64EL-NEXT: jalr $25
5389 ; MIPS64EL-NEXT: nop
5390 ; MIPS64EL-NEXT: ld $1, %got_disp(gv2f32)($gp)
5391 ; MIPS64EL-NEXT: sd $2, 0($1)
5392 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5393 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5394 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
5395 ; MIPS64EL-NEXT: jr $ra
5396 ; MIPS64EL-NEXT: nop
5398 %0 = call <2 x float> @float2_extern(<2 x float> <float 0.0, float -1.0>, <2 x float> <float 12.0, float 14.0>)
5399 store <2 x float> %0, ptr @gv2f32
5403 define void @callfloat_4() {
5404 ; MIPS32-LABEL: callfloat_4:
5405 ; MIPS32: # %bb.0: # %entry
5406 ; MIPS32-NEXT: addiu $sp, $sp, -80
5407 ; MIPS32-NEXT: .cfi_def_cfa_offset 80
5408 ; MIPS32-NEXT: sw $ra, 76($sp) # 4-byte Folded Spill
5409 ; MIPS32-NEXT: sw $fp, 72($sp) # 4-byte Folded Spill
5410 ; MIPS32-NEXT: .cfi_offset 31, -4
5411 ; MIPS32-NEXT: .cfi_offset 30, -8
5412 ; MIPS32-NEXT: move $fp, $sp
5413 ; MIPS32-NEXT: .cfi_def_cfa_register 30
5414 ; MIPS32-NEXT: addiu $1, $zero, -16
5415 ; MIPS32-NEXT: and $sp, $sp, $1
5416 ; MIPS32-NEXT: lui $1, 16704
5417 ; MIPS32-NEXT: lui $2, 16736
5418 ; MIPS32-NEXT: lui $3, 16752
5419 ; MIPS32-NEXT: lui $4, 16768
5420 ; MIPS32-NEXT: sw $4, 36($sp)
5421 ; MIPS32-NEXT: sw $3, 32($sp)
5422 ; MIPS32-NEXT: sw $2, 28($sp)
5423 ; MIPS32-NEXT: sw $1, 24($sp)
5424 ; MIPS32-NEXT: lui $1, 16512
5425 ; MIPS32-NEXT: sw $1, 20($sp)
5426 ; MIPS32-NEXT: lui $1, 16384
5427 ; MIPS32-NEXT: sw $1, 16($sp)
5428 ; MIPS32-NEXT: addiu $4, $sp, 48
5429 ; MIPS32-NEXT: addiu $6, $zero, 0
5430 ; MIPS32-NEXT: lui $7, 49024
5431 ; MIPS32-NEXT: jal float4_extern
5433 ; MIPS32-NEXT: lui $1, %hi(gv4f32)
5434 ; MIPS32-NEXT: addiu $2, $1, %lo(gv4f32)
5435 ; MIPS32-NEXT: lwc1 $f0, 60($sp)
5436 ; MIPS32-NEXT: swc1 $f0, 12($2)
5437 ; MIPS32-NEXT: lwc1 $f0, 56($sp)
5438 ; MIPS32-NEXT: swc1 $f0, 8($2)
5439 ; MIPS32-NEXT: lwc1 $f0, 52($sp)
5440 ; MIPS32-NEXT: swc1 $f0, 4($2)
5441 ; MIPS32-NEXT: lwc1 $f0, 48($sp)
5442 ; MIPS32-NEXT: swc1 $f0, %lo(gv4f32)($1)
5443 ; MIPS32-NEXT: move $sp, $fp
5444 ; MIPS32-NEXT: lw $fp, 72($sp) # 4-byte Folded Reload
5445 ; MIPS32-NEXT: lw $ra, 76($sp) # 4-byte Folded Reload
5446 ; MIPS32-NEXT: addiu $sp, $sp, 80
5447 ; MIPS32-NEXT: jr $ra
5450 ; MIPS64EB-LABEL: callfloat_4:
5451 ; MIPS64EB: # %bb.0: # %entry
5452 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
5453 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
5454 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5455 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5456 ; MIPS64EB-NEXT: .cfi_offset 31, -8
5457 ; MIPS64EB-NEXT: .cfi_offset 28, -16
5458 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(callfloat_4)))
5459 ; MIPS64EB-NEXT: daddu $1, $1, $25
5460 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(callfloat_4)))
5461 ; MIPS64EB-NEXT: daddiu $1, $zero, 1
5462 ; MIPS64EB-NEXT: dsll $1, $1, 39
5463 ; MIPS64EB-NEXT: daddiu $1, $1, 129
5464 ; MIPS64EB-NEXT: daddiu $2, $zero, 261
5465 ; MIPS64EB-NEXT: dsll $2, $2, 33
5466 ; MIPS64EB-NEXT: daddiu $3, $zero, 383
5467 ; MIPS64EB-NEXT: dsll $4, $3, 23
5468 ; MIPS64EB-NEXT: dsll $5, $1, 23
5469 ; MIPS64EB-NEXT: daddiu $1, $2, 523
5470 ; MIPS64EB-NEXT: dsll $6, $1, 21
5471 ; MIPS64EB-NEXT: daddiu $1, $zero, 1047
5472 ; MIPS64EB-NEXT: dsll $1, $1, 29
5473 ; MIPS64EB-NEXT: daddiu $1, $1, 131
5474 ; MIPS64EB-NEXT: dsll $7, $1, 23
5475 ; MIPS64EB-NEXT: ld $25, %call16(float4_extern)($gp)
5476 ; MIPS64EB-NEXT: jalr $25
5477 ; MIPS64EB-NEXT: nop
5478 ; MIPS64EB-NEXT: ld $1, %got_disp(gv4f32)($gp)
5479 ; MIPS64EB-NEXT: sd $3, 8($1)
5480 ; MIPS64EB-NEXT: sd $2, 0($1)
5481 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5482 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5483 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
5484 ; MIPS64EB-NEXT: jr $ra
5485 ; MIPS64EB-NEXT: nop
5487 ; MIPS32R5-LABEL: callfloat_4:
5488 ; MIPS32R5: # %bb.0: # %entry
5489 ; MIPS32R5-NEXT: addiu $sp, $sp, -80
5490 ; MIPS32R5-NEXT: .cfi_def_cfa_offset 80
5491 ; MIPS32R5-NEXT: sw $ra, 76($sp) # 4-byte Folded Spill
5492 ; MIPS32R5-NEXT: sw $fp, 72($sp) # 4-byte Folded Spill
5493 ; MIPS32R5-NEXT: .cfi_offset 31, -4
5494 ; MIPS32R5-NEXT: .cfi_offset 30, -8
5495 ; MIPS32R5-NEXT: move $fp, $sp
5496 ; MIPS32R5-NEXT: .cfi_def_cfa_register 30
5497 ; MIPS32R5-NEXT: addiu $1, $zero, -16
5498 ; MIPS32R5-NEXT: and $sp, $sp, $1
5499 ; MIPS32R5-NEXT: lui $1, %hi($CPI38_0)
5500 ; MIPS32R5-NEXT: addiu $1, $1, %lo($CPI38_0)
5501 ; MIPS32R5-NEXT: ld.w $w0, 0($1)
5502 ; MIPS32R5-NEXT: copy_s.w $7, $w0[1]
5503 ; MIPS32R5-NEXT: copy_s.w $1, $w0[2]
5504 ; MIPS32R5-NEXT: copy_s.w $2, $w0[3]
5505 ; MIPS32R5-NEXT: lui $3, %hi($CPI38_1)
5506 ; MIPS32R5-NEXT: addiu $3, $3, %lo($CPI38_1)
5507 ; MIPS32R5-NEXT: ld.w $w0, 0($3)
5508 ; MIPS32R5-NEXT: copy_s.w $3, $w0[0]
5509 ; MIPS32R5-NEXT: copy_s.w $4, $w0[1]
5510 ; MIPS32R5-NEXT: copy_s.w $5, $w0[2]
5511 ; MIPS32R5-NEXT: copy_s.w $6, $w0[3]
5512 ; MIPS32R5-NEXT: sw $6, 36($sp)
5513 ; MIPS32R5-NEXT: sw $5, 32($sp)
5514 ; MIPS32R5-NEXT: sw $4, 28($sp)
5515 ; MIPS32R5-NEXT: sw $3, 24($sp)
5516 ; MIPS32R5-NEXT: sw $2, 20($sp)
5517 ; MIPS32R5-NEXT: sw $1, 16($sp)
5518 ; MIPS32R5-NEXT: addiu $4, $sp, 48
5519 ; MIPS32R5-NEXT: addiu $6, $zero, 0
5520 ; MIPS32R5-NEXT: jal float4_extern
5521 ; MIPS32R5-NEXT: nop
5522 ; MIPS32R5-NEXT: lui $1, %hi(gv4f32)
5523 ; MIPS32R5-NEXT: addiu $1, $1, %lo(gv4f32)
5524 ; MIPS32R5-NEXT: ld.w $w0, 48($sp)
5525 ; MIPS32R5-NEXT: st.w $w0, 0($1)
5526 ; MIPS32R5-NEXT: move $sp, $fp
5527 ; MIPS32R5-NEXT: lw $fp, 72($sp) # 4-byte Folded Reload
5528 ; MIPS32R5-NEXT: lw $ra, 76($sp) # 4-byte Folded Reload
5529 ; MIPS32R5-NEXT: addiu $sp, $sp, 80
5530 ; MIPS32R5-NEXT: jr $ra
5531 ; MIPS32R5-NEXT: nop
5533 ; MIPS64R5-LABEL: callfloat_4:
5534 ; MIPS64R5: # %bb.0: # %entry
5535 ; MIPS64R5-NEXT: daddiu $sp, $sp, -16
5536 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 16
5537 ; MIPS64R5-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5538 ; MIPS64R5-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5539 ; MIPS64R5-NEXT: .cfi_offset 31, -8
5540 ; MIPS64R5-NEXT: .cfi_offset 28, -16
5541 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(callfloat_4)))
5542 ; MIPS64R5-NEXT: daddu $1, $1, $25
5543 ; MIPS64R5-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(callfloat_4)))
5544 ; MIPS64R5-NEXT: ld $1, %got_page(.LCPI38_0)($gp)
5545 ; MIPS64R5-NEXT: daddiu $1, $1, %got_ofst(.LCPI38_0)
5546 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
5547 ; MIPS64R5-NEXT: copy_s.d $4, $w0[0]
5548 ; MIPS64R5-NEXT: copy_s.d $5, $w0[1]
5549 ; MIPS64R5-NEXT: ld $1, %got_page(.LCPI38_1)($gp)
5550 ; MIPS64R5-NEXT: daddiu $1, $1, %got_ofst(.LCPI38_1)
5551 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
5552 ; MIPS64R5-NEXT: copy_s.d $6, $w0[0]
5553 ; MIPS64R5-NEXT: copy_s.d $7, $w0[1]
5554 ; MIPS64R5-NEXT: ld $25, %call16(float4_extern)($gp)
5555 ; MIPS64R5-NEXT: jalr $25
5556 ; MIPS64R5-NEXT: nop
5557 ; MIPS64R5-NEXT: insert.d $w0[0], $2
5558 ; MIPS64R5-NEXT: insert.d $w0[1], $3
5559 ; MIPS64R5-NEXT: ld $1, %got_disp(gv4f32)($gp)
5560 ; MIPS64R5-NEXT: st.d $w0, 0($1)
5561 ; MIPS64R5-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5562 ; MIPS64R5-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5563 ; MIPS64R5-NEXT: daddiu $sp, $sp, 16
5564 ; MIPS64R5-NEXT: jr $ra
5565 ; MIPS64R5-NEXT: nop
5567 ; MIPS64EL-LABEL: callfloat_4:
5568 ; MIPS64EL: # %bb.0: # %entry
5569 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
5570 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
5571 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5572 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5573 ; MIPS64EL-NEXT: .cfi_offset 31, -8
5574 ; MIPS64EL-NEXT: .cfi_offset 28, -16
5575 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(callfloat_4)))
5576 ; MIPS64EL-NEXT: daddu $1, $1, $25
5577 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(callfloat_4)))
5578 ; MIPS64EL-NEXT: daddiu $1, $zero, 129
5579 ; MIPS64EL-NEXT: dsll $1, $1, 25
5580 ; MIPS64EL-NEXT: daddiu $1, $1, 1
5581 ; MIPS64EL-NEXT: daddiu $2, $zero, 523
5582 ; MIPS64EL-NEXT: dsll $2, $2, 31
5583 ; MIPS64EL-NEXT: daddiu $3, $zero, 383
5584 ; MIPS64EL-NEXT: dsll $4, $3, 55
5585 ; MIPS64EL-NEXT: dsll $5, $1, 30
5586 ; MIPS64EL-NEXT: daddiu $1, $2, 261
5587 ; MIPS64EL-NEXT: dsll $6, $1, 22
5588 ; MIPS64EL-NEXT: daddiu $1, $zero, 131
5589 ; MIPS64EL-NEXT: dsll $1, $1, 35
5590 ; MIPS64EL-NEXT: daddiu $1, $1, 1047
5591 ; MIPS64EL-NEXT: dsll $7, $1, 20
5592 ; MIPS64EL-NEXT: ld $25, %call16(float4_extern)($gp)
5593 ; MIPS64EL-NEXT: jalr $25
5594 ; MIPS64EL-NEXT: nop
5595 ; MIPS64EL-NEXT: ld $1, %got_disp(gv4f32)($gp)
5596 ; MIPS64EL-NEXT: sd $3, 8($1)
5597 ; MIPS64EL-NEXT: sd $2, 0($1)
5598 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5599 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5600 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
5601 ; MIPS64EL-NEXT: jr $ra
5602 ; MIPS64EL-NEXT: nop
5604 %0 = call <4 x float> @float4_extern(<4 x float> <float 0.0, float -1.0, float 2.0, float 4.0>, <4 x float> <float 12.0, float 14.0, float 15.0, float 16.0>)
5605 store <4 x float> %0, ptr @gv4f32
5609 define void @calldouble_2() {
5610 ; MIPS32EB-LABEL: calldouble_2:
5611 ; MIPS32EB: # %bb.0: # %entry
5612 ; MIPS32EB-NEXT: addiu $sp, $sp, -80
5613 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 80
5614 ; MIPS32EB-NEXT: sw $ra, 76($sp) # 4-byte Folded Spill
5615 ; MIPS32EB-NEXT: sw $fp, 72($sp) # 4-byte Folded Spill
5616 ; MIPS32EB-NEXT: .cfi_offset 31, -4
5617 ; MIPS32EB-NEXT: .cfi_offset 30, -8
5618 ; MIPS32EB-NEXT: move $fp, $sp
5619 ; MIPS32EB-NEXT: .cfi_def_cfa_register 30
5620 ; MIPS32EB-NEXT: addiu $1, $zero, -16
5621 ; MIPS32EB-NEXT: and $sp, $sp, $1
5622 ; MIPS32EB-NEXT: lui $1, 16424
5623 ; MIPS32EB-NEXT: lui $2, 16428
5624 ; MIPS32EB-NEXT: sw $2, 32($sp)
5625 ; MIPS32EB-NEXT: sw $1, 24($sp)
5626 ; MIPS32EB-NEXT: lui $1, 49136
5627 ; MIPS32EB-NEXT: sw $1, 16($sp)
5628 ; MIPS32EB-NEXT: sw $zero, 36($sp)
5629 ; MIPS32EB-NEXT: sw $zero, 28($sp)
5630 ; MIPS32EB-NEXT: sw $zero, 20($sp)
5631 ; MIPS32EB-NEXT: addiu $4, $sp, 48
5632 ; MIPS32EB-NEXT: addiu $6, $zero, 0
5633 ; MIPS32EB-NEXT: addiu $7, $zero, 0
5634 ; MIPS32EB-NEXT: jal double2_extern
5635 ; MIPS32EB-NEXT: nop
5636 ; MIPS32EB-NEXT: lui $1, %hi(gv2f64)
5637 ; MIPS32EB-NEXT: addiu $2, $1, %lo(gv2f64)
5638 ; MIPS32EB-NEXT: ldc1 $f0, 56($sp)
5639 ; MIPS32EB-NEXT: sdc1 $f0, 8($2)
5640 ; MIPS32EB-NEXT: ldc1 $f0, 48($sp)
5641 ; MIPS32EB-NEXT: sdc1 $f0, %lo(gv2f64)($1)
5642 ; MIPS32EB-NEXT: move $sp, $fp
5643 ; MIPS32EB-NEXT: lw $fp, 72($sp) # 4-byte Folded Reload
5644 ; MIPS32EB-NEXT: lw $ra, 76($sp) # 4-byte Folded Reload
5645 ; MIPS32EB-NEXT: addiu $sp, $sp, 80
5646 ; MIPS32EB-NEXT: jr $ra
5647 ; MIPS32EB-NEXT: nop
5649 ; MIPS64-LABEL: calldouble_2:
5650 ; MIPS64: # %bb.0: # %entry
5651 ; MIPS64-NEXT: daddiu $sp, $sp, -16
5652 ; MIPS64-NEXT: .cfi_def_cfa_offset 16
5653 ; MIPS64-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5654 ; MIPS64-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5655 ; MIPS64-NEXT: .cfi_offset 31, -8
5656 ; MIPS64-NEXT: .cfi_offset 28, -16
5657 ; MIPS64-NEXT: lui $1, %hi(%neg(%gp_rel(calldouble_2)))
5658 ; MIPS64-NEXT: daddu $1, $1, $25
5659 ; MIPS64-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calldouble_2)))
5660 ; MIPS64-NEXT: daddiu $1, $zero, 3071
5661 ; MIPS64-NEXT: dsll $5, $1, 52
5662 ; MIPS64-NEXT: daddiu $1, $zero, 2053
5663 ; MIPS64-NEXT: dsll $6, $1, 51
5664 ; MIPS64-NEXT: daddiu $1, $zero, 4107
5665 ; MIPS64-NEXT: dsll $7, $1, 50
5666 ; MIPS64-NEXT: ld $25, %call16(double2_extern)($gp)
5667 ; MIPS64-NEXT: daddiu $4, $zero, 0
5668 ; MIPS64-NEXT: jalr $25
5670 ; MIPS64-NEXT: ld $1, %got_disp(gv2f64)($gp)
5671 ; MIPS64-NEXT: sd $3, 8($1)
5672 ; MIPS64-NEXT: sd $2, 0($1)
5673 ; MIPS64-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5674 ; MIPS64-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5675 ; MIPS64-NEXT: daddiu $sp, $sp, 16
5676 ; MIPS64-NEXT: jr $ra
5679 ; MIPS32R5EB-LABEL: calldouble_2:
5680 ; MIPS32R5EB: # %bb.0: # %entry
5681 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -80
5682 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 80
5683 ; MIPS32R5EB-NEXT: sw $ra, 76($sp) # 4-byte Folded Spill
5684 ; MIPS32R5EB-NEXT: sw $fp, 72($sp) # 4-byte Folded Spill
5685 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
5686 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
5687 ; MIPS32R5EB-NEXT: move $fp, $sp
5688 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
5689 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
5690 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
5691 ; MIPS32R5EB-NEXT: lui $1, %hi($CPI39_0)
5692 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo($CPI39_0)
5693 ; MIPS32R5EB-NEXT: ld.w $w0, 0($1)
5694 ; MIPS32R5EB-NEXT: copy_s.w $1, $w0[2]
5695 ; MIPS32R5EB-NEXT: lui $2, %hi($CPI39_1)
5696 ; MIPS32R5EB-NEXT: addiu $2, $2, %lo($CPI39_1)
5697 ; MIPS32R5EB-NEXT: ld.w $w0, 0($2)
5698 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[0]
5699 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[2]
5700 ; MIPS32R5EB-NEXT: sw $3, 32($sp)
5701 ; MIPS32R5EB-NEXT: sw $2, 24($sp)
5702 ; MIPS32R5EB-NEXT: sw $1, 16($sp)
5703 ; MIPS32R5EB-NEXT: sw $zero, 36($sp)
5704 ; MIPS32R5EB-NEXT: sw $zero, 28($sp)
5705 ; MIPS32R5EB-NEXT: sw $zero, 20($sp)
5706 ; MIPS32R5EB-NEXT: addiu $4, $sp, 48
5707 ; MIPS32R5EB-NEXT: addiu $6, $zero, 0
5708 ; MIPS32R5EB-NEXT: addiu $7, $zero, 0
5709 ; MIPS32R5EB-NEXT: jal double2_extern
5710 ; MIPS32R5EB-NEXT: nop
5711 ; MIPS32R5EB-NEXT: lui $1, %hi(gv2f64)
5712 ; MIPS32R5EB-NEXT: addiu $1, $1, %lo(gv2f64)
5713 ; MIPS32R5EB-NEXT: ld.d $w0, 48($sp)
5714 ; MIPS32R5EB-NEXT: st.d $w0, 0($1)
5715 ; MIPS32R5EB-NEXT: move $sp, $fp
5716 ; MIPS32R5EB-NEXT: lw $fp, 72($sp) # 4-byte Folded Reload
5717 ; MIPS32R5EB-NEXT: lw $ra, 76($sp) # 4-byte Folded Reload
5718 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 80
5719 ; MIPS32R5EB-NEXT: jr $ra
5720 ; MIPS32R5EB-NEXT: nop
5722 ; MIPS64R5-LABEL: calldouble_2:
5723 ; MIPS64R5: # %bb.0: # %entry
5724 ; MIPS64R5-NEXT: daddiu $sp, $sp, -16
5725 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 16
5726 ; MIPS64R5-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
5727 ; MIPS64R5-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
5728 ; MIPS64R5-NEXT: .cfi_offset 31, -8
5729 ; MIPS64R5-NEXT: .cfi_offset 28, -16
5730 ; MIPS64R5-NEXT: lui $1, %hi(%neg(%gp_rel(calldouble_2)))
5731 ; MIPS64R5-NEXT: daddu $1, $1, $25
5732 ; MIPS64R5-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(calldouble_2)))
5733 ; MIPS64R5-NEXT: ld $1, %got_page(.LCPI39_0)($gp)
5734 ; MIPS64R5-NEXT: daddiu $1, $1, %got_ofst(.LCPI39_0)
5735 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
5736 ; MIPS64R5-NEXT: copy_s.d $5, $w0[1]
5737 ; MIPS64R5-NEXT: ld $1, %got_page(.LCPI39_1)($gp)
5738 ; MIPS64R5-NEXT: daddiu $1, $1, %got_ofst(.LCPI39_1)
5739 ; MIPS64R5-NEXT: ld.d $w0, 0($1)
5740 ; MIPS64R5-NEXT: copy_s.d $6, $w0[0]
5741 ; MIPS64R5-NEXT: copy_s.d $7, $w0[1]
5742 ; MIPS64R5-NEXT: ld $25, %call16(double2_extern)($gp)
5743 ; MIPS64R5-NEXT: daddiu $4, $zero, 0
5744 ; MIPS64R5-NEXT: jalr $25
5745 ; MIPS64R5-NEXT: nop
5746 ; MIPS64R5-NEXT: insert.d $w0[0], $2
5747 ; MIPS64R5-NEXT: insert.d $w0[1], $3
5748 ; MIPS64R5-NEXT: ld $1, %got_disp(gv2f64)($gp)
5749 ; MIPS64R5-NEXT: st.d $w0, 0($1)
5750 ; MIPS64R5-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
5751 ; MIPS64R5-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
5752 ; MIPS64R5-NEXT: daddiu $sp, $sp, 16
5753 ; MIPS64R5-NEXT: jr $ra
5754 ; MIPS64R5-NEXT: nop
5756 ; MIPS32EL-LABEL: calldouble_2:
5757 ; MIPS32EL: # %bb.0: # %entry
5758 ; MIPS32EL-NEXT: addiu $sp, $sp, -80
5759 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 80
5760 ; MIPS32EL-NEXT: sw $ra, 76($sp) # 4-byte Folded Spill
5761 ; MIPS32EL-NEXT: sw $fp, 72($sp) # 4-byte Folded Spill
5762 ; MIPS32EL-NEXT: .cfi_offset 31, -4
5763 ; MIPS32EL-NEXT: .cfi_offset 30, -8
5764 ; MIPS32EL-NEXT: move $fp, $sp
5765 ; MIPS32EL-NEXT: .cfi_def_cfa_register 30
5766 ; MIPS32EL-NEXT: addiu $1, $zero, -16
5767 ; MIPS32EL-NEXT: and $sp, $sp, $1
5768 ; MIPS32EL-NEXT: lui $1, 16424
5769 ; MIPS32EL-NEXT: lui $2, 16428
5770 ; MIPS32EL-NEXT: sw $2, 36($sp)
5771 ; MIPS32EL-NEXT: sw $1, 28($sp)
5772 ; MIPS32EL-NEXT: lui $1, 49136
5773 ; MIPS32EL-NEXT: sw $1, 20($sp)
5774 ; MIPS32EL-NEXT: sw $zero, 32($sp)
5775 ; MIPS32EL-NEXT: sw $zero, 24($sp)
5776 ; MIPS32EL-NEXT: sw $zero, 16($sp)
5777 ; MIPS32EL-NEXT: addiu $4, $sp, 48
5778 ; MIPS32EL-NEXT: addiu $6, $zero, 0
5779 ; MIPS32EL-NEXT: addiu $7, $zero, 0
5780 ; MIPS32EL-NEXT: jal double2_extern
5781 ; MIPS32EL-NEXT: nop
5782 ; MIPS32EL-NEXT: lui $1, %hi(gv2f64)
5783 ; MIPS32EL-NEXT: addiu $2, $1, %lo(gv2f64)
5784 ; MIPS32EL-NEXT: ldc1 $f0, 56($sp)
5785 ; MIPS32EL-NEXT: sdc1 $f0, 8($2)
5786 ; MIPS32EL-NEXT: ldc1 $f0, 48($sp)
5787 ; MIPS32EL-NEXT: sdc1 $f0, %lo(gv2f64)($1)
5788 ; MIPS32EL-NEXT: move $sp, $fp
5789 ; MIPS32EL-NEXT: lw $fp, 72($sp) # 4-byte Folded Reload
5790 ; MIPS32EL-NEXT: lw $ra, 76($sp) # 4-byte Folded Reload
5791 ; MIPS32EL-NEXT: addiu $sp, $sp, 80
5792 ; MIPS32EL-NEXT: jr $ra
5793 ; MIPS32EL-NEXT: nop
5795 ; MIPS32R5EL-LABEL: calldouble_2:
5796 ; MIPS32R5EL: # %bb.0: # %entry
5797 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -80
5798 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 80
5799 ; MIPS32R5EL-NEXT: sw $ra, 76($sp) # 4-byte Folded Spill
5800 ; MIPS32R5EL-NEXT: sw $fp, 72($sp) # 4-byte Folded Spill
5801 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
5802 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
5803 ; MIPS32R5EL-NEXT: move $fp, $sp
5804 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
5805 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
5806 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
5807 ; MIPS32R5EL-NEXT: lui $1, %hi($CPI39_0)
5808 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo($CPI39_0)
5809 ; MIPS32R5EL-NEXT: ld.w $w0, 0($1)
5810 ; MIPS32R5EL-NEXT: copy_s.w $1, $w0[3]
5811 ; MIPS32R5EL-NEXT: lui $2, %hi($CPI39_1)
5812 ; MIPS32R5EL-NEXT: addiu $2, $2, %lo($CPI39_1)
5813 ; MIPS32R5EL-NEXT: ld.w $w0, 0($2)
5814 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[1]
5815 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[3]
5816 ; MIPS32R5EL-NEXT: sw $3, 36($sp)
5817 ; MIPS32R5EL-NEXT: sw $2, 28($sp)
5818 ; MIPS32R5EL-NEXT: sw $1, 20($sp)
5819 ; MIPS32R5EL-NEXT: sw $zero, 32($sp)
5820 ; MIPS32R5EL-NEXT: sw $zero, 24($sp)
5821 ; MIPS32R5EL-NEXT: sw $zero, 16($sp)
5822 ; MIPS32R5EL-NEXT: addiu $4, $sp, 48
5823 ; MIPS32R5EL-NEXT: addiu $6, $zero, 0
5824 ; MIPS32R5EL-NEXT: addiu $7, $zero, 0
5825 ; MIPS32R5EL-NEXT: jal double2_extern
5826 ; MIPS32R5EL-NEXT: nop
5827 ; MIPS32R5EL-NEXT: lui $1, %hi(gv2f64)
5828 ; MIPS32R5EL-NEXT: addiu $1, $1, %lo(gv2f64)
5829 ; MIPS32R5EL-NEXT: ld.d $w0, 48($sp)
5830 ; MIPS32R5EL-NEXT: st.d $w0, 0($1)
5831 ; MIPS32R5EL-NEXT: move $sp, $fp
5832 ; MIPS32R5EL-NEXT: lw $fp, 72($sp) # 4-byte Folded Reload
5833 ; MIPS32R5EL-NEXT: lw $ra, 76($sp) # 4-byte Folded Reload
5834 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 80
5835 ; MIPS32R5EL-NEXT: jr $ra
5836 ; MIPS32R5EL-NEXT: nop
5838 %0 = call <2 x double> @double2_extern(<2 x double> <double 0.0, double -1.0>, <2 x double> <double 12.0, double 14.0>)
5839 store <2 x double> %0, ptr @gv2f64
5843 ; The mixed tests show that due to alignment requirements, $5 is not used
5844 ; in argument passing.
5846 define float @mixed_i8(<2 x float> %a, i8 %b, <2 x float> %c) {
5847 ; MIPS32-LABEL: mixed_i8:
5848 ; MIPS32: # %bb.0: # %entry
5849 ; MIPS32-NEXT: mtc1 $5, $f0
5850 ; MIPS32-NEXT: andi $1, $6, 255
5851 ; MIPS32-NEXT: mtc1 $1, $f1
5852 ; MIPS32-NEXT: cvt.s.w $f1, $f1
5853 ; MIPS32-NEXT: add.s $f0, $f1, $f0
5854 ; MIPS32-NEXT: lwc1 $f2, 20($sp)
5855 ; MIPS32-NEXT: add.s $f0, $f0, $f2
5856 ; MIPS32-NEXT: mtc1 $4, $f2
5857 ; MIPS32-NEXT: add.s $f1, $f1, $f2
5858 ; MIPS32-NEXT: lwc1 $f2, 16($sp)
5859 ; MIPS32-NEXT: add.s $f1, $f1, $f2
5860 ; MIPS32-NEXT: add.s $f0, $f1, $f0
5861 ; MIPS32-NEXT: jr $ra
5864 ; MIPS64EB-LABEL: mixed_i8:
5865 ; MIPS64EB: # %bb.0: # %entry
5866 ; MIPS64EB-NEXT: sll $1, $4, 0
5867 ; MIPS64EB-NEXT: mtc1 $1, $f0
5868 ; MIPS64EB-NEXT: sll $1, $5, 0
5869 ; MIPS64EB-NEXT: andi $1, $1, 255
5870 ; MIPS64EB-NEXT: mtc1 $1, $f1
5871 ; MIPS64EB-NEXT: cvt.s.w $f1, $f1
5872 ; MIPS64EB-NEXT: add.s $f0, $f1, $f0
5873 ; MIPS64EB-NEXT: dsrl $1, $4, 32
5874 ; MIPS64EB-NEXT: sll $1, $1, 0
5875 ; MIPS64EB-NEXT: sll $2, $6, 0
5876 ; MIPS64EB-NEXT: mtc1 $2, $f2
5877 ; MIPS64EB-NEXT: add.s $f0, $f0, $f2
5878 ; MIPS64EB-NEXT: mtc1 $1, $f2
5879 ; MIPS64EB-NEXT: add.s $f1, $f1, $f2
5880 ; MIPS64EB-NEXT: dsrl $1, $6, 32
5881 ; MIPS64EB-NEXT: sll $1, $1, 0
5882 ; MIPS64EB-NEXT: mtc1 $1, $f2
5883 ; MIPS64EB-NEXT: add.s $f1, $f1, $f2
5884 ; MIPS64EB-NEXT: add.s $f0, $f1, $f0
5885 ; MIPS64EB-NEXT: jr $ra
5886 ; MIPS64EB-NEXT: nop
5888 ; MIPS32R5-LABEL: mixed_i8:
5889 ; MIPS32R5: # %bb.0: # %entry
5890 ; MIPS32R5-NEXT: addiu $sp, $sp, -64
5891 ; MIPS32R5-NEXT: .cfi_def_cfa_offset 64
5892 ; MIPS32R5-NEXT: sw $ra, 60($sp) # 4-byte Folded Spill
5893 ; MIPS32R5-NEXT: sw $fp, 56($sp) # 4-byte Folded Spill
5894 ; MIPS32R5-NEXT: .cfi_offset 31, -4
5895 ; MIPS32R5-NEXT: .cfi_offset 30, -8
5896 ; MIPS32R5-NEXT: move $fp, $sp
5897 ; MIPS32R5-NEXT: .cfi_def_cfa_register 30
5898 ; MIPS32R5-NEXT: addiu $1, $zero, -16
5899 ; MIPS32R5-NEXT: and $sp, $sp, $1
5900 ; MIPS32R5-NEXT: andi $1, $6, 255
5901 ; MIPS32R5-NEXT: mtc1 $1, $f0
5902 ; MIPS32R5-NEXT: cvt.s.w $f0, $f0
5903 ; MIPS32R5-NEXT: swc1 $f0, 36($sp)
5904 ; MIPS32R5-NEXT: swc1 $f0, 32($sp)
5905 ; MIPS32R5-NEXT: sw $5, 4($sp)
5906 ; MIPS32R5-NEXT: sw $4, 0($sp)
5907 ; MIPS32R5-NEXT: ld.w $w0, 0($sp)
5908 ; MIPS32R5-NEXT: ld.w $w1, 32($sp)
5909 ; MIPS32R5-NEXT: fadd.w $w0, $w1, $w0
5910 ; MIPS32R5-NEXT: lw $1, 84($fp)
5911 ; MIPS32R5-NEXT: sw $1, 20($sp)
5912 ; MIPS32R5-NEXT: lw $1, 80($fp)
5913 ; MIPS32R5-NEXT: sw $1, 16($sp)
5914 ; MIPS32R5-NEXT: ld.w $w1, 16($sp)
5915 ; MIPS32R5-NEXT: fadd.w $w0, $w0, $w1
5916 ; MIPS32R5-NEXT: splati.w $w1, $w0[1]
5917 ; MIPS32R5-NEXT: add.s $f0, $f0, $f1
5918 ; MIPS32R5-NEXT: move $sp, $fp
5919 ; MIPS32R5-NEXT: lw $fp, 56($sp) # 4-byte Folded Reload
5920 ; MIPS32R5-NEXT: lw $ra, 60($sp) # 4-byte Folded Reload
5921 ; MIPS32R5-NEXT: addiu $sp, $sp, 64
5922 ; MIPS32R5-NEXT: jr $ra
5923 ; MIPS32R5-NEXT: nop
5925 ; MIPS64R5-LABEL: mixed_i8:
5926 ; MIPS64R5: # %bb.0: # %entry
5927 ; MIPS64R5-NEXT: daddiu $sp, $sp, -48
5928 ; MIPS64R5-NEXT: .cfi_def_cfa_offset 48
5929 ; MIPS64R5-NEXT: sll $1, $5, 0
5930 ; MIPS64R5-NEXT: andi $1, $1, 255
5931 ; MIPS64R5-NEXT: mtc1 $1, $f0
5932 ; MIPS64R5-NEXT: cvt.s.w $f0, $f0
5933 ; MIPS64R5-NEXT: swc1 $f0, 36($sp)
5934 ; MIPS64R5-NEXT: swc1 $f0, 32($sp)
5935 ; MIPS64R5-NEXT: sd $4, 0($sp)
5936 ; MIPS64R5-NEXT: ld.w $w0, 0($sp)
5937 ; MIPS64R5-NEXT: ld.w $w1, 32($sp)
5938 ; MIPS64R5-NEXT: fadd.w $w0, $w1, $w0
5939 ; MIPS64R5-NEXT: sd $6, 16($sp)
5940 ; MIPS64R5-NEXT: ld.w $w1, 16($sp)
5941 ; MIPS64R5-NEXT: fadd.w $w0, $w0, $w1
5942 ; MIPS64R5-NEXT: splati.w $w1, $w0[1]
5943 ; MIPS64R5-NEXT: add.s $f0, $f0, $f1
5944 ; MIPS64R5-NEXT: daddiu $sp, $sp, 48
5945 ; MIPS64R5-NEXT: jr $ra
5946 ; MIPS64R5-NEXT: nop
5948 ; MIPS64EL-LABEL: mixed_i8:
5949 ; MIPS64EL: # %bb.0: # %entry
5950 ; MIPS64EL-NEXT: dsrl $1, $4, 32
5951 ; MIPS64EL-NEXT: sll $1, $1, 0
5952 ; MIPS64EL-NEXT: mtc1 $1, $f0
5953 ; MIPS64EL-NEXT: sll $1, $5, 0
5954 ; MIPS64EL-NEXT: andi $1, $1, 255
5955 ; MIPS64EL-NEXT: mtc1 $1, $f1
5956 ; MIPS64EL-NEXT: cvt.s.w $f1, $f1
5957 ; MIPS64EL-NEXT: add.s $f0, $f1, $f0
5958 ; MIPS64EL-NEXT: dsrl $1, $6, 32
5959 ; MIPS64EL-NEXT: sll $1, $1, 0
5960 ; MIPS64EL-NEXT: mtc1 $1, $f2
5961 ; MIPS64EL-NEXT: add.s $f0, $f0, $f2
5962 ; MIPS64EL-NEXT: sll $1, $4, 0
5963 ; MIPS64EL-NEXT: mtc1 $1, $f2
5964 ; MIPS64EL-NEXT: add.s $f1, $f1, $f2
5965 ; MIPS64EL-NEXT: sll $1, $6, 0
5966 ; MIPS64EL-NEXT: mtc1 $1, $f2
5967 ; MIPS64EL-NEXT: add.s $f1, $f1, $f2
5968 ; MIPS64EL-NEXT: add.s $f0, $f1, $f0
5969 ; MIPS64EL-NEXT: jr $ra
5970 ; MIPS64EL-NEXT: nop
5972 %0 = zext i8 %b to i32
5973 %1 = uitofp i32 %0 to float
5974 %2 = insertelement <2 x float> undef, float %1, i32 0
5975 %3 = insertelement <2 x float> %2, float %1, i32 1
5976 %4 = fadd <2 x float> %3, %a
5977 %5 = fadd <2 x float> %4, %c
5978 %6 = extractelement <2 x float> %5, i32 0
5979 %7 = extractelement <2 x float> %5, i32 1
5980 %8 = fadd float %6, %7
5984 define <4 x float> @mixed_32(<4 x float> %a, i32 %b) {
5985 ; MIPS32EB-LABEL: mixed_32:
5986 ; MIPS32EB: # %bb.0: # %entry
5987 ; MIPS32EB-NEXT: addiu $sp, $sp, -8
5988 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 8
5989 ; MIPS32EB-NEXT: lw $1, 32($sp)
5990 ; MIPS32EB-NEXT: sw $1, 4($sp)
5991 ; MIPS32EB-NEXT: lui $1, 17200
5992 ; MIPS32EB-NEXT: sw $1, 0($sp)
5993 ; MIPS32EB-NEXT: lui $1, %hi($CPI41_0)
5994 ; MIPS32EB-NEXT: ldc1 $f0, %lo($CPI41_0)($1)
5995 ; MIPS32EB-NEXT: ldc1 $f2, 0($sp)
5996 ; MIPS32EB-NEXT: sub.d $f0, $f2, $f0
5997 ; MIPS32EB-NEXT: cvt.s.d $f0, $f0
5998 ; MIPS32EB-NEXT: lwc1 $f1, 28($sp)
5999 ; MIPS32EB-NEXT: lwc1 $f2, 24($sp)
6000 ; MIPS32EB-NEXT: add.s $f2, $f0, $f2
6001 ; MIPS32EB-NEXT: add.s $f1, $f0, $f1
6002 ; MIPS32EB-NEXT: swc1 $f1, 12($4)
6003 ; MIPS32EB-NEXT: swc1 $f2, 8($4)
6004 ; MIPS32EB-NEXT: mtc1 $7, $f1
6005 ; MIPS32EB-NEXT: add.s $f1, $f0, $f1
6006 ; MIPS32EB-NEXT: swc1 $f1, 4($4)
6007 ; MIPS32EB-NEXT: mtc1 $6, $f1
6008 ; MIPS32EB-NEXT: add.s $f0, $f0, $f1
6009 ; MIPS32EB-NEXT: swc1 $f0, 0($4)
6010 ; MIPS32EB-NEXT: addiu $sp, $sp, 8
6011 ; MIPS32EB-NEXT: jr $ra
6012 ; MIPS32EB-NEXT: nop
6014 ; MIPS64EB-LABEL: mixed_32:
6015 ; MIPS64EB: # %bb.0: # %entry
6016 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
6017 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
6018 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(mixed_32)))
6019 ; MIPS64EB-NEXT: daddu $1, $1, $25
6020 ; MIPS64EB-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(mixed_32)))
6021 ; MIPS64EB-NEXT: lui $2, 17200
6022 ; MIPS64EB-NEXT: sw $2, 8($sp)
6023 ; MIPS64EB-NEXT: sll $2, $6, 0
6024 ; MIPS64EB-NEXT: sw $2, 12($sp)
6025 ; MIPS64EB-NEXT: ld $1, %got_page(.LCPI41_0)($1)
6026 ; MIPS64EB-NEXT: ldc1 $f0, %got_ofst(.LCPI41_0)($1)
6027 ; MIPS64EB-NEXT: ldc1 $f1, 8($sp)
6028 ; MIPS64EB-NEXT: sub.d $f0, $f1, $f0
6029 ; MIPS64EB-NEXT: cvt.s.d $f0, $f0
6030 ; MIPS64EB-NEXT: dsrl $1, $4, 32
6031 ; MIPS64EB-NEXT: sll $1, $1, 0
6032 ; MIPS64EB-NEXT: mtc1 $1, $f1
6033 ; MIPS64EB-NEXT: add.s $f1, $f0, $f1
6034 ; MIPS64EB-NEXT: dsrl $1, $5, 32
6035 ; MIPS64EB-NEXT: mfc1 $2, $f1
6036 ; MIPS64EB-NEXT: sll $3, $4, 0
6037 ; MIPS64EB-NEXT: sll $1, $1, 0
6038 ; MIPS64EB-NEXT: mtc1 $1, $f1
6039 ; MIPS64EB-NEXT: add.s $f1, $f0, $f1
6040 ; MIPS64EB-NEXT: mfc1 $1, $f1
6041 ; MIPS64EB-NEXT: mtc1 $3, $f1
6042 ; MIPS64EB-NEXT: sll $3, $5, 0
6043 ; MIPS64EB-NEXT: mtc1 $3, $f2
6044 ; MIPS64EB-NEXT: dsll $2, $2, 32
6045 ; MIPS64EB-NEXT: add.s $f1, $f0, $f1
6046 ; MIPS64EB-NEXT: mfc1 $3, $f1
6047 ; MIPS64EB-NEXT: dsll $3, $3, 32
6048 ; MIPS64EB-NEXT: dsrl $3, $3, 32
6049 ; MIPS64EB-NEXT: or $2, $3, $2
6050 ; MIPS64EB-NEXT: dsll $1, $1, 32
6051 ; MIPS64EB-NEXT: add.s $f0, $f0, $f2
6052 ; MIPS64EB-NEXT: mfc1 $3, $f0
6053 ; MIPS64EB-NEXT: dsll $3, $3, 32
6054 ; MIPS64EB-NEXT: dsrl $3, $3, 32
6055 ; MIPS64EB-NEXT: or $3, $3, $1
6056 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
6057 ; MIPS64EB-NEXT: jr $ra
6058 ; MIPS64EB-NEXT: nop
6060 ; MIPS32R5EB-LABEL: mixed_32:
6061 ; MIPS32R5EB: # %bb.0: # %entry
6062 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -8
6063 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 8
6064 ; MIPS32R5EB-NEXT: lw $1, 32($sp)
6065 ; MIPS32R5EB-NEXT: sw $1, 4($sp)
6066 ; MIPS32R5EB-NEXT: lui $1, 17200
6067 ; MIPS32R5EB-NEXT: sw $1, 0($sp)
6068 ; MIPS32R5EB-NEXT: lui $1, %hi($CPI41_0)
6069 ; MIPS32R5EB-NEXT: ldc1 $f0, %lo($CPI41_0)($1)
6070 ; MIPS32R5EB-NEXT: ldc1 $f1, 0($sp)
6071 ; MIPS32R5EB-NEXT: sub.d $f0, $f1, $f0
6072 ; MIPS32R5EB-NEXT: insert.w $w1[0], $6
6073 ; MIPS32R5EB-NEXT: insert.w $w1[1], $7
6074 ; MIPS32R5EB-NEXT: lw $1, 24($sp)
6075 ; MIPS32R5EB-NEXT: insert.w $w1[2], $1
6076 ; MIPS32R5EB-NEXT: lw $1, 28($sp)
6077 ; MIPS32R5EB-NEXT: insert.w $w1[3], $1
6078 ; MIPS32R5EB-NEXT: cvt.s.d $f0, $f0
6079 ; MIPS32R5EB-NEXT: splati.w $w0, $w0[0]
6080 ; MIPS32R5EB-NEXT: fadd.w $w0, $w0, $w1
6081 ; MIPS32R5EB-NEXT: st.w $w0, 0($4)
6082 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 8
6083 ; MIPS32R5EB-NEXT: jr $ra
6084 ; MIPS32R5EB-NEXT: nop
6086 ; MIPS64R5EB-LABEL: mixed_32:
6087 ; MIPS64R5EB: # %bb.0: # %entry
6088 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -16
6089 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 16
6090 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(mixed_32)))
6091 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
6092 ; MIPS64R5EB-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(mixed_32)))
6093 ; MIPS64R5EB-NEXT: lui $2, 17200
6094 ; MIPS64R5EB-NEXT: sw $2, 8($sp)
6095 ; MIPS64R5EB-NEXT: sll $2, $6, 0
6096 ; MIPS64R5EB-NEXT: sw $2, 12($sp)
6097 ; MIPS64R5EB-NEXT: ld $1, %got_page(.LCPI41_0)($1)
6098 ; MIPS64R5EB-NEXT: ldc1 $f0, %got_ofst(.LCPI41_0)($1)
6099 ; MIPS64R5EB-NEXT: ldc1 $f1, 8($sp)
6100 ; MIPS64R5EB-NEXT: sub.d $f0, $f1, $f0
6101 ; MIPS64R5EB-NEXT: insert.d $w1[0], $4
6102 ; MIPS64R5EB-NEXT: insert.d $w1[1], $5
6103 ; MIPS64R5EB-NEXT: shf.w $w1, $w1, 177
6104 ; MIPS64R5EB-NEXT: cvt.s.d $f0, $f0
6105 ; MIPS64R5EB-NEXT: splati.w $w0, $w0[0]
6106 ; MIPS64R5EB-NEXT: fadd.w $w0, $w0, $w1
6107 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
6108 ; MIPS64R5EB-NEXT: copy_s.d $2, $w0[0]
6109 ; MIPS64R5EB-NEXT: copy_s.d $3, $w0[1]
6110 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 16
6111 ; MIPS64R5EB-NEXT: jr $ra
6112 ; MIPS64R5EB-NEXT: nop
6114 ; MIPS32EL-LABEL: mixed_32:
6115 ; MIPS32EL: # %bb.0: # %entry
6116 ; MIPS32EL-NEXT: addiu $sp, $sp, -8
6117 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 8
6118 ; MIPS32EL-NEXT: lui $1, 17200
6119 ; MIPS32EL-NEXT: sw $1, 4($sp)
6120 ; MIPS32EL-NEXT: lw $1, 32($sp)
6121 ; MIPS32EL-NEXT: sw $1, 0($sp)
6122 ; MIPS32EL-NEXT: lui $1, %hi($CPI41_0)
6123 ; MIPS32EL-NEXT: ldc1 $f0, %lo($CPI41_0)($1)
6124 ; MIPS32EL-NEXT: ldc1 $f2, 0($sp)
6125 ; MIPS32EL-NEXT: sub.d $f0, $f2, $f0
6126 ; MIPS32EL-NEXT: cvt.s.d $f0, $f0
6127 ; MIPS32EL-NEXT: lwc1 $f1, 28($sp)
6128 ; MIPS32EL-NEXT: lwc1 $f2, 24($sp)
6129 ; MIPS32EL-NEXT: add.s $f2, $f0, $f2
6130 ; MIPS32EL-NEXT: add.s $f1, $f0, $f1
6131 ; MIPS32EL-NEXT: swc1 $f1, 12($4)
6132 ; MIPS32EL-NEXT: swc1 $f2, 8($4)
6133 ; MIPS32EL-NEXT: mtc1 $7, $f1
6134 ; MIPS32EL-NEXT: add.s $f1, $f0, $f1
6135 ; MIPS32EL-NEXT: swc1 $f1, 4($4)
6136 ; MIPS32EL-NEXT: mtc1 $6, $f1
6137 ; MIPS32EL-NEXT: add.s $f0, $f0, $f1
6138 ; MIPS32EL-NEXT: swc1 $f0, 0($4)
6139 ; MIPS32EL-NEXT: addiu $sp, $sp, 8
6140 ; MIPS32EL-NEXT: jr $ra
6141 ; MIPS32EL-NEXT: nop
6143 ; MIPS64EL-LABEL: mixed_32:
6144 ; MIPS64EL: # %bb.0: # %entry
6145 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
6146 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
6147 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(mixed_32)))
6148 ; MIPS64EL-NEXT: daddu $1, $1, $25
6149 ; MIPS64EL-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(mixed_32)))
6150 ; MIPS64EL-NEXT: lui $2, 17200
6151 ; MIPS64EL-NEXT: sw $2, 12($sp)
6152 ; MIPS64EL-NEXT: sll $2, $6, 0
6153 ; MIPS64EL-NEXT: sw $2, 8($sp)
6154 ; MIPS64EL-NEXT: ld $1, %got_page(.LCPI41_0)($1)
6155 ; MIPS64EL-NEXT: ldc1 $f0, %got_ofst(.LCPI41_0)($1)
6156 ; MIPS64EL-NEXT: ldc1 $f1, 8($sp)
6157 ; MIPS64EL-NEXT: sub.d $f0, $f1, $f0
6158 ; MIPS64EL-NEXT: cvt.s.d $f0, $f0
6159 ; MIPS64EL-NEXT: dsrl $1, $4, 32
6160 ; MIPS64EL-NEXT: sll $1, $1, 0
6161 ; MIPS64EL-NEXT: mtc1 $1, $f1
6162 ; MIPS64EL-NEXT: add.s $f1, $f0, $f1
6163 ; MIPS64EL-NEXT: dsrl $1, $5, 32
6164 ; MIPS64EL-NEXT: mfc1 $2, $f1
6165 ; MIPS64EL-NEXT: sll $3, $4, 0
6166 ; MIPS64EL-NEXT: sll $1, $1, 0
6167 ; MIPS64EL-NEXT: mtc1 $1, $f1
6168 ; MIPS64EL-NEXT: add.s $f1, $f0, $f1
6169 ; MIPS64EL-NEXT: mfc1 $1, $f1
6170 ; MIPS64EL-NEXT: mtc1 $3, $f1
6171 ; MIPS64EL-NEXT: sll $3, $5, 0
6172 ; MIPS64EL-NEXT: mtc1 $3, $f2
6173 ; MIPS64EL-NEXT: dsll $2, $2, 32
6174 ; MIPS64EL-NEXT: add.s $f1, $f0, $f1
6175 ; MIPS64EL-NEXT: mfc1 $3, $f1
6176 ; MIPS64EL-NEXT: dsll $3, $3, 32
6177 ; MIPS64EL-NEXT: dsrl $3, $3, 32
6178 ; MIPS64EL-NEXT: or $2, $3, $2
6179 ; MIPS64EL-NEXT: dsll $1, $1, 32
6180 ; MIPS64EL-NEXT: add.s $f0, $f0, $f2
6181 ; MIPS64EL-NEXT: mfc1 $3, $f0
6182 ; MIPS64EL-NEXT: dsll $3, $3, 32
6183 ; MIPS64EL-NEXT: dsrl $3, $3, 32
6184 ; MIPS64EL-NEXT: or $3, $3, $1
6185 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
6186 ; MIPS64EL-NEXT: jr $ra
6187 ; MIPS64EL-NEXT: nop
6189 ; MIPS32R5EL-LABEL: mixed_32:
6190 ; MIPS32R5EL: # %bb.0: # %entry
6191 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -8
6192 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 8
6193 ; MIPS32R5EL-NEXT: lui $1, 17200
6194 ; MIPS32R5EL-NEXT: sw $1, 4($sp)
6195 ; MIPS32R5EL-NEXT: lw $1, 32($sp)
6196 ; MIPS32R5EL-NEXT: sw $1, 0($sp)
6197 ; MIPS32R5EL-NEXT: lui $1, %hi($CPI41_0)
6198 ; MIPS32R5EL-NEXT: ldc1 $f0, %lo($CPI41_0)($1)
6199 ; MIPS32R5EL-NEXT: ldc1 $f1, 0($sp)
6200 ; MIPS32R5EL-NEXT: sub.d $f0, $f1, $f0
6201 ; MIPS32R5EL-NEXT: insert.w $w1[0], $6
6202 ; MIPS32R5EL-NEXT: insert.w $w1[1], $7
6203 ; MIPS32R5EL-NEXT: lw $1, 24($sp)
6204 ; MIPS32R5EL-NEXT: insert.w $w1[2], $1
6205 ; MIPS32R5EL-NEXT: lw $1, 28($sp)
6206 ; MIPS32R5EL-NEXT: insert.w $w1[3], $1
6207 ; MIPS32R5EL-NEXT: cvt.s.d $f0, $f0
6208 ; MIPS32R5EL-NEXT: splati.w $w0, $w0[0]
6209 ; MIPS32R5EL-NEXT: fadd.w $w0, $w0, $w1
6210 ; MIPS32R5EL-NEXT: st.w $w0, 0($4)
6211 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 8
6212 ; MIPS32R5EL-NEXT: jr $ra
6213 ; MIPS32R5EL-NEXT: nop
6215 ; MIPS64R5EL-LABEL: mixed_32:
6216 ; MIPS64R5EL: # %bb.0: # %entry
6217 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -16
6218 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 16
6219 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(mixed_32)))
6220 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
6221 ; MIPS64R5EL-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(mixed_32)))
6222 ; MIPS64R5EL-NEXT: lui $2, 17200
6223 ; MIPS64R5EL-NEXT: sw $2, 12($sp)
6224 ; MIPS64R5EL-NEXT: sll $2, $6, 0
6225 ; MIPS64R5EL-NEXT: sw $2, 8($sp)
6226 ; MIPS64R5EL-NEXT: ld $1, %got_page(.LCPI41_0)($1)
6227 ; MIPS64R5EL-NEXT: ldc1 $f0, %got_ofst(.LCPI41_0)($1)
6228 ; MIPS64R5EL-NEXT: ldc1 $f1, 8($sp)
6229 ; MIPS64R5EL-NEXT: sub.d $f0, $f1, $f0
6230 ; MIPS64R5EL-NEXT: insert.d $w1[0], $4
6231 ; MIPS64R5EL-NEXT: insert.d $w1[1], $5
6232 ; MIPS64R5EL-NEXT: cvt.s.d $f0, $f0
6233 ; MIPS64R5EL-NEXT: splati.w $w0, $w0[0]
6234 ; MIPS64R5EL-NEXT: fadd.w $w0, $w0, $w1
6235 ; MIPS64R5EL-NEXT: copy_s.d $2, $w0[0]
6236 ; MIPS64R5EL-NEXT: copy_s.d $3, $w0[1]
6237 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 16
6238 ; MIPS64R5EL-NEXT: jr $ra
6239 ; MIPS64R5EL-NEXT: nop
6241 %0 = uitofp i32 %b to float
6242 %1 = insertelement <4 x float> undef, float %0, i32 0
6243 %2 = insertelement <4 x float> %1, float %0, i32 1
6244 %3 = insertelement <4 x float> %2, float %0, i32 2
6245 %4 = insertelement <4 x float> %3, float %0, i32 3
6246 %5 = fadd <4 x float> %4, %a
6251 ; This test is slightly more fragile than I'd like as the offset into the
6252 ; outgoing arguments area is dependant on the size of the stack frame for
6255 define <4 x float> @cast(<4 x i32> %a) {
6256 ; MIPS32EB-LABEL: cast:
6257 ; MIPS32EB: # %bb.0: # %entry
6258 ; MIPS32EB-NEXT: addiu $sp, $sp, -32
6259 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 32
6260 ; MIPS32EB-NEXT: lw $1, 48($sp)
6261 ; MIPS32EB-NEXT: lui $2, 17200
6262 ; MIPS32EB-NEXT: lw $3, 52($sp)
6263 ; MIPS32EB-NEXT: sw $3, 28($sp)
6264 ; MIPS32EB-NEXT: sw $2, 24($sp)
6265 ; MIPS32EB-NEXT: sw $1, 20($sp)
6266 ; MIPS32EB-NEXT: sw $2, 16($sp)
6267 ; MIPS32EB-NEXT: lui $1, %hi($CPI42_0)
6268 ; MIPS32EB-NEXT: sw $7, 12($sp)
6269 ; MIPS32EB-NEXT: sw $2, 8($sp)
6270 ; MIPS32EB-NEXT: ldc1 $f0, %lo($CPI42_0)($1)
6271 ; MIPS32EB-NEXT: ldc1 $f2, 24($sp)
6272 ; MIPS32EB-NEXT: sub.d $f2, $f2, $f0
6273 ; MIPS32EB-NEXT: ldc1 $f4, 16($sp)
6274 ; MIPS32EB-NEXT: sub.d $f4, $f4, $f0
6275 ; MIPS32EB-NEXT: ldc1 $f6, 8($sp)
6276 ; MIPS32EB-NEXT: sub.d $f6, $f6, $f0
6277 ; MIPS32EB-NEXT: cvt.s.d $f6, $f6
6278 ; MIPS32EB-NEXT: cvt.s.d $f4, $f4
6279 ; MIPS32EB-NEXT: cvt.s.d $f2, $f2
6280 ; MIPS32EB-NEXT: swc1 $f2, 12($4)
6281 ; MIPS32EB-NEXT: swc1 $f4, 8($4)
6282 ; MIPS32EB-NEXT: swc1 $f6, 4($4)
6283 ; MIPS32EB-NEXT: sw $6, 4($sp)
6284 ; MIPS32EB-NEXT: sw $2, 0($sp)
6285 ; MIPS32EB-NEXT: ldc1 $f2, 0($sp)
6286 ; MIPS32EB-NEXT: sub.d $f0, $f2, $f0
6287 ; MIPS32EB-NEXT: cvt.s.d $f0, $f0
6288 ; MIPS32EB-NEXT: swc1 $f0, 0($4)
6289 ; MIPS32EB-NEXT: addiu $sp, $sp, 32
6290 ; MIPS32EB-NEXT: jr $ra
6291 ; MIPS32EB-NEXT: nop
6293 ; MIPS64EB-LABEL: cast:
6294 ; MIPS64EB: # %bb.0: # %entry
6295 ; MIPS64EB-NEXT: daddiu $sp, $sp, -32
6296 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 32
6297 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(cast)))
6298 ; MIPS64EB-NEXT: daddu $1, $1, $25
6299 ; MIPS64EB-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(cast)))
6300 ; MIPS64EB-NEXT: sll $2, $4, 0
6301 ; MIPS64EB-NEXT: lui $3, 17200
6302 ; MIPS64EB-NEXT: sw $3, 0($sp)
6303 ; MIPS64EB-NEXT: sw $2, 4($sp)
6304 ; MIPS64EB-NEXT: sll $2, $5, 0
6305 ; MIPS64EB-NEXT: sw $3, 8($sp)
6306 ; MIPS64EB-NEXT: sw $2, 12($sp)
6307 ; MIPS64EB-NEXT: ld $1, %got_page(.LCPI42_0)($1)
6308 ; MIPS64EB-NEXT: ldc1 $f0, %got_ofst(.LCPI42_0)($1)
6309 ; MIPS64EB-NEXT: ldc1 $f1, 0($sp)
6310 ; MIPS64EB-NEXT: sub.d $f1, $f1, $f0
6311 ; MIPS64EB-NEXT: cvt.s.d $f1, $f1
6312 ; MIPS64EB-NEXT: ldc1 $f2, 8($sp)
6313 ; MIPS64EB-NEXT: sub.d $f2, $f2, $f0
6314 ; MIPS64EB-NEXT: mfc1 $1, $f1
6315 ; MIPS64EB-NEXT: dsrl $2, $4, 32
6316 ; MIPS64EB-NEXT: sll $2, $2, 0
6317 ; MIPS64EB-NEXT: sw $3, 16($sp)
6318 ; MIPS64EB-NEXT: sw $2, 20($sp)
6319 ; MIPS64EB-NEXT: sw $3, 24($sp)
6320 ; MIPS64EB-NEXT: dsll $1, $1, 32
6321 ; MIPS64EB-NEXT: cvt.s.d $f1, $f2
6322 ; MIPS64EB-NEXT: dsrl $2, $5, 32
6323 ; MIPS64EB-NEXT: sll $2, $2, 0
6324 ; MIPS64EB-NEXT: sw $2, 28($sp)
6325 ; MIPS64EB-NEXT: mfc1 $2, $f1
6326 ; MIPS64EB-NEXT: dsll $3, $2, 32
6327 ; MIPS64EB-NEXT: dsrl $1, $1, 32
6328 ; MIPS64EB-NEXT: ldc1 $f1, 16($sp)
6329 ; MIPS64EB-NEXT: sub.d $f1, $f1, $f0
6330 ; MIPS64EB-NEXT: cvt.s.d $f1, $f1
6331 ; MIPS64EB-NEXT: mfc1 $2, $f1
6332 ; MIPS64EB-NEXT: dsll $2, $2, 32
6333 ; MIPS64EB-NEXT: or $2, $1, $2
6334 ; MIPS64EB-NEXT: dsrl $1, $3, 32
6335 ; MIPS64EB-NEXT: ldc1 $f1, 24($sp)
6336 ; MIPS64EB-NEXT: sub.d $f0, $f1, $f0
6337 ; MIPS64EB-NEXT: cvt.s.d $f0, $f0
6338 ; MIPS64EB-NEXT: mfc1 $3, $f0
6339 ; MIPS64EB-NEXT: dsll $3, $3, 32
6340 ; MIPS64EB-NEXT: or $3, $1, $3
6341 ; MIPS64EB-NEXT: daddiu $sp, $sp, 32
6342 ; MIPS64EB-NEXT: jr $ra
6343 ; MIPS64EB-NEXT: nop
6345 ; MIPS32R5-LABEL: cast:
6346 ; MIPS32R5: # %bb.0: # %entry
6347 ; MIPS32R5-NEXT: insert.w $w0[0], $6
6348 ; MIPS32R5-NEXT: insert.w $w0[1], $7
6349 ; MIPS32R5-NEXT: lw $1, 16($sp)
6350 ; MIPS32R5-NEXT: insert.w $w0[2], $1
6351 ; MIPS32R5-NEXT: lw $1, 20($sp)
6352 ; MIPS32R5-NEXT: insert.w $w0[3], $1
6353 ; MIPS32R5-NEXT: ffint_u.w $w0, $w0
6354 ; MIPS32R5-NEXT: st.w $w0, 0($4)
6355 ; MIPS32R5-NEXT: jr $ra
6356 ; MIPS32R5-NEXT: nop
6358 ; MIPS64R5EB-LABEL: cast:
6359 ; MIPS64R5EB: # %bb.0: # %entry
6360 ; MIPS64R5EB-NEXT: insert.d $w0[0], $4
6361 ; MIPS64R5EB-NEXT: insert.d $w0[1], $5
6362 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
6363 ; MIPS64R5EB-NEXT: ffint_u.w $w0, $w0
6364 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
6365 ; MIPS64R5EB-NEXT: copy_s.d $2, $w0[0]
6366 ; MIPS64R5EB-NEXT: copy_s.d $3, $w0[1]
6367 ; MIPS64R5EB-NEXT: jr $ra
6368 ; MIPS64R5EB-NEXT: nop
6370 ; MIPS32EL-LABEL: cast:
6371 ; MIPS32EL: # %bb.0: # %entry
6372 ; MIPS32EL-NEXT: addiu $sp, $sp, -32
6373 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 32
6374 ; MIPS32EL-NEXT: lw $1, 52($sp)
6375 ; MIPS32EL-NEXT: lui $2, 17200
6376 ; MIPS32EL-NEXT: sw $2, 28($sp)
6377 ; MIPS32EL-NEXT: sw $1, 24($sp)
6378 ; MIPS32EL-NEXT: lw $1, 48($sp)
6379 ; MIPS32EL-NEXT: sw $2, 20($sp)
6380 ; MIPS32EL-NEXT: sw $1, 16($sp)
6381 ; MIPS32EL-NEXT: lui $1, %hi($CPI42_0)
6382 ; MIPS32EL-NEXT: sw $2, 12($sp)
6383 ; MIPS32EL-NEXT: sw $7, 8($sp)
6384 ; MIPS32EL-NEXT: ldc1 $f0, %lo($CPI42_0)($1)
6385 ; MIPS32EL-NEXT: ldc1 $f2, 24($sp)
6386 ; MIPS32EL-NEXT: sub.d $f2, $f2, $f0
6387 ; MIPS32EL-NEXT: ldc1 $f4, 16($sp)
6388 ; MIPS32EL-NEXT: sub.d $f4, $f4, $f0
6389 ; MIPS32EL-NEXT: ldc1 $f6, 8($sp)
6390 ; MIPS32EL-NEXT: sub.d $f6, $f6, $f0
6391 ; MIPS32EL-NEXT: cvt.s.d $f6, $f6
6392 ; MIPS32EL-NEXT: cvt.s.d $f4, $f4
6393 ; MIPS32EL-NEXT: cvt.s.d $f2, $f2
6394 ; MIPS32EL-NEXT: swc1 $f2, 12($4)
6395 ; MIPS32EL-NEXT: swc1 $f4, 8($4)
6396 ; MIPS32EL-NEXT: swc1 $f6, 4($4)
6397 ; MIPS32EL-NEXT: sw $2, 4($sp)
6398 ; MIPS32EL-NEXT: sw $6, 0($sp)
6399 ; MIPS32EL-NEXT: ldc1 $f2, 0($sp)
6400 ; MIPS32EL-NEXT: sub.d $f0, $f2, $f0
6401 ; MIPS32EL-NEXT: cvt.s.d $f0, $f0
6402 ; MIPS32EL-NEXT: swc1 $f0, 0($4)
6403 ; MIPS32EL-NEXT: addiu $sp, $sp, 32
6404 ; MIPS32EL-NEXT: jr $ra
6405 ; MIPS32EL-NEXT: nop
6407 ; MIPS64EL-LABEL: cast:
6408 ; MIPS64EL: # %bb.0: # %entry
6409 ; MIPS64EL-NEXT: daddiu $sp, $sp, -32
6410 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 32
6411 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(cast)))
6412 ; MIPS64EL-NEXT: daddu $1, $1, $25
6413 ; MIPS64EL-NEXT: daddiu $1, $1, %lo(%neg(%gp_rel(cast)))
6414 ; MIPS64EL-NEXT: sll $2, $4, 0
6415 ; MIPS64EL-NEXT: lui $3, 17200
6416 ; MIPS64EL-NEXT: sw $3, 4($sp)
6417 ; MIPS64EL-NEXT: sw $2, 0($sp)
6418 ; MIPS64EL-NEXT: sll $2, $5, 0
6419 ; MIPS64EL-NEXT: sw $3, 12($sp)
6420 ; MIPS64EL-NEXT: sw $2, 8($sp)
6421 ; MIPS64EL-NEXT: ld $1, %got_page(.LCPI42_0)($1)
6422 ; MIPS64EL-NEXT: ldc1 $f0, %got_ofst(.LCPI42_0)($1)
6423 ; MIPS64EL-NEXT: ldc1 $f1, 0($sp)
6424 ; MIPS64EL-NEXT: sub.d $f1, $f1, $f0
6425 ; MIPS64EL-NEXT: cvt.s.d $f1, $f1
6426 ; MIPS64EL-NEXT: ldc1 $f2, 8($sp)
6427 ; MIPS64EL-NEXT: sub.d $f2, $f2, $f0
6428 ; MIPS64EL-NEXT: mfc1 $1, $f1
6429 ; MIPS64EL-NEXT: dsrl $2, $4, 32
6430 ; MIPS64EL-NEXT: sll $2, $2, 0
6431 ; MIPS64EL-NEXT: sw $3, 20($sp)
6432 ; MIPS64EL-NEXT: sw $2, 16($sp)
6433 ; MIPS64EL-NEXT: sw $3, 28($sp)
6434 ; MIPS64EL-NEXT: dsll $1, $1, 32
6435 ; MIPS64EL-NEXT: cvt.s.d $f1, $f2
6436 ; MIPS64EL-NEXT: dsrl $2, $5, 32
6437 ; MIPS64EL-NEXT: sll $2, $2, 0
6438 ; MIPS64EL-NEXT: sw $2, 24($sp)
6439 ; MIPS64EL-NEXT: mfc1 $2, $f1
6440 ; MIPS64EL-NEXT: dsll $3, $2, 32
6441 ; MIPS64EL-NEXT: dsrl $1, $1, 32
6442 ; MIPS64EL-NEXT: ldc1 $f1, 16($sp)
6443 ; MIPS64EL-NEXT: sub.d $f1, $f1, $f0
6444 ; MIPS64EL-NEXT: cvt.s.d $f1, $f1
6445 ; MIPS64EL-NEXT: mfc1 $2, $f1
6446 ; MIPS64EL-NEXT: dsll $2, $2, 32
6447 ; MIPS64EL-NEXT: or $2, $1, $2
6448 ; MIPS64EL-NEXT: dsrl $1, $3, 32
6449 ; MIPS64EL-NEXT: ldc1 $f1, 24($sp)
6450 ; MIPS64EL-NEXT: sub.d $f0, $f1, $f0
6451 ; MIPS64EL-NEXT: cvt.s.d $f0, $f0
6452 ; MIPS64EL-NEXT: mfc1 $3, $f0
6453 ; MIPS64EL-NEXT: dsll $3, $3, 32
6454 ; MIPS64EL-NEXT: or $3, $1, $3
6455 ; MIPS64EL-NEXT: daddiu $sp, $sp, 32
6456 ; MIPS64EL-NEXT: jr $ra
6457 ; MIPS64EL-NEXT: nop
6459 ; MIPS64R5EL-LABEL: cast:
6460 ; MIPS64R5EL: # %bb.0: # %entry
6461 ; MIPS64R5EL-NEXT: insert.d $w0[0], $4
6462 ; MIPS64R5EL-NEXT: insert.d $w0[1], $5
6463 ; MIPS64R5EL-NEXT: ffint_u.w $w0, $w0
6464 ; MIPS64R5EL-NEXT: copy_s.d $2, $w0[0]
6465 ; MIPS64R5EL-NEXT: copy_s.d $3, $w0[1]
6466 ; MIPS64R5EL-NEXT: jr $ra
6467 ; MIPS64R5EL-NEXT: nop
6469 %0 = uitofp <4 x i32> %a to <4 x float>
6473 define <4 x float> @select(<4 x i32> %cond, <4 x float> %arg1, <4 x float> %arg2) {
6474 ; MIPS32-LABEL: select:
6475 ; MIPS32: # %bb.0: # %entry
6476 ; MIPS32-NEXT: andi $1, $7, 1
6477 ; MIPS32-NEXT: lw $2, 16($sp)
6478 ; MIPS32-NEXT: andi $2, $2, 1
6479 ; MIPS32-NEXT: addiu $3, $sp, 44
6480 ; MIPS32-NEXT: addiu $5, $sp, 28
6481 ; MIPS32-NEXT: addiu $7, $sp, 48
6482 ; MIPS32-NEXT: addiu $8, $sp, 32
6483 ; MIPS32-NEXT: movn $7, $8, $2
6484 ; MIPS32-NEXT: movn $3, $5, $1
6485 ; MIPS32-NEXT: andi $1, $6, 1
6486 ; MIPS32-NEXT: addiu $2, $sp, 40
6487 ; MIPS32-NEXT: addiu $5, $sp, 24
6488 ; MIPS32-NEXT: movn $2, $5, $1
6489 ; MIPS32-NEXT: lw $1, 20($sp)
6490 ; MIPS32-NEXT: lwc1 $f0, 0($2)
6491 ; MIPS32-NEXT: lwc1 $f1, 0($3)
6492 ; MIPS32-NEXT: lwc1 $f2, 0($7)
6493 ; MIPS32-NEXT: andi $1, $1, 1
6494 ; MIPS32-NEXT: addiu $2, $sp, 52
6495 ; MIPS32-NEXT: addiu $3, $sp, 36
6496 ; MIPS32-NEXT: movn $2, $3, $1
6497 ; MIPS32-NEXT: lwc1 $f3, 0($2)
6498 ; MIPS32-NEXT: swc1 $f3, 12($4)
6499 ; MIPS32-NEXT: swc1 $f2, 8($4)
6500 ; MIPS32-NEXT: swc1 $f1, 4($4)
6501 ; MIPS32-NEXT: swc1 $f0, 0($4)
6502 ; MIPS32-NEXT: jr $ra
6505 ; MIPS64-LABEL: select:
6506 ; MIPS64: # %bb.0: # %entry
6507 ; MIPS64-NEXT: sll $1, $8, 0
6508 ; MIPS64-NEXT: mtc1 $1, $f0
6509 ; MIPS64-NEXT: sll $1, $4, 0
6510 ; MIPS64-NEXT: andi $1, $1, 1
6511 ; MIPS64-NEXT: sll $2, $6, 0
6512 ; MIPS64-NEXT: mtc1 $2, $f1
6513 ; MIPS64-NEXT: movn.s $f0, $f1, $1
6514 ; MIPS64-NEXT: dsrl $1, $8, 32
6515 ; MIPS64-NEXT: dsrl $2, $4, 32
6516 ; MIPS64-NEXT: sll $1, $1, 0
6517 ; MIPS64-NEXT: mfc1 $3, $f0
6518 ; MIPS64-NEXT: sll $4, $9, 0
6519 ; MIPS64-NEXT: mtc1 $1, $f0
6520 ; MIPS64-NEXT: sll $1, $2, 0
6521 ; MIPS64-NEXT: andi $1, $1, 1
6522 ; MIPS64-NEXT: dsrl $2, $6, 32
6523 ; MIPS64-NEXT: sll $2, $2, 0
6524 ; MIPS64-NEXT: mtc1 $2, $f1
6525 ; MIPS64-NEXT: movn.s $f0, $f1, $1
6526 ; MIPS64-NEXT: dsll $1, $3, 32
6527 ; MIPS64-NEXT: mtc1 $4, $f1
6528 ; MIPS64-NEXT: sll $2, $5, 0
6529 ; MIPS64-NEXT: andi $2, $2, 1
6530 ; MIPS64-NEXT: sll $3, $7, 0
6531 ; MIPS64-NEXT: mtc1 $3, $f2
6532 ; MIPS64-NEXT: movn.s $f1, $f2, $2
6533 ; MIPS64-NEXT: mfc1 $2, $f1
6534 ; MIPS64-NEXT: dsll $3, $2, 32
6535 ; MIPS64-NEXT: dsrl $1, $1, 32
6536 ; MIPS64-NEXT: mfc1 $2, $f0
6537 ; MIPS64-NEXT: dsrl $4, $5, 32
6538 ; MIPS64-NEXT: dsrl $5, $9, 32
6539 ; MIPS64-NEXT: dsll $2, $2, 32
6540 ; MIPS64-NEXT: sll $5, $5, 0
6541 ; MIPS64-NEXT: or $2, $1, $2
6542 ; MIPS64-NEXT: dsrl $1, $3, 32
6543 ; MIPS64-NEXT: mtc1 $5, $f0
6544 ; MIPS64-NEXT: sll $3, $4, 0
6545 ; MIPS64-NEXT: andi $3, $3, 1
6546 ; MIPS64-NEXT: dsrl $4, $7, 32
6547 ; MIPS64-NEXT: sll $4, $4, 0
6548 ; MIPS64-NEXT: mtc1 $4, $f1
6549 ; MIPS64-NEXT: movn.s $f0, $f1, $3
6550 ; MIPS64-NEXT: mfc1 $3, $f0
6551 ; MIPS64-NEXT: dsll $3, $3, 32
6552 ; MIPS64-NEXT: or $3, $1, $3
6553 ; MIPS64-NEXT: jr $ra
6556 ; MIPS32R5-LABEL: select:
6557 ; MIPS32R5: # %bb.0: # %entry
6558 ; MIPS32R5-NEXT: lw $1, 44($sp)
6559 ; MIPS32R5-NEXT: lw $2, 40($sp)
6560 ; MIPS32R5-NEXT: insert.w $w0[0], $2
6561 ; MIPS32R5-NEXT: insert.w $w0[1], $1
6562 ; MIPS32R5-NEXT: lw $1, 48($sp)
6563 ; MIPS32R5-NEXT: insert.w $w0[2], $1
6564 ; MIPS32R5-NEXT: lw $1, 28($sp)
6565 ; MIPS32R5-NEXT: lw $2, 24($sp)
6566 ; MIPS32R5-NEXT: lw $3, 52($sp)
6567 ; MIPS32R5-NEXT: insert.w $w0[3], $3
6568 ; MIPS32R5-NEXT: insert.w $w1[0], $2
6569 ; MIPS32R5-NEXT: insert.w $w1[1], $1
6570 ; MIPS32R5-NEXT: lw $1, 32($sp)
6571 ; MIPS32R5-NEXT: insert.w $w1[2], $1
6572 ; MIPS32R5-NEXT: lw $1, 36($sp)
6573 ; MIPS32R5-NEXT: insert.w $w1[3], $1
6574 ; MIPS32R5-NEXT: insert.w $w2[0], $6
6575 ; MIPS32R5-NEXT: insert.w $w2[1], $7
6576 ; MIPS32R5-NEXT: lw $1, 16($sp)
6577 ; MIPS32R5-NEXT: insert.w $w2[2], $1
6578 ; MIPS32R5-NEXT: lw $1, 20($sp)
6579 ; MIPS32R5-NEXT: insert.w $w2[3], $1
6580 ; MIPS32R5-NEXT: slli.w $w2, $w2, 31
6581 ; MIPS32R5-NEXT: srai.w $w2, $w2, 31
6582 ; MIPS32R5-NEXT: bsel.v $w2, $w0, $w1
6583 ; MIPS32R5-NEXT: st.w $w2, 0($4)
6584 ; MIPS32R5-NEXT: jr $ra
6585 ; MIPS32R5-NEXT: nop
6587 ; MIPS64R5EB-LABEL: select:
6588 ; MIPS64R5EB: # %bb.0: # %entry
6589 ; MIPS64R5EB-NEXT: insert.d $w0[0], $8
6590 ; MIPS64R5EB-NEXT: insert.d $w0[1], $9
6591 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
6592 ; MIPS64R5EB-NEXT: insert.d $w1[0], $6
6593 ; MIPS64R5EB-NEXT: insert.d $w1[1], $7
6594 ; MIPS64R5EB-NEXT: shf.w $w1, $w1, 177
6595 ; MIPS64R5EB-NEXT: insert.d $w2[0], $4
6596 ; MIPS64R5EB-NEXT: insert.d $w2[1], $5
6597 ; MIPS64R5EB-NEXT: shf.w $w2, $w2, 177
6598 ; MIPS64R5EB-NEXT: slli.w $w2, $w2, 31
6599 ; MIPS64R5EB-NEXT: srai.w $w2, $w2, 31
6600 ; MIPS64R5EB-NEXT: bsel.v $w2, $w0, $w1
6601 ; MIPS64R5EB-NEXT: shf.w $w0, $w2, 177
6602 ; MIPS64R5EB-NEXT: copy_s.d $2, $w0[0]
6603 ; MIPS64R5EB-NEXT: copy_s.d $3, $w0[1]
6604 ; MIPS64R5EB-NEXT: jr $ra
6605 ; MIPS64R5EB-NEXT: nop
6607 ; MIPS64R5EL-LABEL: select:
6608 ; MIPS64R5EL: # %bb.0: # %entry
6609 ; MIPS64R5EL-NEXT: insert.d $w0[0], $8
6610 ; MIPS64R5EL-NEXT: insert.d $w0[1], $9
6611 ; MIPS64R5EL-NEXT: insert.d $w1[0], $6
6612 ; MIPS64R5EL-NEXT: insert.d $w1[1], $7
6613 ; MIPS64R5EL-NEXT: insert.d $w2[0], $4
6614 ; MIPS64R5EL-NEXT: insert.d $w2[1], $5
6615 ; MIPS64R5EL-NEXT: slli.w $w2, $w2, 31
6616 ; MIPS64R5EL-NEXT: srai.w $w2, $w2, 31
6617 ; MIPS64R5EL-NEXT: bsel.v $w2, $w0, $w1
6618 ; MIPS64R5EL-NEXT: copy_s.d $2, $w2[0]
6619 ; MIPS64R5EL-NEXT: copy_s.d $3, $w2[1]
6620 ; MIPS64R5EL-NEXT: jr $ra
6621 ; MIPS64R5EL-NEXT: nop
6623 %cond.t = trunc <4 x i32> %cond to <4 x i1>
6624 %res = select <4 x i1> %cond.t, <4 x float> %arg1, <4 x float> %arg2
6625 ret <4 x float> %res
6628 ; Check that vectors of types with non-power-of-two size are correctly handled.
6630 define <2 x i24> @i24x2(<2 x i24> %a, <2 x i24> %b) {
6631 ; MIPS32-LABEL: i24x2:
6632 ; MIPS32: # %bb.0: # %Entry
6633 ; MIPS32-NEXT: addu $2, $4, $6
6634 ; MIPS32-NEXT: addu $3, $5, $7
6635 ; MIPS32-NEXT: jr $ra
6638 ; MIPS64-LABEL: i24x2:
6639 ; MIPS64: # %bb.0: # %Entry
6640 ; MIPS64-NEXT: sll $1, $6, 0
6641 ; MIPS64-NEXT: sll $2, $4, 0
6642 ; MIPS64-NEXT: addu $2, $2, $1
6643 ; MIPS64-NEXT: sll $1, $7, 0
6644 ; MIPS64-NEXT: sll $3, $5, 0
6645 ; MIPS64-NEXT: addu $3, $3, $1
6646 ; MIPS64-NEXT: jr $ra
6649 ; MIPS32R5EB-LABEL: i24x2:
6650 ; MIPS32R5EB: # %bb.0: # %Entry
6651 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -48
6652 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 48
6653 ; MIPS32R5EB-NEXT: sw $ra, 44($sp) # 4-byte Folded Spill
6654 ; MIPS32R5EB-NEXT: sw $fp, 40($sp) # 4-byte Folded Spill
6655 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
6656 ; MIPS32R5EB-NEXT: .cfi_offset 30, -8
6657 ; MIPS32R5EB-NEXT: move $fp, $sp
6658 ; MIPS32R5EB-NEXT: .cfi_def_cfa_register 30
6659 ; MIPS32R5EB-NEXT: addiu $1, $zero, -16
6660 ; MIPS32R5EB-NEXT: and $sp, $sp, $1
6661 ; MIPS32R5EB-NEXT: sw $7, 28($sp)
6662 ; MIPS32R5EB-NEXT: sw $6, 20($sp)
6663 ; MIPS32R5EB-NEXT: sw $5, 12($sp)
6664 ; MIPS32R5EB-NEXT: sw $4, 4($sp)
6665 ; MIPS32R5EB-NEXT: ld.d $w0, 16($sp)
6666 ; MIPS32R5EB-NEXT: ld.d $w1, 0($sp)
6667 ; MIPS32R5EB-NEXT: addv.d $w0, $w1, $w0
6668 ; MIPS32R5EB-NEXT: shf.w $w0, $w0, 177
6669 ; MIPS32R5EB-NEXT: copy_s.w $2, $w0[1]
6670 ; MIPS32R5EB-NEXT: copy_s.w $3, $w0[3]
6671 ; MIPS32R5EB-NEXT: move $sp, $fp
6672 ; MIPS32R5EB-NEXT: lw $fp, 40($sp) # 4-byte Folded Reload
6673 ; MIPS32R5EB-NEXT: lw $ra, 44($sp) # 4-byte Folded Reload
6674 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 48
6675 ; MIPS32R5EB-NEXT: jr $ra
6676 ; MIPS32R5EB-NEXT: nop
6678 ; MIPS64R5EB-LABEL: i24x2:
6679 ; MIPS64R5EB: # %bb.0: # %Entry
6680 ; MIPS64R5EB-NEXT: insert.d $w0[0], $6
6681 ; MIPS64R5EB-NEXT: insert.d $w0[1], $7
6682 ; MIPS64R5EB-NEXT: insert.d $w1[0], $4
6683 ; MIPS64R5EB-NEXT: insert.d $w1[1], $5
6684 ; MIPS64R5EB-NEXT: addv.d $w0, $w1, $w0
6685 ; MIPS64R5EB-NEXT: shf.w $w0, $w0, 177
6686 ; MIPS64R5EB-NEXT: copy_s.w $2, $w0[1]
6687 ; MIPS64R5EB-NEXT: copy_s.w $3, $w0[3]
6688 ; MIPS64R5EB-NEXT: jr $ra
6689 ; MIPS64R5EB-NEXT: nop
6691 ; MIPS32R5EL-LABEL: i24x2:
6692 ; MIPS32R5EL: # %bb.0: # %Entry
6693 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -48
6694 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 48
6695 ; MIPS32R5EL-NEXT: sw $ra, 44($sp) # 4-byte Folded Spill
6696 ; MIPS32R5EL-NEXT: sw $fp, 40($sp) # 4-byte Folded Spill
6697 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
6698 ; MIPS32R5EL-NEXT: .cfi_offset 30, -8
6699 ; MIPS32R5EL-NEXT: move $fp, $sp
6700 ; MIPS32R5EL-NEXT: .cfi_def_cfa_register 30
6701 ; MIPS32R5EL-NEXT: addiu $1, $zero, -16
6702 ; MIPS32R5EL-NEXT: and $sp, $sp, $1
6703 ; MIPS32R5EL-NEXT: sw $7, 24($sp)
6704 ; MIPS32R5EL-NEXT: sw $6, 16($sp)
6705 ; MIPS32R5EL-NEXT: sw $5, 8($sp)
6706 ; MIPS32R5EL-NEXT: sw $4, 0($sp)
6707 ; MIPS32R5EL-NEXT: ld.d $w0, 16($sp)
6708 ; MIPS32R5EL-NEXT: ld.d $w1, 0($sp)
6709 ; MIPS32R5EL-NEXT: addv.d $w0, $w1, $w0
6710 ; MIPS32R5EL-NEXT: copy_s.w $2, $w0[0]
6711 ; MIPS32R5EL-NEXT: copy_s.w $3, $w0[2]
6712 ; MIPS32R5EL-NEXT: move $sp, $fp
6713 ; MIPS32R5EL-NEXT: lw $fp, 40($sp) # 4-byte Folded Reload
6714 ; MIPS32R5EL-NEXT: lw $ra, 44($sp) # 4-byte Folded Reload
6715 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 48
6716 ; MIPS32R5EL-NEXT: jr $ra
6717 ; MIPS32R5EL-NEXT: nop
6719 ; MIPS64R5EL-LABEL: i24x2:
6720 ; MIPS64R5EL: # %bb.0: # %Entry
6721 ; MIPS64R5EL-NEXT: insert.d $w0[0], $6
6722 ; MIPS64R5EL-NEXT: insert.d $w0[1], $7
6723 ; MIPS64R5EL-NEXT: insert.d $w1[0], $4
6724 ; MIPS64R5EL-NEXT: insert.d $w1[1], $5
6725 ; MIPS64R5EL-NEXT: addv.d $w0, $w1, $w0
6726 ; MIPS64R5EL-NEXT: copy_s.w $2, $w0[0]
6727 ; MIPS64R5EL-NEXT: copy_s.w $3, $w0[2]
6728 ; MIPS64R5EL-NEXT: jr $ra
6729 ; MIPS64R5EL-NEXT: nop
6731 %0 = add <2 x i24> %a, %b
6735 define void @call_i24x2() {
6736 ; MIPS32EB-LABEL: call_i24x2:
6737 ; MIPS32EB: # %bb.0: # %entry
6738 ; MIPS32EB-NEXT: addiu $sp, $sp, -24
6739 ; MIPS32EB-NEXT: .cfi_def_cfa_offset 24
6740 ; MIPS32EB-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
6741 ; MIPS32EB-NEXT: .cfi_offset 31, -4
6742 ; MIPS32EB-NEXT: addiu $4, $zero, 6
6743 ; MIPS32EB-NEXT: addiu $5, $zero, 7
6744 ; MIPS32EB-NEXT: addiu $6, $zero, 12
6745 ; MIPS32EB-NEXT: addiu $7, $zero, 8
6746 ; MIPS32EB-NEXT: jal i24x2
6747 ; MIPS32EB-NEXT: nop
6748 ; MIPS32EB-NEXT: lui $1, %hi(gv2i24)
6749 ; MIPS32EB-NEXT: addiu $4, $1, %lo(gv2i24)
6750 ; MIPS32EB-NEXT: sb $3, 5($4)
6751 ; MIPS32EB-NEXT: sb $2, 2($4)
6752 ; MIPS32EB-NEXT: srl $5, $3, 8
6753 ; MIPS32EB-NEXT: sb $5, 4($4)
6754 ; MIPS32EB-NEXT: srl $3, $3, 16
6755 ; MIPS32EB-NEXT: sb $3, 3($4)
6756 ; MIPS32EB-NEXT: srl $2, $2, 8
6757 ; MIPS32EB-NEXT: sh $2, %lo(gv2i24)($1)
6758 ; MIPS32EB-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
6759 ; MIPS32EB-NEXT: addiu $sp, $sp, 24
6760 ; MIPS32EB-NEXT: jr $ra
6761 ; MIPS32EB-NEXT: nop
6763 ; MIPS64EB-LABEL: call_i24x2:
6764 ; MIPS64EB: # %bb.0: # %entry
6765 ; MIPS64EB-NEXT: daddiu $sp, $sp, -16
6766 ; MIPS64EB-NEXT: .cfi_def_cfa_offset 16
6767 ; MIPS64EB-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
6768 ; MIPS64EB-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
6769 ; MIPS64EB-NEXT: .cfi_offset 31, -8
6770 ; MIPS64EB-NEXT: .cfi_offset 28, -16
6771 ; MIPS64EB-NEXT: lui $1, %hi(%neg(%gp_rel(call_i24x2)))
6772 ; MIPS64EB-NEXT: daddu $1, $1, $25
6773 ; MIPS64EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i24x2)))
6774 ; MIPS64EB-NEXT: ld $25, %call16(i24x2)($gp)
6775 ; MIPS64EB-NEXT: daddiu $4, $zero, 6
6776 ; MIPS64EB-NEXT: daddiu $5, $zero, 7
6777 ; MIPS64EB-NEXT: daddiu $6, $zero, 12
6778 ; MIPS64EB-NEXT: daddiu $7, $zero, 8
6779 ; MIPS64EB-NEXT: jalr $25
6780 ; MIPS64EB-NEXT: nop
6781 ; MIPS64EB-NEXT: ld $1, %got_disp(gv2i24)($gp)
6782 ; MIPS64EB-NEXT: sb $3, 5($1)
6783 ; MIPS64EB-NEXT: sb $2, 2($1)
6784 ; MIPS64EB-NEXT: srl $4, $3, 8
6785 ; MIPS64EB-NEXT: sb $4, 4($1)
6786 ; MIPS64EB-NEXT: srl $3, $3, 16
6787 ; MIPS64EB-NEXT: sb $3, 3($1)
6788 ; MIPS64EB-NEXT: srl $2, $2, 8
6789 ; MIPS64EB-NEXT: sh $2, 0($1)
6790 ; MIPS64EB-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
6791 ; MIPS64EB-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
6792 ; MIPS64EB-NEXT: daddiu $sp, $sp, 16
6793 ; MIPS64EB-NEXT: jr $ra
6794 ; MIPS64EB-NEXT: nop
6796 ; MIPS32R5EB-LABEL: call_i24x2:
6797 ; MIPS32R5EB: # %bb.0: # %entry
6798 ; MIPS32R5EB-NEXT: addiu $sp, $sp, -24
6799 ; MIPS32R5EB-NEXT: .cfi_def_cfa_offset 24
6800 ; MIPS32R5EB-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
6801 ; MIPS32R5EB-NEXT: .cfi_offset 31, -4
6802 ; MIPS32R5EB-NEXT: addiu $4, $zero, 6
6803 ; MIPS32R5EB-NEXT: addiu $5, $zero, 7
6804 ; MIPS32R5EB-NEXT: addiu $6, $zero, 12
6805 ; MIPS32R5EB-NEXT: addiu $7, $zero, 8
6806 ; MIPS32R5EB-NEXT: jal i24x2
6807 ; MIPS32R5EB-NEXT: nop
6808 ; MIPS32R5EB-NEXT: lui $1, %hi(gv2i24)
6809 ; MIPS32R5EB-NEXT: addiu $4, $1, %lo(gv2i24)
6810 ; MIPS32R5EB-NEXT: sb $3, 5($4)
6811 ; MIPS32R5EB-NEXT: sb $2, 2($4)
6812 ; MIPS32R5EB-NEXT: srl $5, $3, 8
6813 ; MIPS32R5EB-NEXT: sb $5, 4($4)
6814 ; MIPS32R5EB-NEXT: srl $3, $3, 16
6815 ; MIPS32R5EB-NEXT: sb $3, 3($4)
6816 ; MIPS32R5EB-NEXT: srl $2, $2, 8
6817 ; MIPS32R5EB-NEXT: sh $2, %lo(gv2i24)($1)
6818 ; MIPS32R5EB-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
6819 ; MIPS32R5EB-NEXT: addiu $sp, $sp, 24
6820 ; MIPS32R5EB-NEXT: jr $ra
6821 ; MIPS32R5EB-NEXT: nop
6823 ; MIPS64R5EB-LABEL: call_i24x2:
6824 ; MIPS64R5EB: # %bb.0: # %entry
6825 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, -32
6826 ; MIPS64R5EB-NEXT: .cfi_def_cfa_offset 32
6827 ; MIPS64R5EB-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
6828 ; MIPS64R5EB-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
6829 ; MIPS64R5EB-NEXT: .cfi_offset 31, -8
6830 ; MIPS64R5EB-NEXT: .cfi_offset 28, -16
6831 ; MIPS64R5EB-NEXT: lui $1, %hi(%neg(%gp_rel(call_i24x2)))
6832 ; MIPS64R5EB-NEXT: daddu $1, $1, $25
6833 ; MIPS64R5EB-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i24x2)))
6834 ; MIPS64R5EB-NEXT: ld $25, %call16(i24x2)($gp)
6835 ; MIPS64R5EB-NEXT: daddiu $4, $zero, 6
6836 ; MIPS64R5EB-NEXT: daddiu $5, $zero, 7
6837 ; MIPS64R5EB-NEXT: daddiu $6, $zero, 12
6838 ; MIPS64R5EB-NEXT: daddiu $7, $zero, 8
6839 ; MIPS64R5EB-NEXT: jalr $25
6840 ; MIPS64R5EB-NEXT: nop
6841 ; MIPS64R5EB-NEXT: sw $3, 12($sp)
6842 ; MIPS64R5EB-NEXT: sw $2, 4($sp)
6843 ; MIPS64R5EB-NEXT: ld.d $w0, 0($sp)
6844 ; MIPS64R5EB-NEXT: copy_s.d $1, $w0[0]
6845 ; MIPS64R5EB-NEXT: copy_s.d $2, $w0[1]
6846 ; MIPS64R5EB-NEXT: ld $3, %got_disp(gv2i24)($gp)
6847 ; MIPS64R5EB-NEXT: sb $2, 5($3)
6848 ; MIPS64R5EB-NEXT: sb $1, 2($3)
6849 ; MIPS64R5EB-NEXT: dsrl $4, $2, 8
6850 ; MIPS64R5EB-NEXT: sb $4, 4($3)
6851 ; MIPS64R5EB-NEXT: dsrl $2, $2, 16
6852 ; MIPS64R5EB-NEXT: sb $2, 3($3)
6853 ; MIPS64R5EB-NEXT: dsrl $1, $1, 8
6854 ; MIPS64R5EB-NEXT: sh $1, 0($3)
6855 ; MIPS64R5EB-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
6856 ; MIPS64R5EB-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
6857 ; MIPS64R5EB-NEXT: daddiu $sp, $sp, 32
6858 ; MIPS64R5EB-NEXT: jr $ra
6859 ; MIPS64R5EB-NEXT: nop
6861 ; MIPS32EL-LABEL: call_i24x2:
6862 ; MIPS32EL: # %bb.0: # %entry
6863 ; MIPS32EL-NEXT: addiu $sp, $sp, -24
6864 ; MIPS32EL-NEXT: .cfi_def_cfa_offset 24
6865 ; MIPS32EL-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
6866 ; MIPS32EL-NEXT: .cfi_offset 31, -4
6867 ; MIPS32EL-NEXT: addiu $4, $zero, 6
6868 ; MIPS32EL-NEXT: addiu $5, $zero, 7
6869 ; MIPS32EL-NEXT: addiu $6, $zero, 12
6870 ; MIPS32EL-NEXT: addiu $7, $zero, 8
6871 ; MIPS32EL-NEXT: jal i24x2
6872 ; MIPS32EL-NEXT: nop
6873 ; MIPS32EL-NEXT: lui $1, %hi(gv2i24)
6874 ; MIPS32EL-NEXT: addiu $4, $1, %lo(gv2i24)
6875 ; MIPS32EL-NEXT: sb $3, 3($4)
6876 ; MIPS32EL-NEXT: sh $2, %lo(gv2i24)($1)
6877 ; MIPS32EL-NEXT: srl $1, $3, 8
6878 ; MIPS32EL-NEXT: sb $1, 4($4)
6879 ; MIPS32EL-NEXT: srl $1, $3, 16
6880 ; MIPS32EL-NEXT: sb $1, 5($4)
6881 ; MIPS32EL-NEXT: srl $1, $2, 16
6882 ; MIPS32EL-NEXT: sb $1, 2($4)
6883 ; MIPS32EL-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
6884 ; MIPS32EL-NEXT: addiu $sp, $sp, 24
6885 ; MIPS32EL-NEXT: jr $ra
6886 ; MIPS32EL-NEXT: nop
6888 ; MIPS64EL-LABEL: call_i24x2:
6889 ; MIPS64EL: # %bb.0: # %entry
6890 ; MIPS64EL-NEXT: daddiu $sp, $sp, -16
6891 ; MIPS64EL-NEXT: .cfi_def_cfa_offset 16
6892 ; MIPS64EL-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
6893 ; MIPS64EL-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
6894 ; MIPS64EL-NEXT: .cfi_offset 31, -8
6895 ; MIPS64EL-NEXT: .cfi_offset 28, -16
6896 ; MIPS64EL-NEXT: lui $1, %hi(%neg(%gp_rel(call_i24x2)))
6897 ; MIPS64EL-NEXT: daddu $1, $1, $25
6898 ; MIPS64EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i24x2)))
6899 ; MIPS64EL-NEXT: ld $25, %call16(i24x2)($gp)
6900 ; MIPS64EL-NEXT: daddiu $4, $zero, 6
6901 ; MIPS64EL-NEXT: daddiu $5, $zero, 7
6902 ; MIPS64EL-NEXT: daddiu $6, $zero, 12
6903 ; MIPS64EL-NEXT: daddiu $7, $zero, 8
6904 ; MIPS64EL-NEXT: jalr $25
6905 ; MIPS64EL-NEXT: nop
6906 ; MIPS64EL-NEXT: ld $1, %got_disp(gv2i24)($gp)
6907 ; MIPS64EL-NEXT: sb $3, 3($1)
6908 ; MIPS64EL-NEXT: sh $2, 0($1)
6909 ; MIPS64EL-NEXT: srl $4, $3, 8
6910 ; MIPS64EL-NEXT: sb $4, 4($1)
6911 ; MIPS64EL-NEXT: srl $3, $3, 16
6912 ; MIPS64EL-NEXT: sb $3, 5($1)
6913 ; MIPS64EL-NEXT: srl $2, $2, 16
6914 ; MIPS64EL-NEXT: sb $2, 2($1)
6915 ; MIPS64EL-NEXT: ld $gp, 0($sp) # 8-byte Folded Reload
6916 ; MIPS64EL-NEXT: ld $ra, 8($sp) # 8-byte Folded Reload
6917 ; MIPS64EL-NEXT: daddiu $sp, $sp, 16
6918 ; MIPS64EL-NEXT: jr $ra
6919 ; MIPS64EL-NEXT: nop
6921 ; MIPS32R5EL-LABEL: call_i24x2:
6922 ; MIPS32R5EL: # %bb.0: # %entry
6923 ; MIPS32R5EL-NEXT: addiu $sp, $sp, -24
6924 ; MIPS32R5EL-NEXT: .cfi_def_cfa_offset 24
6925 ; MIPS32R5EL-NEXT: sw $ra, 20($sp) # 4-byte Folded Spill
6926 ; MIPS32R5EL-NEXT: .cfi_offset 31, -4
6927 ; MIPS32R5EL-NEXT: addiu $4, $zero, 6
6928 ; MIPS32R5EL-NEXT: addiu $5, $zero, 7
6929 ; MIPS32R5EL-NEXT: addiu $6, $zero, 12
6930 ; MIPS32R5EL-NEXT: addiu $7, $zero, 8
6931 ; MIPS32R5EL-NEXT: jal i24x2
6932 ; MIPS32R5EL-NEXT: nop
6933 ; MIPS32R5EL-NEXT: lui $1, %hi(gv2i24)
6934 ; MIPS32R5EL-NEXT: addiu $4, $1, %lo(gv2i24)
6935 ; MIPS32R5EL-NEXT: sb $3, 3($4)
6936 ; MIPS32R5EL-NEXT: sh $2, %lo(gv2i24)($1)
6937 ; MIPS32R5EL-NEXT: srl $1, $3, 8
6938 ; MIPS32R5EL-NEXT: sb $1, 4($4)
6939 ; MIPS32R5EL-NEXT: srl $1, $3, 16
6940 ; MIPS32R5EL-NEXT: sb $1, 5($4)
6941 ; MIPS32R5EL-NEXT: srl $1, $2, 16
6942 ; MIPS32R5EL-NEXT: sb $1, 2($4)
6943 ; MIPS32R5EL-NEXT: lw $ra, 20($sp) # 4-byte Folded Reload
6944 ; MIPS32R5EL-NEXT: addiu $sp, $sp, 24
6945 ; MIPS32R5EL-NEXT: jr $ra
6946 ; MIPS32R5EL-NEXT: nop
6948 ; MIPS64R5EL-LABEL: call_i24x2:
6949 ; MIPS64R5EL: # %bb.0: # %entry
6950 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, -32
6951 ; MIPS64R5EL-NEXT: .cfi_def_cfa_offset 32
6952 ; MIPS64R5EL-NEXT: sd $ra, 24($sp) # 8-byte Folded Spill
6953 ; MIPS64R5EL-NEXT: sd $gp, 16($sp) # 8-byte Folded Spill
6954 ; MIPS64R5EL-NEXT: .cfi_offset 31, -8
6955 ; MIPS64R5EL-NEXT: .cfi_offset 28, -16
6956 ; MIPS64R5EL-NEXT: lui $1, %hi(%neg(%gp_rel(call_i24x2)))
6957 ; MIPS64R5EL-NEXT: daddu $1, $1, $25
6958 ; MIPS64R5EL-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(call_i24x2)))
6959 ; MIPS64R5EL-NEXT: ld $25, %call16(i24x2)($gp)
6960 ; MIPS64R5EL-NEXT: daddiu $4, $zero, 6
6961 ; MIPS64R5EL-NEXT: daddiu $5, $zero, 7
6962 ; MIPS64R5EL-NEXT: daddiu $6, $zero, 12
6963 ; MIPS64R5EL-NEXT: daddiu $7, $zero, 8
6964 ; MIPS64R5EL-NEXT: jalr $25
6965 ; MIPS64R5EL-NEXT: nop
6966 ; MIPS64R5EL-NEXT: sw $3, 8($sp)
6967 ; MIPS64R5EL-NEXT: sw $2, 0($sp)
6968 ; MIPS64R5EL-NEXT: ld.d $w0, 0($sp)
6969 ; MIPS64R5EL-NEXT: copy_s.d $1, $w0[0]
6970 ; MIPS64R5EL-NEXT: copy_s.d $2, $w0[1]
6971 ; MIPS64R5EL-NEXT: ld $3, %got_disp(gv2i24)($gp)
6972 ; MIPS64R5EL-NEXT: sb $2, 3($3)
6973 ; MIPS64R5EL-NEXT: sh $1, 0($3)
6974 ; MIPS64R5EL-NEXT: dsrl $4, $2, 8
6975 ; MIPS64R5EL-NEXT: sb $4, 4($3)
6976 ; MIPS64R5EL-NEXT: dsrl $2, $2, 16
6977 ; MIPS64R5EL-NEXT: sb $2, 5($3)
6978 ; MIPS64R5EL-NEXT: dsrl $1, $1, 16
6979 ; MIPS64R5EL-NEXT: sb $1, 2($3)
6980 ; MIPS64R5EL-NEXT: ld $gp, 16($sp) # 8-byte Folded Reload
6981 ; MIPS64R5EL-NEXT: ld $ra, 24($sp) # 8-byte Folded Reload
6982 ; MIPS64R5EL-NEXT: daddiu $sp, $sp, 32
6983 ; MIPS64R5EL-NEXT: jr $ra
6984 ; MIPS64R5EL-NEXT: nop
6986 %0 = call <2 x i24> @i24x2(<2 x i24> <i24 6, i24 7>, <2 x i24> <i24 12, i24 8>)
6987 store <2 x i24> %0, ptr @gv2i24