Searched refs:current_method (Results 1 – 13 of 13) sorted by relevance
/aosp12/system/extras/perf2cfg/perf2cfg/ |
H A D | edit.py | 122 self.current_method: analyze.Method 257 logging.info('Annotated %s', self.current_method.name) 312 self.current_method = self.analyzer.methods[method_name] 316 event_count = self.current_method.event_counts[event_name] 332 for instruction in self.current_method.instructions.values()) 354 event_count = self.current_method.event_counts[event_name] 392 instruction = self.current_method.instructions.get(addr) 432 method_event_count = self.current_method.event_counts[ 501 total_event_count = self.current_method.event_counts[event_name] 521 total_event_count = self.current_method.event_counts[event_name]
|
/aosp12/art/runtime/ |
H A 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,
|
H A D | native_stack_dump.h | 37 ArtMethod* current_method = nullptr,
|
H A D | class_linker.cc | 6810 if (current_method->IsAbstract() || in FindDefaultMethodImplementation() 6963 *imt_ref = current_method; in SetIMTRef() 6973 *imt_ref = current_method; in SetIMTRef() 7788 ArtMethod* current_method = nullptr; in FindMethod() local 7795 DCHECK(current_method == nullptr); in FindMethod() 7829 DCHECK(current_method != nullptr); in FindMethod() 7835 current_method = vtable_impl; in FindMethod() 7861 DCHECK(current_method == nullptr); in FindMethod() 7868 current_method = vtable_impl; in FindMethod() 7873 return current_method; in FindMethod() [all …]
|
H A D | thread.cc | 2142 ArtMethod* current_method = thread->GetCurrentMethod(nullptr); in ShouldShowNativeStack() local 2143 return current_method != nullptr && current_method->IsNative(); in ShouldShowNativeStack()
|
H A D | class_linker.h | 1318 ArtMethod* current_method,
|
/aosp12/art/runtime/mirror/ |
H A D | class.cc | 857 ArtMethod* current_method = &method_iter; in FindVirtualMethodForInterfaceSuper() local 858 if (current_method->HasSameNameAndSignature(method)) { in FindVirtualMethodForInterfaceSuper() 859 if (current_method->IsDefault()) { in FindVirtualMethodForInterfaceSuper() 867 DCHECK(possible_override->HasSameNameAndSignature(current_method)); in FindVirtualMethodForInterfaceSuper() 874 return current_method; in FindVirtualMethodForInterfaceSuper() 879 abstract_methods.push_back(current_method); in FindVirtualMethodForInterfaceSuper()
|
/aosp12/art/runtime/jni/ |
H A 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()
|
/aosp12/art/compiler/optimizing/ |
H A D | nodes.h | 6751 HLoadClass(HCurrentMethod* current_method, 6762 special_input_(HUserRecord<HInstruction*>(current_method)), 6987 HLoadString(HCurrentMethod* current_method, 6995 special_input_(HUserRecord<HInstruction*>(current_method)), 7124 HLoadMethodHandle(HCurrentMethod* current_method, 7132 special_input_(HUserRecord<HInstruction*>(current_method)), 7168 HLoadMethodType(HCurrentMethod* current_method, 7176 special_input_(HUserRecord<HInstruction*>(current_method)),
|
H A D | code_generator_arm_vixl.cc | 3548 Location current_method = locations->InAt(invoke->GetNumberOfArguments() - 1); in VisitInvokeInterface() local 3549 if (current_method.IsStackSlot()) { in VisitInvokeInterface() 3551 kLoadWord, RegisterFrom(hidden_reg), sp, current_method.GetStackIndex()); in VisitInvokeInterface() 3553 __ Mov(RegisterFrom(hidden_reg), RegisterFrom(current_method)); in VisitInvokeInterface() 7465 vixl32::Register current_method = InputRegisterAt(cls, 0); in VisitLoadClass() local 7468 current_method, in VisitLoadClass()
|
H A D | code_generator_arm64.cc | 5285 Register current_method = InputRegisterAt(cls, 0); in VisitLoadClass() local 5288 current_method, in VisitLoadClass()
|
H A D | code_generator_x86_64.cc | 6305 CpuRegister current_method = locations->InAt(0).AsRegister<CpuRegister>(); in VisitLoadClass() local 6309 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()), in VisitLoadClass()
|
H A D | code_generator_x86.cc | 7170 Register current_method = locations->InAt(0).AsRegister<Register>(); in VisitLoadClass() local 7174 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()), in VisitLoadClass()
|