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