aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
AgeCommit message (Expand)AuthorFilesLines
2011-01-02split dom frontier handling stuff out to its own DominanceFrontier header,Chris Lattner1-1/+1
2010-12-14remove the dead (and terrible) llvm::RemoveSuccessor function.Chris Lattner1-46/+0
2010-09-10typoesGabor Greif1-1/+1
2010-08-18fit in 80 colsChris Lattner1-2/+3
2010-08-17Use the getUniquePredecessor() utility function, instead of doingDan Gohman1-15/+5
2010-05-28Move FindAvailableLoadedValue isSafeToLoadUnconditionally out ofDan Gohman1-118/+0
2010-04-05Code clean up.Evan Cheng1-12/+10
2010-02-16Rename SuccessorNumber to GetSuccessorNumber.Bob Wilson1-5/+6
2010-02-16Refactor to share code to find the position of a basic block successor in theBob Wilson1-11/+17
2010-01-21No need to look through bitcasts for DbgInfoIntrinsicVictor Hernandez1-5/+0
2010-01-05Make RecursivelyDeleteTriviallyDeadInstructions,Dan Gohman1-2/+5
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer1-1/+1
2010-01-05Remove dead debug info intrinsics.Devang Patel1-13/+0
2009-12-08Remove unnecessary #include "llvm/LLVMContext.h".Nick Lewycky1-1/+0
2009-11-05Add an assertion to catch indirectbr in SplitBlockPredecessors. ThisDan Gohman1-2/+6
2009-11-01change llvm::MergeBlockIntoPredecessor to not merge two blocks BB1->BB2 Chris Lattner1-3/+7
2009-10-31llvm::SplitEdge should refuse to split an edge from an indirectbr.Chris Lattner1-0/+2
2009-10-31Revert r85667. LoopUnroll currently can't call utility functions whichDan Gohman1-23/+47
2009-10-31Remove redundant code.Dan Gohman1-3/+0
2009-10-31Merge the enhancements from LoopUnroll's FoldBlockIntoPredecessor intoDan Gohman1-47/+23
2009-10-27Factor out redundancy from clone() implementations.Devang Patel1-1/+1
2009-10-19Fix SplitBlockPredecessors' LoopInfo updating code to handle the caseDan Gohman1-8/+20
2009-09-27Instruction::clone does not need to take an LLVMContext&. Remove that andNick Lewycky1-1/+1
2009-09-08Re-apply r80926, with fixes: keep the domtree informed of new blocksDan Gohman1-23/+69
2009-09-06Revert r80926. It causes loop unswitch assertion and slow down some JIT tests...Evan Cheng1-69/+23
2009-09-03Add a verifyAnalysis to LoopInfo, LoopSimplify, and LCSSA form that verifyDan Gohman1-23/+69
2009-09-03Change PHINode::hasConstantValue to have a DominatorTree argumentDan Gohman1-7/+4
2009-08-25Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined,Dan Gohman1-2/+6
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson1-4/+4
2009-07-31Move a few more APIs back to 2.5 forms. The only remaining ones left to chan...Owen Anderson1-2/+1
2009-07-30Move more code back to 2.5 APIs.Owen Anderson1-4/+3
2009-07-25Make AliasAnalysis and related classes useDan Gohman1-1/+1
2009-07-24AliasAnalysis wants sizes in address-units, not bits.Dan Gohman1-1/+1
2009-07-22Get rid of the Pass+Context magic.Owen Anderson1-5/+5
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin1-1/+1
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin1-2/+2
2009-07-09This started as a small change, I swear. Unfortunately, lots of things call ...Owen Anderson1-1/+1
2009-07-05More LLVMContext-ification.Owen Anderson1-4/+7
2009-05-04Re-apply 70645, converting ScalarEvolution to useDan Gohman1-4/+3
2009-05-04Factor loop backedge finding out of CodeGenPrepare into a new Chris Lattner1-0/+50
2009-05-03Revert r70645 for now; it's causing a variety of regressions.Dan Gohman1-3/+4
2009-05-02Convert ScalarEvolution to use CallbackVH for its internal map. ThisDan Gohman1-4/+3
2009-05-02Previously, RecursivelyDeleteDeadInstructions provided an optionDan Gohman1-0/+20
2009-03-04Skip ptr-to-ptr bitcasts when counting in another case.Dale Johannesen1-4/+4
2009-03-03Instruction counters must skip the bitcasts thatDale Johannesen1-0/+6
2009-03-03When removing a store to an alloca that has only oneDale Johannesen1-2/+1
2009-03-03Fix a bunch of Doxygen syntax issues. Escape special characters,Dan Gohman1-2/+2
2009-03-03When sinking an insn in InstCombine bring its debugDale Johannesen1-2/+25
2009-02-24While folding unconditional return move DbgRegionEndInst into the predecessor...Devang Patel1-22/+2
2009-02-11If llvm.dbg.region.end is disappearing then remove corresponding llvm.dbg.fun...Devang Patel1-2/+22