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