Lines Matching full:frame
21 #include "runtime/interpreter/frame.h"
32 ALWAYS_INLINE inline explicit StateIface(Frame *frame) : acc_(frame->GetAcc()) {} in StateIface() argument
44 ALWAYS_INLINE inline Frame *GetFrame() const in GetFrame()
49 ALWAYS_INLINE inline void SetFrame(Frame *frame) in SetFrame() argument
51 static_cast<T *>(this)->SetFrame(frame); in SetFrame()
92 …AYS_INLINE inline State(ManagedThread *thread, const uint8_t *pc, Frame *frame) : StateIface(frame) in State() argument
95 SetFrame(frame); in State()
99 ALWAYS_INLINE inline void UpdateState(const uint8_t *pc, Frame *frame) in UpdateState() argument
102 SetFrame(frame); in UpdateState()
115 ALWAYS_INLINE inline Frame *GetFrame() const in GetFrame()
120 ALWAYS_INLINE inline void SetFrame(Frame *frame) in SetFrame() argument
122 arch::regs::SetFrame(frame); in SetFrame()
124 …reinterpret_cast<void *>(reinterpret_cast<uintptr_t>(frame) + Frame::GetVregsOffset() + frame->Get… in SetFrame()
177 …AYS_INLINE inline State(ManagedThread *thread, const uint8_t *pc, Frame *frame) : StateIface(frame) in State() argument
180 SetFrame(frame); in State()
184 ALWAYS_INLINE inline void UpdateState(const uint8_t *pc, Frame *frame) in UpdateState() argument
187 SetFrame(frame); in UpdateState()
200 ALWAYS_INLINE inline Frame *GetFrame() const in GetFrame()
205 ALWAYS_INLINE inline void SetFrame(Frame *frame) in SetFrame() argument
207 frame_ = frame; in SetFrame()
233 Frame *frame_ {nullptr};