Searched refs:current_method (Results 1 – 12 of 12) sorted by relevance
/art/runtime/ |
D | native_stack_dump.cc | 322 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,
|
D | native_stack_dump.h | 37 ArtMethod* current_method = nullptr,
|
D | class_linker.cc | 6792 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 …]
|
D | thread.cc | 2132 ArtMethod* current_method = thread->GetCurrentMethod(nullptr); in ShouldShowNativeStack() local 2133 return current_method != nullptr && current_method->IsNative(); in ShouldShowNativeStack()
|
D | class_linker.h | 1362 ArtMethod* current_method,
|
/art/runtime/mirror/ |
D | class.cc | 888 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/ |
D | java_vm_ext.cc | 561 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/ |
D | nodes.h | 6385 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()
|
D | code_generator_arm64.cc | 5070 Register current_method = InputRegisterAt(cls, 0); in VisitLoadClass() local 5073 current_method, in VisitLoadClass()
|
D | code_generator_x86_64.cc | 6168 CpuRegister current_method = locations->InAt(0).AsRegister<CpuRegister>(); in VisitLoadClass() local 6172 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()), in VisitLoadClass()
|
D | code_generator_x86.cc | 6834 Register current_method = locations->InAt(0).AsRegister<Register>(); in VisitLoadClass() local 6838 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()), in VisitLoadClass()
|
D | code_generator_arm_vixl.cc | 7370 vixl32::Register current_method = InputRegisterAt(cls, 0); in VisitLoadClass() local 7373 current_method, in VisitLoadClass()
|