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