summaryrefslogtreecommitdiff
path: root/lib/Support/raw_ostream.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-08-19 18:40:58 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-08-19 18:40:58 +0000
commitd14787e49777888eb7c685c0d5803044e7b7971a (patch)
tree29aae6c3c19c2f7383eb9c851db0ddb7161d9caf /lib/Support/raw_ostream.cpp
parentc21d5883acb7635635bb449dd8e439fa15a91bf6 (diff)
downloadllvm-d14787e49777888eb7c685c0d5803044e7b7971a.tar.gz
llvm-d14787e49777888eb7c685c0d5803044e7b7971a.tar.bz2
llvm-d14787e49777888eb7c685c0d5803044e7b7971a.tar.xz
Change raw_svector_ostream to reserve the input buffer if necessary, Ted was
right. - This class turns out to be much more convenient to use if we do this; clients can make sure the buffer is always big enough if they care (since our current idiom tends to be to use a SmallString<256> for the input to this we should generally be avoiding an unnecessary malloc). Also, add a convenience raw_svector_ostream::str method which flushes the buffer and returns a StringRef for the vector contents. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79446 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/raw_ostream.cpp')
-rw-r--r--lib/Support/raw_ostream.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp
index 30bc76b7fd..917e6be669 100644
--- a/lib/Support/raw_ostream.cpp
+++ b/lib/Support/raw_ostream.cpp
@@ -487,12 +487,11 @@ void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
// and we only need to set the vector size when the data is flushed.
raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {
- // Set up the initial external buffer. We enforce that the buffer must have at
+ // Set up the initial external buffer. We make sure that the buffer has at
// least 128 bytes free; raw_ostream itself only requires 64, but we want to
// make sure that we don't grow the buffer unnecessarily on destruction (when
// the data is flushed). See the FIXME below.
- if (OS.capacity() - OS.size() < 128)
- llvm_report_error("Invalid argument, must have at least 128 bytes free!");
+ OS.reserve(OS.size() + 128);
SetBuffer(OS.end(), OS.capacity() - OS.size());
}
@@ -519,6 +518,11 @@ void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
uint64_t raw_svector_ostream::current_pos() { return OS.size(); }
+StringRef raw_svector_ostream::str() {
+ flush();
+ return StringRef(OS.begin(), OS.size());
+}
+
//===----------------------------------------------------------------------===//
// raw_null_ostream
//===----------------------------------------------------------------------===//