Lines Matching refs:method_to_compile
138 bool Jit::TryPatternMatch(ArtMethod* method_to_compile, CompilationKind compilation_kind) { in TryPatternMatch() argument
144 !method_to_compile->StillNeedsClinitCheck()) { in TryPatternMatch()
145 const void* pattern = SmallPatternMatcher::TryMatch(method_to_compile); in TryPatternMatch()
147 VLOG(jit) << "Successfully pattern matched " << method_to_compile->PrettyMethod(); in TryPatternMatch()
148 Runtime::Current()->GetInstrumentation()->UpdateMethodsCode(method_to_compile, pattern); in TryPatternMatch()
217 ArtMethod* method_to_compile = method->GetInterfaceMethodIfProxy(kRuntimePointerSize); in CompileMethodInternal() local
219 if (TryPatternMatch(method_to_compile, compilation_kind)) { in CompileMethodInternal()
223 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, compilation_kind, prejit)) { in CompileMethodInternal()
228 << ArtMethod::PrettyMethod(method_to_compile) in CompileMethodInternal()
230 bool success = jit_compiler_->CompileMethod(self, region, method_to_compile, compilation_kind); in CompileMethodInternal()
231 code_cache_->DoneCompiling(method_to_compile, self); in CompileMethodInternal()
234 << ArtMethod::PrettyMethod(method_to_compile) in CompileMethodInternal()