aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/BasicBlockUtils.cpp
AgeCommit message (Expand)Author
2009-11-05Add an assertion to catch indirectbr in SplitBlockPredecessors. ThisDan Gohman
2009-11-01change llvm::MergeBlockIntoPredecessor to not merge two blocks BB1->BB2 Chris Lattner
2009-10-31llvm::SplitEdge should refuse to split an edge from an indirectbr.Chris Lattner
2009-10-31Revert r85667. LoopUnroll currently can't call utility functions whichDan Gohman
2009-10-31Remove redundant code.Dan Gohman
2009-10-31Merge the enhancements from LoopUnroll's FoldBlockIntoPredecessor intoDan Gohman
2009-10-27Factor out redundancy from clone() implementations.Devang Patel
2009-10-19Fix SplitBlockPredecessors' LoopInfo updating code to handle the caseDan Gohman
2009-09-27Instruction::clone does not need to take an LLVMContext&. Remove that andNick Lewycky
2009-09-08Re-apply r80926, with fixes: keep the domtree informed of new blocksDan Gohman
2009-09-06Revert r80926. It causes loop unswitch assertion and slow down some JIT tests...Evan Cheng
2009-09-03Add a verifyAnalysis to LoopInfo, LoopSimplify, and LCSSA form that verifyDan Gohman
2009-09-03Change PHINode::hasConstantValue to have a DominatorTree argumentDan Gohman
2009-08-25Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined,Dan Gohman
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-07-31Move a few more APIs back to 2.5 forms. The only remaining ones left to chan...Owen Anderson
2009-07-30Move more code back to 2.5 APIs.Owen Anderson
2009-07-25Make AliasAnalysis and related classes useDan Gohman
2009-07-24AliasAnalysis wants sizes in address-units, not bits.Dan Gohman
2009-07-22Get rid of the Pass+Context magic.Owen Anderson
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin
2009-07-09This started as a small change, I swear. Unfortunately, lots of things call ...Owen Anderson
2009-07-05More LLVMContext-ification.Owen Anderson
2009-05-04Re-apply 70645, converting ScalarEvolution to useDan Gohman
2009-05-04Restore minor deletion.Mike Stump
2009-05-03Revert r70645 for now; it's causing a variety of regressions.Dan Gohman
2009-05-02Convert ScalarEvolution to use CallbackVH for its internal map. ThisDan Gohman
2009-05-02Previously, RecursivelyDeleteDeadInstructions provided an optionDan Gohman
2009-03-04Skip ptr-to-ptr bitcasts when counting in another case.Dale Johannesen
2009-03-03Instruction counters must skip the bitcasts thatDale Johannesen
2009-03-03When removing a store to an alloca that has only oneDale Johannesen
2009-03-03Fix a bunch of Doxygen syntax issues. Escape special characters,Dan Gohman
2009-03-03When sinking an insn in InstCombine bring its debugDale Johannesen
2009-02-24While folding unconditional return move DbgRegionEndInst into the predecessor...Devang Patel
2009-02-11If llvm.dbg.region.end is disappearing then remove corresponding llvm.dbg.fun...Devang Patel
2009-01-28Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands
2008-12-03Factor some code into a new FoldSingleEntryPHINodes method.Chris Lattner
2008-12-03third time is the charm.Chris Lattner
2008-12-03fix assertion.Chris Lattner
2008-12-03Rename DeleteBlockIfDead to DeleteDeadBlock and make it Chris Lattner
2008-12-03Factor some code out of SimplifyCFG, forming a new Chris Lattner
2008-11-27switch InstCombine::visitLoadInst to use Chris Lattner
2008-11-27enhance FindAvailableLoadedValue to make use of AliasAnalysisChris Lattner
2008-11-27move FindAvailableLoadedValue from JumpThreading to Transforms/Utils.Chris Lattner
2008-11-03Fix unused variable warnings.Devang Patel
2008-10-03SplitBlock should only attempt to update LoopInfo if it is actually being used.Owen Anderson
2008-09-09Fix simplifycfg crash in handing block merge.Devang Patel
2008-07-18Add some checks that got lost in the shuffle. This fixes 464.h264ref.Owen Anderson
2008-07-17Make MergeBlockIntoPredecessor more aggressive when the same successor appearsOwen Anderson