aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore
AgeCommit message (Expand)Author
2012-01-25constify some methods and add a new Constant::getAggregateElementChris Lattner
2012-01-25use ConstantVector::getSplat in a few places.Chris Lattner
2012-01-25reapply r148901 with a crucial fix.Chris Lattner
2012-01-25Fix assert("msg"). Fix unused-variable warnings complaining about VT used onlyNick Lewycky
2012-01-25Revert r148901 because it crashes llvm tests.Argyrios Kyrtzidis
2012-01-25Introduce a new ConstantVector::getSplat constructor function to Chris Lattner
2012-01-25Remove the Type::getNumElements() method, which is only called in 4 places,Chris Lattner
2012-01-24C++, CBE, and TLOF support for ConstantDataSequentialChris Lattner
2012-01-24Rearrange argument order of ::get methods so that LLVMContext comes first,Chris Lattner
2012-01-24add more support for ConstantDataSequentialChris Lattner
2012-01-24Add AsmPrinter (aka MCLowering) support for ConstantDataSequential, Chris Lattner
2012-01-24Add various "string" methods to ConstantDataSequential, which have theChris Lattner
2012-01-24teach valuetracking about ConstantDataSequentialChris Lattner
2012-01-24Add some accessor methods to CAZ and UndefValue that help simplify clients.Chris Lattner
2012-01-24implement the ConstantDataSequential accessor methods.Chris Lattner
2012-01-23start the implementation of a new ConstantDataVector and ConstantDataArrayChris Lattner
2012-01-23convert CAZ, UndefValue, and CPN to use DenseMap's again, this time withoutChris Lattner
2012-01-23revert r148691 and 148693Chris Lattner
2012-01-23switch UndefValue and ConstantPointerNull over to DenseMap's for uniquing.Chris Lattner
2012-01-23Replace a use of ConstantUniqueMap for CAZ constants with a simple DenseMap.Chris Lattner
2012-01-23Make Value::isDereferenceablePointer() handle unreachable code blocks. (ThisNick Lewycky
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-20Extend Attributes to 64 bitsKostya Serebryany
2012-01-17Provide better messages in llvm_unreachable.David Blaikie
2012-01-17Remove unreachable code. (replace with llvm_unreachable to help GCC where nec...David Blaikie
2012-01-16Removing unused default switch cases in switches over enums that already acco...David Blaikie
2012-01-12Added MVT::v2f16Pete Cooper
2012-01-11Don't try to create a GEP when the pointee type is unsized (such GEPsDuncan Sands
2012-01-10Add 'llvm_unreachable' to passify GCC's understanding of the constraintsChandler Carruth
2012-01-10Remove unnecessary default cases in switches that cover all enum values.David Blaikie
2012-01-03generalize LLVMContext::emitError to take a twine instead of a StringRef.Chris Lattner
2012-01-03Type: replaced usage of ID with getTypeID().Stepan Dyatkovskiy
2011-12-31VMCore: add assert for miscompileDylan Noblesmith
2011-12-27Using Inst->setMetadata(..., NULL) should be safe to remove metadata even whenNick Lewycky
2011-12-22Give string constants generated by IRBuilder private linkage.Benjamin Kramer
2011-12-20Add support to add named metadata operand.Devang Patel
2011-12-20Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie
2011-12-20Add basic generic CodeGen support for half.Dan Gohman
2011-12-17The powers that be have decided that LLVM IR should now support 16-bitDan Gohman
2011-12-15Make constant folding for GEPs a bit more aggressive.Eli Friedman
2011-12-14Move Instruction::isSafeToSpeculativelyExecute out of VMCore andDan Gohman
2011-12-12Fix unused value warning for value used only in assert.Nick Lewycky
2011-12-12LLVMBuild: Remove trailing newline, which irked me.Daniel Dunbar
2011-12-12Don't rely in there being one argument before we've actually identifiedChandler Carruth
2011-12-12Teach the verifier to reject all non-constant arguments to the secondChandler Carruth
2011-12-12Switch llvm.cttz and llvm.ctlz to accept a second i1 parameter whichChandler Carruth
2011-12-09Add dump method for debugging.Bill Wendling
2011-12-06Push StringRefs through the metadata interface.Benjamin Kramer
2011-12-05Add a little heuristic to Value::isUsedInBasicBlock to speed it up for small ...Benjamin Kramer
2011-12-05Add support for vectors of pointers.Nadav Rotem