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

/art/runtime/
H A Dnative_stack_dump.h37 ArtMethod* current_method = nullptr,
H A Dnative_stack_dump.cc289 ArtMethod* current_method,
365 } else if (current_method != nullptr &&
367 PcIsWithinQuickCode(current_method, it->pc)) {
368 const void* start_of_code = current_method->GetEntryPointFromQuickCompiledCode();
369 os << current_method->JniLongName() << "+"
431 ArtMethod* current_method ATTRIBUTE_UNUSED,
285 DumpNativeStack(std::ostream& os, pid_t tid, BacktraceMap* existing_map, const char* prefix, ArtMethod* current_method, void* ucontext_ptr, bool skip_frames) argument
H A Dclass_linker.cc6011 for (ArtMethod& current_method : current_iface->GetDeclaredVirtualMethods(image_pointer_size)) {
6013 current_method.GetInterfaceMethodIfProxy(image_pointer_size)))) {
6068 ArtMethod* current_method = &method_iter; local
6070 if (current_method->IsAbstract() ||
6072 current_method->GetInterfaceMethodIfProxy(image_pointer_size_))) {
6074 } else if (!current_method->IsPublic()) {
6078 LOG(WARNING) << "Interface method " << current_method->PrettyMethod()
6096 << current_method->PrettyMethod() << " and "
6116 *out_default_method = current_method;
6121 VLOG(class_linker) << "A default method '" << current_method
6215 SetIMTRef(ArtMethod* unimplemented_method, ArtMethod* imt_conflict_method, ArtMethod* current_method, bool* new_conflict, ArtMethod** imt_ref) argument
6898 ArtMethod* current_method = nullptr; local
7432 ArtMethod* current_method = helper.FindMethod(interface_method, local
[all...]
H A Djava_vm_ext.cc522 ArtMethod* current_method = self->GetCurrentMethod(nullptr); local
531 if (current_method != nullptr) {
532 os << "\n from " << current_method->PrettyMethod();
H A Dthread.cc1930 ArtMethod* current_method = thread->GetCurrentMethod(nullptr); local
1931 return current_method != nullptr && current_method->IsNative();
H A Dclass_linker.h1254 ArtMethod* current_method,
/art/runtime/mirror/
H A Dclass.cc779 ArtMethod* current_method = &method_iter; local
780 if (current_method->HasSameNameAndSignature(method)) {
781 if (current_method->IsDefault()) {
789 DCHECK(possible_override->HasSameNameAndSignature(current_method));
796 return current_method;
801 abstract_methods.push_back(current_method);
/art/compiler/optimizing/
H A Dnodes.h6049 HLoadClass(HCurrentMethod* current_method, argument
6057 special_input_(HUserRecord<HInstruction*>(current_method)),
6268 HLoadString(HCurrentMethod* current_method,
6273 special_input_(HUserRecord<HInstruction*>(current_method)),
H A Dcode_generator_arm64.cc4860 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
4861 Register current_method = InputRegisterAt(cls, 0);
4864 current_method,
H A Dcode_generator_arm_vixl.cc7121 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
7122 vixl32::Register current_method = InputRegisterAt(cls, 0); variable
7125 current_method,
H A Dcode_generator_x86.cc6146 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
6147 Register current_method = locations->InAt(0).AsRegister<Register>(); variable
6151 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()),
H A Dcode_generator_x86_64.cc5558 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
5559 CpuRegister current_method = locations->InAt(0).AsRegister<CpuRegister>(); variable
5563 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()),

Completed in 492 milliseconds