Add getter methods for the extremes of a ConstantRange.
[oota-llvm.git] / lib / VMCore /
2007-03-08 Devang PatelSpeed Up Pass Manager.
2007-03-08 Evan ChengAdded ContainsRelocations() to check if a constant...
2007-03-06 Devang PatelKeep track of higher level analysis.
2007-03-06 Devang PatelKeep track of inherited analysis. For example, if a...
2007-03-06 Devang PatelAdd preparePassManager() hook. This allows each pass...
2007-03-05 Devang PatelCurrent pass manager, not the parent pass manager,...
2007-03-05 Devang PatelAvoid constructing std::strings unless pass debugging...
2007-03-05 Devang PatelAccount for time consumed by releaseMemory() properly.
2007-03-05 Jeff CohenUnbreak VC++ build.
2007-03-03 Reid SpencerFix constant folding of fp->int bitcast for vectors.
2007-03-02 Reid SpencerPrefer non-virtual calls to ConstantInt::isZero over...
2007-03-01 Reid SpencerUse the APInt versions of the bit-wise conversions...
2007-03-01 Reid SpencerUse modern variable name. ConstantUnsignedInt is long...
2007-03-01 Reid SpencerUse a simpler constructor when constructing ConstantInst.
2007-03-01 Reid SpencerDrop the ConstantInt(const Type&, const APInt&) constru...
2007-03-01 Reid SpencerReduce #includage by taking a method out of line.
2007-02-28 Reid SpencerProvide an ICmpInst::makeConstantRange to generate...
2007-02-28 Reid SpencerImplement a convenience method to construct a ConstantI...
2007-02-27 Reid SpencerPull out the stops.
2007-02-27 Reid SpencerRemove some redundancy.
2007-02-27 Reid SpencerAdjust to changes in the APInt interface.
2007-02-27 Reid SpencerFor PR1205:
2007-02-27 Devang PatelMake getPassManagerType() const.
2007-02-27 Reid SpencerAllow the AsmWriter to print out arbitrary precision...
2007-02-27 Reid SpencerCorrect the implelmentation of ConstantInt::getAllOnesV...
2007-02-27 Reid SpencerFor PR1205:
2007-02-27 Chris LattnerConstantFolding.cpp/h -> ConstantFold.cpp/h to avoid...
2007-02-26 Reid SpencerFor PR1205:
2007-02-26 Chris Lattnerreapply my previous patch with a bugfix.
2007-02-26 Chris Lattnerrevert my previous change, something strange is happening.
2007-02-25 Chris LattnerRework GlobalValue::removeDeadConstantUsers to always...
2007-02-25 Chris Lattnerdisable some noisy debug output
2007-02-24 Chris LattnerFix Transforms/ConstProp/2007-02-23-sdiv.ll and PR1215
2007-02-24 Chris LattnerRefactor the setName stuff, moving it down the inherita...
2007-02-20 Evan ChengThis cast broke lots of tests.
2007-02-20 Chris Lattnerswitch ConstantFP's from ValueMap to DenseMap, which...
2007-02-20 Chris Lattnercleanup ConstantInt to use a single DenseMap for uniqui...
2007-02-20 Chris LattnerMake ConstantInt::getTrue/getFalse be llvm_shutdown...
2007-02-20 Chris LattnerClean up the internals of the ConstantInt machinery
2007-02-20 Chris Lattnersimplify some code that was not llvm_shutdown safe
2007-02-20 Chris Lattnerremove dead method
2007-02-19 Chris Lattnerllvm-gcc issue fixed, revert reversal :)
2007-02-19 Chris Lattnerremove warning
2007-02-19 Evan ChengTemporarily reverting the patch. It's breaking llvm...
2007-02-19 Reid SpencerAdd a FIXME for unwritten code.
2007-02-19 Chris Lattnerremove dead methods
2007-02-17 Chris Lattnertemporarily revert Devang's most recent patch, which...
2007-02-17 Devang PatelUse inverted map to speedup collectLastUses().
2007-02-16 Andrew Lenharthfix build
2007-02-15 Chris Lattnermake mayWriteToMemory a non-virtual function
2007-02-15 Chris Lattnerrewrite Value::takeName to take advantage of the new...
2007-02-15 Chris LattnerImplement Function::getIntrinsicID without it needing...
2007-02-15 Chris LattnerAdd a new Value::getNameStr method, which is preferred...
2007-02-15 Reid SpencerFor PR1195:
2007-02-15 Reid SpencerFor PR1195:
2007-02-15 Reid SpencerFor PR1195:
2007-02-13 Chris Lattnerbetter support for i128.
2007-02-13 Chris LattnerSwitch UnaryOperators to default to passing names up...
2007-02-13 Chris Lattneradd a setName variant that takes a null-terminated...
2007-02-13 Chris Lattnereliminate instruction ctors that take vectors.
2007-02-13 Chris LattnerAdd invokeinst and callinst ctors that don't take vectors.
2007-02-13 Chris Lattnerremove some dead methods.
2007-02-12 Chris LattnerAdd new setName accessor which doesn't require creating...
2007-02-12 Chris LattnerSwitch ValueSymbolTable to use StringMap<Value*> instea...
2007-02-11 Chris Lattnerfix uninitialized variable
2007-02-11 Chris Lattneradd an optimization for the case where the src has...
2007-02-11 Chris Lattneradd a helper method: Value::takeName
2007-02-10 Reid SpencerAssert that elements of packed are pointer/float/opaque.
2007-02-10 Reid SpencerAllow PackedType to be constructed with an abstract...
2007-02-10 Chris Lattnerconvert some vectors to smallvector.
2007-02-10 Chris Lattnerspeed up the verifier 8.5% by using a smallvector inste...
2007-02-10 Chris LattnerChange an std::set to a SmallPtrSet. This speeds up...
2007-02-09 Chris LattnerFix clients like this:
2007-02-07 Jim LaskeyAutomatically generating intrinsic declarations from...
2007-02-07 Devang PatelDo not drop transferred last uses on the floor.
2007-02-07 Chris Lattnerconstants can't be in the symtab anymore
2007-02-07 Chris Lattnerupdate comment.
2007-02-07 Chris Lattnershrink vmcore by moving symbol table stripping support...
2007-02-07 Chris Lattnereliminate ValueSymbolTable::rename, it has no advantage...
2007-02-07 Chris Lattnerspeed up conflict handling.
2007-02-07 Chris LattnerEliminate the O(n) version of TypeSymbolTable::remove...
2007-02-07 Chris LattnerTypeSymbolTable::rename is dead, remove it
2007-02-07 Chris LattnerEliminate a bunch of work from ValueSymbolTable::insert...
2007-02-06 Jim LaskeySupport var arg intrinsics.
2007-02-06 Chris LattnerFix Transforms/ConstProp/2007-02-05-BitCast.ll
2007-02-05 Reid SpencerA value of 64 or fewer bits is valid if the ConstantInt...
2007-02-05 Reid SpencerFor PR411:
2007-02-05 Reid SpencerFor PR411:
2007-02-05 Devang PatelFix PR1158
2007-02-04 Reid SpencerFor PR1163:
2007-02-02 Reid SpencerFix a comment that needed to change after SHIFT patch...
2007-02-02 Reid SpencerChanges to support making the shift instructions be...
2007-02-01 Devang Patelcvs commit
2007-02-01 Chris Lattnersilence some warnings when assertions are disabled.
2007-01-31 Reid SpencerFix build breakage by using correct arguments to getInd...
2007-01-31 Chris Lattnerimplement the new GEP instruction ctors.
2007-01-31 Chris LattnerRevise APIs for creating constantexpr GEPs to not requi...
2007-01-30 Reid SpencerFor PR1136: Rename GlobalVariable::isExternal as isDecl...
2007-01-29 Devang Patel- Undo previous check-in (i.e. Do not export TimingInfo...
2007-01-29 Devang PatelMove TimingInfo into PassManagers.h so that other libs...
next