Lines Matching refs:jit
78 #include "jit/jit.h"
123 #include "jit/profile_saver.h"
276 ScopedTrace trace2("Delete jit");
277 VLOG(jit) << "Deleting jit thread pool";
279 // JIT compiler threads.
294 // Delete the JIT after thread list to ensure that there is no remaining threads which could be
297 VLOG(jit) << "Deleting jit";
561 // Create the JIT either if we have to use JIT compilation or save profiling info.
562 // TODO(calin): We use the JIT class as a proxy for JIT compilation and for
572 if (!jit::Jit::LoadCompilerLibrary(&error_msg)) {
574 LOG(WARNING) << "Failed to load JIT compiler with error " << error_msg;
733 // the jit may have already been created.
1028 jit_options_.reset(jit::JitOptions::CreateFromRuntimeArguments(runtime_options));
1030 // If we are already the compiler at this point, we must be dex2oat. Don't create the jit in
1033 // null and we don't create the jit.
1041 // Use MemMap arena pool for jit, malloc otherwise. Malloc arenas are faster to allocate but
1401 os << "Running non JIT\n";
1755 JIT profile information will not be recorded: profile filename is empty.";
1759 LOG(WARNING) << "JIT profile information will not be recorded: profile file does not exits.";
1763 LOG(WARNING) << "JIT profile information will not be recorded: code paths is empty.";
1931 jit_.reset(jit::Jit::Create(jit_options_.get(), &error_msg));
1933 LOG(WARNING) << "Failed to create JIT " << error_msg;
2008 // Returns true if JIT compilations are enabled. GetJit() will be not null in this case.