| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Create empty StringRef is incoming cstring is NULL. | Devang Patel | 2009-09-29 | 1 | -1/+1 |
* | Switch FoldingSet::AddString to StringRef based API. | Daniel Dunbar | 2009-09-22 | 1 | -4/+2 |
* | write rfind in terms of npos as daniel requested | Chris Lattner | 2009-09-20 | 1 | -6/+4 |
* | move a couple non-trivial methods out of line, add new | Chris Lattner | 2009-09-20 | 1 | -39/+23 |
* | add size_t and a version of rfind that allows specification of where | Chris Lattner | 2009-09-20 | 1 | -3/+9 |
* | add some more overloads of StringRef::getAsInteger for | Chris Lattner | 2009-09-19 | 1 | -1/+3 |
* | add a simple c_str() method to SmallString. | Chris Lattner | 2009-09-19 | 1 | -0/+6 |
* | provide a "strtoull" operation that works on StringRef's. | Chris Lattner | 2009-09-19 | 1 | -0/+17 |
* | Fix a few places where PointerIntPair was using PointerLikeTypeTraits<PointerTy> | John McCall | 2009-09-17 | 1 | -4/+5 |
* | add a version of the APFloat constructor that initializes to 0.0 | Chris Lattner | 2009-09-17 | 1 | -0/+1 |