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

Unified Diff: src/counters.h

Issue 851953003: Introduce new compile histogram that includes parsing/caching. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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.cc ('k') | no next file » | 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 41107cfc33b8c944496e37d269c4ba647ad260fc..cbd8093970dbac9e2a55f642684fb3fd5bd5390a 100644
--- a/src/counters.h
+++ b/src/counters.h
@@ -309,12 +309,14 @@ class HistogramTimerScope BASE_EMBEDDED {
HT(parse, V8.Parse) \
HT(parse_lazy, V8.ParseLazy) \
HT(pre_parse, V8.PreParse) \
- /* Total compilation times. */ \
+ /* Compilation times. */ \
HT(compile, V8.Compile) \
HT(compile_eval, V8.CompileEval) \
/* Serialization as part of compilation (code caching) */ \
HT(compile_serialize, V8.CompileSerialize) \
- HT(compile_deserialize, V8.CompileDeserialize)
+ HT(compile_deserialize, V8.CompileDeserialize) \
+ /* Total compilation time incl. caching/parsing */ \
vogelheim 2015/01/14 14:37:38 I was initially surprised at the comment: V8.Compi
Yang 2015/01/14 14:55:20 As discussed offline, V8.Compile does not include
+ HT(compile_script, V8.CompileScript)
#define HISTOGRAM_PERCENTAGE_LIST(HP) \
« no previous file with comments | « src/compiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698