aboutsummaryrefslogtreecommitdiff
path: root/lib/Support
AgeCommit message (Expand)Author
2009-08-23Fix windows build.Benjamin Kramer
2009-08-23Fix some refactos for iostream changes (in -Asserts mode).Daniel Dunbar
2009-08-23remove some uses of llvm/Support/Streams.hChris Lattner
2009-08-23convert LoopInfo.h and GraphWriter.h to use raw_ostreamChris Lattner
2009-08-23eliminate DOUT and make Debug.h not include Streams.h anymore, woo!Chris Lattner
2009-08-23Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner
2009-08-23Change raw_fd_ostream to take flags as an optional bitmask Chris Lattner
2009-08-22switch formattedstream to use raw_ostream::indent. This eliminatesChris Lattner
2009-08-22add a raw_ostream::indent method, to be used like:Chris Lattner
2009-08-21Fix typo.Anton Korobeynikov
2009-08-21Implement APInt <-> APFloat conversion for IEEE 128-bit floats.Anton Korobeynikov
2009-08-21Clean up the APInt function getDigit.Erick Tryzelaar
2009-08-21Update error messages for '+'. Fix grammar and make the twoEric Christopher
2009-08-21Fix trailing whitespace and 80-col violation.Eric Christopher
2009-08-21Fix bug with APInt::getBitsNeeded with for base 10 numbers 0-9.Erick Tryzelaar
2009-08-21Allow '+' to appear in APInt strings, and add more unit tests.Erick Tryzelaar
2009-08-20Add support for including '+' in APFloat strings, more asserts,Erick Tryzelaar
2009-08-20Add a comment explaining why llvm_unreachable_internal doesn't callDan Gohman
2009-08-20Fix two APFloat bugs in converting hexadecimal constants.Daniel Dunbar
2009-08-19Add triple parsing support for TCE.Eli Friedman
2009-08-19Switch to SmallString::str from SmallString::c_str, and removeDaniel Dunbar
2009-08-19Change raw_svector_ostream to reserve the input buffer if necessary, Ted wasDaniel Dunbar
2009-08-19Switch Twine::str() to use toVector(), which is now efficient.Daniel Dunbar
2009-08-19Switch raw_svector_ostream to use the vector as the ostream buffer.Daniel Dunbar
2009-08-19Speculatively revert r79375, which may be breaking bootstrap, although in aDaniel Dunbar
2009-08-19raw_ostream: Simplify write(unsigned char) to match write(const char*, unsign...Daniel Dunbar
2009-08-19raw_ostream: Remove pointless redefinitions of tell().Daniel Dunbar
2009-08-18raw_ostream: Add the capability for subclasses to manually install an externalDaniel Dunbar
2009-08-18raw_ostream: Reduce FormattedStream's reliance on raw_ostream's implementation.Daniel Dunbar
2009-08-18Speed up raw_ostream::<<(unsigned long long) for 32-bit systems by doing mostDaniel Dunbar
2009-08-18Fix a bug in raw_ostream::write(char) introduced by the change toDan Gohman
2009-08-18Revert r78924, disabling buffering defeats all the fast paths in raw_ostream.Daniel Dunbar
2009-08-18Improve Triple to recognize the OS in i386-mingw32.Daniel Dunbar
2009-08-18Fix an uninitialized value warning in APFloat.Erick Tryzelaar
2009-08-18Fix Triple to recognize the 'bfin' arch.Daniel Dunbar
2009-08-18Recognize xscale as an ARM arch.Daniel Dunbar
2009-08-18Add Triple matching for pic16 arch and solaris OS.Daniel Dunbar
2009-08-17the MinPad argument to PadToColumn only really makes sense to be 1,Chris Lattner
2009-08-16Modify APFloat to take a StringRef instead of a c string.Erick Tryzelaar
2009-08-15Mingw also doesn't have st_blksize.Dan Gohman
2009-08-15Always check to see if raw_fd_ostream's file descriptor is attached toDan Gohman
2009-08-15Add support for column computation on unbuffered streams.Dan Gohman
2009-08-15Move FormattedStream's write_impl out of line.Dan Gohman
2009-08-15Remove an unnecessary #include.Dan Gohman
2009-08-14fix "pc" to be lower case in a target triple, patch by Yonggang LuoChris Lattner
2009-08-13When standard output is a terminal, set outs() to be unbuffered, toDan Gohman
2009-08-13Fix a compiler warning about comparing signed with unsigned.Dan Gohman
2009-08-13Add an assert to check copy_to_buffer's precondition.Dan Gohman
2009-08-13Set raw_os_ostream, raw_string_ostream, and raw_svector_ostream to beDan Gohman
2009-08-13Add support to raw_ostream for sizing the buffer according to theDan Gohman