[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / tail-call.ll
blob1a5599fcc508b2bbb230a676289c3a9099d996ae
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=aarch64-none-linux-gnu -tailcallopt | FileCheck %s --check-prefixes=SDAG,COMMON
2 ; RUN: llc -global-isel -global-isel-abort=1 -verify-machineinstrs < %s -mtriple=aarch64-none-linux-gnu -tailcallopt | FileCheck %s --check-prefixes=GISEL,COMMON
4 declare fastcc void @callee_stack0()
5 declare fastcc void @callee_stack8([8 x i64], i64)
6 declare fastcc void @callee_stack16([8 x i64], i64, i64)
7 declare extern_weak fastcc void @callee_weak()
9 define fastcc void @caller_to0_from0() nounwind {
10 ; COMMON-LABEL: caller_to0_from0:
11 ; COMMON-NEXT: // %bb.
13   tail call fastcc void @callee_stack0()
14   ret void
16 ; COMMON-NEXT: b callee_stack0
19 define fastcc void @caller_to0_from8([8 x i64], i64) #0 {
20 ; COMMON-LABEL: caller_to0_from8:
22   tail call fastcc void @callee_stack0()
23   ret void
25 ; COMMON: add sp, sp, #16
26 ; COMMON: .cfi_def_cfa_offset  -16
27 ; COMMON-NEXT: b callee_stack0
30 define fastcc void @caller_to8_from0() #0 {
31 ; COMMON-LABEL: caller_to8_from0:
33 ; Key point is that the "42" should go #16 below incoming stack
34 ; pointer (we didn't have arg space to reuse).
35   tail call fastcc void @callee_stack8([8 x i64] undef, i64 42)
36   ret void
38 ; COMMON: str {{x[0-9]+}}, [sp, #-16]!
39 ; COMMON-NEXT: .cfi_def_cfa_offset 16
40 ; COMMON-NEXT: b callee_stack8
43 define fastcc void @caller_to8_from8([8 x i64], i64 %a) #0 {
44 ; COMMON-LABEL: caller_to8_from8:
45 ; COMMON-NOT: sub sp,
47 ; Key point is that the "%a" should go where at SP on entry.
48   tail call fastcc void @callee_stack8([8 x i64] undef, i64 42)
49   ret void
51 ; COMMON: str {{x[0-9]+}}, [sp]
52 ; COMMON-NEXT: b callee_stack8
55 define fastcc void @caller_to16_from8([8 x i64], i64 %a) #0 {
56 ; COMMON-LABEL: caller_to16_from8:
57 ; COMMON-NOT: sub sp,
59 ; Important point is that the call reuses the "dead" argument space
60 ; above %a on the stack. If it tries to go below incoming-SP then the
61 ; callee will not deallocate the space, even in fastcc.
62   tail call fastcc void @callee_stack16([8 x i64] undef, i64 42, i64 2)
64 ; COMMON: stp {{x[0-9]+}}, {{x[0-9]+}}, [sp]
65 ; COMMON-NEXT: b callee_stack16
66   ret void
70 define fastcc void @caller_to8_from24([8 x i64], i64 %a, i64 %b, i64 %c) #0 {
71 ; COMMON-LABEL: caller_to8_from24:
72 ; COMMON-NOT: sub sp,
74 ; Key point is that the "%a" should go where at #16 above SP on entry.
75   tail call fastcc void @callee_stack8([8 x i64] undef, i64 42)
76   ret void
78 ; COMMON: str {{x[0-9]+}}, [sp, #16]!
79 ; COMMON: .cfi_def_cfa_offset  -16
80 ; COMMON-NEXT: b callee_stack8
84 define fastcc void @caller_to16_from16([8 x i64], i64 %a, i64 %b) #0 {
85 ; COMMON-LABEL: caller_to16_from16:
86 ; COMMON-NOT: sub sp,
88 ; Here we want to make sure that both loads happen before the stores:
89 ; otherwise either %a or %b will be wrongly clobbered.
90   tail call fastcc void @callee_stack16([8 x i64] undef, i64 %b, i64 %a)
91   ret void
93 ; COMMON: ldp {{x[0-9]+}}, {{x[0-9]+}}, [sp]
94 ; COMMON: stp {{x[0-9]+}}, {{x[0-9]+}}, [sp]
95 ; COMMON-NEXT: b callee_stack16
98 define fastcc void @disable_tail_calls() nounwind "disable-tail-calls"="true" {
99 ; COMMON-LABEL: disable_tail_calls:
100 ; COMMON-NEXT: // %bb.
102   tail call fastcc void @callee_stack0()
103   ret void
105 ; COMMON: bl callee_stack0
106 ; COMMON: ret
109 ; Weakly-referenced extern functions cannot be tail-called, as AAELF does
110 ; not define the behaviour of branch instructions to undefined weak symbols.
111 define fastcc void @caller_weak() #0 {
112 ; COMMON-LABEL: caller_weak:
113 ; COMMON: bl callee_weak
114   tail call void @callee_weak()
115   ret void
118 declare { [2 x float] } @get_vec2()
120 define { [3 x float] } @test_add_elem() #0 {
121 ; SDAG-LABEL: test_add_elem:
122 ; SDAG: bl get_vec2
123 ; SDAG: fmov s2, #1.0
124 ; SDAG: ret
125 ; GISEL-LABEL: test_add_elem:
126 ; GISEL: str    x30, [sp, #-16]!
127 ; GISEL: bl get_vec2
128 ; GISEL: fmov   s2, #1.0
129 ; GISEL: ldr    x30, [sp], #16
130 ; GISEL: ret
132   %call = tail call { [2 x float] } @get_vec2()
133   %arr = extractvalue { [2 x float] } %call, 0
134   %arr.0 = extractvalue [2 x float] %arr, 0
135   %arr.1 = extractvalue [2 x float] %arr, 1
137   %res.0 = insertvalue { [3 x float] } undef, float %arr.0, 0, 0
138   %res.01 = insertvalue { [3 x float] } %res.0, float %arr.1, 0, 1
139   %res.012 = insertvalue { [3 x float] } %res.01, float 1.000000e+00, 0, 2
140   ret { [3 x float] } %res.012
143 declare double @get_double()
144 define { double, [2 x double] } @test_mismatched_insert() #0 {
145 ; COMMON-LABEL: test_mismatched_insert:
146 ; COMMON: bl get_double
147 ; COMMON: bl get_double
148 ; COMMON: bl get_double
149 ; COMMON: ret
151   %val0 = call double @get_double()
152   %val1 = call double @get_double()
153   %val2 = tail call double @get_double()
155   %res.0 = insertvalue { double, [2 x double] } undef, double %val0, 0
156   %res.01 = insertvalue { double, [2 x double] } %res.0, double %val1, 1, 0
157   %res.012 = insertvalue { double, [2 x double] } %res.01, double %val2, 1, 1
159   ret { double, [2 x double] } %res.012
162 attributes #0 = { uwtable }