| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove unused STL header includes. | Jay Foad | 2011-04-23 | 1 | -1/+0 |
| * | PR9214: Convert ConstantExpr::getIndices() to return an ArrayRef, plus | Jay Foad | 2011-04-13 | 1 | -3/+3 |
| * | Remove some redundant llvm:: prefixes. | Jay Foad | 2011-04-13 | 1 | -1/+1 |
| * | PR9214: Convert ConstantExpr::getWithOperands() to use ArrayRef. | Jay Foad | 2011-04-13 | 1 | -5/+5 |
| * | ConstantInt has some getters which return ConstantInt's or ConstantVector's of | Nick Lewycky | 2011-03-06 | 1 | -6/+31 |
| * | Added missing va_end(). | Talin | 2011-03-01 | 1 | -0/+1 |
| * | Add an END_WITH_NULL accessor for ConstantStruct. | Talin | 2011-02-28 | 1 | -2/+13 |
| * | hoist GlobalValue::removeDeadConstantUsers up to being a method on Constant. | Chris Lattner | 2011-02-18 | 1 | -0/+53 |
| * | Enhance constant folding of bitcast operations on vectors of floats. | Nadav Rotem | 2011-02-17 | 1 | -1/+7 |
| * | convert ConstantVector::get to use ArrayRef. | Chris Lattner | 2011-02-15 | 1 | -20/+15 |
| * | revert my ConstantVector patch, it seems to have made the llvm-gcc | Chris Lattner | 2011-02-14 | 1 | -15/+20 |
| * | Switch ConstantVector::get to use ArrayRef instead of a pointer+size | Chris Lattner | 2011-02-14 | 1 | -20/+15 |
| * | make ConstantExpr::replaceUsesOfWithOnConstant preserve the inbounds | Chris Lattner | 2011-02-11 | 1 | -1/+2 |
| * | make the constantexpr interfaces for inbounds GEPs follow the same style | Chris Lattner | 2011-02-11 | 1 | -63/+10 |
| * | switch the constantexpr, target folder, and IRBuilder interfaces | Chris Lattner | 2011-02-10 | 1 | -67/+24 |
| * | refactor ConstantExpr interfaces a bit around "exactness". | Chris Lattner | 2011-02-09 | 1 | -29/+12 |
| * | fix comment change. | Chris Lattner | 2011-02-07 | 1 | -1/+1 |
| * | implement .ll and .bc support for nsw/nuw on shl and exact on lshr/ashr. | Chris Lattner | 2011-02-07 | 1 | -53/+74 |
| * | enhance vmcore to know that udiv's can be exact, and add a trivial | Chris Lattner | 2011-02-06 | 1 | -1/+6 |
| * | Have m_One also match constant vectors for which every element is 1. | Duncan Sands | 2011-02-01 | 1 | -1/+1 |
| * | Fix indentation. | Jay Foad | 2011-01-27 | 1 | -9/+9 |
| * | Remove casts between Value** and Constant**, which won't work if a | Jay Foad | 2011-01-14 | 1 | -13/+28 |
| * | Apparently APFloat::getZero doesn't like PPCDoubleDoubles. | Benjamin Kramer | 2010-12-04 | 1 | -1/+1 |
| * | Simplify code. No functionality change. | Benjamin Kramer | 2010-12-04 | 1 | -6/+9 |
| * | Simplify code. No change in functionality. | Benjamin Kramer | 2010-11-20 | 1 | -10/+6 |
| * | remove unions from LLVM IR. They are severely buggy and not | Chris Lattner | 2010-08-28 | 1 | -80/+1 |
| * | Prefix `next' iterator operation with `llvm::'. | Oscar Fuentes | 2010-08-02 | 1 | -1/+1 |
| * | Preallocate vector, avoid unnecessary vector growth. | Benjamin Kramer | 2010-08-01 | 1 | -0/+1 |
| * | Fix PR7658, a problem where type refinement can trigger | Chris Lattner | 2010-07-17 | 1 | -24/+21 |
| * | Remove the API compatibility layer which converted add, sub, and mul | Dan Gohman | 2010-05-03 | 1 | -9/+0 |
| * | Simplify this code. | Dan Gohman | 2010-04-12 | 1 | -14/+14 |
| * | move some method definitions to files that make sense. | Chris Lattner | 2010-03-30 | 1 | -0/+14 |
| * | add support for zero initialized unions, patch by Tim Northover! | Chris Lattner | 2010-03-29 | 1 | -1/+3 |
| * | rename use_const_iterator to const_use_iterator for consistency's sake | Gabor Greif | 2010-03-25 | 1 | -1/+1 |
| * | replaceUsesOfWithOnConstant implementation for unions. | Talin | 2010-02-18 | 1 | -1/+46 |
| * | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands | 2010-02-16 | 1 | -10/+10 |
| * | Uniformize the names of type predicates: rather than having isFloatTy and | Duncan Sands | 2010-02-15 | 1 | -40/+40 |
| * | Add support for a union type in LLVM IR. Patch by Talin! | Chris Lattner | 2010-02-12 | 1 | -0/+33 |
| * | Adding missing methods for creating Add, Mul, Neg and Sub with NUW. | Duncan Sands | 2010-02-02 | 1 | -2/+18 |
| * | eliminate a bunch of pointless LLVMContext arguments. | Chris Lattner | 2010-02-01 | 1 | -27/+15 |
| * | Add a getNUWMul function. | Dan Gohman | 2010-02-01 | 1 | -0/+5 |
| * | Add a generalized form of ConstantExpr::getOffsetOf which works for | Dan Gohman | 2010-02-01 | 1 | -4/+9 |
| * | Make getAlignOf return an i64, for consistency with getSizeOf and | Dan Gohman | 2010-01-28 | 1 | -2/+2 |
| * | Remove SCEVAllocSizeExpr and SCEVFieldOffsetExpr, and in their place | Dan Gohman | 2010-01-28 | 1 | -2/+2 |
| * | fix CastInst::castIsValid to reject aggregate types, fixing PR6153: | Chris Lattner | 2010-01-26 | 1 | -30/+18 |
| * | Fix a crasher trying to fold each element in a comparison between two vectors | Nick Lewycky | 2010-01-21 | 1 | -7/+13 |
| * | Move remaining stuff to the isInteger predicate. | Benjamin Kramer | 2010-01-05 | 1 | -2/+2 |
| * | Convert a ton of simple integer type equality tests to the new predicate. | Benjamin Kramer | 2010-01-05 | 1 | -2/+2 |
| * | Change errs() to dbgs(). | David Greene | 2010-01-05 | 1 | -1/+1 |
| * | differences between two blockaddress's don't cause a | Chris Lattner | 2010-01-03 | 1 | -0/+18 |