Lines Matching refs:instrumentation_frame
324 InstrumentationStackFrame instrumentation_frame(GetThisObject().Ptr(), in InstrumentationInstallStack() local
331 LOG(INFO) << "Pushing shadow frame " << instrumentation_frame.Dump(); in InstrumentationInstallStack()
333 shadow_stack_.push_back(instrumentation_frame); in InstrumentationInstallStack()
387 InstrumentationStackFrame instrumentation_frame( in InstrumentationInstallStack() local
395 LOG(INFO) << "Pushing frame " << instrumentation_frame.Dump(); in InstrumentationInstallStack()
398 instrumentation_stack_->insert({GetReturnPcAddr(), instrumentation_frame}); in InstrumentationInstallStack()
494 const InstrumentationStackFrame& instrumentation_frame = it->second; in InstrumentationRestoreStack() local
498 if (instrumentation_frame.interpreter_entry_) { in InstrumentationRestoreStack()
502 instrumentation_frame.method_->GetNonObsoleteMethod()) in InstrumentationRestoreStack()
504 << " and " << instrumentation_frame.method_->GetNonObsoleteMethod()->PrettyMethod(); in InstrumentationRestoreStack()
506 SetReturnPc(instrumentation_frame.return_pc_); in InstrumentationRestoreStack()
512 instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m, in InstrumentationRestoreStack()
1416 instrumentation::InstrumentationStackFrame instrumentation_frame( in PushInstrumentationStackFrame() local
1418 stack->insert({stack_ptr, instrumentation_frame}); in PushInstrumentationStackFrame()
1511 InstrumentationStackFrame instrumentation_frame = it->second; in PopInstrumentationStackFrame() local
1517 *return_pc_addr = instrumentation_frame.return_pc_; in PopInstrumentationStackFrame()
1520 ArtMethod* method = instrumentation_frame.method_; in PopInstrumentationStackFrame()
1569 if (!method->IsRuntimeMethod() && !instrumentation_frame.interpreter_entry_) { in PopInstrumentationStackFrame()
1570 ObjPtr<mirror::Object> this_object = instrumentation_frame.this_object_; in PopInstrumentationStackFrame()
1573 self, this_object, instrumentation_frame.method_, dex_pc, OptionalFrame{}, return_value); in PopInstrumentationStackFrame()
1589 instrumentation_frame.force_deopt_id_ != current_force_deopt_id_ || in PopInstrumentationStackFrame()