Lines Matching refs:m

840   for (auto& m : art_klass->GetDeclaredMethods(art::kRuntimePointerSize)) {  in FindAndAllocateObsoleteMethods()  local
841 if (m.IsIntrinsic()) { in FindAndAllocateObsoleteMethods()
842 LOG(WARNING) << "Redefining intrinsic method " << m.PrettyMethod() << ". This may cause the " in FindAndAllocateObsoleteMethods()
843 << "unexpected use of the original definition of " << m.PrettyMethod() << "in " in FindAndAllocateObsoleteMethods()
853 ctx.obsolete_methods.insert(&m); in FindAndAllocateObsoleteMethods()
2132 linked_class->VisitMethods([&](art::ArtMethod* m) REQUIRES_SHARED(art::Locks::mutator_lock_) { in AllocateNewClassObject()
2133 linker->SetEntryPointsToInterpreter(m); in AllocateNewClassObject()
2134 m->SetNotIntrinsic(); in AllocateNewClassObject()
2135 DCHECK(m->IsCopied() || m->GetDeclaringClass() == linked_class.Get()) in AllocateNewClassObject()
2136 << m->PrettyMethod() in AllocateNewClassObject()
2137 << " m->GetDeclaringClass(): " << m->GetDeclaringClass()->PrettyClass() in AllocateNewClassObject()
2625 for (art::ArtMethod& m : old_cls->GetMethods(art::kRuntimePointerSize)) { in CollectNewFieldAndMethodMappings()
2632 return cand.GetNameView() == m.GetNameView() && cand.GetSignature() == m.GetSignature(); in CollectNewFieldAndMethodMappings()
2635 << "Could not find redefined version of " << m.PrettyMethod(); in CollectNewFieldAndMethodMappings()
2636 (*method_map)[&m] = &(*nm_iter); in CollectNewFieldAndMethodMappings()
2807 for (art::ArtMethod& m : old_class->GetMethods(art::kRuntimePointerSize)) { in UpdateClassStructurally()
2808 if (m.IsNative()) { in UpdateClassStructurally()
2810 new_class->FindClassMethod(m.GetNameView(), m.GetSignature(), art::kRuntimePointerSize); in UpdateClassStructurally()
2812 << "Could not find method " << m.PrettyMethod() << " declared in new class!"; in UpdateClassStructurally()
2814 new_method->SetEntryPointFromJni(m.GetEntryPointFromJni()); in UpdateClassStructurally()
2816 m.SetIsObsolete(); in UpdateClassStructurally()
2817 cl->SetEntryPointsForObsoleteMethod(&m); in UpdateClassStructurally()
2818 if (m.IsInvokable()) { in UpdateClassStructurally()
2819 m.SetDontCompile(); in UpdateClassStructurally()
2863 [&](art::ArtMethod& m) REQUIRES(art::Locks::mutator_lock_) { in UpdateClassStructurally()
2864 return UNLIKELY(m.HasSameNameAndSignature(field_or_method)); in UpdateClassStructurally()
2909 [&](art::ArtMethod* m, const auto& info) REQUIRES(art::Locks::mutator_lock_) { in UpdateClassStructurally()
2910 DCHECK(m != nullptr) << info; in UpdateClassStructurally()
2911 auto it = method_map.find(m); in UpdateClassStructurally()
2912 if (UNLIKELY(could_change_resolution_of(m, info))) { in UpdateClassStructurally()
2914 VLOG(plugin) << "Clearing resolution " << info << " for (method) " << m->PrettyMethod(); in UpdateClassStructurally()
2921 return m; in UpdateClassStructurally()
3066 klass->VisitMethods([](art::ArtMethod* m) REQUIRES_SHARED(art::Locks::mutator_lock_) { in UpdateClassCommon()
3067 if (!m->IsNative() && m->IsInvokable() && !m->IsObsolete()) { in UpdateClassCommon()
3068 m->ClearSkipAccessChecks(); in UpdateClassCommon()
3069 m->SetDontCompile(); in UpdateClassCommon()
3070 m->SetMustCountLocks(); in UpdateClassCommon()