Chris Lattner | a9bac86 | 2010-04-30 22:37:22 +0000 | [diff] [blame] | 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. |
| 4 | |
Dmitri Gribenko | b137c9e | 2012-12-30 01:28:40 +0000 | [diff] [blame] | 5 | ; RUN: opt -inline -S < %s | FileCheck %s |
Chandler Carruth | 141bf5d | 2016-12-27 06:46:20 +0000 | [diff] [blame] | 6 | ; RUN: opt -passes='cgscc(inline)' -S < %s | FileCheck %s |
Chris Lattner | a9bac86 | 2010-04-30 22:37:22 +0000 | [diff] [blame] | 7 | |
| 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" |
| 10 | |
| 11 | @g = common global i32 0 ; <i32*> [#uses=1] |
| 12 | |
| 13 | define internal void @foo(i32 %x) nounwind ssp { |
| 14 | entry: |
Chris Lattner | a9bac86 | 2010-04-30 22:37:22 +0000 | [diff] [blame] | 15 | %0 = icmp slt i32 %x, 0 ; <i1> [#uses=1] |
| 16 | br i1 %0, label %return, label %bb |
| 17 | |
| 18 | bb: ; preds = %entry |
| 19 | %1 = sub nsw i32 %x, 1 ; <i32> [#uses=1] |
| 20 | call void @foo(i32 %1) nounwind ssp |
Chris Lattner | 6a144a2 | 2011-11-27 06:54:59 +0000 | [diff] [blame] | 21 | store volatile i32 1, i32* @g, align 4 |
Chris Lattner | a9bac86 | 2010-04-30 22:37:22 +0000 | [diff] [blame] | 22 | ret void |
| 23 | |
| 24 | return: ; preds = %entry |
| 25 | ret void |
| 26 | } |
| 27 | |
Chris Lattner | e826267 | 2010-05-01 01:05:10 +0000 | [diff] [blame] | 28 | |
Stephen Lin | c1c7a13 | 2013-07-14 01:42:54 +0000 | [diff] [blame] | 29 | ;; CHECK-LABEL: @bonk( |
Chris Lattner | e826267 | 2010-05-01 01:05:10 +0000 | [diff] [blame] | 30 | ;; CHECK: call void @foo(i32 42) |
Chris Lattner | a9bac86 | 2010-04-30 22:37:22 +0000 | [diff] [blame] | 31 | define void @bonk() nounwind ssp { |
| 32 | entry: |
| 33 | call void @foo(i32 42) nounwind ssp |
| 34 | ret void |
| 35 | } |
Chris Lattner | e826267 | 2010-05-01 01:05:10 +0000 | [diff] [blame] | 36 | |
| 37 | |
| 38 | |
| 39 | ;; Here is an indirect case that should not be infinitely inlined. |
| 40 | |
| 41 | define internal void @f1(i32 %x, i8* %Foo, i8* %Bar) nounwind ssp { |
| 42 | entry: |
| 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 |
Chris Lattner | 6a144a2 | 2011-11-27 06:54:59 +0000 | [diff] [blame] | 46 | store volatile i32 42, i32* @g, align 4 |
Chris Lattner | e826267 | 2010-05-01 01:05:10 +0000 | [diff] [blame] | 47 | ret void |
| 48 | } |
| 49 | |
| 50 | define internal void @f2(i32 %x, i8* %Foo, i8* %Bar) nounwind ssp { |
| 51 | entry: |
| 52 | %0 = icmp slt i32 %x, 0 ; <i1> [#uses=1] |
| 53 | br i1 %0, label %return, label %bb |
| 54 | |
| 55 | bb: ; preds = %entry |
| 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 |
Chris Lattner | 6a144a2 | 2011-11-27 06:54:59 +0000 | [diff] [blame] | 58 | store volatile i32 13, i32* @g, align 4 |
Chris Lattner | e826267 | 2010-05-01 01:05:10 +0000 | [diff] [blame] | 59 | ret void |
| 60 | |
| 61 | return: ; preds = %entry |
| 62 | ret void |
| 63 | } |
| 64 | |
| 65 | |
Stephen Lin | c1c7a13 | 2013-07-14 01:42:54 +0000 | [diff] [blame] | 66 | ; CHECK-LABEL: @top_level( |
Chris Lattner | e826267 | 2010-05-01 01:05:10 +0000 | [diff] [blame] | 67 | ; CHECK: call void @f2(i32 122 |
| 68 | ; Here we inline one instance of the cycle, but we don't want to completely |
| 69 | ; unroll it. |
| 70 | define void @top_level() nounwind ssp { |
| 71 | entry: |
| 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 |
| 73 | ret void |
| 74 | } |
Chandler Carruth | 0539c07 | 2012-03-31 12:42:41 +0000 | [diff] [blame] | 75 | |
| 76 | |
| 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) { |
| 80 | entry: |
| 81 | %is.zero = icmp eq i32 %i, 0 |
| 82 | br i1 %is.zero, label %zero.then, label %zero.else |
| 83 | |
| 84 | zero.then: |
| 85 | ret i32 0 |
| 86 | |
| 87 | zero.else: |
| 88 | %is.one = icmp eq i32 %i, 1 |
| 89 | br i1 %is.one, label %one.then, label %one.else |
| 90 | |
| 91 | one.then: |
| 92 | ret i32 1 |
| 93 | |
| 94 | one.else: |
| 95 | %i1 = sub i32 %i, 1 |
| 96 | %f1 = call i32 @fib(i32 %i1) |
| 97 | %i2 = sub i32 %i, 2 |
| 98 | %f2 = call i32 @fib(i32 %i2) |
| 99 | %f = add i32 %f1, %f2 |
| 100 | ret i32 %f |
| 101 | } |
| 102 | |
| 103 | define i32 @fib_caller() { |
Stephen Lin | c1c7a13 | 2013-07-14 01:42:54 +0000 | [diff] [blame] | 104 | ; CHECK-LABEL: @fib_caller( |
Chandler Carruth | 0539c07 | 2012-03-31 12:42:41 +0000 | [diff] [blame] | 105 | ; CHECK-NOT: call |
| 106 | ; CHECK: ret |
| 107 | %f1 = call i32 @fib(i32 0) |
| 108 | %f2 = call i32 @fib(i32 1) |
| 109 | %result = add i32 %f1, %f2 |
| 110 | ret i32 %result |
| 111 | } |