Searched refs:method_to_compile (Results 1 – 1 of 1) sorted by relevance
136 bool Jit::TryPatternMatch(ArtMethod* method_to_compile, CompilationKind compilation_kind) { in TryPatternMatch() argument142 !method_to_compile->StillNeedsClinitCheck()) { in TryPatternMatch()143 const void* pattern = SmallPatternMatcher::TryMatch(method_to_compile); in TryPatternMatch()145 VLOG(jit) << "Successfully pattern matched " << method_to_compile->PrettyMethod(); in TryPatternMatch()146 Runtime::Current()->GetInstrumentation()->UpdateMethodsCode(method_to_compile, pattern); in TryPatternMatch()215 ArtMethod* method_to_compile = method->GetInterfaceMethodIfProxy(kRuntimePointerSize); in CompileMethodInternal() local217 if (TryPatternMatch(method_to_compile, compilation_kind)) { in CompileMethodInternal()221 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, compilation_kind, prejit)) { in CompileMethodInternal()226 << ArtMethod::PrettyMethod(method_to_compile) in CompileMethodInternal()228 bool success = jit_compiler_->CompileMethod(self, region, method_to_compile, compilation_kind); in CompileMethodInternal()[all …]