Home
last modified time | relevance | path

Searched refs:current_method (Results 1 – 12 of 12) sorted by relevance

/art/runtime/
Dnative_stack_dump.cc322 ArtMethod* current_method, in DumpNativeStack() argument
395 } else if (current_method != nullptr && in DumpNativeStack()
397 PcIsWithinQuickCode(current_method, it->pc)) { in DumpNativeStack()
398 const void* start_of_code = current_method->GetEntryPointFromQuickCompiledCode(); in DumpNativeStack()
399 os << current_method->JniLongName() << "+" in DumpNativeStack()
423 ArtMethod* current_method ATTRIBUTE_UNUSED,
Dnative_stack_dump.h37 ArtMethod* current_method = nullptr,
Dclass_linker.cc6792 for (ArtMethod& current_method : current_iface->GetDeclaredVirtualMethods(image_pointer_size)) { in ContainsOverridingMethodOf()
6794 current_method.GetInterfaceMethodIfProxy(image_pointer_size)))) { in ContainsOverridingMethodOf()
6849 ArtMethod* current_method = &method_iter; in FindDefaultMethodImplementation() local
6851 if (current_method->IsAbstract() || in FindDefaultMethodImplementation()
6853 current_method->GetInterfaceMethodIfProxy(image_pointer_size_))) { in FindDefaultMethodImplementation()
6855 } else if (!current_method->IsPublic()) { in FindDefaultMethodImplementation()
6859 LOG(WARNING) << "Interface method " << current_method->PrettyMethod() in FindDefaultMethodImplementation()
6877 << current_method->PrettyMethod() << " and " in FindDefaultMethodImplementation()
6897 *out_default_method = current_method; in FindDefaultMethodImplementation()
6902 VLOG(class_linker) << "A default method '" << current_method->PrettyMethod() in FindDefaultMethodImplementation()
[all …]
Dthread.cc2132 ArtMethod* current_method = thread->GetCurrentMethod(nullptr); in ShouldShowNativeStack() local
2133 return current_method != nullptr && current_method->IsNative(); in ShouldShowNativeStack()
Dclass_linker.h1362 ArtMethod* current_method,
/art/runtime/mirror/
Dclass.cc888 ArtMethod* current_method = &method_iter; in FindVirtualMethodForInterfaceSuper() local
889 if (current_method->HasSameNameAndSignature(method)) { in FindVirtualMethodForInterfaceSuper()
890 if (current_method->IsDefault()) { in FindVirtualMethodForInterfaceSuper()
898 DCHECK(possible_override->HasSameNameAndSignature(current_method)); in FindVirtualMethodForInterfaceSuper()
905 return current_method; in FindVirtualMethodForInterfaceSuper()
910 abstract_methods.push_back(current_method); in FindVirtualMethodForInterfaceSuper()
/art/runtime/jni/
Djava_vm_ext.cc561 ArtMethod* current_method = self->GetCurrentMethod(nullptr); in JniAbort() local
570 if (current_method != nullptr) { in JniAbort()
571 os << "\n from " << current_method->PrettyMethod(); in JniAbort()
/art/compiler/optimizing/
Dnodes.h6385 HLoadClass(HCurrentMethod* current_method, in HLoadClass() argument
6396 special_input_(HUserRecord<HInstruction*>(current_method)), in HLoadClass()
6617 HLoadString(HCurrentMethod* current_method, in HLoadString() argument
6625 special_input_(HUserRecord<HInstruction*>(current_method)), in HLoadString()
6758 HLoadMethodHandle(HCurrentMethod* current_method, in HLoadMethodHandle() argument
6766 special_input_(HUserRecord<HInstruction*>(current_method)), in HLoadMethodHandle()
6802 HLoadMethodType(HCurrentMethod* current_method, in HLoadMethodType() argument
6810 special_input_(HUserRecord<HInstruction*>(current_method)), in HLoadMethodType()
Dcode_generator_arm64.cc5070 Register current_method = InputRegisterAt(cls, 0); in VisitLoadClass() local
5073 current_method, in VisitLoadClass()
Dcode_generator_x86_64.cc6168 CpuRegister current_method = locations->InAt(0).AsRegister<CpuRegister>(); in VisitLoadClass() local
6172 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()), in VisitLoadClass()
Dcode_generator_x86.cc6834 Register current_method = locations->InAt(0).AsRegister<Register>(); in VisitLoadClass() local
6838 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()), in VisitLoadClass()
Dcode_generator_arm_vixl.cc7370 vixl32::Register current_method = InputRegisterAt(cls, 0); in VisitLoadClass() local
7373 current_method, in VisitLoadClass()