Lines Matching refs:m

314       ArtMethod* m = GetMethod();  in InstrumentationInstallStack()  local
315 if (m == nullptr) { in InstrumentationInstallStack()
325 m, in InstrumentationInstallStack()
344 if (m->IsRuntimeMethod()) { in InstrumentationInstallStack()
361 CHECK_EQ(m->GetNonObsoleteMethod(), frame.method_->GetNonObsoleteMethod()) in InstrumentationInstallStack()
362 << "Expected " << ArtMethod::PrettyMethod(m) in InstrumentationInstallStack()
370 if (UNLIKELY(reached_existing_instrumentation_frames_ && !m->IsRuntimeMethod())) { in InstrumentationInstallStack()
388 m->IsRuntimeMethod() ? nullptr : GetThisObject().Ptr(), in InstrumentationInstallStack()
389 m, in InstrumentationInstallStack()
478 ArtMethod* m = GetMethod(); in InstrumentationRestoreStack() local
482 << " Method=" << ArtMethod::PrettyMethod(m); in InstrumentationRestoreStack()
486 if (m == nullptr) { in InstrumentationRestoreStack()
499 CHECK(m == Runtime::Current()->GetCalleeSaveMethod(CalleeSaveType::kSaveRefsAndArgs)); in InstrumentationRestoreStack()
501 CHECK_EQ(m->GetNonObsoleteMethod(), in InstrumentationRestoreStack()
503 << ArtMethod::PrettyMethod(m) in InstrumentationRestoreStack()
508 !m->IsRuntimeMethod()) { in InstrumentationRestoreStack()
512 instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m, in InstrumentationRestoreStack()
1442 ArtMethod* m = stack_visitor->GetMethod(); in GetRuntimeMethodShorty()
1443 if (m == nullptr || m->IsRuntimeMethod()) { in GetRuntimeMethodShorty()
1447 if (m->IsNative()) { in GetRuntimeMethodShorty()
1449 shorty = m->GetShorty()[0]; in GetRuntimeMethodShorty()
1450 } else if (m->IsProxyMethod()) { in GetRuntimeMethodShorty()
1453 shorty = m->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty()[0]; in GetRuntimeMethodShorty()
1455 const Instruction& instr = m->DexInstructions().InstructionAt(stack_visitor->GetDexPc()); in GetRuntimeMethodShorty()
1474 uint16_t method_index = get_method_index_fn(m, instr, stack_visitor->GetDexPc()); in GetRuntimeMethodShorty()
1475 const DexFile* dex_file = m->GetDexFile(); in GetRuntimeMethodShorty()