- 64104f1 Revert r154800 which breaks windows builders. by Argyrios Kyrtzidis · 14 years ago
- d17db2e Add reverseColor to raw_ostream. by Argyrios Kyrtzidis · 14 years ago
- a2755f8 Support/Program: Make Change<stream>ToBinary return error_code. by Michael J. Spencer · 14 years ago
- 53ba208 Avoid undefined behavior in signed integer negation. Patch by Ahmed Charles. by Eli Friedman · 14 years ago
- 7bfd86d Fix integer overflow bug in raw_ostream::write. This showed up as a by Nick Lewycky · 14 years ago
- bac0d76 raw_ostream: [PR6745] Tweak formatting (double)%e for Windows hosts. by NAKAMURA Takumi · 15 years ago
- 76e68ea lib/Support/raw_ostream.cpp: On mingw, report_fatal_error() should not be called at dtor context. by NAKAMURA Takumi · 15 years ago
- dfb0ad3 raw_ostream: while it is generally desirable to do larger writes, it can lead to by Benjamin Kramer · 15 years ago
- acf0842 raw_ostream: If writing a string that is larger than the buffer, write it directly instead of doing many buffer-sized writes. by Benjamin Kramer · 15 years ago
- 4fed887 raw_fd_ostream: Add a SetUseAtomicWrites() method (uses writev). by Daniel Dunbar · 15 years ago
- b747990 Support/raw_ostream: Fix uninitalized variable in raw_fd_ostream constructor. by Michael J. Spencer · 15 years ago
- 447762d Merge System into Support. by Michael J. Spencer · 15 years ago
- 65dc891 raw_ostream::write_escaped: Add a UseHexEscapes argument. by Daniel Dunbar · 15 years ago
- fe84f39 lib/Support/raw_ostream.cpp: Fix Cygwin's build. by NAKAMURA Takumi · 15 years ago
- a3037c3 Always use binary mode for output stream. This is important to prevent unwanted end of line conversion on Windows. Should not affect Unix where O_BINARY is not defined. This fix /clang/test/lexer/preamble.c XFAIL on WIN32. by Francois Pichet · 15 years ago
- 0df7ea4 Move tool_output_file into its own file. by Dan Gohman · 15 years ago
- a2233f2 Make tool_output_file's raw_ostream instance a member variable instead by Dan Gohman · 15 years ago
- e9a4691 Make outs() close its file when its stream is destructed, so that by Dan Gohman · 15 years ago
- 443f2d6 Delete raw_stdout_ostream and raw_stderr_ostream, which are unused by Dan Gohman · 15 years ago
- 38adfdd Move raw_ostream's Error flag into raw_fd_ostream, as that's the only by Dan Gohman · 15 years ago
- b87ad69 Introduce a new tool_output_file class, which extends raw_ostream with by Dan Gohman · 15 years ago
- c825cee Make raw_fd_ostream consider itself the owner of STDOUT_FILENO when by Dan Gohman · 15 years ago
- 44790e7 Revert r111321. This doesn't fix a problem. by Dan Gohman · 15 years ago
- ce3b2c3 Fix the rest of rdar://8318441 which happens when a raw_fd_ostream by Chris Lattner · 15 years ago
- 3db3bb0 avoid undef behavior on minint, fixing PR7783. by Chris Lattner · 15 years ago
- ca97c92 add some triple for minix, patch by Kees van Reeuwijk from PR7582 by Chris Lattner · 15 years ago
- fb85820 Minor code simplification. by Dan Gohman · 16 years ago
- feaeb36 Fix a redundant-return warning. by Dan Gohman · 16 years ago
- dea5310 Usage of O_NONBLOCK in bjam is now confirmed as a bug and fixed upstream. by Dan Gohman · 16 years ago
- d351116 Handle the case where open(2) or close(2) is interrupted by a signal when by Dan Gohman · 16 years ago
- ef969f3 Handle EWOULDBLOCK as EAGAIN. And add a comment explaining why by Dan Gohman · 16 years ago
- ce84a25 Try again if write(2) reports an recoverable error. by Benjamin Kramer · 16 years ago
- c86cdc7 add minix support, patch by Kees van Reeuwijk! PR6797 by Chris Lattner · 16 years ago
- 2104b8d rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 16 years ago
- b452d4e Fix minor style issues. by Dan Gohman · 16 years ago
- 6783832 add an assertion requested on llvmdev. by Chris Lattner · 16 years ago
- 115158f enhance raw_svector_ostream::write_impl to work with unbuffered streams, by Chris Lattner · 16 years ago
- ef14f80 Fix MSVC build. by Benjamin Kramer · 16 years ago
- 6bee24a Use llvm::format instead of ftostr (which just calls sprintf). by Benjamin Kramer · 16 years ago
- 1386a88 Changes to fix buffering that I forgot to commit with previous patch. by Chris Lattner · 16 years ago
- 8fa0e35 add a new MCAsmStreamer::GetCommentOS method to simplify stuff by Chris Lattner · 16 years ago
- dd3e9aa by Chris Lattner · 16 years ago
- fd5de58 Micro-optimize these functions in the case where they are not inlined. by Dan Gohman · 16 years ago
- 4108c43 Add raw_ostream::write_escaped, for writing escaped strings. by Daniel Dunbar · 16 years ago
- 316b4a0 Drop the raw_ostream required buffer size to 1. by Daniel Dunbar · 16 years ago
- e592923 Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn't by Dan Gohman · 16 years ago
- 61a8796 Make LLVM command-line tools overwrite their output files without -f. by Dan Gohman · 16 years ago
- c9fa051 Correctly account for the Spaces array nul terminator. Thanks Chris! by Dan Gohman · 16 years ago
- f88f52e raw_ostream::indent is used for PadToColumn which often prints more by Dan Gohman · 16 years ago
- 0ffe0e0 split raw_os_ostream out to its own header and implementation file. This by Chris Lattner · 16 years ago
- 06fa176 prune the #includes in raw_ostream.h by moving a by Chris Lattner · 16 years ago
- 47a309c Fix off-by-one in llvm::Format::print. by Daniel Dunbar · 16 years ago
- b451afb Fix windows build. by Benjamin Kramer · 16 years ago
- 9e6f1f1 Change raw_fd_ostream to take flags as an optional bitmask by Chris Lattner · 16 years ago
- e6db2c3 add a raw_ostream::indent method, to be used like: by Chris Lattner · 16 years ago
- e813cba Change raw_svector_ostream to reserve the input buffer if necessary, Ted was by Daniel Dunbar · 16 years ago
- b090bf4 Switch raw_svector_ostream to use the vector as the ostream buffer. by Daniel Dunbar · 16 years ago
- 465de3e Speculatively revert r79375, which may be breaking bootstrap, although in a by Daniel Dunbar · 16 years ago
- 0cf1686 raw_ostream: Simplify write(unsigned char) to match write(const char*, unsigned). by Daniel Dunbar · 16 years ago
- 835da36 raw_ostream: Remove pointless redefinitions of tell(). by Daniel Dunbar · 16 years ago
- 317a6cd raw_ostream: Add the capability for subclasses to manually install an external by Daniel Dunbar · 16 years ago
- bc96fe7 Speed up raw_ostream::<<(unsigned long long) for 32-bit systems by doing most by Daniel Dunbar · 16 years ago
- 23f90c1 Fix a bug in raw_ostream::write(char) introduced by the change to by Dan Gohman · 16 years ago
- d882f4b Revert r78924, disabling buffering defeats all the fast paths in raw_ostream. by Daniel Dunbar · 16 years ago
- b20757b Mingw also doesn't have st_blksize. by Dan Gohman · 16 years ago
- 1771022 Always check to see if raw_fd_ostream's file descriptor is attached to by Dan Gohman · 16 years ago
- 4af229e When standard output is a terminal, set outs() to be unbuffered, to by Dan Gohman · 16 years ago
- c04a00a Fix a compiler warning about comparing signed with unsigned. by Dan Gohman · 16 years ago
- 9820555 Add an assert to check copy_to_buffer's precondition. by Dan Gohman · 16 years ago
- 854ea3c Set raw_os_ostream, raw_string_ostream, and raw_svector_ostream to be by Dan Gohman · 16 years ago
- 84487b9 Add support to raw_ostream for sizing the buffer according to the by Dan Gohman · 16 years ago
- 54401d4 Move SetBufferSize and SetUnbuffered out of line. by Dan Gohman · 16 years ago
- 52022c2 Fix the buffer handling logic so that write_impl is always called with by Dan Gohman · 16 years ago
- 6c9629b Add raw_ostream::write_hex by Daniel Dunbar · 16 years ago
- 59a60c5 Perform simplification noticed by Reid. by Daniel Dunbar · 16 years ago
- a94f58a raw_ostream: Follow the 32-bit path when printing "small" decimal numbers. by Daniel Dunbar · 16 years ago
- 4b66b47 Make raw_null_ostream flush its buffer in its destructor, so that by Dan Gohman · 16 years ago
- 1b76329 Add an assertion check to raw_ostream's destructor to verify by Dan Gohman · 16 years ago
- 95a551a Add raw_null_ostream and llvm::nulls(), a raw_ostream that discards output. by Daniel Dunbar · 16 years ago
- f199ad6 Use size_t. by Dan Gohman · 16 years ago
- 58fcef9 Change raw_ostream so that it doesn't call llvm_report_error by Dan Gohman · 16 years ago
- 607818a Add a Force option to raw_fd_ostream to specify whether opening by Dan Gohman · 16 years ago
- 213e87b Check for errors on close(2) too. And lseek(2). by Dan Gohman · 16 years ago
- 33fb640 Use 0664 instead of 0644 for the default open mode. This is by Dan Gohman · 16 years ago
- dcb50b9 Detect write failures on raw_fd_ostream. by Daniel Dunbar · 16 years ago
- a31f96c by David Greene · 16 years ago
- c97b778b by David Greene · 16 years ago
- ab11a81 by David Greene · 16 years ago
- 9b5a47f Add support for outputting ANSI colors to raw_fd_ostream. by Torok Edwin · 17 years ago
- b231e57 Make all raw_ostreams support the tell() function. by Douglas Gregor · 17 years ago
- 437b8a5 Add BUILTIN_EXPECT Support/Compiler macro. by Daniel Dunbar · 17 years ago
- 64fa386 raw_ostream: Put all exceptional conditions in raw_ostream::write by Daniel Dunbar · 17 years ago
- 2d603da raw_ostream: Rework implementation of unbuffered streams so outputting by Daniel Dunbar · 17 years ago
- db7a36c raw_ostream: Replace flush_impl with write_impl, which takes data to by Daniel Dunbar · 17 years ago
- d24535f raw_ostream: Lift out flush_nonempty. by Daniel Dunbar · 17 years ago
- 8786218 Make raw_ostream::operator<<(const void *) fast; it doesn't matter but by Daniel Dunbar · 17 years ago
- 7a9bb9e Add slow path for single character write, and use exclusively for by Daniel Dunbar · 17 years ago
- 3da6a70 PR3478: raw_ostream should not buffer stderr by Daniel Dunbar · 17 years ago
- a266992 Add method raw_fd_ostream::seek() for random access within a file. by Ted Kremenek · 17 years ago
- 123a35a Have raw_fd_ostream keep track of the position in the file to make tell() go faster by not requiring a flush(). by Ted Kremenek · 17 years ago