/aosp12/art/compiler/optimizing/ |
H A D | inliner.cc | 1333 << "Method " << method->PrettyMethod() in IsInliningAllowed() 1340 << "Method " << method->PrettyMethod() in IsInliningAllowed() 1358 << "Method " << method->PrettyMethod() in IsInliningSupported() 1374 << "Method " << method->PrettyMethod() in IsInliningSupported() 1389 << method->PrettyMethod() in IsInliningBudgetAvailable() 1397 << "Method " << method->PrettyMethod() in IsInliningBudgetAvailable() 1448 << method->PrettyMethod(); in TryBuildAndInline() 1479 LOG_SUCCESS() << method->PrettyMethod(); in TryBuildAndInline() 1767 << "Method " << resolved_method->PrettyMethod() in CanInlineBody() 1778 << "Method " << resolved_method->PrettyMethod() in CanInlineBody() [all …]
|
H A D | builder.cc | 82 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in SkipCompilation() 91 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in SkipCompilation()
|
/aosp12/art/runtime/ |
H A D | art_method.cc | 116 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod(); in GetObsoleteDexCache() 144 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod(); in FindObsoleteDexClassDefIndex() 366 << "Don't call compiled code when -Xint " << PrettyMethod(); in Invoke() 385 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null"; in Invoke() 498 << method->PrettyMethod(); in FindOatMethodFor() 586 << PrettyMethod() in GetOatQuickMethodHeader() 617 DCHECK(IsNative()) << PrettyMethod(); in GetOatQuickMethodHeader() 629 << PrettyMethod() in GetOatQuickMethodHeader() 780 std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) { in PrettyMethod() function in art::ArtMethod 784 return m->PrettyMethod(with_signature); in PrettyMethod() [all …]
|
H A D | quick_exception_handler.cc | 186 LOG(INFO) << "Handler: " << GetHandlerMethod()->PrettyMethod() << " (line: " in FindCatch() 287 << "method=" << ArtMethod::PrettyMethod(stack_visitor->GetMethod()) in SetCatchEnvironmentForOptimizedHandler() 345 CHECK(callee_method_ != nullptr) << GetMethod()->PrettyMethod(false); in FinishStackWalk() 354 << " at method " << ArtMethod::PrettyMethod(method); in VisitFrame() 374 << method->PrettyMethod(); in VisitFrame() 472 << "Deopting: " << m->PrettyMethod() in HandleOptimizingDeoptimization() 591 << deopt_method->PrettyMethod() in DeoptimizeSingleFrame() 597 << deopt_method->PrettyMethod() in DeoptimizeSingleFrame() 685 LOG(INFO) << "R " << method->PrettyMethod(true); in DumpFramesWithType() 693 << method->PrettyMethod(true); in DumpFramesWithType()
|
H A D | stack.cc | 171 << ArtMethod::PrettyMethod(m); in GetThisObject() 270 DCHECK(m->GetCodeItem() != nullptr) << m->PrettyMethod(); in GetVRegFromOptimizedCode() 629 result += m->PrettyMethod(); in DescribeLocation() 644 << GetMethod()->PrettyMethod() << " is inlined into " in SetMethod() 645 << GetOuterMethod()->PrettyMethod(); in SetMethod() 684 << method->PrettyMethod() in AssertPcIsWithinQuickCode() 730 CHECK(in_image) << canonical->PrettyMethod() << " not in linear alloc or image"; in ValidateFrame() 745 CHECK_LE(frame_size, kMaxExpectedFrameSize) << method->PrettyMethod(); in ValidateFrame() 851 CHECK(code != nullptr) << method->PrettyMethod(); in WalkStack() 916 CHECK_EQ(GetMethod(), callee) << "Expected: " << ArtMethod::PrettyMethod(callee) in WalkStack() [all …]
|
H A D | common_throws.cc | 102 ArtMethod::PrettyMethod(method).c_str()).c_str()); in ThrowAbstractMethodError() 108 dex_file.PrettyMethod(method_idx, in ThrowAbstractMethodError() 206 << " method " << ArtMethod::PrettyMethod(called).c_str(); in ThrowIllegalAccessErrorClassForMethodDispatch() 212 msg << "Method '" << ArtMethod::PrettyMethod(accessed) << "' is inaccessible to class '" in ThrowIllegalAccessErrorMethod() 227 << "' cannot be written to by method '" << ArtMethod::PrettyMethod(referrer) << "'"; in ThrowIllegalAccessErrorFinalField() 281 << ArtMethod::PrettyMethod(method) << "'"; in ThrowIncompatibleClassChangeErrorClassForInterfaceSuper() 298 << "' in call to '" << ArtMethod::PrettyMethod(interface_method) << "'"; in ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch() 327 ArtMethod::PrettyMethod(method).c_str()).c_str()); in ThrowIncompatibleClassChangeErrorForMethodConflict() 437 << dex_file.PrettyMethod(method_idx, true) << "' on a null object reference"; in ThrowNullPointerExceptionForMethodAccessImpl() 559 << method->PrettyMethod(); in ThrowNullPointerExceptionFromDexPC() [all …]
|
H A D | instrumentation.cc | 148 LOG(INFO) << "Popping for unwind " << method->PrettyMethod(); in PopFramesTo() 362 << "Expected " << ArtMethod::PrettyMethod(m) in InstrumentationInstallStack() 363 << ", Found " << ArtMethod::PrettyMethod(frame.method_); in InstrumentationInstallStack() 382 << " method is " << GetMethod()->PrettyMethod() in InstrumentationInstallStack() 482 << " Method=" << ArtMethod::PrettyMethod(m); in InstrumentationRestoreStack() 503 << ArtMethod::PrettyMethod(m) in InstrumentationRestoreStack() 1036 CHECK(found_and_erased) << "Method " << ArtMethod::PrettyMethod(method) in Undeoptimize() 1135 DCHECK(!method->IsProxyMethod()) << method->PrettyMethod(); in GetCodeForInvoke() 1561 << visitor.caller->PrettyMethod() in PopInstrumentationStackFrame() 1563 << method->PrettyMethod() in PopInstrumentationStackFrame() [all …]
|
H A D | monitor_android.cc | 84 method_name = ArtMethod::PrettyMethod(m); in LogContentionEvent() 101 std::string owner_method_name = ArtMethod::PrettyMethod(owner_method); in LogContentionEvent()
|
H A D | oat_quick_method_header.cc | 54 << ") in " << method->PrettyMethod(); in ToDexPc() 87 << " in " << method->PrettyMethod(); in ToNativeQuickPc()
|
H A D | check_reference_map_visitor.h | 52 LOG(INFO) << "At " << m->PrettyMethod(false); in VisitFrame() 55 LOG(WARNING) << "no PC for " << m->PrettyMethod(); in VisitFrame()
|
H A D | reflection.cc | 254 m->PrettyMethod(false).c_str(), in BuildArgArrayFromObjectArray() 283 ArtMethod::PrettyMethod(m, false).c_str(), \ in BuildArgArrayFromObjectArray() 402 << " to " << m->PrettyMethod(); in CheckMethodArguments() 412 << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod(); in CheckMethodArguments() 418 << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod(); in CheckMethodArguments() 424 << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod(); in CheckMethodArguments() 430 << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod(); in CheckMethodArguments() 440 m->PrettyMethod().c_str()); in CheckMethodArguments() 761 m->PrettyMethod().c_str(), in InvokeMethod()
|
H A D | cha.cc | 314 << " verify_method: " << verify_method->PrettyMethod(true) in VerifyNonSingleImplementation() 316 << " excluded_method: " << ArtMethod::PrettyMethod(excluded_method); in VerifyNonSingleImplementation() 546 DCHECK(!method->HasCodeItem()) << method->PrettyMethod(); in InitSingleImplementationFlag() 547 DCHECK(method->GetSingleImplementation(pointer_size) == nullptr) << method->PrettyMethod(); in InitSingleImplementationFlag() 672 VLOG(class_linker) << "CHA invalidated compiled code for " << method->PrettyMethod(); in InvalidateSingleImplementationMethods()
|
/aosp12/art/runtime/entrypoints/quick/ |
H A D | quick_trampoline_entrypoints.cc | 598 << ArtMethod::PrettyMethod(linked->GetMethod()); in HandleDeoptimization() 663 DCHECK(!method->IsNative()) << method->PrettyMethod(); in artQuickToInterpreterBridge() 725 << caller->PrettyMethod(); in artQuickToInterpreterBridge() 728 << " to " << caller->PrettyMethod() in artQuickToInterpreterBridge() 936 << proxy_method->PrettyMethod() << " " << non_proxy_method->PrettyMethod(); in artQuickGetProxyReferenceArgumentAt() 980 << proxy_method->PrettyMethod() << " " << non_proxy_method->PrettyMethod(); in GetProxyReferenceArguments() 1038 << "Proxy method " << method->PrettyMethod() in artInstrumentationMethodEntryFromCode() 1082 CHECK(result != nullptr) << method->PrettyMethod(); in artInstrumentationMethodEntryFromCode() 1208 << ": " << tag << caller->PrettyMethod() in DumpB74410240DebugData() 1325 << called->PrettyMethod() << " " << invoke_type; in artQuickResolutionTrampoline() [all …]
|
H A D | quick_jni_entrypoints.cc | 71 CHECK(native_method->IsFastNative()) << native_method->PrettyMethod(); in JniMethodFastStart() 86 CHECK(!native_method->IsFastNative()) << native_method->PrettyMethod(); in JniMethodStart() 103 CHECK(!native_method->IsFastNative()) << native_method->PrettyMethod(); in GoToRunnable() 113 CHECK(native_method->IsFastNative()) << native_method->PrettyMethod(); in GoToRunnableFast()
|
/aosp12/art/compiler/ |
H A D | compiler.cc | 60 << " in " << dex_file.PrettyMethod(method_idx); in IsPathologicalCase() 65 << accessor.RegistersSize() << " in " << dex_file.PrettyMethod(method_idx); in IsPathologicalCase()
|
/aosp12/art/runtime/verifier/ |
H A D | register_line.cc | 39 << verifier->GetMethodReference().PrettyMethod(); in CheckConstructorReturn() 346 << verifier->GetMethodReference().PrettyMethod(); in PushMonitor() 361 << verifier->GetMethodReference().PrettyMethod(); in PushMonitor() 375 << verifier->GetMethodReference().PrettyMethod(); in PopMonitor() 395 << verifier->GetMethodReference().PrettyMethod(); in PopMonitor() 449 << verifier->GetMethodReference().PrettyMethod(); in MergeRegisters() 483 << verifier->GetMethodReference().PrettyMethod(); in MergeRegisters() 525 << verifier->GetMethodReference().PrettyMethod(); in MergeRegisters()
|
/aosp12/art/runtime/mirror/ |
H A D | method.cc | 30 DCHECK(!method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod() 45 DCHECK(method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
|
/aosp12/art/openjdkjvmti/ |
H A D | deopt_manager.cc | 126 stream << "Breakpoint: " << bp->PrettyMethod() << " @ 0x" << std::hex << loc << "\n"; in DumpDeoptInfo() 236 DCHECK(!method->IsProxyMethod()) << method->PrettyMethod(); in AddMethodBreakpoint() 237 DCHECK(!method->IsNative()) << method->PrettyMethod(); in AddMethodBreakpoint() 275 DCHECK(method->IsInvokable()) << method->PrettyMethod(); in RemoveMethodBreakpoint() 276 DCHECK(!method->IsProxyMethod()) << method->PrettyMethod(); in RemoveMethodBreakpoint() 277 DCHECK(!method->IsNative()) << method->PrettyMethod(); in RemoveMethodBreakpoint()
|
/aosp12/art/libdexfile/dex/ |
H A D | test_dex_file_builder_test.cc | 75 dex_file->PrettyMethod(0u).c_str()); in TEST() 77 dex_file->PrettyMethod(1u).c_str()); in TEST()
|
H A D | method_reference.h | 31 std::string PrettyMethod(bool with_signature = true) const { 32 return dex_file->PrettyMethod(index, with_signature);
|
/aosp12/art/compiler/jni/quick/ |
H A D | jni_compiler.cc | 135 << dex_file.PrettyMethod(method_idx, /* with signature */ true) in ArtJniCompileMethodInternal() 140 << dex_file.PrettyMethod(method_idx, /* with signature */ true); in ArtJniCompileMethodInternal() 145 << dex_file.PrettyMethod(method_idx, /* with signature */ true); in ArtJniCompileMethodInternal() 152 << dex_file.PrettyMethod(method_idx, /* with_signature= */ true); in ArtJniCompileMethodInternal() 163 << dex_file.PrettyMethod(method_idx, /* with_signature= */ true); in ArtJniCompileMethodInternal() 167 << dex_file.PrettyMethod(method_idx, /* with_signature= */ true); in ArtJniCompileMethodInternal() 171 << dex_file.PrettyMethod(method_idx, /* with_signature= */ true); in ArtJniCompileMethodInternal()
|
/aosp12/art/runtime/jit/ |
H A D | jit_code_cache.cc | 183 VLOG(jit) << "JIT removed (JNI) " << (*it)->PrettyMethod() << ": " << code_; in RemoveMethodsIn() 191 VLOG(jit) << "JIT removed (JNI) " << (*it)->PrettyMethod() << ": " << code_; in RemoveMethod() 768 << ArtMethod::PrettyMethod(method) << "@" << method in Commit() 802 << ArtMethod::PrettyMethod(method) << "@" << method in RemoveMethod() 838 VLOG(jit) << "JIT removed " << it->second->PrettyMethod() << ": " << it->first; in RemoveMethodLocked() 980 << ArtMethod::PrettyMethod(method); in Reserve() 987 << ArtMethod::PrettyMethod(method); in Reserve() 1421 << ArtMethod::PrettyMethod(method) << " " in LookupMethodHeader() 1422 << ArtMethod::PrettyMethod(found_method) << " " in LookupMethodHeader() 1587 << method->PrettyMethod() in NotifyCompilationOf() [all …]
|
H A D | jit.cc | 305 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() in CompileMethod() 313 method->IsProxyMethod()) << method->PrettyMethod(); in CompileMethod() 314 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() << " due to method being made " in CompileMethod() 323 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() << " due to deoptimization"; in CompileMethod() 330 << method->PrettyMethod() in CompileMethod() 343 << ArtMethod::PrettyMethod(method_to_compile) in CompileMethod() 349 << ArtMethod::PrettyMethod(method_to_compile) in CompileMethod() 356 << ArtMethod::PrettyMethod(method) in CompileMethod() 488 std::string method_name(VLOG_IS_ON(jit) ? method->PrettyMethod() : ""); in PrepareForOsr() 622 VLOG(jit) << "Done running OSR code for " << method->PrettyMethod(); in MaybeDoOnStackReplacement() [all …]
|
/aosp12/art/runtime/entrypoints/ |
H A D | entrypoint_utils-inl.h | 89 << method->GetDexFile()->PrettyMethod(method_index) << " . " in GetResolvedMethod() 103 << method->PrettyMethod() in GetResolvedMethod() 106 << " to " << inlined_method->PrettyMethod() in GetResolvedMethod() 538 CHECK_EQ(imt_method, method) << ArtMethod::PrettyMethod(resolved_method) << " / " in FindMethodToCall() 539 << imt_method->PrettyMethod() << " / " in FindMethodToCall() 540 << ArtMethod::PrettyMethod(method) << " / " in FindMethodToCall()
|
/aosp12/art/compiler/jit/ |
H A D | jit_compiler.cc | 170 << method->PrettyMethod() in CompileMethod() 195 VLOG(jit) << "Compilation of " << method->PrettyMethod() << " took " in CompileMethod()
|