summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/DenseMap.h
Commit message (Expand)AuthorAge
* Add a generic 'capacity_in_bytes' function to allow inspection of memory usag...Ted Kremenek2011-07-27
* Fix more -Wnon-pod-memset warnings.Chandler Carruth2011-04-28
* Add utility method to DenseMap to return the amount of memory used for its bu...Ted Kremenek2011-04-28
* silence some -Wnon-pod-memset warnings, since std::pair is not POD.Chris Lattner2011-04-28
* Prevent infinite growth of the DenseMap.Jakob Stoklund Olesen2011-03-30
* Fix more zero length memset warnings.Jay Foad2011-03-30
* Often GCC can see that NumBuckets is zero here, resulting in a warningDuncan Sands2011-03-07
* Avoid zero-sized allocations when copying a fresh DenseMap.Benjamin Kramer2011-03-05
* Lazily allocate DenseMaps.Benjamin Kramer2011-03-05
* Use the new way of silencing this warning.Nick Lewycky2010-12-19
* Add missing standard headers. Patch by Joerg Sonnenberger!Nick Lewycky2010-12-19
* Make the iterator form of erase return void, since it always succeeds,Dan Gohman2010-09-01
* Add includes to get ptrdiff_t. This is needed by gcc-4.6 which hasDuncan Sands2010-06-10
* Optimize empty DenseMap iteration.Jakob Stoklund Olesen2010-05-17
* Iterator traits and swap. closes PR6548 and PR6549Andrew Lenharth2010-03-08
* Make sure the size is doubled (not 4x).Junjie Gu2010-01-29
* add a helper ctor.Chris Lattner2009-12-21
* Remove isPod() from DenseMapInfo, splitting it out to its ownChris Lattner2009-12-15
* Fix DenseMap iterator constness.Jeffrey Yasskin2009-11-10
* Fix stylistic and documentation problems in ValueMap found by Nick Lewycky andJeffrey Yasskin2009-10-23
* Add a comment explaining how DenseMap::insert works, because it is notTorok Edwin2009-10-07
* give densemap iterators real iterator traits.Chris Lattner2009-09-11
* make DenseMap::clear() early exit if there is nothing to do.Chris Lattner2009-08-30
* This void is implicit in C++.Dan Gohman2009-08-12
* Split DenseMapInfo into a separate header file, so that it can beDan Gohman2009-07-31
* Add freed memory poisoning in !NDEBUG mode for DenseMap.Torok Edwin2009-07-21
* Prevent looping when DenseSet is abused.Stuart Hastings2009-05-01
* DenseMap.h needs <new> because it explicitly calls operator new/delete.Chris Lattner2009-04-25
* Add range insert method for DenseSet and define DenseMapInfo for chars.Chris Lattner2009-04-01
* add some accessors so I can play games with DenseMaps.Chris Lattner2009-03-31
* When forming sentinels for empty/tombstone, make sure to respect theChris Lattner2009-03-29
* Get rid of warning about implicit 64-to-32 bit conversions.Bill Wendling2009-01-22
* improve compatibility with cygwin, patch by Jay Foad!Chris Lattner2009-01-19
* Removed trailing whitespace.Misha Brukman2009-01-09
* add densemap range insertion method.Chris Lattner2008-12-02
* fix indentation. std::pair is "isPod" if the first/second are both isPod.Chris Lattner2008-11-30
* Add STL-style typedefs and default constructors to make it possible toDavid Greene2008-10-27
* Add DenseMap::lookup:Daniel Dunbar2008-08-29
* consolidate DenseMapInfo implementations, and add one for std::pair.Chris Lattner2008-08-22
* Make DenseMap's insert return a pair, to more closely resemble std::map.Dan Gohman2008-07-07
* Use operator new instead of new char[].Dan Gohman2008-07-03
* Fix use of placement new to actually use an address. Owen Anderson2008-06-17
* Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov2008-02-20
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-29
* Added typedef "value_type" to DenseMap (similar typedef appears in std::map).Ted Kremenek2007-11-01
* Fix problems where DenseMap used operator!= instead of correctly Chris Lattner2007-10-09
* Finish off PR1723, by working around some strange compiler bug.Chris Lattner2007-10-07
* Implement offline variable substitution in order to reduce memoryDaniel Berlin2007-09-24
* Fix CopyFrom for non-POD data types.Owen Anderson2007-09-21
* Merge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfoChris Lattner2007-09-17