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