Age | Commit message (Expand) | Author |
2011-08-29 | Fixes following the CR by Chris and Duncan: | Nadav Rotem |
2011-08-28 | Bitcasts are transitive. Bitcast-Bitcast-X becomes Bitcast-X. | Nadav Rotem |
2011-08-24 | Implement Constant::isAllOnesValue(). Fix ConstantFolding to use the new api. | Nadav Rotem |
2011-08-23 | Revert "Address Duncan's CR request:" | Eric Christopher |
2011-08-23 | Address Duncan's CR request: | Nadav Rotem |
2011-08-20 | Add constant folding support for bitcasts of splat vectors to integers. | Nadav Rotem |
2011-07-25 | Convert GetElementPtrInst to use ArrayRef. | Jay Foad |
2011-07-21 | Convert ConstantExpr::getGetElementPtr and | Jay Foad |
2011-07-19 | Convert TargetData::getIndexedOffset to use ArrayRef. | Jay Foad |
2011-07-19 | Use ArrayRef in ConstantFoldInstOperands and ConstantFoldCall. | Jay Foad |
2011-07-18 | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner |
2011-07-13 | Convert InsertValueInst and ExtractValueInst APIs to use ArrayRef. | Jay Foad |
2011-06-23 | Revert "revert 133714" | Rafael Espindola |
2011-06-23 | revert 133714 | Dylan Noblesmith |
2011-06-23 | 133713 broke the build, revert it. | Rafael Espindola |
2011-06-23 | Support: make floating-exception header private | Dylan Noblesmith |
2011-06-20 | Revamp the "ConstantStruct::get" methods. Previously, these were scattered | Chris Lattner |
2011-05-22 | implement PR9315, constant folding exp2 in terms of pow (since hosts without | Chris Lattner |
2011-04-11 | Don't include Operator.h from InstrTypes.h. | Jay Foad |
2011-03-27 | Constant folding support for calls to umul.with.overflow(), basically identic... | Frits van Bommel |
2011-02-15 | convert ConstantVector::get to use ArrayRef. | Chris Lattner |
2011-02-14 | revert my ConstantVector patch, it seems to have made the llvm-gcc | Chris Lattner |
2011-02-14 | Switch ConstantVector::get to use ArrayRef instead of a pointer+size | Chris Lattner |
2011-02-06 | Simplify test, as suggested by Chris. | Anders Carlsson |
2011-02-06 | When loading from a constant, fold inttoptr if the integer type and the resul... | Anders Carlsson |
2011-01-24 | Give GetUnderlyingObject a TargetData, to keep it in sync | Dan Gohman |
2011-01-16 | fix PR8983, a broken assertion. | Chris Lattner |
2011-01-11 | Teach constant folding to perform conversions from constant floating | Chandler Carruth |
2011-01-10 | Cleanup some of the constant folding code to consistently test intrinsic | Chandler Carruth |
2011-01-06 | use isNullValue() to simplify code, add an assert. | Chris Lattner |
2011-01-06 | implement constant folding support for an exotic constant expr: | Chris Lattner |
2010-12-23 | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin |
2010-12-15 | Move Value::getUnderlyingObject to be a standalone | Dan Gohman |
2010-12-07 | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad |
2010-11-29 | Teach ConstantFoldInstruction() how to fold insertvalue and extractvalue. | Frits van Bommel |
2010-11-29 | Merge System into Support. | Michael J. Spencer |
2010-11-23 | Clarify that constant folding of instructions applies when all operands | Duncan Sands |
2010-11-21 | Fix spelling. | Duncan Sands |
2010-11-21 | apply Dan's fix for PR8268 which allows constant folding to handle indexes over | Chris Lattner |
2010-11-14 | Boost the power of phi node constant folding slightly: if all | Duncan Sands |
2010-10-14 | add uadd_ov/usub_ov to apint, consolidate constant folding | Chris Lattner |
2010-09-27 | Don't try to constant fold libm functions with non-finite arguments. | Jakob Stoklund Olesen |
2010-09-17 | Don't include <fenv.h> now that we have llvm/System/FEnv.h. | Jakob Stoklund Olesen |
2010-09-17 | Attempt to support platforms which don't have fenv.h. | Dan Gohman |
2010-09-17 | Fix the folding of floating-point math library calls, like sin(infinity), | Dan Gohman |
2010-07-16 | eliminate CallInst::ArgOffset | Gabor Greif |
2010-07-12 | Add parentheses around an || to correct the logic. Also silences a GCC warning | Chandler Carruth |
2010-07-12 | fix PR7429, a crash turning a load from a string into a float. | Chris Lattner |
2010-07-07 | conditionalize by CallInst::ArgOffset | Gabor Greif |
2010-06-18 | Eliminate unnecessary uses of getZExtValue(). | Dan Gohman |