Adding C and Ocaml bindings for ConstantExpr.
[oota-llvm.git] / lib / VMCore / Constants.cpp
2007-10-06 Gordon HenriksenAdding C and Ocaml bindings for ConstantExpr.
2007-09-17 Chris LattnerMerge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfo
2007-09-14 Dale JohannesenRemove the assumption that FP's are either float or
2007-09-12 Dale JohannesenRevise previous patch per review comments.
2007-09-06 Dale JohannesenNext round of APFloat changes.
2007-09-04 David GreeneUpdate GEP constructors to use an iterator interface...
2007-08-30 Dale JohannesenChange LegalFPImmediates to use APFloat.
2007-08-24 Dale JohannesenPoison APFloat::operator==. Replace existing uses...
2007-08-24 Dale JohannesenRevised per review feedback from previous patch.
2007-08-24 Dale JohannesenChange internal representation of ConstantFP to use...
2007-08-21 Chris LattnerFix potentially N^2 behavior handling arrays with many...
2007-08-09 Dale JohannesenPatch 10 for long double. Doing constants right needs...
2007-06-15 Chris Lattneradd a Constant::getAllOnesValue helper function, which...
2007-05-24 Dan GohmanMinor comment cleanups.
2007-03-19 Reid SpencerAllow ConstantInt::get(Ty, uint64_t) to interpret the...
2007-03-08 Evan ChengAdded ContainsRelocations() to check if a constant...
2007-03-01 Reid SpencerDrop the ConstantInt(const Type&, const APInt&) constru...
2007-02-28 Reid SpencerImplement a convenience method to construct a ConstantI...
2007-02-27 Reid SpencerRemove some redundancy.
2007-02-27 Reid SpencerCorrect the implelmentation of ConstantInt::getAllOnesV...
2007-02-27 Chris LattnerConstantFolding.cpp/h -> ConstantFold.cpp/h to avoid...
2007-02-26 Reid SpencerFor PR1205:
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-19 Chris Lattnerllvm-gcc issue fixed, revert reversal :)
2007-02-19 Evan ChengTemporarily reverting the patch. It's breaking llvm...
2007-02-19 Chris Lattnerremove dead methods
2007-02-15 Reid SpencerFor PR1195:
2007-02-15 Reid SpencerFor PR1195:
2007-02-05 Reid SpencerA value of 64 or fewer bits is valid if the ConstantInt...
2007-02-05 Reid SpencerFor PR411:
2007-02-02 Reid SpencerChanges to support making the shift instructions be...
2007-01-31 Chris LattnerRevise APIs for creating constantexpr GEPs to not requi...
2007-01-26 Reid SpencerClean up comments and assert messages that still refer...
2007-01-21 Reid SpencerWhoops, fix typo in last commit.
2007-01-21 Reid SpencerFor PR970:
2007-01-19 Reid SpencerFor PR1043:
2007-01-15 Chris Lattnerrename Type::isIntegral to Type::isInteger, eliminating...
2007-01-15 Chris Lattnerdon't discriminate against i1
2007-01-12 Jim LaskeyAllow isAllOnesValue testing on packed constants
2007-01-12 Reid SpencerFor PR1064:
2007-01-12 Reid SpencerImplement review feedback for the ConstantBool->Constan...
2007-01-11 Reid SpencerRename BoolTy as Int1Ty. Patch by Sheng Zhou.
2007-01-11 Zhou ShengFor PR1043:
2007-01-04 Chris LattnerAdd a new ConstantPacked::getAllOnesValue method
2006-12-31 Reid SpencerFor PR950:
2006-12-24 Reid SpencerFix some comments.
2006-12-23 Reid SpencerFor PR950:
2006-12-19 Reid SpencerMake ConstantInt not care about sign any more. To ensur...
2006-12-18 Reid SpencerRemove the two-argument (inferred cast) form of Constan...
2006-12-15 Jeff CohenPartial unbreak of VC++ (stream stuff has no easy fix).
2006-12-12 Reid SpencerReplace inferred getCast(V,Ty) calls with more strict...
2006-12-12 Reid SpencerDon't create usless casts for same-bith-width floating...
2006-12-12 Reid SpencerImplement getIntegerCast and getFPCast for ConstantExpr...
2006-12-08 Andrew LenharthPacked Structures
2006-12-07 Reid SpencerProvide a getOpcode() method on CmpInst to ensure the...
2006-12-06 Reid SpencerFor PR950:
2006-12-05 Reid SpencerBail on the getInferredCast idea. Remove the function...
2006-12-05 Reid SpencerImplement getPointerCast.
2006-12-04 Reid SpencerSeparate getCompare from get and getCompareTy from...
2006-12-04 Reid SpencerImplement new cast creation functions for both instruct...
2006-12-04 Reid SpencerReduce the size of the ExprMapKeyType class.
2006-12-04 Reid SpencerFor PR950: Fix constant expressions to properly support...
2006-12-04 Reid SpencerTake a baby step towards getting rid of inferred casts...
2006-12-03 Reid SpencerImplement creation of ICmp and FCmp constant expressions.
2006-12-01 Chris Lattneradd a new ConstantIntegral::get method. Simplify the...
2006-11-27 Reid SpencerFor PR950:
2006-11-17 Bill WendlingRemoved iostream #includes. Replaced std::cerr with...
2006-11-08 Reid SpencerFor PR950:
2006-11-02 Reid SpencerFor PR950:
2006-10-26 Evan ChengSpeed up isCString()
2006-10-26 Evan ChengAdd isCString() - returns true if a ConstantArray is...
2006-10-26 Reid SpencerFor PR950:
2006-10-20 Reid SpencerFor PR950:
2006-10-20 Chris Lattneradd a method to determine whether evaluation of a const...
2006-09-28 Chris LattnerEliminate ConstantBool::True and ConstantBool::False...
2006-09-28 Chris Lattnerremove reference to dead method
2006-09-28 Chris LattnerUse the new ManagedStatic class to explicitly manage...
2006-09-17 Chris LattnerAdd new SetCondInst::isRelational/isEquality methods...
2006-08-27 Chris Lattners|llvm/Support/Visibility.h|llvm/Support/Compiler.h|
2006-07-17 Jim LaskeyReduce the size of Constants.o by 25% by generalizing...
2006-07-14 Chris LattnerAdd a new helper, simplify ConstantExpr::getWithOperand...
2006-07-14 Chris LattnerAdd a new method for bugpoint to use
2006-06-28 Chris LattnerUse hidden visibility to reduce the sizes of some ...
2006-06-10 Chris LattnerAdd a missing assertion that would have helped out...
2006-05-30 Reid SpencerProvide a simpler interface for getting a ConstantArray...
2006-05-30 Reid SpencerAdjust the interface to ConstantArray::get. The previous
2006-05-24 Chris LattnerPatches to make the LLVM sources more -pedantic clean...
2006-04-08 Chris LattnerAdd constant replacement for insertelement/vectorshuffl...
2006-04-08 Chris LattnerAdd shufflevector support, todo, implement better const...
2006-03-11 Evan ChengDoh!
2006-03-10 Evan ChengAdded a parameter to control whether Constant::getStrin...
2006-03-08 Jim LaskeyGet rid of the multiple copies of getStringValue. ...
2006-01-17 Robert BocchinoVMCore support for the insertelement operation.
2006-01-10 Robert BocchinoAdded constant folding support for the extractelement...
2006-01-10 Robert BocchinoAdded support for the extractelement operation.
next