Searched defs:instrumentation_frame (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dinstrumentation.cc188 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, 0, GetFrameId(),
191 LOG(INFO) << "Pushing shadow frame " << instrumentation_frame.Dump();
193 shadow_stack_.push_back(instrumentation_frame);
241 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, return_pc, GetFrameId(),
244 LOG(INFO) << "Pushing frame " << instrumentation_frame.Dump();
252 if (instrumentation_frame.frame_id_ >= current.frame_id_) {
256 instrumentation_stack_->insert(it, instrumentation_frame);
339 for (const InstrumentationStackFrame& instrumentation_frame : *instrumentation_stack_) {
340 if (instrumentation_frame.frame_id_ == frameId) {
344 if (instrumentation_frame
981 InstrumentationStackFrame instrumentation_frame = stack->front(); local
1038 InstrumentationStackFrame instrumentation_frame = stack->front(); local
[all...]
H A Dstack.cc754 const instrumentation::InstrumentationStackFrame& instrumentation_frame = local
759 } else if (instrumentation_frame.interpreter_entry_) {
763 } else if (instrumentation_frame.method_ != GetMethod()) {
764 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
770 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
771 << "Expected: " << instrumentation_frame.frame_id_
774 return_pc = instrumentation_frame.return_pc_;

Completed in 56 milliseconds