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