Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 1 | //===--- raw_ostream.cpp - Implement the raw_ostream classes --------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This implements support for bulk buffered stream output. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/STLExtras.h" |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/SmallVector.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/StringExtras.h" |
Chris Lattner | d564f29 | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 17 | #include "llvm/Config/config.h" |
Daniel Dunbar | 437b8a5 | 2009-03-17 21:15:18 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Compiler.h" |
Daniel Dunbar | dcb50b9 | 2009-07-15 08:11:46 +0000 | [diff] [blame] | 19 | #include "llvm/Support/ErrorHandling.h" |
Rafael Espindola | 6d35481 | 2013-07-16 19:44:17 +0000 | [diff] [blame] | 20 | #include "llvm/Support/FileSystem.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Format.h" |
Zachary Turner | 11db264 | 2016-11-11 23:57:40 +0000 | [diff] [blame] | 22 | #include "llvm/Support/FormatVariadic.h" |
Nick Kledzik | e648037 | 2014-09-25 20:30:58 +0000 | [diff] [blame] | 23 | #include "llvm/Support/MathExtras.h" |
Zachary Turner | 733be51 | 2016-10-11 19:24:45 +0000 | [diff] [blame] | 24 | #include "llvm/Support/NativeFormatting.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Process.h" |
| 26 | #include "llvm/Support/Program.h" |
Eugene Zelenko | 33d7b76 | 2016-08-23 17:14:32 +0000 | [diff] [blame] | 27 | #include <algorithm> |
Benjamin Kramer | ef14f80 | 2010-01-29 15:19:06 +0000 | [diff] [blame] | 28 | #include <cctype> |
Benjamin Kramer | ce84a25 | 2010-05-05 15:17:47 +0000 | [diff] [blame] | 29 | #include <cerrno> |
Eugene Zelenko | 33d7b76 | 2016-08-23 17:14:32 +0000 | [diff] [blame] | 30 | #include <cstdio> |
| 31 | #include <iterator> |
Eugene Zelenko | 33d7b76 | 2016-08-23 17:14:32 +0000 | [diff] [blame] | 32 | #include <sys/stat.h> |
Zachary Turner | 733be51 | 2016-10-11 19:24:45 +0000 | [diff] [blame] | 33 | #include <system_error> |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 34 | |
NAKAMURA Takumi | 212c80a | 2013-07-17 02:21:10 +0000 | [diff] [blame] | 35 | // <fcntl.h> may provide O_BINARY. |
| 36 | #if defined(HAVE_FCNTL_H) |
| 37 | # include <fcntl.h> |
| 38 | #endif |
| 39 | |
Chris Lattner | d564f29 | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 40 | #if defined(HAVE_UNISTD_H) |
| 41 | # include <unistd.h> |
| 42 | #endif |
Argyrios Kyrtzidis | b97ff82 | 2008-08-17 09:25:21 +0000 | [diff] [blame] | 43 | |
NAKAMURA Takumi | fe84f39 | 2010-10-19 01:21:55 +0000 | [diff] [blame] | 44 | #if defined(__CYGWIN__) |
| 45 | #include <io.h> |
| 46 | #endif |
| 47 | |
Argyrios Kyrtzidis | b97ff82 | 2008-08-17 09:25:21 +0000 | [diff] [blame] | 48 | #if defined(_MSC_VER) |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 49 | #include <io.h> |
Owen Anderson | 9371964 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 50 | #ifndef STDIN_FILENO |
| 51 | # define STDIN_FILENO 0 |
| 52 | #endif |
| 53 | #ifndef STDOUT_FILENO |
| 54 | # define STDOUT_FILENO 1 |
| 55 | #endif |
| 56 | #ifndef STDERR_FILENO |
| 57 | # define STDERR_FILENO 2 |
| 58 | #endif |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 59 | #endif |
| 60 | |
Nico Weber | 712e8d2 | 2018-04-29 00:45:03 +0000 | [diff] [blame] | 61 | #ifdef _WIN32 |
Reid Kleckner | 2b8c692 | 2018-09-05 00:08:56 +0000 | [diff] [blame] | 62 | #include "llvm/Support/ConvertUTF.h" |
Yunzhong Gao | fb2a9c4 | 2016-01-06 00:50:06 +0000 | [diff] [blame] | 63 | #include "Windows/WindowsSupport.h" |
| 64 | #endif |
| 65 | |
Chris Lattner | d564f29 | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 66 | using namespace llvm; |
| 67 | |
Rui Ueyama | cac8df1 | 2019-08-07 08:08:17 +0000 | [diff] [blame] | 68 | const raw_ostream::Colors raw_ostream::BLACK; |
| 69 | const raw_ostream::Colors raw_ostream::RED; |
| 70 | const raw_ostream::Colors raw_ostream::GREEN; |
| 71 | const raw_ostream::Colors raw_ostream::YELLOW; |
| 72 | const raw_ostream::Colors raw_ostream::BLUE; |
| 73 | const raw_ostream::Colors raw_ostream::MAGENTA; |
| 74 | const raw_ostream::Colors raw_ostream::CYAN; |
| 75 | const raw_ostream::Colors raw_ostream::WHITE; |
| 76 | const raw_ostream::Colors raw_ostream::SAVEDCOLOR; |
| 77 | const raw_ostream::Colors raw_ostream::RESET; |
| 78 | |
Dan Gohman | 58fcef9 | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 79 | raw_ostream::~raw_ostream() { |
Dan Gohman | 1b76329 | 2009-07-27 20:49:44 +0000 | [diff] [blame] | 80 | // raw_ostream's subclasses should take care to flush the buffer |
| 81 | // in their destructors. |
| 82 | assert(OutBufCur == OutBufStart && |
| 83 | "raw_ostream destructor called with non-empty buffer!"); |
| 84 | |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 85 | if (BufferMode == InternalBuffer) |
| 86 | delete [] OutBufStart; |
Dan Gohman | 58fcef9 | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 87 | } |
Chris Lattner | d564f29 | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 88 | |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 89 | size_t raw_ostream::preferred_buffer_size() const { |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 90 | // BUFSIZ is intended to be a reasonable default. |
| 91 | return BUFSIZ; |
| 92 | } |
| 93 | |
| 94 | void raw_ostream::SetBuffered() { |
| 95 | // Ask the subclass to determine an appropriate buffer size. |
Dan Gohman | 1771022 | 2009-08-15 02:05:19 +0000 | [diff] [blame] | 96 | if (size_t Size = preferred_buffer_size()) |
| 97 | SetBufferSize(Size); |
| 98 | else |
| 99 | // It may return 0, meaning this stream should be unbuffered. |
| 100 | SetUnbuffered(); |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 103 | void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size, |
Nick Lewycky | 7bfd86d | 2011-08-28 03:30:02 +0000 | [diff] [blame] | 104 | BufferKind Mode) { |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 105 | assert(((Mode == Unbuffered && !BufferStart && Size == 0) || |
| 106 | (Mode != Unbuffered && BufferStart && Size != 0)) && |
Daniel Dunbar | 316b4a0 | 2009-09-15 20:31:46 +0000 | [diff] [blame] | 107 | "stream must be unbuffered or have at least one byte"); |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 108 | // Make sure the current buffer is free of content (we can't flush here; the |
| 109 | // child buffer management logic will be in write_impl). |
| 110 | assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!"); |
Dan Gohman | 54401d4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 111 | |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 112 | if (BufferMode == InternalBuffer) |
| 113 | delete [] OutBufStart; |
| 114 | OutBufStart = BufferStart; |
Dan Gohman | 54401d4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 115 | OutBufEnd = OutBufStart+Size; |
| 116 | OutBufCur = OutBufStart; |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 117 | BufferMode = Mode; |
Daniel Dunbar | b090bf4 | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 118 | |
| 119 | assert(OutBufStart <= OutBufEnd && "Invalid size!"); |
Dan Gohman | 54401d4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 120 | } |
| 121 | |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 122 | raw_ostream &raw_ostream::operator<<(unsigned long N) { |
Zachary Turner | 11db264 | 2016-11-11 23:57:40 +0000 | [diff] [blame] | 123 | write_integer(*this, static_cast<uint64_t>(N), 0, IntegerStyle::Integer); |
Zachary Turner | 733be51 | 2016-10-11 19:24:45 +0000 | [diff] [blame] | 124 | return *this; |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | raw_ostream &raw_ostream::operator<<(long N) { |
Zachary Turner | 11db264 | 2016-11-11 23:57:40 +0000 | [diff] [blame] | 128 | write_integer(*this, static_cast<int64_t>(N), 0, IntegerStyle::Integer); |
Zachary Turner | 733be51 | 2016-10-11 19:24:45 +0000 | [diff] [blame] | 129 | return *this; |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | raw_ostream &raw_ostream::operator<<(unsigned long long N) { |
Zachary Turner | 11db264 | 2016-11-11 23:57:40 +0000 | [diff] [blame] | 133 | write_integer(*this, static_cast<uint64_t>(N), 0, IntegerStyle::Integer); |
Zachary Turner | 733be51 | 2016-10-11 19:24:45 +0000 | [diff] [blame] | 134 | return *this; |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | raw_ostream &raw_ostream::operator<<(long long N) { |
Zachary Turner | 11db264 | 2016-11-11 23:57:40 +0000 | [diff] [blame] | 138 | write_integer(*this, static_cast<int64_t>(N), 0, IntegerStyle::Integer); |
Zachary Turner | 733be51 | 2016-10-11 19:24:45 +0000 | [diff] [blame] | 139 | return *this; |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 140 | } |
| 141 | |
Daniel Dunbar | 6c9629b | 2009-07-30 18:21:23 +0000 | [diff] [blame] | 142 | raw_ostream &raw_ostream::write_hex(unsigned long long N) { |
Zachary Turner | 5b2243e | 2016-10-29 00:27:22 +0000 | [diff] [blame] | 143 | llvm::write_hex(*this, N, HexPrintStyle::Lower); |
Zachary Turner | 733be51 | 2016-10-11 19:24:45 +0000 | [diff] [blame] | 144 | return *this; |
Chris Lattner | 0c19df4 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Rui Ueyama | cac8df1 | 2019-08-07 08:08:17 +0000 | [diff] [blame] | 147 | raw_ostream &raw_ostream::operator<<(Colors C) { |
| 148 | if (C == Colors::RESET) |
| 149 | resetColor(); |
| 150 | else |
| 151 | changeColor(C); |
| 152 | return *this; |
| 153 | } |
| 154 | |
Adrian Prantl | 3dcd122 | 2017-09-13 18:22:59 +0000 | [diff] [blame] | 155 | raw_ostream &raw_ostream::write_uuid(const uuid_t UUID) { |
| 156 | for (int Idx = 0; Idx < 16; ++Idx) { |
| 157 | *this << format("%02" PRIX32, UUID[Idx]); |
| 158 | if (Idx == 3 || Idx == 5 || Idx == 7 || Idx == 9) |
| 159 | *this << "-"; |
| 160 | } |
| 161 | return *this; |
| 162 | } |
| 163 | |
| 164 | |
Daniel Dunbar | 65dc891 | 2010-11-27 07:59:50 +0000 | [diff] [blame] | 165 | raw_ostream &raw_ostream::write_escaped(StringRef Str, |
| 166 | bool UseHexEscapes) { |
Craig Topper | 775fb73 | 2016-02-04 06:51:41 +0000 | [diff] [blame] | 167 | for (unsigned char c : Str) { |
Daniel Dunbar | 4108c43 | 2009-10-17 20:43:08 +0000 | [diff] [blame] | 168 | switch (c) { |
| 169 | case '\\': |
| 170 | *this << '\\' << '\\'; |
| 171 | break; |
| 172 | case '\t': |
| 173 | *this << '\\' << 't'; |
| 174 | break; |
| 175 | case '\n': |
| 176 | *this << '\\' << 'n'; |
| 177 | break; |
| 178 | case '"': |
| 179 | *this << '\\' << '"'; |
| 180 | break; |
| 181 | default: |
Michael Kruse | 6f1da6e | 2018-07-26 15:31:41 +0000 | [diff] [blame] | 182 | if (isPrint(c)) { |
Daniel Dunbar | 4108c43 | 2009-10-17 20:43:08 +0000 | [diff] [blame] | 183 | *this << c; |
| 184 | break; |
| 185 | } |
| 186 | |
Daniel Dunbar | 65dc891 | 2010-11-27 07:59:50 +0000 | [diff] [blame] | 187 | // Write out the escaped representation. |
| 188 | if (UseHexEscapes) { |
| 189 | *this << '\\' << 'x'; |
| 190 | *this << hexdigit((c >> 4 & 0xF)); |
| 191 | *this << hexdigit((c >> 0) & 0xF); |
| 192 | } else { |
| 193 | // Always use a full 3-character octal escape. |
| 194 | *this << '\\'; |
| 195 | *this << char('0' + ((c >> 6) & 7)); |
| 196 | *this << char('0' + ((c >> 3) & 7)); |
| 197 | *this << char('0' + ((c >> 0) & 7)); |
| 198 | } |
Daniel Dunbar | 4108c43 | 2009-10-17 20:43:08 +0000 | [diff] [blame] | 199 | } |
| 200 | } |
| 201 | |
| 202 | return *this; |
| 203 | } |
| 204 | |
Daniel Dunbar | 6c9629b | 2009-07-30 18:21:23 +0000 | [diff] [blame] | 205 | raw_ostream &raw_ostream::operator<<(const void *P) { |
Zachary Turner | 5b2243e | 2016-10-29 00:27:22 +0000 | [diff] [blame] | 206 | llvm::write_hex(*this, (uintptr_t)P, HexPrintStyle::PrefixLower); |
Zachary Turner | 733be51 | 2016-10-11 19:24:45 +0000 | [diff] [blame] | 207 | return *this; |
Daniel Dunbar | 6c9629b | 2009-07-30 18:21:23 +0000 | [diff] [blame] | 208 | } |
| 209 | |
Chris Lattner | 06fa176 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 210 | raw_ostream &raw_ostream::operator<<(double N) { |
Zachary Turner | 5b2243e | 2016-10-29 00:27:22 +0000 | [diff] [blame] | 211 | llvm::write_double(*this, N, FloatStyle::Exponent); |
Zachary Turner | 733be51 | 2016-10-11 19:24:45 +0000 | [diff] [blame] | 212 | return *this; |
Chris Lattner | 06fa176 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Daniel Dunbar | d24535f | 2009-03-16 22:55:06 +0000 | [diff] [blame] | 215 | void raw_ostream::flush_nonempty() { |
| 216 | assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty."); |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 217 | size_t Length = OutBufCur - OutBufStart; |
| 218 | OutBufCur = OutBufStart; |
| 219 | write_impl(OutBufStart, Length); |
Daniel Dunbar | d24535f | 2009-03-16 22:55:06 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Daniel Dunbar | 7a9bb9e | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 222 | raw_ostream &raw_ostream::write(unsigned char C) { |
Daniel Dunbar | 64fa386 | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 223 | // Group exceptional cases into a single branch. |
Benjamin Kramer | bd7f8d0 | 2012-08-29 22:57:00 +0000 | [diff] [blame] | 224 | if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) { |
| 225 | if (LLVM_UNLIKELY(!OutBufStart)) { |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 226 | if (BufferMode == Unbuffered) { |
Dan Gohman | 23f90c1 | 2009-08-18 20:09:59 +0000 | [diff] [blame] | 227 | write_impl(reinterpret_cast<char*>(&C), 1); |
| 228 | return *this; |
| 229 | } |
Daniel Dunbar | 0cf1686 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 230 | // Set up a buffer and start over. |
| 231 | SetBuffered(); |
| 232 | return write(C); |
Dan Gohman | 23f90c1 | 2009-08-18 20:09:59 +0000 | [diff] [blame] | 233 | } |
Daniel Dunbar | 0cf1686 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 234 | |
| 235 | flush_nonempty(); |
Daniel Dunbar | 2d603da | 2009-03-17 01:13:35 +0000 | [diff] [blame] | 236 | } |
| 237 | |
Daniel Dunbar | 7a9bb9e | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 238 | *OutBufCur++ = C; |
Daniel Dunbar | 8786218 | 2009-03-16 22:08:44 +0000 | [diff] [blame] | 239 | return *this; |
Daniel Dunbar | 7a9bb9e | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 240 | } |
Chris Lattner | 0c19df4 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 241 | |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 242 | raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) { |
Daniel Dunbar | 64fa386 | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 243 | // Group exceptional cases into a single branch. |
Benjamin Kramer | bd7f8d0 | 2012-08-29 22:57:00 +0000 | [diff] [blame] | 244 | if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) { |
| 245 | if (LLVM_UNLIKELY(!OutBufStart)) { |
Daniel Dunbar | 317a6cd | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 246 | if (BufferMode == Unbuffered) { |
Dan Gohman | 52022c2 | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 247 | write_impl(Ptr, Size); |
| 248 | return *this; |
| 249 | } |
| 250 | // Set up a buffer and start over. |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 251 | SetBuffered(); |
Dan Gohman | 52022c2 | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 252 | return write(Ptr, Size); |
| 253 | } |
Daniel Dunbar | 0cf1686 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 254 | |
Benjamin Kramer | dfb0ad3 | 2011-03-04 19:49:30 +0000 | [diff] [blame] | 255 | size_t NumBytes = OutBufEnd - OutBufCur; |
| 256 | |
Benjamin Kramer | acf0842 | 2011-03-04 18:18:16 +0000 | [diff] [blame] | 257 | // If the buffer is empty at this point we have a string that is larger |
Benjamin Kramer | dfb0ad3 | 2011-03-04 19:49:30 +0000 | [diff] [blame] | 258 | // than the buffer. Directly write the chunk that is a multiple of the |
| 259 | // preferred buffer size and put the remainder in the buffer. |
Benjamin Kramer | bd7f8d0 | 2012-08-29 22:57:00 +0000 | [diff] [blame] | 260 | if (LLVM_UNLIKELY(OutBufCur == OutBufStart)) { |
Michael Ilseman | 5be22a1 | 2014-12-12 21:48:03 +0000 | [diff] [blame] | 261 | assert(NumBytes != 0 && "undefined behavior"); |
Benjamin Kramer | dfb0ad3 | 2011-03-04 19:49:30 +0000 | [diff] [blame] | 262 | size_t BytesToWrite = Size - (Size % NumBytes); |
| 263 | write_impl(Ptr, BytesToWrite); |
Matt Beaumont-Gay | a182be8 | 2013-03-12 23:55:24 +0000 | [diff] [blame] | 264 | size_t BytesRemaining = Size - BytesToWrite; |
| 265 | if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) { |
| 266 | // Too much left over to copy into our buffer. |
| 267 | return write(Ptr + BytesToWrite, BytesRemaining); |
| 268 | } |
| 269 | copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); |
Benjamin Kramer | acf0842 | 2011-03-04 18:18:16 +0000 | [diff] [blame] | 270 | return *this; |
| 271 | } |
| 272 | |
| 273 | // We don't have enough space in the buffer to fit the string in. Insert as |
| 274 | // much as possible, flush and start over with the remainder. |
Benjamin Kramer | acf0842 | 2011-03-04 18:18:16 +0000 | [diff] [blame] | 275 | copy_to_buffer(Ptr, NumBytes); |
| 276 | flush_nonempty(); |
| 277 | return write(Ptr + NumBytes, Size - NumBytes); |
Daniel Dunbar | 64fa386 | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 278 | } |
Dan Gohman | 52022c2 | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 279 | |
| 280 | copy_to_buffer(Ptr, Size); |
| 281 | |
| 282 | return *this; |
| 283 | } |
| 284 | |
| 285 | void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) { |
Dan Gohman | c04a00a | 2009-08-13 20:32:03 +0000 | [diff] [blame] | 286 | assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!"); |
Dan Gohman | 9820555 | 2009-08-13 18:38:15 +0000 | [diff] [blame] | 287 | |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 288 | // Handle short strings specially, memcpy isn't very good at very short |
| 289 | // strings. |
| 290 | switch (Size) { |
Justin Bogner | cd1d5aa | 2016-08-17 20:30:52 +0000 | [diff] [blame] | 291 | case 4: OutBufCur[3] = Ptr[3]; LLVM_FALLTHROUGH; |
| 292 | case 3: OutBufCur[2] = Ptr[2]; LLVM_FALLTHROUGH; |
| 293 | case 2: OutBufCur[1] = Ptr[1]; LLVM_FALLTHROUGH; |
| 294 | case 1: OutBufCur[0] = Ptr[0]; LLVM_FALLTHROUGH; |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 295 | case 0: break; |
| 296 | default: |
Dan Gohman | 52022c2 | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 297 | memcpy(OutBufCur, Ptr, Size); |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 298 | break; |
| 299 | } |
Daniel Dunbar | 3da6a70 | 2009-03-10 16:21:55 +0000 | [diff] [blame] | 300 | |
Dan Gohman | 52022c2 | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 301 | OutBufCur += Size; |
Owen Anderson | d285053 | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 302 | } |
| 303 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 304 | // Formatted output. |
| 305 | raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) { |
Daniel Dunbar | 64fa386 | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 306 | // If we have more than a few bytes left in our output buffer, try |
| 307 | // formatting directly onto its end. |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 308 | size_t NextBufferSize = 127; |
Daniel Dunbar | 47a309c | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 309 | size_t BufferBytesLeft = OutBufEnd - OutBufCur; |
| 310 | if (BufferBytesLeft > 3) { |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 311 | size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 312 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 313 | // Common case is that we have plenty of space. |
Daniel Dunbar | 47a309c | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 314 | if (BytesUsed <= BufferBytesLeft) { |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 315 | OutBufCur += BytesUsed; |
| 316 | return *this; |
| 317 | } |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 318 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 319 | // Otherwise, we overflowed and the return value tells us the size to try |
| 320 | // again with. |
| 321 | NextBufferSize = BytesUsed; |
| 322 | } |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 323 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 324 | // If we got here, we didn't have enough space in the output buffer for the |
| 325 | // string. Try printing into a SmallVector that is resized to have enough |
| 326 | // space. Iterate until we win. |
| 327 | SmallVector<char, 128> V; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 328 | |
Eugene Zelenko | 33d7b76 | 2016-08-23 17:14:32 +0000 | [diff] [blame] | 329 | while (true) { |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 330 | V.resize(NextBufferSize); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 331 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 332 | // Try formatting into the SmallVector. |
Daniel Dunbar | 47a309c | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 333 | size_t BytesUsed = Fmt.print(V.data(), NextBufferSize); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 334 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 335 | // If BytesUsed fit into the vector, we win. |
Chris Lattner | 2bfc72e | 2008-10-26 19:20:47 +0000 | [diff] [blame] | 336 | if (BytesUsed <= NextBufferSize) |
Daniel Dunbar | 47a309c | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 337 | return write(V.data(), BytesUsed); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 338 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 339 | // Otherwise, try again with a new size. |
| 340 | assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?"); |
| 341 | NextBufferSize = BytesUsed; |
| 342 | } |
| 343 | } |
| 344 | |
Zachary Turner | 11db264 | 2016-11-11 23:57:40 +0000 | [diff] [blame] | 345 | raw_ostream &raw_ostream::operator<<(const formatv_object_base &Obj) { |
| 346 | SmallString<128> S; |
| 347 | Obj.format(*this); |
| 348 | return *this; |
| 349 | } |
| 350 | |
Nick Kledzik | e648037 | 2014-09-25 20:30:58 +0000 | [diff] [blame] | 351 | raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { |
Frederich Munch | 5e9d6d0 | 2017-07-13 16:11:08 +0000 | [diff] [blame] | 352 | if (FS.Str.size() >= FS.Width || FS.Justify == FormattedString::JustifyNone) { |
| 353 | this->operator<<(FS.Str); |
| 354 | return *this; |
| 355 | } |
| 356 | const size_t Difference = FS.Width - FS.Str.size(); |
| 357 | switch (FS.Justify) { |
| 358 | case FormattedString::JustifyLeft: |
| 359 | this->operator<<(FS.Str); |
| 360 | this->indent(Difference); |
| 361 | break; |
| 362 | case FormattedString::JustifyRight: |
| 363 | this->indent(Difference); |
| 364 | this->operator<<(FS.Str); |
| 365 | break; |
| 366 | case FormattedString::JustifyCenter: { |
| 367 | int PadAmount = Difference / 2; |
Nick Kledzik | e648037 | 2014-09-25 20:30:58 +0000 | [diff] [blame] | 368 | this->indent(PadAmount); |
Frederich Munch | 5e9d6d0 | 2017-07-13 16:11:08 +0000 | [diff] [blame] | 369 | this->operator<<(FS.Str); |
| 370 | this->indent(Difference - PadAmount); |
| 371 | break; |
| 372 | } |
| 373 | default: |
| 374 | llvm_unreachable("Bad Justification"); |
| 375 | } |
Nick Kledzik | e648037 | 2014-09-25 20:30:58 +0000 | [diff] [blame] | 376 | return *this; |
| 377 | } |
| 378 | |
| 379 | raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { |
| 380 | if (FN.Hex) { |
Zachary Turner | 5b2243e | 2016-10-29 00:27:22 +0000 | [diff] [blame] | 381 | HexPrintStyle Style; |
| 382 | if (FN.Upper && FN.HexPrefix) |
| 383 | Style = HexPrintStyle::PrefixUpper; |
| 384 | else if (FN.Upper && !FN.HexPrefix) |
| 385 | Style = HexPrintStyle::Upper; |
| 386 | else if (!FN.Upper && FN.HexPrefix) |
| 387 | Style = HexPrintStyle::PrefixLower; |
| 388 | else |
| 389 | Style = HexPrintStyle::Lower; |
| 390 | llvm::write_hex(*this, FN.HexValue, Style, FN.Width); |
Nick Kledzik | e648037 | 2014-09-25 20:30:58 +0000 | [diff] [blame] | 391 | } else { |
Zachary Turner | 5b2243e | 2016-10-29 00:27:22 +0000 | [diff] [blame] | 392 | llvm::SmallString<16> Buffer; |
| 393 | llvm::raw_svector_ostream Stream(Buffer); |
Zachary Turner | 11db264 | 2016-11-11 23:57:40 +0000 | [diff] [blame] | 394 | llvm::write_integer(Stream, FN.DecValue, 0, IntegerStyle::Integer); |
Zachary Turner | 5b2243e | 2016-10-29 00:27:22 +0000 | [diff] [blame] | 395 | if (Buffer.size() < FN.Width) |
| 396 | indent(FN.Width - Buffer.size()); |
| 397 | (*this) << Buffer; |
Nick Kledzik | e648037 | 2014-09-25 20:30:58 +0000 | [diff] [blame] | 398 | } |
Zachary Turner | 733be51 | 2016-10-11 19:24:45 +0000 | [diff] [blame] | 399 | return *this; |
Nick Kledzik | e648037 | 2014-09-25 20:30:58 +0000 | [diff] [blame] | 400 | } |
| 401 | |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 402 | raw_ostream &raw_ostream::operator<<(const FormattedBytes &FB) { |
| 403 | if (FB.Bytes.empty()) |
| 404 | return *this; |
| 405 | |
Greg Clayton | bde0a16 | 2016-11-09 00:15:54 +0000 | [diff] [blame] | 406 | size_t LineIndex = 0; |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 407 | auto Bytes = FB.Bytes; |
| 408 | const size_t Size = Bytes.size(); |
| 409 | HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; |
| 410 | uint64_t OffsetWidth = 0; |
| 411 | if (FB.FirstByteOffset.hasValue()) { |
| 412 | // Figure out how many nibbles are needed to print the largest offset |
| 413 | // represented by this data set, so that we can align the offset field |
| 414 | // to the right width. |
| 415 | size_t Lines = Size / FB.NumPerLine; |
| 416 | uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; |
| 417 | unsigned Power = 0; |
| 418 | if (MaxOffset > 0) |
| 419 | Power = llvm::Log2_64_Ceil(MaxOffset); |
Zachary Turner | 805d43a | 2016-11-10 20:35:21 +0000 | [diff] [blame] | 420 | OffsetWidth = std::max<uint64_t>(4, llvm::alignTo(Power, 4) / 4); |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | // The width of a block of data including all spaces for group separators. |
| 424 | unsigned NumByteGroups = |
| 425 | alignTo(FB.NumPerLine, FB.ByteGroupSize) / FB.ByteGroupSize; |
| 426 | unsigned BlockCharWidth = FB.NumPerLine * 2 + NumByteGroups - 1; |
| 427 | |
| 428 | while (!Bytes.empty()) { |
| 429 | indent(FB.IndentLevel); |
| 430 | |
Greg Clayton | bde0a16 | 2016-11-09 00:15:54 +0000 | [diff] [blame] | 431 | if (FB.FirstByteOffset.hasValue()) { |
| 432 | uint64_t Offset = FB.FirstByteOffset.getValue(); |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 433 | llvm::write_hex(*this, Offset + LineIndex, HPS, OffsetWidth); |
Greg Clayton | bde0a16 | 2016-11-09 00:15:54 +0000 | [diff] [blame] | 434 | *this << ": "; |
| 435 | } |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 436 | |
| 437 | auto Line = Bytes.take_front(FB.NumPerLine); |
| 438 | |
| 439 | size_t CharsPrinted = 0; |
| 440 | // Print the hex bytes for this line in groups |
| 441 | for (size_t I = 0; I < Line.size(); ++I, CharsPrinted += 2) { |
| 442 | if (I && (I % FB.ByteGroupSize) == 0) { |
| 443 | ++CharsPrinted; |
Greg Clayton | bde0a16 | 2016-11-09 00:15:54 +0000 | [diff] [blame] | 444 | *this << " "; |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 445 | } |
| 446 | llvm::write_hex(*this, Line[I], HPS, 2); |
Greg Clayton | bde0a16 | 2016-11-09 00:15:54 +0000 | [diff] [blame] | 447 | } |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 448 | |
Greg Clayton | bde0a16 | 2016-11-09 00:15:54 +0000 | [diff] [blame] | 449 | if (FB.ASCII) { |
| 450 | // Print any spaces needed for any bytes that we didn't print on this |
| 451 | // line so that the ASCII bytes are correctly aligned. |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 452 | assert(BlockCharWidth >= CharsPrinted); |
| 453 | indent(BlockCharWidth - CharsPrinted + 2); |
| 454 | *this << "|"; |
| 455 | |
Greg Clayton | bde0a16 | 2016-11-09 00:15:54 +0000 | [diff] [blame] | 456 | // Print the ASCII char values for each byte on this line |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 457 | for (uint8_t Byte : Line) { |
Michael Kruse | 6f1da6e | 2018-07-26 15:31:41 +0000 | [diff] [blame] | 458 | if (isPrint(Byte)) |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 459 | *this << static_cast<char>(Byte); |
Greg Clayton | bde0a16 | 2016-11-09 00:15:54 +0000 | [diff] [blame] | 460 | else |
| 461 | *this << '.'; |
| 462 | } |
| 463 | *this << '|'; |
| 464 | } |
Zachary Turner | 4a86af0 | 2016-11-10 20:16:45 +0000 | [diff] [blame] | 465 | |
| 466 | Bytes = Bytes.drop_front(Line.size()); |
| 467 | LineIndex += Line.size(); |
Greg Clayton | bde0a16 | 2016-11-09 00:15:54 +0000 | [diff] [blame] | 468 | if (LineIndex < Size) |
| 469 | *this << '\n'; |
| 470 | } |
| 471 | return *this; |
| 472 | } |
| 473 | |
Peter Collingbourne | 070777d | 2018-05-17 22:11:43 +0000 | [diff] [blame] | 474 | template <char C> |
| 475 | static raw_ostream &write_padding(raw_ostream &OS, unsigned NumChars) { |
| 476 | static const char Chars[] = {C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, |
| 477 | C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, |
| 478 | C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, |
| 479 | C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, |
| 480 | C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C}; |
Chris Lattner | e6db2c3 | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 481 | |
| 482 | // Usually the indentation is small, handle it with a fastpath. |
Peter Collingbourne | 070777d | 2018-05-17 22:11:43 +0000 | [diff] [blame] | 483 | if (NumChars < array_lengthof(Chars)) |
| 484 | return OS.write(Chars, NumChars); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 485 | |
Peter Collingbourne | 070777d | 2018-05-17 22:11:43 +0000 | [diff] [blame] | 486 | while (NumChars) { |
| 487 | unsigned NumToWrite = std::min(NumChars, |
| 488 | (unsigned)array_lengthof(Chars)-1); |
| 489 | OS.write(Chars, NumToWrite); |
| 490 | NumChars -= NumToWrite; |
Chris Lattner | e6db2c3 | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 491 | } |
Peter Collingbourne | 070777d | 2018-05-17 22:11:43 +0000 | [diff] [blame] | 492 | return OS; |
| 493 | } |
| 494 | |
| 495 | /// indent - Insert 'NumSpaces' spaces. |
| 496 | raw_ostream &raw_ostream::indent(unsigned NumSpaces) { |
| 497 | return write_padding<' '>(*this, NumSpaces); |
| 498 | } |
| 499 | |
| 500 | /// write_zeros - Insert 'NumZeros' nulls. |
| 501 | raw_ostream &raw_ostream::write_zeros(unsigned NumZeros) { |
| 502 | return write_padding<'\0'>(*this, NumZeros); |
Chris Lattner | e6db2c3 | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 503 | } |
| 504 | |
Weiming Zhao | 1bd4000 | 2018-04-11 23:09:20 +0000 | [diff] [blame] | 505 | void raw_ostream::anchor() {} |
| 506 | |
Chris Lattner | 22b52c9 | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 507 | //===----------------------------------------------------------------------===// |
| 508 | // Formatted Output |
| 509 | //===----------------------------------------------------------------------===// |
| 510 | |
| 511 | // Out of line virtual method. |
| 512 | void format_object_base::home() { |
| 513 | } |
| 514 | |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 515 | //===----------------------------------------------------------------------===// |
| 516 | // raw_fd_ostream |
| 517 | //===----------------------------------------------------------------------===// |
| 518 | |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 519 | static int getFD(StringRef Filename, std::error_code &EC, |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 520 | sys::fs::CreationDisposition Disp, sys::fs::FileAccess Access, |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 521 | sys::fs::OpenFlags Flags) { |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 522 | assert((Access & sys::fs::FA_Write) && |
| 523 | "Cannot make a raw_ostream from a read-only descriptor!"); |
| 524 | |
Dan Gohman | c825cee | 2010-08-18 22:26:19 +0000 | [diff] [blame] | 525 | // Handle "-" as stdout. Note that when we do this, we consider ourself |
Yaron Keren | 80745c5 | 2017-03-31 12:08:45 +0000 | [diff] [blame] | 526 | // the owner of stdout and may set the "binary" flag globally based on Flags. |
Rafael Espindola | 3fd1e99 | 2014-08-25 18:16:47 +0000 | [diff] [blame] | 527 | if (Filename == "-") { |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 528 | EC = std::error_code(); |
Daniel Dunbar | ed90e70 | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 529 | // If user requested binary then put stdout into binary mode if |
| 530 | // possible. |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 531 | if (!(Flags & sys::fs::OF_Text)) |
Rafael Espindola | cb2eca0 | 2013-06-12 20:58:35 +0000 | [diff] [blame] | 532 | sys::ChangeStdoutToBinary(); |
Yaron Keren | 9d27c47 | 2017-03-30 19:30:51 +0000 | [diff] [blame] | 533 | return STDOUT_FILENO; |
Chris Lattner | d5bc068 | 2008-08-17 03:53:23 +0000 | [diff] [blame] | 534 | } |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 535 | |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 536 | int FD; |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 537 | if (Access & sys::fs::FA_Read) |
| 538 | EC = sys::fs::openFileForReadWrite(Filename, FD, Disp, Flags); |
| 539 | else |
| 540 | EC = sys::fs::openFileForWrite(Filename, FD, Disp, Flags); |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 541 | if (EC) |
| 542 | return -1; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 543 | |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 544 | return FD; |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 545 | } |
| 546 | |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 547 | raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC) |
| 548 | : raw_fd_ostream(Filename, EC, sys::fs::CD_CreateAlways, sys::fs::FA_Write, |
| 549 | sys::fs::OF_None) {} |
| 550 | |
| 551 | raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC, |
| 552 | sys::fs::CreationDisposition Disp) |
| 553 | : raw_fd_ostream(Filename, EC, Disp, sys::fs::FA_Write, sys::fs::OF_None) {} |
| 554 | |
| 555 | raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC, |
| 556 | sys::fs::FileAccess Access) |
| 557 | : raw_fd_ostream(Filename, EC, sys::fs::CD_CreateAlways, Access, |
| 558 | sys::fs::OF_None) {} |
| 559 | |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 560 | raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC, |
| 561 | sys::fs::OpenFlags Flags) |
Zachary Turner | 1f67a3c | 2018-06-07 19:58:58 +0000 | [diff] [blame] | 562 | : raw_fd_ostream(Filename, EC, sys::fs::CD_CreateAlways, sys::fs::FA_Write, |
| 563 | Flags) {} |
| 564 | |
| 565 | raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC, |
| 566 | sys::fs::CreationDisposition Disp, |
| 567 | sys::fs::FileAccess Access, |
| 568 | sys::fs::OpenFlags Flags) |
| 569 | : raw_fd_ostream(getFD(Filename, EC, Disp, Access, Flags), true) {} |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 570 | |
Rafael Espindola | 62e6ec0 | 2015-04-09 16:59:07 +0000 | [diff] [blame] | 571 | /// FD is the file descriptor that this writes to. If ShouldClose is true, this |
| 572 | /// closes the file when the stream is destroyed. |
Francois Pichet | a3037c3 | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 573 | raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) |
Rui Ueyama | 4d41c33 | 2019-08-02 07:22:34 +0000 | [diff] [blame] | 574 | : raw_pwrite_stream(unbuffered), FD(fd), ShouldClose(shouldClose) { |
| 575 | if (FD < 0 ) { |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 576 | ShouldClose = false; |
| 577 | return; |
| 578 | } |
Reid Kleckner | 02aeadc | 2017-08-04 01:39:23 +0000 | [diff] [blame] | 579 | |
| 580 | // Do not attempt to close stdout or stderr. We used to try to maintain the |
| 581 | // property that tools that support writing file to stdout should not also |
| 582 | // write informational output to stdout, but in practice we were never able to |
| 583 | // maintain this invariant. Many features have been added to LLVM and clang |
| 584 | // (-fdump-record-layouts, optimization remarks, etc) that print to stdout, so |
| 585 | // users must simply be aware that mixed output and remarks is a possibility. |
Yaron Keren | 9d27c47 | 2017-03-30 19:30:51 +0000 | [diff] [blame] | 586 | if (FD <= STDERR_FILENO) |
| 587 | ShouldClose = false; |
Michael J. Spencer | b747990 | 2011-01-17 15:53:12 +0000 | [diff] [blame] | 588 | |
Reid Kleckner | 2b8c692 | 2018-09-05 00:08:56 +0000 | [diff] [blame] | 589 | #ifdef _WIN32 |
| 590 | // Check if this is a console device. This is not equivalent to isatty. |
| 591 | IsWindowsConsole = |
| 592 | ::GetFileType((HANDLE)::_get_osfhandle(fd)) == FILE_TYPE_CHAR; |
| 593 | #endif |
| 594 | |
Michael J. Spencer | b747990 | 2011-01-17 15:53:12 +0000 | [diff] [blame] | 595 | // Get the starting position. |
| 596 | off_t loc = ::lseek(FD, 0, SEEK_CUR); |
Nico Weber | 712e8d2 | 2018-04-29 00:45:03 +0000 | [diff] [blame] | 597 | #ifdef _WIN32 |
Rafael Espindola | a9b84ab | 2015-04-13 11:09:48 +0000 | [diff] [blame] | 598 | // MSVCRT's _lseek(SEEK_CUR) doesn't return -1 for pipes. |
| 599 | sys::fs::file_status Status; |
| 600 | std::error_code EC = status(FD, Status); |
| 601 | SupportsSeeking = !EC && Status.type() == sys::fs::file_type::regular_file; |
| 602 | #else |
Rafael Espindola | 74d2f61 | 2015-04-10 18:15:51 +0000 | [diff] [blame] | 603 | SupportsSeeking = loc != (off_t)-1; |
Rafael Espindola | a9b84ab | 2015-04-13 11:09:48 +0000 | [diff] [blame] | 604 | #endif |
Rafael Espindola | 74d2f61 | 2015-04-10 18:15:51 +0000 | [diff] [blame] | 605 | if (!SupportsSeeking) |
Michael J. Spencer | b747990 | 2011-01-17 15:53:12 +0000 | [diff] [blame] | 606 | pos = 0; |
| 607 | else |
| 608 | pos = static_cast<uint64_t>(loc); |
Francois Pichet | a3037c3 | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 609 | } |
| 610 | |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 611 | raw_fd_ostream::~raw_fd_ostream() { |
Dan Gohman | 38adfdd | 2010-08-20 16:34:20 +0000 | [diff] [blame] | 612 | if (FD >= 0) { |
| 613 | flush(); |
Bob Haarman | 9ce2d03 | 2017-10-24 01:26:22 +0000 | [diff] [blame] | 614 | if (ShouldClose) { |
| 615 | if (auto EC = sys::Process::SafelyCloseFileDescriptor(FD)) |
| 616 | error_detected(EC); |
| 617 | } |
Dan Gohman | 38adfdd | 2010-08-20 16:34:20 +0000 | [diff] [blame] | 618 | } |
| 619 | |
NAKAMURA Takumi | 76e68ea | 2011-03-16 02:53:39 +0000 | [diff] [blame] | 620 | #ifdef __MINGW32__ |
| 621 | // On mingw, global dtors should not call exit(). |
| 622 | // report_fatal_error() invokes exit(). We know report_fatal_error() |
| 623 | // might not write messages to stderr when any errors were detected |
| 624 | // on FD == 2. |
| 625 | if (FD == 2) return; |
| 626 | #endif |
| 627 | |
Dan Gohman | 38adfdd | 2010-08-20 16:34:20 +0000 | [diff] [blame] | 628 | // If there are any pending errors, report them now. Clients wishing |
| 629 | // to avoid report_fatal_error calls should check for errors with |
| 630 | // has_error() and clear the error flag with clear_error() before |
| 631 | // destructing raw_ostream objects which may have errors. |
| 632 | if (has_error()) |
Bob Haarman | 9ce2d03 | 2017-10-24 01:26:22 +0000 | [diff] [blame] | 633 | report_fatal_error("IO failure on output stream: " + error().message(), |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 634 | /*gen_crash_diag=*/false); |
Chris Lattner | ce3b2c3 | 2010-08-17 23:11:56 +0000 | [diff] [blame] | 635 | } |
Chris Lattner | 9e6f1f1 | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 636 | |
Reid Kleckner | 2b8c692 | 2018-09-05 00:08:56 +0000 | [diff] [blame] | 637 | #if defined(_WIN32) |
| 638 | // The most reliable way to print unicode in a Windows console is with |
| 639 | // WriteConsoleW. To use that, first transcode from UTF-8 to UTF-16. This |
| 640 | // assumes that LLVM programs always print valid UTF-8 to the console. The data |
| 641 | // might not be UTF-8 for two major reasons: |
| 642 | // 1. The program is printing binary (-filetype=obj -o -), in which case it |
| 643 | // would have been gibberish anyway. |
| 644 | // 2. The program is printing text in a semi-ascii compatible codepage like |
| 645 | // shift-jis or cp1252. |
| 646 | // |
| 647 | // Most LLVM programs don't produce non-ascii text unless they are quoting |
| 648 | // user source input. A well-behaved LLVM program should either validate that |
| 649 | // the input is UTF-8 or transcode from the local codepage to UTF-8 before |
| 650 | // quoting it. If they don't, this may mess up the encoding, but this is still |
| 651 | // probably the best compromise we can make. |
| 652 | static bool write_console_impl(int FD, StringRef Data) { |
| 653 | SmallVector<wchar_t, 256> WideText; |
| 654 | |
| 655 | // Fall back to ::write if it wasn't valid UTF-8. |
| 656 | if (auto EC = sys::windows::UTF8ToUTF16(Data, WideText)) |
| 657 | return false; |
| 658 | |
| 659 | // On Windows 7 and earlier, WriteConsoleW has a low maximum amount of data |
| 660 | // that can be written to the console at a time. |
| 661 | size_t MaxWriteSize = WideText.size(); |
| 662 | if (!RunningWindows8OrGreater()) |
| 663 | MaxWriteSize = 32767; |
| 664 | |
| 665 | size_t WCharsWritten = 0; |
| 666 | do { |
| 667 | size_t WCharsToWrite = |
| 668 | std::min(MaxWriteSize, WideText.size() - WCharsWritten); |
| 669 | DWORD ActuallyWritten; |
| 670 | bool Success = |
| 671 | ::WriteConsoleW((HANDLE)::_get_osfhandle(FD), &WideText[WCharsWritten], |
| 672 | WCharsToWrite, &ActuallyWritten, |
| 673 | /*Reserved=*/nullptr); |
| 674 | |
| 675 | // The most likely reason for WriteConsoleW to fail is that FD no longer |
| 676 | // points to a console. Fall back to ::write. If this isn't the first loop |
| 677 | // iteration, something is truly wrong. |
| 678 | if (!Success) |
| 679 | return false; |
| 680 | |
| 681 | WCharsWritten += ActuallyWritten; |
| 682 | } while (WCharsWritten != WideText.size()); |
| 683 | return true; |
| 684 | } |
| 685 | #endif |
| 686 | |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 687 | void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) { |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 688 | assert(FD >= 0 && "File already closed."); |
Daniel Dunbar | db7a36c | 2009-03-16 23:29:31 +0000 | [diff] [blame] | 689 | pos += Size; |
Dan Gohman | ef969f3 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 690 | |
Reid Kleckner | 2b8c692 | 2018-09-05 00:08:56 +0000 | [diff] [blame] | 691 | #if defined(_WIN32) |
| 692 | // If this is a Windows console device, try re-encoding from UTF-8 to UTF-16 |
| 693 | // and using WriteConsoleW. If that fails, fall back to plain write(). |
| 694 | if (IsWindowsConsole) |
| 695 | if (write_console_impl(FD, StringRef(Ptr, Size))) |
| 696 | return; |
| 697 | #endif |
| 698 | |
Owen Reynolds | a489d11 | 2018-08-06 16:21:41 +0000 | [diff] [blame] | 699 | // The maximum write size is limited to INT32_MAX. A write |
| 700 | // greater than SSIZE_MAX is implementation-defined in POSIX, |
| 701 | // and Windows _write requires 32 bit input. |
| 702 | size_t MaxWriteSize = INT32_MAX; |
Rui Ueyama | 412b29e | 2017-10-31 17:37:20 +0000 | [diff] [blame] | 703 | |
Saleem Abdulrasool | 8199dad | 2017-06-20 20:51:51 +0000 | [diff] [blame] | 704 | #if defined(__linux__) |
Rui Ueyama | 412b29e | 2017-10-31 17:37:20 +0000 | [diff] [blame] | 705 | // It is observed that Linux returns EINVAL for a very large write (>2G). |
| 706 | // Make it a reasonably small value. |
| 707 | MaxWriteSize = 1024 * 1024 * 1024; |
Yunzhong Gao | fb2a9c4 | 2016-01-06 00:50:06 +0000 | [diff] [blame] | 708 | #endif |
| 709 | |
Benjamin Kramer | ce84a25 | 2010-05-05 15:17:47 +0000 | [diff] [blame] | 710 | do { |
Rui Ueyama | 412b29e | 2017-10-31 17:37:20 +0000 | [diff] [blame] | 711 | size_t ChunkSize = std::min(Size, MaxWriteSize); |
Yunzhong Gao | fb2a9c4 | 2016-01-06 00:50:06 +0000 | [diff] [blame] | 712 | ssize_t ret = ::write(FD, Ptr, ChunkSize); |
Dan Gohman | ef969f3 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 713 | |
| 714 | if (ret < 0) { |
| 715 | // If it's a recoverable error, swallow it and retry the write. |
Dan Gohman | dea5310 | 2010-05-18 15:25:14 +0000 | [diff] [blame] | 716 | // |
| 717 | // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since |
| 718 | // raw_ostream isn't designed to do non-blocking I/O. However, some |
| 719 | // programs, such as old versions of bjam, have mistakenly used |
| 720 | // O_NONBLOCK. For compatibility, emulate blocking semantics by |
| 721 | // spinning until the write succeeds. If you don't want spinning, |
| 722 | // don't use O_NONBLOCK file descriptors with raw_ostream. |
Dan Gohman | d351116 | 2010-05-06 02:06:20 +0000 | [diff] [blame] | 723 | if (errno == EINTR || errno == EAGAIN |
| 724 | #ifdef EWOULDBLOCK |
| 725 | || errno == EWOULDBLOCK |
| 726 | #endif |
| 727 | ) |
Dan Gohman | ef969f3 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 728 | continue; |
| 729 | |
| 730 | // Otherwise it's a non-recoverable error. Note it and quit. |
Bob Haarman | 9ce2d03 | 2017-10-24 01:26:22 +0000 | [diff] [blame] | 731 | error_detected(std::error_code(errno, std::generic_category())); |
Dan Gohman | ef969f3 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 732 | break; |
| 733 | } |
| 734 | |
| 735 | // The write may have written some or all of the data. Update the |
| 736 | // size and buffer pointer to reflect the remainder that needs |
| 737 | // to be written. If there are no bytes left, we're done. |
| 738 | Ptr += ret; |
| 739 | Size -= ret; |
| 740 | } while (Size > 0); |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 741 | } |
| 742 | |
Dan Gohman | 44790e7 | 2010-08-18 01:34:52 +0000 | [diff] [blame] | 743 | void raw_fd_ostream::close() { |
| 744 | assert(ShouldClose); |
| 745 | ShouldClose = false; |
| 746 | flush(); |
Bob Haarman | 9ce2d03 | 2017-10-24 01:26:22 +0000 | [diff] [blame] | 747 | if (auto EC = sys::Process::SafelyCloseFileDescriptor(FD)) |
| 748 | error_detected(EC); |
Dan Gohman | 44790e7 | 2010-08-18 01:34:52 +0000 | [diff] [blame] | 749 | FD = -1; |
| 750 | } |
| 751 | |
Ted Kremenek | a266992 | 2009-01-26 21:42:04 +0000 | [diff] [blame] | 752 | uint64_t raw_fd_ostream::seek(uint64_t off) { |
Yaron Keren | 7cf7f80 | 2016-02-23 07:17:58 +0000 | [diff] [blame] | 753 | assert(SupportsSeeking && "Stream does not support seeking!"); |
Ted Kremenek | a266992 | 2009-01-26 21:42:04 +0000 | [diff] [blame] | 754 | flush(); |
Nico Weber | 712e8d2 | 2018-04-29 00:45:03 +0000 | [diff] [blame] | 755 | #ifdef _WIN32 |
Peter Collingbourne | 8db7e5e | 2016-12-09 05:20:43 +0000 | [diff] [blame] | 756 | pos = ::_lseeki64(FD, off, SEEK_SET); |
| 757 | #elif defined(HAVE_LSEEK64) |
| 758 | pos = ::lseek64(FD, off, SEEK_SET); |
| 759 | #else |
Peter Collingbourne | f74fcdd | 2016-12-09 05:04:30 +0000 | [diff] [blame] | 760 | pos = ::lseek(FD, off, SEEK_SET); |
Peter Collingbourne | 8db7e5e | 2016-12-09 05:20:43 +0000 | [diff] [blame] | 761 | #endif |
Rafael Espindola | 642a221 | 2015-04-14 22:54:16 +0000 | [diff] [blame] | 762 | if (pos == (uint64_t)-1) |
Bob Haarman | 9ce2d03 | 2017-10-24 01:26:22 +0000 | [diff] [blame] | 763 | error_detected(std::error_code(errno, std::generic_category())); |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 764 | return pos; |
Ted Kremenek | a266992 | 2009-01-26 21:42:04 +0000 | [diff] [blame] | 765 | } |
| 766 | |
Rafael Espindola | 4ba9af1 | 2015-04-20 13:04:30 +0000 | [diff] [blame] | 767 | void raw_fd_ostream::pwrite_impl(const char *Ptr, size_t Size, |
| 768 | uint64_t Offset) { |
Rafael Espindola | 37b7015 | 2015-04-14 15:00:34 +0000 | [diff] [blame] | 769 | uint64_t Pos = tell(); |
| 770 | seek(Offset); |
| 771 | write(Ptr, Size); |
| 772 | seek(Pos); |
| 773 | } |
| 774 | |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 775 | size_t raw_fd_ostream::preferred_buffer_size() const { |
Reid Kleckner | 2b8c692 | 2018-09-05 00:08:56 +0000 | [diff] [blame] | 776 | #if defined(_WIN32) |
| 777 | // Disable buffering for console devices. Console output is re-encoded from |
| 778 | // UTF-8 to UTF-16 on Windows, and buffering it would require us to split the |
| 779 | // buffer on a valid UTF-8 codepoint boundary. Terminal buffering is disabled |
| 780 | // below on most other OSs, so do the same thing on Windows and avoid that |
| 781 | // complexity. |
| 782 | if (IsWindowsConsole) |
| 783 | return 0; |
| 784 | return raw_ostream::preferred_buffer_size(); |
| 785 | #elif !defined(__minix) |
| 786 | // Minix has no st_blksize. |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 787 | assert(FD >= 0 && "File not yet open!"); |
| 788 | struct stat statbuf; |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 789 | if (fstat(FD, &statbuf) != 0) |
| 790 | return 0; |
Dan Gohman | b452d4e | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 791 | |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 792 | // If this is a terminal, don't use buffering. Line buffering |
| 793 | // would be a more traditional thing to do, but it's not worth |
| 794 | // the complexity. |
| 795 | if (S_ISCHR(statbuf.st_mode) && isatty(FD)) |
| 796 | return 0; |
| 797 | // Return the preferred block size. |
| 798 | return statbuf.st_blksize; |
Dan Gohman | feaeb36 | 2010-05-28 16:50:01 +0000 | [diff] [blame] | 799 | #else |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 800 | return raw_ostream::preferred_buffer_size(); |
Dan Gohman | feaeb36 | 2010-05-28 16:50:01 +0000 | [diff] [blame] | 801 | #endif |
Dan Gohman | 84487b9 | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 802 | } |
| 803 | |
Rui Ueyama | 4d41c33 | 2019-08-02 07:22:34 +0000 | [diff] [blame] | 804 | raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold, |
| 805 | bool bg) { |
Rui Ueyama | cac8df1 | 2019-08-07 08:08:17 +0000 | [diff] [blame] | 806 | if (!ColorEnabled) |
| 807 | return *this; |
| 808 | |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 809 | if (sys::Process::ColorNeedsFlush()) |
| 810 | flush(); |
| 811 | const char *colorcode = |
Rui Ueyama | cac8df1 | 2019-08-07 08:08:17 +0000 | [diff] [blame] | 812 | (colors == SAVEDCOLOR) |
| 813 | ? sys::Process::OutputBold(bg) |
| 814 | : sys::Process::OutputColor(static_cast<char>(colors), bold, bg); |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 815 | if (colorcode) { |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 816 | size_t len = strlen(colorcode); |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 817 | write(colorcode, len); |
| 818 | // don't account colors towards output characters |
| 819 | pos -= len; |
| 820 | } |
| 821 | return *this; |
| 822 | } |
| 823 | |
| 824 | raw_ostream &raw_fd_ostream::resetColor() { |
Rui Ueyama | cac8df1 | 2019-08-07 08:08:17 +0000 | [diff] [blame] | 825 | if (!ColorEnabled) |
| 826 | return *this; |
| 827 | |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 828 | if (sys::Process::ColorNeedsFlush()) |
| 829 | flush(); |
| 830 | const char *colorcode = sys::Process::ResetColor(); |
| 831 | if (colorcode) { |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 832 | size_t len = strlen(colorcode); |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 833 | write(colorcode, len); |
| 834 | // don't account colors towards output characters |
| 835 | pos -= len; |
| 836 | } |
| 837 | return *this; |
| 838 | } |
| 839 | |
Benjamin Kramer | 13d16f3 | 2012-04-16 08:56:50 +0000 | [diff] [blame] | 840 | raw_ostream &raw_fd_ostream::reverseColor() { |
Rui Ueyama | cac8df1 | 2019-08-07 08:08:17 +0000 | [diff] [blame] | 841 | if (!ColorEnabled) |
| 842 | return *this; |
| 843 | |
Benjamin Kramer | 13d16f3 | 2012-04-16 08:56:50 +0000 | [diff] [blame] | 844 | if (sys::Process::ColorNeedsFlush()) |
| 845 | flush(); |
| 846 | const char *colorcode = sys::Process::OutputReverse(); |
| 847 | if (colorcode) { |
| 848 | size_t len = strlen(colorcode); |
| 849 | write(colorcode, len); |
| 850 | // don't account colors towards output characters |
| 851 | pos -= len; |
| 852 | } |
| 853 | return *this; |
| 854 | } |
| 855 | |
Dan Gohman | e592923 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 856 | bool raw_fd_ostream::is_displayed() const { |
| 857 | return sys::Process::FileDescriptorIsDisplayed(FD); |
| 858 | } |
| 859 | |
Daniel Dunbar | 04b4583 | 2012-07-20 18:29:41 +0000 | [diff] [blame] | 860 | bool raw_fd_ostream::has_colors() const { |
| 861 | return sys::Process::FileDescriptorHasColors(FD); |
| 862 | } |
| 863 | |
Weiming Zhao | 1bd4000 | 2018-04-11 23:09:20 +0000 | [diff] [blame] | 864 | void raw_fd_ostream::anchor() {} |
| 865 | |
Chris Lattner | d3723fc | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 866 | //===----------------------------------------------------------------------===// |
Dan Gohman | e9a4691 | 2010-08-20 16:44:56 +0000 | [diff] [blame] | 867 | // outs(), errs(), nulls() |
Chris Lattner | d3723fc | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 868 | //===----------------------------------------------------------------------===// |
Chris Lattner | 84b94f7 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 869 | |
Chris Lattner | d3723fc | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 870 | /// outs() - This returns a reference to a raw_ostream for standard output. |
| 871 | /// Use it like: outs() << "foo" << "bar"; |
Owen Anderson | 9371964 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 872 | raw_ostream &llvm::outs() { |
Reid Kleckner | 02aeadc | 2017-08-04 01:39:23 +0000 | [diff] [blame] | 873 | // Set buffer settings to model stdout behavior. |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 874 | std::error_code EC; |
Fangrui Song | d9b948b | 2019-08-05 05:43:48 +0000 | [diff] [blame] | 875 | static raw_fd_ostream S("-", EC, sys::fs::OF_None); |
Rafael Espindola | 79be4cc | 2015-04-13 10:28:56 +0000 | [diff] [blame] | 876 | assert(!EC); |
Chris Lattner | d3723fc | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 877 | return S; |
| 878 | } |
| 879 | |
| 880 | /// errs() - This returns a reference to a raw_ostream for standard error. |
| 881 | /// Use it like: errs() << "foo" << "bar"; |
Owen Anderson | 9371964 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 882 | raw_ostream &llvm::errs() { |
Dan Gohman | 443f2d6 | 2010-08-20 16:39:41 +0000 | [diff] [blame] | 883 | // Set standard error to be unbuffered by default. |
| 884 | static raw_fd_ostream S(STDERR_FILENO, false, true); |
Chris Lattner | d3723fc | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 885 | return S; |
| 886 | } |
| 887 | |
Daniel Dunbar | 95a551a | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 888 | /// nulls() - This returns a reference to a raw_ostream which discards output. |
| 889 | raw_ostream &llvm::nulls() { |
| 890 | static raw_null_ostream S; |
| 891 | return S; |
| 892 | } |
| 893 | |
Chris Lattner | 205af96 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 894 | //===----------------------------------------------------------------------===// |
| 895 | // raw_string_ostream |
| 896 | //===----------------------------------------------------------------------===// |
| 897 | |
Daniel Dunbar | d882f4b | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 898 | raw_string_ostream::~raw_string_ostream() { |
| 899 | flush(); |
| 900 | } |
| 901 | |
Dan Gohman | f199ad6 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 902 | void raw_string_ostream::write_impl(const char *Ptr, size_t Size) { |
Daniel Dunbar | db7a36c | 2009-03-16 23:29:31 +0000 | [diff] [blame] | 903 | OS.append(Ptr, Size); |
Chris Lattner | 205af96 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 904 | } |
| 905 | |
| 906 | //===----------------------------------------------------------------------===// |
| 907 | // raw_svector_ostream |
| 908 | //===----------------------------------------------------------------------===// |
| 909 | |
Yaron Keren | 3d1173b | 2015-08-13 06:19:52 +0000 | [diff] [blame] | 910 | uint64_t raw_svector_ostream::current_pos() const { return OS.size(); } |
Daniel Dunbar | b090bf4 | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 911 | |
Yaron Keren | 3d1173b | 2015-08-13 06:19:52 +0000 | [diff] [blame] | 912 | void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) { |
| 913 | OS.append(Ptr, Ptr + Size); |
Nick Lewycky | e2f6fb5 | 2015-08-13 18:10:19 +0000 | [diff] [blame] | 914 | } |
Daniel Dunbar | d882f4b | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 915 | |
Rafael Espindola | 4ba9af1 | 2015-04-20 13:04:30 +0000 | [diff] [blame] | 916 | void raw_svector_ostream::pwrite_impl(const char *Ptr, size_t Size, |
| 917 | uint64_t Offset) { |
Yaron Keren | 3d1173b | 2015-08-13 06:19:52 +0000 | [diff] [blame] | 918 | memcpy(OS.data() + Offset, Ptr, Size); |
Daniel Dunbar | e813cba | 2009-08-19 18:40:58 +0000 | [diff] [blame] | 919 | } |
| 920 | |
Daniel Dunbar | 95a551a | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 921 | //===----------------------------------------------------------------------===// |
| 922 | // raw_null_ostream |
| 923 | //===----------------------------------------------------------------------===// |
| 924 | |
Dan Gohman | 4b66b47 | 2009-07-27 21:46:02 +0000 | [diff] [blame] | 925 | raw_null_ostream::~raw_null_ostream() { |
| 926 | #ifndef NDEBUG |
| 927 | // ~raw_ostream asserts that the buffer is empty. This isn't necessary |
| 928 | // with raw_null_ostream, but it's better to have raw_null_ostream follow |
| 929 | // the rules than to change the rules just for raw_null_ostream. |
| 930 | flush(); |
| 931 | #endif |
| 932 | } |
| 933 | |
Daniel Dunbar | 95a551a | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 934 | void raw_null_ostream::write_impl(const char *Ptr, size_t Size) { |
| 935 | } |
| 936 | |
Chris Lattner | dd3e9aa | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 937 | uint64_t raw_null_ostream::current_pos() const { |
Daniel Dunbar | 95a551a | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 938 | return 0; |
| 939 | } |
Rafael Espindola | 37b7015 | 2015-04-14 15:00:34 +0000 | [diff] [blame] | 940 | |
Rafael Espindola | 4ba9af1 | 2015-04-20 13:04:30 +0000 | [diff] [blame] | 941 | void raw_null_ostream::pwrite_impl(const char *Ptr, size_t Size, |
| 942 | uint64_t Offset) {} |
Weiming Zhao | 1bd4000 | 2018-04-11 23:09:20 +0000 | [diff] [blame] | 943 | |
| 944 | void raw_pwrite_stream::anchor() {} |
Richard Trieu | a87b70d | 2018-12-29 02:02:13 +0000 | [diff] [blame] | 945 | |
| 946 | void buffer_ostream::anchor() {} |