Skip to content

Commit 04e7f96

Browse files
committed
Auto merge of #69227 - Marwes:buffer_stderr, r=varkor
perf: Buffer stderr when writing json errors/warnings Since `stderr` is unbuffered, writing out json messages actually take up about ~10%/0.1s of the runtime of the `inflate` benchmark as it generates a fair number of warnings. cc #64413
2 parents 55aee8d + ee064be commit 04e7f96

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/librustc_errors/json.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ impl JsonEmitter {
4848
macro_backtrace: bool,
4949
) -> JsonEmitter {
5050
JsonEmitter {
51-
dst: Box::new(io::stderr()),
51+
dst: Box::new(io::BufWriter::new(io::stderr())),
5252
registry,
5353
sm: source_map,
5454
pretty,
@@ -104,7 +104,8 @@ impl Emitter for JsonEmitter {
104104
writeln!(&mut self.dst, "{}", as_pretty_json(&data))
105105
} else {
106106
writeln!(&mut self.dst, "{}", as_json(&data))
107-
};
107+
}
108+
.and_then(|_| self.dst.flush());
108109
if let Err(e) = result {
109110
panic!("failed to print diagnostics: {:?}", e);
110111
}
@@ -116,7 +117,8 @@ impl Emitter for JsonEmitter {
116117
writeln!(&mut self.dst, "{}", as_pretty_json(&data))
117118
} else {
118119
writeln!(&mut self.dst, "{}", as_json(&data))
119-
};
120+
}
121+
.and_then(|_| self.dst.flush());
120122
if let Err(e) = result {
121123
panic!("failed to print notification: {:?}", e);
122124
}

0 commit comments

Comments
 (0)