aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
Commit message (Expand)AuthorAgeFilesLines
* eliminate the "string" form of ConstantArray::get, usingChris Lattner2012-01-313-9/+3
* with recent changes, ConstantArray is never a "string". Remove the associatedChris Lattner2012-01-312-82/+10
* fix a small oversight that broke the fhourstones app.Chris Lattner2012-01-311-1/+1
* Change ConstantArray::get to form a ConstantDataArray when possible,Chris Lattner2012-01-311-38/+93
* fix asmwriting of ConstantDataArray to use the right element count, Chris Lattner2012-01-311-22/+18
* Add a constified getLandingPad() method.Bill Wendling2012-01-311-0/+3
* Various improvements suggested by DuncanChris Lattner2012-01-301-1/+1
* First step of flipping on ConstantDataSequential: enable ConstantDataVectorChris Lattner2012-01-301-7/+89
* Fix ConstantFoldShuffleVectorInstruction to properly handle the caseChris Lattner2012-01-301-3/+5
* continue making the world safe for ConstantDataVector. At this point,Chris Lattner2012-01-273-38/+46
* smallvectorize and ArrayRef'ize some stuff.Chris Lattner2012-01-262-5/+5
* Reduce a lot of code duplication by implementing Chris Lattner2012-01-261-138/+16
* unbreak test/Bitcode/shuffle.ll.Chris Lattner2012-01-261-0/+3
* simplify by using ShuffleVectorInst::getMaskValue.Chris Lattner2012-01-261-10/+8
* eliminate the Constant::getVectorElements method. There are better (andChris Lattner2012-01-263-48/+18
* Continue improving support for ConstantDataAggregate, and use theChris Lattner2012-01-262-367/+129
* Add a ConstantDataVector::getSplatValue() method, for parity withChris Lattner2012-01-261-39/+87
* some general cleanup, using new methods and tidying up old code.Chris Lattner2012-01-261-26/+21
* fix pasto in the new (and still unused) ShuffleVectorInst::getShuffleMask met...Chris Lattner2012-01-261-1/+1
* add StructType helpers too.Chris Lattner2012-01-261-0/+14
* Ok, break down and add some cast<>'ing helper methods to the Type classChris Lattner2012-01-261-0/+39
* add some helper methods to ShuffleVectorInst and enhance itsChris Lattner2012-01-251-28/+55
* constify some methods and add a new Constant::getAggregateElementChris Lattner2012-01-251-8/+41
* use ConstantVector::getSplat in a few places.Chris Lattner2012-01-251-23/+4
* reapply r148901 with a crucial fix.Chris Lattner2012-01-251-31/+59
* Fix assert("msg"). Fix unused-variable warnings complaining about VT used onlyNick Lewycky2012-01-251-5/+8
* Revert r148901 because it crashes llvm tests.Argyrios Kyrtzidis2012-01-251-55/+28
* Introduce a new ConstantVector::getSplat constructor function to Chris Lattner2012-01-251-28/+55
* Remove the Type::getNumElements() method, which is only called in 4 places,Chris Lattner2012-01-253-15/+19
* C++, CBE, and TLOF support for ConstantDataSequentialChris Lattner2012-01-241-1/+2
* Rearrange argument order of ::get methods so that LLVMContext comes first,Chris Lattner2012-01-241-14/+28
* add more support for ConstantDataSequentialChris Lattner2012-01-241-3/+8
* Add AsmPrinter (aka MCLowering) support for ConstantDataSequential, Chris Lattner2012-01-241-12/+6
* Add various "string" methods to ConstantDataSequential, which have theChris Lattner2012-01-241-0/+27
* teach valuetracking about ConstantDataSequentialChris Lattner2012-01-241-0/+18
* Add some accessor methods to CAZ and UndefValue that help simplify clients.Chris Lattner2012-01-241-6/+60
* implement the ConstantDataSequential accessor methods.Chris Lattner2012-01-241-3/+93
* start the implementation of a new ConstantDataVector and ConstantDataArrayChris Lattner2012-01-233-0/+156
* convert CAZ, UndefValue, and CPN to use DenseMap's again, this time withoutChris Lattner2012-01-234-61/+30
* revert r148691 and 148693Chris Lattner2012-01-234-67/+61
* switch UndefValue and ConstantPointerNull over to DenseMap's for uniquing.Chris Lattner2012-01-234-40/+44
* Replace a use of ConstantUniqueMap for CAZ constants with a simple DenseMap.Chris Lattner2012-01-234-21/+23
* Make Value::isDereferenceablePointer() handle unreachable code blocks. (ThisNick Lewycky2012-01-231-7/+17
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-207-18/+7
* Extend Attributes to 64 bitsKostya Serebryany2012-01-203-12/+17
* Provide better messages in llvm_unreachable.David Blaikie2012-01-171-1/+1
* Remove unreachable code. (replace with llvm_unreachable to help GCC where nec...David Blaikie2012-01-173-5/+1
* Removing unused default switch cases in switches over enums that already acco...David Blaikie2012-01-161-2/+1
* Added MVT::v2f16Pete Cooper2012-01-121-0/+2
* Don't try to create a GEP when the pointee type is unsized (such GEPsDuncan Sands2012-01-111-1/+2