Lines Matching refs:ArtMethod

35 void ClassHierarchyAnalysis::AddDependency(ArtMethod* method,  in AddDependency()
36 ArtMethod* dependent_method, in AddDependency()
46 ArtMethod* method) { in GetDependents()
54 void ClassHierarchyAnalysis::RemoveAllDependenciesFor(ArtMethod* method) { in RemoveAllDependenciesFor()
123 ArtMethod* method = in ResetSingleImplementationInHierarchy()
144 ArtMethod* super_method = super_it-> in ResetSingleImplementationInHierarchy()
170 ArtMethod* method = interface->GetVirtualMethod(j, pointer_size); in ResetSingleImplementationInHierarchy()
195 ArtMethod* method = GetMethod(); in VisitFrame()
283 ArtMethod* excluded_method) in VerifyNonSingleImplementation()
301 ArtMethod* verify_method = verify_class->GetVTableEntry(verify_index, image_pointer_size); in VerifyNonSingleImplementation()
316 << " excluded_method: " << ArtMethod::PrettyMethod(excluded_method); in VerifyNonSingleImplementation()
327 ArtMethod* virtual_method, in CheckVirtualMethodSingleImplementationInfo()
328 ArtMethod* method_in_super, in CheckVirtualMethodSingleImplementationInfo()
329 std::unordered_set<ArtMethod*>& invalidated_single_impl_methods, in CheckVirtualMethodSingleImplementationInfo()
439 ArtMethod* method_in_super_super = super_super->GetVTableEntry(method_index, pointer_size); in CheckVirtualMethodSingleImplementationInfo()
473 ArtMethod* interface_method, in CheckInterfaceMethodSingleImplementationInfo()
474 ArtMethod* implementation_method, in CheckInterfaceMethodSingleImplementationInfo()
475 std::unordered_set<ArtMethod*>& invalidated_single_impl_methods, in CheckInterfaceMethodSingleImplementationInfo()
502 ArtMethod* single_impl = interface_method->GetSingleImplementation(pointer_size); in CheckInterfaceMethodSingleImplementationInfo()
522 ArtMethod* method, in InitSingleImplementationFlag()
561 for (ArtMethod& method : klass->GetDeclaredVirtualMethods(image_pointer_size)) { in UpdateAfterLoadingOf()
575 std::unordered_set<ArtMethod*> invalidated_single_impl_methods; in UpdateAfterLoadingOf()
579 ArtMethod* method = klass->GetVTableEntry(i, image_pointer_size); in UpdateAfterLoadingOf()
580 ArtMethod* method_in_super = super_class->GetVTableEntry(i, image_pointer_size); in UpdateAfterLoadingOf()
603 ArtMethod* method = klass->GetVTableEntry(i, image_pointer_size); in UpdateAfterLoadingOf()
613 ArtMethod* interface_method = interface->GetVirtualMethod(j, image_pointer_size); in UpdateAfterLoadingOf()
615 ArtMethod* implementation_method = in UpdateAfterLoadingOf()
616 method_array->GetElementPtrSize<ArtMethod*>(j, image_pointer_size); in UpdateAfterLoadingOf()
631 std::unordered_set<ArtMethod*>& invalidated_single_impl_methods) { in InvalidateSingleImplementationMethods()
644 std::vector<std::pair<ArtMethod*, OatQuickMethodHeader*>> headers; in InvalidateSingleImplementationMethods()
649 for (ArtMethod* invalidated : invalidated_single_impl_methods) { in InvalidateSingleImplementationMethods()
669 ArtMethod* method = dependent.first;; in InvalidateSingleImplementationMethods()