Reviewers: Michael Starzinger,
Message:
PTAL
https://chromiumcodereview.appspot.com/11377134/diff/1/src/heap.cc
File src/heap.cc (right):
https://chromiumcodereview.appspot.com/11377134/diff/1/src/heap.cc#newcode7230
src/heap.cc:7230: PrintF("longeststep=%.f ", longest_step_);
Note that I am rounding to int here, we probably don't need sub-ms
precision.
Description:
Output max incremental step delay in trace_gc_nvp.
[email protected]
Please review this at https://chromiumcodereview.appspot.com/11377134/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M src/heap.cc
Index: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index
5e760c3e6bbc853c79fc4c76e1aaae5871547618..e1090176c9709d9815a3e1c1fdca4f758eeeab84
100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -7227,6 +7227,7 @@ GCTracer::~GCTracer() {
} else {
PrintF("stepscount=%d ", steps_count_);
PrintF("stepstook=%d ", static_cast<int>(steps_took_));
+ PrintF("longeststep=%.f ", longest_step_);
}
PrintF("\n");
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev