| Commit message (Expand) | Author | Age | Files | Lines |
* | Reword the comment for ConstantInt's getLimitedValue. | Dan Gohman | 2008-12-20 | 1 | -3/+5 |
* | Make ConstantAggregateZero::get return a ConstantAggregateZero*, | Dan Gohman | 2008-12-08 | 1 | -1/+1 |
* | A file missed from previous checkin. | Dale Johannesen | 2008-10-09 | 1 | -1/+2 |
* | Prevent warning about conversion from 64-bit to 32-bit by (yuck) casting... | Bill Wendling | 2008-09-19 | 1 | -1/+1 |
* | Add a new ConstantExpr::getWithOperands that takes any array of operands | Chris Lattner | 2008-08-20 | 1 | -1/+4 |
* | Remove unnecessary implicit argument | Nate Begeman | 2008-07-25 | 1 | -2/+2 |
* | Fix minor issues with VICmp/VFCmp constant expressions | Nate Begeman | 2008-07-25 | 1 | -2/+3 |
* | IR, bitcode reader, bitcode writer, and asmparser changes to | Dan Gohman | 2008-05-31 | 1 | -4/+13 |
* | Remove warnings about unused parameters and shadowed variables. | Bill Wendling | 2008-05-19 | 1 | -4/+4 |
* | IR support for extractvalue and insertvalue instructions. Also, begin | Dan Gohman | 2008-05-15 | 1 | -0/+9 |
* | Add two new instructions to the llvm IR, vicmp and vfcmp. see updated LangRef | Nate Begeman | 2008-05-12 | 1 | -0/+2 |
* | remove commented-out code, it is subsumed by DECLARE_TRANSPARENT_OPERAND_ACCE... | Gabor Greif | 2008-05-10 | 1 | -9/+0 |
* | merge of use-diet branch to trunk | Gabor Greif | 2008-05-10 | 1 | -5/+37 |
* | remove obsolete method. | Chris Lattner | 2008-05-04 | 1 | -3/+0 |
* | Don't try to convert PPC long double. | Dale Johannesen | 2008-04-28 | 1 | -0/+3 |
* | ConstantFP::get should be static. | Chris Lattner | 2008-04-09 | 1 | -1/+1 |
* | Unbreak teh build. | Evan Cheng | 2008-04-09 | 1 | -0/+5 |
* | add a version of ConstantFP::get that doesn't take a redundant Type* value, | Chris Lattner | 2008-04-09 | 1 | -1/+4 |
* | make ConstantFP::isExactlyValue work for long double as well. | Chris Lattner | 2008-04-09 | 1 | -7/+4 |
* | API changes for class Use size reduction, wave 1. | Gabor Greif | 2008-04-06 | 1 | -1/+30 |
* | ubyte and sbyte? what are those? | Nick Lewycky | 2008-03-20 | 1 | -2/+2 |
* | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Reverting dtor devirtualization patch. | Gordon Henriksen | 2007-12-10 | 1 | -146/+4 |
* | Devirtualizing Value destructor (PR889). Patch by Pawel Kunio! | Gordon Henriksen | 2007-12-09 | 1 | -4/+146 |
* | Get rid of compilation warning during release builds | Bill Wendling | 2007-11-01 | 1 | -2/+2 |
* | Define a helper function ConstantVector::getSplatValue for testing for | Dan Gohman | 2007-10-17 | 1 | -0/+4 |
* | Adding C and Ocaml bindings for ConstantExpr. | Gordon Henriksen | 2007-10-06 | 1 | -3/+3 |
* | Remove the assumption that FP's are either float or | Dale Johannesen | 2007-09-14 | 1 | -0/+3 |
* | Next round of APFloat changes. | Dale Johannesen | 2007-09-06 | 1 | -17/+4 |
* | Change LegalFPImmediates to use APFloat. | Dale Johannesen | 2007-08-30 | 1 | -3/+19 |
* | Change internal representation of ConstantFP to use APFloat. | Dale Johannesen | 2007-08-24 | 1 | -2/+10 |
* | Fix minor doxygen nits. | Reid Spencer | 2007-08-05 | 1 | -0/+2 |
* | Fix comments about vectors to use the current wording. | Dan Gohman | 2007-07-16 | 1 | -1/+1 |
* | Minor comment cleanups. | Dan Gohman | 2007-05-24 | 1 | -4/+4 |
* | Rename Value::getValueType to getValueID, to avoid confusion with | Dan Gohman | 2007-04-13 | 1 | -9/+9 |
* | getLimitedValue now just forward to APInt's getLimitedValue. Mark it const. | Chris Lattner | 2007-04-10 | 1 | -3/+2 |
* | add a helper function to constantint. | Chris Lattner | 2007-04-03 | 1 | -0/+3 |
* | Make sure this method just return value equal or less than Limit. | Zhou Sheng | 2007-03-30 | 1 | -1/+2 |
* | Rename and correct the method "greaterOrEqual". | Zhou Sheng | 2007-03-30 | 1 | -2/+2 |
* | Add two utility methods into ConstantInt. | Zhou Sheng | 2007-03-30 | 1 | -0/+16 |
* | Add the 'explicit' keyword to several constructors that accept one | Dan Gohman | 2007-03-23 | 1 | -3/+3 |
* | Allow ConstantInt::get(Ty, uint64_t) to interpret the 64-bit values as a | Reid Spencer | 2007-03-19 | 1 | -1/+1 |
* | Add a non-virtual test for zero, isZero, and rename isUnitValue isOne. | Reid Spencer | 2007-03-02 | 1 | -2/+10 |
* | Remove virtual keyword from method that doesn't need to be virtual. | Reid Spencer | 2007-03-01 | 1 | -1/+1 |
* | Add an isUnitValue method for comparison against 1. This just follows a | Reid Spencer | 2007-03-01 | 1 | -0/+7 |
* | Drop the ConstantInt(const Type&, const APInt&) constructor. It is | Reid Spencer | 2007-03-01 | 1 | -5/+4 |
* | Implement a convenience method to construct a ConstantInt directly from an | Reid Spencer | 2007-02-28 | 1 | -0/+4 |
* | For PR1205: | Reid Spencer | 2007-02-26 | 1 | -25/+30 |
* | eliminate some dead friends. | Chris Lattner | 2007-02-20 | 1 | -2/+0 |
* | cleanup ConstantInt to use a single DenseMap for uniquing instead of the | Chris Lattner | 2007-02-20 | 1 | -4/+1 |