Home
last modified time | relevance | path

Searched refs:osr (Results 1 – 12 of 12) sorted by relevance

/art/runtime/jit/
Dprofiling_info.h122 bool IsMethodBeingCompiled(bool osr) const { in IsMethodBeingCompiled() argument
123 return osr in IsMethodBeingCompiled()
128 void SetIsMethodBeingCompiled(bool value, bool osr) { in SetIsMethodBeingCompiled() argument
129 if (osr) { in SetIsMethodBeingCompiled()
Djit_code_cache.cc204 bool osr) { in CommitCode() argument
213 osr); in CommitCode()
225 osr); in CommitCode()
315 bool osr) { in CommitCodeInternal() argument
354 if (osr) { in CommitCodeInternal()
368 << "JIT added (osr=" << std::boolalpha << osr << std::noboolalpha << ") " in CommitCodeInternal()
912 bool JitCodeCache::NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr) { in NotifyCompilationOf() argument
913 if (!osr && ContainsPc(method->GetEntryPointFromQuickCompiledCode())) { in NotifyCompilationOf()
918 if (osr && (osr_code_map_.find(method) != osr_code_map_.end())) { in NotifyCompilationOf()
932 if (info->IsMethodBeingCompiled(osr)) { in NotifyCompilationOf()
[all …]
Djit_code_cache.h72 bool NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr)
84 void DoneCompiling(ArtMethod* method, Thread* self, bool osr)
101 bool osr)
211 bool osr)
Djit.cc243 bool Jit::CompileMethod(ArtMethod* method, Thread* self, bool osr) { in CompileMethod() argument
263 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr)) { in CompileMethod()
269 << " osr=" << std::boolalpha << osr; in CompileMethod()
270 bool success = jit_compile_method_(jit_compiler_handle_, method_to_compile, self, osr); in CompileMethod()
271 code_cache_->DoneCompiling(method_to_compile, self, osr); in CompileMethod()
275 << " osr=" << std::boolalpha << osr; in CompileMethod()
Djit.h51 bool CompileMethod(ArtMethod* method, Thread* self, bool osr)
/art/compiler/jit/
Djit_compiler.cc59 void* handle, ArtMethod* method, Thread* self, bool osr) in jit_compile_method() argument
63 return jit_compiler->CompileMethod(self, method, osr); in jit_compile_method()
202 bool JitCompiler::CompileMethod(Thread* self, ArtMethod* method, bool osr) { in CompileMethod() argument
221 success = compiler_driver_->GetCompiler()->JitCompile(self, code_cache, method, osr); in CompileMethod()
Djit_compiler.h39 bool CompileMethod(Thread* self, ArtMethod* method, bool osr)
/art/test/
DAndroid.libarttest.mk45 570-checker-osr/osr.cc \
DAndroid.run-test.mk433 570-checker-osr \
/art/compiler/optimizing/
Doptimizing_compiler.cc295 bool JitCompile(Thread* self, jit::JitCodeCache* code_cache, ArtMethod* method, bool osr)
325 bool osr) const;
619 bool osr) const { in TryCompile()
681 osr); in TryCompile()
871 bool osr) { in JitCompile() argument
904 osr)); in JitCompile()
933 osr); in JitCompile()
Dnodes.h285 bool osr = false,
315 osr_(osr) { in arena_()
/art/compiler/
Dcompiler.h65 bool osr ATTRIBUTE_UNUSED) in JitCompile()