| Commit message (Expand) | Author | Age | Files | Lines |
* | add a long-overdue AllocaInst::isStaticAlloca method. | Chris Lattner | 2008-11-26 | 1 | -0/+12 |
* | Silence unused variable warnings. | Devang Patel | 2008-11-21 | 1 | -0/+1 |
* | Added support for the following definition of shufflevector | Mon P Wang | 2008-11-10 | 1 | -11/+10 |
* | Silence unused variable warnings. | Devang Patel | 2008-11-05 | 1 | -1/+3 |
* | Large mechanical patch. | Devang Patel | 2008-09-25 | 1 | -22/+22 |
* | s/ParameterAttributes/Attributes/g | Devang Patel | 2008-09-23 | 1 | -7/+7 |
* | Improve support for vector casts in LLVM IR and CodeGen. | Dan Gohman | 2008-08-14 | 1 | -13/+18 |
* | Add vector shifts to the IR, patch by Eli Friedman. | Nate Begeman | 2008-07-29 | 1 | -2/+5 |
* | Add a GetElementPtrInst::getIndexedType that accepts uint64_t's instead of ju... | Matthijs Kooijman | 2008-07-29 | 1 | -4/+20 |
* | Tab removal | Nate Begeman | 2008-07-25 | 1 | -1/+1 |
* | Enable first-class aggregates support. | Dan Gohman | 2008-07-23 | 1 | -93/+10 |
* | Add some convenience methods for manipulating | Duncan Sands | 2008-07-08 | 1 | -14/+32 |
* | Remove two convenience constructors because they're now private, and the | Dan Gohman | 2008-06-23 | 1 | -18/+0 |
* | Use std::copy instead of a loop. | Dan Gohman | 2008-06-23 | 1 | -3/+1 |
* | Simplify this code. Thanks Chris! | Dan Gohman | 2008-06-20 | 1 | -3/+2 |
* | In InsertValueInst's copy ctor, actually copy the operands. | Dan Gohman | 2008-06-17 | 1 | -0/+2 |
* | Implement the ExtractValueInst::getIndexedType that accepts one | Dan Gohman | 2008-06-17 | 1 | -0/+6 |
* | fix pr2460 | Chris Lattner | 2008-06-16 | 1 | -1/+2 |
* | get rid of ExtractValueInst::init's Value argument, it is already passed to t... | Gabor Greif | 2008-06-06 | 1 | -6/+4 |
* | make ExtractValueInst derived from UnaryInstruction | Gabor Greif | 2008-06-06 | 1 | -12/+9 |
* | * Make CallSite::hasArgument const and let it take a const parameter. | Matthijs Kooijman | 2008-06-05 | 1 | -1/+1 |
* | Add CallSite::hasArgument to allow for seeing if a call passes a certain valu... | Matthijs Kooijman | 2008-06-04 | 1 | -0/+7 |
* | Add a Name parameter to two of the init methods of GetElementPointer to make ... | Matthijs Kooijman | 2008-06-04 | 1 | -6/+8 |
* | Implement the two constructors in InsertValueInst and ExtractValueInst. | Matthijs Kooijman | 2008-06-04 | 1 | -5/+54 |
* | Factor several methods, including getInversePredicate and | Dan Gohman | 2008-05-31 | 1 | -43/+31 |
* | IR, bitcode reader, bitcode writer, and asmparser changes to | Dan Gohman | 2008-05-31 | 1 | -44/+46 |
* | prune unneeded #includes | Gabor Greif | 2008-05-27 | 1 | -1/+0 |
* | remove unneeded reinterpret_casts | Gabor Greif | 2008-05-27 | 1 | -2/+2 |
* | We have the correct headers included to know that BB isa Value. No reinterpre... | Gabor Greif | 2008-05-27 | 1 | -6/+6 |
* | eliminate calls to deprecated Use::init() interface | Gabor Greif | 2008-05-26 | 1 | -108/+108 |
* | Add more IR support for the new extractvalue and insertvalue | Dan Gohman | 2008-05-23 | 1 | -0/+68 |
* | Add functions to enable adding a single attribute to a function and | Eric Christopher | 2008-05-16 | 1 | -0/+12 |
* | API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac... | Gabor Greif | 2008-05-16 | 1 | -44/+44 |
* | Revert the change from r51157 in | Dan Gohman | 2008-05-16 | 1 | -1/+1 |
* | IR support for extractvalue and insertvalue instructions. Also, begin | Dan Gohman | 2008-05-15 | 1 | -32/+37 |
* | Fix a bunch of 80col violations that arose from the Create API change. Tweak ... | Gabor Greif | 2008-05-15 | 1 | -26/+39 |
* | Merge of r51073-51074 from use-diet branch. | Gabor Greif | 2008-05-13 | 1 | -1/+1 |
* | Derive GetResultInst from UnaryInstruction, this simplifies code and removes ... | Gabor Greif | 2008-05-13 | 1 | -8/+6 |
* | Pointer comparisons should be handled by icmp, not vicmp :) | Nate Begeman | 2008-05-12 | 1 | -2/+2 |
* | Hard code CmpInst back to i1 for now while I go track down what in the bitcod... | Nate Begeman | 2008-05-12 | 1 | -2/+2 |
* | Add two new instructions to the llvm IR, vicmp and vfcmp. see updated LangRef | Nate Begeman | 2008-05-12 | 1 | -61/+39 |
* | Update comments. | Dan Gohman | 2008-05-12 | 1 | -4/+3 |
* | merge of use-diet branch to trunk | Gabor Greif | 2008-05-10 | 1 | -161/+251 |
* | Enforce that multiple return values have to have at least one result. | Chris Lattner | 2008-04-23 | 1 | -1/+1 |
* | API changes for class Use size reduction, wave 1. | Gabor Greif | 2008-04-06 | 1 | -8/+8 |
* | Shrink the size of AllocationInst by using its SubclassData | Dan Gohman | 2008-03-24 | 1 | -4/+10 |
* | move a bunch of trivial methods to be inline. | Chris Lattner | 2008-03-13 | 1 | -74/+2 |
* | Reimplement the parameter attributes support, phase #1. hilights: | Chris Lattner | 2008-03-12 | 1 | -63/+16 |
* | s/isReturnStruct()/hasStructRetAttr()/g | Devang Patel | 2008-03-03 | 1 | -4/+6 |
* | Add a new ShuffleVectorInst::getMaskValue method. | Chris Lattner | 2008-03-02 | 1 | -6/+24 |