blob: 4bea934a4b4f184ae78a16466954c59c39288737 [file] [log] [blame]
Chris Lattner84b94f72008-08-17 01:35:29 +00001//===--- raw_ostream.cpp - Implement the raw_ostream classes --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements support for bulk buffered stream output.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/STLExtras.h"
Chris Lattner22b52c92008-08-23 19:23:10 +000016#include "llvm/ADT/SmallVector.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/StringExtras.h"
Chris Lattnerd564f292008-08-22 15:45:00 +000018#include "llvm/Config/config.h"
Daniel Dunbar437b8a52009-03-17 21:15:18 +000019#include "llvm/Support/Compiler.h"
Daniel Dunbardcb50b92009-07-15 08:11:46 +000020#include "llvm/Support/ErrorHandling.h"
Rafael Espindola6d354812013-07-16 19:44:17 +000021#include "llvm/Support/FileSystem.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/Support/Format.h"
Nick Kledzike6480372014-09-25 20:30:58 +000023#include "llvm/Support/MathExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/Support/Process.h"
25#include "llvm/Support/Program.h"
Benjamin Krameref14f802010-01-29 15:19:06 +000026#include <cctype>
Benjamin Kramerce84a252010-05-05 15:17:47 +000027#include <cerrno>
Dan Gohman84487b92009-08-13 17:27:29 +000028#include <sys/stat.h>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000029#include <system_error>
Chris Lattner84b94f72008-08-17 01:35:29 +000030
NAKAMURA Takumi212c80a2013-07-17 02:21:10 +000031// <fcntl.h> may provide O_BINARY.
32#if defined(HAVE_FCNTL_H)
33# include <fcntl.h>
34#endif
35
Chris Lattnerd564f292008-08-22 15:45:00 +000036#if defined(HAVE_UNISTD_H)
37# include <unistd.h>
38#endif
Daniel Dunbar4fed8872011-02-03 03:32:32 +000039#if defined(HAVE_SYS_UIO_H) && defined(HAVE_WRITEV)
40# include <sys/uio.h>
41#endif
Argyrios Kyrtzidisb97ff822008-08-17 09:25:21 +000042
NAKAMURA Takumife84f392010-10-19 01:21:55 +000043#if defined(__CYGWIN__)
44#include <io.h>
45#endif
46
Argyrios Kyrtzidisb97ff822008-08-17 09:25:21 +000047#if defined(_MSC_VER)
Chris Lattner84b94f72008-08-17 01:35:29 +000048#include <io.h>
Owen Anderson93719642008-08-21 00:14:44 +000049#ifndef STDIN_FILENO
50# define STDIN_FILENO 0
51#endif
52#ifndef STDOUT_FILENO
53# define STDOUT_FILENO 1
54#endif
55#ifndef STDERR_FILENO
56# define STDERR_FILENO 2
57#endif
Chris Lattner84b94f72008-08-17 01:35:29 +000058#endif
59
Yunzhong Gaofb2a9c42016-01-06 00:50:06 +000060#ifdef LLVM_ON_WIN32
61#include "Windows/WindowsSupport.h"
62#endif
63
Chris Lattnerd564f292008-08-22 15:45:00 +000064using namespace llvm;
65
Dan Gohman58fcef92009-07-15 23:25:33 +000066raw_ostream::~raw_ostream() {
Dan Gohman1b763292009-07-27 20:49:44 +000067 // raw_ostream's subclasses should take care to flush the buffer
68 // in their destructors.
69 assert(OutBufCur == OutBufStart &&
70 "raw_ostream destructor called with non-empty buffer!");
71
Daniel Dunbar317a6cd2009-08-18 23:42:36 +000072 if (BufferMode == InternalBuffer)
73 delete [] OutBufStart;
Dan Gohman58fcef92009-07-15 23:25:33 +000074}
Chris Lattnerd564f292008-08-22 15:45:00 +000075
Chris Lattner84b94f72008-08-17 01:35:29 +000076// An out of line virtual method to provide a home for the class vtable.
77void raw_ostream::handle() {}
78
Chris Lattnerdd3e9aa2009-12-19 01:38:42 +000079size_t raw_ostream::preferred_buffer_size() const {
Dan Gohman84487b92009-08-13 17:27:29 +000080 // BUFSIZ is intended to be a reasonable default.
81 return BUFSIZ;
82}
83
84void raw_ostream::SetBuffered() {
85 // Ask the subclass to determine an appropriate buffer size.
Dan Gohman17710222009-08-15 02:05:19 +000086 if (size_t Size = preferred_buffer_size())
87 SetBufferSize(Size);
88 else
89 // It may return 0, meaning this stream should be unbuffered.
90 SetUnbuffered();
Dan Gohman84487b92009-08-13 17:27:29 +000091}
92
Dan Gohmanb452d4e2010-03-24 19:38:02 +000093void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size,
Nick Lewycky7bfd86d2011-08-28 03:30:02 +000094 BufferKind Mode) {
Craig Topper2617dcc2014-04-15 06:32:26 +000095 assert(((Mode == Unbuffered && !BufferStart && Size == 0) ||
96 (Mode != Unbuffered && BufferStart && Size != 0)) &&
Daniel Dunbar316b4a02009-09-15 20:31:46 +000097 "stream must be unbuffered or have at least one byte");
Daniel Dunbar317a6cd2009-08-18 23:42:36 +000098 // Make sure the current buffer is free of content (we can't flush here; the
99 // child buffer management logic will be in write_impl).
100 assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!");
Dan Gohman54401d42009-08-13 15:58:55 +0000101
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000102 if (BufferMode == InternalBuffer)
103 delete [] OutBufStart;
104 OutBufStart = BufferStart;
Dan Gohman54401d42009-08-13 15:58:55 +0000105 OutBufEnd = OutBufStart+Size;
106 OutBufCur = OutBufStart;
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000107 BufferMode = Mode;
Daniel Dunbarb090bf42009-08-19 17:54:29 +0000108
109 assert(OutBufStart <= OutBufEnd && "Invalid size!");
Dan Gohman54401d42009-08-13 15:58:55 +0000110}
111
Owen Andersond2850532008-08-21 20:58:52 +0000112raw_ostream &raw_ostream::operator<<(unsigned long N) {
113 // Zero is a special case.
114 if (N == 0)
115 return *this << '0';
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000116
Owen Andersond2850532008-08-21 20:58:52 +0000117 char NumberBuffer[20];
118 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
119 char *CurPtr = EndPtr;
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000120
Owen Andersond2850532008-08-21 20:58:52 +0000121 while (N) {
122 *--CurPtr = '0' + char(N % 10);
123 N /= 10;
124 }
125 return write(CurPtr, EndPtr-CurPtr);
126}
127
128raw_ostream &raw_ostream::operator<<(long N) {
129 if (N < 0) {
Daniel Dunbar7a9bb9e2009-03-16 22:00:17 +0000130 *this << '-';
Eli Friedman53ba2082011-10-13 22:49:56 +0000131 // Avoid undefined behavior on LONG_MIN with a cast.
132 N = -(unsigned long)N;
Owen Andersond2850532008-08-21 20:58:52 +0000133 }
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000134
Owen Andersond2850532008-08-21 20:58:52 +0000135 return this->operator<<(static_cast<unsigned long>(N));
136}
137
138raw_ostream &raw_ostream::operator<<(unsigned long long N) {
Daniel Dunbar465de3e2009-08-19 16:25:25 +0000139 // Output using 32-bit div/mod when possible.
Daniel Dunbara94f58a2009-07-29 06:45:14 +0000140 if (N == static_cast<unsigned long>(N))
141 return this->operator<<(static_cast<unsigned long>(N));
142
Daniel Dunbar465de3e2009-08-19 16:25:25 +0000143 char NumberBuffer[20];
Craig Topperab3d2ac2016-01-31 01:12:35 +0000144 char *EndPtr = std::end(NumberBuffer);
Daniel Dunbar465de3e2009-08-19 16:25:25 +0000145 char *CurPtr = EndPtr;
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000146
Daniel Dunbar465de3e2009-08-19 16:25:25 +0000147 while (N) {
148 *--CurPtr = '0' + char(N % 10);
149 N /= 10;
150 }
151 return write(CurPtr, EndPtr-CurPtr);
Owen Andersond2850532008-08-21 20:58:52 +0000152}
153
154raw_ostream &raw_ostream::operator<<(long long N) {
Chris Lattner3db3bb02010-08-03 16:41:24 +0000155 if (N < 0) {
Daniel Dunbar7a9bb9e2009-03-16 22:00:17 +0000156 *this << '-';
Chris Lattner3db3bb02010-08-03 16:41:24 +0000157 // Avoid undefined behavior on INT64_MIN with a cast.
158 N = -(unsigned long long)N;
Owen Andersond2850532008-08-21 20:58:52 +0000159 }
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000160
Owen Andersond2850532008-08-21 20:58:52 +0000161 return this->operator<<(static_cast<unsigned long long>(N));
162}
163
Daniel Dunbar6c9629b2009-07-30 18:21:23 +0000164raw_ostream &raw_ostream::write_hex(unsigned long long N) {
Daniel Dunbar87862182009-03-16 22:08:44 +0000165 // Zero is a special case.
166 if (N == 0)
167 return *this << '0';
168
Craig Topperca919dc2016-01-31 01:12:38 +0000169 char NumberBuffer[16];
Craig Topperab3d2ac2016-01-31 01:12:35 +0000170 char *EndPtr = std::end(NumberBuffer);
Daniel Dunbar87862182009-03-16 22:08:44 +0000171 char *CurPtr = EndPtr;
172
173 while (N) {
Dan Gohmanf199ad62009-07-16 15:24:40 +0000174 uintptr_t x = N % 16;
Daniel Dunbar87862182009-03-16 22:08:44 +0000175 *--CurPtr = (x < 10 ? '0' + x : 'a' + x - 10);
176 N /= 16;
177 }
178
179 return write(CurPtr, EndPtr-CurPtr);
Chris Lattner0c19df42008-08-23 22:23:09 +0000180}
181
Daniel Dunbar65dc8912010-11-27 07:59:50 +0000182raw_ostream &raw_ostream::write_escaped(StringRef Str,
183 bool UseHexEscapes) {
Daniel Dunbar4108c432009-10-17 20:43:08 +0000184 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
185 unsigned char c = Str[i];
186
187 switch (c) {
188 case '\\':
189 *this << '\\' << '\\';
190 break;
191 case '\t':
192 *this << '\\' << 't';
193 break;
194 case '\n':
195 *this << '\\' << 'n';
196 break;
197 case '"':
198 *this << '\\' << '"';
199 break;
200 default:
201 if (std::isprint(c)) {
202 *this << c;
203 break;
204 }
205
Daniel Dunbar65dc8912010-11-27 07:59:50 +0000206 // Write out the escaped representation.
207 if (UseHexEscapes) {
208 *this << '\\' << 'x';
209 *this << hexdigit((c >> 4 & 0xF));
210 *this << hexdigit((c >> 0) & 0xF);
211 } else {
212 // Always use a full 3-character octal escape.
213 *this << '\\';
214 *this << char('0' + ((c >> 6) & 7));
215 *this << char('0' + ((c >> 3) & 7));
216 *this << char('0' + ((c >> 0) & 7));
217 }
Daniel Dunbar4108c432009-10-17 20:43:08 +0000218 }
219 }
220
221 return *this;
222}
223
Daniel Dunbar6c9629b2009-07-30 18:21:23 +0000224raw_ostream &raw_ostream::operator<<(const void *P) {
225 *this << '0' << 'x';
226
227 return write_hex((uintptr_t) P);
228}
229
Chris Lattner06fa1762009-08-24 03:52:50 +0000230raw_ostream &raw_ostream::operator<<(double N) {
NAKAMURA Takumibac0d762011-03-18 09:30:10 +0000231#ifdef _WIN32
232 // On MSVCRT and compatible, output of %e is incompatible to Posix
233 // by default. Number of exponent digits should be at least 2. "%+03d"
234 // FIXME: Implement our formatter to here or Support/Format.h!
NAKAMURA Takumi79addb82014-01-12 14:44:46 +0000235#if __cplusplus >= 201103L && defined(__MINGW32__)
236 // FIXME: It should be generic to C++11.
237 if (N == 0.0 && std::signbit(N))
238 return *this << "-0.000000e+00";
239#else
NAKAMURA Takumibac0d762011-03-18 09:30:10 +0000240 int fpcl = _fpclass(N);
241
242 // negative zero
243 if (fpcl == _FPCLASS_NZ)
244 return *this << "-0.000000e+00";
NAKAMURA Takumi79addb82014-01-12 14:44:46 +0000245#endif
NAKAMURA Takumibac0d762011-03-18 09:30:10 +0000246
247 char buf[16];
248 unsigned len;
Benjamin Krameraf09f222015-02-15 22:15:41 +0000249 len = format("%e", N).snprint(buf, sizeof(buf));
NAKAMURA Takumibac0d762011-03-18 09:30:10 +0000250 if (len <= sizeof(buf) - 2) {
251 if (len >= 5 && buf[len - 5] == 'e' && buf[len - 3] == '0') {
252 int cs = buf[len - 4];
253 if (cs == '+' || cs == '-') {
254 int c1 = buf[len - 2];
255 int c0 = buf[len - 1];
Guy Benyei83c74e92013-02-12 21:21:59 +0000256 if (isdigit(static_cast<unsigned char>(c1)) &&
257 isdigit(static_cast<unsigned char>(c0))) {
NAKAMURA Takumibac0d762011-03-18 09:30:10 +0000258 // Trim leading '0': "...e+012" -> "...e+12\0"
259 buf[len - 3] = c1;
260 buf[len - 2] = c0;
261 buf[--len] = 0;
262 }
263 }
264 }
265 return this->operator<<(buf);
266 }
267#endif
Benjamin Kramer6bee24a2010-01-29 14:40:33 +0000268 return this->operator<<(format("%e", N));
Chris Lattner06fa1762009-08-24 03:52:50 +0000269}
270
271
272
Daniel Dunbard24535f2009-03-16 22:55:06 +0000273void raw_ostream::flush_nonempty() {
274 assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty.");
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000275 size_t Length = OutBufCur - OutBufStart;
276 OutBufCur = OutBufStart;
277 write_impl(OutBufStart, Length);
Daniel Dunbard24535f2009-03-16 22:55:06 +0000278}
279
Daniel Dunbar7a9bb9e2009-03-16 22:00:17 +0000280raw_ostream &raw_ostream::write(unsigned char C) {
Daniel Dunbar64fa3862009-03-17 01:36:56 +0000281 // Group exceptional cases into a single branch.
Benjamin Kramerbd7f8d02012-08-29 22:57:00 +0000282 if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) {
283 if (LLVM_UNLIKELY(!OutBufStart)) {
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000284 if (BufferMode == Unbuffered) {
Dan Gohman23f90c12009-08-18 20:09:59 +0000285 write_impl(reinterpret_cast<char*>(&C), 1);
286 return *this;
287 }
Daniel Dunbar0cf16862009-08-19 00:23:39 +0000288 // Set up a buffer and start over.
289 SetBuffered();
290 return write(C);
Dan Gohman23f90c12009-08-18 20:09:59 +0000291 }
Daniel Dunbar0cf16862009-08-19 00:23:39 +0000292
293 flush_nonempty();
Daniel Dunbar2d603da2009-03-17 01:13:35 +0000294 }
295
Daniel Dunbar7a9bb9e2009-03-16 22:00:17 +0000296 *OutBufCur++ = C;
Daniel Dunbar87862182009-03-16 22:08:44 +0000297 return *this;
Daniel Dunbar7a9bb9e2009-03-16 22:00:17 +0000298}
Chris Lattner0c19df42008-08-23 22:23:09 +0000299
Dan Gohmanf199ad62009-07-16 15:24:40 +0000300raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) {
Daniel Dunbar64fa3862009-03-17 01:36:56 +0000301 // Group exceptional cases into a single branch.
Benjamin Kramerbd7f8d02012-08-29 22:57:00 +0000302 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
303 if (LLVM_UNLIKELY(!OutBufStart)) {
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000304 if (BufferMode == Unbuffered) {
Dan Gohman52022c22009-08-13 15:44:52 +0000305 write_impl(Ptr, Size);
306 return *this;
307 }
308 // Set up a buffer and start over.
Dan Gohman84487b92009-08-13 17:27:29 +0000309 SetBuffered();
Dan Gohman52022c22009-08-13 15:44:52 +0000310 return write(Ptr, Size);
311 }
Daniel Dunbar0cf16862009-08-19 00:23:39 +0000312
Benjamin Kramerdfb0ad32011-03-04 19:49:30 +0000313 size_t NumBytes = OutBufEnd - OutBufCur;
314
Benjamin Krameracf08422011-03-04 18:18:16 +0000315 // If the buffer is empty at this point we have a string that is larger
Benjamin Kramerdfb0ad32011-03-04 19:49:30 +0000316 // than the buffer. Directly write the chunk that is a multiple of the
317 // preferred buffer size and put the remainder in the buffer.
Benjamin Kramerbd7f8d02012-08-29 22:57:00 +0000318 if (LLVM_UNLIKELY(OutBufCur == OutBufStart)) {
Michael Ilseman5be22a12014-12-12 21:48:03 +0000319 assert(NumBytes != 0 && "undefined behavior");
Benjamin Kramerdfb0ad32011-03-04 19:49:30 +0000320 size_t BytesToWrite = Size - (Size % NumBytes);
321 write_impl(Ptr, BytesToWrite);
Matt Beaumont-Gaya182be82013-03-12 23:55:24 +0000322 size_t BytesRemaining = Size - BytesToWrite;
323 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
324 // Too much left over to copy into our buffer.
325 return write(Ptr + BytesToWrite, BytesRemaining);
326 }
327 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);
Benjamin Krameracf08422011-03-04 18:18:16 +0000328 return *this;
329 }
330
331 // We don't have enough space in the buffer to fit the string in. Insert as
332 // much as possible, flush and start over with the remainder.
Benjamin Krameracf08422011-03-04 18:18:16 +0000333 copy_to_buffer(Ptr, NumBytes);
334 flush_nonempty();
335 return write(Ptr + NumBytes, Size - NumBytes);
Daniel Dunbar64fa3862009-03-17 01:36:56 +0000336 }
Dan Gohman52022c22009-08-13 15:44:52 +0000337
338 copy_to_buffer(Ptr, Size);
339
340 return *this;
341}
342
343void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) {
Dan Gohmanc04a00a2009-08-13 20:32:03 +0000344 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
Dan Gohman98205552009-08-13 18:38:15 +0000345
Owen Andersond2850532008-08-21 20:58:52 +0000346 // Handle short strings specially, memcpy isn't very good at very short
347 // strings.
348 switch (Size) {
349 case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH
350 case 3: OutBufCur[2] = Ptr[2]; // FALL THROUGH
351 case 2: OutBufCur[1] = Ptr[1]; // FALL THROUGH
352 case 1: OutBufCur[0] = Ptr[0]; // FALL THROUGH
353 case 0: break;
354 default:
Dan Gohman52022c22009-08-13 15:44:52 +0000355 memcpy(OutBufCur, Ptr, Size);
Owen Andersond2850532008-08-21 20:58:52 +0000356 break;
357 }
Daniel Dunbar3da6a702009-03-10 16:21:55 +0000358
Dan Gohman52022c22009-08-13 15:44:52 +0000359 OutBufCur += Size;
Owen Andersond2850532008-08-21 20:58:52 +0000360}
361
Chris Lattner22b52c92008-08-23 19:23:10 +0000362// Formatted output.
363raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) {
Daniel Dunbar64fa3862009-03-17 01:36:56 +0000364 // If we have more than a few bytes left in our output buffer, try
365 // formatting directly onto its end.
Dan Gohmanf199ad62009-07-16 15:24:40 +0000366 size_t NextBufferSize = 127;
Daniel Dunbar47a309c2009-08-23 20:31:39 +0000367 size_t BufferBytesLeft = OutBufEnd - OutBufCur;
368 if (BufferBytesLeft > 3) {
Dan Gohmanf199ad62009-07-16 15:24:40 +0000369 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000370
Chris Lattner22b52c92008-08-23 19:23:10 +0000371 // Common case is that we have plenty of space.
Daniel Dunbar47a309c2009-08-23 20:31:39 +0000372 if (BytesUsed <= BufferBytesLeft) {
Chris Lattner22b52c92008-08-23 19:23:10 +0000373 OutBufCur += BytesUsed;
374 return *this;
375 }
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000376
Chris Lattner22b52c92008-08-23 19:23:10 +0000377 // Otherwise, we overflowed and the return value tells us the size to try
378 // again with.
379 NextBufferSize = BytesUsed;
380 }
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000381
Chris Lattner22b52c92008-08-23 19:23:10 +0000382 // If we got here, we didn't have enough space in the output buffer for the
383 // string. Try printing into a SmallVector that is resized to have enough
384 // space. Iterate until we win.
385 SmallVector<char, 128> V;
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000386
Chris Lattner22b52c92008-08-23 19:23:10 +0000387 while (1) {
388 V.resize(NextBufferSize);
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000389
Chris Lattner22b52c92008-08-23 19:23:10 +0000390 // Try formatting into the SmallVector.
Daniel Dunbar47a309c2009-08-23 20:31:39 +0000391 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000392
Chris Lattner22b52c92008-08-23 19:23:10 +0000393 // If BytesUsed fit into the vector, we win.
Chris Lattner2bfc72e2008-10-26 19:20:47 +0000394 if (BytesUsed <= NextBufferSize)
Daniel Dunbar47a309c2009-08-23 20:31:39 +0000395 return write(V.data(), BytesUsed);
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000396
Chris Lattner22b52c92008-08-23 19:23:10 +0000397 // Otherwise, try again with a new size.
398 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
399 NextBufferSize = BytesUsed;
400 }
401}
402
Nick Kledzike6480372014-09-25 20:30:58 +0000403raw_ostream &raw_ostream::operator<<(const FormattedString &FS) {
404 unsigned Len = FS.Str.size();
405 int PadAmount = FS.Width - Len;
406 if (FS.RightJustify && (PadAmount > 0))
407 this->indent(PadAmount);
408 this->operator<<(FS.Str);
409 if (!FS.RightJustify && (PadAmount > 0))
410 this->indent(PadAmount);
411 return *this;
412}
413
414raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) {
415 if (FN.Hex) {
416 unsigned Nibbles = (64 - countLeadingZeros(FN.HexValue)+3)/4;
Zachary Turner39571b32015-01-26 18:21:33 +0000417 unsigned PrefixChars = FN.HexPrefix ? 2 : 0;
418 unsigned Width = std::max(FN.Width, Nibbles + PrefixChars);
419
Nick Kledzike6480372014-09-25 20:30:58 +0000420 char NumberBuffer[20] = "0x0000000000000000";
Zachary Turner39571b32015-01-26 18:21:33 +0000421 if (!FN.HexPrefix)
422 NumberBuffer[1] = '0';
Nick Kledzike6480372014-09-25 20:30:58 +0000423 char *EndPtr = NumberBuffer+Width;
424 char *CurPtr = EndPtr;
425 const char A = FN.Upper ? 'A' : 'a';
426 unsigned long long N = FN.HexValue;
427 while (N) {
428 uintptr_t x = N % 16;
429 *--CurPtr = (x < 10 ? '0' + x : A + x - 10);
430 N /= 16;
431 }
432
433 return write(NumberBuffer, Width);
434 } else {
435 // Zero is a special case.
436 if (FN.DecValue == 0) {
437 this->indent(FN.Width-1);
438 return *this << '0';
439 }
440 char NumberBuffer[32];
441 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
442 char *CurPtr = EndPtr;
443 bool Neg = (FN.DecValue < 0);
David Majnemer4b3c90f2014-09-26 02:48:14 +0000444 uint64_t N = Neg ? -static_cast<uint64_t>(FN.DecValue) : FN.DecValue;
Nick Kledzike6480372014-09-25 20:30:58 +0000445 while (N) {
446 *--CurPtr = '0' + char(N % 10);
447 N /= 10;
448 }
449 int Len = EndPtr - CurPtr;
450 int Pad = FN.Width - Len;
451 if (Neg)
452 --Pad;
453 if (Pad > 0)
454 this->indent(Pad);
455 if (Neg)
456 *this << '-';
457 return write(CurPtr, Len);
458 }
459}
460
461
Chris Lattnere6db2c32009-08-22 23:10:29 +0000462/// indent - Insert 'NumSpaces' spaces.
463raw_ostream &raw_ostream::indent(unsigned NumSpaces) {
Dan Gohmanf88f52e2009-08-24 04:13:01 +0000464 static const char Spaces[] = " "
465 " "
466 " ";
Chris Lattnere6db2c32009-08-22 23:10:29 +0000467
468 // Usually the indentation is small, handle it with a fastpath.
Dan Gohmanc9fa0512009-08-24 04:43:38 +0000469 if (NumSpaces < array_lengthof(Spaces))
Chris Lattnere6db2c32009-08-22 23:10:29 +0000470 return write(Spaces, NumSpaces);
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000471
Chris Lattnere6db2c32009-08-22 23:10:29 +0000472 while (NumSpaces) {
Dan Gohmanc9fa0512009-08-24 04:43:38 +0000473 unsigned NumToWrite = std::min(NumSpaces,
474 (unsigned)array_lengthof(Spaces)-1);
Chris Lattnere6db2c32009-08-22 23:10:29 +0000475 write(Spaces, NumToWrite);
476 NumSpaces -= NumToWrite;
477 }
478 return *this;
479}
480
481
Chris Lattner22b52c92008-08-23 19:23:10 +0000482//===----------------------------------------------------------------------===//
483// Formatted Output
484//===----------------------------------------------------------------------===//
485
486// Out of line virtual method.
487void format_object_base::home() {
488}
489
Chris Lattner84b94f72008-08-17 01:35:29 +0000490//===----------------------------------------------------------------------===//
491// raw_fd_ostream
492//===----------------------------------------------------------------------===//
493
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000494static int getFD(StringRef Filename, std::error_code &EC,
495 sys::fs::OpenFlags Flags) {
Dan Gohmanc825cee2010-08-18 22:26:19 +0000496 // Handle "-" as stdout. Note that when we do this, we consider ourself
497 // the owner of stdout. This means that we can do things like close the
498 // file descriptor when we're done and set the "binary" flag globally.
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000499 if (Filename == "-") {
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000500 EC = std::error_code();
Daniel Dunbared90e702008-11-13 05:01:07 +0000501 // If user requested binary then put stdout into binary mode if
502 // possible.
Rafael Espindola90c7f1c2014-02-24 18:20:12 +0000503 if (!(Flags & sys::fs::F_Text))
Rafael Espindolacb2eca02013-06-12 20:58:35 +0000504 sys::ChangeStdoutToBinary();
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000505 return STDOUT_FILENO;
Chris Lattnerd5bc0682008-08-17 03:53:23 +0000506 }
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000507
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000508 int FD;
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000509 EC = sys::fs::openFileForWrite(Filename, FD, Flags);
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000510 if (EC)
511 return -1;
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000512
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000513 return FD;
Chris Lattner84b94f72008-08-17 01:35:29 +0000514}
515
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000516raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC,
517 sys::fs::OpenFlags Flags)
518 : raw_fd_ostream(getFD(Filename, EC, Flags), true) {}
519
Rafael Espindola62e6ec02015-04-09 16:59:07 +0000520/// FD is the file descriptor that this writes to. If ShouldClose is true, this
521/// closes the file when the stream is destroyed.
Francois Picheta3037c32010-10-14 20:30:58 +0000522raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered)
Rafael Espindola37b70152015-04-14 15:00:34 +0000523 : raw_pwrite_stream(unbuffered), FD(fd), ShouldClose(shouldClose),
Rafael Espindola3f210fc2015-12-16 22:59:06 +0000524 Error(false) {
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000525 if (FD < 0 ) {
526 ShouldClose = false;
527 return;
528 }
Michael J. Spencerb7479902011-01-17 15:53:12 +0000529
530 // Get the starting position.
531 off_t loc = ::lseek(FD, 0, SEEK_CUR);
Rafael Espindolaa9b84ab2015-04-13 11:09:48 +0000532#ifdef LLVM_ON_WIN32
533 // MSVCRT's _lseek(SEEK_CUR) doesn't return -1 for pipes.
534 sys::fs::file_status Status;
535 std::error_code EC = status(FD, Status);
536 SupportsSeeking = !EC && Status.type() == sys::fs::file_type::regular_file;
537#else
Rafael Espindola74d2f612015-04-10 18:15:51 +0000538 SupportsSeeking = loc != (off_t)-1;
Rafael Espindolaa9b84ab2015-04-13 11:09:48 +0000539#endif
Rafael Espindola74d2f612015-04-10 18:15:51 +0000540 if (!SupportsSeeking)
Michael J. Spencerb7479902011-01-17 15:53:12 +0000541 pos = 0;
542 else
543 pos = static_cast<uint64_t>(loc);
Francois Picheta3037c32010-10-14 20:30:58 +0000544}
545
Chris Lattner84b94f72008-08-17 01:35:29 +0000546raw_fd_ostream::~raw_fd_ostream() {
Dan Gohman38adfdd2010-08-20 16:34:20 +0000547 if (FD >= 0) {
548 flush();
David Majnemer51c2afc2014-10-07 05:48:40 +0000549 if (ShouldClose && sys::Process::SafelyCloseFileDescriptor(FD))
550 error_detected();
Dan Gohman38adfdd2010-08-20 16:34:20 +0000551 }
552
NAKAMURA Takumi76e68ea2011-03-16 02:53:39 +0000553#ifdef __MINGW32__
554 // On mingw, global dtors should not call exit().
555 // report_fatal_error() invokes exit(). We know report_fatal_error()
556 // might not write messages to stderr when any errors were detected
557 // on FD == 2.
558 if (FD == 2) return;
559#endif
560
Dan Gohman38adfdd2010-08-20 16:34:20 +0000561 // If there are any pending errors, report them now. Clients wishing
562 // to avoid report_fatal_error calls should check for errors with
563 // has_error() and clear the error flag with clear_error() before
564 // destructing raw_ostream objects which may have errors.
565 if (has_error())
Chad Rosier7ce810c2013-03-27 18:30:00 +0000566 report_fatal_error("IO failure on output stream.", /*GenCrashDiag=*/false);
Chris Lattnerce3b2c32010-08-17 23:11:56 +0000567}
Chris Lattner9e6f1f12009-08-23 02:51:22 +0000568
Dan Gohman44790e72010-08-18 01:34:52 +0000569
Dan Gohmanf199ad62009-07-16 15:24:40 +0000570void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000571 assert(FD >= 0 && "File already closed.");
Daniel Dunbardb7a36c2009-03-16 23:29:31 +0000572 pos += Size;
Dan Gohmanef969f32010-05-06 01:27:36 +0000573
Yunzhong Gaofb2a9c42016-01-06 00:50:06 +0000574#ifndef LLVM_ON_WIN32
575 bool ShouldWriteInChunks = false;
576#else
577 // Writing a large size of output to Windows console returns ENOMEM. It seems
578 // that, prior to Windows 8, WriteFile() is redirecting to WriteConsole(), and
579 // the latter has a size limit (66000 bytes or less, depending on heap usage).
Reid Kleckner5fb7a582016-01-11 23:33:03 +0000580 bool ShouldWriteInChunks = !!::_isatty(FD) && !RunningWindows8OrGreater();
Yunzhong Gaofb2a9c42016-01-06 00:50:06 +0000581#endif
582
Benjamin Kramerce84a252010-05-05 15:17:47 +0000583 do {
Yunzhong Gaofb2a9c42016-01-06 00:50:06 +0000584 size_t ChunkSize = Size;
585 if (ChunkSize > 32767 && ShouldWriteInChunks)
586 ChunkSize = 32767;
587
588 ssize_t ret = ::write(FD, Ptr, ChunkSize);
Dan Gohmanef969f32010-05-06 01:27:36 +0000589
590 if (ret < 0) {
591 // If it's a recoverable error, swallow it and retry the write.
Dan Gohmandea53102010-05-18 15:25:14 +0000592 //
593 // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since
594 // raw_ostream isn't designed to do non-blocking I/O. However, some
595 // programs, such as old versions of bjam, have mistakenly used
596 // O_NONBLOCK. For compatibility, emulate blocking semantics by
597 // spinning until the write succeeds. If you don't want spinning,
598 // don't use O_NONBLOCK file descriptors with raw_ostream.
Dan Gohmand3511162010-05-06 02:06:20 +0000599 if (errno == EINTR || errno == EAGAIN
600#ifdef EWOULDBLOCK
601 || errno == EWOULDBLOCK
602#endif
603 )
Dan Gohmanef969f32010-05-06 01:27:36 +0000604 continue;
605
606 // Otherwise it's a non-recoverable error. Note it and quit.
607 error_detected();
608 break;
609 }
610
611 // The write may have written some or all of the data. Update the
612 // size and buffer pointer to reflect the remainder that needs
613 // to be written. If there are no bytes left, we're done.
614 Ptr += ret;
615 Size -= ret;
616 } while (Size > 0);
Chris Lattner84b94f72008-08-17 01:35:29 +0000617}
618
Dan Gohman44790e72010-08-18 01:34:52 +0000619void raw_fd_ostream::close() {
620 assert(ShouldClose);
621 ShouldClose = false;
622 flush();
David Majnemer51c2afc2014-10-07 05:48:40 +0000623 if (sys::Process::SafelyCloseFileDescriptor(FD))
624 error_detected();
Dan Gohman44790e72010-08-18 01:34:52 +0000625 FD = -1;
626}
627
Ted Kremeneka2669922009-01-26 21:42:04 +0000628uint64_t raw_fd_ostream::seek(uint64_t off) {
629 flush();
Daniel Dunbardcb50b92009-07-15 08:11:46 +0000630 pos = ::lseek(FD, off, SEEK_SET);
Rafael Espindola642a2212015-04-14 22:54:16 +0000631 if (pos == (uint64_t)-1)
Dan Gohman58fcef92009-07-15 23:25:33 +0000632 error_detected();
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000633 return pos;
Ted Kremeneka2669922009-01-26 21:42:04 +0000634}
635
Rafael Espindola4ba9af12015-04-20 13:04:30 +0000636void raw_fd_ostream::pwrite_impl(const char *Ptr, size_t Size,
637 uint64_t Offset) {
Rafael Espindola37b70152015-04-14 15:00:34 +0000638 uint64_t Pos = tell();
639 seek(Offset);
640 write(Ptr, Size);
641 seek(Pos);
642}
643
Chris Lattnerdd3e9aa2009-12-19 01:38:42 +0000644size_t raw_fd_ostream::preferred_buffer_size() const {
Chris Lattnerca97c922010-07-07 15:52:27 +0000645#if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__minix)
Chris Lattnerc86cdc72010-04-09 20:45:04 +0000646 // Windows and Minix have no st_blksize.
Dan Gohman84487b92009-08-13 17:27:29 +0000647 assert(FD >= 0 && "File not yet open!");
648 struct stat statbuf;
Chris Lattnerdd3e9aa2009-12-19 01:38:42 +0000649 if (fstat(FD, &statbuf) != 0)
650 return 0;
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000651
Chris Lattnerdd3e9aa2009-12-19 01:38:42 +0000652 // If this is a terminal, don't use buffering. Line buffering
653 // would be a more traditional thing to do, but it's not worth
654 // the complexity.
655 if (S_ISCHR(statbuf.st_mode) && isatty(FD))
656 return 0;
657 // Return the preferred block size.
658 return statbuf.st_blksize;
Dan Gohmanfeaeb362010-05-28 16:50:01 +0000659#else
Dan Gohman84487b92009-08-13 17:27:29 +0000660 return raw_ostream::preferred_buffer_size();
Dan Gohmanfeaeb362010-05-28 16:50:01 +0000661#endif
Dan Gohman84487b92009-08-13 17:27:29 +0000662}
663
Torok Edwin9b5a47f2009-06-04 07:09:50 +0000664raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
665 bool bg) {
666 if (sys::Process::ColorNeedsFlush())
667 flush();
668 const char *colorcode =
669 (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg)
670 : sys::Process::OutputColor(colors, bold, bg);
671 if (colorcode) {
Dan Gohmanf199ad62009-07-16 15:24:40 +0000672 size_t len = strlen(colorcode);
Torok Edwin9b5a47f2009-06-04 07:09:50 +0000673 write(colorcode, len);
674 // don't account colors towards output characters
675 pos -= len;
676 }
677 return *this;
678}
679
680raw_ostream &raw_fd_ostream::resetColor() {
681 if (sys::Process::ColorNeedsFlush())
682 flush();
683 const char *colorcode = sys::Process::ResetColor();
684 if (colorcode) {
Dan Gohmanf199ad62009-07-16 15:24:40 +0000685 size_t len = strlen(colorcode);
Torok Edwin9b5a47f2009-06-04 07:09:50 +0000686 write(colorcode, len);
687 // don't account colors towards output characters
688 pos -= len;
689 }
690 return *this;
691}
692
Benjamin Kramer13d16f32012-04-16 08:56:50 +0000693raw_ostream &raw_fd_ostream::reverseColor() {
694 if (sys::Process::ColorNeedsFlush())
695 flush();
696 const char *colorcode = sys::Process::OutputReverse();
697 if (colorcode) {
698 size_t len = strlen(colorcode);
699 write(colorcode, len);
700 // don't account colors towards output characters
701 pos -= len;
702 }
703 return *this;
704}
705
Dan Gohmane5929232009-09-11 20:46:33 +0000706bool raw_fd_ostream::is_displayed() const {
707 return sys::Process::FileDescriptorIsDisplayed(FD);
708}
709
Daniel Dunbar04b45832012-07-20 18:29:41 +0000710bool raw_fd_ostream::has_colors() const {
711 return sys::Process::FileDescriptorHasColors(FD);
712}
713
Chris Lattnerd3723fc2008-08-17 04:13:37 +0000714//===----------------------------------------------------------------------===//
Dan Gohmane9a46912010-08-20 16:44:56 +0000715// outs(), errs(), nulls()
Chris Lattnerd3723fc2008-08-17 04:13:37 +0000716//===----------------------------------------------------------------------===//
Chris Lattner84b94f72008-08-17 01:35:29 +0000717
Chris Lattnerd3723fc2008-08-17 04:13:37 +0000718/// outs() - This returns a reference to a raw_ostream for standard output.
719/// Use it like: outs() << "foo" << "bar";
Owen Anderson93719642008-08-21 00:14:44 +0000720raw_ostream &llvm::outs() {
Dan Gohman443f2d62010-08-20 16:39:41 +0000721 // Set buffer settings to model stdout behavior.
Hans Wennborg0fc52d42014-07-17 18:33:44 +0000722 // Delete the file descriptor when the program exits, forcing error
Dan Gohmane9a46912010-08-20 16:44:56 +0000723 // detection. If you don't want this behavior, don't use outs().
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000724 std::error_code EC;
725 static raw_fd_ostream S("-", EC, sys::fs::F_None);
726 assert(!EC);
Chris Lattnerd3723fc2008-08-17 04:13:37 +0000727 return S;
728}
729
730/// errs() - This returns a reference to a raw_ostream for standard error.
731/// Use it like: errs() << "foo" << "bar";
Owen Anderson93719642008-08-21 00:14:44 +0000732raw_ostream &llvm::errs() {
Dan Gohman443f2d62010-08-20 16:39:41 +0000733 // Set standard error to be unbuffered by default.
734 static raw_fd_ostream S(STDERR_FILENO, false, true);
Chris Lattnerd3723fc2008-08-17 04:13:37 +0000735 return S;
736}
737
Daniel Dunbar95a551a2009-07-16 21:17:53 +0000738/// nulls() - This returns a reference to a raw_ostream which discards output.
739raw_ostream &llvm::nulls() {
740 static raw_null_ostream S;
741 return S;
742}
743
Douglas Gregorb231e572009-04-20 07:34:17 +0000744
Chris Lattner205af962008-08-23 22:43:04 +0000745//===----------------------------------------------------------------------===//
746// raw_string_ostream
747//===----------------------------------------------------------------------===//
748
Daniel Dunbard882f4b2009-08-18 20:07:36 +0000749raw_string_ostream::~raw_string_ostream() {
750 flush();
751}
752
Dan Gohmanf199ad62009-07-16 15:24:40 +0000753void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
Daniel Dunbardb7a36c2009-03-16 23:29:31 +0000754 OS.append(Ptr, Size);
Chris Lattner205af962008-08-23 22:43:04 +0000755}
756
757//===----------------------------------------------------------------------===//
758// raw_svector_ostream
759//===----------------------------------------------------------------------===//
760
Yaron Keren3d1173b2015-08-13 06:19:52 +0000761uint64_t raw_svector_ostream::current_pos() const { return OS.size(); }
Daniel Dunbarb090bf42009-08-19 17:54:29 +0000762
Yaron Keren3d1173b2015-08-13 06:19:52 +0000763void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
764 OS.append(Ptr, Ptr + Size);
Nick Lewyckye2f6fb52015-08-13 18:10:19 +0000765}
Daniel Dunbard882f4b2009-08-18 20:07:36 +0000766
Rafael Espindola4ba9af12015-04-20 13:04:30 +0000767void raw_svector_ostream::pwrite_impl(const char *Ptr, size_t Size,
768 uint64_t Offset) {
Yaron Keren3d1173b2015-08-13 06:19:52 +0000769 memcpy(OS.data() + Offset, Ptr, Size);
Daniel Dunbare813cba2009-08-19 18:40:58 +0000770}
771
Daniel Dunbar95a551a2009-07-16 21:17:53 +0000772//===----------------------------------------------------------------------===//
773// raw_null_ostream
774//===----------------------------------------------------------------------===//
775
Dan Gohman4b66b472009-07-27 21:46:02 +0000776raw_null_ostream::~raw_null_ostream() {
777#ifndef NDEBUG
778 // ~raw_ostream asserts that the buffer is empty. This isn't necessary
779 // with raw_null_ostream, but it's better to have raw_null_ostream follow
780 // the rules than to change the rules just for raw_null_ostream.
781 flush();
782#endif
783}
784
Daniel Dunbar95a551a2009-07-16 21:17:53 +0000785void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
786}
787
Chris Lattnerdd3e9aa2009-12-19 01:38:42 +0000788uint64_t raw_null_ostream::current_pos() const {
Daniel Dunbar95a551a2009-07-16 21:17:53 +0000789 return 0;
790}
Rafael Espindola37b70152015-04-14 15:00:34 +0000791
Rafael Espindola4ba9af12015-04-20 13:04:30 +0000792void raw_null_ostream::pwrite_impl(const char *Ptr, size_t Size,
793 uint64_t Offset) {}