aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/raw_ostream.cpp
AgeCommit message (Expand)AuthorFilesLines
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
2015-04-13Revert r234615, "Have one raw_fd_ostream constructor forward to the other."NAKAMURA Takumi1-18/+24
2015-04-10Remember if lseek works in this FD.Rafael Espindola1-1/+2
2015-04-10Have one raw_fd_ostream constructor forward to the other.Rafael Espindola1-24/+18
2015-04-09Misc cleanup. NFC.Rafael Espindola1-4/+4
2015-04-09This reverts commit r234460 and r234461.Rafael Espindola1-5/+4
2015-04-09Add classof implementations to the raw_ostream classes.Rafael Espindola1-4/+5
2015-02-15Format: Modernize using variadic templates.Benjamin Kramer1-1/+1
2015-01-26Teach raw_ostream to support hex formatting without a prefix '0x'.Zachary Turner1-2/+5
2014-12-12Clean up static analyzer warnings.Michael Ilseman1-0/+1
2014-10-07Support: Don't call close again if we get EINTRDavid Majnemer1-11/+4
2014-09-26Support: Remove undefined behavior from &raw_ostream::operator<<David Majnemer1-1/+1
2014-09-25[Support] Add type-safe alternative to llvm::format()Nick Kledzik1-0/+57
2014-08-25Modernize raw_fd_ostream's constructor a bit.Rafael Espindola1-12/+4
2014-07-17Typo: exists -> exitsHans Wennborg1-1/+1
2014-07-11Simplify the raw_svector_ostream tweak from r212816Alp Toker1-13/+4
2014-07-11raw_svector_ostream: grow and reserve atomicallyAlp Toker1-15/+17
2014-06-26Revert "Introduce a string_ostream string builder facilty"Alp Toker1-4/+0
2014-06-26Introduce a string_ostream string builder faciltyAlp Toker1-0/+4
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-1/+1
2014-06-12Remove system_error.h.Rafael Espindola1-1/+1
2014-04-15[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-3/+3
2014-02-27Revert "Use StringRef in raw_fd_ostream constructor"Ben Langmuir1-2/+3
2014-02-26Use StringRef in raw_fd_ostream constructorBen Langmuir1-3/+2
2014-02-24Replace the F_Binary flag with a F_Text one.Rafael Espindola1-1/+1
2014-01-12raw_fd_ostream: Don't change STDERR to O_BINARY, or w*printf() (in assert()) ...NAKAMURA Takumi1-2/+3
2014-01-12raw_stream formatter: [Win32] Use std::signbit() if available, instead of _fp...NAKAMURA Takumi1-0/+6
2013-10-03raw_fd_ostream: Be more verbose about the reason when opening a file fails.Benjamin Kramer1-1/+2