Home
last modified time | relevance | path

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

/external/v8/src/wasm/
Dwasm-interpreter.h143 uint64_t NumInterpretedCalls();
Dwasm-debug.cc401 uint64_t NumInterpretedCalls() { in NumInterpretedCalls() function in v8::internal::wasm::__anon4d21196c0111::InterpreterHandle
403 return interpreter()->GetThread(0)->NumInterpretedCalls(); in NumInterpretedCalls()
672 uint64_t WasmDebugInfo::NumInterpretedCalls() { in NumInterpretedCalls() function in v8::internal::WasmDebugInfo
674 return handle ? handle->NumInterpretedCalls() : 0; in NumInterpretedCalls()
Dwasm-objects.h597 uint64_t NumInterpretedCalls();
Dwasm-interpreter.cc1167 uint64_t NumInterpretedCalls() { return num_interpreted_calls_; } in NumInterpretedCalls() function in v8::internal::wasm::__anon959de6190111::ThreadImpl
3049 uint64_t WasmInterpreter::Thread::NumInterpretedCalls() { in NumInterpretedCalls() function in v8::internal::wasm::WasmInterpreter::Thread
3050 return ToImpl(this)->NumInterpretedCalls(); in NumInterpretedCalls()
/external/v8/src/runtime/
Druntime-test.cc984 uint64_t num = instance->debug_info()->NumInterpretedCalls(); in RUNTIME_FUNCTION()