aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/raw_ostream.cpp
AgeCommit message (Expand)AuthorFilesLines
2018-04-11Add missing vtable anchorsWeiming Zhao1-0/+6
2018-04-02Remove HAVE_WRITEV that's unused after r255837.Nico Weber1-3/+0
2017-10-31[Support] Make the default chunk size of raw_fd_ostream to 1 GiB.Rui Ueyama1-11/+12
2017-10-24[raw_fd_ostream] report actual error in error messagesBob Haarman1-9/+11
2017-09-13llvm-dwarfdump: support dumping UUIDs of Mach-O binaries.Adrian Prantl1-0/+10
2017-08-04[Support] Update comments about stdout, raw_fd_ostream, and outs()Reid Kleckner1-9/+8
2017-07-13Support: Add llvm::center_justify.Frederich Munch1-6/+23
2017-06-20Support: chunk writing on LinuxSaleem Abdulrasool1-0/+4
2017-03-31Update comment for r299098 per feedback from James Henderson.Yaron Keren1-2/+1
2017-03-30Following r297661, disable dup workaround to disable duplicate STDOUT fd clos...Yaron Keren1-1/+8
2017-03-13Bring back r297624.Rafael Espindola1-1/+1
2017-03-13Revert "Fix crash when multiple raw_fd_ostreams to stdout are created."Rafael Espindola1-1/+1
2017-03-13Fix crash when multiple raw_fd_ostreams to stdout are created.Rafael Espindola1-1/+1
2016-12-09Re-commit r289184, "Support: Use a 64-bit seek in raw_fd_ostream::seek()." wi...Peter Collingbourne1-0/+6
2016-12-09Revert r289184, we need more configury for Darwin and *BSD.Peter Collingbourne1-5/+1
2016-12-09Support: Use a 64-bit seek in raw_fd_ostream::seek().Peter Collingbourne1-1/+5
2016-11-11[Support] Introduce llvm::formatv() function.Zachary Turner1-5/+12
2016-11-10Fix type ambiguity with std::maxZachary Turner1-1/+1
2016-11-10[Support] Improve flexibility of binary blob formatter.Zachary Turner1-33/+50
2016-11-09Added the ability to dump hex bytes easily into a raw_ostream.Greg Clayton1-0/+55
2016-10-29Resubmit "Add support for advanced number formatting."Zachary Turner1-9/+23
2016-10-18Revert "Resubmit "Add support for advanced number formatting.""Renato Golin1-19/+9
2016-10-17Rename HexStyle -> HexFormatStyle, and remove a constexpr.Zachary Turner1-7/+7
2016-10-17Resubmit "Add support for advanced number formatting."Zachary Turner1-9/+19
2016-10-17Revert formatting changes.Zachary Turner1-19/+9
2016-10-17[Support] Add support for "advanced" number formatting.Zachary Turner1-9/+19
2016-10-11[raw_ostream] Raise some helper functions out of raw_ostream.Zachary Turner1-137/+19
2016-08-23Fix some Clang-tidy modernize-use-using and Include What You Use warnings; ot...Eugene Zelenko1-8/+5
2016-08-17Replace a few more "fall through" comments with LLVM_FALLTHROUGHJustin Bogner1-4/+4
2016-03-28C++11 is required, remove some preprocessor checks for itHal Finkel1-1/+1
2016-02-23Assert when trying to seek un-seekable raw_fd_ostream.Yaron Keren1-0/+1
2016-02-19When printing MIR, output to errs() rather than outs().Justin Lebar1-3/+4
2016-02-08[Support] Use hexdigit. NFCCraig Topper1-3/+2
2016-02-04[Support] Use range-based for loop. NFCCraig Topper1-3/+1
2016-02-04[Support] Use hexdigit instead of manually coding the same thing. NFCCraig Topper1-2/+2
2016-01-31Shrink character buffer size in raw_ostream::write_hex to 16 characters intea...Craig Topper1-1/+1
2016-01-31Use std::end instead of repeating buffer sizes.Craig Topper1-2/+2
2016-01-11Avoid the deprecated GetVersionEx APIReid Kleckner1-1/+1
2016-01-06Fixing PR25717: fatal IO error writing large outputs to console on Windows.Yunzhong Gao1-1/+18
2015-12-16Drop an unnecessary use of writev.Rafael Espindola1-16/+2
2015-12-03Revert "raw_ostream: << operator for callables with raw_stream argument"Matthias Braun1-4/+0
2015-12-03raw_ostream: << operator for callables with raw_stream argumentMatthias Braun1-0/+4
2015-08-13Fix GCC warning: extra `;' [-Wpedantic].Nick Lewycky1-1/+1
2015-08-13Modify raw_svector_ostream to use its SmallString without additional buffering.Yaron Keren1-62/+5
2015-05-30Fix indentation. NFC.Craig Topper1-1/+1
2015-04-20Don't allow pwrite to resize a stream.Rafael Espindola1-9/+6
2015-04-14Use the ability to pwrite to simplify the ELF writer.Rafael Espindola1-1/+1
2015-04-14Add raw_pwrite_stream type.Rafael Espindola1-2/+29
2015-04-13Fix SupportsSeeking detection on windows.Rafael Espindola1-0/+7
2015-04-13Add r234615 back, but make sure outs() is binary.Rafael Espindola1-25/+21