Lines Matching refs:method_ref
383 MethodReference method_ref(&dex_file, method_idx); in CompileMethodHarness() local
405 driver->AddCompiledMethod(method_ref, compiled_method); in CompileMethodHarness()
419 MethodReference method_ref) { in ShouldCompileBasedOnProfile() argument
427 compiler_options.GetProfileCompilationInfo()->FindDexFile(*method_ref.dex_file) == in ShouldCompileBasedOnProfile()
436 bool result = profile_compilation_info->IsHotMethod(profile_index, method_ref.index); in ShouldCompileBasedOnProfile()
441 result = profile_compilation_info->IsStartupMethod(profile_index, method_ref.index); in ShouldCompileBasedOnProfile()
446 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true); in ShouldCompileBasedOnProfile()
479 MethodReference method_ref(&dex_file, method_idx); in CompileMethodQuick() local
481 if (results->IsUncompilableMethod(method_ref)) { in CompileMethodQuick()
520 compile = compile && ShouldCompileBasedOnProfile(compiler_options, profile_index, method_ref); in CompileMethodQuick()
534 DCHECK(ShouldCompileBasedOnProfile(compiler_options, profile_index, method_ref)); in CompileMethodQuick()
539 << method_ref.dex_file->PrettyMethod(method_ref.index) in CompileMethodQuick()
540 << "[" << method_ref.dex_file->GetLocation() << "]" in CompileMethodQuick()
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()