Searched defs:current_method (Results 1 - 11 of 11) sorted by relevance

/art/runtime/
H A Dnative_stack_dump.cc286 ArtMethod* current_method,
349 } else if (current_method != nullptr &&
351 PcIsWithinQuickCode(current_method, it->pc)) {
352 const void* start_of_code = current_method->GetEntryPointFromQuickCompiledCode();
353 os << current_method->JniLongName() << "+"
411 ArtMethod* current_method ATTRIBUTE_UNUSED,
282 DumpNativeStack(std::ostream& os, pid_t tid, BacktraceMap* existing_map, const char* prefix, ArtMethod* current_method, void* ucontext_ptr) argument
H A Djava_vm_ext.cc484 ArtMethod* current_method = self->GetCurrentMethod(nullptr); local
493 if (current_method != nullptr) {
494 os << "\n from " << current_method->PrettyMethod();
H A Dthread.cc1808 ArtMethod* current_method = thread->GetCurrentMethod(nullptr); local
1809 return current_method != nullptr && current_method->IsNative();
H A Dclass_linker.cc6097 for (ArtMethod& current_method : current_iface->GetDeclaredVirtualMethods(image_pointer_size)) {
6099 current_method.GetInterfaceMethodIfProxy(image_pointer_size)))) {
6154 ArtMethod* current_method = &method_iter; local
6156 if (current_method->IsAbstract() ||
6158 current_method->GetInterfaceMethodIfProxy(image_pointer_size_))) {
6160 } else if (!current_method->IsPublic()) {
6164 LOG(WARNING) << "Interface method " << current_method->PrettyMethod()
6182 << current_method->PrettyMethod() << " and "
6202 *out_default_method = current_method;
6207 VLOG(class_linker) << "A default method '" << current_method
6301 SetIMTRef(ArtMethod* unimplemented_method, ArtMethod* imt_conflict_method, ArtMethod* current_method, bool* new_conflict, ArtMethod** imt_ref) argument
6983 ArtMethod* current_method = nullptr; local
7517 ArtMethod* current_method = helper.FindMethod(interface_method, local
[all...]
/art/runtime/mirror/
H A Dclass.cc662 ArtMethod* current_method = &method_iter; local
663 if (current_method->HasSameNameAndSignature(method)) {
664 if (current_method->IsDefault()) {
672 DCHECK(possible_override->HasSameNameAndSignature(current_method));
679 return current_method;
684 abstract_methods.push_back(current_method);
/art/compiler/optimizing/
H A Dcode_generator_arm64.cc4481 Location current_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex()); local
4484 if (current_method.IsRegister()) {
4485 method_reg = XRegisterFrom(current_method);
4488 DCHECK(!current_method.IsValid());
4907 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
4908 Register current_method = InputRegisterAt(cls, 0);
4911 current_method,
H A Dcode_generator_arm.cc6734 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
6735 Register current_method = locations->InAt(0).AsRegister<Register>(); variable
6738 current_method,
8283 Location current_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex()); local
8286 if (current_method.IsRegister()) {
8287 method_reg = current_method.AsRegister<Register>();
8290 DCHECK(!current_method.IsValid());
H A Dcode_generator_arm_vixl.cc6796 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
6797 vixl32::Register current_method = InputRegisterAt(cls, 0); variable
6800 current_method,
8377 Location current_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex()); local
8380 if (current_method.IsRegister()) {
8381 method_reg = RegisterFrom(current_method);
8384 DCHECK(!current_method.IsValid());
H A Dcode_generator_x86.cc4553 Location current_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex()); local
4556 if (current_method.IsRegister()) {
4557 method_reg = current_method.AsRegister<Register>();
4560 DCHECK(!current_method.IsValid());
6142 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
6143 Register current_method = locations->InAt(0).AsRegister<Register>(); variable
6147 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()),
H A Dcode_generator_x86_64.cc1006 Location current_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex()); local
1009 if (current_method.IsRegister()) {
1010 method_reg = current_method.AsRegister<Register>();
1013 DCHECK(!current_method.IsValid());
5544 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
5545 CpuRegister current_method = locations->InAt(0).AsRegister<CpuRegister>(); variable
5549 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()),
H A Dnodes.h5669 HLoadClass(HCurrentMethod* current_method, argument
5677 special_input_(HUserRecord<HInstruction*>(current_method)),
5872 HLoadString(HCurrentMethod* current_method,
5877 special_input_(HUserRecord<HInstruction*>(current_method)),

Completed in 610 milliseconds