aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/LICM.cpp
AgeCommit message (Expand)Author
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands
2010-01-05Change errs() to dbgs().David Greene
2010-01-05Remove dead debug info intrinsics.Devang Patel
2009-12-18Add Loop contains utility methods for testing whether a loopDan Gohman
2009-12-10Make sure the immediate dominator isn't NULL through iterationsEric Christopher
2009-11-23Pull LLVMContext out of PromoteMemToReg.Nick Lewycky
2009-11-19Enable hoisting of loads from constant memory by default. In cases whereDan Gohman
2009-11-05Update various Loop optimization passes to cope with the possibility thatDan Gohman
2009-10-14Use isVoidTy()Devang Patel
2009-10-13Check void type before using RAUWd.Devang Patel
2009-10-13Do not check use_empty() before replaceAllUsesWith(). This gives ValueHandles...Devang Patel
2009-10-12Make licm debug message readable.Evan Cheng
2009-10-11Remove CleanupDbgInfo, instcombine does this and its not worth duplicating itTorok Edwin
2009-10-11LICM shouldn't sink/delete debug information. Fix this and add a testcase.Torok Edwin
2009-09-27Grab an LLVM Context from an instruction that exists rather than oneDan 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-02eliminate VISIBILITY_HIDDEN from Transforms/Scalar. PR4861Chris Lattner
2009-08-23eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner
2009-08-13Push LLVMContexts through the IntegerType APIs.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-25More migration to raw_ostream, the water has dried up around the iostream hole.Daniel Dunbar
2009-07-22Get rid of the Pass+Context magic.Owen Anderson
2009-07-17Replace isTrapping with a new, similar method called Eli Friedman
2009-07-15Revert yesterday's change by removing the LLVMContext parameter to AllocaInst...Owen Anderson
2009-07-14Move EVER MORE stuff over to LLVMContext.Owen Anderson
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-07-03Second batch of passes using LLVMContext.Owen Anderson
2009-03-27Revert r67798: it breaks llvm-gcc bootstrap on x86-64-linux, presumably due toDuncan Sands
2009-03-26While hoisting an instruction, update alias info set tracker.Devang Patel
2009-03-09reimplement AliasSetTracker in terms of DenseMap instead of hash_map,Chris Lattner
2009-02-12This code doesn't actually use the ExitingBlocks list.Dan Gohman
2008-10-22Change create*Pass factory functions to return Pass* instead ofDaniel Dunbar
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-07-24Put the LICM of constant GlobalVariables, introduced in r53945, under aDan Gohman
2008-07-23"Allow LICM to sink or lift loads from constant memory. Also add a testChris Lattner
2008-06-22Use Loop::block_iterator.Dan Gohman
2008-05-23Tidy up BasicBlock::getFirstNonPHI, and change a bunch of places toDan Gohman
2008-05-22rewrite the validity checking for memory promotion to be simpler,Chris Lattner
2008-05-22Use 'continue' to reduce nesting in this loop. No functionality change.Chris Lattner
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
2008-05-06Make several variable declarations static.Dan Gohman
2008-01-29Use empty() instead of comparing size() with zero.Dan Gohman
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-01Integrate the readonly/readnone logic more deeplyDuncan Sands
2007-11-25Remove another leak. Due to some reason AliasSetTracker didn't had any dtor...Anton Korobeynikov