aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/FoldingSet.cpp
Commit message (Expand)AuthorAgeFilesLines
* FoldingSet: Push the hash through FoldingSetTraits::Equals, so clients can us...Benjamin Kramer2012-04-111-3/+3
* Revert commit 152300 (ddunbar) since it still seems to be breakingDuncan Sands2012-03-081-1/+43
* [ADT] Change the trivial FoldingSetNodeID::Add* methods to be inline, reappliedDaniel Dunbar2012-03-081-43/+1
* Revert r152288, "[ADT] Change the trivial FoldingSetNodeID::Add* methods to beDaniel Dunbar2012-03-081-1/+43
* [ADT] Change the trivial FoldingSetNodeID::Add* methods to be inline.Daniel Dunbar2012-03-081-43/+1
* Switch FoldingSet over to the new hashing infrastructure. We might wantChandler Carruth2012-03-011-18/+2
* Simplify & microoptimize code. No intended functionality change.Benjamin Kramer2011-07-181-4/+2
* singed int causes signed extension, which contradicts the intention to pick upZhongxing Xu2011-06-031-1/+1
* allow adding a FoldingSetNodeID to a FastFoldingSetNode, resolving PR9499,Chris Lattner2011-04-251-0/+5
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* Aligned and unaligned copies of the same stringDale Johannesen2010-11-191-7/+22
* Use Bits.data() instead of &Bits[0].Dan Gohman2010-08-241-3/+3
* Add hooks to FoldingSetTrait to allow specializations to provideDan Gohman2010-08-161-35/+52
* Reverse the order of GetNodeProfile's arguments, for consistencyDan Gohman2010-08-161-4/+4
* Use calloc instead of new/memset, it is more efficient when the set is very l...Benjamin Kramer2010-06-191-6/+14
* Add the ability to "intern" FoldingSetNodeID data into aDan Gohman2010-03-181-0/+10
* Switch FoldingSet::AddString to StringRef based API.Daniel Dunbar2009-09-221-11/+3
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-1/+1
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-111-1/+2
* Add an API for strings with possible NULLs in the middle. Refactor the otherNick Lewycky2009-02-071-37/+8
* Do not use host floating point types when emittingDale Johannesen2009-01-211-6/+0
* Overload AddInteger on int/long/long long instead of on int/int64_t,Dan Gohman2008-11-031-6/+16
* Add a clear() method to FoldingSet.Dan Gohman2008-08-231-12/+13
* Avoid repeatedly reallocating the FoldingSetNodeID when searchingDan Gohman2008-08-121-2/+4
* Add a version of AddString that takes a const char* so we can avoid extraneousOwen Anderson2008-07-011-0/+38
* Consistently set "Buckets[NumBuckets] = reinterpret_cast<void*>(-1)" througho...Ted Kremenek2008-06-171-1/+1
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-051-2/+2
* Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov2008-02-201-0/+1
* Fixed bug in FoldingSetIteratorImpl where we did not correctly check ifTed Kremenek2008-02-151-2/+4
* Added "Profile" method to APFloat for use with FoldingSet.Ted Kremenek2008-02-111-11/+0
* Add support to FoldingSet for hashing APInt objects.Dan Gohman2008-02-061-0/+4
* Added "bucket_iterators" to FoldingSet. Bucket iterators allow iterationTed Kremenek2008-02-041-1/+7
* Fixed 80 col. violation.Ted Kremenek2008-02-041-2/+4
* Made 'FoldingSetNodeID' a proper class instead of a nested class inTed Kremenek2008-01-191-19/+19
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Change a #include into a forward declarationChris Lattner2007-10-091-0/+1
* Add initial iterator support for folding set.Chris Lattner2007-10-031-0/+32
* Simplify implementation of the FoldingSet circular list, a necessary stepChris Lattner2007-10-031-11/+20
* fix a gcc warning: comparison between signed and unsigned integer expressionsChris Lattner2007-09-141-1/+1
* Remove the assumption that FP's are either float orDale Johannesen2007-09-141-0/+6
* And an FoldingSetImpl::NodeID::AddInteger overload for int64_t, to avoidDan Gohman2007-09-141-0/+3
* remove folding set debug outputChris Lattner2007-02-241-4/+0
* Encode small integers more densely in foldingset, avoiding overflowing the Sm...Chris Lattner2007-02-041-1/+4
* improve comments, add an assertionChris Lattner2007-02-011-3/+6
* Add some debug output.Reid Spencer2007-01-311-0/+4
* minor cleanups. Fix off-by-one in accounting the number of nodes when theChris Lattner2007-01-311-4/+5
* reformat commentChris Lattner2007-01-301-2/+2
* assert.h -> cassertRafael Espindola2006-11-031-1/+1
* #include <assert.h>Rafael Espindola2006-11-021-0/+1
* Allow FoldingSet clients to pump up the initial hash size.Jim Laskey2006-11-021-2/+4