aboutsummaryrefslogtreecommitdiff
path: root/lib/Support
AgeCommit message (Expand)Author
2009-12-16now that libsystem no longer uses SmallVector, we can move Chris Lattner
2009-12-14Micro-optimize these functions in the case where they are not inlined.Dan Gohman
2009-12-09DeltaAlgorithm: Add a virtual destructor and home.Daniel Dunbar
2009-12-04Fix typo and add missing include.Daniel Dunbar
2009-12-03Print a newline after the Args: line so that unrelated errs() output doesn'tDan Gohman
2009-12-03Add an implementation of the delta debugging algorithm.Daniel Dunbar
2009-12-01return more useful error messages by using strerror to format errnoChris Lattner
2009-11-25Perform explicit instantiations in the proper namespace, since Clang diagnose...Douglas Gregor
2009-11-22SourceMgr: Add ShowLine argument to PrintMessage, to allow suppressing the so...Daniel Dunbar
2009-11-20Move the handling of CommaSeparated options into ProvideOption.Mikhail Glushenkov
2009-11-19Use StringRef::min instead of std::min.Daniel Dunbar
2009-11-19Trailing whitespace.Mikhail Glushenkov
2009-11-19Add PS3 Triple class, Credit to John Thompson.Edward O'Callaghan
2009-11-17Added getArchNameForAssembler method to the Triple class for which returns OS...Viktor Kutuzov
2009-11-17Revert CPU detection code to return "generic" instead of an empty string in caseBenjamin Kramer
2009-11-17Fix a race condition in the Timer class.Owen Anderson
2009-11-15Add PSP OS Target to Triple, Credit to Bruno Cardoso Lopes.Edward O'Callaghan
2009-11-14Report the detected host CPU in --version.Daniel Dunbar
2009-11-13Distinguish "a," from "a". The first one splits into "a" + "" and the second ...Rafael Espindola
2009-11-13Switch to smallvector. Also fix issue with using unsigend for MaxSplit.Rafael Espindola
2009-11-13Add a new split method to StringRef that puts the substrings in a vector.Rafael Espindola
2009-11-12Add compare_lower and equals_lower methods to StringRef. Switch all users ofBenjamin Kramer
2009-11-12fix crash in my previous patchNuno Lopes
2009-11-12implement shl, ashr, and lshr methods. shl is not fully implemented as it is ...Nuno Lopes
2009-11-11Show command-line args and features passed into backend in debug output. Appr...Sandeep Patel
2009-11-11Add From arguments to StringRef search functions, and tweak doxyments.Daniel Dunbar
2009-11-10Fix MemoryBuffer::getSTDIN to *not* return null if stdin is empty, this is a ...Daniel Dunbar
2009-11-09add zextOrTrunc and sextOrTrunc methods, that are similar to the ones in APIntNuno Lopes
2009-11-09Make lib/Support/Debug.cpp SetCurrentDebugType implementation part of llvm na...Xerxes Ranby
2009-11-07Trailing whitespace.Mikhail Glushenkov
2009-11-06Pass StringRef by value.Daniel Dunbar
2009-11-04A value is only assigned to errno if NumRead equals -1, so doDuncan Sands
2009-11-03Make this code more robust by not thinking we are making progressDuncan Sands
2009-10-28add a new 'SetCurrentDebugType' API (requested by Andrew Haley for JITChris Lattner
2009-10-28Remove getIEEEFloatParts and getIEEEDoubleParts. They are not needed.Evan Cheng
2009-10-27Add new APFloat methods that return sign, exp, and mantissa of ieee float and...Evan Cheng
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth
2009-10-23Commit fixes for half precision I noted in review, soDale Johannesen
2009-10-17Move UnescapeString to a static function for its sole client; its inefficient...Daniel Dunbar
2009-10-17Remove llvm::EscapeString, raw_ostream::write_escaped is much faster.Daniel Dunbar
2009-10-17Add raw_ostream::write_escaped, for writing escaped strings.Daniel Dunbar
2009-10-17Move StringMap's string has function into StringExtras.hDaniel Dunbar
2009-10-16Add half precision floating point support (float16) to APFloat,Chris Lattner
2009-10-16add haiku support, patch by Paul Davey!Chris Lattner
2009-10-06r83391 was completely broken since Twines keep references to their inputs, andJeffrey Yasskin
2009-10-06Bugfix for the CommaSeparated option. The original code was adding the wholeNicolas Geoffray
2009-10-06Fix PR5112, a miscompilation on gcc-4.0.3. Patch by Collin Winter!Jeffrey Yasskin
2009-09-27Avoid using mutex locks if not in multithreaded mode by using a SmartScopedMutexTorok Edwin
2009-09-26remove support for "NoSub" from regex. It seems like a minor optimizationChris Lattner
2009-09-24add and document regex support for FileCheck. You can now do stuff like:Chris Lattner