Home
last modified time | relevance | path

Searched refs:jit_compiler_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/jit/
Djit.cc87 JitCompilerInterface* Jit::jit_compiler_ = nullptr; member in art::jit::Jit
233 jit_compiler_ = (jit_load_)(); in Create()
234 if (jit_compiler_ == nullptr) { in Create()
245 code_cache->SetGarbageCollectCode(!jit_compiler_->GenerateDebugInfo() && in Create()
345 bool success = jit_compiler_->CompileMethod(self, region, method_to_compile, compilation_kind); in CompileMethod()
426 if (jit_compiler_ != nullptr) { in ~Jit()
427 delete jit_compiler_; in ~Jit()
428 jit_compiler_ = nullptr; in ~Jit()
442 if (jit->jit_compiler_->GenerateDebugInfo()) { in NewTypeLoadedIfUsingJit()
443 jit_compiler_->TypesLoaded(&type, 1); in NewTypeLoadedIfUsingJit()
[all …]
Djit.h263 return jit_compiler_; in GetJitCompiler()
490 static JitCompilerInterface* jit_compiler_; variable