Searched refs:super_method (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | cha.cc | 144 ArtMethod* super_method = super_it-> in ResetSingleImplementationInHierarchy() local 146 if (super_method->IsAbstract() && in ResetSingleImplementationInHierarchy() 147 super_method->HasSingleImplementation<kWithoutReadBarrier>() && in ResetSingleImplementationInHierarchy() 148 super_method->GetSingleImplementation(pointer_size) == method) { in ResetSingleImplementationInHierarchy() 151 super_method->SetSingleImplementation(nullptr, pointer_size); in ResetSingleImplementationInHierarchy() 154 DCHECK(!super_method->HasSingleImplementation<kWithoutReadBarrier>()); in ResetSingleImplementationInHierarchy()
|
D | class_linker.cc | 6268 ArtMethod* super_method = super_imt->Get(i, image_pointer_size_); in FillIMTAndConflictTables() local 6269 if (method != super_method) { in FillIMTAndConflictTables() 6274 bool super_conflict_table = super_method->IsRuntimeMethod() && in FillIMTAndConflictTables() 6275 super_method != unimplemented_method && in FillIMTAndConflictTables() 6276 super_method != conflict_method; in FillIMTAndConflictTables() 6281 ImtConflictTable* table2 = super_method->GetImtConflictTable(image_pointer_size_); in FillIMTAndConflictTables() 7299 void FinalizeState(ArtMethod* super_method, in FinalizeState() argument 7306 DCHECK(super_method->IsCopied()); in FinalizeState() 7308 DCHECK_EQ(vtable_index, super_method->GetMethodIndex()); in FinalizeState() 7310 if (super_method->IsDefault()) { in FinalizeState() [all …]
|
/art/tools/veridex/ |
D | resolver.cc | 156 VeriMethod super_method = resolver->LookupMethodIn(*super, method_name, method_signature); in LookupMethodIn() local 157 if (super_method != nullptr) { in LookupMethodIn() 158 return super_method; in LookupMethodIn()
|
/art/test/004-JniTest/ |
D | jni_test.cc | 576 …void TestnonstaticCallNonvirtualMethod(bool super_object, bool super_class, bool super_method, con… in TestnonstaticCallNonvirtualMethod() argument 578 if (super_object && !super_method) { in TestnonstaticCallNonvirtualMethod() 581 if (super_class && !super_method) { in TestnonstaticCallNonvirtualMethod() 589 jmethodID m = (super_method) ? super_nonstatic_ : sub_nonstatic_; in TestnonstaticCallNonvirtualMethod() 593 CHECK_EQ(super_field, super_method); in TestnonstaticCallNonvirtualMethod() 594 CHECK_NE(sub_field, super_method); in TestnonstaticCallNonvirtualMethod()
|