| Commit message (Expand) | Author | Age | Files | Lines |
* | Convert ConstantFoldGetElementPtr to use ArrayRef. | Jay Foad | 2011-07-19 | 3 | -27/+25 |
* | Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a... | Jeffrey Yasskin | 2011-07-18 | 2 | -2/+3 |
* | Migrate LLVM and Clang to use the new makeArrayRef(...) functions where previ... | Frits van Bommel | 2011-07-18 | 1 | -11/+8 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 21 | -385/+384 |
* | tidy up | Chris Lattner | 2011-07-17 | 1 | -9/+9 |
* | deconstify getType()'s. | Chris Lattner | 2011-07-15 | 1 | -1/+1 |
* | Convert CallInst and InvokeInst APIs to use ArrayRef. | Jay Foad | 2011-07-15 | 4 | -101/+43 |
* | remove the old and dangerous uncheckedReplaceAllUsesWith method, | Chris Lattner | 2011-07-15 | 2 | -28/+14 |
* | devirtualize Constant::isNullValue: | Chris Lattner | 2011-07-15 | 1 | -5/+14 |
* | add CFP::isNegative() and ConstnatInt::isNegative() methods. | Chris Lattner | 2011-07-15 | 1 | -0/+9 |
* | bump pointer allocate LLVM IR types, since they are never deallocated. | Chris Lattner | 2011-07-15 | 3 | -38/+23 |
* | Add dump() | Devang Patel | 2011-07-14 | 1 | -0/+16 |
* | Fix GlobalValue::isDeclaration() to always consider aliases to be definitions. | Chris Lattner | 2011-07-14 | 1 | -3/+2 |
* | Add LLVMConstNamedStruct to the C api to let its users create constants | Rafael Espindola | 2011-07-14 | 1 | -0/+10 |
* | DebugLoc's don't hide any interesting types for TypeFinder to find. | Chris Lattner | 2011-07-14 | 1 | -1/+1 |
* | manually copy debugloc over to a new instruction in clone() instead | Chris Lattner | 2011-07-14 | 1 | -1/+3 |
* | add comments. | Chris Lattner | 2011-07-14 | 1 | -1/+3 |
* | consolidate GlobalValue::isDeclaration into one | Chris Lattner | 2011-07-14 | 1 | -8/+13 |
* | code cleanup | Chris Lattner | 2011-07-14 | 1 | -20/+15 |
* | Change Intrinsic::getDeclaration and friends to take an ArrayRef. | Benjamin Kramer | 2011-07-14 | 2 | -13/+10 |
* | add a couple more missing C api, patch by Vitaly Lugovskiy! | Chris Lattner | 2011-07-14 | 1 | -0/+8 |
* | Simplify some functions in the C API by using an ArrayRef to directly referen... | Frits van Bommel | 2011-07-14 | 1 | -13/+3 |
* | add C api for hte new type system rewrite API. Patch by Vitaly Lugovskiy! | Chris Lattner | 2011-07-14 | 1 | -0/+13 |
* | Simplify and delay extracting DebugLoc elements, scope and InlinedAt, as much... | Devang Patel | 2011-07-14 | 1 | -0/+16 |
* | Revert r135042. As Chris pointed out, it had no effect, and was based on | Jay Foad | 2011-07-13 | 1 | -5/+0 |
* | Really cache function types and anonymous struct types. | Jay Foad | 2011-07-13 | 1 | -0/+5 |
* | Convert InsertValueInst and ExtractValueInst APIs to use ArrayRef. | Jay Foad | 2011-07-13 | 7 | -127/+62 |
* | stop leaking all named struct types with an empty name. Thanks | Chris Lattner | 2011-07-13 | 3 | -8/+18 |
* | Second attempt at de-constifying LLVM Types in FunctionType::get(), | Jay Foad | 2011-07-12 | 6 | -32/+18 |
* | simplify assertions to not be completely redundant. | Chris Lattner | 2011-07-12 | 1 | -15/+2 |
* | make the IRBuilder type methods return non-const types. | Chris Lattner | 2011-07-12 | 1 | -1/+1 |
* | Revert r134893 and r134888 (and related patches in other trees). It was causing | Bill Wendling | 2011-07-12 | 6 | -18/+32 |
* | TypeMap had a destructor that destroyed the types it held. DenseMap did not, so | Nick Lewycky | 2011-07-12 | 1 | -14/+18 |
* | De-constify Types in StructType::get() and TargetData::getIntPtrType(). | Jay Foad | 2011-07-11 | 3 | -12/+5 |
* | De-constify Types in FunctionType::get(). | Jay Foad | 2011-07-11 | 5 | -20/+13 |
* | Remove mentions of type planes. | Jay Foad | 2011-07-11 | 1 | -4/+4 |
* | Silence -Wunused-variable in release builds. | Chandler Carruth | 2011-07-10 | 1 | -0/+2 |
* | the various ConstantExpr::get*Ty methods existed to work with issues around | Chris Lattner | 2011-07-09 | 1 | -145/+90 |
* | don't load element before checking to see if it is valid. | Chris Lattner | 2011-07-09 | 1 | -2/+2 |
* | Eliminate the WriteTypeSymbolic function. Now that types know | Chris Lattner | 2011-07-09 | 1 | -5/+0 |
* | remove the DerivedType which isn't adding value anymore. | Chris Lattner | 2011-07-09 | 1 | -1/+1 |
* | Land the long talked about "type system rewrite" patch. This | Chris Lattner | 2011-07-09 | 19 | -2251/+703 |
* | Introduce "expect" intrinsic instructions. | Jakub Staszak | 2011-07-06 | 1 | -0/+4 |
* | Improve constant folding of undef for cmp and select operators. | Dan Gohman | 2011-07-01 | 1 | -2/+7 |
* | Improve constant folding of undef for binary operators. | Dan Gohman | 2011-07-01 | 1 | -4/+24 |
* | Add r134057 back, but splice the predecessor after the successors phi | Rafael Espindola | 2011-06-30 | 1 | -0/+20 |
* | Temporarily revert r134057: "Let simplify cfg simplify bb with only debug and | Chad Rosier | 2011-06-29 | 1 | -20/+0 |
* | Let simplify cfg simplify bb with only debug and lifetime intrinsics. | Rafael Espindola | 2011-06-29 | 1 | -0/+20 |
* | PR10210: New method ConstantArray::getAsCString(). Use it in LTO to | Jay Foad | 2011-06-28 | 1 | -8/+23 |
* | Revert unintentional check-in. | Devang Patel | 2011-06-24 | 2 | -81/+10 |