summaryrefslogtreecommitdiff
path: root/lib/Transforms
Commit message (Expand)AuthorAge
...
* change instcombine to not turn a call to non-varargs bitcast ofChris Lattner2011-02-24
* Make LoopDeletion work on loops with multiple edges, as long as the incomingCameron Zwarich2011-02-22
* If the phi node was used by an unreachable instruction that ends up usingDuncan Sands2011-02-21
* fix a crasher in disabled code (on variable stride loops)Chris Lattner2011-02-21
* Simplify RecursivelyDeleteDeadPHINode. The only functionality changeDuncan Sands2011-02-21
* Add some (disabled code) to print out negative strides.Chris Lattner2011-02-21
* Make RecursivelyDeleteDeadPHINode delete a phi node that has no users and add aNick Lewycky2011-02-20
* Move "A | ~(A & ?) -> -1" from InstCombine to InstructionSimplify.Benjamin Kramer2011-02-20
* InstCombine: Add a bunch of combines of the form x | (y ^ z).Benjamin Kramer2011-02-20
* Teach RecursivelyDeleteDeadPHINodes to handle multiple self-references. PatchNick Lewycky2011-02-20
* Instead of keeping two Value*->id# mappings, keep one Value->Value mapping andNick Lewycky2011-02-20
* PR9218: SimplifyDemandedVectorElts can return a non-null value that is notEli Friedman2011-02-19
* rewrite the memset_pattern pattern generation stuff to accept any 2/4/8/16-byteChris Lattner2011-02-19
* Implement rdar://9009151, transforming strided loop stores ofChris Lattner2011-02-19
* Make loop-idiom use TargetLibraryInfo to determine whether it is allowedChris Lattner2011-02-18
* Move library stuff out of the toplevel CMakeLists.txt file.Oscar Fuentes2011-02-18
* Add some transforms of the kind X-Y>X -> 0>Y which are valid when there is noDuncan Sands2011-02-18
* prevent jump threading from merging blocks when their address isChris Lattner2011-02-18
* Don't unroll loops whose header block's address is taken.Chris Lattner2011-02-18
* have instcombine preserve nsw/nuw/exact when sinkingChris Lattner2011-02-17
* fix typoChris Lattner2011-02-17
* fix instcombine merging GEPs through a PHI to only make theChris Lattner2011-02-17
* add is always integer, thanks to Frits for noticing this.Chris Lattner2011-02-17
* Transform "A + B >= A + C" into "B >= C" if the adds do not wrap. Likewise f...Duncan Sands2011-02-17
* preserve NUW/NSW when transforming add x,xChris Lattner2011-02-17
* fix PR9215, preventing -reassociate from clearing nsw/nuw whenChris Lattner2011-02-17
* Spelling fix: consequtive -> consecutive.Duncan Sands2011-02-15
* Fix 9216 - Endless loop in InstCombine pass.Nadav Rotem2011-02-15
* Do not forget DebugLoc!Devang Patel2011-02-15
* tidy up a bit.Chris Lattner2011-02-15
* convert ConstantVector::get to use ArrayRef.Chris Lattner2011-02-15
* Do not hoist @llvm.dbg.value. Here, @llvm.dbg.value is "referring" a value th...Devang Patel2011-02-14
* revert my ConstantVector patch, it seems to have made the llvm-gccChris Lattner2011-02-14
* Switch ConstantVector::get to use ArrayRef instead of a pointer+sizeChris Lattner2011-02-14
* remove a now-unneccesary cast.Chris Lattner2011-02-13
* implement instcombine folding for things like (x >> c) < 42.Chris Lattner2011-02-13
* refactor some code out into a helper method.Chris Lattner2011-02-13
* SimplifyLibCalls: Add missing legalize check on various printf to puts andDaniel Dunbar2011-02-12
* Also fold (A+B) == A -> B == 0 when the add is commuted.Benjamin Kramer2011-02-11
* When lowering an inbounds gep, the intermediate adds can haveChris Lattner2011-02-11
* Make LoopUnswitch preserve ScalarEvolution by just forgetting everything aboutCameron Zwarich2011-02-11
* LoopInstSimplify preserves ScalarEvolution.Cameron Zwarich2011-02-11
* If we can't avoid running loop-simplify twice for now, at least avoid runningCameron Zwarich2011-02-10
* Rename 'loopsimplify' to 'loop-simplify'.Cameron Zwarich2011-02-10
* implement the first part of PR8882: when lowering an inboundsChris Lattner2011-02-10
* Enhance a bunch of transformations in instcombine to start generatingChris Lattner2011-02-10
* Enhance the "compare with shift" and "compare with div" Chris Lattner2011-02-10
* more cleanups, notably bitcast isn't used for "signed to unsigned type Chris Lattner2011-02-10
* A bunch of cleanups and simplifications using the new PatternMatch predicatesChris Lattner2011-02-10
* teach SimplifyDemandedBits that exact shifts demand the bits they Chris Lattner2011-02-10