Home
last modified time | relevance | path

Searched refs:conflict_method (Results 1 – 4 of 4) sorted by relevance

/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc2438 ArtMethod* conflict_method = imt->Get(imt_index, kRuntimePointerSize); in artInvokeInterfaceTrampoline() local
2439 if (LIKELY(conflict_method->IsRuntimeMethod())) { in artInvokeInterfaceTrampoline()
2440 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in artInvokeInterfaceTrampoline()
2447 CHECK_EQ(conflict_method, m) in artInvokeInterfaceTrampoline()
2448 << interface_method->PrettyMethod() << " / " << conflict_method->PrettyMethod() << " / " in artInvokeInterfaceTrampoline()
2451 method = conflict_method; in artInvokeInterfaceTrampoline()
2469 DCHECK(conflict_method->IsRuntimeMethod()); in artInvokeInterfaceTrampoline()
2476 conflict_method, in artInvokeInterfaceTrampoline()
2480 if (new_conflict_method != conflict_method) { in artInvokeInterfaceTrampoline()
/art/runtime/arch/
Dstub_test.cc1775 ArtMethod* conflict_method = Runtime::Current()->CreateImtConflictMethod(linear_alloc); in TEST_F() local
1783 conflict_method->SetImtConflictTable(new_table, kRuntimePointerSize); in TEST_F()
1786 Invoke3WithReferrerAndHidden(reinterpret_cast<size_t>(conflict_method), in TEST_F()
1806 Invoke3WithReferrerAndHidden(reinterpret_cast<size_t>(conflict_method), in TEST_F()
/art/runtime/
Dclass_linker.cc6923 ArtMethod* conflict_method, in AddMethodToConflictTable() argument
6927 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in AddMethodToConflictTable()
6930 bool new_entry = conflict_method == runtime->GetImtConflictMethod() || force_new_conflict_method; in AddMethodToConflictTable()
6935 : conflict_method; in AddMethodToConflictTable()
6944 return conflict_method; in AddMethodToConflictTable()
7036 ArtMethod* const conflict_method = runtime->GetImtConflictMethod(); in FillIMTAndConflictTables() local
7042 conflict_method, in FillIMTAndConflictTables()
7065 method != conflict_method; in FillIMTAndConflictTables()
7069 super_method != conflict_method; in FillIMTAndConflictTables()
Dclass_linker.h718 ArtMethod* conflict_method,