| Commit message (Expand) | Author | Age | Files | Lines |
* | Allow SmallString to implicitly convert to StringRef. | Daniel Dunbar | 2009-11-21 | 1 | -1/+4 |
* | cstdlib is not automatically included with StringRef anymore. | Benjamin Kramer | 2009-11-19 | 1 | -0/+1 |
* | Remove the now obsolete algorithm include from StringRef.h. | Benjamin Kramer | 2009-11-19 | 1 | -1/+1 |
* | Workaround PR5482, because all the gcc versions that I had were miscompiling ... | Torok Edwin | 2009-11-19 | 1 | -7/+20 |
* | Add PS3 Triple class, Credit to John Thompson. | Edward O'Callaghan | 2009-11-19 | 1 | -1/+2 |
* | Twine: Stores kinds as uchar instead of bitfield to be friendlier to the | Daniel Dunbar | 2009-11-19 | 1 | -4/+4 |
* | Added getArchNameForAssembler method to the Triple class for which returns OS... | Viktor Kutuzov | 2009-11-17 | 1 | -0/+4 |
* | add Case() with 5 args | Nuno Lopes | 2009-11-17 | 1 | -0/+8 |
* | 1. Allow SCCIterator to work with GraphT types that are constant. | Duncan Sands | 2009-11-17 | 2 | -5/+15 |
* | Fix unused variables warnings. | Eric Christopher | 2009-11-16 | 1 | -1/+1 |
* | add a version of array_pod_sort that takes a custom comparator function. | Chris Lattner | 2009-11-15 | 1 | -0/+8 |
* | Add PSP OS Target to Triple, Credit to Bruno Cardoso Lopes. | Edward O'Callaghan | 2009-11-15 | 1 | -0/+1 |
* | Use .data() instead of .c_str() when nul-termination is not needed. | Dan Gohman | 2009-11-13 | 1 | -1/+1 |
* | Switch to smallvector. Also fix issue with using unsigend for MaxSplit. | Rafael Espindola | 2009-11-13 | 1 | -10/+4 |
* | Add a new split method to StringRef that puts the substrings in a vector. | Rafael Espindola | 2009-11-13 | 1 | -0/+27 |
* | StringRef(const char*) should not be used to turn null pointers into empty | Daniel Dunbar | 2009-11-12 | 1 | -1/+1 |
* | Add compare_lower and equals_lower methods to StringRef. Switch all users of | Benjamin Kramer | 2009-11-12 | 1 | -0/+8 |
* | Add StringRef::split(StringRef), to complement StringRef::split(char). | Daniel Dunbar | 2009-11-11 | 1 | -0/+17 |
* | Add Triple::str() which returns the contents of the Triple as a string, as a ... | Daniel Dunbar | 2009-11-11 | 1 | -0/+2 |
* | Add From arguments to StringRef search functions, and tweak doxyments. | Daniel Dunbar | 2009-11-11 | 1 | -11/+19 |
* | Fix DenseMap iterator constness. | Jeffrey Yasskin | 2009-11-10 | 1 | -39/+36 |
* | Add StringSwitch::Cases overloads, for matching multiple strings to a single | Daniel Dunbar | 2009-11-09 | 1 | -0/+19 |
* | Pass StringRef by value. | Daniel Dunbar | 2009-11-06 | 3 | -31/+31 |
* | Add a bunch of missing "template" keywords to disambiguate dependent template... | Douglas Gregor | 2009-11-06 | 1 | -8/+11 |
* | Make a few more LLVM headers parsable as standalone headers. | Douglas Gregor | 2009-11-05 | 4 | -4/+6 |
* | add newline to make cl.exe happy. | Zhongxing Xu | 2009-10-29 | 1 | -1/+1 |
* | A switch-on-string-literal construct that is a nice alternative to | Douglas Gregor | 2009-10-29 | 1 | -0/+83 |
* | Remove getIEEEFloatParts and getIEEEDoubleParts. They are not needed. | Evan Cheng | 2009-10-28 | 1 | -7/+0 |
* | Add new APFloat methods that return sign, exp, and mantissa of ieee float and... | Evan Cheng | 2009-10-27 | 1 | -0/+7 |
* | Fix VS build, patch by Marius Wachtler. | Mike Stump | 2009-10-27 | 1 | -1/+1 |
* | Move DataTypes.h to include/llvm/System, update all users. This breaks the last | Chandler Carruth | 2009-10-26 | 8 | -8/+8 |
* | Fix stylistic and documentation problems in ValueMap found by Nick Lewycky and | Jeffrey Yasskin | 2009-10-23 | 2 | -23/+33 |
* | Try r84890 again (adding ValueMap<>), now that I've tested the compile on | Jeffrey Yasskin | 2009-10-22 | 1 | -0/+365 |
* | size_t, not unsigned here to silence a warning. | Eric Christopher | 2009-10-22 | 1 | -26/+26 |
* | Random include cleanup. | Benjamin Kramer | 2009-10-22 | 1 | -1/+0 |
* | Revert r84890, which broke the linux build. | Jeffrey Yasskin | 2009-10-22 | 1 | -365/+0 |
* | Add a ValueMap<ValueOrSubclass*, T> type. ValueMap<Value*, T> is safe to use | Jeffrey Yasskin | 2009-10-22 | 1 | -0/+365 |
* | More warnings patrol: Another unused argument and more implicit | Eric Christopher | 2009-10-17 | 1 | -2/+2 |
* | Move UnescapeString to a static function for its sole client; its inefficient... | Daniel Dunbar | 2009-10-17 | 1 | -5/+0 |
* | Remove llvm::EscapeString, raw_ostream::write_escaped is much faster. | Daniel Dunbar | 2009-10-17 | 1 | -4/+0 |
* | Move StringMap's string has function into StringExtras.h | Daniel Dunbar | 2009-10-17 | 1 | -0/+14 |
* | Add half precision floating point support (float16) to APFloat, | Chris Lattner | 2009-10-16 | 1 | -0/+3 |
* | add haiku support, patch by Paul Davey! | Chris Lattner | 2009-10-16 | 1 | -1/+2 |
* | Delete bogus semicolons. | Dan Gohman | 2009-10-14 | 1 | -2/+2 |
* | Remove a bunch of unused arguments from functions, silencing a | Eric Christopher | 2009-10-14 | 1 | -1/+1 |
* | Provide a mode for ImmutableMap/ImmutableSet to not automatically canonicaliz... | Ted Kremenek | 2009-10-13 | 2 | -12/+20 |
* | remove dead header. | Chris Lattner | 2009-10-13 | 1 | -40/+0 |
* | Add a ceilLogBase2 function to APInt. | Dan Gohman | 2009-10-13 | 1 | -0/+5 |
* | Add a comment explaining how DenseMap::insert works, because it is not | Torok Edwin | 2009-10-07 | 1 | -0/+3 |
* | Don't use identifiers that start with an underscore followed | Dan Gohman | 2009-10-01 | 1 | -2/+2 |