Lines Matching refs:method_ref

433   MethodReference method_ref(&dex_file, method_idx);  in CompileMethodHarness()  local
456 driver->AddCompiledMethod(method_ref, compiled_method); in CompileMethodHarness()
490 MethodReference method_ref(&dex_file, method_idx); in CompileMethodDex2Dex() local
494 if (compiler->ShouldCompileMethod(method_ref)) { in CompileMethodDex2Dex()
497 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref); in CompileMethodDex2Dex()
554 MethodReference method_ref(&dex_file, method_idx); in CompileMethodQuick() local
575 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref); in CompileMethodQuick()
578 results->IsCandidateForCompilation(method_ref, access_flags) && in CompileMethodQuick()
586 driver->ShouldCompileBasedOnProfile(method_ref); in CompileMethodQuick()
601 bool violation = driver->ShouldCompileBasedOnProfile(method_ref) && in CompileMethodQuick()
606 << method_ref.dex_file->PrettyMethod(method_ref.index) in CompileMethodQuick()
607 << "[" << method_ref.dex_file->GetLocation() << "]" in CompileMethodQuick()
627 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref); in CompileMethodQuick()
945 bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const { in ShouldCompileBasedOnProfile()
960 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot(); in ShouldCompileBasedOnProfile()
964 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true); in ShouldCompileBasedOnProfile()
2844 void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref, in AddCompiledMethod() argument
2846 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod(); in AddCompiledMethod()
2847 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref, in AddCompiledMethod()
2851 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod(); in AddCompiledMethod()
2854 CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) { in RemoveCompiledMethod() argument
2856 CHECK(compiled_methods_.Remove(method_ref, &ret)); in RemoveCompiledMethod()