| Commit message (Expand) | Author | Age | Files | Lines |
* | Distinguish "a," from "a". The first one splits into "a" + "" and the second ... | Rafael Espindola | 2009-11-13 | 1 | -3/+5 |
* | Switch to smallvector. Also fix issue with using unsigend for MaxSplit. | Rafael Espindola | 2009-11-13 | 1 | -3/+4 |
* | Add a new split method to StringRef that puts the substrings in a vector. | Rafael Espindola | 2009-11-13 | 1 | -0/+19 |
* | Add compare_lower and equals_lower methods to StringRef. Switch all users of | Benjamin Kramer | 2009-11-12 | 1 | -0/+20 |
* | fix crash in my previous patch | Nuno Lopes | 2009-11-12 | 1 | -1/+1 |
* | implement shl, ashr, and lshr methods. shl is not fully implemented as it is ... | Nuno Lopes | 2009-11-12 | 1 | -0/+37 |
* | Show command-line args and features passed into backend in debug output. Appr... | Sandeep Patel | 2009-11-11 | 1 | -0/+6 |
* | Add From arguments to StringRef search functions, and tweak doxyments. | Daniel Dunbar | 2009-11-11 | 1 | -9/+24 |
* | Fix MemoryBuffer::getSTDIN to *not* return null if stdin is empty, this is a ... | Daniel Dunbar | 2009-11-10 | 1 | -16/+14 |
* | add zextOrTrunc and sextOrTrunc methods, that are similar to the ones in APInt | Nuno Lopes | 2009-11-09 | 1 | -0/+24 |
* | Make lib/Support/Debug.cpp SetCurrentDebugType implementation part of llvm na... | Xerxes Ranby | 2009-11-09 | 1 | -1/+1 |
* | Trailing whitespace. | Mikhail Glushenkov | 2009-11-07 | 1 | -7/+7 |
* | Pass StringRef by value. | Daniel Dunbar | 2009-11-06 | 3 | -14/+14 |
* | A value is only assigned to errno if NumRead equals -1, so do | Duncan Sands | 2009-11-04 | 1 | -1/+1 |
* | Make this code more robust by not thinking we are making progress | Duncan Sands | 2009-11-03 | 1 | -1/+1 |
* | add a new 'SetCurrentDebugType' API (requested by Andrew Haley for JIT | Chris Lattner | 2009-10-28 | 1 | -0/+11 |
* | Remove getIEEEFloatParts and getIEEEDoubleParts. They are not needed. | Evan Cheng | 2009-10-28 | 1 | -50/+0 |
* | Add new APFloat methods that return sign, exp, and mantissa of ieee float and... | Evan Cheng | 2009-10-27 | 1 | -12/+62 |
* | Move DataTypes.h to include/llvm/System, update all users. This breaks the last | Chandler Carruth | 2009-10-26 | 1 | -1/+1 |
* | Commit fixes for half precision I noted in review, so | Dale Johannesen | 2009-10-23 | 1 | -3/+3 |
* | Move UnescapeString to a static function for its sole client; its inefficient... | Daniel Dunbar | 2009-10-17 | 1 | -30/+0 |
* | Remove llvm::EscapeString, raw_ostream::write_escaped is much faster. | Daniel Dunbar | 2009-10-17 | 1 | -26/+0 |
* | Add raw_ostream::write_escaped, for writing escaped strings. | Daniel Dunbar | 2009-10-17 | 1 | -0/+34 |
* | Move StringMap's string has function into StringExtras.h | Daniel Dunbar | 2009-10-17 | 1 | -16/+3 |
* | Add half precision floating point support (float16) to APFloat, | Chris Lattner | 2009-10-16 | 1 | -1/+69 |
* | add haiku support, patch by Paul Davey! | Chris Lattner | 2009-10-16 | 1 | -0/+3 |
* | r83391 was completely broken since Twines keep references to their inputs, and | Jeffrey Yasskin | 2009-10-06 | 1 | -4/+9 |
* | Bugfix for the CommaSeparated option. The original code was adding the whole | Nicolas Geoffray | 2009-10-06 | 1 | -0/+1 |
* | Fix PR5112, a miscompilation on gcc-4.0.3. Patch by Collin Winter! | Jeffrey Yasskin | 2009-10-06 | 1 | -1/+4 |
* | Avoid using mutex locks if not in multithreaded mode by using a SmartScopedMutex | Torok Edwin | 2009-09-27 | 1 | -2/+2 |
* | remove support for "NoSub" from regex. It seems like a minor optimization | Chris Lattner | 2009-09-26 | 1 | -15/+12 |
* | add and document regex support for FileCheck. You can now do stuff like: | Chris Lattner | 2009-09-24 | 1 | -2/+3 |
* | wrap long lines. | Chris Lattner | 2009-09-24 | 1 | -2/+4 |
* | tidy up, fix a memory leak in Regex::isValid | Chris Lattner | 2009-09-24 | 1 | -13/+10 |
* | reapply r82348 with a fix, thanks Jeffrey. | Chris Lattner | 2009-09-24 | 1 | -33/+24 |
* | Roll back r82348, which introduced an infinite loop in ParseCStringVector() that | Jeffrey Yasskin | 2009-09-24 | 1 | -22/+33 |
* | Switch FoldingSet::AddString to StringRef based API. | Daniel Dunbar | 2009-09-22 | 1 | -11/+3 |
* | Workaround what I believe is an MSVC bug where it emits a definition for a | Daniel Dunbar | 2009-09-22 | 1 | -0/+3 |
* | simplify as daniel suggests | Chris Lattner | 2009-09-20 | 1 | -16/+9 |
* | tidy up | Chris Lattner | 2009-09-20 | 1 | -1/+1 |
* | smallvectorize getExtraOptionNames | Chris Lattner | 2009-09-20 | 1 | -2/+1 |
* | minor cleanups. | Chris Lattner | 2009-09-20 | 1 | -22/+24 |
* | strength reduce further StringRef-> const char*, saving another 620 bytes. | Chris Lattner | 2009-09-20 | 1 | -5/+11 |
* | switch an std::string to StringRef, shaving 400 bytes off CommandLine.o | Chris Lattner | 2009-09-20 | 1 | -11/+10 |
* | the switch from std::map -> StringMap caused --help output to be in | Chris Lattner | 2009-09-20 | 1 | -5/+15 |
* | eliminate the duplicate detection loop, moving it into the loop that populate... | Chris Lattner | 2009-09-20 | 1 | -13/+6 |
* | Eliminate a masochistic "algorithm" loop, shrinking CommandLine.o from 71524-... | Chris Lattner | 2009-09-20 | 1 | -13/+8 |
* | don't use count + insert, just do insert + failure. Also, instead of deletin... | Chris Lattner | 2009-09-20 | 1 | -6/+9 |
* | switch to SmallPtrSet instead of std::set, saving 1K from the | Chris Lattner | 2009-09-20 | 1 | -4/+4 |
* | change an std::sort to an array_pod_sort call, shrinking CommandLine.o by 9%. | Chris Lattner | 2009-09-20 | 1 | -1/+2 |