Searched refs:current_method (Results 1 – 12 of 12) sorted by relevance
/art/runtime/ |
D | native_stack_dump.cc | 286 ArtMethod* current_method, in DumpNativeStack() argument 349 } else if (current_method != nullptr && in DumpNativeStack() 351 PcIsWithinQuickCode(current_method, it->pc)) { in DumpNativeStack() 352 const void* start_of_code = current_method->GetEntryPointFromQuickCompiledCode(); in DumpNativeStack() 353 os << current_method->JniLongName() << "+" in DumpNativeStack() 411 ArtMethod* current_method ATTRIBUTE_UNUSED,
|
D | native_stack_dump.h | 37 ArtMethod* current_method = nullptr,
|
D | class_linker.cc | 6111 for (ArtMethod& current_method : current_iface->GetDeclaredVirtualMethods(image_pointer_size)) { in ContainsOverridingMethodOf() 6113 current_method.GetInterfaceMethodIfProxy(image_pointer_size)))) { in ContainsOverridingMethodOf() 6168 ArtMethod* current_method = &method_iter; in FindDefaultMethodImplementation() local 6170 if (current_method->IsAbstract() || in FindDefaultMethodImplementation() 6172 current_method->GetInterfaceMethodIfProxy(image_pointer_size_))) { in FindDefaultMethodImplementation() 6174 } else if (!current_method->IsPublic()) { in FindDefaultMethodImplementation() 6178 LOG(WARNING) << "Interface method " << current_method->PrettyMethod() in FindDefaultMethodImplementation() 6196 << current_method->PrettyMethod() << " and " in FindDefaultMethodImplementation() 6216 *out_default_method = current_method; in FindDefaultMethodImplementation() 6221 VLOG(class_linker) << "A default method '" << current_method->PrettyMethod() in FindDefaultMethodImplementation() [all …]
|
D | java_vm_ext.cc | 514 ArtMethod* current_method = self->GetCurrentMethod(nullptr); in JniAbort() local 523 if (current_method != nullptr) { in JniAbort() 524 os << "\n from " << current_method->PrettyMethod(); in JniAbort()
|
D | thread.cc | 1882 ArtMethod* current_method = thread->GetCurrentMethod(nullptr); in ShouldShowNativeStack() local 1883 return current_method != nullptr && current_method->IsNative(); in ShouldShowNativeStack()
|
D | class_linker.h | 1198 ArtMethod* current_method,
|
/art/runtime/mirror/ |
D | class.cc | 727 ArtMethod* current_method = &method_iter; in FindVirtualMethodForInterfaceSuper() local 728 if (current_method->HasSameNameAndSignature(method)) { in FindVirtualMethodForInterfaceSuper() 729 if (current_method->IsDefault()) { in FindVirtualMethodForInterfaceSuper() 737 DCHECK(possible_override->HasSameNameAndSignature(current_method)); in FindVirtualMethodForInterfaceSuper() 744 return current_method; in FindVirtualMethodForInterfaceSuper() 749 abstract_methods.push_back(current_method); in FindVirtualMethodForInterfaceSuper()
|
/art/compiler/optimizing/ |
D | nodes.h | 5690 HLoadClass(HCurrentMethod* current_method, in HLoadClass() argument 5698 special_input_(HUserRecord<HInstruction*>(current_method)), in HLoadClass() 5886 HLoadString(HCurrentMethod* current_method, in HLoadString() argument 5891 special_input_(HUserRecord<HInstruction*>(current_method)), in HLoadString()
|
D | code_generator_arm64.cc | 4916 Register current_method = InputRegisterAt(cls, 0); in VisitLoadClass() local 4919 current_method, in VisitLoadClass()
|
D | code_generator_x86_64.cc | 5539 CpuRegister current_method = locations->InAt(0).AsRegister<CpuRegister>(); in VisitLoadClass() local 5543 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()), in VisitLoadClass()
|
D | code_generator_x86.cc | 6125 Register current_method = locations->InAt(0).AsRegister<Register>(); in VisitLoadClass() local 6129 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()), in VisitLoadClass()
|
D | code_generator_arm_vixl.cc | 7346 vixl32::Register current_method = InputRegisterAt(cls, 0); in VisitLoadClass() local 7349 current_method, in VisitLoadClass()
|