diff options
author | Dan Gohman <gohman@apple.com> | 2012-03-13 18:01:37 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2012-03-13 18:01:37 +0000 |
commit | eab06fa3c9928345615cb261a9d70e86b262fd46 (patch) | |
tree | 76a7c718c4de96f1696b777456f8c51d859f99cb | |
parent | ece209afbcd204b436442cb3bacc42f09d7894bd (diff) | |
download | bcm5719-llvm-eab06fa3c9928345615cb261a9d70e86b262fd46.tar.gz bcm5719-llvm-eab06fa3c9928345615cb261a9d70e86b262fd46.zip |
Teach globalopt how to evaluate an invoke with a non-void return type.
llvm-svn: 152634
-rw-r--r-- | llvm/lib/Transforms/IPO/GlobalOpt.cpp | 11 | ||||
-rw-r--r-- | llvm/test/Transforms/GlobalOpt/invoke.ll | 27 |
2 files changed, 33 insertions, 5 deletions
diff --git a/llvm/lib/Transforms/IPO/GlobalOpt.cpp b/llvm/lib/Transforms/IPO/GlobalOpt.cpp index cd0dcbfe729..a32e5509545 100644 --- a/llvm/lib/Transforms/IPO/GlobalOpt.cpp +++ b/llvm/lib/Transforms/IPO/GlobalOpt.cpp @@ -2561,11 +2561,6 @@ bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst, return false; delete ValueStack.pop_back_val(); InstResult = RetVal; - - if (InvokeInst *II = dyn_cast<InvokeInst>(CurInst)) { - NextBB = II->getNormalDest(); - return true; - } } } else if (isa<TerminatorInst>(CurInst)) { if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) { @@ -2610,6 +2605,12 @@ bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst, setVal(CurInst, InstResult); } + // If we just processed an invoke, we finished evaluating the block. + if (InvokeInst *II = dyn_cast<InvokeInst>(CurInst)) { + NextBB = II->getNormalDest(); + return true; + } + // Advance program counter. ++CurInst; } diff --git a/llvm/test/Transforms/GlobalOpt/invoke.ll b/llvm/test/Transforms/GlobalOpt/invoke.ll new file mode 100644 index 00000000000..c1f499c38a3 --- /dev/null +++ b/llvm/test/Transforms/GlobalOpt/invoke.ll @@ -0,0 +1,27 @@ +; RUN: opt -S -globalopt < %s | FileCheck %s +; rdar://11022897 + +; Globalopt should be able to evaluate an invoke. +; CHECK: @tmp = global i32 1 + +@llvm.global_ctors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @_GLOBAL__I_a }] +@tmp = global i32 0 + +define i32 @one() { + ret i32 1 +} + +define void @_GLOBAL__I_a() { +bb: + %tmp1 = invoke i32 @one() + to label %bb2 unwind label %bb4 + +bb2: ; preds = %bb + store i32 %tmp1, i32* @tmp + ret void + +bb4: ; preds = %bb + %tmp5 = landingpad { i8*, i32 } personality i8* undef + filter [0 x i8*] zeroinitializer + unreachable +} |