/art/compiler/ |
D | compiler.cc | 50 << " in " << dex_file.PrettyMethod(method_idx); in IsPathologicalCase() 55 << code_item.registers_size_ << " in " << dex_file.PrettyMethod(method_idx); in IsPathologicalCase()
|
/art/compiler/optimizing/ |
D | inliner.cc | 168 std::string callee_name = outer_compilation_unit_.GetDexFile()->PrettyMethod( in Run() 404 LOG_TRY() << caller_dex_file.PrettyMethod(method_index); in TryInline() 428 LOG_NOTE() << "Try CHA-based inlining of " << actual_method->PrettyMethod(); in TryInline() 521 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex()) in TryInlineFromInlineCache() 529 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex()) in TryInlineFromInlineCache() 551 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex()) in TryInlineFromInlineCache() 560 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex()) in TryInlineFromInlineCache() 692 << caller_compilation_unit_.GetDexFile()->PrettyMethod( in ExtractClassesFromOfflineProfile() 758 << "Call to " << ArtMethod::PrettyMethod(resolved_method) in TryInlineMonomorphicCall() 770 LOG_NOTE() << "Try inline monomorphic call to " << resolved_method->PrettyMethod(); in TryInlineMonomorphicCall() [all …]
|
D | builder.cc | 54 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in SkipCompilation() 64 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in SkipCompilation()
|
/art/runtime/ |
D | art_method.cc | 106 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod(); in GetObsoleteDexCache() 129 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod(); in FindObsoleteDexClassDefIndex() 351 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(), in Invoke() 363 << "Don't call compiled code when -Xint " << PrettyMethod(); in Invoke() 378 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(), in Invoke() 382 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null"; in Invoke() 394 CHECK(IsNative()) << PrettyMethod(); in RegisterNative() 395 CHECK(!IsFastNative()) << PrettyMethod(); in RegisterNative() 396 CHECK(native_method != nullptr) << PrettyMethod(); in RegisterNative() 409 CHECK(IsNative() && !IsFastNative()) << PrettyMethod(); in UnregisterNative() [all …]
|
D | monitor_android.cc | 84 ctx << ArtMethod::PrettyMethod(m); in LogContentionEvent() 100 ctx << ArtMethod::PrettyMethod(owner_method); in LogContentionEvent()
|
D | oat_quick_method_header.cc | 60 << ") in " << method->PrettyMethod(); in ToDexPc() 89 << " in " << method->PrettyMethod(); in ToNativeQuickPc()
|
D | common_throws.cc | 96 ArtMethod::PrettyMethod(method).c_str()).c_str()); in ThrowAbstractMethodError() 102 dex_file.PrettyMethod(method_idx, in ThrowAbstractMethodError() 199 << " method " << ArtMethod::PrettyMethod(called).c_str(); in ThrowIllegalAccessErrorClassForMethodDispatch() 205 msg << "Method '" << ArtMethod::PrettyMethod(accessed) << "' is inaccessible to class '" in ThrowIllegalAccessErrorMethod() 220 << "' cannot be written to by method '" << ArtMethod::PrettyMethod(referrer) << "'"; in ThrowIllegalAccessErrorFinalField() 251 msg << "The method '" << ArtMethod::PrettyMethod(method) << "' was expected to be of type " in ThrowIncompatibleClassChangeError() 269 << ArtMethod::PrettyMethod(method) << "'"; in ThrowIncompatibleClassChangeErrorClassForInterfaceSuper() 285 << "' in call to '" << ArtMethod::PrettyMethod(interface_method) << "'"; in ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch() 313 ArtMethod::PrettyMethod(method).c_str()).c_str()); in ThrowIncompatibleClassChangeErrorForMethodConflict() 412 << dex_file.PrettyMethod(method_idx, true) << "' on a null object reference"; in ThrowNullPointerExceptionForMethodAccessImpl() [all …]
|
D | stack.cc | 159 << ArtMethod::PrettyMethod(m); in GetThisObject() 166 CHECK(success) << "Failed to read the this object in " << ArtMethod::PrettyMethod(m); in GetThisObject() 226 DCHECK(code_item != nullptr) << m->PrettyMethod(); // Can't be null or how would we compile in GetVRegFromOptimizedCode() 575 result += m->PrettyMethod(); in DescribeLocation() 628 << method->PrettyMethod() in AssertPcIsWithinQuickCode() 673 CHECK(in_image) << canonical->PrettyMethod() << " not in linear alloc or image"; in SanityCheckFrame() 689 CHECK_LE(frame_size, kMaxExpectedFrameSize) << method->PrettyMethod(); in SanityCheckFrame() 742 DCHECK(class_linker->IsQuickGenericJniStub(entry_point)) << method->PrettyMethod(); in GetCurrentQuickFrameInfo() 835 CHECK_EQ(GetMethod(), callee) << "Expected: " << ArtMethod::PrettyMethod(callee) in WalkStack() 836 << " Found: " << ArtMethod::PrettyMethod(GetMethod()); in WalkStack() [all …]
|
D | check_reference_map_visitor.h | 45 LOG(INFO) << "At " << m->PrettyMethod(false); in VisitFrame() 48 LOG(WARNING) << "no PC for " << m->PrettyMethod(); in VisitFrame()
|
D | method_reference.h | 30 std::string PrettyMethod(bool with_signature = true) { 31 return dex_file->PrettyMethod(dex_method_index, with_signature);
|
D | instrumentation.cc | 265 CHECK_EQ(m, frame.method_) << "Expected " << ArtMethod::PrettyMethod(m) in InstrumentationInstallStack() 266 << ", Found " << ArtMethod::PrettyMethod(frame.method_); in InstrumentationInstallStack() 368 << " Method=" << ArtMethod::PrettyMethod(m); in InstrumentationRestoreStack() 389 CHECK(m == instrumentation_frame.method_) << ArtMethod::PrettyMethod(m); in InstrumentationRestoreStack() 810 CHECK(has_not_been_deoptimized) << "Method " << ArtMethod::PrettyMethod(method) in Deoptimize() 834 CHECK(found_and_erased) << "Method " << ArtMethod::PrettyMethod(method) in Undeoptimize() 1129 LOG(INFO) << "Entering " << ArtMethod::PrettyMethod(method) << " from PC " in PushInstrumentationStackFrame() 1212 << visitor.caller->PrettyMethod() in PopInstrumentationStackFrame() 1214 << method->PrettyMethod() in PopInstrumentationStackFrame() 1228 LOG(WARNING) << "Got a deoptimization request on un-deoptimizable " << method->PrettyMethod() in PopInstrumentationStackFrame() [all …]
|
D | dex_method_iterator_test.cc | 43 LOG(INFO) << invoke_type << " " << dex_file.PrettyMethod(method_idx); in TEST_F()
|
D | quick_exception_handler.cc | 164 LOG(INFO) << "Handler: " << handler_method_->PrettyMethod() << " (line: " in FindCatch() 265 << "method=" << ArtMethod::PrettyMethod(stack_visitor->GetMethod()) in SetCatchEnvironmentForOptimizedHandler() 326 CHECK(callee_method_ != nullptr) << GetMethod()->PrettyMethod(false); in FinishStackWalk() 353 << method->PrettyMethod(); in VisitFrame() 548 << deopt_method->PrettyMethod() in DeoptimizeSingleFrame() 678 LOG(INFO) << "R " << method->PrettyMethod(true); in VisitFrame() 686 << method->PrettyMethod(true); in VisitFrame()
|
/art/compiler/utils/ |
D | test_dex_file_builder_test.cc | 76 dex_file->PrettyMethod(0u).c_str()); in TEST() 78 dex_file->PrettyMethod(1u).c_str()); in TEST()
|
/art/compiler/dex/ |
D | dex_to_dex_compiler.cc | 224 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true); in CompileReturnVoid() 244 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true); in CompileCheckCast() 276 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true); in CompileInstanceFieldAccess() 312 << "(" << GetDexFile().PrettyMethod(method_idx, true) << ")" in CompileInvokeVirtual() 317 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true); in CompileInvokeVirtual()
|
/art/runtime/verifier/ |
D | register_line.cc | 39 << verifier->GetMethodReference().PrettyMethod(); in CheckConstructorReturn() 344 << verifier->GetMethodReference().PrettyMethod(); in PushMonitor() 359 << verifier->GetMethodReference().PrettyMethod(); in PushMonitor() 373 << verifier->GetMethodReference().PrettyMethod(); in PopMonitor() 393 << verifier->GetMethodReference().PrettyMethod(); in PopMonitor() 447 << verifier->GetMethodReference().PrettyMethod(); in MergeRegisters() 481 << verifier->GetMethodReference().PrettyMethod(); in MergeRegisters() 523 << verifier->GetMethodReference().PrettyMethod(); in MergeRegisters()
|
/art/runtime/interpreter/ |
D | shadow_frame.cc | 31 CHECK(code_item != nullptr) << ArtMethod::PrettyMethod(m); in GetThisObject()
|
/art/runtime/jit/ |
D | jit.cc | 278 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() << " due to breakpoint"; in CompileMethod() 285 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() << " due to deoptimization"; in CompileMethod() 297 << ArtMethod::PrettyMethod(method_to_compile) in CompileMethod() 303 << ArtMethod::PrettyMethod(method_to_compile) in CompileMethod() 310 << ArtMethod::PrettyMethod(method) in CompileMethod() 469 std::string method_name(VLOG_IS_ON(jit) ? method->PrettyMethod() : ""); in MaybeDoOnStackReplacement() 584 << ArtMethod::PrettyMethod(method); in AddMemoryUsage() 619 VLOG(jit) << "Start profiling " << ArtMethod::PrettyMethod(method_); in Run() 665 VLOG(jit) << "Start profiling " << method->PrettyMethod(); in AddSamples()
|
/art/compiler/driver/ |
D | dex_compilation_unit.cc | 47 symbol_ += MangleForJni(dex_file_->PrettyMethod(dex_method_idx_)); in GetSymbol()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 716 DCHECK(!method->IsNative()) << method->PrettyMethod(); in artQuickToInterpreterBridge() 720 DCHECK(code_item != nullptr) << method->PrettyMethod(); in artQuickToInterpreterBridge() 735 CHECK_EQ(method, linked->GetMethod()) << method->PrettyMethod() << " " in artQuickToInterpreterBridge() 736 << ArtMethod::PrettyMethod(linked->GetMethod()); in artQuickToInterpreterBridge() 800 << shadow_frame->GetMethod()->PrettyMethod(); in artQuickToInterpreterBridge() 821 << caller->PrettyMethod(); in artQuickToInterpreterBridge() 906 DCHECK(proxy_method->IsProxyMethod()) << proxy_method->PrettyMethod(); in artQuickProxyInvokeHandler() 907 DCHECK(receiver->GetClass()->IsProxyClass()) << proxy_method->PrettyMethod(); in artQuickProxyInvokeHandler() 912 DCHECK_EQ((*sp), proxy_method) << proxy_method->PrettyMethod(); in artQuickProxyInvokeHandler() 923 CHECK(!non_proxy_method->IsStatic()) << proxy_method->PrettyMethod() << " " in artQuickProxyInvokeHandler() [all …]
|
D | quick_jni_entrypoints.cc | 58 CHECK(native_method->IsAnnotatedWithFastNative()) << native_method->PrettyMethod(); in JniMethodFastStart() 102 CHECK(native_method->IsFastNative()) << native_method->PrettyMethod(); in GoToRunnableFast() 104 CHECK(native_method->IsAnnotatedWithFastNative()) << native_method->PrettyMethod(); in GoToRunnableFast()
|
/art/runtime/native/ |
D | java_lang_reflect_Parameter.cc | 56 method->PrettyMethod().c_str(), in Parameter_getAnnotationNative()
|
/art/runtime/mirror/ |
D | method.cc | 56 DCHECK(!method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod() 108 DCHECK(method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
|
/art/test/595-profile-saving/ |
D | profile-saving.cc | 43 LOG(ERROR) << "Failed to create profiling info for method " << art_method->PrettyMethod(); in Java_Main_ensureProfilingInfo()
|
/art/compiler/jni/quick/ |
D | jni_compiler.cc | 140 << dex_file.PrettyMethod(method_idx, /* with signature */ true) in ArtJniCompileMethodInternal() 145 << dex_file.PrettyMethod(method_idx, /* with signature */ true); in ArtJniCompileMethodInternal() 150 << dex_file.PrettyMethod(method_idx, /* with signature */ true); in ArtJniCompileMethodInternal() 157 << dex_file.PrettyMethod(method_idx, /* with_signature */ true); in ArtJniCompileMethodInternal() 168 << dex_file.PrettyMethod(method_idx, /* with_signature */ true); in ArtJniCompileMethodInternal() 172 << dex_file.PrettyMethod(method_idx, /* with_signature */ true); in ArtJniCompileMethodInternal() 176 << dex_file.PrettyMethod(method_idx, /* with_signature */ true); in ArtJniCompileMethodInternal()
|