Home
last modified time | relevance | path

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

/art/runtime/jit/
Dprofiling_info.h80 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()
Djit_code_cache.cc606 bool osr, in CommitCode() argument
617 osr, in CommitCode()
631 osr, in CommitCode()
981 bool osr, in CommitCodeInternal() argument
986 DCHECK(!method->IsNative() || !osr); in CommitCodeInternal()
1151 if (osr) { in CommitCodeInternal()
1171 << "JIT added (osr=" << std::boolalpha << osr << std::noboolalpha << ") " in CommitCodeInternal()
1201 bool osr = osr_code_map_.find(method) != osr_code_map_.end(); in RemoveMethod() local
1212 << "JIT removed (osr=" << std::boolalpha << osr << std::noboolalpha << ") " in RemoveMethod()
2043 bool JitCodeCache::NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr) { in NotifyCompilationOf() argument
[all …]
Djit_code_cache.h103 bool NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr)
119 void DoneCompiling(ArtMethod* method, Thread* self, bool osr)
140 bool osr,
301 bool osr,
Djit.cc249 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()
Djit.h173 bool CompileMethod(ArtMethod* method, Thread* self, bool baseline, bool osr)
/art/compiler/jit/
Djit_compiler.cc132 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()
Djit_compiler.h40 bool CompileMethod(Thread* self, ArtMethod* method, bool baseline, bool osr)
/art/compiler/
Dcompiler.h78 bool osr ATTRIBUTE_UNUSED, in JitCompile()
/art/compiler/optimizing/
Doptimizing_compiler.cc300 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()
Dcode_generator.cc1109 bool osr = in RecordPcInfo() local
1116 : (osr ? StackMap::Kind::OSR : StackMap::Kind::Default); in RecordPcInfo()
1125 if (osr) { in RecordPcInfo()
Dnodes.h322 bool osr = false,
357 osr_(osr), in allocator_()
/art/test/
DAndroid.bp483 "570-checker-osr/osr.cc",
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S623 // r11 isn't properly spilled in the osr method, so we need use DWARF expression.