aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/FoldingSet.h
Commit message (Expand)AuthorAgeFilesLines
* Avoid warnings about unused parameters that tend to come up a lot whenDuncan Sands2013-06-101-2/+3
* Sort the #include lines for the include/... tree with the script.Chandler Carruth2012-12-031-1/+1
* Add operator< for FoldingSetNodeID.Ted Kremenek2012-09-081-0/+9
* Add a FoldingSetVector datastructure which is analogous to a SetVector,Chandler Carruth2012-05-031-0/+105
* FoldingSet: Push the hash through FoldingSetTraits::Equals, so clients can us...Benjamin Kramer2012-04-111-14/+14
* Revert commit 152300 (ddunbar) since it still seems to be breakingDuncan Sands2012-03-081-51/+0
* [ADT] Change the trivial FoldingSetNodeID::Add* methods to be inline, reappliedDaniel Dunbar2012-03-081-0/+51
* Revert r152288, "[ADT] Change the trivial FoldingSetNodeID::Add* methods to beDaniel Dunbar2012-03-081-46/+0
* [ADT] Change the trivial FoldingSetNodeID::Add* methods to be inline.Daniel Dunbar2012-03-081-0/+46
* Remove redundant template partial specilization.Zhongxing Xu2011-05-161-8/+1
* Improve adherence to general style, use "foo_t &x" instead of "foo_t& x"Chris Lattner2011-04-251-21/+21
* allow adding a FoldingSetNodeID to a FastFoldingSetNode, resolving PR9499,Chris Lattner2011-04-251-2/+5
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* Add hooks to FoldingSetTrait to allow specializations to provideDan Gohman2010-08-161-15/+124
* Tidy up whitespace in comments.Dan Gohman2010-08-161-9/+9
* Constify FoldingSetNodeIDRef's Data.Dan Gohman2010-08-161-3/+3
* Reverse the order of GetNodeProfile's arguments, for consistencyDan Gohman2010-08-161-4/+4
* Fix indentation in example code in a comment.Dan Gohman2010-08-161-3/+3
* Fix typo.Nick Lewycky2010-08-071-1/+1
* Add convenience method FoldingSetImpl::InsertNode(Node *N) that asserts if th...Argyrios Kyrtzidis2010-07-121-0/+8
* Define ContextualFoldingSet, which stores a context parameter to pass down toJohn McCall2010-06-111-0/+75
* Add the ability to "intern" FoldingSetNodeID data into aDan Gohman2010-03-181-5/+25
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-261-1/+1
* Random include cleanup.Benjamin Kramer2009-10-221-1/+0
* Switch FoldingSet::AddString to StringRef based API.Daniel Dunbar2009-09-221-4/+2
* Add an optional optimization to FoldingSet to allow ID values to beDan Gohman2009-07-131-0/+14
* Add a 'const' in a comment.Dan Gohman2009-06-271-1/+1
* Add terminal width detection to llvm::sys::Process. This is needed toDouglas Gregor2009-05-111-0/+1
* Add FoldingSet profile method for bools. Patch by Ben Laurie!Ted Kremenek2009-02-111-0/+1
* Add an API for strings with possible NULLs in the middle. Refactor the otherNick Lewycky2009-02-071-0/+1
* Do not use host floating point types when emittingDale Johannesen2009-01-211-2/+0
* Removed trailing whitespace.Misha Brukman2009-01-091-63/+63
* Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman2009-01-051-2/+0
* move partial template specialization to FoldingSet.h.Zhongxing Xu2008-11-171-0/+6
* Fix 80-col violation.Zhongxing Xu2008-11-161-1/+1
* Overload AddInteger on int/long/long long instead of on int/int64_t,Dan Gohman2008-11-031-2/+4
* Add a clear() method to FoldingSet.Dan Gohman2008-08-231-0/+3
* Add an empty() member to FoldingSet.Dan Gohman2008-08-221-0/+3
* Remove an unnecessary reinterpret_cast.Dan Gohman2008-07-071-1/+1
* Add explicit keywords.Dan Gohman2008-07-071-4/+4
* Add a version of AddString that takes a const char* so we can avoid extraneousOwen Anderson2008-07-011-0/+1
* Added partial specialization of FoldingSetTrait for pointers.Ted Kremenek2008-07-011-0/+12
* Fix comment.Duncan Sands2008-03-191-1/+1
* Added "Profile" method to APFloat for use with FoldingSet.Ted Kremenek2008-02-111-15/+16
* Add support to FoldingSet for hashing APInt objects.Dan Gohman2008-02-061-0/+2
* Added "bucket_iterators" to FoldingSet. Bucket iterators allow iterationTed Kremenek2008-02-041-0/+62
* Added destructor for template class FoldingSetNodeWrapper.Ted Kremenek2008-01-281-1/+4
* Added "clear" method to FoldingSetNodeID to allow a FoldingSetNodeID objectTed Kremenek2008-01-211-0/+4
* Made 'FoldingSetNodeID' a proper class instead of a nested class inTed Kremenek2008-01-191-51/+47
* Made 'profiling' of objects in a FoldingSet trait-based using FoldingSetTraitTed Kremenek2008-01-191-1/+53