• Home
  • Raw
  • Download

Lines Matching full:frame

39 void WriteOsrEventError(Frame *frame, FrameKind kind, uintptr_t loop_head_bc)  in WriteOsrEventError()  argument
55 EVENT_OSR_ENTRY(std::string(frame->GetMethod()->GetFullName()), loop_head_bc, osr_kind, in WriteOsrEventError()
63 Frame *frame = stack.GetIFrame(); in OsrEntry() local
69 WriteOsrEventError(frame, stack.GetPreviousFrameKind(), loop_head_bc); in OsrEntry()
76 LOG(DEBUG, INTEROP) << "OSR: after interpreter frame"; in OsrEntry()
77 EVENT_OSR_ENTRY(std::string(frame->GetMethod()->GetFullName()), loop_head_bc, in OsrEntry()
79 OsrEntryAfterIFrame(frame, loop_head_bc, osr_code, code_info.GetFrameSize()); in OsrEntry()
82 UnpoisonAsanStack(frame->GetPrevFrame()); in OsrEntry()
83 LOG(DEBUG, INTEROP) << "OSR: after compiled frame"; in OsrEntry()
84 EVENT_OSR_ENTRY(std::string(frame->GetMethod()->GetFullName()), loop_head_bc, in OsrEntry()
86 OsrEntryAfterCFrame(frame, loop_head_bc, osr_code, code_info.GetFrameSize()); in OsrEntry()
90 LOG(DEBUG, INTEROP) << "OSR: after no frame"; in OsrEntry()
91 EVENT_OSR_ENTRY(std::string(frame->GetMethod()->GetFullName()), loop_head_bc, in OsrEntry()
93 OsrEntryTopFrame(frame, loop_head_bc, osr_code, code_info.GetFrameSize()); in OsrEntry()
101 extern "C" void *PrepareOsrEntry(const Frame *iframe, uintptr_t bc_offset, const void *osr_code, vo… in PrepareOsrEntry()
139 thread->SetCurrentFrame(reinterpret_cast<Frame *>(cframe_ptr)); in PrepareOsrEntry()
145 extern "C" void SetOsrResult(Frame *frame, uint64_t uval, double fval) in SetOsrResult() argument
147 ASSERT(frame != nullptr); in SetOsrResult()
148 panda_file::ShortyIterator it(frame->GetMethod()->GetShorty()); in SetOsrResult()
150 auto &acc = frame->GetAcc(); in SetOsrResult()