summaryrefslogtreecommitdiff
path: root/lib/VMCore/Constants.cpp
Commit message (Expand)AuthorAge
* Merge r168147 from trunk:Hans Wennborg2012-11-16
* Merge r168037 from trunk:Hans Wennborg2012-11-16
* Back out r166591, not sure why this made it through since I cancelled the com...Micah Villmow2012-10-24
* Delete a directory that wasn't supposed to be checked in yet.Micah Villmow2012-10-24
* Fixed few warnings; trimmed empty lines.Galina Kistanova2012-07-13
* When linearizing a multiplication, return at once if we see a factor of zero,Duncan Sands2012-06-13
* Now that Reassociate's LinearizeExprTree can look through arbitrary expressionDuncan Sands2012-06-12
* Reserve space in these vectors to prevent having to grow the array tooBill Wendling2012-02-07
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-05
* Efficient Constant Uniquing.Talin2012-02-05
* reapply the patches reverted in r149470 that reenable ConstantDataArray,Chris Lattner2012-02-05
* Revert Chris' commits up to r149348 that started causing VMCoreTests unit tes...Argyrios Kyrtzidis2012-02-01
* eliminate the "string" form of ConstantArray::get, usingChris Lattner2012-01-31
* with recent changes, ConstantArray is never a "string". Remove the associatedChris Lattner2012-01-31
* fix a small oversight that broke the fhourstones app.Chris Lattner2012-01-31
* Change ConstantArray::get to form a ConstantDataArray when possible,Chris Lattner2012-01-31
* Various improvements suggested by DuncanChris Lattner2012-01-30
* First step of flipping on ConstantDataSequential: enable ConstantDataVectorChris Lattner2012-01-30
* continue making the world safe for ConstantDataVector. At this point,Chris Lattner2012-01-27
* smallvectorize and ArrayRef'ize some stuff.Chris Lattner2012-01-26
* Reduce a lot of code duplication by implementing Chris Lattner2012-01-26
* eliminate the Constant::getVectorElements method. There are better (andChris Lattner2012-01-26
* Add a ConstantDataVector::getSplatValue() method, for parity withChris Lattner2012-01-26
* some general cleanup, using new methods and tidying up old code.Chris Lattner2012-01-26
* constify some methods and add a new Constant::getAggregateElementChris Lattner2012-01-25
* reapply r148901 with a crucial fix.Chris Lattner2012-01-25
* Fix assert("msg"). Fix unused-variable warnings complaining about VT used onlyNick Lewycky2012-01-25
* Revert r148901 because it crashes llvm tests.Argyrios Kyrtzidis2012-01-25
* Introduce a new ConstantVector::getSplat constructor function to Chris Lattner2012-01-25
* Remove the Type::getNumElements() method, which is only called in 4 places,Chris Lattner2012-01-25
* C++, CBE, and TLOF support for ConstantDataSequentialChris Lattner2012-01-24
* Rearrange argument order of ::get methods so that LLVMContext comes first,Chris Lattner2012-01-24
* add more support for ConstantDataSequentialChris Lattner2012-01-24
* Add AsmPrinter (aka MCLowering) support for ConstantDataSequential, Chris Lattner2012-01-24
* Add various "string" methods to ConstantDataSequential, which have theChris Lattner2012-01-24
* teach valuetracking about ConstantDataSequentialChris Lattner2012-01-24
* Add some accessor methods to CAZ and UndefValue that help simplify clients.Chris Lattner2012-01-24
* implement the ConstantDataSequential accessor methods.Chris Lattner2012-01-24
* start the implementation of a new ConstantDataVector and ConstantDataArrayChris Lattner2012-01-23
* convert CAZ, UndefValue, and CPN to use DenseMap's again, this time withoutChris Lattner2012-01-23
* revert r148691 and 148693Chris Lattner2012-01-23
* switch UndefValue and ConstantPointerNull over to DenseMap's for uniquing.Chris Lattner2012-01-23
* Replace a use of ConstantUniqueMap for CAZ constants with a simple DenseMap.Chris Lattner2012-01-23
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-20
* Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie2011-12-20
* The powers that be have decided that LLVM IR should now support 16-bitDan Gohman2011-12-17
* Add support for vectors of pointers.Nadav Rotem2011-12-05
* Fold ConstantVector::isAllOnesValue into Constant::isAllOnesValue and simplif...Benjamin Kramer2011-11-14
* Change:Richard Trieu2011-09-21
* Implement Constant::isAllOnesValue(). Fix ConstantFolding to use the new api.Nadav Rotem2011-08-24