Lines Matching refs:InterpretedFrame
2998 InterpretedFrame* ToFrame(InterpretedFrameImpl* impl) { in ToFrame()
2999 return reinterpret_cast<InterpretedFrame*>(impl); in ToFrame()
3001 const InterpretedFrameImpl* ToImpl(const InterpretedFrame* frame) { in ToImpl()
3201 const WasmFunction* InterpretedFrame::function() const { in function()
3204 int InterpretedFrame::pc() const { return ToImpl(this)->pc(); } in pc()
3205 int InterpretedFrame::GetParameterCount() const { in GetParameterCount()
3208 int InterpretedFrame::GetLocalCount() const { in GetLocalCount()
3211 int InterpretedFrame::GetStackHeight() const { in GetStackHeight()
3214 WasmValue InterpretedFrame::GetLocalValue(int index) const { in GetLocalValue()
3217 WasmValue InterpretedFrame::GetStackValue(int index) const { in GetStackValue()
3220 void InterpretedFrameDeleter::operator()(InterpretedFrame* ptr) { in operator ()()