Chris Lattner | 60d3962 | 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" |
Chris Lattner | 42f77ab | 2008-08-23 20:34:06 +0000 | [diff] [blame] | 15 | #include "llvm/Support/Format.h" |
Daniel Dunbar | 0d9eb9b | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 16 | #include "llvm/System/Program.h" |
Torok Edwin | e8ebb0f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 17 | #include "llvm/System/Process.h" |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | 969a46a | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 19 | #include "llvm/Config/config.h" |
Daniel Dunbar | b372c11 | 2009-03-17 21:15:18 +0000 | [diff] [blame] | 20 | #include "llvm/Support/Compiler.h" |
Daniel Dunbar | 579fb87 | 2009-07-15 08:11:46 +0000 | [diff] [blame] | 21 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | 61ee100 | 2009-08-24 04:13:01 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/STLExtras.h" |
Benjamin Kramer | 4f17eb8 | 2010-01-29 15:19:06 +0000 | [diff] [blame] | 23 | #include <cctype> |
Benjamin Kramer | 66760be | 2010-05-05 15:17:47 +0000 | [diff] [blame] | 24 | #include <cerrno> |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 25 | #include <sys/stat.h> |
| 26 | #include <sys/types.h> |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 27 | |
Chris Lattner | 969a46a | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 28 | #if defined(HAVE_UNISTD_H) |
| 29 | # include <unistd.h> |
| 30 | #endif |
| 31 | #if defined(HAVE_FCNTL_H) |
| 32 | # include <fcntl.h> |
| 33 | #endif |
Argyrios Kyrtzidis | b68dc36 | 2008-08-17 09:25:21 +0000 | [diff] [blame] | 34 | |
NAKAMURA Takumi | 1b5de0e | 2010-10-19 01:21:55 +0000 | [diff] [blame^] | 35 | #if defined(__CYGWIN__) |
| 36 | #include <io.h> |
| 37 | #endif |
| 38 | |
Argyrios Kyrtzidis | b68dc36 | 2008-08-17 09:25:21 +0000 | [diff] [blame] | 39 | #if defined(_MSC_VER) |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 40 | #include <io.h> |
Cedric Venet | a3f343f | 2008-08-24 11:56:40 +0000 | [diff] [blame] | 41 | #include <fcntl.h> |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 42 | #ifndef STDIN_FILENO |
| 43 | # define STDIN_FILENO 0 |
| 44 | #endif |
| 45 | #ifndef STDOUT_FILENO |
| 46 | # define STDOUT_FILENO 1 |
| 47 | #endif |
| 48 | #ifndef STDERR_FILENO |
| 49 | # define STDERR_FILENO 2 |
| 50 | #endif |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 51 | #endif |
| 52 | |
Chris Lattner | 969a46a | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 53 | using namespace llvm; |
| 54 | |
Dan Gohman | e87b2ab | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 55 | raw_ostream::~raw_ostream() { |
Dan Gohman | 9a31254 | 2009-07-27 20:49:44 +0000 | [diff] [blame] | 56 | // raw_ostream's subclasses should take care to flush the buffer |
| 57 | // in their destructors. |
| 58 | assert(OutBufCur == OutBufStart && |
| 59 | "raw_ostream destructor called with non-empty buffer!"); |
| 60 | |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 61 | if (BufferMode == InternalBuffer) |
| 62 | delete [] OutBufStart; |
Dan Gohman | e87b2ab | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 63 | } |
Chris Lattner | 969a46a | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 64 | |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 65 | // An out of line virtual method to provide a home for the class vtable. |
| 66 | void raw_ostream::handle() {} |
| 67 | |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 68 | size_t raw_ostream::preferred_buffer_size() const { |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 69 | // BUFSIZ is intended to be a reasonable default. |
| 70 | return BUFSIZ; |
| 71 | } |
| 72 | |
| 73 | void raw_ostream::SetBuffered() { |
| 74 | // Ask the subclass to determine an appropriate buffer size. |
Dan Gohman | d7be663 | 2009-08-15 02:05:19 +0000 | [diff] [blame] | 75 | if (size_t Size = preferred_buffer_size()) |
| 76 | SetBufferSize(Size); |
| 77 | else |
| 78 | // It may return 0, meaning this stream should be unbuffered. |
| 79 | SetUnbuffered(); |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 80 | } |
| 81 | |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 82 | void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size, |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 83 | BufferKind Mode) { |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 84 | assert(((Mode == Unbuffered && BufferStart == 0 && Size == 0) || |
Daniel Dunbar | c8213b7 | 2009-09-15 20:31:46 +0000 | [diff] [blame] | 85 | (Mode != Unbuffered && BufferStart && Size)) && |
| 86 | "stream must be unbuffered or have at least one byte"); |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 87 | // Make sure the current buffer is free of content (we can't flush here; the |
| 88 | // child buffer management logic will be in write_impl). |
| 89 | assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!"); |
Dan Gohman | 524dea4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 90 | |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 91 | if (BufferMode == InternalBuffer) |
| 92 | delete [] OutBufStart; |
| 93 | OutBufStart = BufferStart; |
Dan Gohman | 524dea4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 94 | OutBufEnd = OutBufStart+Size; |
| 95 | OutBufCur = OutBufStart; |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 96 | BufferMode = Mode; |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 97 | |
| 98 | assert(OutBufStart <= OutBufEnd && "Invalid size!"); |
Dan Gohman | 524dea4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 101 | raw_ostream &raw_ostream::operator<<(unsigned long N) { |
| 102 | // Zero is a special case. |
| 103 | if (N == 0) |
| 104 | return *this << '0'; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 105 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 106 | char NumberBuffer[20]; |
| 107 | char *EndPtr = NumberBuffer+sizeof(NumberBuffer); |
| 108 | char *CurPtr = EndPtr; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 109 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 110 | while (N) { |
| 111 | *--CurPtr = '0' + char(N % 10); |
| 112 | N /= 10; |
| 113 | } |
| 114 | return write(CurPtr, EndPtr-CurPtr); |
| 115 | } |
| 116 | |
| 117 | raw_ostream &raw_ostream::operator<<(long N) { |
| 118 | if (N < 0) { |
Daniel Dunbar | de75d7f | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 119 | *this << '-'; |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 120 | N = -N; |
| 121 | } |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 122 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 123 | return this->operator<<(static_cast<unsigned long>(N)); |
| 124 | } |
| 125 | |
| 126 | raw_ostream &raw_ostream::operator<<(unsigned long long N) { |
Daniel Dunbar | ecbd0bc | 2009-08-19 16:25:25 +0000 | [diff] [blame] | 127 | // Output using 32-bit div/mod when possible. |
Daniel Dunbar | 78a3dd8 | 2009-07-29 06:45:14 +0000 | [diff] [blame] | 128 | if (N == static_cast<unsigned long>(N)) |
| 129 | return this->operator<<(static_cast<unsigned long>(N)); |
| 130 | |
Daniel Dunbar | ecbd0bc | 2009-08-19 16:25:25 +0000 | [diff] [blame] | 131 | char NumberBuffer[20]; |
| 132 | char *EndPtr = NumberBuffer+sizeof(NumberBuffer); |
| 133 | char *CurPtr = EndPtr; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 134 | |
Daniel Dunbar | ecbd0bc | 2009-08-19 16:25:25 +0000 | [diff] [blame] | 135 | while (N) { |
| 136 | *--CurPtr = '0' + char(N % 10); |
| 137 | N /= 10; |
| 138 | } |
| 139 | return write(CurPtr, EndPtr-CurPtr); |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | raw_ostream &raw_ostream::operator<<(long long N) { |
Chris Lattner | e211cd8 | 2010-08-03 16:41:24 +0000 | [diff] [blame] | 143 | if (N < 0) { |
Daniel Dunbar | de75d7f | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 144 | *this << '-'; |
Chris Lattner | e211cd8 | 2010-08-03 16:41:24 +0000 | [diff] [blame] | 145 | // Avoid undefined behavior on INT64_MIN with a cast. |
| 146 | N = -(unsigned long long)N; |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 147 | } |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 148 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 149 | return this->operator<<(static_cast<unsigned long long>(N)); |
| 150 | } |
| 151 | |
Daniel Dunbar | 48018e0 | 2009-07-30 18:21:23 +0000 | [diff] [blame] | 152 | raw_ostream &raw_ostream::write_hex(unsigned long long N) { |
Daniel Dunbar | b451a0c | 2009-03-16 22:08:44 +0000 | [diff] [blame] | 153 | // Zero is a special case. |
| 154 | if (N == 0) |
| 155 | return *this << '0'; |
| 156 | |
| 157 | char NumberBuffer[20]; |
| 158 | char *EndPtr = NumberBuffer+sizeof(NumberBuffer); |
| 159 | char *CurPtr = EndPtr; |
| 160 | |
| 161 | while (N) { |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 162 | uintptr_t x = N % 16; |
Daniel Dunbar | b451a0c | 2009-03-16 22:08:44 +0000 | [diff] [blame] | 163 | *--CurPtr = (x < 10 ? '0' + x : 'a' + x - 10); |
| 164 | N /= 16; |
| 165 | } |
| 166 | |
| 167 | return write(CurPtr, EndPtr-CurPtr); |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 168 | } |
| 169 | |
Daniel Dunbar | 522b113 | 2009-10-17 20:43:08 +0000 | [diff] [blame] | 170 | raw_ostream &raw_ostream::write_escaped(StringRef Str) { |
| 171 | for (unsigned i = 0, e = Str.size(); i != e; ++i) { |
| 172 | unsigned char c = Str[i]; |
| 173 | |
| 174 | switch (c) { |
| 175 | case '\\': |
| 176 | *this << '\\' << '\\'; |
| 177 | break; |
| 178 | case '\t': |
| 179 | *this << '\\' << 't'; |
| 180 | break; |
| 181 | case '\n': |
| 182 | *this << '\\' << 'n'; |
| 183 | break; |
| 184 | case '"': |
| 185 | *this << '\\' << '"'; |
| 186 | break; |
| 187 | default: |
| 188 | if (std::isprint(c)) { |
| 189 | *this << c; |
| 190 | break; |
| 191 | } |
| 192 | |
| 193 | // Always expand to a 3-character octal escape. |
| 194 | *this << '\\'; |
| 195 | *this << char('0' + ((c >> 6) & 7)); |
| 196 | *this << char('0' + ((c >> 3) & 7)); |
| 197 | *this << char('0' + ((c >> 0) & 7)); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | return *this; |
| 202 | } |
| 203 | |
Daniel Dunbar | 48018e0 | 2009-07-30 18:21:23 +0000 | [diff] [blame] | 204 | raw_ostream &raw_ostream::operator<<(const void *P) { |
| 205 | *this << '0' << 'x'; |
| 206 | |
| 207 | return write_hex((uintptr_t) P); |
| 208 | } |
| 209 | |
Chris Lattner | 23132b1 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 210 | raw_ostream &raw_ostream::operator<<(double N) { |
Benjamin Kramer | f304ff6 | 2010-01-29 14:40:33 +0000 | [diff] [blame] | 211 | return this->operator<<(format("%e", N)); |
Chris Lattner | 23132b1 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | |
| 215 | |
Daniel Dunbar | cf2a2c6 | 2009-03-16 22:55:06 +0000 | [diff] [blame] | 216 | void raw_ostream::flush_nonempty() { |
| 217 | assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty."); |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 218 | size_t Length = OutBufCur - OutBufStart; |
| 219 | OutBufCur = OutBufStart; |
| 220 | write_impl(OutBufStart, Length); |
Daniel Dunbar | cf2a2c6 | 2009-03-16 22:55:06 +0000 | [diff] [blame] | 221 | } |
| 222 | |
Daniel Dunbar | de75d7f | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 223 | raw_ostream &raw_ostream::write(unsigned char C) { |
Daniel Dunbar | 262541b | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 224 | // Group exceptional cases into a single branch. |
Daniel Dunbar | ecc67e2 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 225 | if (BUILTIN_EXPECT(OutBufCur >= OutBufEnd, false)) { |
| 226 | if (BUILTIN_EXPECT(!OutBufStart, false)) { |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 227 | if (BufferMode == Unbuffered) { |
Dan Gohman | 3731604 | 2009-08-18 20:09:59 +0000 | [diff] [blame] | 228 | write_impl(reinterpret_cast<char*>(&C), 1); |
| 229 | return *this; |
| 230 | } |
Daniel Dunbar | ecc67e2 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 231 | // Set up a buffer and start over. |
| 232 | SetBuffered(); |
| 233 | return write(C); |
Dan Gohman | 3731604 | 2009-08-18 20:09:59 +0000 | [diff] [blame] | 234 | } |
Daniel Dunbar | ecc67e2 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 235 | |
| 236 | flush_nonempty(); |
Daniel Dunbar | d17d74b | 2009-03-17 01:13:35 +0000 | [diff] [blame] | 237 | } |
| 238 | |
Daniel Dunbar | de75d7f | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 239 | *OutBufCur++ = C; |
Daniel Dunbar | b451a0c | 2009-03-16 22:08:44 +0000 | [diff] [blame] | 240 | return *this; |
Daniel Dunbar | de75d7f | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 241 | } |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 242 | |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 243 | raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) { |
Daniel Dunbar | 262541b | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 244 | // Group exceptional cases into a single branch. |
Daniel Dunbar | b372c11 | 2009-03-17 21:15:18 +0000 | [diff] [blame] | 245 | if (BUILTIN_EXPECT(OutBufCur+Size > OutBufEnd, false)) { |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 246 | if (BUILTIN_EXPECT(!OutBufStart, false)) { |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 247 | if (BufferMode == Unbuffered) { |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 248 | write_impl(Ptr, Size); |
| 249 | return *this; |
| 250 | } |
| 251 | // Set up a buffer and start over. |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 252 | SetBuffered(); |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 253 | return write(Ptr, Size); |
| 254 | } |
Daniel Dunbar | ecc67e2 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 255 | |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 256 | // Write out the data in buffer-sized blocks until the remainder |
| 257 | // fits within the buffer. |
| 258 | do { |
| 259 | size_t NumBytes = OutBufEnd - OutBufCur; |
| 260 | copy_to_buffer(Ptr, NumBytes); |
Daniel Dunbar | 262541b | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 261 | flush_nonempty(); |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 262 | Ptr += NumBytes; |
| 263 | Size -= NumBytes; |
| 264 | } while (OutBufCur+Size > OutBufEnd); |
Daniel Dunbar | 262541b | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 265 | } |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 266 | |
| 267 | copy_to_buffer(Ptr, Size); |
| 268 | |
| 269 | return *this; |
| 270 | } |
| 271 | |
| 272 | void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) { |
Dan Gohman | c6126e8 | 2009-08-13 20:32:03 +0000 | [diff] [blame] | 273 | assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!"); |
Dan Gohman | 4e8e642 | 2009-08-13 18:38:15 +0000 | [diff] [blame] | 274 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 275 | // Handle short strings specially, memcpy isn't very good at very short |
| 276 | // strings. |
| 277 | switch (Size) { |
| 278 | case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH |
| 279 | case 3: OutBufCur[2] = Ptr[2]; // FALL THROUGH |
| 280 | case 2: OutBufCur[1] = Ptr[1]; // FALL THROUGH |
| 281 | case 1: OutBufCur[0] = Ptr[0]; // FALL THROUGH |
| 282 | case 0: break; |
| 283 | default: |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 284 | memcpy(OutBufCur, Ptr, Size); |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 285 | break; |
| 286 | } |
Daniel Dunbar | e77e434 | 2009-03-10 16:21:55 +0000 | [diff] [blame] | 287 | |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 288 | OutBufCur += Size; |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 291 | // Formatted output. |
| 292 | raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) { |
Daniel Dunbar | 262541b | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 293 | // If we have more than a few bytes left in our output buffer, try |
| 294 | // formatting directly onto its end. |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 295 | size_t NextBufferSize = 127; |
Daniel Dunbar | 9441cfe | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 296 | size_t BufferBytesLeft = OutBufEnd - OutBufCur; |
| 297 | if (BufferBytesLeft > 3) { |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 298 | size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 299 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 300 | // Common case is that we have plenty of space. |
Daniel Dunbar | 9441cfe | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 301 | if (BytesUsed <= BufferBytesLeft) { |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 302 | OutBufCur += BytesUsed; |
| 303 | return *this; |
| 304 | } |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 305 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 306 | // Otherwise, we overflowed and the return value tells us the size to try |
| 307 | // again with. |
| 308 | NextBufferSize = BytesUsed; |
| 309 | } |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 310 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 311 | // If we got here, we didn't have enough space in the output buffer for the |
| 312 | // string. Try printing into a SmallVector that is resized to have enough |
| 313 | // space. Iterate until we win. |
| 314 | SmallVector<char, 128> V; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 315 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 316 | while (1) { |
| 317 | V.resize(NextBufferSize); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 318 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 319 | // Try formatting into the SmallVector. |
Daniel Dunbar | 9441cfe | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 320 | size_t BytesUsed = Fmt.print(V.data(), NextBufferSize); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 321 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 322 | // If BytesUsed fit into the vector, we win. |
Chris Lattner | f61ca1e | 2008-10-26 19:20:47 +0000 | [diff] [blame] | 323 | if (BytesUsed <= NextBufferSize) |
Daniel Dunbar | 9441cfe | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 324 | return write(V.data(), BytesUsed); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 325 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 326 | // Otherwise, try again with a new size. |
| 327 | assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?"); |
| 328 | NextBufferSize = BytesUsed; |
| 329 | } |
| 330 | } |
| 331 | |
Chris Lattner | c5a227d | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 332 | /// indent - Insert 'NumSpaces' spaces. |
| 333 | raw_ostream &raw_ostream::indent(unsigned NumSpaces) { |
Dan Gohman | 61ee100 | 2009-08-24 04:13:01 +0000 | [diff] [blame] | 334 | static const char Spaces[] = " " |
| 335 | " " |
| 336 | " "; |
Chris Lattner | c5a227d | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 337 | |
| 338 | // Usually the indentation is small, handle it with a fastpath. |
Dan Gohman | cb1308b | 2009-08-24 04:43:38 +0000 | [diff] [blame] | 339 | if (NumSpaces < array_lengthof(Spaces)) |
Chris Lattner | c5a227d | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 340 | return write(Spaces, NumSpaces); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 341 | |
Chris Lattner | c5a227d | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 342 | while (NumSpaces) { |
Dan Gohman | cb1308b | 2009-08-24 04:43:38 +0000 | [diff] [blame] | 343 | unsigned NumToWrite = std::min(NumSpaces, |
| 344 | (unsigned)array_lengthof(Spaces)-1); |
Chris Lattner | c5a227d | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 345 | write(Spaces, NumToWrite); |
| 346 | NumSpaces -= NumToWrite; |
| 347 | } |
| 348 | return *this; |
| 349 | } |
| 350 | |
| 351 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 352 | //===----------------------------------------------------------------------===// |
| 353 | // Formatted Output |
| 354 | //===----------------------------------------------------------------------===// |
| 355 | |
| 356 | // Out of line virtual method. |
| 357 | void format_object_base::home() { |
| 358 | } |
| 359 | |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 360 | //===----------------------------------------------------------------------===// |
| 361 | // raw_fd_ostream |
| 362 | //===----------------------------------------------------------------------===// |
| 363 | |
Daniel Dunbar | 48534b3 | 2008-10-21 19:53:10 +0000 | [diff] [blame] | 364 | /// raw_fd_ostream - Open the specified file for writing. If an error |
| 365 | /// occurs, information about the error is put into ErrorInfo, and the |
| 366 | /// stream should be immediately destroyed; the string will be empty |
| 367 | /// if no error occurred. |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 368 | raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo, |
Dan Gohman | 8df0e01 | 2010-08-20 16:34:20 +0000 | [diff] [blame] | 369 | unsigned Flags) : Error(false), pos(0) { |
Chris Lattner | f071d4e | 2010-03-05 00:49:08 +0000 | [diff] [blame] | 370 | assert(Filename != 0 && "Filename is null"); |
Dan Gohman | baa2639 | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 371 | // Verify that we don't have both "append" and "excl". |
| 372 | assert((!(Flags & F_Excl) || !(Flags & F_Append)) && |
| 373 | "Cannot specify both 'excl' and 'append' file creation flags!"); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 374 | |
Daniel Dunbar | 48534b3 | 2008-10-21 19:53:10 +0000 | [diff] [blame] | 375 | ErrorInfo.clear(); |
| 376 | |
Dan Gohman | 2499990 | 2010-08-18 22:26:19 +0000 | [diff] [blame] | 377 | // Handle "-" as stdout. Note that when we do this, we consider ourself |
| 378 | // the owner of stdout. This means that we can do things like close the |
| 379 | // file descriptor when we're done and set the "binary" flag globally. |
Chris Lattner | c52b128 | 2008-08-17 03:53:23 +0000 | [diff] [blame] | 380 | if (Filename[0] == '-' && Filename[1] == 0) { |
| 381 | FD = STDOUT_FILENO; |
Daniel Dunbar | 0d9eb9b | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 382 | // If user requested binary then put stdout into binary mode if |
| 383 | // possible. |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 384 | if (Flags & F_Binary) |
Daniel Dunbar | 0d9eb9b | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 385 | sys::Program::ChangeStdoutToBinary(); |
Dan Gohman | 2499990 | 2010-08-18 22:26:19 +0000 | [diff] [blame] | 386 | // Close stdout when we're done, to detect any output errors. |
| 387 | ShouldClose = true; |
Chris Lattner | c52b128 | 2008-08-17 03:53:23 +0000 | [diff] [blame] | 388 | return; |
| 389 | } |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 390 | |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 391 | int OpenFlags = O_WRONLY|O_CREAT; |
Daniel Dunbar | 0d9eb9b | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 392 | #ifdef O_BINARY |
Benjamin Kramer | ae60324 | 2009-08-23 08:57:52 +0000 | [diff] [blame] | 393 | if (Flags & F_Binary) |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 394 | OpenFlags |= O_BINARY; |
Daniel Dunbar | 0d9eb9b | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 395 | #endif |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 396 | |
Dan Gohman | baa2639 | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 397 | if (Flags & F_Append) |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 398 | OpenFlags |= O_APPEND; |
| 399 | else |
Dan Gohman | baa2639 | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 400 | OpenFlags |= O_TRUNC; |
| 401 | if (Flags & F_Excl) |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 402 | OpenFlags |= O_EXCL; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 403 | |
Dan Gohman | 0657279 | 2010-05-06 02:06:20 +0000 | [diff] [blame] | 404 | while ((FD = open(Filename, OpenFlags, 0664)) < 0) { |
| 405 | if (errno != EINTR) { |
| 406 | ErrorInfo = "Error opening output file '" + std::string(Filename) + "'"; |
| 407 | ShouldClose = false; |
| 408 | return; |
| 409 | } |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 410 | } |
Dan Gohman | 0657279 | 2010-05-06 02:06:20 +0000 | [diff] [blame] | 411 | |
| 412 | // Ok, we successfully opened the file, so it'll need to be closed. |
| 413 | ShouldClose = true; |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 414 | } |
| 415 | |
Francois Pichet | a872a0f | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 416 | /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If |
| 417 | /// ShouldClose is true, this closes the file when the stream is destroyed. |
| 418 | raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) |
| 419 | : raw_ostream(unbuffered), FD(fd), |
| 420 | ShouldClose(shouldClose), Error(false) { |
| 421 | #ifdef O_BINARY |
| 422 | // Setting STDOUT and STDERR to binary mode is necessary in Win32 |
| 423 | // to avoid undesirable linefeed conversion. |
| 424 | if (fd == STDOUT_FILENO || fd == STDERR_FILENO) |
| 425 | setmode(fd, O_BINARY); |
| 426 | #endif |
| 427 | } |
| 428 | |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 429 | raw_fd_ostream::~raw_fd_ostream() { |
Dan Gohman | 8df0e01 | 2010-08-20 16:34:20 +0000 | [diff] [blame] | 430 | if (FD >= 0) { |
| 431 | flush(); |
| 432 | if (ShouldClose) |
| 433 | while (::close(FD) != 0) |
| 434 | if (errno != EINTR) { |
| 435 | error_detected(); |
| 436 | break; |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | // If there are any pending errors, report them now. Clients wishing |
| 441 | // to avoid report_fatal_error calls should check for errors with |
| 442 | // has_error() and clear the error flag with clear_error() before |
| 443 | // destructing raw_ostream objects which may have errors. |
| 444 | if (has_error()) |
| 445 | report_fatal_error("IO failure on output stream."); |
Chris Lattner | 93d81b6 | 2010-08-17 23:11:56 +0000 | [diff] [blame] | 446 | } |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 447 | |
Dan Gohman | d2da327 | 2010-08-18 01:34:52 +0000 | [diff] [blame] | 448 | |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 449 | void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) { |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 450 | assert(FD >= 0 && "File already closed."); |
Daniel Dunbar | 89a66a9 | 2009-03-16 23:29:31 +0000 | [diff] [blame] | 451 | pos += Size; |
Dan Gohman | 5fe89d0 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 452 | |
Benjamin Kramer | 66760be | 2010-05-05 15:17:47 +0000 | [diff] [blame] | 453 | do { |
Dan Gohman | 52c2395 | 2010-05-28 16:50:23 +0000 | [diff] [blame] | 454 | ssize_t ret = ::write(FD, Ptr, Size); |
Dan Gohman | 5fe89d0 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 455 | |
| 456 | if (ret < 0) { |
| 457 | // If it's a recoverable error, swallow it and retry the write. |
Dan Gohman | 68e947a | 2010-05-18 15:25:14 +0000 | [diff] [blame] | 458 | // |
| 459 | // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since |
| 460 | // raw_ostream isn't designed to do non-blocking I/O. However, some |
| 461 | // programs, such as old versions of bjam, have mistakenly used |
| 462 | // O_NONBLOCK. For compatibility, emulate blocking semantics by |
| 463 | // spinning until the write succeeds. If you don't want spinning, |
| 464 | // don't use O_NONBLOCK file descriptors with raw_ostream. |
Dan Gohman | 0657279 | 2010-05-06 02:06:20 +0000 | [diff] [blame] | 465 | if (errno == EINTR || errno == EAGAIN |
| 466 | #ifdef EWOULDBLOCK |
| 467 | || errno == EWOULDBLOCK |
| 468 | #endif |
| 469 | ) |
Dan Gohman | 5fe89d0 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 470 | continue; |
| 471 | |
| 472 | // Otherwise it's a non-recoverable error. Note it and quit. |
| 473 | error_detected(); |
| 474 | break; |
| 475 | } |
| 476 | |
| 477 | // The write may have written some or all of the data. Update the |
| 478 | // size and buffer pointer to reflect the remainder that needs |
| 479 | // to be written. If there are no bytes left, we're done. |
| 480 | Ptr += ret; |
| 481 | Size -= ret; |
| 482 | } while (Size > 0); |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 483 | } |
| 484 | |
Dan Gohman | d2da327 | 2010-08-18 01:34:52 +0000 | [diff] [blame] | 485 | void raw_fd_ostream::close() { |
| 486 | assert(ShouldClose); |
| 487 | ShouldClose = false; |
| 488 | flush(); |
| 489 | while (::close(FD) != 0) |
| 490 | if (errno != EINTR) { |
| 491 | error_detected(); |
| 492 | break; |
| 493 | } |
| 494 | FD = -1; |
| 495 | } |
| 496 | |
Ted Kremenek | 9c27886 | 2009-01-26 21:42:04 +0000 | [diff] [blame] | 497 | uint64_t raw_fd_ostream::seek(uint64_t off) { |
| 498 | flush(); |
Daniel Dunbar | 579fb87 | 2009-07-15 08:11:46 +0000 | [diff] [blame] | 499 | pos = ::lseek(FD, off, SEEK_SET); |
Dan Gohman | d3a974f | 2009-07-15 16:43:01 +0000 | [diff] [blame] | 500 | if (pos != off) |
Dan Gohman | e87b2ab | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 501 | error_detected(); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 502 | return pos; |
Ted Kremenek | 9c27886 | 2009-01-26 21:42:04 +0000 | [diff] [blame] | 503 | } |
| 504 | |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 505 | size_t raw_fd_ostream::preferred_buffer_size() const { |
Chris Lattner | 29269d0 | 2010-07-07 15:52:27 +0000 | [diff] [blame] | 506 | #if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__minix) |
Chris Lattner | 21aa347 | 2010-04-09 20:45:04 +0000 | [diff] [blame] | 507 | // Windows and Minix have no st_blksize. |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 508 | assert(FD >= 0 && "File not yet open!"); |
| 509 | struct stat statbuf; |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 510 | if (fstat(FD, &statbuf) != 0) |
| 511 | return 0; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 512 | |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 513 | // If this is a terminal, don't use buffering. Line buffering |
| 514 | // would be a more traditional thing to do, but it's not worth |
| 515 | // the complexity. |
| 516 | if (S_ISCHR(statbuf.st_mode) && isatty(FD)) |
| 517 | return 0; |
| 518 | // Return the preferred block size. |
| 519 | return statbuf.st_blksize; |
Dan Gohman | 9ba7f65 | 2010-05-28 16:50:01 +0000 | [diff] [blame] | 520 | #else |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 521 | return raw_ostream::preferred_buffer_size(); |
Dan Gohman | 9ba7f65 | 2010-05-28 16:50:01 +0000 | [diff] [blame] | 522 | #endif |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 523 | } |
| 524 | |
Torok Edwin | e8ebb0f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 525 | raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold, |
| 526 | bool bg) { |
| 527 | if (sys::Process::ColorNeedsFlush()) |
| 528 | flush(); |
| 529 | const char *colorcode = |
| 530 | (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg) |
| 531 | : sys::Process::OutputColor(colors, bold, bg); |
| 532 | if (colorcode) { |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 533 | size_t len = strlen(colorcode); |
Torok Edwin | e8ebb0f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 534 | write(colorcode, len); |
| 535 | // don't account colors towards output characters |
| 536 | pos -= len; |
| 537 | } |
| 538 | return *this; |
| 539 | } |
| 540 | |
| 541 | raw_ostream &raw_fd_ostream::resetColor() { |
| 542 | if (sys::Process::ColorNeedsFlush()) |
| 543 | flush(); |
| 544 | const char *colorcode = sys::Process::ResetColor(); |
| 545 | if (colorcode) { |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 546 | size_t len = strlen(colorcode); |
Torok Edwin | e8ebb0f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 547 | write(colorcode, len); |
| 548 | // don't account colors towards output characters |
| 549 | pos -= len; |
| 550 | } |
| 551 | return *this; |
| 552 | } |
| 553 | |
Dan Gohman | ec08046 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 554 | bool raw_fd_ostream::is_displayed() const { |
| 555 | return sys::Process::FileDescriptorIsDisplayed(FD); |
| 556 | } |
| 557 | |
Chris Lattner | 07f51f7 | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 558 | //===----------------------------------------------------------------------===// |
Dan Gohman | 5d56d9d | 2010-08-20 16:44:56 +0000 | [diff] [blame] | 559 | // outs(), errs(), nulls() |
Chris Lattner | 07f51f7 | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 560 | //===----------------------------------------------------------------------===// |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 561 | |
Chris Lattner | 07f51f7 | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 562 | /// outs() - This returns a reference to a raw_ostream for standard output. |
| 563 | /// Use it like: outs() << "foo" << "bar"; |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 564 | raw_ostream &llvm::outs() { |
Dan Gohman | a1f89de | 2010-08-20 16:39:41 +0000 | [diff] [blame] | 565 | // Set buffer settings to model stdout behavior. |
Dan Gohman | 5d56d9d | 2010-08-20 16:44:56 +0000 | [diff] [blame] | 566 | // Delete the file descriptor when the program exists, forcing error |
| 567 | // detection. If you don't want this behavior, don't use outs(). |
| 568 | static raw_fd_ostream S(STDOUT_FILENO, true); |
Chris Lattner | 07f51f7 | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 569 | return S; |
| 570 | } |
| 571 | |
| 572 | /// errs() - This returns a reference to a raw_ostream for standard error. |
| 573 | /// Use it like: errs() << "foo" << "bar"; |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 574 | raw_ostream &llvm::errs() { |
Dan Gohman | a1f89de | 2010-08-20 16:39:41 +0000 | [diff] [blame] | 575 | // Set standard error to be unbuffered by default. |
| 576 | static raw_fd_ostream S(STDERR_FILENO, false, true); |
Chris Lattner | 07f51f7 | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 577 | return S; |
| 578 | } |
| 579 | |
Daniel Dunbar | 34ccf03 | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 580 | /// nulls() - This returns a reference to a raw_ostream which discards output. |
| 581 | raw_ostream &llvm::nulls() { |
| 582 | static raw_null_ostream S; |
| 583 | return S; |
| 584 | } |
| 585 | |
Douglas Gregor | 8f7be47 | 2009-04-20 07:34:17 +0000 | [diff] [blame] | 586 | |
Chris Lattner | 78a2812 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 587 | //===----------------------------------------------------------------------===// |
| 588 | // raw_string_ostream |
| 589 | //===----------------------------------------------------------------------===// |
| 590 | |
Daniel Dunbar | 35979c0 | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 591 | raw_string_ostream::~raw_string_ostream() { |
| 592 | flush(); |
| 593 | } |
| 594 | |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 595 | void raw_string_ostream::write_impl(const char *Ptr, size_t Size) { |
Daniel Dunbar | 89a66a9 | 2009-03-16 23:29:31 +0000 | [diff] [blame] | 596 | OS.append(Ptr, Size); |
Chris Lattner | 78a2812 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | //===----------------------------------------------------------------------===// |
| 600 | // raw_svector_ostream |
| 601 | //===----------------------------------------------------------------------===// |
| 602 | |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 603 | // The raw_svector_ostream implementation uses the SmallVector itself as the |
| 604 | // buffer for the raw_ostream. We guarantee that the raw_ostream buffer is |
| 605 | // always pointing past the end of the vector, but within the vector |
| 606 | // capacity. This allows raw_ostream to write directly into the correct place, |
| 607 | // and we only need to set the vector size when the data is flushed. |
| 608 | |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 609 | raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { |
Daniel Dunbar | d14787e | 2009-08-19 18:40:58 +0000 | [diff] [blame] | 610 | // Set up the initial external buffer. We make sure that the buffer has at |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 611 | // least 128 bytes free; raw_ostream itself only requires 64, but we want to |
| 612 | // make sure that we don't grow the buffer unnecessarily on destruction (when |
| 613 | // the data is flushed). See the FIXME below. |
Daniel Dunbar | d14787e | 2009-08-19 18:40:58 +0000 | [diff] [blame] | 614 | OS.reserve(OS.size() + 128); |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 615 | SetBuffer(OS.end(), OS.capacity() - OS.size()); |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 616 | } |
| 617 | |
Daniel Dunbar | 35979c0 | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 618 | raw_svector_ostream::~raw_svector_ostream() { |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 619 | // FIXME: Prevent resizing during this flush(). |
Daniel Dunbar | 35979c0 | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 620 | flush(); |
| 621 | } |
| 622 | |
Chris Lattner | 14ca177 | 2010-01-22 21:16:10 +0000 | [diff] [blame] | 623 | /// resync - This is called when the SmallVector we're appending to is changed |
| 624 | /// outside of the raw_svector_ostream's control. It is only safe to do this |
| 625 | /// if the raw_svector_ostream has previously been flushed. |
| 626 | void raw_svector_ostream::resync() { |
| 627 | assert(GetNumBytesInBuffer() == 0 && "Didn't flush before mutating vector"); |
| 628 | |
| 629 | if (OS.capacity() - OS.size() < 64) |
| 630 | OS.reserve(OS.capacity() * 2); |
Chris Lattner | d79d9dc | 2010-01-22 19:17:48 +0000 | [diff] [blame] | 631 | SetBuffer(OS.end(), OS.capacity() - OS.size()); |
| 632 | } |
| 633 | |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 634 | void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) { |
Chris Lattner | 17f26b4 | 2010-02-15 02:18:26 +0000 | [diff] [blame] | 635 | // If we're writing bytes from the end of the buffer into the smallvector, we |
| 636 | // don't need to copy the bytes, just commit the bytes because they are |
| 637 | // already in the right place. |
| 638 | if (Ptr == OS.end()) { |
| 639 | assert(OS.size() + Size <= OS.capacity() && "Invalid write_impl() call!"); |
| 640 | OS.set_size(OS.size() + Size); |
| 641 | } else { |
| 642 | assert(GetNumBytesInBuffer() == 0 && |
| 643 | "Should be writing from buffer if some bytes in it"); |
| 644 | // Otherwise, do copy the bytes. |
| 645 | OS.append(Ptr, Ptr+Size); |
| 646 | } |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 647 | |
| 648 | // Grow the vector if necessary. |
| 649 | if (OS.capacity() - OS.size() < 64) |
| 650 | OS.reserve(OS.capacity() * 2); |
| 651 | |
| 652 | // Update the buffer position. |
| 653 | SetBuffer(OS.end(), OS.capacity() - OS.size()); |
Chris Lattner | 78a2812 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 654 | } |
| 655 | |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 656 | uint64_t raw_svector_ostream::current_pos() const { |
| 657 | return OS.size(); |
| 658 | } |
Douglas Gregor | 8f7be47 | 2009-04-20 07:34:17 +0000 | [diff] [blame] | 659 | |
Daniel Dunbar | d14787e | 2009-08-19 18:40:58 +0000 | [diff] [blame] | 660 | StringRef raw_svector_ostream::str() { |
| 661 | flush(); |
| 662 | return StringRef(OS.begin(), OS.size()); |
| 663 | } |
| 664 | |
Daniel Dunbar | 34ccf03 | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 665 | //===----------------------------------------------------------------------===// |
| 666 | // raw_null_ostream |
| 667 | //===----------------------------------------------------------------------===// |
| 668 | |
Dan Gohman | f78c835 | 2009-07-27 21:46:02 +0000 | [diff] [blame] | 669 | raw_null_ostream::~raw_null_ostream() { |
| 670 | #ifndef NDEBUG |
| 671 | // ~raw_ostream asserts that the buffer is empty. This isn't necessary |
| 672 | // with raw_null_ostream, but it's better to have raw_null_ostream follow |
| 673 | // the rules than to change the rules just for raw_null_ostream. |
| 674 | flush(); |
| 675 | #endif |
| 676 | } |
| 677 | |
Daniel Dunbar | 34ccf03 | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 678 | void raw_null_ostream::write_impl(const char *Ptr, size_t Size) { |
| 679 | } |
| 680 | |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 681 | uint64_t raw_null_ostream::current_pos() const { |
Daniel Dunbar | 34ccf03 | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 682 | return 0; |
| 683 | } |