aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
AgeCommit message (Expand)Author
2009-07-11Move a method that creates constant ranges relative to another constant rangeNick Lewycky
2009-07-10Push LLVMContext through the PatternMatch API.Owen Anderson
2009-07-09This started as a small change, I swear. Unfortunately, lots of things call ...Owen Anderson
2009-07-09A little bit more LLVMContextification.Owen Anderson
2009-07-09There's no need to consider PHI nodes in the same block as the instructionNick Lewycky
2009-07-09Add some statistics to SSI so we can see what it's up to.Nick Lewycky
2009-07-08Push LLVMContext _back_ through IRBuilder.Owen Anderson
2009-07-08Tell ScalarEvolution to forget a loop before starting to delete it.Dan Gohman
2009-07-08Switch GlobalVariable ctors to a sane API, where *either* a context or a modu...Owen Anderson
2009-07-08Remove the vicmp and vfcmp instructions. Because we never had a release withNick Lewycky
2009-07-08Push LLVMContext through GlobalVariables and IRBuilder.Owen Anderson
2009-07-07Change all SCEV* to SCEV *.Dan Gohman
2009-07-06"LLVMContext* " --> "LLVMContext *"Owen Anderson
2009-07-06Finish LLVMContext-ing lib/Analysis. This required pushing LLVMContext's thr...Owen Anderson
2009-07-06Thread LLVMContext through the constant folding APIs, which touches a lot of ...Owen Anderson
2009-07-06More LLVMContext-ification.Owen Anderson
2009-07-05More LLVMContext-ification.Owen Anderson
2009-07-03Fix build.Mike Stump
2009-07-03Even more passes being LLVMContext'd.Owen Anderson
2009-07-03Add Static Single Information construction pass written by André Tavares!Nick Lewycky
2009-07-03Add newline at end of file.Duncan Sands
2009-07-03Second batch of passes using LLVMContext.Owen Anderson
2009-07-03Convert the first batch of passes to use LLVMContext.Owen Anderson
2009-07-02fix inverted logic pointed out by John McCall, noticed by inspection.Chris Lattner
2009-07-02Fix a bunch of other places that used operator[] to test whetherDan Gohman
2009-07-01Request LCSSA after LoopSimplify. This fixes a problem in which theDan Gohman
2009-07-01Fix an instcombine abort on a scalar-to-vector bitcast. This fixes PR4487.Dan Gohman
2009-07-01Add a pointer to the owning LLVMContext to Module. This requires threading L...Owen Anderson
2009-07-01improve the APIs for creating struct and function types with no arguments/ele...Chris Lattner
2009-06-30Minor code simplification.Dan Gohman
2009-06-27Don't try to split a loop when the controlling icmp instructionDan Gohman
2009-06-27Remove the block from the LoopInfo, rather than just the Loop.Dan Gohman
2009-06-27Teach LoopSimplify how to merge multiple loop exits into a single exit,Dan Gohman
2009-06-27More minor code simplifications.Dan Gohman
2009-06-27When a value is used multiple times within a single PHI, instructionsDan Gohman
2009-06-26Incorporate the insertion point into the key of SCEVExpander's CSE map.Dan Gohman
2009-06-26Remove unused routines.Devang Patel
2009-06-26Constify this value.Owen Anderson
2009-06-26Fix linking of llvm-ld and lli with CMake, from Xerxes RånbyDouglas Gregor
2009-06-26Remove debug info anchors - llvm.dbg.compile_units, llvm.dbg.subprogramsDevang Patel
2009-06-26Change this code to a form about which VC++ reportedly isn't unhappy.Dan Gohman
2009-06-26Fix LCSSA to avoid emitting a PHI node for the unwind destination ofDan Gohman
2009-06-26Minor code simplification.Dan Gohman
2009-06-25Reword a few comments.Dan Gohman
2009-06-24When inserting code into a loop preheader, insert it before theDan Gohman
2009-06-24Extend ScalarEvolution's multiple-exit support to compute exactDan Gohman
2009-06-24Don't emit a redundant BitCastInst if the value to be defined in theDan Gohman
2009-06-22Fix a few minor issues that were exposed by the removal of SCEVHandle.Dan Gohman
2009-06-22SCEVHandle is no more!Owen Anderson
2009-06-22Fix this code to correctly handle loops with multiple exits. UntilDan Gohman