Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 1 | //===--- raw_ostream.cpp - Implement the raw_ostream classes --------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This implements support for bulk buffered stream output. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/STLExtras.h" |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/SmallVector.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/StringExtras.h" |
Chris Lattner | d564f29 | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 18 | #include "llvm/Config/config.h" |
Daniel Dunbar | 437b8a5 | 2009-03-17 21:15:18 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Compiler.h" |
Daniel Dunbar | dcb50b9 | 2009-07-15 08:11:46 +0000 | [diff] [blame] | 20 | #include "llvm/Support/ErrorHandling.h" |
Rafael Espindola | 6d35481 | 2013-07-16 19:44:17 +0000 | [diff] [blame] | 21 | #include "llvm/Support/FileSystem.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Format.h" |
| 23 | #include "llvm/Support/Process.h" |
| 24 | #include "llvm/Support/Program.h" |
Benjamin Kramer | ef14f80 | 2010-01-29 15:19:06 +0000 | [diff] [blame] | 25 | #include <cctype> |
Benjamin Kramer | ce84a25 | 2010-05-05 15:17:47 +0000 | [diff] [blame] | 26 | #include <cerrno> |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 27 | #include <sys/stat.h> |
Rafael Espindola | a6e9c3e | 2014-06-12 17:38:55 +0000 | [diff] [blame] | 28 | #include <system_error> |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 29 | |
NAKAMURA Takumi | 212c80a | 2013-07-17 02:21:10 +0000 | [diff] [blame] | 30 | // <fcntl.h> may provide O_BINARY. |
| 31 | #if defined(HAVE_FCNTL_H) |
| 32 | # include <fcntl.h> |
| 33 | #endif |
| 34 | |
Chris Lattner | d564f29 | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 35 | #if defined(HAVE_UNISTD_H) |
| 36 | # include <unistd.h> |
| 37 | #endif |
Daniel Dunbar | 4fed887 | 2011-02-03 03:32:32 +0000 | [diff] [blame] | 38 | #if defined(HAVE_SYS_UIO_H) && defined(HAVE_WRITEV) |
| 39 | # include <sys/uio.h> |
| 40 | #endif |
Argyrios Kyrtzidis | b97ff82 | 2008-08-17 09:25:21 +0000 | [diff] [blame] | 41 | |
NAKAMURA Takumi | fe84f39 | 2010-10-19 01:21:55 +0000 | [diff] [blame] | 42 | #if defined(__CYGWIN__) |
| 43 | #include <io.h> |
| 44 | #endif |
| 45 | |
Argyrios Kyrtzidis | b97ff82 | 2008-08-17 09:25:21 +0000 | [diff] [blame] | 46 | #if defined(_MSC_VER) |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 47 | #include <io.h> |
Owen Anderson | 9371964 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 48 | #ifndef STDIN_FILENO |
| 49 | # define STDIN_FILENO 0 |
| 50 | #endif |
| 51 | #ifndef STDOUT_FILENO |
| 52 | # define STDOUT_FILENO 1 |
| 53 | #endif |
| 54 | #ifndef STDERR_FILENO |
| 55 | # define STDERR_FILENO 2 |
| 56 | #endif |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 57 | #endif |
| 58 | |
Chris Lattner | d564f29 | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 59 | using namespace llvm; |
| 60 | |
Dan Gohman | 58fcef9 | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 61 | raw_ostream::~raw_ostream() { |
Dan Gohman | 1b76329 | 2009-07-27 20:49:44 +0000 | [diff] [blame] | 62 | // raw_ostream's subclasses should take care to flush the buffer |
| 63 | // in their destructors. |
| 64 | assert(OutBufCur == OutBufStart && |
| 65 | "raw_ostream destructor called with non-empty buffer!"); |
| 66 | |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 67 | if (BufferMode == InternalBuffer) |
| 68 | delete [] OutBufStart; |
Dan Gohman | 58fcef9 | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 69 | } |
Chris Lattner | d564f29 | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 70 | |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 71 | // An out of line virtual method to provide a home for the class vtable. |
| 72 | void raw_ostream::handle() {} |
| 73 | |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 74 | size_t raw_ostream::preferred_buffer_size() const { |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 75 | // BUFSIZ is intended to be a reasonable default. |
| 76 | return BUFSIZ; |
| 77 | } |
| 78 | |
| 79 | void raw_ostream::SetBuffered() { |
| 80 | // Ask the subclass to determine an appropriate buffer size. |
Dan Gohman | 1771022 | 2009-08-15 02:05:19 +0000 | [diff] [blame] | 81 | if (size_t Size = preferred_buffer_size()) |
| 82 | SetBufferSize(Size); |
| 83 | else |
| 84 | // It may return 0, meaning this stream should be unbuffered. |
| 85 | SetUnbuffered(); |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 88 | void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size, |
Nick Lewycky | 7bfd86d | 2011-08-28 03:30:02 +0000 | [diff] [blame] | 89 | BufferKind Mode) { |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 90 | assert(((Mode == Unbuffered && !BufferStart && Size == 0) || |
| 91 | (Mode != Unbuffered && BufferStart && Size != 0)) && |
Daniel Dunbar | 316b4a0 | 2009-09-15 20:31:46 +0000 | [diff] [blame] | 92 | "stream must be unbuffered or have at least one byte"); |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 93 | // Make sure the current buffer is free of content (we can't flush here; the |
| 94 | // child buffer management logic will be in write_impl). |
| 95 | assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!"); |
Dan Gohman | 54401d4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 96 | |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 97 | if (BufferMode == InternalBuffer) |
| 98 | delete [] OutBufStart; |
| 99 | OutBufStart = BufferStart; |
Dan Gohman | 54401d4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 100 | OutBufEnd = OutBufStart+Size; |
| 101 | OutBufCur = OutBufStart; |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 102 | BufferMode = Mode; |
Daniel Dunbar | b090bf4 | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 103 | |
| 104 | assert(OutBufStart <= OutBufEnd && "Invalid size!"); |
Dan Gohman | 54401d4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 105 | } |
| 106 | |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 107 | raw_ostream &raw_ostream::operator<<(unsigned long N) { |
| 108 | // Zero is a special case. |
| 109 | if (N == 0) |
| 110 | return *this << '0'; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 111 | |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 112 | char NumberBuffer[20]; |
| 113 | char *EndPtr = NumberBuffer+sizeof(NumberBuffer); |
| 114 | char *CurPtr = EndPtr; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 115 | |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 116 | while (N) { |
| 117 | *--CurPtr = '0' + char(N % 10); |
| 118 | N /= 10; |
| 119 | } |
| 120 | return write(CurPtr, EndPtr-CurPtr); |
| 121 | } |
| 122 | |
| 123 | raw_ostream &raw_ostream::operator<<(long N) { |
| 124 | if (N < 0) { |
Daniel Dunbar | 7a9bb9e | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 125 | *this << '-'; |
Eli Friedman | 53ba208 | 2011-10-13 22:49:56 +0000 | [diff] [blame] | 126 | // Avoid undefined behavior on LONG_MIN with a cast. |
| 127 | N = -(unsigned long)N; |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 128 | } |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 129 | |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 130 | return this->operator<<(static_cast<unsigned long>(N)); |
| 131 | } |
| 132 | |
| 133 | raw_ostream &raw_ostream::operator<<(unsigned long long N) { |
Daniel Dunbar | 465de3e | 2009-08-19 16:25:25 +0000 | [diff] [blame] | 134 | // Output using 32-bit div/mod when possible. |
Daniel Dunbar | a94f58a | 2009-07-29 06:45:14 +0000 | [diff] [blame] | 135 | if (N == static_cast<unsigned long>(N)) |
| 136 | return this->operator<<(static_cast<unsigned long>(N)); |
| 137 | |
Daniel Dunbar | 465de3e | 2009-08-19 16:25:25 +0000 | [diff] [blame] | 138 | char NumberBuffer[20]; |
| 139 | char *EndPtr = NumberBuffer+sizeof(NumberBuffer); |
| 140 | char *CurPtr = EndPtr; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 141 | |
Daniel Dunbar | 465de3e | 2009-08-19 16:25:25 +0000 | [diff] [blame] | 142 | while (N) { |
| 143 | *--CurPtr = '0' + char(N % 10); |
| 144 | N /= 10; |
| 145 | } |
| 146 | return write(CurPtr, EndPtr-CurPtr); |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | raw_ostream &raw_ostream::operator<<(long long N) { |
Chris Lattner | 3db3bb0 | 2010-08-03 16:41:24 +0000 | [diff] [blame] | 150 | if (N < 0) { |
Daniel Dunbar | 7a9bb9e | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 151 | *this << '-'; |
Chris Lattner | 3db3bb0 | 2010-08-03 16:41:24 +0000 | [diff] [blame] | 152 | // Avoid undefined behavior on INT64_MIN with a cast. |
| 153 | N = -(unsigned long long)N; |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 154 | } |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 155 | |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 156 | return this->operator<<(static_cast<unsigned long long>(N)); |
| 157 | } |
| 158 | |
Daniel Dunbar | 6c9629b | 2009-07-30 18:21:23 +0000 | [diff] [blame] | 159 | raw_ostream &raw_ostream::write_hex(unsigned long long N) { |
Daniel Dunbar | 8786218 | 2009-03-16 22:08:44 +0000 | [diff] [blame] | 160 | // Zero is a special case. |
| 161 | if (N == 0) |
| 162 | return *this << '0'; |
| 163 | |
| 164 | char NumberBuffer[20]; |
| 165 | char *EndPtr = NumberBuffer+sizeof(NumberBuffer); |
| 166 | char *CurPtr = EndPtr; |
| 167 | |
| 168 | while (N) { |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 169 | uintptr_t x = N % 16; |
Daniel Dunbar | 8786218 | 2009-03-16 22:08:44 +0000 | [diff] [blame] | 170 | *--CurPtr = (x < 10 ? '0' + x : 'a' + x - 10); |
| 171 | N /= 16; |
| 172 | } |
| 173 | |
| 174 | return write(CurPtr, EndPtr-CurPtr); |
Chris Lattner | 0c19df4 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Daniel Dunbar | 65dc891 | 2010-11-27 07:59:50 +0000 | [diff] [blame] | 177 | raw_ostream &raw_ostream::write_escaped(StringRef Str, |
| 178 | bool UseHexEscapes) { |
Daniel Dunbar | 4108c43 | 2009-10-17 20:43:08 +0000 | [diff] [blame] | 179 | for (unsigned i = 0, e = Str.size(); i != e; ++i) { |
| 180 | unsigned char c = Str[i]; |
| 181 | |
| 182 | switch (c) { |
| 183 | case '\\': |
| 184 | *this << '\\' << '\\'; |
| 185 | break; |
| 186 | case '\t': |
| 187 | *this << '\\' << 't'; |
| 188 | break; |
| 189 | case '\n': |
| 190 | *this << '\\' << 'n'; |
| 191 | break; |
| 192 | case '"': |
| 193 | *this << '\\' << '"'; |
| 194 | break; |
| 195 | default: |
| 196 | if (std::isprint(c)) { |
| 197 | *this << c; |
| 198 | break; |
| 199 | } |
| 200 | |
Daniel Dunbar | 65dc891 | 2010-11-27 07:59:50 +0000 | [diff] [blame] | 201 | // Write out the escaped representation. |
| 202 | if (UseHexEscapes) { |
| 203 | *this << '\\' << 'x'; |
| 204 | *this << hexdigit((c >> 4 & 0xF)); |
| 205 | *this << hexdigit((c >> 0) & 0xF); |
| 206 | } else { |
| 207 | // Always use a full 3-character octal escape. |
| 208 | *this << '\\'; |
| 209 | *this << char('0' + ((c >> 6) & 7)); |
| 210 | *this << char('0' + ((c >> 3) & 7)); |
| 211 | *this << char('0' + ((c >> 0) & 7)); |
| 212 | } |
Daniel Dunbar | 4108c43 | 2009-10-17 20:43:08 +0000 | [diff] [blame] | 213 | } |
| 214 | } |
| 215 | |
| 216 | return *this; |
| 217 | } |
| 218 | |
Daniel Dunbar | 6c9629b | 2009-07-30 18:21:23 +0000 | [diff] [blame] | 219 | raw_ostream &raw_ostream::operator<<(const void *P) { |
| 220 | *this << '0' << 'x'; |
| 221 | |
| 222 | return write_hex((uintptr_t) P); |
| 223 | } |
| 224 | |
Chris Lattner | 06fa176 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 225 | raw_ostream &raw_ostream::operator<<(double N) { |
NAKAMURA Takumi | bac0d76 | 2011-03-18 09:30:10 +0000 | [diff] [blame] | 226 | #ifdef _WIN32 |
| 227 | // On MSVCRT and compatible, output of %e is incompatible to Posix |
| 228 | // by default. Number of exponent digits should be at least 2. "%+03d" |
| 229 | // FIXME: Implement our formatter to here or Support/Format.h! |
NAKAMURA Takumi | 79addb8 | 2014-01-12 14:44:46 +0000 | [diff] [blame] | 230 | #if __cplusplus >= 201103L && defined(__MINGW32__) |
| 231 | // FIXME: It should be generic to C++11. |
| 232 | if (N == 0.0 && std::signbit(N)) |
| 233 | return *this << "-0.000000e+00"; |
| 234 | #else |
NAKAMURA Takumi | bac0d76 | 2011-03-18 09:30:10 +0000 | [diff] [blame] | 235 | int fpcl = _fpclass(N); |
| 236 | |
| 237 | // negative zero |
| 238 | if (fpcl == _FPCLASS_NZ) |
| 239 | return *this << "-0.000000e+00"; |
NAKAMURA Takumi | 79addb8 | 2014-01-12 14:44:46 +0000 | [diff] [blame] | 240 | #endif |
NAKAMURA Takumi | bac0d76 | 2011-03-18 09:30:10 +0000 | [diff] [blame] | 241 | |
| 242 | char buf[16]; |
| 243 | unsigned len; |
| 244 | len = snprintf(buf, sizeof(buf), "%e", N); |
| 245 | if (len <= sizeof(buf) - 2) { |
| 246 | if (len >= 5 && buf[len - 5] == 'e' && buf[len - 3] == '0') { |
| 247 | int cs = buf[len - 4]; |
| 248 | if (cs == '+' || cs == '-') { |
| 249 | int c1 = buf[len - 2]; |
| 250 | int c0 = buf[len - 1]; |
Guy Benyei | 83c74e9 | 2013-02-12 21:21:59 +0000 | [diff] [blame] | 251 | if (isdigit(static_cast<unsigned char>(c1)) && |
| 252 | isdigit(static_cast<unsigned char>(c0))) { |
NAKAMURA Takumi | bac0d76 | 2011-03-18 09:30:10 +0000 | [diff] [blame] | 253 | // Trim leading '0': "...e+012" -> "...e+12\0" |
| 254 | buf[len - 3] = c1; |
| 255 | buf[len - 2] = c0; |
| 256 | buf[--len] = 0; |
| 257 | } |
| 258 | } |
| 259 | } |
| 260 | return this->operator<<(buf); |
| 261 | } |
| 262 | #endif |
Benjamin Kramer | 6bee24a | 2010-01-29 14:40:33 +0000 | [diff] [blame] | 263 | return this->operator<<(format("%e", N)); |
Chris Lattner | 06fa176 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | |
| 267 | |
Daniel Dunbar | d24535f | 2009-03-16 22:55:06 +0000 | [diff] [blame] | 268 | void raw_ostream::flush_nonempty() { |
| 269 | assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty."); |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 270 | size_t Length = OutBufCur - OutBufStart; |
| 271 | OutBufCur = OutBufStart; |
| 272 | write_impl(OutBufStart, Length); |
Daniel Dunbar | d24535f | 2009-03-16 22:55:06 +0000 | [diff] [blame] | 273 | } |
| 274 | |
Daniel Dunbar | 7a9bb9e | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 275 | raw_ostream &raw_ostream::write(unsigned char C) { |
Daniel Dunbar | 64fa386 | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 276 | // Group exceptional cases into a single branch. |
Benjamin Kramer | bd7f8d0 | 2012-08-29 22:57:00 +0000 | [diff] [blame] | 277 | if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) { |
| 278 | if (LLVM_UNLIKELY(!OutBufStart)) { |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 279 | if (BufferMode == Unbuffered) { |
Dan Gohman | 23f90c1 | 2009-08-18 20:09:59 +0000 | [diff] [blame] | 280 | write_impl(reinterpret_cast<char*>(&C), 1); |
| 281 | return *this; |
| 282 | } |
Daniel Dunbar | 0cf1686 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 283 | // Set up a buffer and start over. |
| 284 | SetBuffered(); |
| 285 | return write(C); |
Dan Gohman | 23f90c1 | 2009-08-18 20:09:59 +0000 | [diff] [blame] | 286 | } |
Daniel Dunbar | 0cf1686 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 287 | |
| 288 | flush_nonempty(); |
Daniel Dunbar | 2d603da | 2009-03-17 01:13:35 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Daniel Dunbar | 7a9bb9e | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 291 | *OutBufCur++ = C; |
Daniel Dunbar | 8786218 | 2009-03-16 22:08:44 +0000 | [diff] [blame] | 292 | return *this; |
Daniel Dunbar | 7a9bb9e | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 293 | } |
Chris Lattner | 0c19df4 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 294 | |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 295 | raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) { |
Daniel Dunbar | 64fa386 | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 296 | // Group exceptional cases into a single branch. |
Benjamin Kramer | bd7f8d0 | 2012-08-29 22:57:00 +0000 | [diff] [blame] | 297 | if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) { |
| 298 | if (LLVM_UNLIKELY(!OutBufStart)) { |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 299 | if (BufferMode == Unbuffered) { |
Dan Gohman | 52022c2 | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 300 | write_impl(Ptr, Size); |
| 301 | return *this; |
| 302 | } |
| 303 | // Set up a buffer and start over. |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 304 | SetBuffered(); |
Dan Gohman | 52022c2 | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 305 | return write(Ptr, Size); |
| 306 | } |
Daniel Dunbar | 0cf1686 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 307 | |
Benjamin Kramer | dfb0ad3 | 2011-03-04 19:49:30 +0000 | [diff] [blame] | 308 | size_t NumBytes = OutBufEnd - OutBufCur; |
| 309 | |
Benjamin Kramer | acf0842 | 2011-03-04 18:18:16 +0000 | [diff] [blame] | 310 | // If the buffer is empty at this point we have a string that is larger |
Benjamin Kramer | dfb0ad3 | 2011-03-04 19:49:30 +0000 | [diff] [blame] | 311 | // than the buffer. Directly write the chunk that is a multiple of the |
| 312 | // preferred buffer size and put the remainder in the buffer. |
Benjamin Kramer | bd7f8d0 | 2012-08-29 22:57:00 +0000 | [diff] [blame] | 313 | if (LLVM_UNLIKELY(OutBufCur == OutBufStart)) { |
Benjamin Kramer | dfb0ad3 | 2011-03-04 19:49:30 +0000 | [diff] [blame] | 314 | size_t BytesToWrite = Size - (Size % NumBytes); |
| 315 | write_impl(Ptr, BytesToWrite); |
Matt Beaumont-Gay | a182be8 | 2013-03-12 23:55:24 +0000 | [diff] [blame] | 316 | size_t BytesRemaining = Size - BytesToWrite; |
| 317 | if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) { |
| 318 | // Too much left over to copy into our buffer. |
| 319 | return write(Ptr + BytesToWrite, BytesRemaining); |
| 320 | } |
| 321 | copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); |
Benjamin Kramer | acf0842 | 2011-03-04 18:18:16 +0000 | [diff] [blame] | 322 | return *this; |
| 323 | } |
| 324 | |
| 325 | // We don't have enough space in the buffer to fit the string in. Insert as |
| 326 | // much as possible, flush and start over with the remainder. |
Benjamin Kramer | acf0842 | 2011-03-04 18:18:16 +0000 | [diff] [blame] | 327 | copy_to_buffer(Ptr, NumBytes); |
| 328 | flush_nonempty(); |
| 329 | return write(Ptr + NumBytes, Size - NumBytes); |
Daniel Dunbar | 64fa386 | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 330 | } |
Dan Gohman | 52022c2 | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 331 | |
| 332 | copy_to_buffer(Ptr, Size); |
| 333 | |
| 334 | return *this; |
| 335 | } |
| 336 | |
| 337 | void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) { |
Dan Gohman | c04a00a | 2009-08-13 20:32:03 +0000 | [diff] [blame] | 338 | assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!"); |
Dan Gohman | 9820555 | 2009-08-13 18:38:15 +0000 | [diff] [blame] | 339 | |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 340 | // Handle short strings specially, memcpy isn't very good at very short |
| 341 | // strings. |
| 342 | switch (Size) { |
| 343 | case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH |
| 344 | case 3: OutBufCur[2] = Ptr[2]; // FALL THROUGH |
| 345 | case 2: OutBufCur[1] = Ptr[1]; // FALL THROUGH |
| 346 | case 1: OutBufCur[0] = Ptr[0]; // FALL THROUGH |
| 347 | case 0: break; |
| 348 | default: |
Dan Gohman | 52022c2 | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 349 | memcpy(OutBufCur, Ptr, Size); |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 350 | break; |
| 351 | } |
Daniel Dunbar | 3da6a70 | 2009-03-10 16:21:55 +0000 | [diff] [blame] | 352 | |
Dan Gohman | 52022c2 | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 353 | OutBufCur += Size; |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 354 | } |
| 355 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 356 | // Formatted output. |
| 357 | raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) { |
Daniel Dunbar | 64fa386 | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 358 | // If we have more than a few bytes left in our output buffer, try |
| 359 | // formatting directly onto its end. |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 360 | size_t NextBufferSize = 127; |
Daniel Dunbar | 47a309c | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 361 | size_t BufferBytesLeft = OutBufEnd - OutBufCur; |
| 362 | if (BufferBytesLeft > 3) { |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 363 | size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 364 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 365 | // Common case is that we have plenty of space. |
Daniel Dunbar | 47a309c | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 366 | if (BytesUsed <= BufferBytesLeft) { |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 367 | OutBufCur += BytesUsed; |
| 368 | return *this; |
| 369 | } |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 370 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 371 | // Otherwise, we overflowed and the return value tells us the size to try |
| 372 | // again with. |
| 373 | NextBufferSize = BytesUsed; |
| 374 | } |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 375 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 376 | // If we got here, we didn't have enough space in the output buffer for the |
| 377 | // string. Try printing into a SmallVector that is resized to have enough |
| 378 | // space. Iterate until we win. |
| 379 | SmallVector<char, 128> V; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 380 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 381 | while (1) { |
| 382 | V.resize(NextBufferSize); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 383 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 384 | // Try formatting into the SmallVector. |
Daniel Dunbar | 47a309c | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 385 | size_t BytesUsed = Fmt.print(V.data(), NextBufferSize); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 386 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 387 | // If BytesUsed fit into the vector, we win. |
Chris Lattner | 2bfc72e | 2008-10-26 19:20:47 +0000 | [diff] [blame] | 388 | if (BytesUsed <= NextBufferSize) |
Daniel Dunbar | 47a309c | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 389 | return write(V.data(), BytesUsed); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 390 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 391 | // Otherwise, try again with a new size. |
| 392 | assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?"); |
| 393 | NextBufferSize = BytesUsed; |
| 394 | } |
| 395 | } |
| 396 | |
Chris Lattner | e6db2c3 | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 397 | /// indent - Insert 'NumSpaces' spaces. |
| 398 | raw_ostream &raw_ostream::indent(unsigned NumSpaces) { |
Dan Gohman | f88f52e | 2009-08-24 04:13:01 +0000 | [diff] [blame] | 399 | static const char Spaces[] = " " |
| 400 | " " |
| 401 | " "; |
Chris Lattner | e6db2c3 | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 402 | |
| 403 | // Usually the indentation is small, handle it with a fastpath. |
Dan Gohman | c9fa051 | 2009-08-24 04:43:38 +0000 | [diff] [blame] | 404 | if (NumSpaces < array_lengthof(Spaces)) |
Chris Lattner | e6db2c3 | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 405 | return write(Spaces, NumSpaces); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 406 | |
Chris Lattner | e6db2c3 | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 407 | while (NumSpaces) { |
Dan Gohman | c9fa051 | 2009-08-24 04:43:38 +0000 | [diff] [blame] | 408 | unsigned NumToWrite = std::min(NumSpaces, |
| 409 | (unsigned)array_lengthof(Spaces)-1); |
Chris Lattner | e6db2c3 | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 410 | write(Spaces, NumToWrite); |
| 411 | NumSpaces -= NumToWrite; |
| 412 | } |
| 413 | return *this; |
| 414 | } |
| 415 | |
| 416 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 417 | //===----------------------------------------------------------------------===// |
| 418 | // Formatted Output |
| 419 | //===----------------------------------------------------------------------===// |
| 420 | |
| 421 | // Out of line virtual method. |
| 422 | void format_object_base::home() { |
| 423 | } |
| 424 | |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 425 | //===----------------------------------------------------------------------===// |
| 426 | // raw_fd_ostream |
| 427 | //===----------------------------------------------------------------------===// |
| 428 | |
Rafael Espindola | 3fd1e99 | 2014-08-25 18:16:47 +0000 | [diff] [blame^] | 429 | raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC, |
Rafael Espindola | 6d35481 | 2013-07-16 19:44:17 +0000 | [diff] [blame] | 430 | sys::fs::OpenFlags Flags) |
| 431 | : Error(false), UseAtomicWrites(false), pos(0) { |
Rafael Espindola | 3fd1e99 | 2014-08-25 18:16:47 +0000 | [diff] [blame^] | 432 | EC = std::error_code(); |
Dan Gohman | c825cee | 2010-08-18 22:26:19 +0000 | [diff] [blame] | 433 | // Handle "-" as stdout. Note that when we do this, we consider ourself |
| 434 | // the owner of stdout. This means that we can do things like close the |
| 435 | // file descriptor when we're done and set the "binary" flag globally. |
Rafael Espindola | 3fd1e99 | 2014-08-25 18:16:47 +0000 | [diff] [blame^] | 436 | if (Filename == "-") { |
Chris Lattner | d5bc068 | 2008-08-17 03:53:23 +0000 | [diff] [blame] | 437 | FD = STDOUT_FILENO; |
Daniel Dunbar | ed90e70 | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 438 | // If user requested binary then put stdout into binary mode if |
| 439 | // possible. |
Rafael Espindola | 90c7f1c | 2014-02-24 18:20:12 +0000 | [diff] [blame] | 440 | if (!(Flags & sys::fs::F_Text)) |
Rafael Espindola | cb2eca0 | 2013-06-12 20:58:35 +0000 | [diff] [blame] | 441 | sys::ChangeStdoutToBinary(); |
Dan Gohman | c825cee | 2010-08-18 22:26:19 +0000 | [diff] [blame] | 442 | // Close stdout when we're done, to detect any output errors. |
| 443 | ShouldClose = true; |
Chris Lattner | d5bc068 | 2008-08-17 03:53:23 +0000 | [diff] [blame] | 444 | return; |
| 445 | } |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 446 | |
Rafael Espindola | 3fd1e99 | 2014-08-25 18:16:47 +0000 | [diff] [blame^] | 447 | EC = sys::fs::openFileForWrite(Filename, FD, Flags); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 448 | |
Rafael Espindola | 6d35481 | 2013-07-16 19:44:17 +0000 | [diff] [blame] | 449 | if (EC) { |
Rafael Espindola | 6d35481 | 2013-07-16 19:44:17 +0000 | [diff] [blame] | 450 | ShouldClose = false; |
| 451 | return; |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 452 | } |
Dan Gohman | d351116 | 2010-05-06 02:06:20 +0000 | [diff] [blame] | 453 | |
| 454 | // Ok, we successfully opened the file, so it'll need to be closed. |
| 455 | ShouldClose = true; |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 456 | } |
| 457 | |
Francois Pichet | a3037c3 | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 458 | /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If |
| 459 | /// ShouldClose is true, this closes the file when the stream is destroyed. |
| 460 | raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) |
| 461 | : raw_ostream(unbuffered), FD(fd), |
Daniel Dunbar | 4fed887 | 2011-02-03 03:32:32 +0000 | [diff] [blame] | 462 | ShouldClose(shouldClose), Error(false), UseAtomicWrites(false) { |
Francois Pichet | a3037c3 | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 463 | #ifdef O_BINARY |
NAKAMURA Takumi | 4961f7a | 2014-01-12 16:14:24 +0000 | [diff] [blame] | 464 | // Setting STDOUT to binary mode is necessary in Win32 |
Francois Pichet | a3037c3 | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 465 | // to avoid undesirable linefeed conversion. |
NAKAMURA Takumi | 4961f7a | 2014-01-12 16:14:24 +0000 | [diff] [blame] | 466 | // Don't touch STDERR, or w*printf() (in assert()) would barf wide chars. |
| 467 | if (fd == STDOUT_FILENO) |
Francois Pichet | a3037c3 | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 468 | setmode(fd, O_BINARY); |
| 469 | #endif |
Michael J. Spencer | b747990 | 2011-01-17 15:53:12 +0000 | [diff] [blame] | 470 | |
| 471 | // Get the starting position. |
| 472 | off_t loc = ::lseek(FD, 0, SEEK_CUR); |
| 473 | if (loc == (off_t)-1) |
| 474 | pos = 0; |
| 475 | else |
| 476 | pos = static_cast<uint64_t>(loc); |
Francois Pichet | a3037c3 | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 477 | } |
| 478 | |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 479 | raw_fd_ostream::~raw_fd_ostream() { |
Dan Gohman | 38adfdd | 2010-08-20 16:34:20 +0000 | [diff] [blame] | 480 | if (FD >= 0) { |
| 481 | flush(); |
| 482 | if (ShouldClose) |
| 483 | while (::close(FD) != 0) |
| 484 | if (errno != EINTR) { |
| 485 | error_detected(); |
| 486 | break; |
| 487 | } |
| 488 | } |
| 489 | |
NAKAMURA Takumi | 76e68ea | 2011-03-16 02:53:39 +0000 | [diff] [blame] | 490 | #ifdef __MINGW32__ |
| 491 | // On mingw, global dtors should not call exit(). |
| 492 | // report_fatal_error() invokes exit(). We know report_fatal_error() |
| 493 | // might not write messages to stderr when any errors were detected |
| 494 | // on FD == 2. |
| 495 | if (FD == 2) return; |
| 496 | #endif |
| 497 | |
Dan Gohman | 38adfdd | 2010-08-20 16:34:20 +0000 | [diff] [blame] | 498 | // If there are any pending errors, report them now. Clients wishing |
| 499 | // to avoid report_fatal_error calls should check for errors with |
| 500 | // has_error() and clear the error flag with clear_error() before |
| 501 | // destructing raw_ostream objects which may have errors. |
| 502 | if (has_error()) |
Chad Rosier | 7ce810c | 2013-03-27 18:30:00 +0000 | [diff] [blame] | 503 | report_fatal_error("IO failure on output stream.", /*GenCrashDiag=*/false); |
Chris Lattner | ce3b2c3 | 2010-08-17 23:11:56 +0000 | [diff] [blame] | 504 | } |
Chris Lattner | 9e6f1f1 | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 505 | |
Dan Gohman | 44790e7 | 2010-08-18 01:34:52 +0000 | [diff] [blame] | 506 | |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 507 | void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) { |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 508 | assert(FD >= 0 && "File already closed."); |
Daniel Dunbar | db7a36c | 2009-03-16 23:29:31 +0000 | [diff] [blame] | 509 | pos += Size; |
Dan Gohman | ef969f3 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 510 | |
Benjamin Kramer | ce84a25 | 2010-05-05 15:17:47 +0000 | [diff] [blame] | 511 | do { |
Daniel Dunbar | 4fed887 | 2011-02-03 03:32:32 +0000 | [diff] [blame] | 512 | ssize_t ret; |
| 513 | |
| 514 | // Check whether we should attempt to use atomic writes. |
Benjamin Kramer | bd7f8d0 | 2012-08-29 22:57:00 +0000 | [diff] [blame] | 515 | if (LLVM_LIKELY(!UseAtomicWrites)) { |
Daniel Dunbar | 4fed887 | 2011-02-03 03:32:32 +0000 | [diff] [blame] | 516 | ret = ::write(FD, Ptr, Size); |
| 517 | } else { |
| 518 | // Use ::writev() where available. |
| 519 | #if defined(HAVE_WRITEV) |
Galina Kistanova | 7da6578 | 2012-07-12 20:45:36 +0000 | [diff] [blame] | 520 | const void *Addr = static_cast<const void *>(Ptr); |
| 521 | struct iovec IOV = {const_cast<void *>(Addr), Size }; |
Daniel Dunbar | 4fed887 | 2011-02-03 03:32:32 +0000 | [diff] [blame] | 522 | ret = ::writev(FD, &IOV, 1); |
| 523 | #else |
| 524 | ret = ::write(FD, Ptr, Size); |
| 525 | #endif |
| 526 | } |
Dan Gohman | ef969f3 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 527 | |
| 528 | if (ret < 0) { |
| 529 | // If it's a recoverable error, swallow it and retry the write. |
Dan Gohman | dea5310 | 2010-05-18 15:25:14 +0000 | [diff] [blame] | 530 | // |
| 531 | // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since |
| 532 | // raw_ostream isn't designed to do non-blocking I/O. However, some |
| 533 | // programs, such as old versions of bjam, have mistakenly used |
| 534 | // O_NONBLOCK. For compatibility, emulate blocking semantics by |
| 535 | // spinning until the write succeeds. If you don't want spinning, |
| 536 | // don't use O_NONBLOCK file descriptors with raw_ostream. |
Dan Gohman | d351116 | 2010-05-06 02:06:20 +0000 | [diff] [blame] | 537 | if (errno == EINTR || errno == EAGAIN |
| 538 | #ifdef EWOULDBLOCK |
| 539 | || errno == EWOULDBLOCK |
| 540 | #endif |
| 541 | ) |
Dan Gohman | ef969f3 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 542 | continue; |
| 543 | |
| 544 | // Otherwise it's a non-recoverable error. Note it and quit. |
| 545 | error_detected(); |
| 546 | break; |
| 547 | } |
| 548 | |
| 549 | // The write may have written some or all of the data. Update the |
| 550 | // size and buffer pointer to reflect the remainder that needs |
| 551 | // to be written. If there are no bytes left, we're done. |
| 552 | Ptr += ret; |
| 553 | Size -= ret; |
| 554 | } while (Size > 0); |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 555 | } |
| 556 | |
Dan Gohman | 44790e7 | 2010-08-18 01:34:52 +0000 | [diff] [blame] | 557 | void raw_fd_ostream::close() { |
| 558 | assert(ShouldClose); |
| 559 | ShouldClose = false; |
| 560 | flush(); |
| 561 | while (::close(FD) != 0) |
| 562 | if (errno != EINTR) { |
| 563 | error_detected(); |
| 564 | break; |
| 565 | } |
| 566 | FD = -1; |
| 567 | } |
| 568 | |
Ted Kremenek | a266992 | 2009-01-26 21:42:04 +0000 | [diff] [blame] | 569 | uint64_t raw_fd_ostream::seek(uint64_t off) { |
| 570 | flush(); |
Daniel Dunbar | dcb50b9 | 2009-07-15 08:11:46 +0000 | [diff] [blame] | 571 | pos = ::lseek(FD, off, SEEK_SET); |
Dan Gohman | 213e87b | 2009-07-15 16:43:01 +0000 | [diff] [blame] | 572 | if (pos != off) |
Dan Gohman | 58fcef9 | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 573 | error_detected(); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 574 | return pos; |
Ted Kremenek | a266992 | 2009-01-26 21:42:04 +0000 | [diff] [blame] | 575 | } |
| 576 | |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 577 | size_t raw_fd_ostream::preferred_buffer_size() const { |
Chris Lattner | ca97c92 | 2010-07-07 15:52:27 +0000 | [diff] [blame] | 578 | #if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__minix) |
Chris Lattner | c86cdc7 | 2010-04-09 20:45:04 +0000 | [diff] [blame] | 579 | // Windows and Minix have no st_blksize. |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 580 | assert(FD >= 0 && "File not yet open!"); |
| 581 | struct stat statbuf; |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 582 | if (fstat(FD, &statbuf) != 0) |
| 583 | return 0; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 584 | |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 585 | // If this is a terminal, don't use buffering. Line buffering |
| 586 | // would be a more traditional thing to do, but it's not worth |
| 587 | // the complexity. |
| 588 | if (S_ISCHR(statbuf.st_mode) && isatty(FD)) |
| 589 | return 0; |
| 590 | // Return the preferred block size. |
| 591 | return statbuf.st_blksize; |
Dan Gohman | feaeb36 | 2010-05-28 16:50:01 +0000 | [diff] [blame] | 592 | #else |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 593 | return raw_ostream::preferred_buffer_size(); |
Dan Gohman | feaeb36 | 2010-05-28 16:50:01 +0000 | [diff] [blame] | 594 | #endif |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 595 | } |
| 596 | |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 597 | raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold, |
| 598 | bool bg) { |
| 599 | if (sys::Process::ColorNeedsFlush()) |
| 600 | flush(); |
| 601 | const char *colorcode = |
| 602 | (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg) |
| 603 | : sys::Process::OutputColor(colors, bold, bg); |
| 604 | if (colorcode) { |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 605 | size_t len = strlen(colorcode); |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 606 | write(colorcode, len); |
| 607 | // don't account colors towards output characters |
| 608 | pos -= len; |
| 609 | } |
| 610 | return *this; |
| 611 | } |
| 612 | |
| 613 | raw_ostream &raw_fd_ostream::resetColor() { |
| 614 | if (sys::Process::ColorNeedsFlush()) |
| 615 | flush(); |
| 616 | const char *colorcode = sys::Process::ResetColor(); |
| 617 | if (colorcode) { |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 618 | size_t len = strlen(colorcode); |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 619 | write(colorcode, len); |
| 620 | // don't account colors towards output characters |
| 621 | pos -= len; |
| 622 | } |
| 623 | return *this; |
| 624 | } |
| 625 | |
Benjamin Kramer | 13d16f3 | 2012-04-16 08:56:50 +0000 | [diff] [blame] | 626 | raw_ostream &raw_fd_ostream::reverseColor() { |
| 627 | if (sys::Process::ColorNeedsFlush()) |
| 628 | flush(); |
| 629 | const char *colorcode = sys::Process::OutputReverse(); |
| 630 | if (colorcode) { |
| 631 | size_t len = strlen(colorcode); |
| 632 | write(colorcode, len); |
| 633 | // don't account colors towards output characters |
| 634 | pos -= len; |
| 635 | } |
| 636 | return *this; |
| 637 | } |
| 638 | |
Dan Gohman | e592923 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 639 | bool raw_fd_ostream::is_displayed() const { |
| 640 | return sys::Process::FileDescriptorIsDisplayed(FD); |
| 641 | } |
| 642 | |
Daniel Dunbar | 04b4583 | 2012-07-20 18:29:41 +0000 | [diff] [blame] | 643 | bool raw_fd_ostream::has_colors() const { |
| 644 | return sys::Process::FileDescriptorHasColors(FD); |
| 645 | } |
| 646 | |
Chris Lattner | d3723fc | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 647 | //===----------------------------------------------------------------------===// |
Dan Gohman | e9a4691 | 2010-08-20 16:44:56 +0000 | [diff] [blame] | 648 | // outs(), errs(), nulls() |
Chris Lattner | d3723fc | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 649 | //===----------------------------------------------------------------------===// |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 650 | |
Chris Lattner | d3723fc | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 651 | /// outs() - This returns a reference to a raw_ostream for standard output. |
| 652 | /// Use it like: outs() << "foo" << "bar"; |
Owen Anderson | 9371964 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 653 | raw_ostream &llvm::outs() { |
Dan Gohman | 443f2d6 | 2010-08-20 16:39:41 +0000 | [diff] [blame] | 654 | // Set buffer settings to model stdout behavior. |
Hans Wennborg | 0fc52d4 | 2014-07-17 18:33:44 +0000 | [diff] [blame] | 655 | // Delete the file descriptor when the program exits, forcing error |
Dan Gohman | e9a4691 | 2010-08-20 16:44:56 +0000 | [diff] [blame] | 656 | // detection. If you don't want this behavior, don't use outs(). |
| 657 | static raw_fd_ostream S(STDOUT_FILENO, true); |
Chris Lattner | d3723fc | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 658 | return S; |
| 659 | } |
| 660 | |
| 661 | /// errs() - This returns a reference to a raw_ostream for standard error. |
| 662 | /// Use it like: errs() << "foo" << "bar"; |
Owen Anderson | 9371964 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 663 | raw_ostream &llvm::errs() { |
Dan Gohman | 443f2d6 | 2010-08-20 16:39:41 +0000 | [diff] [blame] | 664 | // Set standard error to be unbuffered by default. |
| 665 | static raw_fd_ostream S(STDERR_FILENO, false, true); |
Chris Lattner | d3723fc | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 666 | return S; |
| 667 | } |
| 668 | |
Daniel Dunbar | 95a551a | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 669 | /// nulls() - This returns a reference to a raw_ostream which discards output. |
| 670 | raw_ostream &llvm::nulls() { |
| 671 | static raw_null_ostream S; |
| 672 | return S; |
| 673 | } |
| 674 | |
Douglas Gregor | b231e57 | 2009-04-20 07:34:17 +0000 | [diff] [blame] | 675 | |
Chris Lattner | 205af96 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 676 | //===----------------------------------------------------------------------===// |
| 677 | // raw_string_ostream |
| 678 | //===----------------------------------------------------------------------===// |
| 679 | |
Daniel Dunbar | d882f4b | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 680 | raw_string_ostream::~raw_string_ostream() { |
| 681 | flush(); |
| 682 | } |
| 683 | |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 684 | void raw_string_ostream::write_impl(const char *Ptr, size_t Size) { |
Daniel Dunbar | db7a36c | 2009-03-16 23:29:31 +0000 | [diff] [blame] | 685 | OS.append(Ptr, Size); |
Chris Lattner | 205af96 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | //===----------------------------------------------------------------------===// |
| 689 | // raw_svector_ostream |
| 690 | //===----------------------------------------------------------------------===// |
| 691 | |
Daniel Dunbar | b090bf4 | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 692 | // The raw_svector_ostream implementation uses the SmallVector itself as the |
| 693 | // buffer for the raw_ostream. We guarantee that the raw_ostream buffer is |
| 694 | // always pointing past the end of the vector, but within the vector |
| 695 | // capacity. This allows raw_ostream to write directly into the correct place, |
| 696 | // and we only need to set the vector size when the data is flushed. |
| 697 | |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 698 | raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { |
Daniel Dunbar | e813cba | 2009-08-19 18:40:58 +0000 | [diff] [blame] | 699 | // Set up the initial external buffer. We make sure that the buffer has at |
Daniel Dunbar | b090bf4 | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 700 | // least 128 bytes free; raw_ostream itself only requires 64, but we want to |
| 701 | // make sure that we don't grow the buffer unnecessarily on destruction (when |
| 702 | // the data is flushed). See the FIXME below. |
Daniel Dunbar | e813cba | 2009-08-19 18:40:58 +0000 | [diff] [blame] | 703 | OS.reserve(OS.size() + 128); |
Daniel Dunbar | b090bf4 | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 704 | SetBuffer(OS.end(), OS.capacity() - OS.size()); |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 705 | } |
| 706 | |
Daniel Dunbar | d882f4b | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 707 | raw_svector_ostream::~raw_svector_ostream() { |
Daniel Dunbar | b090bf4 | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 708 | // FIXME: Prevent resizing during this flush(). |
Daniel Dunbar | d882f4b | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 709 | flush(); |
| 710 | } |
| 711 | |
Chris Lattner | 1386a88 | 2010-01-22 21:16:10 +0000 | [diff] [blame] | 712 | /// resync - This is called when the SmallVector we're appending to is changed |
| 713 | /// outside of the raw_svector_ostream's control. It is only safe to do this |
| 714 | /// if the raw_svector_ostream has previously been flushed. |
| 715 | void raw_svector_ostream::resync() { |
| 716 | assert(GetNumBytesInBuffer() == 0 && "Didn't flush before mutating vector"); |
| 717 | |
| 718 | if (OS.capacity() - OS.size() < 64) |
| 719 | OS.reserve(OS.capacity() * 2); |
Chris Lattner | 8fa0e35 | 2010-01-22 19:17:48 +0000 | [diff] [blame] | 720 | SetBuffer(OS.end(), OS.capacity() - OS.size()); |
| 721 | } |
| 722 | |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 723 | void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) { |
Alp Toker | 48bbd06 | 2014-07-11 18:23:08 +0000 | [diff] [blame] | 724 | if (Ptr == OS.end()) { |
Alp Toker | bc4d1a3 | 2014-07-11 14:02:04 +0000 | [diff] [blame] | 725 | // Grow the buffer to include the scratch area without copying. |
Alp Toker | 48bbd06 | 2014-07-11 18:23:08 +0000 | [diff] [blame] | 726 | size_t NewSize = OS.size() + Size; |
Alp Toker | bc4d1a3 | 2014-07-11 14:02:04 +0000 | [diff] [blame] | 727 | assert(NewSize <= OS.capacity() && "Invalid write_impl() call!"); |
| 728 | OS.set_size(NewSize); |
Chris Lattner | 115158f | 2010-02-15 02:18:26 +0000 | [diff] [blame] | 729 | } else { |
Alp Toker | 48bbd06 | 2014-07-11 18:23:08 +0000 | [diff] [blame] | 730 | assert(!GetNumBytesInBuffer()); |
Alp Toker | bc4d1a3 | 2014-07-11 14:02:04 +0000 | [diff] [blame] | 731 | OS.append(Ptr, Ptr + Size); |
Chris Lattner | 115158f | 2010-02-15 02:18:26 +0000 | [diff] [blame] | 732 | } |
Daniel Dunbar | b090bf4 | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 733 | |
Alp Toker | 48bbd06 | 2014-07-11 18:23:08 +0000 | [diff] [blame] | 734 | OS.reserve(OS.size() + 64); |
Daniel Dunbar | b090bf4 | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 735 | SetBuffer(OS.end(), OS.capacity() - OS.size()); |
Chris Lattner | 205af96 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 736 | } |
| 737 | |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 738 | uint64_t raw_svector_ostream::current_pos() const { |
| 739 | return OS.size(); |
| 740 | } |
Douglas Gregor | b231e57 | 2009-04-20 07:34:17 +0000 | [diff] [blame] | 741 | |
Daniel Dunbar | e813cba | 2009-08-19 18:40:58 +0000 | [diff] [blame] | 742 | StringRef raw_svector_ostream::str() { |
| 743 | flush(); |
| 744 | return StringRef(OS.begin(), OS.size()); |
| 745 | } |
| 746 | |
Daniel Dunbar | 95a551a | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 747 | //===----------------------------------------------------------------------===// |
| 748 | // raw_null_ostream |
| 749 | //===----------------------------------------------------------------------===// |
| 750 | |
Dan Gohman | 4b66b47 | 2009-07-27 21:46:02 +0000 | [diff] [blame] | 751 | raw_null_ostream::~raw_null_ostream() { |
| 752 | #ifndef NDEBUG |
| 753 | // ~raw_ostream asserts that the buffer is empty. This isn't necessary |
| 754 | // with raw_null_ostream, but it's better to have raw_null_ostream follow |
| 755 | // the rules than to change the rules just for raw_null_ostream. |
| 756 | flush(); |
| 757 | #endif |
| 758 | } |
| 759 | |
Daniel Dunbar | 95a551a | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 760 | void raw_null_ostream::write_impl(const char *Ptr, size_t Size) { |
| 761 | } |
| 762 | |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 763 | uint64_t raw_null_ostream::current_pos() const { |
Daniel Dunbar | 95a551a | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 764 | return 0; |
| 765 | } |