| Commit message (Expand) | Author | Age | Files | Lines |
* | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
* | fix typos | Adrian Prantl | 2018-09-14 | 1 | -1/+1 |
* | Remove trailing space | Fangrui Song | 2018-07-30 | 1 | -20/+20 |
* | Use uniform mechanism for OOM errors handling | Serge Pavlov | 2018-06-09 | 1 | -5/+2 |
* | Revert commit 333506 | Serge Pavlov | 2018-05-30 | 1 | -2/+5 |
* | Use uniform mechanism for OOM errors handling | Serge Pavlov | 2018-05-30 | 1 | -5/+2 |
* | Reverted commits 333390, 333391 and 333394 | Serge Pavlov | 2018-05-29 | 1 | -2/+5 |
* | Use uniform mechanism for OOM errors handling | Serge Pavlov | 2018-05-29 | 1 | -5/+2 |
* | Revert r325224 "Report fatal error in the case of out of memory" | Serge Pavlov | 2018-02-15 | 1 | -2/+1 |
* | Report fatal error in the case of out of memory | Serge Pavlov | 2018-02-15 | 1 | -1/+2 |
* | Support, IR, ADT: Check nullptr after allocation with malloc/realloc or calloc | Matthias Braun | 2017-07-20 | 1 | -2/+7 |
* | [ADT] Reduce duplication between {Contextual,}FoldingSet; NFC | George Burgess IV | 2017-06-12 | 1 | -21/+21 |
* | PR30711: Fix incorrect profiling of 'long long' in FoldingSet, then use it to | Richard Smith | 2016-10-16 | 1 | -4/+4 |
* | Replace a few more "fall through" comments with LLVM_FALLTHROUGH | Justin Bogner | 2016-08-17 | 1 | -2/+2 |
* | Adding reserve and capacity methods to FoldingSet | Ben Craig | 2016-06-03 | 1 | -5/+20 |
* | [ADT] Teach FoldingSet to be movable. | Chandler Carruth | 2015-08-16 | 1 | -0/+20 |
* | fix typos; NFC | Sanjay Patel | 2015-04-06 | 1 | -2/+2 |
* | FoldingSet: Make FoldingSetImpl's dtor protected and non-virtual | Benjamin Kramer | 2015-03-22 | 1 | -0/+2 |
* | [llvm] Replacing asserts with static_asserts where appropriate | Gabor Horvath | 2015-03-16 | 1 | -2/+3 |
* | [C++11] More 'nullptr' conversion. In some cases just using a boolean check i... | Craig Topper | 2014-04-15 | 1 | -1/+1 |
* | [C++11] Replace some comparisons with 'nullptr' with simple boolean checks to... | Craig Topper | 2014-04-09 | 1 | -6/+5 |
* | [C++11] Make use of 'nullptr' in the Support library. | Craig Topper | 2014-04-07 | 1 | -10/+11 |
* | Make the host endianness check an integer constant expression. | Rafael Espindola | 2013-04-15 | 1 | -2/+2 |
* | Fix whitespace. No functionality change. | Nick Lewycky | 2012-12-25 | 1 | -2/+2 |
* | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -1/+1 |
* | move irrelevant attribution. | Chris Lattner | 2012-11-16 | 1 | -3/+1 |
* | Add operator< for FoldingSetNodeID. | Ted Kremenek | 2012-09-08 | 1 | -0/+18 |
* | FoldingSet: Push the hash through FoldingSetTraits::Equals, so clients can us... | Benjamin Kramer | 2012-04-11 | 1 | -3/+3 |
* | Revert commit 152300 (ddunbar) since it still seems to be breaking | Duncan Sands | 2012-03-08 | 1 | -1/+43 |
* | [ADT] Change the trivial FoldingSetNodeID::Add* methods to be inline, reapplied | Daniel Dunbar | 2012-03-08 | 1 | -43/+1 |
* | Revert r152288, "[ADT] Change the trivial FoldingSetNodeID::Add* methods to be | Daniel Dunbar | 2012-03-08 | 1 | -1/+43 |
* | [ADT] Change the trivial FoldingSetNodeID::Add* methods to be inline. | Daniel Dunbar | 2012-03-08 | 1 | -43/+1 |
* | Switch FoldingSet over to the new hashing infrastructure. We might want | Chandler Carruth | 2012-03-01 | 1 | -18/+2 |
* | 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 |