Print csretcc calls like this:
[oota-llvm.git] / lib / VMCore / Type.cpp
2006-04-21 Chris LattnerRemove a hack required by V9.
2006-04-02 Chris Lattnervector casts never reinterpret bits
2005-11-16 Chris Lattner* Fix DerivedType::dropAllTypeUses to not change the...
2005-11-13 Chris LattnerAdd some dummy method impls
2005-11-13 Chris LattnerMove some methods around. Refactor the parts of TypeMa...
2005-11-13 Chris LattnerSplit the type refinement case completely out of the...
2005-11-13 Chris LattnerSeparate the type-became-concrete case from the type...
2005-11-12 Chris LattnerUnswitch a loop, add more assertions, eliminate use...
2005-11-12 Chris LattnerTiny speedup, improve comments and code organization.
2005-11-10 Chris LattnerForce packed vectors to be a power of two in length.
2005-07-27 Jeff CohenEliminate all remaining tabs and trailing spaces.
2005-04-27 Chris LattnerUnbreak the sparc backend.
2005-04-26 Chris Lattnerdon't let Reid build void*'s :)
2005-04-23 Chris LattnerFix a bug in my previous checkin
2005-04-23 Chris LattnerAdd a method, remove last use of Type.def
2005-04-21 Misha BrukmanRemove trailing whitespace
2005-03-09 Chris Lattnercorrect the computation of the isAbstract bit for types.
2005-03-02 Chris LattnerFix a nasty order of evaluation bug that Gabor Greif...
2005-01-08 Chris LattnerAllow arrays to have more than 4G elements.
2004-12-01 Chris LattnerGet GEP's working with packed types. Contributed by...
2004-11-19 Chris LattnerAdd hooks to free all memory allocated by the singleton...
2004-11-16 Chris LattnerMinor cleanup and speedup. This reduces link-time...
2004-11-16 Chris LattnerMake this function work with non-abstract types.
2004-10-07 Chris LattnerUnfortunately the fix for the previous bug introduced...
2004-10-07 Chris LattnerFix a bug in my previous change. Unfortunately this...
2004-10-06 Chris LattnerChange Type::isAbstract to have better comments, a...
2004-09-01 Reid SpencerChanges For Bug 352
2004-08-20 Brian GaekePacked types, brought to you by Brad Jones
2004-07-13 Chris LattnerCatch aggregates passed by value sooner rather than...
2004-07-09 Chris LattnerRemove unused method
2004-07-08 Chris LattnerThe uid mapping is no more
2004-07-08 Chris LattnerEliminate the SignedType and UnsignedType classes.
2004-07-07 Chris LattnerThe bytecode reader wants to be able to read types...
2004-07-06 Chris LattnerMake sure people don't make functiontypes with an inval...
2004-07-04 Reid SpencerCorrect syntax typo .. ; -> :
2004-07-04 Reid Spencer- Changes for bug 122
2004-07-02 Chris LattnerFix Type::isSized() to realize that "{ opaque }" is...
2004-06-17 Chris LattnerRename Type::PrimitiveID to TypeId and ::getPrimitiveID...
2004-06-04 Chris LattnerSquish a warning
2004-05-28 Chris LattnerDon't use size() when you mean empty()
2004-04-05 Chris LattnerSupport getelementptr instructions which use uint's...
2004-03-29 Chris LattnerFix an assertion
2004-03-26 Chris LattnerAdd two methods which have been needed for a long time...
2004-02-26 Chris LattnerMake sure that at least one virtual method is defined...
2004-02-17 Chris LattnerAdjust to recent changes
2004-02-09 Chris LattnerRemove the statistics
2004-02-09 Chris LattnerSpeed up type resolution some more. On the testcase...
2004-02-09 Chris LattnerImplement the hashing scheme in an attempt to speed...
2004-02-09 Chris LattnerCode cleanup in preparation for later changes. Now...
2004-02-09 Chris LattnerNow that all of the derived types have disciplined...
2004-02-09 Chris LattnerAdjust to the changed StructType interface. In particu...
2004-02-09 Chris LattnerStart using the new and improve interface to FunctionTy...
2003-12-31 Chris LattnerFix PR198
2003-12-31 Chris LattnerAdd comments
2003-11-25 Chris LattnerFix const correctness
2003-11-25 Chris LattnerRelax constrains on GEP type indexes
2003-11-19 Chris LattnerReally, there was a reason for me factoring that out
2003-11-19 Chris Lattner*** Significantly speed up type resultion
2003-11-19 Chris LattnerFinegrainify namespacification
2003-11-11 Brian GaekePut all LLVM code into the llvm namespace, as per bug...
2003-11-03 Chris LattnerFix InstCombine/2003-11-03-VarargsCallBug.ll
2003-10-20 John CriswellAdded LLVM project notice to the top of every C++ sourc...
2003-10-13 Chris LattnerSpeed up TypesEqual by specializing it for all of the...
2003-10-13 Chris LattnerAvoid creating lots of pointless opaque types, with...
2003-10-10 Misha BrukmanFix spelling/grammar.
2003-10-03 Chris LattnerExplicit copy ctors are no longer needed
2003-10-03 Chris LattnerMinor cleanups
2003-10-03 Chris LattnerThis checkin basically amounts to a complete rewrite...
2003-10-03 Chris LattnerDramatically simplify DerivedType::refineAbstractTypeTo...
2003-10-02 Chris LattnerMake the PATypeHolder use a simple union-find implement...
2003-09-10 Chris LattnerFix spell-o's
2003-09-05 Chris LattnerAdd asserts, move code around. This gets the dropAllTy...
2003-09-05 Chris LattnerMove functionality preserving changes.
2003-09-05 Chris LattnerRefactor what has effectively become copy-and-pasted...
2003-09-05 Chris LattnerCheck in a bunch of minor fixes, plus a whole lot of...
2003-09-04 Chris LattnercontainsEquivalent never returns its argument
2003-09-04 Chris LattnerRemove needless usage of getDescription()
2003-09-04 Chris LattnerInline method
2003-09-04 Chris LattnerDon't try to be sneaky, breaking recursive types in...
2003-09-03 Chris LattnerNo need to rescan types when they are created.
2003-09-02 Chris LattnerAnother small speedup, this one to: 2.42s
2003-09-02 Chris LattnerDon't return bogus references, and don't add an entry...
2003-09-02 Chris LattnerAnother optimization, speed up the testcase to 2.7s
2003-09-02 Chris LattnerRemoval of explicit stack, which requires the method...
2003-09-02 Chris LattnerRemove the "recursive bit", not only is it unused by...
2003-09-02 Chris LattnerDon't bother doing an exhaustive recursive walk if...
2003-09-02 Chris LattnerUgh, fix bugs. Ok, so the last fix wasn't as great...
2003-09-02 Chris LattnerFurther simplifications
2003-09-02 Chris LattnerChange the code to no longer compute the "type descript...
2003-08-21 Misha BrukmanThe word `dependent' has no `a'.
2003-07-23 Chris LattnerRemove redundant const qualifiers from cast<> expressions
2003-06-18 Chris LattnerDetemplatize the PATypeHandle class, which was only...
2003-05-22 Chris LattnerFix static constructor ordering problem
2003-05-22 Chris LattnerRemove using declarations
2003-05-20 Misha Brukmans/convertable/convertible/g
2003-01-14 Chris LattnerMake type resolution a bit more efficient
2002-09-03 Chris Lattner - Renamed Type::isIntegral() to Type::isInteger()
2002-07-24 Chris Lattner*** empty log message ***
2002-05-06 Chris LattnerImplement getPrimitiveSize()
2002-04-28 Chris LattnerSplit ConstantVals.h into Constant.h and Constants.h
next