summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorNuno Lopes <nunoplopes@sapo.pt>2012-06-28 22:32:27 +0000
committerNuno Lopes <nunoplopes@sapo.pt>2012-06-28 22:32:27 +0000
commitb97a4e8bc241aa0739474d4f14388fd9f7991f03 (patch)
treec959faed02a0f50b7bb7185fc772ea263c77e9d1 /llvm/lib/Transforms
parent9ac4661afa65ac809c9cd562a25ee8cfb362cb83 (diff)
downloadbcm5719-llvm-b97a4e8bc241aa0739474d4f14388fd9f7991f03.tar.gz
bcm5719-llvm-b97a4e8bc241aa0739474d4f14388fd9f7991f03.zip
make simplifyCFG erase invokes to readonly/readnone functions
llvm-svn: 159385
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp b/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
index 594369780ac..bdcf9887b7c 100644
--- a/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
+++ b/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
@@ -89,7 +89,6 @@ static void ChangeToUnreachable(Instruction *I, bool UseLLVMTrap) {
/// ChangeToCall - Convert the specified invoke into a normal call.
static void ChangeToCall(InvokeInst *II) {
- BasicBlock *BB = II->getParent();
SmallVector<Value*, 8> Args(II->op_begin(), II->op_end() - 3);
CallInst *NewCall = CallInst::Create(II->getCalledValue(), Args, "", II);
NewCall->takeName(II);
@@ -100,10 +99,7 @@ static void ChangeToCall(InvokeInst *II) {
// Follow the call by a branch to the normal destination.
BranchInst::Create(II->getNormalDest(), II);
-
- // Update PHI nodes in the unwind destination
- II->getUnwindDest()->removePredecessor(BB);
- BB->getInstList().erase(II);
+ II->eraseFromParent();
}
static bool MarkAliveBlocks(BasicBlock *BB,
@@ -163,7 +159,12 @@ static bool MarkAliveBlocks(BasicBlock *BB,
ChangeToUnreachable(II, true);
Changed = true;
} else if (II->doesNotThrow()) {
- ChangeToCall(II);
+ if (II->use_empty() && II->onlyReadsMemory()) {
+ // jump to the normal destination branch.
+ BranchInst::Create(II->getNormalDest(), II);
+ II->eraseFromParent();
+ } else
+ ChangeToCall(II);
Changed = true;
}
}
OpenPOWER on IntegriCloud