Home | History | Annotate | Download | only in heap

Lines Matching refs:PrintF

226   PrintF("%s %.1f (%.1f) -> %.1f (%.1f) MB, ", current_.TypeName(false),
233 if (external_time > 0) PrintF("%d / ", external_time);
236 PrintF("%.1f ms", duration);
239 PrintF(" (+ %.1f ms in %d steps since last GC)",
245 PrintF(
255 PrintF(" [%s]", current_.gc_reason);
259 PrintF(" [%s]", current_.collector_reason);
262 PrintF(".\n");
272 PrintF("pause=%.1f ", duration);
273 PrintF("mutator=%.1f ", spent_in_mutator);
274 PrintF("gc=%s ", current_.TypeName(true));
276 PrintF("external=%.1f ", current_.scopes[Scope::EXTERNAL]);
277 PrintF("mark=%.1f ", current_.scopes[Scope::MC_MARK]);
278 PrintF("sweep=%.2f ", current_.scopes[Scope::MC_SWEEP]);
279 PrintF("sweepns=%.2f ", current_.scopes[Scope::MC_SWEEP_NEWSPACE]);
280 PrintF("sweepos=%.2f ", current_.scopes[Scope::MC_SWEEP_OLDSPACE]);
281 PrintF("sweepcode=%.2f ", current_.scopes[Scope::MC_SWEEP_CODE]);
282 PrintF("sweepcell=%.2f ", current_.scopes[Scope::MC_SWEEP_CELL]);
283 PrintF("sweepmap=%.2f ", current_.scopes[Scope::MC_SWEEP_MAP]);
284 PrintF("evacuate=%.1f ", current_.scopes[Scope::MC_EVACUATE_PAGES]);
285 PrintF("new_new=%.1f ",
287 PrintF("root_new=%.1f ",
289 PrintF("old_new=%.1f ",
291 PrintF("compaction_ptrs=%.1f ",
293 PrintF("intracompaction_ptrs=%.1f ",
295 PrintF("misc_compaction=%.1f ",
297 PrintF("weakcollection_process=%.1f ",
299 PrintF("weakcollection_clear=%.1f ",
301 PrintF("weakcollection_abort=%.1f ",
304 PrintF("total_size_before=%" V8_PTR_PREFIX "d ", current_.start_object_size);
305 PrintF("total_size_after=%" V8_PTR_PREFIX "d ", current_.end_object_size);
306 PrintF("holes_size_before=%" V8_PTR_PREFIX "d ", current_.start_holes_size);
307 PrintF("holes_size_after=%" V8_PTR_PREFIX "d ", current_.end_holes_size);
311 PrintF("allocated=%" V8_PTR_PREFIX "d ", allocated_since_last_gc);
312 PrintF("promoted=%" V8_PTR_PREFIX "d ", heap_->promoted_objects_size_);
313 PrintF("semi_space_copied=%" V8_PTR_PREFIX "d ",
315 PrintF("nodes_died_in_new=%d ", heap_->nodes_died_in_new_space_);
316 PrintF("nodes_copied_in_new=%d ", heap_->nodes_copied_in_new_space_);
317 PrintF("nodes_promoted=%d ", heap_->nodes_promoted_);
318 PrintF("promotion_rate=%.1f%% ", heap_->promotion_rate_);
319 PrintF("semi_space_copy_rate=%.1f%% ", heap_->semi_space_copied_rate_);
320 PrintF("new_space_allocation_throughput=%" V8_PTR_PREFIX "d ",
324 PrintF("steps_count=%d ", current_.incremental_marking_steps);
325 PrintF("steps_took=%.1f ", current_.incremental_marking_duration);
326 PrintF("scavenge_throughput=%" V8_PTR_PREFIX "d ",
329 PrintF("steps_count=%d ", current_.incremental_marking_steps);
330 PrintF("steps_took=%.1f ", current_.incremental_marking_duration);
331 PrintF("longest_step=%.1f ", current_.longest_incremental_marking_step);
332 PrintF("incremental_marking_throughput=%" V8_PTR_PREFIX "d ",
336 PrintF("\n");