Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Unified Diff: src/counters.h

Issue 1559003002: [turbofan] Add performance counters for escape analysis (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@improve-node-cache
Patch Set: Rebase Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/escape-analysis-reducer.cc ('k') | src/crankshaft/hydrogen-escape-analysis.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/counters.h
diff --git a/src/counters.h b/src/counters.h
index 87eca244983f2ee03c73ad1974081c45c35c02b4..d8a3f091f848b3c46ab159ca2120ae34392243ab 100644
--- a/src/counters.h
+++ b/src/counters.h
@@ -714,7 +714,11 @@ double AggregatedMemoryHistogram<Histogram>::Aggregate(double current_ms,
SC(map_space_bytes_used, V8.MemoryMapSpaceBytesUsed) \
SC(lo_space_bytes_available, V8.MemoryLoSpaceBytesAvailable) \
SC(lo_space_bytes_committed, V8.MemoryLoSpaceBytesCommitted) \
- SC(lo_space_bytes_used, V8.MemoryLoSpaceBytesUsed)
+ SC(lo_space_bytes_used, V8.MemoryLoSpaceBytesUsed) \
+ SC(turbo_escape_allocs_replaced, V8.TurboEscapeAllocsReplaced) \
+ SC(crankshaft_escape_allocs_replaced, V8.CrankshaftEscapeAllocsReplaced) \
+ SC(turbo_escape_loads_replaced, V8.TurboEscapeLoadsReplaced) \
+ SC(crankshaft_escape_loads_replaced, V8.CrankshaftEscapeLoadsReplaced)
// This file contains all the v8 counters that are in use.
« no previous file with comments | « src/compiler/escape-analysis-reducer.cc ('k') | src/crankshaft/hydrogen-escape-analysis.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698