]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Support/raw_ostream.cpp
Merge ^/head r320573 through r320970.
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Support / raw_ostream.cpp
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"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/ADT/SmallVector.h"
17 #include "llvm/ADT/StringExtras.h"
18 #include "llvm/Config/config.h"
19 #include "llvm/Support/Compiler.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include "llvm/Support/FileSystem.h"
22 #include "llvm/Support/Format.h"
23 #include "llvm/Support/FormatVariadic.h"
24 #include "llvm/Support/MathExtras.h"
25 #include "llvm/Support/NativeFormatting.h"
26 #include "llvm/Support/Process.h"
27 #include "llvm/Support/Program.h"
28 #include <algorithm>
29 #include <cctype>
30 #include <cerrno>
31 #include <cstdio>
32 #include <iterator>
33 #include <sys/stat.h>
34 #include <system_error>
35
36 // <fcntl.h> may provide O_BINARY.
37 #if defined(HAVE_FCNTL_H)
38 # include <fcntl.h>
39 #endif
40
41 #if defined(HAVE_UNISTD_H)
42 # include <unistd.h>
43 #endif
44 #if defined(HAVE_SYS_UIO_H) && defined(HAVE_WRITEV)
45 #  include <sys/uio.h>
46 #endif
47
48 #if defined(__CYGWIN__)
49 #include <io.h>
50 #endif
51
52 #if defined(_MSC_VER)
53 #include <io.h>
54 #ifndef STDIN_FILENO
55 # define STDIN_FILENO 0
56 #endif
57 #ifndef STDOUT_FILENO
58 # define STDOUT_FILENO 1
59 #endif
60 #ifndef STDERR_FILENO
61 # define STDERR_FILENO 2
62 #endif
63 #endif
64
65 #ifdef LLVM_ON_WIN32
66 #include "Windows/WindowsSupport.h"
67 #endif
68
69 using namespace llvm;
70
71 raw_ostream::~raw_ostream() {
72   // raw_ostream's subclasses should take care to flush the buffer
73   // in their destructors.
74   assert(OutBufCur == OutBufStart &&
75          "raw_ostream destructor called with non-empty buffer!");
76
77   if (BufferMode == InternalBuffer)
78     delete [] OutBufStart;
79 }
80
81 // An out of line virtual method to provide a home for the class vtable.
82 void raw_ostream::handle() {}
83
84 size_t raw_ostream::preferred_buffer_size() const {
85   // BUFSIZ is intended to be a reasonable default.
86   return BUFSIZ;
87 }
88
89 void raw_ostream::SetBuffered() {
90   // Ask the subclass to determine an appropriate buffer size.
91   if (size_t Size = preferred_buffer_size())
92     SetBufferSize(Size);
93   else
94     // It may return 0, meaning this stream should be unbuffered.
95     SetUnbuffered();
96 }
97
98 void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size,
99                                    BufferKind Mode) {
100   assert(((Mode == Unbuffered && !BufferStart && Size == 0) ||
101           (Mode != Unbuffered && BufferStart && Size != 0)) &&
102          "stream must be unbuffered or have at least one byte");
103   // Make sure the current buffer is free of content (we can't flush here; the
104   // child buffer management logic will be in write_impl).
105   assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!");
106
107   if (BufferMode == InternalBuffer)
108     delete [] OutBufStart;
109   OutBufStart = BufferStart;
110   OutBufEnd = OutBufStart+Size;
111   OutBufCur = OutBufStart;
112   BufferMode = Mode;
113
114   assert(OutBufStart <= OutBufEnd && "Invalid size!");
115 }
116
117 raw_ostream &raw_ostream::operator<<(unsigned long N) {
118   write_integer(*this, static_cast<uint64_t>(N), 0, IntegerStyle::Integer);
119   return *this;
120 }
121
122 raw_ostream &raw_ostream::operator<<(long N) {
123   write_integer(*this, static_cast<int64_t>(N), 0, IntegerStyle::Integer);
124   return *this;
125 }
126
127 raw_ostream &raw_ostream::operator<<(unsigned long long N) {
128   write_integer(*this, static_cast<uint64_t>(N), 0, IntegerStyle::Integer);
129   return *this;
130 }
131
132 raw_ostream &raw_ostream::operator<<(long long N) {
133   write_integer(*this, static_cast<int64_t>(N), 0, IntegerStyle::Integer);
134   return *this;
135 }
136
137 raw_ostream &raw_ostream::write_hex(unsigned long long N) {
138   llvm::write_hex(*this, N, HexPrintStyle::Lower);
139   return *this;
140 }
141
142 raw_ostream &raw_ostream::write_escaped(StringRef Str,
143                                         bool UseHexEscapes) {
144   for (unsigned char c : Str) {
145     switch (c) {
146     case '\\':
147       *this << '\\' << '\\';
148       break;
149     case '\t':
150       *this << '\\' << 't';
151       break;
152     case '\n':
153       *this << '\\' << 'n';
154       break;
155     case '"':
156       *this << '\\' << '"';
157       break;
158     default:
159       if (std::isprint(c)) {
160         *this << c;
161         break;
162       }
163
164       // Write out the escaped representation.
165       if (UseHexEscapes) {
166         *this << '\\' << 'x';
167         *this << hexdigit((c >> 4 & 0xF));
168         *this << hexdigit((c >> 0) & 0xF);
169       } else {
170         // Always use a full 3-character octal escape.
171         *this << '\\';
172         *this << char('0' + ((c >> 6) & 7));
173         *this << char('0' + ((c >> 3) & 7));
174         *this << char('0' + ((c >> 0) & 7));
175       }
176     }
177   }
178
179   return *this;
180 }
181
182 raw_ostream &raw_ostream::operator<<(const void *P) {
183   llvm::write_hex(*this, (uintptr_t)P, HexPrintStyle::PrefixLower);
184   return *this;
185 }
186
187 raw_ostream &raw_ostream::operator<<(double N) {
188   llvm::write_double(*this, N, FloatStyle::Exponent);
189   return *this;
190 }
191
192 void raw_ostream::flush_nonempty() {
193   assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty.");
194   size_t Length = OutBufCur - OutBufStart;
195   OutBufCur = OutBufStart;
196   write_impl(OutBufStart, Length);
197 }
198
199 raw_ostream &raw_ostream::write(unsigned char C) {
200   // Group exceptional cases into a single branch.
201   if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) {
202     if (LLVM_UNLIKELY(!OutBufStart)) {
203       if (BufferMode == Unbuffered) {
204         write_impl(reinterpret_cast<char*>(&C), 1);
205         return *this;
206       }
207       // Set up a buffer and start over.
208       SetBuffered();
209       return write(C);
210     }
211
212     flush_nonempty();
213   }
214
215   *OutBufCur++ = C;
216   return *this;
217 }
218
219 raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) {
220   // Group exceptional cases into a single branch.
221   if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
222     if (LLVM_UNLIKELY(!OutBufStart)) {
223       if (BufferMode == Unbuffered) {
224         write_impl(Ptr, Size);
225         return *this;
226       }
227       // Set up a buffer and start over.
228       SetBuffered();
229       return write(Ptr, Size);
230     }
231
232     size_t NumBytes = OutBufEnd - OutBufCur;
233
234     // If the buffer is empty at this point we have a string that is larger
235     // than the buffer. Directly write the chunk that is a multiple of the
236     // preferred buffer size and put the remainder in the buffer.
237     if (LLVM_UNLIKELY(OutBufCur == OutBufStart)) {
238       assert(NumBytes != 0 && "undefined behavior");
239       size_t BytesToWrite = Size - (Size % NumBytes);
240       write_impl(Ptr, BytesToWrite);
241       size_t BytesRemaining = Size - BytesToWrite;
242       if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
243         // Too much left over to copy into our buffer.
244         return write(Ptr + BytesToWrite, BytesRemaining);
245       }
246       copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);
247       return *this;
248     }
249
250     // We don't have enough space in the buffer to fit the string in. Insert as
251     // much as possible, flush and start over with the remainder.
252     copy_to_buffer(Ptr, NumBytes);
253     flush_nonempty();
254     return write(Ptr + NumBytes, Size - NumBytes);
255   }
256
257   copy_to_buffer(Ptr, Size);
258
259   return *this;
260 }
261
262 void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) {
263   assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
264
265   // Handle short strings specially, memcpy isn't very good at very short
266   // strings.
267   switch (Size) {
268   case 4: OutBufCur[3] = Ptr[3]; LLVM_FALLTHROUGH;
269   case 3: OutBufCur[2] = Ptr[2]; LLVM_FALLTHROUGH;
270   case 2: OutBufCur[1] = Ptr[1]; LLVM_FALLTHROUGH;
271   case 1: OutBufCur[0] = Ptr[0]; LLVM_FALLTHROUGH;
272   case 0: break;
273   default:
274     memcpy(OutBufCur, Ptr, Size);
275     break;
276   }
277
278   OutBufCur += Size;
279 }
280
281 // Formatted output.
282 raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) {
283   // If we have more than a few bytes left in our output buffer, try
284   // formatting directly onto its end.
285   size_t NextBufferSize = 127;
286   size_t BufferBytesLeft = OutBufEnd - OutBufCur;
287   if (BufferBytesLeft > 3) {
288     size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
289
290     // Common case is that we have plenty of space.
291     if (BytesUsed <= BufferBytesLeft) {
292       OutBufCur += BytesUsed;
293       return *this;
294     }
295
296     // Otherwise, we overflowed and the return value tells us the size to try
297     // again with.
298     NextBufferSize = BytesUsed;
299   }
300
301   // If we got here, we didn't have enough space in the output buffer for the
302   // string.  Try printing into a SmallVector that is resized to have enough
303   // space.  Iterate until we win.
304   SmallVector<char, 128> V;
305
306   while (true) {
307     V.resize(NextBufferSize);
308
309     // Try formatting into the SmallVector.
310     size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
311
312     // If BytesUsed fit into the vector, we win.
313     if (BytesUsed <= NextBufferSize)
314       return write(V.data(), BytesUsed);
315
316     // Otherwise, try again with a new size.
317     assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
318     NextBufferSize = BytesUsed;
319   }
320 }
321
322 raw_ostream &raw_ostream::operator<<(const formatv_object_base &Obj) {
323   SmallString<128> S;
324   Obj.format(*this);
325   return *this;
326 }
327
328 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) {
329   unsigned Len = FS.Str.size(); 
330   int PadAmount = FS.Width - Len;
331   if (FS.RightJustify && (PadAmount > 0))
332     this->indent(PadAmount);
333   this->operator<<(FS.Str);
334   if (!FS.RightJustify && (PadAmount > 0))
335     this->indent(PadAmount);
336   return *this;
337 }
338
339 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) {
340   if (FN.Hex) {
341     HexPrintStyle Style;
342     if (FN.Upper && FN.HexPrefix)
343       Style = HexPrintStyle::PrefixUpper;
344     else if (FN.Upper && !FN.HexPrefix)
345       Style = HexPrintStyle::Upper;
346     else if (!FN.Upper && FN.HexPrefix)
347       Style = HexPrintStyle::PrefixLower;
348     else
349       Style = HexPrintStyle::Lower;
350     llvm::write_hex(*this, FN.HexValue, Style, FN.Width);
351   } else {
352     llvm::SmallString<16> Buffer;
353     llvm::raw_svector_ostream Stream(Buffer);
354     llvm::write_integer(Stream, FN.DecValue, 0, IntegerStyle::Integer);
355     if (Buffer.size() < FN.Width)
356       indent(FN.Width - Buffer.size());
357     (*this) << Buffer;
358   }
359   return *this;
360 }
361
362 raw_ostream &raw_ostream::operator<<(const FormattedBytes &FB) {
363   if (FB.Bytes.empty())
364     return *this;
365
366   size_t LineIndex = 0;
367   auto Bytes = FB.Bytes;
368   const size_t Size = Bytes.size();
369   HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower;
370   uint64_t OffsetWidth = 0;
371   if (FB.FirstByteOffset.hasValue()) {
372     // Figure out how many nibbles are needed to print the largest offset
373     // represented by this data set, so that we can align the offset field
374     // to the right width.
375     size_t Lines = Size / FB.NumPerLine;
376     uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine;
377     unsigned Power = 0;
378     if (MaxOffset > 0)
379       Power = llvm::Log2_64_Ceil(MaxOffset);
380     OffsetWidth = std::max<uint64_t>(4, llvm::alignTo(Power, 4) / 4);
381   }
382
383   // The width of a block of data including all spaces for group separators.
384   unsigned NumByteGroups =
385       alignTo(FB.NumPerLine, FB.ByteGroupSize) / FB.ByteGroupSize;
386   unsigned BlockCharWidth = FB.NumPerLine * 2 + NumByteGroups - 1;
387
388   while (!Bytes.empty()) {
389     indent(FB.IndentLevel);
390
391     if (FB.FirstByteOffset.hasValue()) {
392       uint64_t Offset = FB.FirstByteOffset.getValue();
393       llvm::write_hex(*this, Offset + LineIndex, HPS, OffsetWidth);
394       *this << ": ";
395     }
396
397     auto Line = Bytes.take_front(FB.NumPerLine);
398
399     size_t CharsPrinted = 0;
400     // Print the hex bytes for this line in groups
401     for (size_t I = 0; I < Line.size(); ++I, CharsPrinted += 2) {
402       if (I && (I % FB.ByteGroupSize) == 0) {
403         ++CharsPrinted;
404         *this << " ";
405       }
406       llvm::write_hex(*this, Line[I], HPS, 2);
407     }
408
409     if (FB.ASCII) {
410       // Print any spaces needed for any bytes that we didn't print on this
411       // line so that the ASCII bytes are correctly aligned.
412       assert(BlockCharWidth >= CharsPrinted);
413       indent(BlockCharWidth - CharsPrinted + 2);
414       *this << "|";
415
416       // Print the ASCII char values for each byte on this line
417       for (uint8_t Byte : Line) {
418         if (isprint(Byte))
419           *this << static_cast<char>(Byte);
420         else
421           *this << '.';
422       }
423       *this << '|';
424     }
425
426     Bytes = Bytes.drop_front(Line.size());
427     LineIndex += Line.size();
428     if (LineIndex < Size)
429       *this << '\n';
430   }
431   return *this;
432 }
433
434 /// indent - Insert 'NumSpaces' spaces.
435 raw_ostream &raw_ostream::indent(unsigned NumSpaces) {
436   static const char Spaces[] = "                                "
437                                "                                "
438                                "                ";
439
440   // Usually the indentation is small, handle it with a fastpath.
441   if (NumSpaces < array_lengthof(Spaces))
442     return write(Spaces, NumSpaces);
443
444   while (NumSpaces) {
445     unsigned NumToWrite = std::min(NumSpaces,
446                                    (unsigned)array_lengthof(Spaces)-1);
447     write(Spaces, NumToWrite);
448     NumSpaces -= NumToWrite;
449   }
450   return *this;
451 }
452
453 //===----------------------------------------------------------------------===//
454 //  Formatted Output
455 //===----------------------------------------------------------------------===//
456
457 // Out of line virtual method.
458 void format_object_base::home() {
459 }
460
461 //===----------------------------------------------------------------------===//
462 //  raw_fd_ostream
463 //===----------------------------------------------------------------------===//
464
465 static int getFD(StringRef Filename, std::error_code &EC,
466                  sys::fs::OpenFlags Flags) {
467   // Handle "-" as stdout. Note that when we do this, we consider ourself
468   // the owner of stdout and may set the "binary" flag globally based on Flags.
469   if (Filename == "-") {
470     EC = std::error_code();
471     // If user requested binary then put stdout into binary mode if
472     // possible.
473     if (!(Flags & sys::fs::F_Text))
474       sys::ChangeStdoutToBinary();
475     return STDOUT_FILENO;
476   }
477
478   int FD;
479   EC = sys::fs::openFileForWrite(Filename, FD, Flags);
480   if (EC)
481     return -1;
482
483   return FD;
484 }
485
486 raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC,
487                                sys::fs::OpenFlags Flags)
488     : raw_fd_ostream(getFD(Filename, EC, Flags), true) {}
489
490 /// FD is the file descriptor that this writes to.  If ShouldClose is true, this
491 /// closes the file when the stream is destroyed.
492 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered)
493     : raw_pwrite_stream(unbuffered), FD(fd), ShouldClose(shouldClose),
494       Error(false) {
495   if (FD < 0 ) {
496     ShouldClose = false;
497     return;
498   }
499   // We do not want to close STDOUT as there may have been several uses of it
500   // such as the case: llc %s -o=- -pass-remarks-output=- -filetype=asm
501   // which cause multiple closes of STDOUT_FILENO and/or use-after-close of it.
502   // Using dup() in getFD doesn't work as we end up with original STDOUT_FILENO
503   // open anyhow.
504   if (FD <= STDERR_FILENO)
505     ShouldClose = false;
506
507   // Get the starting position.
508   off_t loc = ::lseek(FD, 0, SEEK_CUR);
509 #ifdef LLVM_ON_WIN32
510   // MSVCRT's _lseek(SEEK_CUR) doesn't return -1 for pipes.
511   sys::fs::file_status Status;
512   std::error_code EC = status(FD, Status);
513   SupportsSeeking = !EC && Status.type() == sys::fs::file_type::regular_file;
514 #else
515   SupportsSeeking = loc != (off_t)-1;
516 #endif
517   if (!SupportsSeeking)
518     pos = 0;
519   else
520     pos = static_cast<uint64_t>(loc);
521 }
522
523 raw_fd_ostream::~raw_fd_ostream() {
524   if (FD >= 0) {
525     flush();
526     if (ShouldClose && sys::Process::SafelyCloseFileDescriptor(FD))
527       error_detected();
528   }
529
530 #ifdef __MINGW32__
531   // On mingw, global dtors should not call exit().
532   // report_fatal_error() invokes exit(). We know report_fatal_error()
533   // might not write messages to stderr when any errors were detected
534   // on FD == 2.
535   if (FD == 2) return;
536 #endif
537
538   // If there are any pending errors, report them now. Clients wishing
539   // to avoid report_fatal_error calls should check for errors with
540   // has_error() and clear the error flag with clear_error() before
541   // destructing raw_ostream objects which may have errors.
542   if (has_error())
543     report_fatal_error("IO failure on output stream.", /*GenCrashDiag=*/false);
544 }
545
546 void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
547   assert(FD >= 0 && "File already closed.");
548   pos += Size;
549
550 #ifndef LLVM_ON_WIN32
551 #if defined(__linux__)
552   bool ShouldWriteInChunks = true;
553 #else
554   bool ShouldWriteInChunks = false;
555 #endif
556 #else
557   // Writing a large size of output to Windows console returns ENOMEM. It seems
558   // that, prior to Windows 8, WriteFile() is redirecting to WriteConsole(), and
559   // the latter has a size limit (66000 bytes or less, depending on heap usage).
560   bool ShouldWriteInChunks = !!::_isatty(FD) && !RunningWindows8OrGreater();
561 #endif
562
563   do {
564     size_t ChunkSize = Size;
565     if (ChunkSize > 32767 && ShouldWriteInChunks)
566         ChunkSize = 32767;
567
568     ssize_t ret = ::write(FD, Ptr, ChunkSize);
569
570     if (ret < 0) {
571       // If it's a recoverable error, swallow it and retry the write.
572       //
573       // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since
574       // raw_ostream isn't designed to do non-blocking I/O. However, some
575       // programs, such as old versions of bjam, have mistakenly used
576       // O_NONBLOCK. For compatibility, emulate blocking semantics by
577       // spinning until the write succeeds. If you don't want spinning,
578       // don't use O_NONBLOCK file descriptors with raw_ostream.
579       if (errno == EINTR || errno == EAGAIN
580 #ifdef EWOULDBLOCK
581           || errno == EWOULDBLOCK
582 #endif
583           )
584         continue;
585
586       // Otherwise it's a non-recoverable error. Note it and quit.
587       error_detected();
588       break;
589     }
590
591     // The write may have written some or all of the data. Update the
592     // size and buffer pointer to reflect the remainder that needs
593     // to be written. If there are no bytes left, we're done.
594     Ptr += ret;
595     Size -= ret;
596   } while (Size > 0);
597 }
598
599 void raw_fd_ostream::close() {
600   assert(ShouldClose);
601   ShouldClose = false;
602   flush();
603   if (sys::Process::SafelyCloseFileDescriptor(FD))
604     error_detected();
605   FD = -1;
606 }
607
608 uint64_t raw_fd_ostream::seek(uint64_t off) {
609   assert(SupportsSeeking && "Stream does not support seeking!");
610   flush();
611 #ifdef LLVM_ON_WIN32
612   pos = ::_lseeki64(FD, off, SEEK_SET);
613 #elif defined(HAVE_LSEEK64)
614   pos = ::lseek64(FD, off, SEEK_SET);
615 #else
616   pos = ::lseek(FD, off, SEEK_SET);
617 #endif
618   if (pos == (uint64_t)-1)
619     error_detected();
620   return pos;
621 }
622
623 void raw_fd_ostream::pwrite_impl(const char *Ptr, size_t Size,
624                                  uint64_t Offset) {
625   uint64_t Pos = tell();
626   seek(Offset);
627   write(Ptr, Size);
628   seek(Pos);
629 }
630
631 size_t raw_fd_ostream::preferred_buffer_size() const {
632 #if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__minix)
633   // Windows and Minix have no st_blksize.
634   assert(FD >= 0 && "File not yet open!");
635   struct stat statbuf;
636   if (fstat(FD, &statbuf) != 0)
637     return 0;
638
639   // If this is a terminal, don't use buffering. Line buffering
640   // would be a more traditional thing to do, but it's not worth
641   // the complexity.
642   if (S_ISCHR(statbuf.st_mode) && isatty(FD))
643     return 0;
644   // Return the preferred block size.
645   return statbuf.st_blksize;
646 #else
647   return raw_ostream::preferred_buffer_size();
648 #endif
649 }
650
651 raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
652                                          bool bg) {
653   if (sys::Process::ColorNeedsFlush())
654     flush();
655   const char *colorcode =
656     (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg)
657     : sys::Process::OutputColor(colors, bold, bg);
658   if (colorcode) {
659     size_t len = strlen(colorcode);
660     write(colorcode, len);
661     // don't account colors towards output characters
662     pos -= len;
663   }
664   return *this;
665 }
666
667 raw_ostream &raw_fd_ostream::resetColor() {
668   if (sys::Process::ColorNeedsFlush())
669     flush();
670   const char *colorcode = sys::Process::ResetColor();
671   if (colorcode) {
672     size_t len = strlen(colorcode);
673     write(colorcode, len);
674     // don't account colors towards output characters
675     pos -= len;
676   }
677   return *this;
678 }
679
680 raw_ostream &raw_fd_ostream::reverseColor() {
681   if (sys::Process::ColorNeedsFlush())
682     flush();
683   const char *colorcode = sys::Process::OutputReverse();
684   if (colorcode) {
685     size_t len = strlen(colorcode);
686     write(colorcode, len);
687     // don't account colors towards output characters
688     pos -= len;
689   }
690   return *this;
691 }
692
693 bool raw_fd_ostream::is_displayed() const {
694   return sys::Process::FileDescriptorIsDisplayed(FD);
695 }
696
697 bool raw_fd_ostream::has_colors() const {
698   return sys::Process::FileDescriptorHasColors(FD);
699 }
700
701 //===----------------------------------------------------------------------===//
702 //  outs(), errs(), nulls()
703 //===----------------------------------------------------------------------===//
704
705 /// outs() - This returns a reference to a raw_ostream for standard output.
706 /// Use it like: outs() << "foo" << "bar";
707 raw_ostream &llvm::outs() {
708   // Set buffer settings to model stdout behavior.  Delete the file descriptor
709   // when the program exits, forcing error detection.  This means that if you
710   // ever call outs(), you can't open another raw_fd_ostream on stdout, as we'll
711   // close stdout twice and print an error the second time.
712   std::error_code EC;
713   static raw_fd_ostream S("-", EC, sys::fs::F_None);
714   assert(!EC);
715   return S;
716 }
717
718 /// errs() - This returns a reference to a raw_ostream for standard error.
719 /// Use it like: errs() << "foo" << "bar";
720 raw_ostream &llvm::errs() {
721   // Set standard error to be unbuffered by default.
722   static raw_fd_ostream S(STDERR_FILENO, false, true);
723   return S;
724 }
725
726 /// nulls() - This returns a reference to a raw_ostream which discards output.
727 raw_ostream &llvm::nulls() {
728   static raw_null_ostream S;
729   return S;
730 }
731
732 //===----------------------------------------------------------------------===//
733 //  raw_string_ostream
734 //===----------------------------------------------------------------------===//
735
736 raw_string_ostream::~raw_string_ostream() {
737   flush();
738 }
739
740 void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
741   OS.append(Ptr, Size);
742 }
743
744 //===----------------------------------------------------------------------===//
745 //  raw_svector_ostream
746 //===----------------------------------------------------------------------===//
747
748 uint64_t raw_svector_ostream::current_pos() const { return OS.size(); }
749
750 void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
751   OS.append(Ptr, Ptr + Size);
752 }
753
754 void raw_svector_ostream::pwrite_impl(const char *Ptr, size_t Size,
755                                       uint64_t Offset) {
756   memcpy(OS.data() + Offset, Ptr, Size);
757 }
758
759 //===----------------------------------------------------------------------===//
760 //  raw_null_ostream
761 //===----------------------------------------------------------------------===//
762
763 raw_null_ostream::~raw_null_ostream() {
764 #ifndef NDEBUG
765   // ~raw_ostream asserts that the buffer is empty. This isn't necessary
766   // with raw_null_ostream, but it's better to have raw_null_ostream follow
767   // the rules than to change the rules just for raw_null_ostream.
768   flush();
769 #endif
770 }
771
772 void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
773 }
774
775 uint64_t raw_null_ostream::current_pos() const {
776   return 0;
777 }
778
779 void raw_null_ostream::pwrite_impl(const char *Ptr, size_t Size,
780                                    uint64_t Offset) {}