Lines Matching refs:WasmInterpreter
98 WasmInterpreter interpreter_;
104 WasmInterpreter::Thread* thread = interpreter_.GetThread(0); in StartActivation()
112 WasmInterpreter::Thread* thread = interpreter_.GetThread(0); in FinishActivation()
119 WasmInterpreter::Thread* thread, Address frame_pointer) { in GetActivationFrameRange()
150 WasmInterpreter* interpreter() { return &interpreter_; } in interpreter()
198 WasmInterpreter::Thread* thread = interpreter_.GetThread(0); in Execute()
203 WasmInterpreter::State state = ContinueExecution(thread); in Execute()
205 case WasmInterpreter::State::PAUSED: in Execute()
208 case WasmInterpreter::State::FINISHED: in Execute()
212 case WasmInterpreter::State::TRAPPED: { in Execute()
221 return result == WasmInterpreter::Thread::HANDLED; in Execute()
223 case WasmInterpreter::State::STOPPED: in Execute()
229 case WasmInterpreter::State::RUNNING: in Execute()
263 WasmInterpreter::State ContinueExecution(WasmInterpreter::Thread* thread) { in ContinueExecution()
270 thread->AddBreakFlags(WasmInterpreter::BreakFlag::AfterReturn); in ContinueExecution()
276 ? WasmInterpreter::BreakFlag::AfterReturn in ContinueExecution()
277 : WasmInterpreter::BreakFlag::AfterCall); in ContinueExecution()
298 void NotifyDebugEventListeners(WasmInterpreter::Thread* thread) { in NotifyDebugEventListeners()
343 WasmInterpreter::Thread* thread = interpreter()->GetThread(0); in GetTopPosition()
354 WasmInterpreter::Thread* thread = interpreter()->GetThread(0); in GetInterpretedStack()
368 WasmInterpreter::FramePtr GetInterpretedFrame(Address frame_pointer, in GetInterpretedFrame()
371 WasmInterpreter::Thread* thread = interpreter()->GetThread(0); in GetInterpretedFrame()
389 WasmInterpreter::Thread* thread = interpreter()->GetThread(0); in Unwind()
392 using ExceptionResult = WasmInterpreter::Thread::ExceptionHandlingResult; in Unwind()
583 wasm::WasmInterpreter* WasmDebugInfo::SetupForTesting( in SetupForTesting()
663 wasm::WasmInterpreter::FramePtr WasmDebugInfo::GetInterpretedFrame( in GetInterpretedFrame()