HomeSort by relevance Sort by last modified time
    Searched refs:PrettyMethod (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /art/compiler/
compiler.cc 50 << " in " << dex_file.PrettyMethod(method_idx);
55 << code_item.registers_size_ << " in " << dex_file.PrettyMethod(method_idx);
  /art/runtime/
dex_method_iterator_test.cc 43 LOG(INFO) << invoke_type << " " << dex_file.PrettyMethod(method_idx);
monitor_android.cc 84 ctx << ArtMethod::PrettyMethod(m);
100 ctx << ArtMethod::PrettyMethod(owner_method);
oat_quick_method_header.cc 60 << ") in " << method->PrettyMethod();
89 << " in " << method->PrettyMethod();
art_method.cc 106 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
129 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
351 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
363 << "Don't call compiled code when -Xint " << PrettyMethod();
378 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
382 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
394 CHECK(IsNative()) << PrettyMethod();
395 CHECK(!IsFastNative()) << PrettyMethod();
396 CHECK(native_method != nullptr) << PrettyMethod();
409 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
    [all...]
check_reference_map_visitor.h 45 LOG(INFO) << "At " << m->PrettyMethod(false);
48 LOG(WARNING) << "no PC for " << m->PrettyMethod();
method_reference.h 30 std::string PrettyMethod(bool with_signature = true) {
31 return dex_file->PrettyMethod(dex_method_index, with_signature);
stack.cc 159 << ArtMethod::PrettyMethod(m);
166 CHECK(success) << "Failed to read the this object in " << ArtMethod::PrettyMethod(m);
226 DCHECK(code_item != nullptr) << m->PrettyMethod(); // Can't be null or how would we compile
575 result += m->PrettyMethod();
628 << method->PrettyMethod()
673 CHECK(in_image) << canonical->PrettyMethod() << " not in linear alloc or image";
689 CHECK_LE(frame_size, kMaxExpectedFrameSize) << method->PrettyMethod();
742 DCHECK(class_linker->IsQuickGenericJniStub(entry_point)) << method->PrettyMethod();
    [all...]
common_throws.cc 96 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_idx, true) << "' on a null object reference"
    [all...]
quick_exception_handler.cc 164 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);
instrumentation.cc 265 CHECK_EQ(m, frame.method_) << "Expected " << ArtMethod::PrettyMethod(m)
266 << ", Found " << ArtMethod::PrettyMethod(frame.method_);
368 << " Method=" << ArtMethod::PrettyMethod(m);
389 CHECK(m == instrumentation_frame.method_) << ArtMethod::PrettyMethod(m);
    [all...]
  /art/runtime/interpreter/
shadow_frame.cc 31 CHECK(code_item != nullptr) << ArtMethod::PrettyMethod(m);
  /art/compiler/optimizing/
builder.cc 54 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
64 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
inliner.cc 168 std::string callee_name = outer_compilation_unit_.GetDexFile()->PrettyMethod(
404 LOG_TRY() << caller_dex_file.PrettyMethod(method_index);
428 LOG_NOTE() << "Try CHA-based inlining of " << actual_method->PrettyMethod();
521 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex())
529 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex())
551 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex())
560 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex())
692 << caller_compilation_unit_.GetDexFile()->PrettyMethod(
758 << "Call to " << ArtMethod::PrettyMethod(resolved_method)
770 LOG_NOTE() << "Try inline monomorphic call to " << resolved_method->PrettyMethod();
    [all...]
  /art/compiler/utils/
test_dex_file_builder_test.cc 76 dex_file->PrettyMethod(0u).c_str());
78 dex_file->PrettyMethod(1u).c_str());
  /art/compiler/driver/
dex_compilation_unit.cc 47 symbol_ += MangleForJni(dex_file_->PrettyMethod(dex_method_idx_));
  /art/runtime/native/
java_lang_reflect_Parameter.cc 56 method->PrettyMethod().c_str(),
  /art/test/595-profile-saving/
profile-saving.cc 43 LOG(ERROR) << "Failed to create profiling info for method " << art_method->PrettyMethod();
  /art/compiler/dex/
dex_to_dex_compiler.cc 224 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true);
244 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true);
276 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true);
312 << "(" << GetDexFile().PrettyMethod(method_idx, true) << ")"
317 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true);
  /art/runtime/mirror/
method.cc 56 DCHECK(!method->IsConstructor()) << method->PrettyMethod();
108 DCHECK(method->IsConstructor()) << method->PrettyMethod();
  /art/runtime/verifier/
register_line.cc 39 << 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/
elf_symtab_writer.h 72 std::string name = info.dex_file->PrettyMethod(info.dex_method_index, with_signature);
  /art/runtime/entrypoints/quick/
quick_jni_entrypoints.cc 58 CHECK(native_method->IsAnnotatedWithFastNative()) << native_method->PrettyMethod();
102 CHECK(native_method->IsFastNative()) << native_method->PrettyMethod();
104 CHECK(native_method->IsAnnotatedWithFastNative()) << native_method->PrettyMethod();
quick_trampoline_entrypoints.cc 716 DCHECK(!method->IsNative()) << method->PrettyMethod();
720 DCHECK(code_item != nullptr) << method->PrettyMethod();
735 CHECK_EQ(method, linked->GetMethod()) << method->PrettyMethod() << " "
736 << ArtMethod::PrettyMethod(linked->GetMethod());
    [all...]
quick_throw_entrypoints.cc 37 method->PrettyMethod().c_str());

Completed in 1694 milliseconds

1 2 3 4