Age | Commit message (Expand) | Author |
2013-01-02 | Rename VMCore directory to IR. | Chandler Carruth |
2012-12-03 | Use the new script to sort the includes of every file under lib. | Chandler Carruth |
2012-10-30 | Fix isEliminableCastPair to work correctly in the presence of pointers | Duncan Sands |
2012-10-30 | Enable some additional constant folding for PPCDoubleDouble. | Ulrich Weigand |
2012-10-08 | Move TargetData to DataLayout. | Micah Villmow |
2012-07-19 | Remove tabs. | Bill Wendling |
2012-04-27 | Reapply r155682, making constant folding more consistent, with a fix to work | Dan Gohman |
2012-04-27 | Revert r155682, "Use ConstantExpr::getExtractElement when constant-folding ve... | NAKAMURA Takumi |
2012-04-27 | Use ConstantExpr::getExtractElement when constant-folding vectors | Dan Gohman |
2012-04-24 | ConstantFoldSelectInstruction swapped the operands of the select. | Nadav Rotem |
2012-02-06 | Remove some dead code and tidy things up now that vectors use ConstantDataVector | Chris Lattner |
2012-01-30 | Fix ConstantFoldShuffleVectorInstruction to properly handle the case | Chris Lattner |
2012-01-27 | continue making the world safe for ConstantDataVector. At this point, | Chris Lattner |
2012-01-26 | unbreak test/Bitcode/shuffle.ll. | Chris Lattner |
2012-01-26 | simplify by using ShuffleVectorInst::getMaskValue. | Chris Lattner |
2012-01-26 | eliminate the Constant::getVectorElements method. There are better (and | Chris Lattner |
2012-01-26 | Continue improving support for ConstantDataAggregate, and use the | Chris Lattner |
2012-01-20 | More dead code removal (using -Wunreachable-code) | David Blaikie |
2012-01-11 | Don't try to create a GEP when the pointee type is unsized (such GEPs | Duncan Sands |
2011-12-17 | The powers that be have decided that LLVM IR should now support 16-bit | Dan Gohman |
2011-12-15 | Make constant folding for GEPs a bit more aggressive. | Eli Friedman |
2011-09-02 | Return undef value (instead of arbitrary) for wrong or undef index in | Jakub Staszak |
2011-09-02 | ConstantVector returns arbitrary value for the wrong index. | Jakub Staszak |
2011-07-25 | Convert GetElementPtrInst to use ArrayRef. | Jay Foad |
2011-07-21 | Make better use of ConstantExpr::getGetElementPtr's InBounds parameter. | Jay Foad |
2011-07-21 | Convert ConstantExpr::getGetElementPtr and | Jay Foad |
2011-07-19 | Convert ConstantFoldGetElementPtr to use ArrayRef. | Jay Foad |
2011-07-18 | Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a... | Jeffrey Yasskin |
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-07-09 | don't load element before checking to see if it is valid. | Chris Lattner |
2011-07-09 | Land the long talked about "type system rewrite" patch. This | Chris Lattner |
2011-07-01 | Improve constant folding of undef for cmp and select operators. | Dan Gohman |
2011-07-01 | Improve constant folding of undef for binary operators. | Dan Gohman |
2011-06-22 | Make ConstantVector::get() always take an ArrayRef, never a std::vector. | Jay Foad |
2011-06-20 | Revamp the "ConstantStruct::get" methods. Previously, these were scattered | Chris Lattner |
2011-04-15 | Fix a ton of comment typos found by codespell. Patch by | Chris Lattner |
2011-04-11 | Don't include Operator.h from InstrTypes.h. | Jay Foad |
2011-02-17 | Enhance constant folding of bitcast operations on vectors of floats. | Nadav Rotem |
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-13 | Fix a regression from r125393; | Nadav Rotem |
2011-02-11 | Fix 9173. | Nadav Rotem |
2011-01-30 | Fix 'fcmp one' constant folding. Noticed by inspection. | Nick Lewycky |
2011-01-30 | Fix some formatting and upgrade comments from llvm 1.x to 2.x syntax. | Nick Lewycky |
2011-01-29 | Add the select optimization recently added to instcombine to constant folding. | Nick Lewycky |
2011-01-21 | Add a constant folding of casts from zero to zero. Fixes PR9011! | Nick Lewycky |
2011-01-14 | Remove casts between Value** and Constant**, which won't work if a | Jay Foad |
2011-01-14 | Move some shift transforms out of instcombine and into InstructionSimplify. | Duncan Sands |