Searched refs:osr (Results 1 – 11 of 11) sorted by relevance
/art/runtime/jit/ |
D | profiling_info.h | 80 bool IsMethodBeingCompiled(bool osr) const { in IsMethodBeingCompiled() argument 81 return osr in IsMethodBeingCompiled() 86 void SetIsMethodBeingCompiled(bool value, bool osr) { in SetIsMethodBeingCompiled() argument 87 if (osr) { in SetIsMethodBeingCompiled()
|
D | jit_code_cache.h | 103 bool NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr) 119 void DoneCompiling(ArtMethod* method, Thread* self, bool osr) 140 bool osr, 301 bool osr,
|
D | jit.cc | 249 bool Jit::CompileMethod(ArtMethod* method, Thread* self, bool baseline, bool osr) { in CompileMethod() argument 272 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr)) { in CompileMethod() 278 << " osr=" << std::boolalpha << osr; in CompileMethod() 279 bool success = jit_compile_method_(jit_compiler_handle_, method_to_compile, self, baseline, osr); in CompileMethod() 280 code_cache_->DoneCompiling(method_to_compile, self, osr); in CompileMethod() 284 << " osr=" << std::boolalpha << osr; in CompileMethod()
|
D | jit.h | 173 bool CompileMethod(ArtMethod* method, Thread* self, bool baseline, bool osr)
|
/art/compiler/jit/ |
D | jit_compiler.cc | 132 void* handle, ArtMethod* method, Thread* self, bool baseline, bool osr) in jit_compile_method() argument 136 return jit_compiler->CompileMethod(self, method, baseline, osr); in jit_compile_method() 184 bool JitCompiler::CompileMethod(Thread* self, ArtMethod* method, bool baseline, bool osr) { in CompileMethod() argument 201 success = compiler_->JitCompile(self, code_cache, method, baseline, osr, jit_logger_.get()); in CompileMethod()
|
D | jit_compiler.h | 40 bool CompileMethod(Thread* self, ArtMethod* method, bool baseline, bool osr)
|
/art/compiler/ |
D | compiler.h | 78 bool osr ATTRIBUTE_UNUSED, in JitCompile()
|
/art/compiler/optimizing/ |
D | optimizing_compiler.cc | 300 bool osr, 385 bool osr, 784 bool osr, in TryCompile() argument 852 /* osr= */ osr); in TryCompile() 1253 bool osr, in JitCompile() argument 1304 osr, in JitCompile() 1370 osr, in JitCompile() 1409 osr, in JitCompile()
|
D | code_generator.cc | 1109 bool osr = in RecordPcInfo() local 1116 : (osr ? StackMap::Kind::OSR : StackMap::Kind::Default); in RecordPcInfo() 1125 if (osr) { in RecordPcInfo()
|
/art/test/ |
D | Android.bp | 483 "570-checker-osr/osr.cc",
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 623 // r11 isn't properly spilled in the osr method, so we need use DWARF expression.
|