• Home
  • Raw
  • Download

Lines Matching refs:ToImpl

2993 ThreadImpl* ToImpl(WasmInterpreter::Thread* thread) {  in ToImpl()  function
3001 const InterpretedFrameImpl* ToImpl(const InterpretedFrame* frame) { in ToImpl() function
3014 return ToImpl(this)->state(); in state()
3018 ToImpl(this)->InitFrame(function, args); in InitFrame()
3021 return ToImpl(this)->Run(num_steps); in Run()
3023 void WasmInterpreter::Thread::Pause() { return ToImpl(this)->Pause(); } in Pause()
3024 void WasmInterpreter::Thread::Reset() { return ToImpl(this)->Reset(); } in Reset()
3027 return ToImpl(this)->HandleException(isolate); in HandleException()
3030 return ToImpl(this)->GetBreakpointPc(); in GetBreakpointPc()
3033 return ToImpl(this)->GetFrameCount(); in GetFrameCount()
3038 return FramePtr(ToFrame(new InterpretedFrameImpl(ToImpl(this), index))); in GetFrame()
3041 return ToImpl(this)->GetReturnValue(index); in GetReturnValue()
3044 return ToImpl(this)->GetTrapReason(); in GetTrapReason()
3047 return ToImpl(this)->PossibleNondeterminism(); in PossibleNondeterminism()
3050 return ToImpl(this)->NumInterpretedCalls(); in NumInterpretedCalls()
3053 ToImpl(this)->AddBreakFlags(flags); in AddBreakFlags()
3056 ToImpl(this)->ClearBreakFlags(); in ClearBreakFlags()
3059 return ToImpl(this)->NumActivations(); in NumActivations()
3062 return ToImpl(this)->StartActivation(); in StartActivation()
3065 ToImpl(this)->FinishActivation(id); in FinishActivation()
3068 return ToImpl(this)->ActivationFrameBase(id); in ActivationFrameBase()
3202 return ToImpl(this)->function(); in function()
3204 int InterpretedFrame::pc() const { return ToImpl(this)->pc(); } in pc()
3206 return ToImpl(this)->GetParameterCount(); in GetParameterCount()
3209 return ToImpl(this)->GetLocalCount(); in GetLocalCount()
3212 return ToImpl(this)->GetStackHeight(); in GetStackHeight()
3215 return ToImpl(this)->GetLocalValue(index); in GetLocalValue()
3218 return ToImpl(this)->GetStackValue(index); in GetStackValue()
3221 delete ToImpl(ptr); in operator ()()