[opaque pointer type] Add textual IR support for explicit type parameter to the call...
[oota-llvm.git] / test / CodeGen / SPARC / 64abi.ll
1 ; RUN: llc < %s -march=sparcv9 -disable-sparc-delay-filler -disable-sparc-leaf-proc | FileCheck %s
2
3 ; CHECK: intarg
4 ; The save/restore frame is not strictly necessary here, but we would need to
5 ; refer to %o registers instead.
6 ; CHECK: save %sp, -128, %sp
7 ; CHECK: stb %i0, [%i4]
8 ; CHECK: stb %i1, [%i4]
9 ; CHECK: sth %i2, [%i4]
10 ; CHECK: st  %i3, [%i4]
11 ; CHECK: stx %i4, [%i4]
12 ; CHECK: st  %i5, [%i4]
13 ; CHECK: ld [%fp+2227], [[R:%[gilo][0-7]]]
14 ; CHECK: st  [[R]], [%i4]
15 ; CHECK: ldx [%fp+2231], [[R:%[gilo][0-7]]]
16 ; CHECK: stx [[R]], [%i4]
17 ; CHECK: restore
18 define void @intarg(i8  %a0,   ; %i0
19                     i8  %a1,   ; %i1
20                     i16 %a2,   ; %i2
21                     i32 %a3,   ; %i3
22                     i8* %a4,   ; %i4
23                     i32 %a5,   ; %i5
24                     i32 signext %a6,   ; [%fp+BIAS+176]
25                     i8* %a7) { ; [%fp+BIAS+184]
26   store i8 %a0, i8* %a4
27   store i8 %a1, i8* %a4
28   %p16 = bitcast i8* %a4 to i16*
29   store i16 %a2, i16* %p16
30   %p32 = bitcast i8* %a4 to i32*
31   store i32 %a3, i32* %p32
32   %pp = bitcast i8* %a4 to i8**
33   store i8* %a4, i8** %pp
34   store i32 %a5, i32* %p32
35   store i32 %a6, i32* %p32
36   store i8* %a7, i8** %pp
37   ret void
38 }
39
40 ; CHECK: call_intarg
41 ; 16 saved + 8 args.
42 ; CHECK: save %sp, -192, %sp
43 ; Sign-extend and store the full 64 bits.
44 ; CHECK: sra %i0, 0, [[R:%[gilo][0-7]]]
45 ; CHECK: stx [[R]], [%sp+2223]
46 ; Use %o0-%o5 for outgoing arguments
47 ; CHECK: mov 5, %o5
48 ; CHECK: call intarg
49 ; CHECK-NOT: add %sp
50 ; CHECK: restore
51 define void @call_intarg(i32 %i0, i8* %i1) {
52   call void @intarg(i8 0, i8 1, i16 2, i32 3, i8* undef, i32 5, i32 %i0, i8* %i1)
53   ret void
54 }
55
56 ; CHECK: floatarg
57 ; CHECK: save %sp, -128, %sp
58 ; CHECK: fstod %f1,
59 ; CHECK: faddd %f2,
60 ; CHECK: faddd %f4,
61 ; CHECK: faddd %f6,
62 ; CHECK: ld [%fp+2307], [[F:%f[0-9]+]]
63 ; CHECK: fadds %f31, [[F]]
64 define double @floatarg(float %a0,    ; %f1
65                         double %a1,   ; %d2
66                         double %a2,   ; %d4
67                         double %a3,   ; %d6
68                         float %a4,    ; %f9
69                         float %a5,    ; %f11
70                         float %a6,    ; %f13
71                         float %a7,    ; %f15
72                         float %a8,    ; %f17
73                         float %a9,    ; %f19
74                         float %a10,   ; %f21
75                         float %a11,   ; %f23
76                         float %a12,   ; %f25
77                         float %a13,   ; %f27
78                         float %a14,   ; %f29
79                         float %a15,   ; %f31
80                         float %a16,   ; [%fp+BIAS+256] (using 8 bytes)
81                         double %a17) { ; [%fp+BIAS+264] (using 8 bytes)
82   %d0 = fpext float %a0 to double
83   %s1 = fadd double %a1, %d0
84   %s2 = fadd double %a2, %s1
85   %s3 = fadd double %a3, %s2
86   %s16 = fadd float %a15, %a16
87   %d16 = fpext float %s16 to double
88   %s17 = fadd double %d16, %s3
89   ret double %s17
90 }
91
92 ; CHECK: call_floatarg
93 ; CHECK: save %sp, -272, %sp
94 ; Store 4 bytes, right-aligned in slot.
95 ; CHECK: st %f1, [%sp+2307]
96 ; Store 8 bytes in full slot.
97 ; CHECK: std %f2, [%sp+2311]
98 ; CHECK: fmovd %f2, %f4
99 ; CHECK: call floatarg
100 ; CHECK-NOT: add %sp
101 ; CHECK: restore
102 define void @call_floatarg(float %f1, double %d2, float %f5, double *%p) {
103   %r = call double @floatarg(float %f5, double %d2, double %d2, double %d2,
104                              float %f5, float %f5,  float %f5,  float %f5,
105                              float %f5, float %f5,  float %f5,  float %f5,
106                              float %f5, float %f5,  float %f5,  float %f5,
107                              float %f1, double %d2)
108   store double %r, double* %p
109   ret void
110 }
111
112 ; CHECK: mixedarg
113 ; CHECK: fstod %f3
114 ; CHECK: faddd %f6
115 ; CHECK: faddd %f16
116 ; CHECK: ldx [%fp+2231]
117 ; CHECK: ldx [%fp+2247]
118 define void @mixedarg(i8 %a0,      ; %i0
119                       float %a1,   ; %f3
120                       i16 %a2,     ; %i2
121                       double %a3,  ; %d6
122                       i13 %a4,     ; %i4
123                       float %a5,   ; %f11
124                       i64 %a6,     ; [%fp+BIAS+176]
125                       double *%a7, ; [%fp+BIAS+184]
126                       double %a8,  ; %d16
127                       i16* %a9) {  ; [%fp+BIAS+200]
128   %d1 = fpext float %a1 to double
129   %s3 = fadd double %a3, %d1
130   %s8 = fadd double %a8, %s3
131   store double %s8, double* %a7
132   store i16 %a2, i16* %a9
133   ret void
134 }
135
136 ; CHECK: call_mixedarg
137 ; CHECK: stx %i2, [%sp+2247]
138 ; CHECK: stx %i0, [%sp+2223]
139 ; CHECK: fmovd %f2, %f6
140 ; CHECK: fmovd %f2, %f16
141 ; CHECK: call mixedarg
142 ; CHECK-NOT: add %sp
143 ; CHECK: restore
144 define void @call_mixedarg(i64 %i0, double %f2, i16* %i2) {
145   call void @mixedarg(i8 undef,
146                       float undef,
147                       i16 undef,
148                       double %f2,
149                       i13 undef,
150                       float undef,
151                       i64 %i0,
152                       double* undef,
153                       double %f2,
154                       i16* %i2)
155   ret void
156 }
157
158 ; The inreg attribute is used to indicate 32-bit sized struct elements that
159 ; share an 8-byte slot.
160 ; CHECK: inreg_fi
161 ; CHECK: fstoi %f1
162 ; CHECK: srlx %i0, 32, [[R:%[gilo][0-7]]]
163 ; CHECK: sub [[R]],
164 define i32 @inreg_fi(i32 inreg %a0,     ; high bits of %i0
165                      float inreg %a1) { ; %f1
166   %b1 = fptosi float %a1 to i32
167   %rv = sub i32 %a0, %b1
168   ret i32 %rv
169 }
170
171 ; CHECK: call_inreg_fi
172 ; Allocate space for 6 arguments, even when only 2 are used.
173 ; CHECK: save %sp, -176, %sp
174 ; CHECK: sllx %i1, 32, %o0
175 ; CHECK: fmovs %f5, %f1
176 ; CHECK: call inreg_fi
177 define void @call_inreg_fi(i32* %p, i32 %i1, float %f5) {
178   %x = call i32 @inreg_fi(i32 %i1, float %f5)
179   ret void
180 }
181
182 ; CHECK: inreg_ff
183 ; CHECK: fsubs %f0, %f1, %f0
184 define float @inreg_ff(float inreg %a0,   ; %f0
185                        float inreg %a1) { ; %f1
186   %rv = fsub float %a0, %a1
187   ret float %rv
188 }
189
190 ; CHECK: call_inreg_ff
191 ; CHECK: fmovs %f3, %f0
192 ; CHECK: fmovs %f5, %f1
193 ; CHECK: call inreg_ff
194 define void @call_inreg_ff(i32* %p, float %f3, float %f5) {
195   %x = call float @inreg_ff(float %f3, float %f5)
196   ret void
197 }
198
199 ; CHECK: inreg_if
200 ; CHECK: fstoi %f0
201 ; CHECK: sub %i0
202 define i32 @inreg_if(float inreg %a0, ; %f0
203                      i32 inreg %a1) { ; low bits of %i0
204   %b0 = fptosi float %a0 to i32
205   %rv = sub i32 %a1, %b0
206   ret i32 %rv
207 }
208
209 ; CHECK: call_inreg_if
210 ; CHECK: fmovs %f3, %f0
211 ; CHECK: mov %i2, %o0
212 ; CHECK: call inreg_if
213 define void @call_inreg_if(i32* %p, float %f3, i32 %i2) {
214   %x = call i32 @inreg_if(float %f3, i32 %i2)
215   ret void
216 }
217
218 ; The frontend shouldn't do this. Just pass i64 instead.
219 ; CHECK: inreg_ii
220 ; CHECK: srlx %i0, 32, [[R:%[gilo][0-7]]]
221 ; CHECK: sub %i0, [[R]], %i0
222 define i32 @inreg_ii(i32 inreg %a0,   ; high bits of %i0
223                      i32 inreg %a1) { ; low bits of %i0
224   %rv = sub i32 %a1, %a0
225   ret i32 %rv
226 }
227
228 ; CHECK: call_inreg_ii
229 ; CHECK: srl %i2, 0, [[R2:%[gilo][0-7]]]
230 ; CHECK: sllx %i1, 32, [[R1:%[gilo][0-7]]]
231 ; CHECK: or [[R1]], [[R2]], %o0
232 ; CHECK: call inreg_ii
233 define void @call_inreg_ii(i32* %p, i32 %i1, i32 %i2) {
234   %x = call i32 @inreg_ii(i32 %i1, i32 %i2)
235   ret void
236 }
237
238 ; Structs up to 32 bytes in size can be returned in registers.
239 ; CHECK: ret_i64_pair
240 ; CHECK: ldx [%i2], %i0
241 ; CHECK: ldx [%i3], %i1
242 define { i64, i64 } @ret_i64_pair(i32 %a0, i32 %a1, i64* %p, i64* %q) {
243   %r1 = load i64, i64* %p
244   %rv1 = insertvalue { i64, i64 } undef, i64 %r1, 0
245   store i64 0, i64* %p
246   %r2 = load i64, i64* %q
247   %rv2 = insertvalue { i64, i64 } %rv1, i64 %r2, 1
248   ret { i64, i64 } %rv2
249 }
250
251 ; CHECK: call_ret_i64_pair
252 ; CHECK: call ret_i64_pair
253 ; CHECK: stx %o0, [%i0]
254 ; CHECK: stx %o1, [%i0]
255 define void @call_ret_i64_pair(i64* %i0) {
256   %rv = call { i64, i64 } @ret_i64_pair(i32 undef, i32 undef,
257                                         i64* undef, i64* undef)
258   %e0 = extractvalue { i64, i64 } %rv, 0
259   store i64 %e0, i64* %i0
260   %e1 = extractvalue { i64, i64 } %rv, 1
261   store i64 %e1, i64* %i0
262   ret void
263 }
264
265 ; This is not a C struct, the i32 member uses 8 bytes, but the float only 4.
266 ; CHECK: ret_i32_float_pair
267 ; CHECK: ld [%i2], %i0
268 ; CHECK: ld [%i3], %f2
269 define { i32, float } @ret_i32_float_pair(i32 %a0, i32 %a1,
270                                           i32* %p, float* %q) {
271   %r1 = load i32, i32* %p
272   %rv1 = insertvalue { i32, float } undef, i32 %r1, 0
273   store i32 0, i32* %p
274   %r2 = load float, float* %q
275   %rv2 = insertvalue { i32, float } %rv1, float %r2, 1
276   ret { i32, float } %rv2
277 }
278
279 ; CHECK: call_ret_i32_float_pair
280 ; CHECK: call ret_i32_float_pair
281 ; CHECK: st %o0, [%i0]
282 ; CHECK: st %f2, [%i1]
283 define void @call_ret_i32_float_pair(i32* %i0, float* %i1) {
284   %rv = call { i32, float } @ret_i32_float_pair(i32 undef, i32 undef,
285                                                 i32* undef, float* undef)
286   %e0 = extractvalue { i32, float } %rv, 0
287   store i32 %e0, i32* %i0
288   %e1 = extractvalue { i32, float } %rv, 1
289   store float %e1, float* %i1
290   ret void
291 }
292
293 ; This is a C struct, each member uses 4 bytes.
294 ; CHECK: ret_i32_float_packed
295 ; CHECK: ld [%i2], [[R:%[gilo][0-7]]]
296 ; CHECK: sllx [[R]], 32, %i0
297 ; CHECK: ld [%i3], %f1
298 define inreg { i32, float } @ret_i32_float_packed(i32 %a0, i32 %a1,
299                                                   i32* %p, float* %q) {
300   %r1 = load i32, i32* %p
301   %rv1 = insertvalue { i32, float } undef, i32 %r1, 0
302   store i32 0, i32* %p
303   %r2 = load float, float* %q
304   %rv2 = insertvalue { i32, float } %rv1, float %r2, 1
305   ret { i32, float } %rv2
306 }
307
308 ; CHECK: call_ret_i32_float_packed
309 ; CHECK: call ret_i32_float_packed
310 ; CHECK: srlx %o0, 32, [[R:%[gilo][0-7]]]
311 ; CHECK: st [[R]], [%i0]
312 ; CHECK: st %f1, [%i1]
313 define void @call_ret_i32_float_packed(i32* %i0, float* %i1) {
314   %rv = call { i32, float } @ret_i32_float_packed(i32 undef, i32 undef,
315                                                   i32* undef, float* undef)
316   %e0 = extractvalue { i32, float } %rv, 0
317   store i32 %e0, i32* %i0
318   %e1 = extractvalue { i32, float } %rv, 1
319   store float %e1, float* %i1
320   ret void
321 }
322
323 ; The C frontend should use i64 to return { i32, i32 } structs, but verify that
324 ; we don't miscompile thi case where both struct elements are placed in %i0.
325 ; CHECK: ret_i32_packed
326 ; CHECK: ld [%i2], [[R1:%[gilo][0-7]]]
327 ; CHECK: ld [%i3], [[R2:%[gilo][0-7]]]
328 ; CHECK: sllx [[R2]], 32, [[R3:%[gilo][0-7]]]
329 ; CHECK: or [[R3]], [[R1]], %i0
330 define inreg { i32, i32 } @ret_i32_packed(i32 %a0, i32 %a1,
331                                           i32* %p, i32* %q) {
332   %r1 = load i32, i32* %p
333   %rv1 = insertvalue { i32, i32 } undef, i32 %r1, 1
334   store i32 0, i32* %p
335   %r2 = load i32, i32* %q
336   %rv2 = insertvalue { i32, i32 } %rv1, i32 %r2, 0
337   ret { i32, i32 } %rv2
338 }
339
340 ; CHECK: call_ret_i32_packed
341 ; CHECK: call ret_i32_packed
342 ; CHECK: srlx %o0, 32, [[R:%[gilo][0-7]]]
343 ; CHECK: st [[R]], [%i0]
344 ; CHECK: st %o0, [%i1]
345 define void @call_ret_i32_packed(i32* %i0, i32* %i1) {
346   %rv = call { i32, i32 } @ret_i32_packed(i32 undef, i32 undef,
347                                           i32* undef, i32* undef)
348   %e0 = extractvalue { i32, i32 } %rv, 0
349   store i32 %e0, i32* %i0
350   %e1 = extractvalue { i32, i32 } %rv, 1
351   store i32 %e1, i32* %i1
352   ret void
353 }
354
355 ; The return value must be sign-extended to 64 bits.
356 ; CHECK: ret_sext
357 ; CHECK: sra %i0, 0, %i0
358 define signext i32 @ret_sext(i32 %a0) {
359   ret i32 %a0
360 }
361
362 ; CHECK: ret_zext
363 ; CHECK: srl %i0, 0, %i0
364 define zeroext i32 @ret_zext(i32 %a0) {
365   ret i32 %a0
366 }
367
368 ; CHECK: ret_nosext
369 ; CHECK-NOT: sra
370 define signext i32 @ret_nosext(i32 signext %a0) {
371   ret i32 %a0
372 }
373
374 ; CHECK: ret_nozext
375 ; CHECK-NOT: srl
376 define signext i32 @ret_nozext(i32 signext %a0) {
377   ret i32 %a0
378 }
379
380 ; CHECK-LABEL: test_register_directive
381 ; CHECK:       .register %g2, #scratch
382 ; CHECK:       .register %g3, #scratch
383 ; CHECK:       add %i0, 2, %g2
384 ; CHECK:       add %i0, 3, %g3
385 define i32 @test_register_directive(i32 %i0) {
386 entry:
387   %0 = add nsw i32 %i0, 2
388   %1 = add nsw i32 %i0, 3
389   tail call void asm sideeffect "", "r,r,~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{i0},~{i1},~{i2},~{i3},~{i4},~{i5},~{i6},~{i7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6},~{o7},~{g1},~{g4},~{g5},~{g6},~{g7}"(i32 %0, i32 %1)
390   %2 = add nsw i32 %0, %1
391   ret i32 %2
392 }
393
394 ; CHECK-LABEL: test_large_stack
395
396 ; CHECK:       sethi 16, %g1
397 ; CHECK:       xor %g1, -176, %g1
398 ; CHECK:       save %sp, %g1, %sp
399
400 ; CHECK:       sethi 14, %g1
401 ; CHECK:       xor %g1, -1, %g1
402 ; CHECK:       add %g1, %fp, %g1
403 ; CHECK:       call use_buf
404
405 define i32 @test_large_stack() {
406 entry:
407   %buffer1 = alloca [16384 x i8], align 8
408   %buffer1.sub = getelementptr inbounds [16384 x i8], [16384 x i8]* %buffer1, i32 0, i32 0
409   %0 = call i32 @use_buf(i32 16384, i8* %buffer1.sub)
410   ret i32 %0
411 }
412
413 declare i32 @use_buf(i32, i8*)
414
415 ; CHECK-LABEL: test_fp128_args
416 ; CHECK-DAG:   std %f0, [%fp+{{.+}}]
417 ; CHECK-DAG:   std %f2, [%fp+{{.+}}]
418 ; CHECK-DAG:   std %f6, [%fp+{{.+}}]
419 ; CHECK-DAG:   std %f4, [%fp+{{.+}}]
420 ; CHECK:       add %fp, [[Offset:[0-9]+]], %o0
421 ; CHECK:       call _Qp_add
422 ; CHECK:       ldd [%fp+[[Offset]]], %f0
423 define fp128 @test_fp128_args(fp128 %a, fp128 %b) {
424 entry:
425   %0 = fadd fp128 %a, %b
426   ret fp128 %0
427 }
428
429 declare i64 @receive_fp128(i64 %a, ...)
430
431 ; CHECK-LABEL: test_fp128_variable_args
432 ; CHECK-DAG:   std %f4, [%sp+[[Offset0:[0-9]+]]]
433 ; CHECK-DAG:   std %f6, [%sp+[[Offset1:[0-9]+]]]
434 ; CHECK-DAG:   ldx [%sp+[[Offset0]]], %o2
435 ; CHECK-DAG:   ldx [%sp+[[Offset1]]], %o3
436 ; CHECK:       call receive_fp128
437 define i64 @test_fp128_variable_args(i64 %a, fp128 %b) {
438 entry:
439   %0 = call i64 (i64, ...) @receive_fp128(i64 %a, fp128 %b)
440   ret i64 %0
441 }
442
443 ; CHECK-LABEL: test_call_libfunc
444 ; CHECK:       st %f1, [%fp+[[Offset0:[0-9]+]]]
445 ; CHECK:       fmovs %f3, %f1
446 ; CHECK:       call cosf
447 ; CHECK:       st %f0, [%fp+[[Offset1:[0-9]+]]]
448 ; CHECK:       ld [%fp+[[Offset0]]], %f1
449 ; CHECK:       call sinf
450 ; CHECK:       ld [%fp+[[Offset1]]], %f1
451 ; CHECK:       fmuls %f1, %f0, %f0
452
453 define inreg float @test_call_libfunc(float %arg0, float %arg1) {
454 entry:
455   %0 = tail call inreg float @cosf(float %arg1)
456   %1 = tail call inreg float @sinf(float %arg0)
457   %2 = fmul float %0, %1
458   ret float %2
459 }
460
461 declare inreg float @cosf(float %arg) readnone nounwind
462 declare inreg float @sinf(float %arg) readnone nounwind
463
464