Searched refs:PrettyMethod (Results 1 - 25 of 81) sorted by relevance

1234

/art/compiler/
H A Dcompiler.cc50 << " in " << dex_file.PrettyMethod(method_idx);
55 << code_item.registers_size_ << " in " << dex_file.PrettyMethod(method_idx);
/art/runtime/
H A Dmethod_reference.h30 std::string PrettyMethod(bool with_signature = true) { function in struct:art::MethodReference
31 return dex_file->PrettyMethod(dex_method_index, with_signature);
H A Ddex_method_iterator_test.cc43 LOG(INFO) << invoke_type << " " << dex_file.PrettyMethod(method_idx);
H A Doat_quick_method_header.cc60 << ") in " << method->PrettyMethod();
89 << " in " << method->PrettyMethod();
H A Dart_method.cc89 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
112 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
337 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
349 << "Don't call compiled code when -Xint " << PrettyMethod();
364 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
368 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
380 CHECK(IsNative()) << PrettyMethod();
381 CHECK(!IsFastNative()) << PrettyMethod();
382 CHECK(native_method != nullptr) << PrettyMethod();
395 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
767 std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) { function in class:art::ArtMethod
774 std::string ArtMethod::PrettyMethod(bool with_signature) { function in class:art::ArtMethod
[all...]
H A Dcheck_reference_map_visitor.h44 LOG(INFO) << "At " << m->PrettyMethod(false);
47 LOG(WARNING) << "no PC for " << m->PrettyMethod();
H A Dinstrumentation.cc238 CHECK_EQ(m, frame.method_) << "Expected " << ArtMethod::PrettyMethod(m)
239 << ", Found " << ArtMethod::PrettyMethod(frame.method_);
341 << " Method=" << ArtMethod::PrettyMethod(m);
362 CHECK(m == instrumentation_frame.method_) << ArtMethod::PrettyMethod(m);
783 CHECK(has_not_been_deoptimized) << "Method " << ArtMethod::PrettyMethod(method)
807 CHECK(found_and_erased) << "Method " << ArtMethod::PrettyMethod(method)
1056 LOG(INFO) << "Entering " << ArtMethod::PrettyMethod(method) << " from PC "
1112 << visitor.caller->PrettyMethod()
1114 << method->PrettyMethod()
1128 LOG(WARNING) << "Got a deoptimization request on un-deoptimizable " << method->PrettyMethod()
[all...]
H A Dcommon_throws.cc96 ArtMethod::PrettyMethod(method).c_str()).c_str());
102 dex_file.PrettyMethod(method_idx,
199 << " method " << ArtMethod::PrettyMethod(called).c_str();
205 msg << "Method '" << ArtMethod::PrettyMethod(accessed) << "' is inaccessible to class '"
220 << "' cannot be written to by method '" << ArtMethod::PrettyMethod(referrer) << "'";
251 msg << "The method '" << ArtMethod::PrettyMethod(method) << "' was expected to be of type "
269 << ArtMethod::PrettyMethod(method) << "'";
285 << "' in call to '" << ArtMethod::PrettyMethod(interface_method) << "'";
313 ArtMethod::PrettyMethod(method).c_str()).c_str());
412 << dex_file.PrettyMethod(method_id
[all...]
H A Dquick_exception_handler.cc164 LOG(INFO) << "Handler: " << handler_method_->PrettyMethod() << " (line: "
265 << "method=" << ArtMethod::PrettyMethod(stack_visitor->GetMethod())
326 CHECK(callee_method_ != nullptr) << GetMethod()->PrettyMethod(false);
353 << method->PrettyMethod();
548 << deopt_method->PrettyMethod()
678 LOG(INFO) << "R " << method->PrettyMethod(true);
686 << method->PrettyMethod(true);
H A Dstack.cc56 CHECK(code_item != nullptr) << ArtMethod::PrettyMethod(m);
206 << ArtMethod::PrettyMethod(m);
213 CHECK(success) << "Failed to read the this object in " << ArtMethod::PrettyMethod(m);
273 DCHECK(code_item != nullptr) << m->PrettyMethod(); // Can't be null or how would we compile
622 result += m->PrettyMethod();
675 << method->PrettyMethod()
717 CHECK(in_image) << method->PrettyMethod() << " not in linear alloc or image";
733 CHECK_LE(frame_size, kMaxExpectedFrameSize) << method->PrettyMethod();
786 DCHECK(class_linker->IsQuickGenericJniStub(entry_point)) << method->PrettyMethod();
879 CHECK_EQ(GetMethod(), callee) << "Expected: " << ArtMethod::PrettyMethod(calle
[all...]
H A Dnative_bridge_art_interface.cc74 << m.PrettyMethod();
/art/compiler/optimizing/
H A Dbuilder.cc54 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
64 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
H A Dinliner.cc157 std::string callee_name = outer_compilation_unit_.GetDexFile()->PrettyMethod(
393 LOG_TRY() << caller_dex_file.PrettyMethod(method_index);
417 LOG_NOTE() << "Try CHA-based inlining of " << actual_method->PrettyMethod();
510 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex())
518 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex())
540 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex())
549 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex())
681 << caller_compilation_unit_.GetDexFile()->PrettyMethod(
747 << "Call to " << ArtMethod::PrettyMethod(resolved_method)
759 LOG_NOTE() << "Try inline monomorphic call to " << resolved_method->PrettyMethod();
[all...]
/art/compiler/utils/
H A Dtest_dex_file_builder_test.cc76 dex_file->PrettyMethod(0u).c_str());
78 dex_file->PrettyMethod(1u).c_str());
/art/compiler/driver/
H A Ddex_compilation_unit.cc47 symbol_ += MangleForJni(dex_file_->PrettyMethod(dex_method_idx_));
/art/runtime/entrypoints/quick/
H A Dquick_instrumentation_entrypoints.cc47 CHECK(result != nullptr) << method->PrettyMethod();
H A Dquick_jni_entrypoints.cc58 CHECK(native_method->IsAnnotatedWithFastNative()) << native_method->PrettyMethod();
102 CHECK(native_method->IsFastNative()) << native_method->PrettyMethod();
104 CHECK(native_method->IsAnnotatedWithFastNative()) << native_method->PrettyMethod();
H A Dquick_throw_entrypoints.cc37 method->PrettyMethod().c_str());
/art/runtime/native/
H A Djava_lang_reflect_Parameter.cc54 method->PrettyMethod().c_str(),
/art/compiler/dex/
H A Ddex_to_dex_compiler.cc214 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true);
234 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true);
266 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true);
301 << "(" << GetDexFile().PrettyMethod(method_idx, true) << ")"
306 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true);
/art/runtime/jit/
H A Djit.cc255 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() << " due to breakpoint";
262 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() << " due to deoptimization";
274 << ArtMethod::PrettyMethod(method_to_compile)
280 << ArtMethod::PrettyMethod(method_to_compile)
287 << ArtMethod::PrettyMethod(method)
443 std::string method_name(VLOG_IS_ON(jit) ? method->PrettyMethod() : "");
558 << ArtMethod::PrettyMethod(method);
593 VLOG(jit) << "Start profiling " << ArtMethod::PrettyMethod(method_);
639 VLOG(jit) << "Start profiling " << method->PrettyMethod();
H A Dprofiling_info.cc86 LOG(FATAL) << "No inline cache found for " << ArtMethod::PrettyMethod(method_) << "@" << dex_pc;
/art/runtime/mirror/
H A Dmethod.cc56 DCHECK(!method->IsConstructor()) << method->PrettyMethod();
108 DCHECK(method->IsConstructor()) << method->PrettyMethod();
/art/runtime/verifier/
H A Dregister_line.cc39 << verifier->GetMethodReference().PrettyMethod();
344 << verifier->GetMethodReference().PrettyMethod();
359 << verifier->GetMethodReference().PrettyMethod();
373 << verifier->GetMethodReference().PrettyMethod();
393 << verifier->GetMethodReference().PrettyMethod();
447 << verifier->GetMethodReference().PrettyMethod();
481 << verifier->GetMethodReference().PrettyMethod();
523 << verifier->GetMethodReference().PrettyMethod();
/art/compiler/debug/
H A Delf_symtab_writer.h72 std::string name = info.dex_file->PrettyMethod(info.dex_method_index, with_signature);

Completed in 941 milliseconds

1234