add a new MCAsmStreamer::GetCommentOS method to simplify stuff
[oota-llvm.git] / include / llvm / Support / raw_ostream.h
2010-01-22 Chris Lattneradd a new MCAsmStreamer::GetCommentOS method to simplif...
2009-12-19 Chris LattnerMake some methods const. The only interesting change...
2009-12-14 Dan GohmanMicro-optimize these functions in the case where they...
2009-11-06 Daniel DunbarPass StringRef by value.
2009-10-26 Chandler CarruthMove DataTypes.h to include/llvm/System, update all...
2009-10-17 Daniel DunbarAdd raw_ostream::write_escaped, for writing escaped...
2009-10-14 Eric ChristopherOne more iteration here and a yet better way to solve it.
2009-10-14 Eric ChristopherFix the unused argument problem here a different way...
2009-10-14 Eric ChristopherRemove a bunch of unused arguments from functions,...
2009-09-15 Daniel DunbarDrop the raw_ostream required buffer size to 1.
2009-09-11 Dan GohmanFix llvm-extract's "writing bitcode to a terminal"...
2009-08-25 Dan GohmanMake LLVM command-line tools overwrite their output...
2009-08-24 Daniel DunbarAdd missing include (for MSVC).
2009-08-24 Chris Lattnersplit raw_os_ostream out to its own header and implemen...
2009-08-24 Chris Lattnerprune the #includes in raw_ostream.h by moving a
2009-08-23 Chris LattnerChange Pass::print to take a raw ostream instead of...
2009-08-23 Chris LattnerChange raw_fd_ostream to take flags as an optional...
2009-08-22 Chris Lattneradd a raw_ostream::indent method, to be used like:
2009-08-19 Dan GohmanUnbreak GetBufferSize() on uninitialized streams. This...
2009-08-19 Daniel DunbarChange raw_svector_ostream to reserve the input buffer...
2009-08-19 Daniel DunbarSwitch raw_svector_ostream to use the vector as the...
2009-08-19 Daniel Dunbarraw_ostream: Remove pointless redefinitions of tell().
2009-08-18 Daniel Dunbarraw_ostream: Add the capability for subclasses to manua...
2009-08-18 Daniel Dunbarraw_ostream: Reduce FormattedStream's reliance on raw_o...
2009-08-18 Daniel DunbarRevert r78924, disabling buffering defeats all the...
2009-08-13 Dan GohmanSet raw_os_ostream, raw_string_ostream, and raw_svector...
2009-08-13 Dan GohmanAdd support to raw_ostream for sizing the buffer accord...
2009-08-13 Dan GohmanMake raw_ostream non-copyable.
2009-08-13 Dan GohmanMove SetBufferSize and SetUnbuffered out of line.
2009-08-13 Dan GohmanFix the buffer handling logic so that write_impl is...
2009-08-12 Dan GohmanThis void is implicit in C++.
2009-08-12 Dan GohmanAdd a GetBufferSize() member to raw_ostream and use...
2009-07-30 Daniel DunbarAdd raw_ostream::write_hex
2009-07-28 David GreeneAdd some protected interfaces to allow subclass access...
2009-07-27 Dan GohmanMake raw_null_ostream flush its buffer in its destructo...
2009-07-25 Dan GohmanRemove spurious semicolons.
2009-07-22 Daniel DunbarSupport writing a StringRef to a raw_ostream directly.
2009-07-16 Daniel DunbarAdd raw_null_ostream and llvm::nulls(), a raw_ostream...
2009-07-16 Dan GohmanAdd explicit keywords.
2009-07-16 Dan GohmanUse size_t.
2009-07-15 Dan GohmanChange raw_ostream so that it doesn't call llvm_report_...
2009-07-15 Dan GohmanFix a thinko in a comment that Duncan spotted.
2009-07-15 Dan GohmanAdd a Force option to raw_fd_ostream to specify whether...
2009-07-15 Dan GohmanAdd a comment noting that raw_os_ostream does not check...
2009-07-10 David GreeneMake changes suggested by Chris and eliminate newly...
2009-07-09 David GreeneAdd some hooks that a redesigned AsmStream needs to...
2009-06-04 Torok EdwinAdd support for outputting ANSI colors to raw_fd_ostream.
2009-04-20 Douglas GregorMake all raw_ostreams support the tell() function.
2009-04-03 Daniel DunbarAdd fast path for raw_ostream output of strings.
2009-03-17 Daniel Dunbarraw_ostream: Return '*this' explicitly (instead of...
2009-03-17 Daniel Dunbarraw_ostream: Rework implementation of unbuffered stream...
2009-03-16 Daniel Dunbarraw_ostream: Replace flush_impl with write_impl, which...
2009-03-16 Daniel Dunbarraw_ostream: Lift out flush_nonempty.
2009-03-16 Daniel DunbarAdd slow path for single character write, and use exclu...
2009-03-12 Daniel Dunbarraw_ostream: unbuffered streams weren't being immediate...
2009-03-10 Dan GohmanAdd an explicit keyword.
2009-03-10 Daniel DunbarPR3478: raw_ostream should not buffer stderr
2009-02-20 Misha BrukmanRemoved trailing whitespace.
2009-01-26 Ted KremenekAdd method raw_fd_ostream::seek() for random access...
2008-12-04 Ted KremenekHave raw_fd_ostream keep track of the position in the...
2008-11-26 Ted KremenekAdd 'tell' method to raw_fd_ostream that clients can...
2008-11-13 Daniel DunbarAdd Binary flag to raw_fd_ostream constructor.
2008-10-23 Ted KremenekAdded raw_fd_ostream::close().
2008-10-21 Daniel DunbarClear raw_fd_ostream error string on success and explai...
2008-09-02 Nuno Lopesplug memleak: destroy internal buffer
2008-08-26 Ted KremenekGrammar fix.
2008-08-26 Ted KremenekAdded "str()" method to raw_string_ostream.
2008-08-23 Chris LattnerAdd raw_stream adaptors that write into an std::string...
2008-08-23 Chris LattnerSwitch the asmprinter (.ll) and all the stuff it requir...
2008-08-23 Chris LattnerSplit format() out to its own file, add support for...
2008-08-23 Chris Lattnerconditionalize this to work on windows, untested but...
2008-08-23 Chris Lattneradd a simple mechanism for formatted output. This...
2008-08-22 Nicolas GeoffrayAlso overload for char, since the "char" type depends...
2008-08-22 Owen AndersonOverload for both signed and unsigned char.
2008-08-21 Owen AndersonMove non-trivial methods out of line to avoid code...
2008-08-21 Owen AndersonImplement operator<< in terms of basic types rather...
2008-08-21 Eli FriedmanRemove size_t operator; this unbreaks the build on...
2008-08-21 Owen AndersonUse raw_ostream throughout the AsmPrinter.
2008-08-19 Chris Lattneradd raw_ostream method for emitting an unsigned.
2008-08-17 Nick LewyckyFix build on GCC 4.3.
2008-08-17 Chris Lattneradd support for a cout/cerr analog (outs()/errs())...
2008-08-17 Chris Lattnerrename OutputData to 'write' to match ostream.
2008-08-17 Chris Lattnerremove accidental comment.
2008-08-17 Chris Lattneradd a new raw_ostream class which is an extremely high...