aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
Commit message (Expand)AuthorAgeFilesLines
* fix PR8932, a case where arg promotion could infinitely promote.Chris Lattner2011-01-161-24/+51
* simplify a littleChris Lattner2011-01-161-7/+3
* if an alloca is only ever accessed as a unit, and is accessed with load/store...Chris Lattner2011-01-161-3/+33
* Use an irbuilder to get some trivial constant folding when doing a storeChris Lattner2011-01-161-21/+17
* remove a dead check, this was needed before we had an explicit veto on uses o...Chris Lattner2011-01-161-5/+0
* enhance FoldOpIntoPhi in instcombine to try harder when a phi hasChris Lattner2011-01-162-3/+20
* remove the AllowAggressive argument to FoldOpIntoPhi. It is forced to false ...Chris Lattner2011-01-163-14/+6
* more cleanups: use the IR builder.Chris Lattner2011-01-161-38/+39
* tidy up code.Chris Lattner2011-01-161-16/+20
* Improve the safety of my globalopt enhancement by ensuring that the bitcastOwen Anderson2011-01-161-12/+22
* simplify this code, it is still broken but will follow up on llvm-commits.Chris Lattner2011-01-161-15/+5
* remove the partial specialization pass. It is unmaintained and has bugs.Chris Lattner2011-01-163-230/+0
* Add missing whitespace.Nick Lewycky2011-01-151-2/+2
* Make constmerge a two-pass algorithm so that it won't miss mergingNick Lewycky2011-01-151-4/+34
* Try to unbreak selfhost.Benjamin Kramer2011-01-151-0/+1
* Add a cache that protects mergefunc's internals from more surprises in DenseSet.Nick Lewycky2011-01-151-5/+27
* temporarily revert r123526. While working on a follow-on patch IChris Lattner2011-01-151-3/+0
* fix rdar://8785296 - -fcatch-undefined-behavior generates inefficient codeChris Lattner2011-01-151-0/+3
* simplify code, no functionality change.Chris Lattner2011-01-151-30/+37
* Now that instruction optzns can update the iterator as they go, we can Chris Lattner2011-01-151-10/+16
* make the current instruction iterator an ivar, allowing xforms thatChris Lattner2011-01-151-35/+38
* implement an instcombine xform that canonicalizes casts outside of and-with-c...Chris Lattner2011-01-151-2/+12
* one more instcombine variant that is needed to work with future changes,Chris Lattner2011-01-151-0/+9
* fix typoChris Lattner2011-01-151-1/+1
* Catch ~x < cst just like ~x < ~y, we currently handle this throughChris Lattner2011-01-151-4/+8
* reduce indentationChris Lattner2011-01-151-29/+29
* Generalize LoadAndStorePromoter a bit and switch LICMChris Lattner2011-01-153-190/+111
* Fix a false-positive warning.Owen Anderson2011-01-141-1/+3
* Enhance GlobalOpt to be able evaluate initializers that involve stores throughOwen Anderson2011-01-141-2/+49
* switch SRoA to use LoadAndStorePromoter instead of its own copy of the code.Chris Lattner2011-01-141-136/+26
* Add a new LoadAndStorePromoter class, which implements the generalChris Lattner2011-01-141-0/+154
* split SROA into two passes: one that uses DomFrontiers (-scalarrepl) Chris Lattner2011-01-142-27/+57
* Implement full support for promoting allocas to registers using SSAUpdaterChris Lattner2011-01-141-5/+162
* indentationChris Lattner2011-01-141-1/+1
* Move some shift transforms out of instcombine and into InstructionSimplify.Duncan Sands2011-01-141-26/+10
* Fix whitespace.Bob Wilson2011-01-131-120/+120
* Check for empty structs, and for consistency, zero-element arrays.Bob Wilson2011-01-131-2/+2
* Extend SROA to handle arrays accessed as homogeneous structs and vice versa.Bob Wilson2011-01-131-14/+57
* Make SROA more aggressive with allocas containing padding.Bob Wilson2011-01-131-34/+27
* Use SmallVector instead of SmallPtrSet and avoid non-deterministic behavior.Devang Patel2011-01-121-3/+3
* revert 123144, reenabling the rest of memset formation.Chris Lattner2011-01-121-3/+0
* revert r123146 which disabled code that wasn't the root causeChris Lattner2011-01-121-2/+0
* revert r123149, reenabling an improvement to memcpyopt that wasn'tChris Lattner2011-01-121-4/+2
* Remove the PR8954 workaround.Jakob Stoklund Olesen2011-01-111-4/+0
* Fix a non-deterministic loop in llvm::MergeBlockIntoPredecessor.Jakob Stoklund Olesen2011-01-111-2/+2
* Dial back the speculative fix for PR8954 a bit, so that we only recompute dom...Cameron Zwarich2011-01-111-1/+3
* Attempt to fix the bootstrap buildbot. Rafael says this works for him on x86-...Cameron Zwarich2011-01-111-0/+1
* Remove dead variable, const-ref-ize an APInt.Owen Anderson2011-01-111-4/+1
* this pass claims to preserve scev, make sure to tell it about deletions.Chris Lattner2011-01-111-0/+1
* Factor the actual simplification out of SimplifyIndirectBrOnSelect and into a...Frits van Bommel2011-01-111-26/+37