summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerolf Hoflehner <ghoflehner@apple.com>2014-04-17 19:14:06 +0000
committerGerolf Hoflehner <ghoflehner@apple.com>2014-04-17 19:14:06 +0000
commitd5e9413512a841b2a6cddd19ce1cccf2ff767054 (patch)
tree788927f1a681012d7543c655dea683d412170b36
parenta32348530f4dd2afaa695233e77d129b2d79451b (diff)
downloadllvm-d5e9413512a841b2a6cddd19ce1cccf2ff767054.tar.gz
llvm-d5e9413512a841b2a6cddd19ce1cccf2ff767054.tar.bz2
llvm-d5e9413512a841b2a6cddd19ce1cccf2ff767054.tar.xz
Reverse 206485.
After some discussions the preferred semantics of the always_inline attribute is inline always when the compiler can determine that it it safe to do so. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206487 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/IPA/InlineCost.cpp10
-rw-r--r--test/Transforms/Inline/always-inline-attribute.ll26
-rw-r--r--test/Transforms/Inline/always-inline.ll2
3 files changed, 3 insertions, 35 deletions
diff --git a/lib/Analysis/IPA/InlineCost.cpp b/lib/Analysis/IPA/InlineCost.cpp
index 683637f5b7..a803f8c3bf 100644
--- a/lib/Analysis/IPA/InlineCost.cpp
+++ b/lib/Analysis/IPA/InlineCost.cpp
@@ -1300,14 +1300,8 @@ bool InlineCostAnalysis::isInlineViable(Function &F) {
F.getAttributes().hasAttribute(AttributeSet::FunctionIndex,
Attribute::ReturnsTwice);
for (Function::iterator BI = F.begin(), BE = F.end(); BI != BE; ++BI) {
- // Disallow inlining of functions which contain an indirect branch,
- // unless the always_inline attribute is set.
- // The attribute serves as a assertion that no local address
- // like a block label can escpape the function.
- // Revisit enabling inlining for functions with indirect branches
- // when a more sophisticated espape/points-to analysis becomes available.
- if (isa<IndirectBrInst>(BI->getTerminator()) &&
- !F.hasFnAttribute(Attribute::AlwaysInline))
+ // Disallow inlining of functions which contain an indirect branch.
+ if (isa<IndirectBrInst>(BI->getTerminator()))
return false;
for (BasicBlock::iterator II = BI->begin(), IE = BI->end(); II != IE;
diff --git a/test/Transforms/Inline/always-inline-attribute.ll b/test/Transforms/Inline/always-inline-attribute.ll
deleted file mode 100644
index c146122e16..0000000000
--- a/test/Transforms/Inline/always-inline-attribute.ll
+++ /dev/null
@@ -1,26 +0,0 @@
-; RUN: opt < %s -O3 -S | FileCheck %s
-@gv = external global i32
-
-define i32 @main() nounwind {
-; CHECK-NOT: call i32 @foo
- %1 = load i32* @gv, align 4
- %2 = tail call i32 @foo(i32 %1)
- unreachable
-}
-
-define internal i32 @foo(i32) alwaysinline {
- br label %2
-
-; <label>:2 ; preds = %8, %1
- %3 = phi i32 [ %0, %1 ], [ %10, %8 ]
- %4 = phi i8* [ blockaddress(@foo, %2), %1 ], [ %6, %8 ]
- %5 = icmp eq i32 %3, 1
- %6 = select i1 %5, i8* blockaddress(@foo, %8), i8* %4
- %7 = add nsw i32 %3, -1
- br label %8
-
-; <label>:8 ; preds = %8, %2
- %9 = phi i32 [ %7, %2 ], [ %10, %8 ]
- %10 = add nsw i32 %9, -1
- indirectbr i8* %6, [label %2, label %8]
-}
diff --git a/test/Transforms/Inline/always-inline.ll b/test/Transforms/Inline/always-inline.ll
index 832e000eac..a8703b8987 100644
--- a/test/Transforms/Inline/always-inline.ll
+++ b/test/Transforms/Inline/always-inline.ll
@@ -78,7 +78,7 @@ entry:
ret i32 %add
}
-define i32 @inner5(i8* %addr) {
+define i32 @inner5(i8* %addr) alwaysinline {
entry:
indirectbr i8* %addr, [ label %one, label %two ]