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

/art/runtime/
H A Dstack.cc558 const instrumentation::InstrumentationStackFrame& instrumentation_frame = local
563 } else if (instrumentation_frame.interpreter_entry_) {
567 } else if (instrumentation_frame.method_ != GetMethod()) {
568 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_)
574 CHECK(instrumentation_frame.frame_id_ == GetFrameId())
575 << "Expected: " << instrumentation_frame.frame_id_
578 return_pc = instrumentation_frame.return_pc_;
H A Dinstrumentation.cc221 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, 0, GetFrameId(),
224 LOG(INFO) << "Pushing shadow frame " << instrumentation_frame.Dump();
226 shadow_stack_.push_back(instrumentation_frame);
274 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, return_pc, GetFrameId(),
277 LOG(INFO) << "Pushing frame " << instrumentation_frame.Dump();
285 if (instrumentation_frame.frame_id_ >= current.frame_id_) {
289 instrumentation_stack_->insert(it, instrumentation_frame);
371 for (const InstrumentationStackFrame& instrumentation_frame : *instrumentation_stack_) {
372 if (instrumentation_frame.frame_id_ == frameId) {
376 if (instrumentation_frame
1061 InstrumentationStackFrame instrumentation_frame = stack->front(); local
1116 InstrumentationStackFrame instrumentation_frame = stack->front(); local
[all...]

Completed in 6 milliseconds