2010-11-30 23:55:39 +00:00
|
|
|
; RUN: llc < %s -mtriple=armv6-apple-darwin -mattr=+vfp2 -arm-tail-calls | FileCheck %s -check-prefix=CHECKV6
|
|
|
|
; RUN: llc < %s -mtriple=armv6-linux-gnueabi -relocation-model=pic -mattr=+vfp2 -arm-tail-calls | FileCheck %s -check-prefix=CHECKELF
|
2011-05-23 01:57:17 +00:00
|
|
|
; RUN: llc < %s -mtriple=thumbv7-apple-darwin -arm-tail-calls | FileCheck %s -check-prefix=CHECKT2D
|
2010-06-18 19:00:18 +00:00
|
|
|
|
|
|
|
@t = weak global i32 ()* null ; <i32 ()**> [#uses=1]
|
|
|
|
|
|
|
|
declare void @g(i32, i32, i32, i32)
|
|
|
|
|
2010-06-19 01:01:32 +00:00
|
|
|
define void @t1() {
|
|
|
|
; CHECKELF: t1:
|
2010-11-30 23:55:39 +00:00
|
|
|
; CHECKELF: bl g(PLT)
|
2010-06-18 19:00:18 +00:00
|
|
|
call void @g( i32 1, i32 2, i32 3, i32 4 )
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2010-06-19 01:01:32 +00:00
|
|
|
define void @t2() {
|
2010-11-30 23:55:39 +00:00
|
|
|
; CHECKV6: t2:
|
|
|
|
; CHECKV6: bx r0 @ TAILCALL
|
2010-06-18 19:00:18 +00:00
|
|
|
%tmp = load i32 ()** @t ; <i32 ()*> [#uses=1]
|
|
|
|
%tmp.upgrd.2 = tail call i32 %tmp( ) ; <i32> [#uses=0]
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2010-11-30 23:55:39 +00:00
|
|
|
define void @t3() {
|
|
|
|
; CHECKV6: t3:
|
|
|
|
; CHECKV6: b _t2 @ TAILCALL
|
|
|
|
; CHECKELF: t3:
|
|
|
|
; CHECKELF: b t2(PLT) @ TAILCALL
|
2011-05-23 01:57:17 +00:00
|
|
|
; CHECKT2D: t3:
|
|
|
|
; CHECKT2D: b.w _t2 @ TAILCALL
|
|
|
|
|
2010-07-08 01:18:23 +00:00
|
|
|
tail call void @t2( ) ; <i32> [#uses=0]
|
|
|
|
ret void
|
|
|
|
}
|
2010-11-30 23:55:39 +00:00
|
|
|
|
|
|
|
; Sibcall optimization of expanded libcalls. rdar://8707777
|
|
|
|
define double @t4(double %a) nounwind readonly ssp {
|
|
|
|
entry:
|
|
|
|
; CHECKV6: t4:
|
|
|
|
; CHECKV6: b _sin @ TAILCALL
|
|
|
|
; CHECKELF: t4:
|
|
|
|
; CHECKELF: b sin(PLT) @ TAILCALL
|
|
|
|
%0 = tail call double @sin(double %a) nounwind readonly ; <double> [#uses=1]
|
|
|
|
ret double %0
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @t5(float %a) nounwind readonly ssp {
|
|
|
|
entry:
|
|
|
|
; CHECKV6: t5:
|
|
|
|
; CHECKV6: b _sinf @ TAILCALL
|
|
|
|
; CHECKELF: t5:
|
|
|
|
; CHECKELF: b sinf(PLT) @ TAILCALL
|
|
|
|
%0 = tail call float @sinf(float %a) nounwind readonly ; <float> [#uses=1]
|
|
|
|
ret float %0
|
|
|
|
}
|
|
|
|
|
|
|
|
declare float @sinf(float) nounwind readonly
|
|
|
|
|
|
|
|
declare double @sin(double) nounwind readonly
|
|
|
|
|
|
|
|
define i32 @t6(i32 %a, i32 %b) nounwind readnone {
|
|
|
|
entry:
|
|
|
|
; CHECKV6: t6:
|
|
|
|
; CHECKV6: b ___divsi3 @ TAILCALL
|
|
|
|
; CHECKELF: t6:
|
|
|
|
; CHECKELF: b __aeabi_idiv(PLT) @ TAILCALL
|
|
|
|
%0 = sdiv i32 %a, %b
|
|
|
|
ret i32 %0
|
|
|
|
}
|
2011-01-25 01:28:33 +00:00
|
|
|
|
|
|
|
; Make sure the tail call instruction isn't deleted
|
|
|
|
; rdar://8309338
|
|
|
|
declare void @foo() nounwind
|
|
|
|
|
|
|
|
define void @t7() nounwind {
|
|
|
|
entry:
|
2011-05-23 01:57:17 +00:00
|
|
|
; CHECKT2D: t7:
|
|
|
|
; CHECKT2D: blxeq _foo
|
|
|
|
; CHECKT2D-NEXT: pop.w
|
|
|
|
; CHECKT2D-NEXT: b.w _foo
|
2011-01-25 01:28:33 +00:00
|
|
|
br i1 undef, label %bb, label %bb1.lr.ph
|
|
|
|
|
|
|
|
bb1.lr.ph:
|
|
|
|
tail call void @foo() nounwind
|
|
|
|
unreachable
|
|
|
|
|
|
|
|
bb:
|
|
|
|
tail call void @foo() nounwind
|
|
|
|
ret void
|
|
|
|
}
|