| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Add comment. | Devang Patel | 2008-02-27 | 1 | -1/+0 |
* | Remove unncessary ReturnInst constructors. | Devang Patel | 2008-02-26 | 1 | -20/+0 |
* | Use SmallVector while constructing ReturnInst. | Devang Patel | 2008-02-26 | 1 | -0/+18 |
* | Avoid const_casts | Devang Patel | 2008-02-26 | 1 | -5/+5 |
* | Remove unnecessary getOperand/setOperand overriders. | Devang Patel | 2008-02-26 | 1 | -11/+0 |
* | Unify to ReturnInst::init() member functions. | Devang Patel | 2008-02-26 | 1 | -22/+17 |
* | Optimize most common case by using single RetVal in ReturnInst. | Devang Patel | 2008-02-26 | 1 | -20/+34 |
* | Pass const vectors by reference. | Devang Patel | 2008-02-26 | 1 | -4/+4 |
* | To support multiple return values, now ret instruction supports multiple oper... | Devang Patel | 2008-02-23 | 1 | -9/+53 |
* | Split ParameterAttributes.h, putting the complicated | Dale Johannesen | 2008-02-22 | 1 | -1/+1 |
* | Pass alignment on ByVal parameters, from FE, all | Dale Johannesen | 2008-02-22 | 1 | -0/+22 |
* | getresult does not support nested aggregates. | Devang Patel | 2008-02-20 | 1 | -3/+14 |
* | getresult type is the type of indexed aggregate element | Devang Patel | 2008-02-20 | 1 | -1/+1 |
* | Specify GetResultInst index as an unsigned. | Devang Patel | 2008-02-20 | 1 | -10/+12 |
* | Unbreak build with gcc 4.3: provide missed includes and silence most annoying... | Anton Korobeynikov | 2008-02-20 | 1 | -7/+10 |
* | Add GetResultInst. First step for multiple return value support. | Devang Patel | 2008-02-19 | 1 | -0/+24 |
* | Expand ParameterAttributes to 32 bits (in preparation | Dale Johannesen | 2008-02-19 | 1 | -9/+9 |
* | Simplify caller updating using a CallSite, as | Duncan Sands | 2008-02-18 | 1 | -0/+4 |
* | Handle some more combinations of extend and icmp. Fixes PR1940. | Nick Lewycky | 2008-01-28 | 1 | -0/+13 |
* | Be consistent with other attribute methods, and | Duncan Sands | 2008-01-21 | 1 | -1/+7 |
* | Simplify CallInst::hasByValArgument using a new method. | Duncan Sands | 2008-01-14 | 1 | -4/+1 |
* | Simplify code. | Evan Cheng | 2008-01-14 | 1 | -4/+1 |
* | Add hasByValArgument() to test if a call instruction has byval argument(s). | Evan Cheng | 2008-01-12 | 1 | -0/+11 |
* | When transforming a call to a bitcast function into | Duncan Sands | 2008-01-06 | 1 | -1/+62 |
* | Split param attr implementation out from Function.cpp into its | Chris Lattner | 2008-01-02 | 1 | -9/+66 |
* | remove blob of #if'd out code. | Chris Lattner | 2008-01-02 | 1 | -37/+0 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | When inlining through an 'nounwind' call, mark inlined | Duncan Sands | 2007-12-19 | 1 | -0/+24 |
* | Rename isNoReturn to doesNotReturn, and isNoUnwind to | Duncan Sands | 2007-12-18 | 1 | -3/+3 |
* | Change the PointerType api for creating pointer types. The old functionality ... | Christopher Lamb | 2007-12-17 | 1 | -6/+8 |
* | Make instcombine promote inline asm calls to 'nounwind' | Duncan Sands | 2007-12-16 | 1 | -0/+6 |
* | Implement address space attribute for LLVM pointer types. Address spaces are | Christopher Lamb | 2007-12-11 | 1 | -2/+4 |
* | Reverting dtor devirtualization patch. | Gordon Henriksen | 2007-12-10 | 1 | -18/+32 |
* | Devirtualizing Value destructor (PR889). Patch by Pawel Kunio! | Gordon Henriksen | 2007-12-09 | 1 | -32/+18 |
* | Rather than having special rules like "intrinsics cannot | Duncan Sands | 2007-12-03 | 1 | -1/+12 |
* | Small parameter attributes cleanup. | Duncan Sands | 2007-11-29 | 1 | -4/+6 |
* | Add some convenience methods for querying attributes, and | Duncan Sands | 2007-11-28 | 1 | -8/+18 |