Add an unwind_to field to basic blocks, making them Users instead of Values.
[oota-llvm.git] / include / llvm / ADT /
2008-02-29 Dan GohmanAdd support to APInt for shift and rotate operations...
2008-02-29 Dan GohmanAdd a method to APFloat to convert directly from APInt.
2008-02-26 Anton KorobeynikovUpdate per review. Patch by Mikhail Glushenkov!
2008-02-26 Bill WendlingDetabify
2008-02-25 Eli FriedmanAdd missing include (for ptrdiff_t).
2008-02-22 Anton KorobeynikovAdd smart refcounting pointer class to ADT back (known...
2008-02-22 Anton KorobeynikovUnbreak build for VC2008. Patch by Argiris Kirtzidis!
2008-02-20 Dan GohmanRemove inline keywords from in-class function definitio...
2008-02-20 Dan GohmanAdd an intersects method to APInt, to capture a common...
2008-02-20 Anton KorobeynikovUnbreak build with gcc 4.3: provide missed includes...
2008-02-15 Scott MichelMake tblgen a little smarter about constants smaller...
2008-02-13 Dan GohmanFix a typo in a comment.
2008-02-13 Dan GohmanRename APInt's isPositive to isNonNegative, to reflect...
2008-02-13 Dan GohmanAdd countTrailingOnes member functions to APInt.
2008-02-13 Dan GohmanFix a typo in a comment.
2008-02-12 Dan GohmanChange APInt::getBitsSet to accept a "half-open" range...
2008-02-11 Dan GohmanCorrect the order of the arguments in the examples...
2008-02-11 Ted KremenekThe factories for ImutAVLTree/ImmutableSet/ImmutableMap...
2008-02-11 Ted KremenekAdded "Profile" method to APFloat for use with FoldingSet.
2008-02-08 Dan GohmanAdd an isSignedIntN, like isIntN but for signed integer...
2008-02-08 Ted KremenekConstified operator<< in APSInt.
2008-02-06 Dan GohmanAdd support to FoldingSet for hashing APInt objects.
2008-02-05 Anton KorobeynikovDon't dereference an invalid pointer if string is empty.
2008-02-05 Ted KremenekAdded FoldingSet profiling support to ImmutableSet.
2008-02-05 Ted KremenekChanged profiling method for ImmutableMap to once again...
2008-02-04 Ted KremenekModified 'Profile' method of ImmutableMap to use the...
2008-02-04 Ted KremenekModified node creation of ImutAVLTree to do a hash...
2008-02-04 Ted KremenekAdded "bucket_iterators" to FoldingSet. Bucket iterato...
2008-02-04 Ted Kremenekconstified operator~().
2008-01-31 Anton KorobeynikovAdd convenient std::string helpers to StringMap. Patch...
2008-01-31 Anton KorobeynikovReapply the patch with fix.
2008-01-31 Chris Lattnerrevert anton's recent stringmap patch, which breaks...
2008-01-31 Anton KorobeynikovMake StringMap to be more STL'ish. Patch by Mikhail...
2008-01-31 Anton KorobeynikovWhitespace cleanup
2008-01-29 Ted KremenekAltered ctor for APSInt to accept an optional "isUnsign...
2008-01-28 Ted KremenekAdded destructor for template class FoldingSetNodeWrapper.
2008-01-24 Ted KremenekAdded additional overloaded operators for APSInt to...
2008-01-23 Ted KremenekAdded "getRoot()" to ImmutableSet.
2008-01-21 Ted KremenekFixed buggy caching of the hash value of an ImutAVLTree...
2008-01-21 Ted KremenekMoved method call within a conditional branch because...
2008-01-21 Ted KremenekAdjusted ImutAVLTree::ComputeHash to compute a hash...
2008-01-21 Ted KremenekAdded "clear" method to FoldingSetNodeID to allow a...
2008-01-21 Ted KremenekReplaced (FoldingSet) profiling of ImutAVLTree with...
2008-01-19 Ted KremenekChanged argument name for 'Profile' method to potential...
2008-01-19 Ted KremenekModified ImmutableSet/ImmutableMap to use FoldingSet...
2008-01-19 Ted KremenekAdded FoldingSet style 'profiling' support for APSInt.
2008-01-19 Ted KremenekAdded FoldingSet style 'profiling' support for APInt.
2008-01-19 Ted KremenekMade 'FoldingSetNodeID' a proper class instead of a...
2008-01-19 Ted KremenekMade 'profiling' of objects in a FoldingSet trait-based...
2008-01-18 Chris Lattnerdon't form an std::string with a null pointer, it aborts.
2008-01-18 Ted KremenekReverted implementation of ImmutableMap::find() to...
2008-01-17 Ted KremenekImplemented "FIXME" in ImutAVLTree: isEqual() now also...
2008-01-15 Ted KremenekChanged ImmutableMap::find to return an iterator instea...
2008-01-11 Chris Lattneradd operator==/!= to smallvector.
2008-01-08 Ted KremenekAdded "getRoot()" to ImmutableMap.
2008-01-08 Ted KremenekFixed 80 col. violation.
2008-01-02 Ted KremenekInverted argument order for ImmutableMap::Profile.
2008-01-02 Ted KremenekAdded iterator and profiling (i.e. FoldingSetNodeID...
2007-12-29 Chris Lattnerremove attribution from a variety of miscellaneous...
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-12-21 Ted KremenekRemoved scoped_ptr, as its functionality is subsumed...
2007-12-20 Ted KremenekAdded OwningArrayPtr smart pointer class to provide...
2007-12-20 Chris Lattneradd new smart pointer for clang.
2007-12-20 Anton KorobeynikovMore eye-candy stuff :)
2007-12-20 Anton KorobeynikovAdd iterators for child traversal.
2007-12-17 Chris Lattnercleanup this code, making it more "llvm-like".
2007-12-16 Anton KorobeynikovDefine addString() and lookup() out-of-line to dissuade...
2007-12-16 Anton KorobeynikovProvide GraphTraits and DOTGraphTraits interface for...
2007-12-15 Anton KorobeynikovUse references in DF iterators. This eliminates copy...
2007-12-14 Dan GohmanAdd explicit keywords, and fix a minor typo that they...
2007-12-12 Anton KorobeynikovUse vector for child storage instead of map. This will...
2007-12-11 Anton KorobeynikovRemove Trie::Edge class. Now edge labels are stored...
2007-12-11 Wojciech MatyjewiczUse correct member access operator.
2007-12-11 Anton KorobeynikovAdd first and really dirty version of generic Trie...
2007-12-10 Ted KremenekAdded two bounds checks to the BitVector class to detect
2007-12-08 Chris Lattnerremove dead #include.
2007-12-08 Chris Lattnereliminate dependency on Bitcode headers.
2007-12-08 Chris Lattnerremove dead #include, APInt.h already has the needed...
2007-11-29 Chris LattnerPass the whole StringMapEntry into StringMapEntryInitia...
2007-11-29 Chris Lattnerprovide an optional API to allow datatypes in a stringm...
2007-11-23 Chris LattnerFix PR1816, by correcting the broken definition of...
2007-11-19 Dan GohmanAdd explicit keywords.
2007-11-15 Daniel BerlinFix bugs in iterator invalidation
2007-11-15 Chris LattnerImport the boost scoped_ptr class to LLVM. This patch...
2007-11-13 Hartmut KaiserFixed a strange construct. Please review.
2007-11-07 Ted KremenekImplemented generic serialization of APFloat.
2007-11-07 Ted KremenekFixed default ctor for APInt to properly initialize...
2007-11-06 Chris Lattnermake smallptrset more const and type correct, which...
2007-11-01 Neil BoothWhen converting to integer, do bit manipulations in...
2007-11-01 Ted KremenekAdded typedef "value_type" to DenseMap (similar typedef...
2007-10-31 Ted KremenekChanged access control within FoldingSet for some ivars...
2007-10-30 Ted KremenekAdded member function "size()" to FoldingSet to return...
2007-10-26 Ted KremenekAdded serialization support for APInt.
2007-10-26 Ted KremenekFixed incorrect "path name" in preamble (comment) of...
2007-10-26 Ted KremenekFixed incorrect "path name" in preamble (comment) of...
2007-10-24 Chris Lattneradd a nice predicate to check to see if nan
2007-10-18 Christopher LambAdd an uppercase conversion utility function.
2007-10-18 Ted KremenekChanged the return type of type-specific Allocate(...
2007-10-17 Ted KremenekImutAVLTree now allocates tree nodes from the BumpPtrAl...
2007-10-17 Ted KremenekMinor cosmetic cleanups in the calculation of alignment...
next