Lines Matching refs:compiled_method
574 CompiledMethod* compiled_method = nullptr; in CompileMethod() local
587 compiled_method = optimizer::ArtCompileDEX( in CompileMethod()
606 compiled_method = driver->GetCompiler()->JniCompile(access_flags, method_idx, dex_file); in CompileMethod()
607 CHECK(compiled_method != nullptr); in CompileMethod()
630 compiled_method = driver->GetCompiler()->Compile(code_item, access_flags, invoke_type, in CompileMethod()
634 if (compiled_method == nullptr && in CompileMethod()
649 if (compiled_method != nullptr) { in CompileMethod()
652 for (const LinkerPatch& patch : compiled_method->GetPatches()) { in CompileMethod()
661 driver->AddCompiledMethod(method_ref, compiled_method, non_relative_linker_patch_count); in CompileMethod()
2718 CompiledMethod* const compiled_method, in AddCompiledMethod() argument
2724 compiled_methods_.Put(method_ref, compiled_method); in AddCompiledMethod()
2732 CompiledMethod* compiled_method = nullptr; in RemoveCompiledMethod() local
2737 compiled_method = it->second; in RemoveCompiledMethod()
2741 if (compiled_method != nullptr) { in RemoveCompiledMethod()
2742 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method); in RemoveCompiledMethod()