index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
include
/
llvm
/
ADT
/
DenseMap.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
Rehash but don't grow when full of tombstones.
Howard Hinnant
2013-10-30
1
-3
/
+2
*
Add warn_unused_result to empty() on various containers.
Benjamin Kramer
2013-09-13
1
-1
/
+3
*
Calling the base class constructor from the derived class' initializer list. ...
Aaron Ballman
2013-08-16
1
-2
/
+2
*
Remove the assertion for now. This breaks lld.
Dmitri Gribenko
2013-08-07
1
-3
/
+0
*
YAMLTraits.h: replace DenseMap that used a bad implementation of DenseMapInfo
Dmitri Gribenko
2013-08-07
1
-0
/
+3
*
DenseMap: Move the key into place when we use the move version of operator[].
Benjamin Kramer
2013-06-01
1
-2
/
+2
*
use static_cast to get rid of windows warning.
Peng Cheng
2013-05-01
1
-1
/
+1
*
Remove unnecessary condtional assignment. The next line ignores the result of...
Craig Topper
2013-02-13
1
-1
/
+0
*
Fix DenseMap when LLVM_HAS_RVALUE_REFERENCES is defined but equals 0.
Joe Groff
2013-01-14
1
-1
/
+1
*
Add DenseMap::insert(value_type&&) method.
Joe Groff
2013-01-14
1
-0
/
+18
*
Whitespace.
NAKAMURA Takumi
2013-01-05
1
-2
/
+2
*
DenseMap: Appease -fstrict-aliasing on g++-4.4.
NAKAMURA Takumi
2013-01-05
1
-1
/
+2
*
Fix warnings from llvm-gcc as seen on darwin10 (10.6).
Alex Rosenberg
2013-01-05
1
-2
/
+2
*
Sort the #include lines for the include/... tree with the script.
Chandler Carruth
2012-12-03
1
-5
/
+5
*
Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES.
Chandler Carruth
2012-11-30
1
-6
/
+6
*
Improve DenseMap checks for power of 2 growth. Thanks for the tip Jakob
Pete Cooper
2012-10-24
1
-6
/
+3
*
Change DenseMap to use a power of 2 growth if one is given instead of the nex...
Pete Cooper
2012-10-23
1
-4
/
+7
*
Fixed bug in SmallDenseMap where it wouldn't leave enough space for an empty ...
Pete Cooper
2012-10-23
1
-2
/
+2
*
DenseMap: assert that we have found a bucket before we try to insert into it.
Jordan Rose
2012-09-22
1
-0
/
+1
*
Flatten the aligned-char-array utility template to be a directly
Chandler Carruth
2012-08-17
1
-4
/
+2
*
Avoid undefined behavior in DenseMap::shrink_and_clear(). Log2_32_Ceil(0)
Richard Smith
2012-08-14
1
-2
/
+3
*
Micro-optimize this function a bit. This shrinks the generated code
Chandler Carruth
2012-07-03
1
-4
/
+6
*
Avoid sign compare warning.
Benjamin Kramer
2012-06-30
1
-1
/
+1
*
Don't copy a potentially-uninitialized variable.
David Blaikie
2012-06-18
1
-1
/
+1
*
Add a unit test for 'swap', and fix a pile of bugs in
Chandler Carruth
2012-06-17
1
-7
/
+34
*
Add tests for *DenesMap for both key and value types' construction and
Chandler Carruth
2012-06-17
1
-18
/
+28
*
Introduce a SmallDenseMap container that re-uses the existing DenseMap
Chandler Carruth
2012-06-17
1
-14
/
+297
*
Lift the NumElements and NumTombstones members into the super class
Chandler Carruth
2012-06-16
1
-37
/
+78
*
Factor DenseMap into a base class that implements the hashtable logic,
Chandler Carruth
2012-06-16
1
-195
/
+249
*
Group the 'unsigned' members after the pointer to avoid 4 bytes of
Chandler Carruth
2012-06-13
1
-1
/
+1
*
DenseMap's move assignment operator needs to return *this
Douglas Gregor
2012-05-29
1
-0
/
+1
*
DenseMap: Use an early exit when there is nothing to do in DestroyAll().
Benjamin Kramer
2012-05-27
1
-4
/
+5
*
DenseMap: Provide a move ctor and move semantics for operator[] and FindAndCo...
Benjamin Kramer
2012-05-27
1
-2
/
+56
*
DenseMap: Factor destruction into a common helper method.
Benjamin Kramer
2012-05-27
1
-26
/
+15
*
Provide move semantics for TinyPtrVector and for DenseMap's rehash function.
Benjamin Kramer
2012-05-19
1
-2
/
+3
*
DenseMap: Perform the pod-like object optimization when the value type is POD...
Benjamin Kramer
2012-04-06
1
-12
/
+11
*
DenseMap::find_as() and unit tests.
Talin
2012-01-30
1
-2
/
+27
*
Port the trick to skip the check for empty buckets from StringMap to DenseMap.
Benjamin Kramer
2012-01-07
1
-9
/
+9
*
Add a generic 'capacity_in_bytes' function to allow inspection of memory usag...
Ted Kremenek
2011-07-27
1
-0
/
+6
*
Fix more -Wnon-pod-memset warnings.
Chandler Carruth
2011-04-28
1
-2
/
+2
*
Add utility method to DenseMap to return the amount of memory used for its bu...
Ted Kremenek
2011-04-28
1
-0
/
+9
*
silence some -Wnon-pod-memset warnings, since std::pair is not POD.
Chris Lattner
2011-04-28
1
-2
/
+2
*
Prevent infinite growth of the DenseMap.
Jakob Stoklund Olesen
2011-03-30
1
-2
/
+5
*
Fix more zero length memset warnings.
Jay Foad
2011-03-30
1
-1
/
+2
*
Often GCC can see that NumBuckets is zero here, resulting in a warning
Duncan Sands
2011-03-07
1
-1
/
+2
*
Avoid zero-sized allocations when copying a fresh DenseMap.
Benjamin Kramer
2011-03-05
1
-5
/
+11
*
Lazily allocate DenseMaps.
Benjamin Kramer
2011-03-05
1
-3
/
+20
*
Use the new way of silencing this warning.
Nick Lewycky
2010-12-19
1
-1
/
+1
*
Add missing standard headers. Patch by Joerg Sonnenberger!
Nick Lewycky
2010-12-19
1
-0
/
+1
*
Make the iterator form of erase return void, since it always succeeds,
Dan Gohman
2010-09-01
1
-2
/
+1
[next]