Home
last modified time | relevance | path

Searched refs:PrettyMethod (Results 1 – 25 of 90) sorted by relevance

1234

/art/compiler/
Dcompiler.cc50 << " in " << dex_file.PrettyMethod(method_idx); in IsPathologicalCase()
55 << code_item.registers_size_ << " in " << dex_file.PrettyMethod(method_idx); in IsPathologicalCase()
/art/compiler/optimizing/
Dinliner.cc168 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 …]
Dbuilder.cc54 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in SkipCompilation()
64 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in SkipCompilation()
/art/runtime/
Dart_method.cc106 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 …]
Dmonitor_android.cc84 ctx << ArtMethod::PrettyMethod(m); in LogContentionEvent()
100 ctx << ArtMethod::PrettyMethod(owner_method); in LogContentionEvent()
Doat_quick_method_header.cc60 << ") in " << method->PrettyMethod(); in ToDexPc()
89 << " in " << method->PrettyMethod(); in ToNativeQuickPc()
Dcommon_throws.cc96 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 …]
Dstack.cc159 << 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 …]
Dcheck_reference_map_visitor.h45 LOG(INFO) << "At " << m->PrettyMethod(false); in VisitFrame()
48 LOG(WARNING) << "no PC for " << m->PrettyMethod(); in VisitFrame()
Dmethod_reference.h30 std::string PrettyMethod(bool with_signature = true) {
31 return dex_file->PrettyMethod(dex_method_index, with_signature);
Dinstrumentation.cc265 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 …]
Ddex_method_iterator_test.cc43 LOG(INFO) << invoke_type << " " << dex_file.PrettyMethod(method_idx); in TEST_F()
Dquick_exception_handler.cc164 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/
Dtest_dex_file_builder_test.cc76 dex_file->PrettyMethod(0u).c_str()); in TEST()
78 dex_file->PrettyMethod(1u).c_str()); in TEST()
/art/compiler/dex/
Ddex_to_dex_compiler.cc224 << 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/
Dregister_line.cc39 << 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/
Dshadow_frame.cc31 CHECK(code_item != nullptr) << ArtMethod::PrettyMethod(m); in GetThisObject()
/art/runtime/jit/
Djit.cc278 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/
Ddex_compilation_unit.cc47 symbol_ += MangleForJni(dex_file_->PrettyMethod(dex_method_idx_)); in GetSymbol()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc716 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 …]
Dquick_jni_entrypoints.cc58 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/
Djava_lang_reflect_Parameter.cc56 method->PrettyMethod().c_str(), in Parameter_getAnnotationNative()
/art/runtime/mirror/
Dmethod.cc56 DCHECK(!method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
108 DCHECK(method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
/art/test/595-profile-saving/
Dprofile-saving.cc43 LOG(ERROR) << "Failed to create profiling info for method " << art_method->PrettyMethod(); in Java_Main_ensureProfilingInfo()
/art/compiler/jni/quick/
Djni_compiler.cc140 << 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()

1234