| Commit message (Expand) | Author | Age | Files | Lines |
| * | Make some DataLayout pointers const. | Rafael Espindola | 2014-02-24 | 1 | -3/+3 |
| * | Rename many DataLayout variables from TD to DL. | Rafael Espindola | 2014-02-21 | 1 | -23/+23 |
| * | Fix known typos | Alp Toker | 2014-01-24 | 1 | -1/+1 |
| * | PR17925 bugfix. | Stepan Dyatkovskiy | 2013-11-26 | 1 | -11/+11 |
| * | Teach MergeFunctions about address spaces | Matt Arsenault | 2013-11-10 | 1 | -11/+19 |
| * | Don't merge tiny functions. | Matt Arsenault | 2013-10-01 | 1 | -0/+12 |
| * | Bugfix for PR17099: | Stepan Dyatkovskiy | 2013-09-17 | 1 | -8/+15 |
| * | MergeFunc: Make pointer and integer types generate the same hash. | Benjamin Kramer | 2013-04-19 | 1 | -2/+11 |
| * | Implement a better fix for PR15185. | Bill Wendling | 2013-04-18 | 1 | -6/+11 |
| * | We are not able to bitcast a pointer to an integral value. | Bill Wendling | 2013-04-15 | 1 | -5/+5 |
| * | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -8/+8 |
| * | convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumu... | Nuno Lopes | 2012-12-30 | 1 | -7/+5 |
| * | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -6/+6 |
| * | Revert the series of commits starting with r166578 which introduced the | Chandler Carruth | 2012-11-01 | 1 | -2/+3 |
| * | Add in support for getIntPtrType to get the pointer type based on the address... | Micah Villmow | 2012-10-24 | 1 | -3/+2 |
| * | Move TargetData to DataLayout. | Micah Villmow | 2012-10-08 | 1 | -13/+13 |
| * | Remove tabs. | Bill Wendling | 2012-07-19 | 1 | -1/+1 |
| * | Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.h | Chandler Carruth | 2012-06-29 | 1 | -6/+6 |
| * | Update inter-procedural optimizations for atomic load/store. | Eli Friedman | 2011-08-15 | 1 | -2/+6 |
| * | Misc optimizer+codegen work for 'cmpxchg' and 'atomicrmw'. They appear to be | Eli Friedman | 2011-07-29 | 1 | -16/+16 |
| * | Convert TargetData::getIndexedOffset to use ArrayRef. | Jay Foad | 2011-07-19 | 1 | -2/+2 |
| * | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -13/+13 |
| * | Convert CallInst and InvokeInst APIs to use ArrayRef. | Jay Foad | 2011-07-15 | 1 | -1/+1 |
| * | Land the long talked about "type system rewrite" patch. This | Chris Lattner | 2011-07-09 | 1 | -1/+0 |
| * | Don't include Operator.h from InstrTypes.h. | Jay Foad | 2011-04-11 | 1 | -0/+1 |
| * | No functionality change, just adjust some whitespace for coding style complia... | Nick Lewycky | 2011-03-25 | 1 | -2/+2 |
| * | Instead of keeping two Value*->id# mappings, keep one Value->Value mapping and | Nick Lewycky | 2011-02-20 | 1 | -12/+14 |
| * | When removing a function from the function set and adding it to deferred, we | Nick Lewycky | 2011-02-09 | 1 | -2/+19 |
| * | Simplify away redundant test, and document what's going on. | Nick Lewycky | 2011-02-06 | 1 | -2/+5 |
| * | Remove specialized comparison of InlineAsm objects. They're uniqued on creation | Nick Lewycky | 2011-02-06 | 1 | -6/+2 |
| * | Remove wasteful caching. This isn't needed for correctness because any function | Nick Lewycky | 2011-02-02 | 1 | -23/+2 |
| * | Rename functions to follow coding standard. Also rejiggers comments. No | Nick Lewycky | 2011-01-28 | 1 | -89/+88 |
| * | Add a doxygen comment for this class. | Nick Lewycky | 2011-01-28 | 1 | -0/+2 |
| * | Reorder for readability. (Chris, is this what you meant?) | Nick Lewycky | 2011-01-28 | 1 | -148/+150 |
| * | Reduce the number of functions we look at in the first pass, and preallocate | Nick Lewycky | 2011-01-28 | 1 | -1/+3 |
| * | Unbreak the build. | Benjamin Kramer | 2011-01-27 | 1 | -1/+1 |
| * | Expound upon this comparison! | Nick Lewycky | 2011-01-27 | 1 | -0/+2 |
| * | Use dyn_cast instead of isa+cast. | Nick Lewycky | 2011-01-27 | 1 | -2/+1 |
| * | Fix surprising missed optimization in mergefunc where we forgot to consider | Nick Lewycky | 2011-01-27 | 1 | -3/+12 |
| * | AttrListPtr has an overloaded operator== which does this for us, we should use | Nick Lewycky | 2011-01-26 | 1 | -4/+2 |
| * | Teach mergefunc that intptr_t is the same width as a pointer. We still can't | Nick Lewycky | 2011-01-26 | 1 | -1/+7 |
| * | There are no vectors of pointer or arrays, so we don't need to check vector | Nick Lewycky | 2011-01-26 | 1 | -7/+1 |
| * | Teach mergefunc how to emit aliases safely again -- but keep it turned it off | Nick Lewycky | 2011-01-25 | 1 | -25/+79 |
| * | Add a cache that protects mergefunc's internals from more surprises in DenseSet. | Nick Lewycky | 2011-01-15 | 1 | -5/+27 |
| * | Also remove functions that use complex constant expressions in terms of | Nick Lewycky | 2011-01-02 | 1 | -5/+18 |
| * | Remove functions from the FnSet when one of their callee's is being merged. This | Nick Lewycky | 2011-01-02 | 1 | -82/+66 |
| * | RetOp is not actually used for anything useful (though | Duncan Sands | 2010-10-21 | 1 | -2/+0 |
| * | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -1/+3 |
| * | Now with fewer extraneous semicolons! | Owen Anderson | 2010-10-07 | 1 | -1/+1 |
| * | Fix major bug in thunk detection. Also verify the calling convention. | Nick Lewycky | 2010-09-07 | 1 | -22/+39 |