blob: df4c8dc376b579c9499d0bff87ef388ddb8b42b8 [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"
Eugene Zelenko33d7b762016-08-23 17:14:32 +000026#include <algorithm>
Benjamin Krameref14f802010-01-29 15:19:06 +000027#include <cctype>
Benjamin Kramerce84a252010-05-05 15:17:47 +000028#include <cerrno>
Eugene Zelenko33d7b762016-08-23 17:14:32 +000029#include <cstdio>
30#include <iterator>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000031#include <system_error>
Eugene Zelenko33d7b762016-08-23 17:14:32 +000032#include <sys/stat.h>
Chris Lattner84b94f72008-08-17 01:35:29 +000033
NAKAMURA Takumi212c80a2013-07-17 02:21:10 +000034// <fcntl.h> may provide O_BINARY.
35#if defined(HAVE_FCNTL_H)
36# include <fcntl.h>
37#endif
38
Chris Lattnerd564f292008-08-22 15:45:00 +000039#if defined(HAVE_UNISTD_H)
40# include <unistd.h>
41#endif
Daniel Dunbar4fed8872011-02-03 03:32:32 +000042#if defined(HAVE_SYS_UIO_H) && defined(HAVE_WRITEV)
43# include <sys/uio.h>
44#endif
Argyrios Kyrtzidisb97ff822008-08-17 09:25:21 +000045
NAKAMURA Takumife84f392010-10-19 01:21:55 +000046#if defined(__CYGWIN__)
47#include <io.h>
48#endif
49
Argyrios Kyrtzidisb97ff822008-08-17 09:25:21 +000050#if defined(_MSC_VER)
Chris Lattner84b94f72008-08-17 01:35:29 +000051#include <io.h>
Owen Anderson93719642008-08-21 00:14:44 +000052#ifndef STDIN_FILENO
53# define STDIN_FILENO 0
54#endif
55#ifndef STDOUT_FILENO
56# define STDOUT_FILENO 1
57#endif
58#ifndef STDERR_FILENO
59# define STDERR_FILENO 2
60#endif
Chris Lattner84b94f72008-08-17 01:35:29 +000061#endif
62
Yunzhong Gaofb2a9c42016-01-06 00:50:06 +000063#ifdef LLVM_ON_WIN32
64#include "Windows/WindowsSupport.h"
65#endif
66
Chris Lattnerd564f292008-08-22 15:45:00 +000067using namespace llvm;
68
Dan Gohman58fcef92009-07-15 23:25:33 +000069raw_ostream::~raw_ostream() {
Dan Gohman1b763292009-07-27 20:49:44 +000070 // raw_ostream's subclasses should take care to flush the buffer
71 // in their destructors.
72 assert(OutBufCur == OutBufStart &&
73 "raw_ostream destructor called with non-empty buffer!");
74
Daniel Dunbar317a6cd2009-08-18 23:42:36 +000075 if (BufferMode == InternalBuffer)
76 delete [] OutBufStart;
Dan Gohman58fcef92009-07-15 23:25:33 +000077}
Chris Lattnerd564f292008-08-22 15:45:00 +000078
Chris Lattner84b94f72008-08-17 01:35:29 +000079// An out of line virtual method to provide a home for the class vtable.
80void raw_ostream::handle() {}
81
Chris Lattnerdd3e9aa2009-12-19 01:38:42 +000082size_t raw_ostream::preferred_buffer_size() const {
Dan Gohman84487b92009-08-13 17:27:29 +000083 // BUFSIZ is intended to be a reasonable default.
84 return BUFSIZ;
85}
86
87void raw_ostream::SetBuffered() {
88 // Ask the subclass to determine an appropriate buffer size.
Dan Gohman17710222009-08-15 02:05:19 +000089 if (size_t Size = preferred_buffer_size())
90 SetBufferSize(Size);
91 else
92 // It may return 0, meaning this stream should be unbuffered.
93 SetUnbuffered();
Dan Gohman84487b92009-08-13 17:27:29 +000094}
95
Dan Gohmanb452d4e2010-03-24 19:38:02 +000096void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size,
Nick Lewycky7bfd86d2011-08-28 03:30:02 +000097 BufferKind Mode) {
Craig Topper2617dcc2014-04-15 06:32:26 +000098 assert(((Mode == Unbuffered && !BufferStart && Size == 0) ||
99 (Mode != Unbuffered && BufferStart && Size != 0)) &&
Daniel Dunbar316b4a02009-09-15 20:31:46 +0000100 "stream must be unbuffered or have at least one byte");
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000101 // Make sure the current buffer is free of content (we can't flush here; the
102 // child buffer management logic will be in write_impl).
103 assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!");
Dan Gohman54401d42009-08-13 15:58:55 +0000104
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000105 if (BufferMode == InternalBuffer)
106 delete [] OutBufStart;
107 OutBufStart = BufferStart;
Dan Gohman54401d42009-08-13 15:58:55 +0000108 OutBufEnd = OutBufStart+Size;
109 OutBufCur = OutBufStart;
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000110 BufferMode = Mode;
Daniel Dunbarb090bf42009-08-19 17:54:29 +0000111
112 assert(OutBufStart <= OutBufEnd && "Invalid size!");
Dan Gohman54401d42009-08-13 15:58:55 +0000113}
114
Owen Andersond2850532008-08-21 20:58:52 +0000115raw_ostream &raw_ostream::operator<<(unsigned long N) {
116 // Zero is a special case.
117 if (N == 0)
118 return *this << '0';
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000119
Owen Andersond2850532008-08-21 20:58:52 +0000120 char NumberBuffer[20];
121 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
122 char *CurPtr = EndPtr;
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000123
Owen Andersond2850532008-08-21 20:58:52 +0000124 while (N) {
125 *--CurPtr = '0' + char(N % 10);
126 N /= 10;
127 }
128 return write(CurPtr, EndPtr-CurPtr);
129}
130
131raw_ostream &raw_ostream::operator<<(long N) {
132 if (N < 0) {
Daniel Dunbar7a9bb9e2009-03-16 22:00:17 +0000133 *this << '-';
Eli Friedman53ba2082011-10-13 22:49:56 +0000134 // Avoid undefined behavior on LONG_MIN with a cast.
135 N = -(unsigned long)N;
Owen Andersond2850532008-08-21 20:58:52 +0000136 }
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000137
Owen Andersond2850532008-08-21 20:58:52 +0000138 return this->operator<<(static_cast<unsigned long>(N));
139}
140
141raw_ostream &raw_ostream::operator<<(unsigned long long N) {
Daniel Dunbar465de3e2009-08-19 16:25:25 +0000142 // Output using 32-bit div/mod when possible.
Daniel Dunbara94f58a2009-07-29 06:45:14 +0000143 if (N == static_cast<unsigned long>(N))
144 return this->operator<<(static_cast<unsigned long>(N));
145
Daniel Dunbar465de3e2009-08-19 16:25:25 +0000146 char NumberBuffer[20];
Craig Topperab3d2ac2016-01-31 01:12:35 +0000147 char *EndPtr = std::end(NumberBuffer);
Daniel Dunbar465de3e2009-08-19 16:25:25 +0000148 char *CurPtr = EndPtr;
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000149
Daniel Dunbar465de3e2009-08-19 16:25:25 +0000150 while (N) {
151 *--CurPtr = '0' + char(N % 10);
152 N /= 10;
153 }
154 return write(CurPtr, EndPtr-CurPtr);
Owen Andersond2850532008-08-21 20:58:52 +0000155}
156
157raw_ostream &raw_ostream::operator<<(long long N) {
Chris Lattner3db3bb02010-08-03 16:41:24 +0000158 if (N < 0) {
Daniel Dunbar7a9bb9e2009-03-16 22:00:17 +0000159 *this << '-';
Chris Lattner3db3bb02010-08-03 16:41:24 +0000160 // Avoid undefined behavior on INT64_MIN with a cast.
161 N = -(unsigned long long)N;
Owen Andersond2850532008-08-21 20:58:52 +0000162 }
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000163
Owen Andersond2850532008-08-21 20:58:52 +0000164 return this->operator<<(static_cast<unsigned long long>(N));
165}
166
Daniel Dunbar6c9629b2009-07-30 18:21:23 +0000167raw_ostream &raw_ostream::write_hex(unsigned long long N) {
Daniel Dunbar87862182009-03-16 22:08:44 +0000168 // Zero is a special case.
169 if (N == 0)
170 return *this << '0';
171
Craig Topperca919dc2016-01-31 01:12:38 +0000172 char NumberBuffer[16];
Craig Topperab3d2ac2016-01-31 01:12:35 +0000173 char *EndPtr = std::end(NumberBuffer);
Daniel Dunbar87862182009-03-16 22:08:44 +0000174 char *CurPtr = EndPtr;
175
176 while (N) {
Craig Topperd08f32f2016-02-04 06:51:38 +0000177 unsigned char x = static_cast<unsigned char>(N) % 16;
178 *--CurPtr = hexdigit(x, /*LowerCase*/true);
Daniel Dunbar87862182009-03-16 22:08:44 +0000179 N /= 16;
180 }
181
182 return write(CurPtr, EndPtr-CurPtr);
Chris Lattner0c19df42008-08-23 22:23:09 +0000183}
184
Daniel Dunbar65dc8912010-11-27 07:59:50 +0000185raw_ostream &raw_ostream::write_escaped(StringRef Str,
186 bool UseHexEscapes) {
Craig Topper775fb732016-02-04 06:51:41 +0000187 for (unsigned char c : Str) {
Daniel Dunbar4108c432009-10-17 20:43:08 +0000188 switch (c) {
189 case '\\':
190 *this << '\\' << '\\';
191 break;
192 case '\t':
193 *this << '\\' << 't';
194 break;
195 case '\n':
196 *this << '\\' << 'n';
197 break;
198 case '"':
199 *this << '\\' << '"';
200 break;
201 default:
202 if (std::isprint(c)) {
203 *this << c;
204 break;
205 }
206
Daniel Dunbar65dc8912010-11-27 07:59:50 +0000207 // Write out the escaped representation.
208 if (UseHexEscapes) {
209 *this << '\\' << 'x';
210 *this << hexdigit((c >> 4 & 0xF));
211 *this << hexdigit((c >> 0) & 0xF);
212 } else {
213 // Always use a full 3-character octal escape.
214 *this << '\\';
215 *this << char('0' + ((c >> 6) & 7));
216 *this << char('0' + ((c >> 3) & 7));
217 *this << char('0' + ((c >> 0) & 7));
218 }
Daniel Dunbar4108c432009-10-17 20:43:08 +0000219 }
220 }
221
222 return *this;
223}
224
Daniel Dunbar6c9629b2009-07-30 18:21:23 +0000225raw_ostream &raw_ostream::operator<<(const void *P) {
226 *this << '0' << 'x';
227
228 return write_hex((uintptr_t) P);
229}
230
Chris Lattner06fa1762009-08-24 03:52:50 +0000231raw_ostream &raw_ostream::operator<<(double N) {
NAKAMURA Takumibac0d762011-03-18 09:30:10 +0000232#ifdef _WIN32
233 // On MSVCRT and compatible, output of %e is incompatible to Posix
234 // by default. Number of exponent digits should be at least 2. "%+03d"
235 // FIXME: Implement our formatter to here or Support/Format.h!
Hal Finkel29f51312016-03-28 11:13:03 +0000236#if defined(__MINGW32__)
NAKAMURA Takumi79addb82014-01-12 14:44:46 +0000237 // FIXME: It should be generic to C++11.
238 if (N == 0.0 && std::signbit(N))
239 return *this << "-0.000000e+00";
240#else
NAKAMURA Takumibac0d762011-03-18 09:30:10 +0000241 int fpcl = _fpclass(N);
242
243 // negative zero
244 if (fpcl == _FPCLASS_NZ)
245 return *this << "-0.000000e+00";
NAKAMURA Takumi79addb82014-01-12 14:44:46 +0000246#endif
NAKAMURA Takumibac0d762011-03-18 09:30:10 +0000247
248 char buf[16];
249 unsigned len;
Benjamin Krameraf09f222015-02-15 22:15:41 +0000250 len = format("%e", N).snprint(buf, sizeof(buf));
NAKAMURA Takumibac0d762011-03-18 09:30:10 +0000251 if (len <= sizeof(buf) - 2) {
252 if (len >= 5 && buf[len - 5] == 'e' && buf[len - 3] == '0') {
253 int cs = buf[len - 4];
254 if (cs == '+' || cs == '-') {
255 int c1 = buf[len - 2];
256 int c0 = buf[len - 1];
Guy Benyei83c74e92013-02-12 21:21:59 +0000257 if (isdigit(static_cast<unsigned char>(c1)) &&
258 isdigit(static_cast<unsigned char>(c0))) {
NAKAMURA Takumibac0d762011-03-18 09:30:10 +0000259 // Trim leading '0': "...e+012" -> "...e+12\0"
260 buf[len - 3] = c1;
261 buf[len - 2] = c0;
262 buf[--len] = 0;
263 }
264 }
265 }
266 return this->operator<<(buf);
267 }
268#endif
Benjamin Kramer6bee24a2010-01-29 14:40:33 +0000269 return this->operator<<(format("%e", N));
Chris Lattner06fa1762009-08-24 03:52:50 +0000270}
271
Daniel Dunbard24535f2009-03-16 22:55:06 +0000272void raw_ostream::flush_nonempty() {
273 assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty.");
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000274 size_t Length = OutBufCur - OutBufStart;
275 OutBufCur = OutBufStart;
276 write_impl(OutBufStart, Length);
Daniel Dunbard24535f2009-03-16 22:55:06 +0000277}
278
Daniel Dunbar7a9bb9e2009-03-16 22:00:17 +0000279raw_ostream &raw_ostream::write(unsigned char C) {
Daniel Dunbar64fa3862009-03-17 01:36:56 +0000280 // Group exceptional cases into a single branch.
Benjamin Kramerbd7f8d02012-08-29 22:57:00 +0000281 if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) {
282 if (LLVM_UNLIKELY(!OutBufStart)) {
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000283 if (BufferMode == Unbuffered) {
Dan Gohman23f90c12009-08-18 20:09:59 +0000284 write_impl(reinterpret_cast<char*>(&C), 1);
285 return *this;
286 }
Daniel Dunbar0cf16862009-08-19 00:23:39 +0000287 // Set up a buffer and start over.
288 SetBuffered();
289 return write(C);
Dan Gohman23f90c12009-08-18 20:09:59 +0000290 }
Daniel Dunbar0cf16862009-08-19 00:23:39 +0000291
292 flush_nonempty();
Daniel Dunbar2d603da2009-03-17 01:13:35 +0000293 }
294
Daniel Dunbar7a9bb9e2009-03-16 22:00:17 +0000295 *OutBufCur++ = C;
Daniel Dunbar87862182009-03-16 22:08:44 +0000296 return *this;
Daniel Dunbar7a9bb9e2009-03-16 22:00:17 +0000297}
Chris Lattner0c19df42008-08-23 22:23:09 +0000298
Dan Gohmanf199ad62009-07-16 15:24:40 +0000299raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) {
Daniel Dunbar64fa3862009-03-17 01:36:56 +0000300 // Group exceptional cases into a single branch.
Benjamin Kramerbd7f8d02012-08-29 22:57:00 +0000301 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
302 if (LLVM_UNLIKELY(!OutBufStart)) {
Daniel Dunbar317a6cd2009-08-18 23:42:36 +0000303 if (BufferMode == Unbuffered) {
Dan Gohman52022c22009-08-13 15:44:52 +0000304 write_impl(Ptr, Size);
305 return *this;
306 }
307 // Set up a buffer and start over.
Dan Gohman84487b92009-08-13 17:27:29 +0000308 SetBuffered();
Dan Gohman52022c22009-08-13 15:44:52 +0000309 return write(Ptr, Size);
310 }
Daniel Dunbar0cf16862009-08-19 00:23:39 +0000311
Benjamin Kramerdfb0ad32011-03-04 19:49:30 +0000312 size_t NumBytes = OutBufEnd - OutBufCur;
313
Benjamin Krameracf08422011-03-04 18:18:16 +0000314 // If the buffer is empty at this point we have a string that is larger
Benjamin Kramerdfb0ad32011-03-04 19:49:30 +0000315 // than the buffer. Directly write the chunk that is a multiple of the
316 // preferred buffer size and put the remainder in the buffer.
Benjamin Kramerbd7f8d02012-08-29 22:57:00 +0000317 if (LLVM_UNLIKELY(OutBufCur == OutBufStart)) {
Michael Ilseman5be22a12014-12-12 21:48:03 +0000318 assert(NumBytes != 0 && "undefined behavior");
Benjamin Kramerdfb0ad32011-03-04 19:49:30 +0000319 size_t BytesToWrite = Size - (Size % NumBytes);
320 write_impl(Ptr, BytesToWrite);
Matt Beaumont-Gaya182be82013-03-12 23:55:24 +0000321 size_t BytesRemaining = Size - BytesToWrite;
322 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
323 // Too much left over to copy into our buffer.
324 return write(Ptr + BytesToWrite, BytesRemaining);
325 }
326 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);
Benjamin Krameracf08422011-03-04 18:18:16 +0000327 return *this;
328 }
329
330 // We don't have enough space in the buffer to fit the string in. Insert as
331 // much as possible, flush and start over with the remainder.
Benjamin Krameracf08422011-03-04 18:18:16 +0000332 copy_to_buffer(Ptr, NumBytes);
333 flush_nonempty();
334 return write(Ptr + NumBytes, Size - NumBytes);
Daniel Dunbar64fa3862009-03-17 01:36:56 +0000335 }
Dan Gohman52022c22009-08-13 15:44:52 +0000336
337 copy_to_buffer(Ptr, Size);
338
339 return *this;
340}
341
342void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) {
Dan Gohmanc04a00a2009-08-13 20:32:03 +0000343 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
Dan Gohman98205552009-08-13 18:38:15 +0000344
Owen Andersond2850532008-08-21 20:58:52 +0000345 // Handle short strings specially, memcpy isn't very good at very short
346 // strings.
347 switch (Size) {
Justin Bognercd1d5aa2016-08-17 20:30:52 +0000348 case 4: OutBufCur[3] = Ptr[3]; LLVM_FALLTHROUGH;
349 case 3: OutBufCur[2] = Ptr[2]; LLVM_FALLTHROUGH;
350 case 2: OutBufCur[1] = Ptr[1]; LLVM_FALLTHROUGH;
351 case 1: OutBufCur[0] = Ptr[0]; LLVM_FALLTHROUGH;
Owen Andersond2850532008-08-21 20:58:52 +0000352 case 0: break;
353 default:
Dan Gohman52022c22009-08-13 15:44:52 +0000354 memcpy(OutBufCur, Ptr, Size);
Owen Andersond2850532008-08-21 20:58:52 +0000355 break;
356 }
Daniel Dunbar3da6a702009-03-10 16:21:55 +0000357
Dan Gohman52022c22009-08-13 15:44:52 +0000358 OutBufCur += Size;
Owen Andersond2850532008-08-21 20:58:52 +0000359}
360
Chris Lattner22b52c92008-08-23 19:23:10 +0000361// Formatted output.
362raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) {
Daniel Dunbar64fa3862009-03-17 01:36:56 +0000363 // If we have more than a few bytes left in our output buffer, try
364 // formatting directly onto its end.
Dan Gohmanf199ad62009-07-16 15:24:40 +0000365 size_t NextBufferSize = 127;
Daniel Dunbar47a309c2009-08-23 20:31:39 +0000366 size_t BufferBytesLeft = OutBufEnd - OutBufCur;
367 if (BufferBytesLeft > 3) {
Dan Gohmanf199ad62009-07-16 15:24:40 +0000368 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000369
Chris Lattner22b52c92008-08-23 19:23:10 +0000370 // Common case is that we have plenty of space.
Daniel Dunbar47a309c2009-08-23 20:31:39 +0000371 if (BytesUsed <= BufferBytesLeft) {
Chris Lattner22b52c92008-08-23 19:23:10 +0000372 OutBufCur += BytesUsed;
373 return *this;
374 }
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000375
Chris Lattner22b52c92008-08-23 19:23:10 +0000376 // Otherwise, we overflowed and the return value tells us the size to try
377 // again with.
378 NextBufferSize = BytesUsed;
379 }
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000380
Chris Lattner22b52c92008-08-23 19:23:10 +0000381 // If we got here, we didn't have enough space in the output buffer for the
382 // string. Try printing into a SmallVector that is resized to have enough
383 // space. Iterate until we win.
384 SmallVector<char, 128> V;
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000385
Eugene Zelenko33d7b762016-08-23 17:14:32 +0000386 while (true) {
Chris Lattner22b52c92008-08-23 19:23:10 +0000387 V.resize(NextBufferSize);
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000388
Chris Lattner22b52c92008-08-23 19:23:10 +0000389 // Try formatting into the SmallVector.
Daniel Dunbar47a309c2009-08-23 20:31:39 +0000390 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000391
Chris Lattner22b52c92008-08-23 19:23:10 +0000392 // If BytesUsed fit into the vector, we win.
Chris Lattner2bfc72e2008-10-26 19:20:47 +0000393 if (BytesUsed <= NextBufferSize)
Daniel Dunbar47a309c2009-08-23 20:31:39 +0000394 return write(V.data(), BytesUsed);
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000395
Chris Lattner22b52c92008-08-23 19:23:10 +0000396 // Otherwise, try again with a new size.
397 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
398 NextBufferSize = BytesUsed;
399 }
400}
401
Nick Kledzike6480372014-09-25 20:30:58 +0000402raw_ostream &raw_ostream::operator<<(const FormattedString &FS) {
403 unsigned Len = FS.Str.size();
404 int PadAmount = FS.Width - Len;
405 if (FS.RightJustify && (PadAmount > 0))
406 this->indent(PadAmount);
407 this->operator<<(FS.Str);
408 if (!FS.RightJustify && (PadAmount > 0))
409 this->indent(PadAmount);
410 return *this;
411}
412
413raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) {
414 if (FN.Hex) {
415 unsigned Nibbles = (64 - countLeadingZeros(FN.HexValue)+3)/4;
Zachary Turner39571b32015-01-26 18:21:33 +0000416 unsigned PrefixChars = FN.HexPrefix ? 2 : 0;
417 unsigned Width = std::max(FN.Width, Nibbles + PrefixChars);
418
Nick Kledzike6480372014-09-25 20:30:58 +0000419 char NumberBuffer[20] = "0x0000000000000000";
Zachary Turner39571b32015-01-26 18:21:33 +0000420 if (!FN.HexPrefix)
421 NumberBuffer[1] = '0';
Nick Kledzike6480372014-09-25 20:30:58 +0000422 char *EndPtr = NumberBuffer+Width;
423 char *CurPtr = EndPtr;
Nick Kledzike6480372014-09-25 20:30:58 +0000424 unsigned long long N = FN.HexValue;
425 while (N) {
Craig Topper52fa32d2016-02-08 01:03:01 +0000426 unsigned char x = static_cast<unsigned char>(N) % 16;
427 *--CurPtr = hexdigit(x, !FN.Upper);
Nick Kledzike6480372014-09-25 20:30:58 +0000428 N /= 16;
429 }
430
431 return write(NumberBuffer, Width);
432 } else {
433 // Zero is a special case.
434 if (FN.DecValue == 0) {
435 this->indent(FN.Width-1);
436 return *this << '0';
437 }
438 char NumberBuffer[32];
439 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
440 char *CurPtr = EndPtr;
441 bool Neg = (FN.DecValue < 0);
David Majnemer4b3c90f2014-09-26 02:48:14 +0000442 uint64_t N = Neg ? -static_cast<uint64_t>(FN.DecValue) : FN.DecValue;
Nick Kledzike6480372014-09-25 20:30:58 +0000443 while (N) {
444 *--CurPtr = '0' + char(N % 10);
445 N /= 10;
446 }
447 int Len = EndPtr - CurPtr;
448 int Pad = FN.Width - Len;
449 if (Neg)
450 --Pad;
451 if (Pad > 0)
452 this->indent(Pad);
453 if (Neg)
454 *this << '-';
455 return write(CurPtr, Len);
456 }
457}
458
Chris Lattnere6db2c32009-08-22 23:10:29 +0000459/// indent - Insert 'NumSpaces' spaces.
460raw_ostream &raw_ostream::indent(unsigned NumSpaces) {
Dan Gohmanf88f52e2009-08-24 04:13:01 +0000461 static const char Spaces[] = " "
462 " "
463 " ";
Chris Lattnere6db2c32009-08-22 23:10:29 +0000464
465 // Usually the indentation is small, handle it with a fastpath.
Dan Gohmanc9fa0512009-08-24 04:43:38 +0000466 if (NumSpaces < array_lengthof(Spaces))
Chris Lattnere6db2c32009-08-22 23:10:29 +0000467 return write(Spaces, NumSpaces);
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000468
Chris Lattnere6db2c32009-08-22 23:10:29 +0000469 while (NumSpaces) {
Dan Gohmanc9fa0512009-08-24 04:43:38 +0000470 unsigned NumToWrite = std::min(NumSpaces,
471 (unsigned)array_lengthof(Spaces)-1);
Chris Lattnere6db2c32009-08-22 23:10:29 +0000472 write(Spaces, NumToWrite);
473 NumSpaces -= NumToWrite;
474 }
475 return *this;
476}
477
Chris Lattner22b52c92008-08-23 19:23:10 +0000478//===----------------------------------------------------------------------===//
479// Formatted Output
480//===----------------------------------------------------------------------===//
481
482// Out of line virtual method.
483void format_object_base::home() {
484}
485
Chris Lattner84b94f72008-08-17 01:35:29 +0000486//===----------------------------------------------------------------------===//
487// raw_fd_ostream
488//===----------------------------------------------------------------------===//
489
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000490static int getFD(StringRef Filename, std::error_code &EC,
491 sys::fs::OpenFlags Flags) {
Dan Gohmanc825cee2010-08-18 22:26:19 +0000492 // Handle "-" as stdout. Note that when we do this, we consider ourself
493 // the owner of stdout. This means that we can do things like close the
494 // file descriptor when we're done and set the "binary" flag globally.
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000495 if (Filename == "-") {
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000496 EC = std::error_code();
Daniel Dunbared90e702008-11-13 05:01:07 +0000497 // If user requested binary then put stdout into binary mode if
498 // possible.
Rafael Espindola90c7f1c2014-02-24 18:20:12 +0000499 if (!(Flags & sys::fs::F_Text))
Rafael Espindolacb2eca02013-06-12 20:58:35 +0000500 sys::ChangeStdoutToBinary();
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000501 return STDOUT_FILENO;
Chris Lattnerd5bc0682008-08-17 03:53:23 +0000502 }
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000503
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000504 int FD;
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000505 EC = sys::fs::openFileForWrite(Filename, FD, Flags);
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000506 if (EC)
507 return -1;
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000508
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000509 return FD;
Chris Lattner84b94f72008-08-17 01:35:29 +0000510}
511
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000512raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC,
513 sys::fs::OpenFlags Flags)
514 : raw_fd_ostream(getFD(Filename, EC, Flags), true) {}
515
Rafael Espindola62e6ec02015-04-09 16:59:07 +0000516/// FD is the file descriptor that this writes to. If ShouldClose is true, this
517/// closes the file when the stream is destroyed.
Francois Picheta3037c32010-10-14 20:30:58 +0000518raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered)
Rafael Espindola37b70152015-04-14 15:00:34 +0000519 : raw_pwrite_stream(unbuffered), FD(fd), ShouldClose(shouldClose),
Rafael Espindola3f210fc2015-12-16 22:59:06 +0000520 Error(false) {
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000521 if (FD < 0 ) {
522 ShouldClose = false;
523 return;
524 }
Michael J. Spencerb7479902011-01-17 15:53:12 +0000525
526 // Get the starting position.
527 off_t loc = ::lseek(FD, 0, SEEK_CUR);
Rafael Espindolaa9b84ab2015-04-13 11:09:48 +0000528#ifdef LLVM_ON_WIN32
529 // MSVCRT's _lseek(SEEK_CUR) doesn't return -1 for pipes.
530 sys::fs::file_status Status;
531 std::error_code EC = status(FD, Status);
532 SupportsSeeking = !EC && Status.type() == sys::fs::file_type::regular_file;
533#else
Rafael Espindola74d2f612015-04-10 18:15:51 +0000534 SupportsSeeking = loc != (off_t)-1;
Rafael Espindolaa9b84ab2015-04-13 11:09:48 +0000535#endif
Rafael Espindola74d2f612015-04-10 18:15:51 +0000536 if (!SupportsSeeking)
Michael J. Spencerb7479902011-01-17 15:53:12 +0000537 pos = 0;
538 else
539 pos = static_cast<uint64_t>(loc);
Francois Picheta3037c32010-10-14 20:30:58 +0000540}
541
Chris Lattner84b94f72008-08-17 01:35:29 +0000542raw_fd_ostream::~raw_fd_ostream() {
Dan Gohman38adfdd2010-08-20 16:34:20 +0000543 if (FD >= 0) {
544 flush();
David Majnemer51c2afc2014-10-07 05:48:40 +0000545 if (ShouldClose && sys::Process::SafelyCloseFileDescriptor(FD))
546 error_detected();
Dan Gohman38adfdd2010-08-20 16:34:20 +0000547 }
548
NAKAMURA Takumi76e68ea2011-03-16 02:53:39 +0000549#ifdef __MINGW32__
550 // On mingw, global dtors should not call exit().
551 // report_fatal_error() invokes exit(). We know report_fatal_error()
552 // might not write messages to stderr when any errors were detected
553 // on FD == 2.
554 if (FD == 2) return;
555#endif
556
Dan Gohman38adfdd2010-08-20 16:34:20 +0000557 // If there are any pending errors, report them now. Clients wishing
558 // to avoid report_fatal_error calls should check for errors with
559 // has_error() and clear the error flag with clear_error() before
560 // destructing raw_ostream objects which may have errors.
561 if (has_error())
Chad Rosier7ce810c2013-03-27 18:30:00 +0000562 report_fatal_error("IO failure on output stream.", /*GenCrashDiag=*/false);
Chris Lattnerce3b2c32010-08-17 23:11:56 +0000563}
Chris Lattner9e6f1f12009-08-23 02:51:22 +0000564
Dan Gohmanf199ad62009-07-16 15:24:40 +0000565void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000566 assert(FD >= 0 && "File already closed.");
Daniel Dunbardb7a36c2009-03-16 23:29:31 +0000567 pos += Size;
Dan Gohmanef969f32010-05-06 01:27:36 +0000568
Yunzhong Gaofb2a9c42016-01-06 00:50:06 +0000569#ifndef LLVM_ON_WIN32
570 bool ShouldWriteInChunks = false;
571#else
572 // Writing a large size of output to Windows console returns ENOMEM. It seems
573 // that, prior to Windows 8, WriteFile() is redirecting to WriteConsole(), and
574 // the latter has a size limit (66000 bytes or less, depending on heap usage).
Reid Kleckner5fb7a582016-01-11 23:33:03 +0000575 bool ShouldWriteInChunks = !!::_isatty(FD) && !RunningWindows8OrGreater();
Yunzhong Gaofb2a9c42016-01-06 00:50:06 +0000576#endif
577
Benjamin Kramerce84a252010-05-05 15:17:47 +0000578 do {
Yunzhong Gaofb2a9c42016-01-06 00:50:06 +0000579 size_t ChunkSize = Size;
580 if (ChunkSize > 32767 && ShouldWriteInChunks)
581 ChunkSize = 32767;
582
583 ssize_t ret = ::write(FD, Ptr, ChunkSize);
Dan Gohmanef969f32010-05-06 01:27:36 +0000584
585 if (ret < 0) {
586 // If it's a recoverable error, swallow it and retry the write.
Dan Gohmandea53102010-05-18 15:25:14 +0000587 //
588 // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since
589 // raw_ostream isn't designed to do non-blocking I/O. However, some
590 // programs, such as old versions of bjam, have mistakenly used
591 // O_NONBLOCK. For compatibility, emulate blocking semantics by
592 // spinning until the write succeeds. If you don't want spinning,
593 // don't use O_NONBLOCK file descriptors with raw_ostream.
Dan Gohmand3511162010-05-06 02:06:20 +0000594 if (errno == EINTR || errno == EAGAIN
595#ifdef EWOULDBLOCK
596 || errno == EWOULDBLOCK
597#endif
598 )
Dan Gohmanef969f32010-05-06 01:27:36 +0000599 continue;
600
601 // Otherwise it's a non-recoverable error. Note it and quit.
602 error_detected();
603 break;
604 }
605
606 // The write may have written some or all of the data. Update the
607 // size and buffer pointer to reflect the remainder that needs
608 // to be written. If there are no bytes left, we're done.
609 Ptr += ret;
610 Size -= ret;
611 } while (Size > 0);
Chris Lattner84b94f72008-08-17 01:35:29 +0000612}
613
Dan Gohman44790e72010-08-18 01:34:52 +0000614void raw_fd_ostream::close() {
615 assert(ShouldClose);
616 ShouldClose = false;
617 flush();
David Majnemer51c2afc2014-10-07 05:48:40 +0000618 if (sys::Process::SafelyCloseFileDescriptor(FD))
619 error_detected();
Dan Gohman44790e72010-08-18 01:34:52 +0000620 FD = -1;
621}
622
Ted Kremeneka2669922009-01-26 21:42:04 +0000623uint64_t raw_fd_ostream::seek(uint64_t off) {
Yaron Keren7cf7f802016-02-23 07:17:58 +0000624 assert(SupportsSeeking && "Stream does not support seeking!");
Ted Kremeneka2669922009-01-26 21:42:04 +0000625 flush();
Daniel Dunbardcb50b92009-07-15 08:11:46 +0000626 pos = ::lseek(FD, off, SEEK_SET);
Rafael Espindola642a2212015-04-14 22:54:16 +0000627 if (pos == (uint64_t)-1)
Dan Gohman58fcef92009-07-15 23:25:33 +0000628 error_detected();
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000629 return pos;
Ted Kremeneka2669922009-01-26 21:42:04 +0000630}
631
Rafael Espindola4ba9af12015-04-20 13:04:30 +0000632void raw_fd_ostream::pwrite_impl(const char *Ptr, size_t Size,
633 uint64_t Offset) {
Rafael Espindola37b70152015-04-14 15:00:34 +0000634 uint64_t Pos = tell();
635 seek(Offset);
636 write(Ptr, Size);
637 seek(Pos);
638}
639
Chris Lattnerdd3e9aa2009-12-19 01:38:42 +0000640size_t raw_fd_ostream::preferred_buffer_size() const {
Chris Lattnerca97c922010-07-07 15:52:27 +0000641#if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__minix)
Chris Lattnerc86cdc72010-04-09 20:45:04 +0000642 // Windows and Minix have no st_blksize.
Dan Gohman84487b92009-08-13 17:27:29 +0000643 assert(FD >= 0 && "File not yet open!");
644 struct stat statbuf;
Chris Lattnerdd3e9aa2009-12-19 01:38:42 +0000645 if (fstat(FD, &statbuf) != 0)
646 return 0;
Dan Gohmanb452d4e2010-03-24 19:38:02 +0000647
Chris Lattnerdd3e9aa2009-12-19 01:38:42 +0000648 // If this is a terminal, don't use buffering. Line buffering
649 // would be a more traditional thing to do, but it's not worth
650 // the complexity.
651 if (S_ISCHR(statbuf.st_mode) && isatty(FD))
652 return 0;
653 // Return the preferred block size.
654 return statbuf.st_blksize;
Dan Gohmanfeaeb362010-05-28 16:50:01 +0000655#else
Dan Gohman84487b92009-08-13 17:27:29 +0000656 return raw_ostream::preferred_buffer_size();
Dan Gohmanfeaeb362010-05-28 16:50:01 +0000657#endif
Dan Gohman84487b92009-08-13 17:27:29 +0000658}
659
Torok Edwin9b5a47f2009-06-04 07:09:50 +0000660raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
661 bool bg) {
662 if (sys::Process::ColorNeedsFlush())
663 flush();
664 const char *colorcode =
665 (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg)
666 : sys::Process::OutputColor(colors, bold, bg);
667 if (colorcode) {
Dan Gohmanf199ad62009-07-16 15:24:40 +0000668 size_t len = strlen(colorcode);
Torok Edwin9b5a47f2009-06-04 07:09:50 +0000669 write(colorcode, len);
670 // don't account colors towards output characters
671 pos -= len;
672 }
673 return *this;
674}
675
676raw_ostream &raw_fd_ostream::resetColor() {
677 if (sys::Process::ColorNeedsFlush())
678 flush();
679 const char *colorcode = sys::Process::ResetColor();
680 if (colorcode) {
Dan Gohmanf199ad62009-07-16 15:24:40 +0000681 size_t len = strlen(colorcode);
Torok Edwin9b5a47f2009-06-04 07:09:50 +0000682 write(colorcode, len);
683 // don't account colors towards output characters
684 pos -= len;
685 }
686 return *this;
687}
688
Benjamin Kramer13d16f32012-04-16 08:56:50 +0000689raw_ostream &raw_fd_ostream::reverseColor() {
690 if (sys::Process::ColorNeedsFlush())
691 flush();
692 const char *colorcode = sys::Process::OutputReverse();
693 if (colorcode) {
694 size_t len = strlen(colorcode);
695 write(colorcode, len);
696 // don't account colors towards output characters
697 pos -= len;
698 }
699 return *this;
700}
701
Dan Gohmane5929232009-09-11 20:46:33 +0000702bool raw_fd_ostream::is_displayed() const {
703 return sys::Process::FileDescriptorIsDisplayed(FD);
704}
705
Daniel Dunbar04b45832012-07-20 18:29:41 +0000706bool raw_fd_ostream::has_colors() const {
707 return sys::Process::FileDescriptorHasColors(FD);
708}
709
Chris Lattnerd3723fc2008-08-17 04:13:37 +0000710//===----------------------------------------------------------------------===//
Dan Gohmane9a46912010-08-20 16:44:56 +0000711// outs(), errs(), nulls()
Chris Lattnerd3723fc2008-08-17 04:13:37 +0000712//===----------------------------------------------------------------------===//
Chris Lattner84b94f72008-08-17 01:35:29 +0000713
Chris Lattnerd3723fc2008-08-17 04:13:37 +0000714/// outs() - This returns a reference to a raw_ostream for standard output.
715/// Use it like: outs() << "foo" << "bar";
Owen Anderson93719642008-08-21 00:14:44 +0000716raw_ostream &llvm::outs() {
Justin Lebarc75d5662016-02-19 00:18:46 +0000717 // Set buffer settings to model stdout behavior. Delete the file descriptor
718 // when the program exits, forcing error detection. This means that if you
719 // ever call outs(), you can't open another raw_fd_ostream on stdout, as we'll
720 // close stdout twice and print an error the second time.
Rafael Espindola79be4cc2015-04-13 10:28:56 +0000721 std::error_code EC;
722 static raw_fd_ostream S("-", EC, sys::fs::F_None);
723 assert(!EC);
Chris Lattnerd3723fc2008-08-17 04:13:37 +0000724 return S;
725}
726
727/// errs() - This returns a reference to a raw_ostream for standard error.
728/// Use it like: errs() << "foo" << "bar";
Owen Anderson93719642008-08-21 00:14:44 +0000729raw_ostream &llvm::errs() {
Dan Gohman443f2d62010-08-20 16:39:41 +0000730 // Set standard error to be unbuffered by default.
731 static raw_fd_ostream S(STDERR_FILENO, false, true);
Chris Lattnerd3723fc2008-08-17 04:13:37 +0000732 return S;
733}
734
Daniel Dunbar95a551a2009-07-16 21:17:53 +0000735/// nulls() - This returns a reference to a raw_ostream which discards output.
736raw_ostream &llvm::nulls() {
737 static raw_null_ostream S;
738 return S;
739}
740
Chris Lattner205af962008-08-23 22:43:04 +0000741//===----------------------------------------------------------------------===//
742// raw_string_ostream
743//===----------------------------------------------------------------------===//
744
Daniel Dunbard882f4b2009-08-18 20:07:36 +0000745raw_string_ostream::~raw_string_ostream() {
746 flush();
747}
748
Dan Gohmanf199ad62009-07-16 15:24:40 +0000749void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
Daniel Dunbardb7a36c2009-03-16 23:29:31 +0000750 OS.append(Ptr, Size);
Chris Lattner205af962008-08-23 22:43:04 +0000751}
752
753//===----------------------------------------------------------------------===//
754// raw_svector_ostream
755//===----------------------------------------------------------------------===//
756
Yaron Keren3d1173b2015-08-13 06:19:52 +0000757uint64_t raw_svector_ostream::current_pos() const { return OS.size(); }
Daniel Dunbarb090bf42009-08-19 17:54:29 +0000758
Yaron Keren3d1173b2015-08-13 06:19:52 +0000759void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
760 OS.append(Ptr, Ptr + Size);
Nick Lewyckye2f6fb52015-08-13 18:10:19 +0000761}
Daniel Dunbard882f4b2009-08-18 20:07:36 +0000762
Rafael Espindola4ba9af12015-04-20 13:04:30 +0000763void raw_svector_ostream::pwrite_impl(const char *Ptr, size_t Size,
764 uint64_t Offset) {
Yaron Keren3d1173b2015-08-13 06:19:52 +0000765 memcpy(OS.data() + Offset, Ptr, Size);
Daniel Dunbare813cba2009-08-19 18:40:58 +0000766}
767
Daniel Dunbar95a551a2009-07-16 21:17:53 +0000768//===----------------------------------------------------------------------===//
769// raw_null_ostream
770//===----------------------------------------------------------------------===//
771
Dan Gohman4b66b472009-07-27 21:46:02 +0000772raw_null_ostream::~raw_null_ostream() {
773#ifndef NDEBUG
774 // ~raw_ostream asserts that the buffer is empty. This isn't necessary
775 // with raw_null_ostream, but it's better to have raw_null_ostream follow
776 // the rules than to change the rules just for raw_null_ostream.
777 flush();
778#endif
779}
780
Daniel Dunbar95a551a2009-07-16 21:17:53 +0000781void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
782}
783
Chris Lattnerdd3e9aa2009-12-19 01:38:42 +0000784uint64_t raw_null_ostream::current_pos() const {
Daniel Dunbar95a551a2009-07-16 21:17:53 +0000785 return 0;
786}
Rafael Espindola37b70152015-04-14 15:00:34 +0000787
Rafael Espindola4ba9af12015-04-20 13:04:30 +0000788void raw_null_ostream::pwrite_impl(const char *Ptr, size_t Size,
789 uint64_t Offset) {}