summaryrefslogtreecommitdiff
path: root/lib/VMCore/Constants.cpp
Commit message (Expand)AuthorAge
* Change:Richard Trieu2011-09-21
* Implement Constant::isAllOnesValue(). Fix ConstantFolding to use the new api.Nadav Rotem2011-08-24
* Revert "Address Duncan's CR request:"Eric Christopher2011-08-23
* Address Duncan's CR request:Nadav Rotem2011-08-23
* strengthen up an assertion: you can't create a constant structChris Lattner2011-08-07
* Use ArrayRef in the (protected) constructors of ConstantArray, ConstantStruct...Jay Foad2011-07-25
* Convert GetElementPtrInst to use ArrayRef.Jay Foad2011-07-25
* Make better use of ConstantExpr::getGetElementPtr's InBounds parameter.Jay Foad2011-07-21
* Convert ConstantExpr::getGetElementPtr andJay Foad2011-07-21
* Convert ConstantFoldGetElementPtr to use ArrayRef.Jay Foad2011-07-19
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* tidy upChris Lattner2011-07-17
* remove the old and dangerous uncheckedReplaceAllUsesWith method,Chris Lattner2011-07-15
* devirtualize Constant::isNullValue:Chris Lattner2011-07-15
* add CFP::isNegative() and ConstnatInt::isNegative() methods.Chris Lattner2011-07-15
* Convert InsertValueInst and ExtractValueInst APIs to use ArrayRef.Jay Foad2011-07-13
* Second attempt at de-constifying LLVM Types in FunctionType::get(),Jay Foad2011-07-12
* simplify assertions to not be completely redundant.Chris Lattner2011-07-12
* Revert r134893 and r134888 (and related patches in other trees). It was causingBill Wendling2011-07-12
* De-constify Types in StructType::get() and TargetData::getIntPtrType().Jay Foad2011-07-11
* Silence -Wunused-variable in release builds.Chandler Carruth2011-07-10
* the various ConstantExpr::get*Ty methods existed to work with issues aroundChris Lattner2011-07-09
* Land the long talked about "type system rewrite" patch. ThisChris Lattner2011-07-09
* PR10210: New method ConstantArray::getAsCString(). Use it in LTO toJay Foad2011-06-28
* Replace the existing forms of ConstantArray::get() with a single formJay Foad2011-06-22
* Make ConstantVector::get() always take an ArrayRef, never a std::vector.Jay Foad2011-06-22
* Eliminate a temporary std::vector in ConstantStruct::get().Jay Foad2011-06-22
* Revamp the "ConstantStruct::get" methods. Previously, these were scatteredChris Lattner2011-06-20
* fix the varargs version of StructType::get to not require an LLVMContext, mak...Chris Lattner2011-06-18
* Remove unused STL header includes.Jay Foad2011-04-23
* PR9214: Convert ConstantExpr::getIndices() to return an ArrayRef, plusJay Foad2011-04-13
* Remove some redundant llvm:: prefixes.Jay Foad2011-04-13
* PR9214: Convert ConstantExpr::getWithOperands() to use ArrayRef.Jay Foad2011-04-13
* ConstantInt has some getters which return ConstantInt's or ConstantVector's ofNick Lewycky2011-03-06
* Added missing va_end().Talin2011-03-01
* Add an END_WITH_NULL accessor for ConstantStruct.Talin2011-02-28
* hoist GlobalValue::removeDeadConstantUsers up to being a method on Constant.Chris Lattner2011-02-18
* Enhance constant folding of bitcast operations on vectors of floats.Nadav Rotem2011-02-17
* convert ConstantVector::get to use ArrayRef.Chris Lattner2011-02-15
* revert my ConstantVector patch, it seems to have made the llvm-gccChris Lattner2011-02-14
* Switch ConstantVector::get to use ArrayRef instead of a pointer+sizeChris Lattner2011-02-14
* make ConstantExpr::replaceUsesOfWithOnConstant preserve the inboundsChris Lattner2011-02-11
* make the constantexpr interfaces for inbounds GEPs follow the same styleChris Lattner2011-02-11
* switch the constantexpr, target folder, and IRBuilder interfacesChris Lattner2011-02-10
* refactor ConstantExpr interfaces a bit around "exactness".Chris Lattner2011-02-09
* fix comment change.Chris Lattner2011-02-07
* implement .ll and .bc support for nsw/nuw on shl and exact on lshr/ashr.Chris Lattner2011-02-07
* enhance vmcore to know that udiv's can be exact, and add a trivialChris Lattner2011-02-06
* Have m_One also match constant vectors for which every element is 1.Duncan Sands2011-02-01
* Fix indentation.Jay Foad2011-01-27