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.cc2691 ArtMethod* conflict_method = imt->Get(imt_index, kRuntimePointerSize); in artInvokeInterfaceTrampoline() local
2692 if (LIKELY(conflict_method->IsRuntimeMethod())) { in artInvokeInterfaceTrampoline()
2693 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in artInvokeInterfaceTrampoline()
2700 CHECK_EQ(conflict_method, m) in artInvokeInterfaceTrampoline()
2701 << interface_method->PrettyMethod() << " / " << conflict_method->PrettyMethod() << " / " in artInvokeInterfaceTrampoline()
2704 method = conflict_method; in artInvokeInterfaceTrampoline()
2722 DCHECK(conflict_method->IsRuntimeMethod()); in artInvokeInterfaceTrampoline()
2725 conflict_method, in artInvokeInterfaceTrampoline()
2729 if (new_conflict_method != conflict_method) { in artInvokeInterfaceTrampoline()
/art/runtime/arch/
Dstub_test.cc1914 ArtMethod* conflict_method = Runtime::Current()->CreateImtConflictMethod(linear_alloc); in TEST_F() local
1922 conflict_method->SetImtConflictTable(new_table, kRuntimePointerSize); in TEST_F()
1925 Invoke3WithReferrerAndHidden(reinterpret_cast<size_t>(conflict_method), in TEST_F()
1945 Invoke3WithReferrerAndHidden(reinterpret_cast<size_t>(conflict_method), in TEST_F()
/art/runtime/
Dclass_linker.cc6644 ArtMethod* conflict_method, in AddMethodToConflictTable() argument
6648 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in AddMethodToConflictTable()
6651 bool new_entry = conflict_method == runtime->GetImtConflictMethod() || force_new_conflict_method; in AddMethodToConflictTable()
6656 : conflict_method; in AddMethodToConflictTable()
6665 return conflict_method; in AddMethodToConflictTable()
6755 ArtMethod* const conflict_method = runtime->GetImtConflictMethod(); in FillIMTAndConflictTables() local
6761 conflict_method, in FillIMTAndConflictTables()
6784 method != conflict_method; in FillIMTAndConflictTables()
6788 super_method != conflict_method; in FillIMTAndConflictTables()
Dclass_linker.h658 ArtMethod* conflict_method,