Lines Matching refs:Frame
89 extern "C" NO_ADDRESS_SANITIZE void InterpreterEntryPoint(Method *method, Frame *frame) in InterpreterEntryPoint()
103 Frame *prev_frame = thread->GetCurrentFrame(); in InterpreterEntryPoint()
117 extern "C" Frame *CreateFrame(uint32_t nregs, Method *method, Frame *prev) in CreateFrame()
119 …Frame *mem = Thread::GetCurrent()->GetVM()->GetHeapManager()->AllocateFrame(panda::Frame::GetSize(… in CreateFrame()
124 return (new (mem) panda::Frame(method, prev, nregs)); in CreateFrame()
127 extern "C" Frame *CreateFrameForMethod(Method *method, Frame *prev) in CreateFrameForMethod()
133 extern "C" Frame *CreateFrameWithActualArgsAndSize(uint32_t size, uint32_t nregs, uint32_t num_actu… in CreateFrameWithActualArgsAndSize()
134 Method *method, Frame *prev) in CreateFrameWithActualArgsAndSize()
137 …static_cast<Frame *>(ManagedThread::GetCurrent()->GetStackFrameAllocator()->Alloc(panda::Frame::Ge… in CreateFrameWithActualArgsAndSize()
142 return (new (mem) panda::Frame(method, prev, nregs, num_actual_args)); in CreateFrameWithActualArgsAndSize()
145 extern "C" Frame *CreateFrameWithActualArgs(uint32_t nregs, uint32_t num_actual_args, Method *metho… in CreateFrameWithActualArgs()
150 extern "C" Frame *CreateFrameForMethodWithActualArgs(uint32_t num_actual_args, Method *method, Fram… in CreateFrameForMethodWithActualArgs()
157 extern "C" void FreeFrame(Frame *frame) in FreeFrame()