When inserting new instructions, use getFirstInsertionPt instead of

getFirstNonPHI so that it will skip over the landingpad instructions as well.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138537 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling
2011-08-25 01:08:34 +00:00
parent b8cfe4ff41
commit 89d4411cef
6 changed files with 18 additions and 17 deletions

View File

@@ -1145,7 +1145,7 @@ bool InstCombiner::transformConstExprCastCall(CallSite CS) {
// If this is an invoke instruction, we should insert it after the first // If this is an invoke instruction, we should insert it after the first
// non-phi, instruction in the normal successor block. // non-phi, instruction in the normal successor block.
if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) { if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
BasicBlock::iterator I = II->getNormalDest()->getFirstNonPHI(); BasicBlock::iterator I = II->getNormalDest()->getFirstInsertionPt();
InsertNewInstBefore(NC, *I); InsertNewInstBefore(NC, *I);
} else { } else {
// Otherwise, it's a call, just insert cast right after the call. // Otherwise, it's a call, just insert cast right after the call.

View File

@@ -909,7 +909,7 @@ BasicBlock::iterator PathProfiler::getInsertionPoint(BasicBlock* block, Value*
pathNumber) { pathNumber) {
if(pathNumber == NULL || isa<ConstantInt>(pathNumber) if(pathNumber == NULL || isa<ConstantInt>(pathNumber)
|| (((Instruction*)(pathNumber))->getParent()) != block) { || (((Instruction*)(pathNumber))->getParent()) != block) {
return(block->getFirstNonPHI()); return(block->getFirstInsertionPt());
} else { } else {
Instruction* pathNumberInst = (Instruction*) (pathNumber); Instruction* pathNumberInst = (Instruction*) (pathNumber);
BasicBlock::iterator insertPoint; BasicBlock::iterator insertPoint;
@@ -930,7 +930,7 @@ BasicBlock::iterator PathProfiler::getInsertionPoint(BasicBlock* block, Value*
// A PHINode is created in the node, and its values initialized to -1U. // A PHINode is created in the node, and its values initialized to -1U.
void PathProfiler::preparePHI(BLInstrumentationNode* node) { void PathProfiler::preparePHI(BLInstrumentationNode* node) {
BasicBlock* block = node->getBlock(); BasicBlock* block = node->getBlock();
BasicBlock::iterator insertPoint = block->getFirstNonPHI(); BasicBlock::iterator insertPoint = block->getFirstInsertionPt();
pred_iterator PB = pred_begin(node->getBlock()), pred_iterator PB = pred_begin(node->getBlock()),
PE = pred_end(node->getBlock()); PE = pred_end(node->getBlock());
PHINode* phi = PHINode::Create(Type::getInt32Ty(*Context), PHINode* phi = PHINode::Create(Type::getInt32Ty(*Context),
@@ -999,7 +999,7 @@ void PathProfiler::insertNumberIncrement(BLInstrumentationNode* node,
BasicBlock::iterator insertPoint; BasicBlock::iterator insertPoint;
if( atBeginning ) if( atBeginning )
insertPoint = block->getFirstNonPHI(); insertPoint = block->getFirstInsertionPt();
else else
insertPoint = block->getTerminator(); insertPoint = block->getTerminator();
@@ -1139,7 +1139,7 @@ void PathProfiler::insertInstrumentationStartingAt(BLInstrumentationEdge* edge,
} }
BasicBlock::iterator insertPoint = atBeginning ? BasicBlock::iterator insertPoint = atBeginning ?
instrumentNode->getBlock()->getFirstNonPHI() : instrumentNode->getBlock()->getFirstInsertionPt() :
instrumentNode->getBlock()->getTerminator(); instrumentNode->getBlock()->getTerminator();
// add information from the bottom edge, if it exists // add information from the bottom edge, if it exists
@@ -1171,7 +1171,7 @@ void PathProfiler::insertInstrumentationStartingAt(BLInstrumentationEdge* edge,
// Insert instrumentation if this is a normal edge // Insert instrumentation if this is a normal edge
else { else {
BasicBlock::iterator insertPoint = atBeginning ? BasicBlock::iterator insertPoint = atBeginning ?
instrumentNode->getBlock()->getFirstNonPHI() : instrumentNode->getBlock()->getFirstInsertionPt() :
instrumentNode->getBlock()->getTerminator(); instrumentNode->getBlock()->getTerminator();
if( edge->isInitialization() ) { // initialize path number if( edge->isInitialization() ) { // initialize path number
@@ -1232,7 +1232,7 @@ void PathProfiler::insertInstrumentation(
end = callEdges.end(); edge != end; edge++ ) { end = callEdges.end(); edge != end; edge++ ) {
BLInstrumentationNode* node = BLInstrumentationNode* node =
(BLInstrumentationNode*)(*edge)->getSource(); (BLInstrumentationNode*)(*edge)->getSource();
BasicBlock::iterator insertPoint = node->getBlock()->getFirstNonPHI(); BasicBlock::iterator insertPoint = node->getBlock()->getFirstInsertionPt();
// Find the first function call // Find the first function call
while( ((Instruction&)(*insertPoint)).getOpcode() != Instruction::Call ) while( ((Instruction&)(*insertPoint)).getOpcode() != Instruction::Call )

View File

@@ -107,7 +107,7 @@ void llvm::InsertProfilingInitCall(Function *MainFn, const char *FnName,
void llvm::IncrementCounterInBlock(BasicBlock *BB, unsigned CounterNum, void llvm::IncrementCounterInBlock(BasicBlock *BB, unsigned CounterNum,
GlobalValue *CounterArray, bool beginning) { GlobalValue *CounterArray, bool beginning) {
// Insert the increment after any alloca or PHI instructions... // Insert the increment after any alloca or PHI instructions...
BasicBlock::iterator InsertPos = beginning ? BB->getFirstNonPHI() : BasicBlock::iterator InsertPos = beginning ? BB->getFirstInsertionPt() :
BB->getTerminator(); BB->getTerminator();
while (isa<AllocaInst>(InsertPos)) while (isa<AllocaInst>(InsertPos))
++InsertPos; ++InsertPos;

View File

@@ -3621,10 +3621,11 @@ void LSRInstance::RewriteForPHI(PHINode *PN,
// users. // users.
if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 && if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
!isa<IndirectBrInst>(BB->getTerminator())) { !isa<IndirectBrInst>(BB->getTerminator())) {
Loop *PNLoop = LI.getLoopFor(PN->getParent()); BasicBlock *Parent = PN->getParent();
if (!PNLoop || PN->getParent() != PNLoop->getHeader()) { Loop *PNLoop = LI.getLoopFor(Parent);
if (!PNLoop || Parent != PNLoop->getHeader()) {
// Split the critical edge. // Split the critical edge.
BasicBlock *NewBB = SplitCriticalEdge(BB, PN->getParent(), P); BasicBlock *NewBB = SplitCriticalEdge(BB, Parent, P);
// If PN is outside of the loop and BB is in the loop, we want to // If PN is outside of the loop and BB is in the loop, we want to
// move the block to be immediately before the PHI block, not // move the block to be immediately before the PHI block, not

View File

@@ -2687,8 +2687,8 @@ void ObjCARCOpt::MoveCalls(Value *Arg,
// The invoke's return value isn't available in the unwind block, // The invoke's return value isn't available in the unwind block,
// but our releases will never depend on it, because they must be // but our releases will never depend on it, because they must be
// paired with retains from before the invoke. // paired with retains from before the invoke.
InsertPts[0] = II->getNormalDest()->getFirstNonPHI(); InsertPts[0] = II->getNormalDest()->getFirstInsertionPt();
InsertPts[1] = II->getUnwindDest()->getFirstNonPHI(); InsertPts[1] = II->getUnwindDest()->getFirstInsertionPt();
} else { } else {
// Insert code immediately after the last use. // Insert code immediately after the last use.
InsertPts[0] = llvm::next(BasicBlock::iterator(LastUse)); InsertPts[0] = llvm::next(BasicBlock::iterator(LastUse));

View File

@@ -240,14 +240,14 @@ void LowerInvoke::rewriteExpensiveInvoke(InvokeInst *II, unsigned InvokeNo,
CallInst* StackSaveRet = CallInst::Create(StackSaveFn, "ssret", II); CallInst* StackSaveRet = CallInst::Create(StackSaveFn, "ssret", II);
new StoreInst(StackSaveRet, StackPtr, true, II); // volatile new StoreInst(StackSaveRet, StackPtr, true, II); // volatile
BasicBlock::iterator NI = II->getNormalDest()->getFirstNonPHI(); BasicBlock::iterator NI = II->getNormalDest()->getFirstInsertionPt();
// nonvolatile. // nonvolatile.
new StoreInst(Constant::getNullValue(Type::getInt32Ty(II->getContext())), new StoreInst(Constant::getNullValue(Type::getInt32Ty(II->getContext())),
InvokeNum, false, NI); InvokeNum, false, NI);
Instruction* StackPtrLoad = new LoadInst(StackPtr, "stackptr.restore", true, Instruction* StackPtrLoad =
II->getUnwindDest()->getFirstNonPHI() new LoadInst(StackPtr, "stackptr.restore", true,
); II->getUnwindDest()->getFirstInsertionPt());
CallInst::Create(StackRestoreFn, StackPtrLoad, "")->insertAfter(StackPtrLoad); CallInst::Create(StackRestoreFn, StackPtrLoad, "")->insertAfter(StackPtrLoad);
// Add a switch case to our unwind block. // Add a switch case to our unwind block.