| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove MaybeOwningPtr. We're going to use reference-counting instead. | Douglas Gregor | 2010-04-05 | 1 | -93/+0 |
* | Introduce MaybeOwningPtr, a smart pointer that may (or may not) have | Douglas Gregor | 2010-04-05 | 1 | -0/+92 |
* | Introduce namespace-scope functions to enable LLVM statistics without | Douglas Gregor | 2010-03-30 | 1 | -0/+10 |
* | Change PointerUnionX::getFromOpaqueValue() to be declared 'static inline' ins... | Ted Kremenek | 2010-03-30 | 1 | -3/+3 |
* | Fix SmallVector's insert to handle non-random-access iterators. | Dan Gohman | 2010-03-26 | 1 | -6/+18 |
* | Add a method to get a StringMapEntry from a pointer to the string | Chris Lattner | 2010-03-24 | 1 | -0/+8 |
* | Fix a name clash that was breaking MSVC builds. | Benjamin Kramer | 2010-03-18 | 1 | -1/+1 |
* | Fix a bug found by inspection; in the __GNUC__ code, the alignment | Dan Gohman | 2010-03-18 | 1 | -8/+9 |
* | Nick wants these alphabetized | Andrew Lenharth | 2010-03-18 | 1 | -1/+1 |
* | Add the ability to "intern" FoldingSetNodeID data into a | Dan Gohman | 2010-03-18 | 1 | -5/+25 |
* | missing include | Andrew Lenharth | 2010-03-17 | 1 | -0/+1 |
* | work around an MSVC2010 bug, PR6504 | Chris Lattner | 2010-03-16 | 1 | -1/+2 |
* | Free DbgScopes in DwarfDebug::endFunction(). Also increased the const-ness of | Jeffrey Yasskin | 2010-03-12 | 1 | -0/+22 |
* | Iterator traits and swap. closes PR6548 and PR6549 | Andrew Lenharth | 2010-03-08 | 2 | -0/+23 |
* | Revert r97917, which was causing Clang Debug self-host failures. | Douglas Gregor | 2010-03-08 | 1 | -22/+0 |
* | Roll r97906 forward again, without double-deleting CompileUnit::IndexTyDie. | Jeffrey Yasskin | 2010-03-07 | 1 | -0/+22 |
* | _2_ gcc crashes, ah, ah, ah... | Jeffrey Yasskin | 2010-03-07 | 1 | -22/+0 |
* | Avoid leaking CompileUnits and DbgScopes from DwarfDebug. Leaks found by Val... | Jeffrey Yasskin | 2010-03-07 | 1 | -0/+22 |
* | make APFloat::toString be const. | Chris Lattner | 2010-03-06 | 1 | -1/+1 |
* | TopLevelMap[] reference is a pointer. | Evan Cheng | 2010-03-03 | 1 | -1/+1 |
* | Allow specialization of ScopedHashTable of non-default DenseMapInfo. | Evan Cheng | 2010-03-02 | 1 | -28/+33 |
* | Add count() and lookup() to ScopedHashTable. It might be useful to get inform... | Evan Cheng | 2010-03-02 | 1 | -0/+8 |
* | Add an override to StringRef::getAsInteger which parses into an APInt. | John McCall | 2010-02-28 | 2 | -0/+39 |
* | Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-width | John McCall | 2010-02-28 | 2 | -3/+32 |
* | Adding the MicroBlaze backend. | Wesley Peck | 2010-02-23 | 1 | -0/+1 |
* | Fix various doxygen warnings. | Dan Gohman | 2010-02-22 | 1 | -1/+1 |
* | Fix comment. | Daniel Dunbar | 2010-02-17 | 1 | -1/+1 |
* | Fix a comment typo. | Bob Wilson | 2010-02-12 | 1 | -1/+1 |
* | Implement operators |=, &=, and ^= for SmallBitVector, and remove the | Dan Gohman | 2010-02-10 | 2 | -7/+45 |
* | ImmutableIntervalMap: Fix for unqualified lookup into dependent base class, done | Daniel Dunbar | 2010-02-08 | 1 | -15/+15 |
* | add support for the sparcv9-*-* target triple to turn on | Chris Lattner | 2010-02-04 | 1 | -0/+1 |
* | Remove redundant declaration. | Zhongxing Xu | 2010-02-03 | 1 | -2/+0 |
* | Add constructors. | Zhongxing Xu | 2010-02-03 | 1 | -0/+5 |
* | Make DenseSet's erase pass on the return value rather than swallowing it. | Dan Gohman | 2010-02-02 | 1 | -2/+2 |
* | Return value on every path. | Zhongxing Xu | 2010-02-02 | 1 | -3/+2 |
* | simplify code. | Zhongxing Xu | 2010-02-02 | 1 | -9/+6 |
* | More logic correction: RemoveOverlap should always create new tree. Add a | Zhongxing Xu | 2010-02-02 | 1 | -10/+10 |
* | Add a lookup method to the IntervalMap. The difference from the original | Zhongxing Xu | 2010-02-02 | 1 | -1/+36 |
* | Fix a bunch of errors in the old logic. | Zhongxing Xu | 2010-02-02 | 1 | -7/+12 |
* | 11.8p1: A nested class is a member and as such has the same access rights as | Zhongxing Xu | 2010-02-02 | 1 | -3/+0 |
* | Add an immutable interval map, prepared to be used by flat memory model | Zhongxing Xu | 2010-02-01 | 3 | -2/+203 |
* | Simplify code. We can compare TNew with T in one batch. | Zhongxing Xu | 2010-02-01 | 1 | -14/+3 |
* | Make sure the size is doubled (not 4x). | Junjie Gu | 2010-01-29 | 1 | -1/+1 |
* | Add DenseMapInfo for signed long long. | Evan Cheng | 2010-01-22 | 1 | -0/+13 |
* | Store flags in bitfields instead of masking them into the pointer for the lef... | Ted Kremenek | 2010-01-22 | 2 | -27/+23 |
* | Tidy up assertion syntax. No functionality change. | Ted Kremenek | 2010-01-21 | 1 | -35/+30 |
* | Introduce Twine::toStringRef, a variant of toVector which avoids the copy if the | Benjamin Kramer | 2010-01-13 | 1 | -2/+6 |
* | add new isSingleStringRef()/getSingleStringRef() methods to twine, | Chris Lattner | 2010-01-13 | 1 | -0/+30 |
* | give StringRef a const_iterator member. | Chris Lattner | 2010-01-13 | 1 | -9/+3 |
* | Remove unused string functions. | Benjamin Kramer | 2010-01-11 | 1 | -71/+0 |