| Commit message (Expand) | Author | Age | Files | Lines |
* | s/isReturnStruct()/hasStructRetAttr()/g | Devang Patel | 2008-03-03 | 3 | -8/+13 |
* | If a function uses multive values in ret instruction then it | Devang Patel | 2008-03-03 | 2 | -4/+2 |
* | Add a new ShuffleVectorInst::getMaskValue method. | Chris Lattner | 2008-03-02 | 1 | -6/+24 |
* | Add an unwind_to field to basic blocks, making them Users instead of Values. | Nick Lewycky | 2008-03-02 | 2 | -8/+38 |
* | Print the name, not a pointer. | Nick Lewycky | 2008-03-01 | 1 | -1/+1 |
* | Fix PR2113 by verifying allocations. | Chris Lattner | 2008-03-01 | 1 | -3/+6 |
* | Use the new convertFromAPInt instead of convertFromZeroExtendedInteger. | Dan Gohman | 2008-02-29 | 1 | -6/+3 |
* | Remove dead code. | Devang Patel | 2008-02-27 | 1 | -14/+0 |
* | Add comment. | Devang Patel | 2008-02-27 | 1 | -1/+0 |
* | Add assert to check return type. | Devang Patel | 2008-02-26 | 1 | -5/+5 |
* | 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 |
* | print getresult operand and its type directly. | Devang Patel | 2008-02-23 | 1 | -11/+1 |
* | Use dyn_cast instead of isa + cast. | Devang Patel | 2008-02-23 | 1 | -2/+2 |
* | To support multiple return values, now ret instruction supports multiple oper... | Devang Patel | 2008-02-23 | 3 | -28/+65 |
* | Split ParameterAttributes.h, putting the complicated | Dale Johannesen | 2008-02-22 | 6 | -7/+7 |
* | Pass alignment on ByVal parameters, from FE, all | Dale Johannesen | 2008-02-22 | 2 | -0/+27 |
* | Print getresult instruction properly. | Devang Patel | 2008-02-22 | 1 | -0/+13 |
* | Print ret instruction that returns aggregates. | Devang Patel | 2008-02-22 | 1 | -2/+17 |
* | print getresult instruction. | Devang Patel | 2008-02-21 | 1 | -0/+1 |
* | Use isa<> instead of getTypeID() to check StructType. | Devang Patel | 2008-02-21 | 2 | -7/+6 |
* | Let invoke return aggregate value. | Devang Patel | 2008-02-21 | 2 | -3/+4 |
* | Let function call return aggregate. | Devang Patel | 2008-02-21 | 2 | -7/+26 |
* | What if functions can return aggregate values ? | Devang Patel | 2008-02-20 | 3 | -4/+9 |
* | getresult does not support nested aggregates. | Devang Patel | 2008-02-20 | 1 | -3/+14 |
* | Verifier should use Assert1 instead of assert. | Devang Patel | 2008-02-20 | 1 | -2/+2 |
* | 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 |
* | Use isValidOperands() to verify GetResultInst. | Devang Patel | 2008-02-20 | 1 | -1/+2 |
* | Fix newly-introduced 4.3 warnings | Anton Korobeynikov | 2008-02-20 | 1 | -1/+1 |
* | Unbreak build with gcc 4.3: provide missed includes and silence most annoying... | Anton Korobeynikov | 2008-02-20 | 5 | -15/+27 |
* | Add Alignment field to ParameterAttributes and | Dale Johannesen | 2008-02-19 | 1 | -1/+23 |
* | Add GetResultInst. First step for multiple return value support. | Devang Patel | 2008-02-19 | 2 | -0/+30 |
* | Expand ParameterAttributes to 32 bits (in preparation | Dale Johannesen | 2008-02-19 | 5 | -42/+49 |
* | Fix some minor issues folding undef, PR2052 | Chris Lattner | 2008-02-19 | 1 | -1/+3 |
* | Simplify caller updating using a CallSite, as | Duncan Sands | 2008-02-18 | 1 | -0/+4 |
* | I got the predicate backwards in my last patch. The comment is correct, the ... | Owen Anderson | 2008-02-18 | 1 | -1/+1 |
* | Duncan pointed out that we can fast fail here, because the sret parameter of | Owen Anderson | 2008-02-18 | 1 | -1/+2 |
* | Add a predicate to Argument to check for the StructRet attribute. | Owen Anderson | 2008-02-17 | 1 | -0/+7 |
* | Some micro-optimizations. | Duncan Sands | 2008-02-16 | 1 | -4/+5 |
* | targets that support quotes for mangled names still need to escape newlines | Chris Lattner | 2008-02-15 | 1 | -0/+2 |
* | check that terminators only occur at the end of a block. This catches the | Chris Lattner | 2008-02-09 | 1 | -0/+5 |
* | Fix a typo in a comment. | Dan Gohman | 2008-02-07 | 1 | -1/+1 |
* | Add comment explaining what is lower level analysis pass. | Devang Patel | 2008-02-02 | 1 | -0/+10 |
* | Fixing a bug creating floating point constants of type other | Gordon Henriksen | 2008-02-02 | 1 | -1/+23 |