From 49771a0462b3153b7d31b850d65c35d52b5bf43d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 26 Jun 2006 19:10:05 +0000 Subject: [PATCH] random code cleanups, no functionality change llvm-svn: 28914 --- llvm/lib/Transforms/Scalar/LICM.cpp | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp index dd66dcaf8a87..2ecf6aa046d1 100644 --- a/llvm/lib/Transforms/Scalar/LICM.cpp +++ b/llvm/lib/Transforms/Scalar/LICM.cpp @@ -335,7 +335,7 @@ void LICM::HoistRegion(DominatorTree::Node *N) { // if (isLoopInvariantInst(I) && canSinkOrHoistInst(I) && isSafeToExecuteUnconditionally(I)) - hoist(I); + hoist(I); } const std::vector &Children = N->getChildren(); @@ -386,8 +386,7 @@ bool LICM::canSinkOrHoistInst(Instruction &I) { } return isa(I) || isa(I) || isa(I) || - isa(I) || - isa(I); + isa(I) || isa(I); } /// isNotUsedInLoop - Return true if the only users of this instruction are @@ -448,11 +447,11 @@ void LICM::sink(Instruction &I) { if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) { // Instruction is not used, just delete it. CurAST->deleteValue(&I); - I.getParent()->getInstList().erase(&I); + I.eraseFromParent(); } else { // Move the instruction to the start of the exit block, after any PHI // nodes in it. - I.getParent()->getInstList().remove(&I); + I.removeFromParent(); BasicBlock::iterator InsertPt = ExitBlocks[0]->begin(); while (isa(InsertPt)) ++InsertPt; @@ -461,7 +460,7 @@ void LICM::sink(Instruction &I) { } else if (ExitBlocks.size() == 0) { // The instruction is actually dead if there ARE NO exit blocks. CurAST->deleteValue(&I); - I.getParent()->getInstList().erase(&I); + I.eraseFromParent(); } else { // Otherwise, if we have multiple exits, use the PromoteMem2Reg function to // do all of the hard work of inserting PHI nodes as necessary. We convert @@ -526,7 +525,7 @@ void LICM::sink(Instruction &I) { // the copy. Instruction *New; if (InsertedBlocks.size() == 1) { - I.getParent()->getInstList().remove(&I); + I.removeFromParent(); ExitBlock->getInstList().insert(InsertPt, &I); New = &I; } else { @@ -546,7 +545,7 @@ void LICM::sink(Instruction &I) { // If the instruction doesn't dominate any exit blocks, it must be dead. if (InsertedBlocks.empty()) { CurAST->deleteValue(&I); - I.getParent()->getInstList().erase(&I); + I.eraseFromParent(); } // Finally, promote the fine value to SSA form. @@ -567,7 +566,7 @@ void LICM::hoist(Instruction &I) { // Remove the instruction from its current basic block... but don't delete the // instruction. - I.getParent()->getInstList().remove(&I); + I.removeFromParent(); // Insert the new node in Preheader, before the terminator. Preheader->getInstList().insert(Preheader->getTerminator(), &I); -- GitLab