Home
last modified time | relevance | path

Searched refs:metrics_event (Results 1 – 1 of 1) sorted by relevance

/third_party/node/deps/v8/src/wasm/
Dmodule-decoder.cc2242 v8::metrics::WasmModuleDecoded metrics_event; in DecodeWasmModule() local
2252 metrics_event.wall_clock_duration_in_us = timer.Elapsed().InMicroseconds(); in DecodeWasmModule()
2255 metrics_event.cpu_duration_in_us = in DecodeWasmModule()
2258 metrics_event.success = decoder.ok() && result.ok(); in DecodeWasmModule()
2259 metrics_event.async = decoding_method == DecodingMethod::kAsync || in DecodeWasmModule()
2261 metrics_event.streamed = decoding_method == DecodingMethod::kSyncStream || in DecodeWasmModule()
2264 metrics_event.function_count = result.value()->num_declared_functions; in DecodeWasmModule()
2266 metrics_event.function_count = module->num_declared_functions; in DecodeWasmModule()
2268 metrics_event.module_size_in_bytes = size; in DecodeWasmModule()
2269 metrics_recorder->DelayMainThreadEvent(metrics_event, context_id); in DecodeWasmModule()