| Commit message (Expand) | Author | Age | Files | Lines |
* | Simplify & microoptimize code. No intended functionality change. | Benjamin Kramer | 2011-07-18 | 1 | -4/+2 |
* | singed int causes signed extension, which contradicts the intention to pick up | Zhongxing Xu | 2011-06-03 | 1 | -1/+1 |
* | allow adding a FoldingSetNodeID to a FastFoldingSetNode, resolving PR9499, | Chris Lattner | 2011-04-25 | 1 | -0/+5 |
* | Merge System into Support. | Michael J. Spencer | 2010-11-29 | 1 | -1/+1 |
* | Aligned and unaligned copies of the same string | Dale Johannesen | 2010-11-19 | 1 | -7/+22 |
* | Use Bits.data() instead of &Bits[0]. | Dan Gohman | 2010-08-24 | 1 | -3/+3 |
* | Add hooks to FoldingSetTrait to allow specializations to provide | Dan Gohman | 2010-08-16 | 1 | -35/+52 |
* | Reverse the order of GetNodeProfile's arguments, for consistency | Dan Gohman | 2010-08-16 | 1 | -4/+4 |
* | Use calloc instead of new/memset, it is more efficient when the set is very l... | Benjamin Kramer | 2010-06-19 | 1 | -6/+14 |
* | Add the ability to "intern" FoldingSetNodeID data into a | Dan Gohman | 2010-03-18 | 1 | -0/+10 |
* | Switch FoldingSet::AddString to StringRef based API. | Daniel Dunbar | 2009-09-22 | 1 | -11/+3 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -1/+1 |
* | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -1/+2 |
* | Add an API for strings with possible NULLs in the middle. Refactor the other | Nick Lewycky | 2009-02-07 | 1 | -37/+8 |
* | Do not use host floating point types when emitting | Dale Johannesen | 2009-01-21 | 1 | -6/+0 |
* | Overload AddInteger on int/long/long long instead of on int/int64_t, | Dan Gohman | 2008-11-03 | 1 | -6/+16 |
* | Add a clear() method to FoldingSet. | Dan Gohman | 2008-08-23 | 1 | -12/+13 |
* | Avoid repeatedly reallocating the FoldingSetNodeID when searching | Dan Gohman | 2008-08-12 | 1 | -2/+4 |
* | Add a version of AddString that takes a const char* so we can avoid extraneous | Owen Anderson | 2008-07-01 | 1 | -0/+38 |
* | Consistently set "Buckets[NumBuckets] = reinterpret_cast<void*>(-1)" througho... | Ted Kremenek | 2008-06-17 | 1 | -1/+1 |
* | Fix more -Wshorten-64-to-32 warnings. | Evan Cheng | 2008-05-05 | 1 | -2/+2 |
* | Unbreak build with gcc 4.3: provide missed includes and silence most annoying... | Anton Korobeynikov | 2008-02-20 | 1 | -0/+1 |
* | Fixed bug in FoldingSetIteratorImpl where we did not correctly check if | Ted Kremenek | 2008-02-15 | 1 | -2/+4 |
* | Added "Profile" method to APFloat for use with FoldingSet. | Ted Kremenek | 2008-02-11 | 1 | -11/+0 |
* | Add support to FoldingSet for hashing APInt objects. | Dan Gohman | 2008-02-06 | 1 | -0/+4 |
* | Added "bucket_iterators" to FoldingSet. Bucket iterators allow iteration | Ted Kremenek | 2008-02-04 | 1 | -1/+7 |
* | Fixed 80 col. violation. | Ted Kremenek | 2008-02-04 | 1 | -2/+4 |
* | Made 'FoldingSetNodeID' a proper class instead of a nested class in | Ted Kremenek | 2008-01-19 | 1 | -19/+19 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Change a #include into a forward declaration | Chris Lattner | 2007-10-09 | 1 | -0/+1 |
* | Add initial iterator support for folding set. | Chris Lattner | 2007-10-03 | 1 | -0/+32 |
* | Simplify implementation of the FoldingSet circular list, a necessary step | Chris Lattner | 2007-10-03 | 1 | -11/+20 |
* | fix a gcc warning: comparison between signed and unsigned integer expressions | Chris Lattner | 2007-09-14 | 1 | -1/+1 |
* | Remove the assumption that FP's are either float or | Dale Johannesen | 2007-09-14 | 1 | -0/+6 |
* | And an FoldingSetImpl::NodeID::AddInteger overload for int64_t, to avoid | Dan Gohman | 2007-09-14 | 1 | -0/+3 |
* | remove folding set debug output | Chris Lattner | 2007-02-24 | 1 | -4/+0 |
* | Encode small integers more densely in foldingset, avoiding overflowing the Sm... | Chris Lattner | 2007-02-04 | 1 | -1/+4 |
* | improve comments, add an assertion | Chris Lattner | 2007-02-01 | 1 | -3/+6 |
* | Add some debug output. | Reid Spencer | 2007-01-31 | 1 | -0/+4 |
* | minor cleanups. Fix off-by-one in accounting the number of nodes when the | Chris Lattner | 2007-01-31 | 1 | -4/+5 |
* | reformat comment | Chris Lattner | 2007-01-30 | 1 | -2/+2 |
* | assert.h -> cassert | Rafael Espindola | 2006-11-03 | 1 | -1/+1 |
* | #include <assert.h> | Rafael Espindola | 2006-11-02 | 1 | -0/+1 |
* | Allow FoldingSet clients to pump up the initial hash size. | Jim Laskey | 2006-11-02 | 1 | -2/+4 |
* | Try again. | Jim Laskey | 2006-10-29 | 1 | -1/+4 |
* | Not handling zero length strings. | Jim Laskey | 2006-10-29 | 1 | -2/+2 |
* | SmallVector append not insert. | Jim Laskey | 2006-10-27 | 1 | -5/+1 |
* | Grrr. | Jim Laskey | 2006-10-27 | 1 | -1/+1 |
* | Temp patch for missing functionality. | Jim Laskey | 2006-10-27 | 1 | -0/+4 |
* | MathExtras isn't in the llvm/ADT directory but in the llvm/Support directory. | Bill Wendling | 2006-10-27 | 1 | -1/+1 |