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.cc2375 ArtMethod* conflict_method = imt->Get(ImTable::GetImtIndex(interface_method), in artInvokeInterfaceTrampoline() local
2377 if (LIKELY(conflict_method->IsRuntimeMethod())) { in artInvokeInterfaceTrampoline()
2378 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in artInvokeInterfaceTrampoline()
2448 ArtMethod* conflict_method = imt->Get(imt_index, kRuntimePointerSize); in artInvokeInterfaceTrampoline() local
2449 if (conflict_method->IsRuntimeMethod()) { in artInvokeInterfaceTrampoline()
2452 conflict_method, in artInvokeInterfaceTrampoline()
2456 if (new_conflict_method != conflict_method) { in artInvokeInterfaceTrampoline()
/art/runtime/arch/
Dstub_test.cc1898 ArtMethod* conflict_method = Runtime::Current()->CreateImtConflictMethod(linear_alloc); in TEST_F() local
1906 conflict_method->SetImtConflictTable(new_table, kRuntimePointerSize); in TEST_F()
1909 Invoke3WithReferrerAndHidden(reinterpret_cast<size_t>(conflict_method), in TEST_F()
1929 Invoke3WithReferrerAndHidden(reinterpret_cast<size_t>(conflict_method), in TEST_F()
/art/runtime/
Dclass_linker.cc6228 ArtMethod* conflict_method, in AddMethodToConflictTable() argument
6232 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in AddMethodToConflictTable()
6235 bool new_entry = conflict_method == runtime->GetImtConflictMethod() || force_new_conflict_method; in AddMethodToConflictTable()
6240 : conflict_method; in AddMethodToConflictTable()
6249 return conflict_method; in AddMethodToConflictTable()
6338 ArtMethod* const conflict_method = runtime->GetImtConflictMethod(); in FillIMTAndConflictTables() local
6344 conflict_method, in FillIMTAndConflictTables()
6367 method != conflict_method; in FillIMTAndConflictTables()
6371 super_method != conflict_method; in FillIMTAndConflictTables()
Dclass_linker.h608 ArtMethod* conflict_method,