Home
last modified time | relevance | path

Searched refs:instrumentation_frame (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dinstrumentation.cc324 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()
[all …]
Dstack.cc935 const instrumentation::InstrumentationStackFrame& instrumentation_frame = it->second; in WalkStack() local
939 } else if (instrumentation_frame.interpreter_entry_) { in WalkStack()
944 } else if (!instrumentation_frame.method_->IsRuntimeMethod()) { in WalkStack()
949 CHECK_EQ(instrumentation_frame.method_->GetNonObsoleteMethod(), in WalkStack()
952 << ArtMethod::PrettyMethod(instrumentation_frame.method_->GetNonObsoleteMethod()) in WalkStack()
955 return_pc = instrumentation_frame.return_pc_; in WalkStack()