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
/
ImmutableSet.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
Sort the #include lines for the include/... tree with the script.
Chandler Carruth
2012-12-03
1
-1
/
+1
*
Fix a typo that made ImmutableMap::getMaxElement() useless.
Benjamin Kramer
2012-10-14
1
-1
/
+1
*
Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...
Craig Topper
2012-09-17
1
-2
/
+2
*
Tidy up formatting of some elses on a separate line from preceding bracing. N...
Craig Topper
2012-09-16
1
-5
/
+5
*
Tidy up trailing whitespace.
Craig Topper
2012-09-16
1
-32
/
+32
*
Remove unneeded header.
Craig Topper
2012-09-16
1
-1
/
+0
*
Remove tabs.
Bill Wendling
2012-07-18
1
-1
/
+1
*
Constify (trivially) ImmutableSet::iterator::getVisitState().
Jordy Rose
2012-05-07
1
-1
/
+1
*
Make sure ImmutableSet never inserts Tombstone/Entry into DenseMap.
Anna Zaks
2012-03-20
1
-2
/
+7
*
Convert assert(0) to llvm_unreachable
Craig Topper
2012-02-05
1
-3
/
+4
*
Make canonicalization of ImmutableSetRef::asImmutableSet() semi-explicit.
Ted Kremenek
2011-10-02
1
-2
/
+3
*
Add ImmutableMapRef and ImmutableSetRef, which consolidate Immutable[Map,Set]...
Ted Kremenek
2011-09-16
1
-0
/
+133
*
Performance optimization on ImmutableMap/ImmutableSet:
Ted Kremenek
2010-11-30
1
-84
/
+136
*
Merge System into Support.
Michael J. Spencer
2010-11-29
1
-1
/
+1
*
Tweak ImmutableMap/ImmutableSet/ImmutableList APIs
Ted Kremenek
2010-11-24
1
-196
/
+171
*
Fix warnings about missing parents between || and &&.
Dan Gohman
2010-11-17
1
-8
/
+8
*
Fix -Asserts warnings.
Daniel Dunbar
2010-04-13
1
-0
/
+2
*
Add an immutable interval map, prepared to be used by flat memory model
Zhongxing Xu
2010-02-01
1
-1
/
+3
*
Simplify code. We can compare TNew with T in one batch.
Zhongxing Xu
2010-02-01
1
-14
/
+3
*
Store flags in bitfields instead of masking them into the pointer for the lef...
Ted Kremenek
2010-01-22
1
-26
/
+22
*
Tidy up assertion syntax. No functionality change.
Ted Kremenek
2010-01-21
1
-35
/
+30
*
Make a few more LLVM headers parsable as standalone headers.
Douglas Gregor
2009-11-05
1
-2
/
+2
*
Move DataTypes.h to include/llvm/System, update all users. This breaks the last
Chandler Carruth
2009-10-26
1
-1
/
+1
*
Delete bogus semicolons.
Dan Gohman
2009-10-14
1
-2
/
+2
*
Provide a mode for ImmutableMap/ImmutableSet to not automatically canonicaliz...
Ted Kremenek
2009-10-13
1
-6
/
+12
*
Make ImmutableMap/ImmutableSet quicker by only canonicalizing the tree after an
Ted Kremenek
2009-09-03
1
-59
/
+57
*
Set the 'cached digest' flag after computing the digest for an
Ted Kremenek
2009-09-03
1
-0
/
+1
*
Make default ctor for ImmutableSet::iterator public.
Ted Kremenek
2009-08-01
1
-2
/
+1
*
Remove redundant qualifiers.
Daniel Dunbar
2009-07-19
1
-2
/
+2
*
ImmutableMap/ImmutableSet: Allow caching of ImutAVLTree digests while the tree
Ted Kremenek
2009-07-10
1
-21
/
+12
*
ImmutableSet/ImmutableMap: Allow caching of null digests by properly using a ...
Ted Kremenek
2009-07-09
1
-37
/
+45
*
Add ImmutableMap::getMaxElement(), a method that returns the <key,value> pair...
Ted Kremenek
2009-02-23
1
-0
/
+9
*
Removed trailing whitespace.
Misha Brukman
2009-02-20
1
-1
/
+1
*
Add operator->, patch by Ben Laurie!
Chris Lattner
2009-02-12
1
-0
/
+1
*
Add method 'isSingleton()' to ImmutableSet. This returns true if the set con...
Ted Kremenek
2009-02-12
1
-1
/
+4
*
Removed trailing whitespace.
Misha Brukman
2009-01-09
1
-272
/
+272
*
Typo
Nick Lewycky
2008-11-03
1
-1
/
+1
*
Unbreak build for VC2008. Patch by Argiris Kirtzidis!
Anton Korobeynikov
2008-02-22
1
-0
/
+1
*
The factories for ImutAVLTree/ImmutableSet/ImmutableMap now take an (optional)
Ted Kremenek
2008-02-11
1
-6
/
+25
*
Added FoldingSet profiling support to ImmutableSet.
Ted Kremenek
2008-02-05
1
-1
/
+14
*
Changed profiling method for ImmutableMap to once again just use its
Ted Kremenek
2008-02-05
1
-25
/
+28
*
Modified node creation of ImutAVLTree to do a hash lookup for an existing
Ted Kremenek
2008-02-04
1
-77
/
+124
*
Added "getRoot()" to ImmutableSet.
Ted Kremenek
2008-01-23
1
-5
/
+10
*
Fixed buggy caching of the hash value of an ImutAVLTree node.
Ted Kremenek
2008-01-21
1
-3
/
+6
*
Moved method call within a conditional branch because its effects will
Ted Kremenek
2008-01-21
1
-1
/
+1
*
Adjusted ImutAVLTree::ComputeHash to compute a hash value that is based on a
Ted Kremenek
2008-01-21
1
-3
/
+16
*
Replaced (FoldingSet) profiling of ImutAVLTree with a hashing based scheme. The
Ted Kremenek
2008-01-21
1
-6
/
+23
*
Modified ImmutableSet/ImmutableMap to use FoldingSet profiling using
Ted Kremenek
2008-01-19
1
-2
/
+2
*
Implemented "FIXME" in ImutAVLTree: isEqual() now also compares the *data* value
Ted Kremenek
2008-01-17
1
-2
/
+16
*
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-12-29
1
-2
/
+2
[next]