Searched refs:osr (Results 1 – 12 of 12) sorted by relevance
/art/runtime/jit/ |
D | profiling_info.h | 122 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()
|
D | jit_code_cache.cc | 204 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 …]
|
D | jit_code_cache.h | 72 bool NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr) 84 void DoneCompiling(ArtMethod* method, Thread* self, bool osr) 101 bool osr) 211 bool osr)
|
D | jit.cc | 243 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()
|
D | jit.h | 51 bool CompileMethod(ArtMethod* method, Thread* self, bool osr)
|
/art/compiler/jit/ |
D | jit_compiler.cc | 59 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()
|
D | jit_compiler.h | 39 bool CompileMethod(Thread* self, ArtMethod* method, bool osr)
|
/art/test/ |
D | Android.libarttest.mk | 45 570-checker-osr/osr.cc \
|
D | Android.run-test.mk | 433 570-checker-osr \
|
/art/compiler/optimizing/ |
D | optimizing_compiler.cc | 295 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()
|
D | nodes.h | 285 bool osr = false, 315 osr_(osr) { in arena_()
|
/art/compiler/ |
D | compiler.h | 65 bool osr ATTRIBUTE_UNUSED) in JitCompile()
|