summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-09-19 23:00:52 +0000
committerBill Wendling <isanbard@gmail.com>2011-09-19 23:00:52 +0000
commitad027053fe39242529a619d70c87dd535b788bbe (patch)
treea9f7c2f733cd4ce548e091ee391bf4d32d0ecc07 /lib/Transforms/Utils
parent11f23c1a7260a1cb4b4eee20aea09676e15d55c0 (diff)
downloadllvm-ad027053fe39242529a619d70c87dd535b788bbe.tar.gz
llvm-ad027053fe39242529a619d70c87dd535b788bbe.tar.bz2
llvm-ad027053fe39242529a619d70c87dd535b788bbe.tar.xz
If we are extracting a basic block that ends in an invoke call, we must also
extract the landing pad block. Otherwise, there will be a situation where the invoke's unwind edge lands on a non-landing pad. We also forbid the user from extracting the landing pad block by itself. Again, this is not a valid transformation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils')
-rw-r--r--lib/Transforms/Utils/CodeExtractor.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/CodeExtractor.cpp b/lib/Transforms/Utils/CodeExtractor.cpp
index 126056b844..8b9768520e 100644
--- a/lib/Transforms/Utils/CodeExtractor.cpp
+++ b/lib/Transforms/Utils/CodeExtractor.cpp
@@ -664,7 +664,13 @@ ExtractCodeRegion(const std::vector<BasicBlock*> &code) {
// * Pass in uses as args
// 3) Move code region, add call instr to func
//
- BlocksToExtract.insert(code.begin(), code.end());
+ for (std::vector<BasicBlock*>::const_iterator
+ I = code.begin(), E = code.end(); I != E; ++I) {
+ BasicBlock *BB = *I;
+ BlocksToExtract.insert(BB);
+ if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()))
+ BlocksToExtract.insert(II->getUnwindDest());
+ }
Values inputs, outputs;
@@ -788,6 +794,7 @@ Function* llvm::ExtractLoop(DominatorTree &DT, Loop *L, bool AggregateArgs) {
/// ExtractBasicBlock - slurp a basic block into a brand new function
///
Function* llvm::ExtractBasicBlock(BasicBlock *BB, bool AggregateArgs) {
+ if (BB->isLandingPad()) return 0;
std::vector<BasicBlock*> Blocks;
Blocks.push_back(BB);
return CodeExtractor(0, AggregateArgs).ExtractCodeRegion(Blocks);