Set raw_os_ostream, raw_string_ostream, and raw_svector_ostream to be
authorDan Gohman <gohman@apple.com>
Thu, 13 Aug 2009 17:41:40 +0000 (17:41 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 13 Aug 2009 17:41:40 +0000 (17:41 +0000)
unbuffered. std::ostream does its own buffering, and std::string and
SmallVector both have allocation strategies intended to handle frequent
appending.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78924 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/raw_ostream.h
lib/Support/raw_ostream.cpp

index b1b96f231695b6bbf80d7912e7bdb895c36952fa..d9110dd31d8a0a3881d230d82b5634d2b2d3aab9 100644 (file)
@@ -376,8 +376,7 @@ class raw_os_ostream : public raw_ostream {
   virtual uint64_t current_pos();
 
 public:
-  raw_os_ostream(std::ostream &O) : OS(O) {}
-  ~raw_os_ostream();
+  raw_os_ostream(std::ostream &O) : raw_ostream(true), OS(O) {}
 
   /// tell - Return the current offset with the stream.
   uint64_t tell();
@@ -395,8 +394,7 @@ class raw_string_ostream : public raw_ostream {
   /// counting the bytes currently in the buffer.
   virtual uint64_t current_pos() { return OS.size(); }
 public:
-  explicit raw_string_ostream(std::string &O) : OS(O) {}
-  ~raw_string_ostream();
+  explicit raw_string_ostream(std::string &O) : raw_ostream(true), OS(O) {}
 
   /// tell - Return the current offset with the stream.
   uint64_t tell() { return OS.size() + GetNumBytesInBuffer(); }
@@ -422,8 +420,8 @@ class raw_svector_ostream : public raw_ostream {
   /// counting the bytes currently in the buffer.
   virtual uint64_t current_pos();
 public:
-  explicit raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {}
-  ~raw_svector_ostream();
+  explicit raw_svector_ostream(SmallVectorImpl<char> &O)
+    : raw_ostream(true), OS(O) {}
 
   /// tell - Return the current offset with the stream.
   uint64_t tell();
index c6d609bfc74256294930952dc262caaf01313dd6..5eaf7bf6a04e395ef24ca37b4160f7cc62dd83cf 100644 (file)
@@ -441,10 +441,6 @@ raw_ostream &llvm::nulls() {
 //  raw_os_ostream
 //===----------------------------------------------------------------------===//
 
-raw_os_ostream::~raw_os_ostream() {
-  flush();
-}
-
 void raw_os_ostream::write_impl(const char *Ptr, size_t Size) {
   OS.write(Ptr, Size);
 }
@@ -459,10 +455,6 @@ uint64_t raw_os_ostream::tell() {
 //  raw_string_ostream
 //===----------------------------------------------------------------------===//
 
-raw_string_ostream::~raw_string_ostream() {
-  flush();
-}
-
 void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
   OS.append(Ptr, Size);
 }
@@ -471,10 +463,6 @@ void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
 //  raw_svector_ostream
 //===----------------------------------------------------------------------===//
 
-raw_svector_ostream::~raw_svector_ostream() {
-  flush();
-}
-
 void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
   OS.append(Ptr, Ptr + Size);
 }