Home | History | Annotate | Download | only in common

Lines Matching refs:Jit

24 #include "jit/jit.h"
25 #include "jit/jit_code_cache.h"
26 #include "jit/profiling_info.h"
38 static jit::Jit* GetJitIfEnabled() {
101 // Could be JIT, which also uses optimizing, but conservatively say no.
158 jit::Jit* jit = GetJitIfEnabled();
159 if (jit == nullptr) {
168 return jit->GetCodeCache()->ContainsPc(method->GetEntryPointFromQuickCompiledCode());
175 jit::Jit* jit = GetJitIfEnabled();
176 if (jit == nullptr) {
196 jit::JitCodeCache* code_cache = jit->GetCodeCache();
197 // Update the code cache to make sure the JIT code does not get deleted.
198 // Note: this will apply to all JIT compilations.
211 jit->CompileMethod(method, self, /* osr */ false);
233 jit::Jit* jit = Runtime::Current()->GetJit();
234 if (jit == nullptr) {
235 // The hotness counter is valid only under JIT.
236 // If we don't JIT return 0 to match test expectations.
258 jit::Jit* jit = GetJitIfEnabled();
259 if (jit == nullptr) {
262 jit::JitCodeCache* code_cache = jit->GetCodeCache();