aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support
Commit message (Expand)AuthorAgeFilesLines
* Add support for outputting ANSI colors to raw_fd_ostream.Torok Edwin2009-06-041-0/+30
* Add support for letting the client choose different flavors of NaNs. Testcas...Mike Stump2009-05-301-6/+12
* Untabification.Bill Wendling2009-05-301-1/+1
* Minor fix for CMake build systemDouglas Gregor2009-05-271-0/+1
* Add llvm::triple constructor from arch, vendor, os strings, and recognizeDaniel Dunbar2009-05-221-0/+3
* 80 column violation.Evan Cheng2009-05-211-1/+1
* Have llvm_start_multithreaded return a bool indicating whether multithreadedOwen Anderson2009-05-201-2/+3
* Add llvm_start_multithreaded(), which starts up the LLVM internals in thread-...Owen Anderson2009-05-201-8/+45
* Tweak MemoryBuffer::getSTDIN so that it returns after the first EOF. Eli Friedman2009-05-181-3/+6
* Add dumping support for DW_AT_APPLE_isa and DW_AT_APPLE_block.Mike Stump2009-05-141-0/+2
* Fix whitespacing (space after switch).Mike Stump2009-05-133-33/+32
* Move helper functions for optimizing division by constant into the APIntJay Foad2009-04-301-0/+92
* Add support for a character after a command line option. Like '-Os'.Bill Wendling2009-04-291-0/+3
* Fix PR4040: APInt's string constructor is too strictChris Lattner2009-04-251-7/+9
* Make all raw_ostreams support the tell() function.Douglas Gregor2009-04-201-0/+11
* teach EscapeString and UnescapeString to handle ".Chris Lattner2009-04-151-0/+3
* Remove AllowInverse: it leaks memory and is not the rightChris Lattner2009-04-081-21/+0
* Fix build on Linux.Mikhail Glushenkov2009-04-021-0/+1
* Add llvm::Triple class for abstracting access to target triples.Daniel Dunbar2009-04-011-0/+183
* Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman2009-04-011-3/+3
* * Fixed spelling of `invertible'Misha Brukman2009-04-011-2/+2
* move a large method out of line.Chris Lattner2009-03-281-0/+19
* Fix internal representation of fp80 to be theDale Johannesen2009-03-231-8/+6
* Now that errs() is properly non-buffered, there's no need toDan Gohman2009-03-231-1/+0
* Fix comment typo.Duncan Sands2009-03-191-1/+1
* Add BUILTIN_EXPECT Support/Compiler macro.Daniel Dunbar2009-03-171-1/+2
* raw_ostream: Put all exceptional conditions in raw_ostream::writeDaniel Dunbar2009-03-171-18/+30
* raw_ostream: Rework implementation of unbuffered streams so outputtingDaniel Dunbar2009-03-171-4/+12
* raw_ostream: Replace flush_impl with write_impl, which takes data toDaniel Dunbar2009-03-161-32/+15
* raw_ostream: Lift out flush_nonempty.Daniel Dunbar2009-03-161-20/+21
* Make raw_ostream::operator<<(const void *) fast; it doesn't matter butDaniel Dunbar2009-03-161-2/+19
* Add slow path for single character write, and use exclusively forDaniel Dunbar2009-03-161-8/+8
* Fix a hashing bug in APInt. A certain pathological testcase (tooStuart Hastings2009-03-131-7/+85
* just initialize the first element, we don't need to set the rest to zeros.Chris Lattner2009-03-131-3/+3
* Eliminate a 9640 byte static mutable initialized data item by moving itChris Lattner2009-03-131-2/+2
* static functions don't need an anonymous namespace.Chris Lattner2009-03-121-373/+371
* PR3478: raw_ostream should not buffer stderrDaniel Dunbar2009-03-101-1/+5
* Use c_str() to force the string to be nul-terminated.Dan Gohman2009-03-061-1/+1
* on apple systems, integrate nicely with crash reporter.Chris Lattner2009-03-061-4/+34
* Add missing file.Duncan Sands2009-03-051-0/+1
* Daniel wanted the stack printed upside down. Perhaps heChris Lattner2009-03-051-6/+14
* indicate what the program args line is.Chris Lattner2009-03-051-1/+3
* add some helper classes for building light-weight symbolic stack tracesChris Lattner2009-03-041-0/+69
* The debugger sometimes lookup dynamically in the runtime to find ivar info of...Devang Patel2009-02-171-0/+2
* Unbreak the build on win32.Cedric Venet2009-02-141-1/+1
* Switch from new[] + delete[] to malloc + free since llvm does not catch C++ e...Evan Cheng2009-02-131-3/+3
* If new[] fails, return 0 rather then trying to dereference a null pointer.Evan Cheng2009-02-131-3/+12
* Add an API for strings with possible NULLs in the middle. Refactor the otherNick Lewycky2009-02-071-37/+8
* Improve -fno-opt style option processing to not require an extraMike Stump2009-02-021-19/+2
* Add opposite_of and inverse_opt to support -fno- style options. ThisMike Stump2009-01-301-1/+21