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