HomeSort by relevance Sort by last modified time
    Searched refs:target_method (Results 1 - 23 of 23) sorted by null

  /art/compiler/linker/arm/
relative_patcher_arm_base.h 121 UnprocessedMethodCallPatch(uint32_t patch_offset, MethodReference target_method)
122 : patch_offset_(patch_offset), target_method_(target_method) { }
relative_patcher_arm_base.cc 403 MethodReference target_method = unprocessed_method_call_patches_.front().GetTargetMethod(); local
410 if (target_method.dex_file == method_ref.dex_file &&
411 target_method.dex_method_index == method_ref.dex_method_index) {
417 auto result = provider_->FindMethodOffset(target_method);
  /art/compiler/dex/
inline_method_analyser.cc 148 ArtMethod* target_method = Runtime::Current()->GetClassLinker()->LookupResolvedMethod( local
150 if (kIsDebugBuild && target_method != nullptr) {
151 CHECK(!target_method->IsStatic());
152 CHECK(target_method->IsConstructor());
153 CHECK(target_method->GetDeclaringClass() == method->GetDeclaringClass() ||
154 target_method->GetDeclaringClass() == method->GetDeclaringClass()->GetSuperClass());
156 return target_method;
308 ArtMethod* target_method = GetTargetConstructor(method, instruction); local
309 if (target_method == nullptr) {
314 if (target_method->GetDeclaringClass() == method->GetDeclaringClass() &
    [all...]
  /art/runtime/
method_handles.cc 656 ArtMethod* target_method)
660 // For virtual and interface methods ensure target_method points to
670 ObjPtr<mirror::Class> declaring_class(target_method->GetDeclaringClass());
679 target_method, kRuntimePointerSize);
684 if (target_method->IsConstructor() && target_method->GetDeclaringClass()->IsStringClass()) {
686 return WellKnownClasses::StringInitToStringFactory(target_method);
689 ObjPtr<mirror::Class> declaring_class = target_method->GetDeclaringClass();
698 uint16_t vtable_index = target_method->GetMethodIndex();
701 // Note that super_class is a super of referrer_class and target_method
730 ArtMethod* target_method = method_handle->GetTargetMethod(); local
1060 ArtMethod* target_method = method_handle->GetTargetMethod(); local
    [all...]
class_linker.cc 8394 ArtMethod* target_method = nullptr; local
    [all...]
class_linker.h     [all...]
  /external/autotest/server/site_tests/cheets_CTS/
cheets_CTS.py 260 target_method=None,
270 4. Run a specific test method named |target_method| of class
276 @param target_method: the name of the method to be tested.
309 if target_method is not None:
310 test_name += '.' + target_method
312 test_class=target_class, test_method=target_method)
  /external/autotest/server/site_tests/cheets_CTS_N/
cheets_CTS_N.py 270 target_method=None,
283 4. Run a specific test method named |target_method| of class
290 @param target_method: the name of the method to be tested.
327 if target_method is not None:
328 test_name += '.' + target_method
331 test_method=target_method,
  /art/compiler/optimizing/
code_generator_mips.h 622 PcRelativePatchInfo* NewPcRelativeMethodPatch(MethodReference target_method,
624 PcRelativePatchInfo* NewMethodBssEntryPatch(MethodReference target_method,
code_generator_mips64.h 578 PcRelativePatchInfo* NewPcRelativeMethodPatch(MethodReference target_method,
580 PcRelativePatchInfo* NewMethodBssEntryPatch(MethodReference target_method,
code_generator_arm64.h 568 vixl::aarch64::Label* NewPcRelativeMethodPatch(MethodReference target_method,
575 vixl::aarch64::Label* NewMethodBssEntryPatch(MethodReference target_method,
    [all...]
code_generator_arm_vixl.h 576 PcRelativePatchInfo* NewPcRelativeMethodPatch(MethodReference target_method);
577 PcRelativePatchInfo* NewMethodBssEntryPatch(MethodReference target_method);
    [all...]
code_generator_x86.h 419 MethodReference target_method);
code_generator_x86_64.h 413 Label* NewMethodBssEntryPatch(MethodReference target_method);
code_generator_arm64.cc     [all...]
instruction_builder.cc     [all...]
code_generator_mips64.cc     [all...]
code_generator_arm_vixl.cc     [all...]
code_generator_mips.cc     [all...]
code_generator_x86.cc     [all...]
code_generator_x86_64.cc     [all...]
nodes.h     [all...]
  /art/compiler/
oat_writer.cc 756 MethodReference target_method = patch.TargetMethod();
757 auto refs_it = writer_->bss_method_entry_references_.find(target_method.dex_file);
760 target_method.dex_file,
761 BitVector(target_method.dex_file->NumMethodIds(),
766 refs_it->second.SetBit(target_method.dex_method_index);
767 writer_->bss_method_entries_.Overwrite(target_method, /* placeholder */ 0u);
    [all...]

Completed in 670 milliseconds