Lines Matching refs:method_ref

436   MethodReference method_ref(&dex_file, method_idx);  in CompileMethodHarness()  local
459 driver->AddCompiledMethod(method_ref, compiled_method); in CompileMethodHarness()
493 MethodReference method_ref(&dex_file, method_idx); in CompileMethodDex2Dex() local
497 if (compiler->ShouldCompileMethod(method_ref)) { in CompileMethodDex2Dex()
500 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref); in CompileMethodDex2Dex()
557 MethodReference method_ref(&dex_file, method_idx); in CompileMethodQuick() local
578 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref); in CompileMethodQuick()
581 results->IsCandidateForCompilation(method_ref, access_flags) && in CompileMethodQuick()
589 driver->ShouldCompileBasedOnProfile(method_ref); in CompileMethodQuick()
604 bool violation = driver->ShouldCompileBasedOnProfile(method_ref) && in CompileMethodQuick()
609 << method_ref.dex_file->PrettyMethod(method_ref.index) in CompileMethodQuick()
610 << "[" << method_ref.dex_file->GetLocation() << "]" in CompileMethodQuick()
630 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref); in CompileMethodQuick()
948 bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const { in ShouldCompileBasedOnProfile()
963 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot(); in ShouldCompileBasedOnProfile()
967 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true); in ShouldCompileBasedOnProfile()
2783 void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref, in AddCompiledMethod() argument
2785 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod(); in AddCompiledMethod()
2786 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref, in AddCompiledMethod()
2790 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod(); in AddCompiledMethod()
2793 CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) { in RemoveCompiledMethod() argument
2795 CHECK(compiled_methods_.Remove(method_ref, &ret)); in RemoveCompiledMethod()