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

Unified Diff: src/counters.h

Issue 2772363002: Separate function decoding counter into asm and wasm counters. (Closed)
Patch Set: Create dummy module environment for DecodeWasmFunction test. Created 3 years, 9 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 | « no previous file | src/wasm/module-decoder.cc » ('j') | test/unittests/wasm/module-decoder-unittest.cc » ('J')
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 27b51d40a7fe64dcdb0fad0aa0ad90110959f18b..f6154ea5f1d1ac2e3e6ad7a26f781e5be1721dea 100644
--- a/src/counters.h
+++ b/src/counters.h
@@ -968,8 +968,11 @@ class RuntimeCallTimerScope {
MICROSECOND) \
HT(wasm_decode_wasm_module_time, V8.WasmDecodeModuleMicroSeconds, 1000000, \
MICROSECOND) \
- HT(wasm_decode_function_time, V8.WasmDecodeFunctionMicroSeconds, 1000000, \
- MICROSECOND) \
+ /* TODO(karlschimpf) Update chrome flags to reflect asm/wasm split. */ \
+ HT(wasm_decode_asm_function_time, V8.WasmDecodeFunctionMicroSeconds, \
+ 1000000, MICROSECOND) \
+ HT(wasm_decode_wasm_function_time, V8.WasmDecodeFunctionMicroSeconds, \
+ 1000000, MICROSECOND) \
/* TODO(kschimpf) Update chrome flags to reflect asm/wasm split. */ \
HT(wasm_compile_asm_module_time, V8.WasmCompileModuleMicroSeconds, 1000000, \
MICROSECOND) \
« no previous file with comments | « no previous file | src/wasm/module-decoder.cc » ('j') | test/unittests/wasm/module-decoder-unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698