| Commit message (Expand) | Author | Age | Files | Lines |
* | Add the private linkage. | Rafael Espindola | 2009-01-15 | 1 | -6/+6 |
* | rewrite OptimizeAwayTrappingUsesOfLoads to 1) avoid a temporary | Chris Lattner | 2009-01-14 | 1 | -24/+26 |
* | Correct a comment. | Duncan Sands | 2009-01-13 | 1 | -1/+1 |
* | Rename getABITypeSize to getTypePaddedSize, as | Duncan Sands | 2009-01-12 | 1 | -2/+2 |
* | Whitespace - correct formatting. | Duncan Sands | 2009-01-07 | 1 | -2/+2 |
* | insert some sequence points and preincrement an iterator to avoid | Chris Lattner | 2008-12-17 | 1 | -7/+8 |
* | Enhance heap sra to be substantially more aggressive w.r.t PHI | Chris Lattner | 2008-12-17 | 1 | -105/+182 |
* | Fix another crash found by inspection. If we have a PHI node merging | Chris Lattner | 2008-12-16 | 1 | -47/+68 |
* | fix a crash found by inspection. | Chris Lattner | 2008-12-16 | 1 | -1/+1 |
* | switch some std::set/std::map to SmallPtrSet/DenseMap. | Chris Lattner | 2008-12-16 | 1 | -14/+13 |
* | enhance heap-sra to apply to fixed sized array allocations, not just | Chris Lattner | 2008-12-15 | 1 | -4/+43 |
* | Use stripPointerCasts. | Chris Lattner | 2008-12-15 | 1 | -7/+2 |
* | minor tweaks for formatting, allow bitcast in ValueIsOnlyUsedLocallyOrStoredT... | Chris Lattner | 2008-12-15 | 1 | -12/+29 |
* | refactor some code into a new TryToOptimizeStoreOfMallocToGlobal function. | Chris Lattner | 2008-12-15 | 1 | -62/+66 |
* | Large mechanical patch. | Devang Patel | 2008-09-25 | 1 | -6/+6 |
* | Make safer variant of alias resolution routine to be default | Anton Korobeynikov | 2008-09-09 | 1 | -2/+1 |
* | Resolve aliases, when possible | Anton Korobeynikov | 2008-09-09 | 1 | -0/+22 |
* | Tidy up several unbeseeming casts from pointer to intptr_t. | Dan Gohman | 2008-09-04 | 1 | -1/+1 |
* | Remove tabs. | Bill Wendling | 2008-08-12 | 1 | -2/+2 |
* | Make GlobalOpt preserve address spaces when scalar replacing aggregate globals. | Matthijs Kooijman | 2008-07-17 | 1 | -2/+4 |
* | convert more operand loops to iterator formulation | Gabor Greif | 2008-05-29 | 1 | -21/+26 |
* | Use isSingleValueType instead of isFirstClassType to | Dan Gohman | 2008-05-23 | 1 | -3/+3 |
* | API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac... | Gabor Greif | 2008-05-16 | 1 | -2/+2 |
* | Fix a bunch of 80col violations that arose from the Create API change. Tweak ... | Gabor Greif | 2008-05-15 | 1 | -1/+2 |
* | Clean up the use of static and anonymous namespaces. This turned up | Dan Gohman | 2008-05-13 | 1 | -4/+6 |
* | When SRoA'ing a global variable, make sure the new globals get the | Chris Lattner | 2008-04-26 | 1 | -5/+32 |
* | API changes for class Use size reduction, wave 1. | Gabor Greif | 2008-04-06 | 1 | -18/+17 |
* | Don't include <map> in Pass.h, which doesn't need it. This requires | Dan Gohman | 2008-03-21 | 1 | -0/+1 |
* | Reimplement the parameter attributes support, phase #1. hilights: | Chris Lattner | 2008-03-12 | 1 | -12/+5 |
* | Split ParameterAttributes.h, putting the complicated | Dale Johannesen | 2008-02-22 | 1 | -1/+1 |
* | Make Transforms to be 4.3 warnings-clean | Anton Korobeynikov | 2008-02-20 | 1 | -2/+4 |
* | Simplify caller updating using a CallSite, as | Duncan Sands | 2008-02-18 | 1 | -22/+16 |
* | Remove any 'nest' parameter attributes if the function | Duncan Sands | 2008-02-16 | 1 | -10/+52 |
* | Don't let globalopt hack on volatile loads or stores. | Chris Lattner | 2008-01-29 | 1 | -1/+4 |
* | Fix the miscompilation of MiBench/consumer-lame that was exposed by Evan's | Chris Lattner | 2008-01-14 | 1 | -59/+97 |
* | The isNotSuitableForSRA property is now dead, don't compute it. | Chris Lattner | 2008-01-14 | 1 | -45/+1 |
* | Change SRAGlobal to not depend on isNotSuitableForSRA, which makes it very | Chris Lattner | 2008-01-14 | 1 | -2/+75 |
* | Make the 'shrink global to bool' optimization more self contained, and thus | Chris Lattner | 2008-01-14 | 1 | -10/+25 |
* | Fix PR1896 | Chris Lattner | 2008-01-04 | 1 | -1/+1 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Change the PointerType api for creating pointer types. The old functionality ... | Christopher Lamb | 2007-12-17 | 1 | -2/+2 |
* | Fix the regression on Transforms/GlobalOpt/deadglobal-2.ll from my | Chris Lattner | 2007-11-13 | 1 | -3/+3 |
* | Tighten up a check for folding away loads from (newly constant) globals. This | Chris Lattner | 2007-11-09 | 1 | -6/+11 |
* | Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. | Duncan Sands | 2007-11-01 | 1 | -1/+1 |
* | Fix a logic error in ValueIsOnlyUsedLocallyOrStoredToOneGlobal that caused | Chris Lattner | 2007-09-14 | 1 | -4/+4 |
* | Teach GlobalLoadUsesSimpleEnoughForHeapSRA and the SROA rewriter how to handle | Chris Lattner | 2007-09-13 | 1 | -14/+62 |
* | be tolerant of PHI nodes when rewriting heap SROA code. This is a step | Chris Lattner | 2007-09-13 | 1 | -26/+50 |
* | refactor some code, no functionality change. On the path to PR1639 | Chris Lattner | 2007-09-13 | 1 | -50/+56 |
* | Make ValueIsOnlyUsedLocallyOrStoredToOneGlobal smart enough to see through | Chris Lattner | 2007-09-13 | 1 | -5/+16 |
* | Make AllUsesOfLoadedValueWillTrapIfNull strong enough to see through PHI | Chris Lattner | 2007-09-13 | 1 | -6/+15 |