1 ; The inliner should never inline recursive functions into other functions.
2 ; This effectively is just peeling off the first iteration of a loop, and the
3 ; inliner heuristics are not set up for this.
5 ; RUN: opt -inline -S < %s | FileCheck %s
6 ; RUN: opt -passes='cgscc(inline)' -S < %s | FileCheck %s
8 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
9 target triple = "x86_64-apple-darwin10.3"
11 @g = common global i32 0 ; <i32*> [#uses=1]
13 define internal void @foo(i32 %x) nounwind ssp {
15 %0 = icmp slt i32 %x, 0 ; <i1> [#uses=1]
16 br i1 %0, label %return, label %bb
19 %1 = sub nsw i32 %x, 1 ; <i32> [#uses=1]
20 call void @foo(i32 %1) nounwind ssp
21 store volatile i32 1, i32* @g, align 4
24 return: ; preds = %entry
29 ;; CHECK-LABEL: @bonk(
30 ;; CHECK: call void @foo(i32 42)
31 define void @bonk() nounwind ssp {
33 call void @foo(i32 42) nounwind ssp
39 ;; Here is an indirect case that should not be infinitely inlined.
41 define internal void @f1(i32 %x, i8* %Foo, i8* %Bar) nounwind ssp {
43 %0 = bitcast i8* %Bar to void (i32, i8*, i8*)*
44 %1 = sub nsw i32 %x, 1
45 call void %0(i32 %1, i8* %Foo, i8* %Bar) nounwind
46 store volatile i32 42, i32* @g, align 4
50 define internal void @f2(i32 %x, i8* %Foo, i8* %Bar) nounwind ssp {
52 %0 = icmp slt i32 %x, 0 ; <i1> [#uses=1]
53 br i1 %0, label %return, label %bb
56 %1 = bitcast i8* %Foo to void (i32, i8*, i8*)* ; <void (i32, i8*, i8*)*> [#uses=1]
57 call void %1(i32 %x, i8* %Foo, i8* %Bar) nounwind
58 store volatile i32 13, i32* @g, align 4
61 return: ; preds = %entry
66 ; CHECK-LABEL: @top_level(
67 ; CHECK: call void @f2(i32 122
68 ; Here we inline one instance of the cycle, but we don't want to completely
70 define void @top_level() nounwind ssp {
72 call void @f2(i32 123, i8* bitcast (void (i32, i8*, i8*)* @f1 to i8*), i8* bitcast (void (i32, i8*, i8*)* @f2 to i8*)) nounwind ssp
77 ; Check that a recursive function, when called with a constant that makes the
78 ; recursive path dead code can actually be inlined.
79 define i32 @fib(i32 %i) {
81 %is.zero = icmp eq i32 %i, 0
82 br i1 %is.zero, label %zero.then, label %zero.else
88 %is.one = icmp eq i32 %i, 1
89 br i1 %is.one, label %one.then, label %one.else
96 %f1 = call i32 @fib(i32 %i1)
98 %f2 = call i32 @fib(i32 %i2)
103 define i32 @fib_caller() {
104 ; CHECK-LABEL: @fib_caller(
107 %f1 = call i32 @fib(i32 0)
108 %f2 = call i32 @fib(i32 1)
109 %result = add i32 %f1, %f2