Home
last modified time | relevance | path

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

/art/compiler/jit/
Djit_logger.h97 void WriteLog(JitCodeCache* code_cache, ArtMethod* method, bool osr) in WriteLog() argument
99 WritePerfMapLog(code_cache, method, osr); in WriteLog()
100 WriteJitDumpLog(code_cache, method, osr); in WriteLog()
111 void WritePerfMapLog(JitCodeCache* code_cache, ArtMethod* method, bool osr)
117 void WriteJitDumpLog(JitCodeCache* code_cache, ArtMethod* method, bool osr)
Djit_compiler.cc62 void* handle, ArtMethod* method, Thread* self, bool osr) in jit_compile_method() argument
66 return jit_compiler->CompileMethod(self, method, osr); in jit_compile_method()
187 bool JitCompiler::CompileMethod(Thread* self, ArtMethod* method, bool osr) { in CompileMethod() argument
200 success = compiler_driver_->GetCompiler()->JitCompile(self, code_cache, method, osr); in CompileMethod()
202 jit_logger_->WriteLog(code_cache, method, osr); in CompileMethod()
Djit_logger.cc53 void JitLogger::WritePerfMapLog(JitCodeCache* code_cache, ArtMethod* method, bool osr) { in WritePerfMapLog() argument
55 const void* ptr = osr ? code_cache->LookupOsrMethodHeader(method)->GetCode() in WritePerfMapLog()
273 void JitLogger::WriteJitDumpLog(JitCodeCache* code_cache, ArtMethod* method, bool osr) { in WriteJitDumpLog() argument
275 const void* code = osr ? code_cache->LookupOsrMethodHeader(method)->GetCode() in WriteJitDumpLog()
Djit_compiler.h39 bool CompileMethod(Thread* self, ArtMethod* method, bool osr)
/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.cc228 bool osr, in CommitCode() argument
243 osr, in CommitCode()
261 osr, in CommitCode()
538 bool osr, in CommitCodeInternal() argument
636 if (osr) { in CommitCodeInternal()
650 << "JIT added (osr=" << std::boolalpha << osr << std::noboolalpha << ") " in CommitCodeInternal()
1365 bool JitCodeCache::NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr) { in NotifyCompilationOf() argument
1366 if (!osr && ContainsPc(method->GetEntryPointFromQuickCompiledCode())) { in NotifyCompilationOf()
1371 if (osr && (osr_code_map_.find(method) != osr_code_map_.end())) { in NotifyCompilationOf()
1385 if (info->IsMethodBeingCompiled(osr)) { in NotifyCompilationOf()
[all …]
Djit_code_cache.h75 bool NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr)
91 void DoneCompiling(ArtMethod* method, Thread* self, bool osr)
116 bool osr,
263 bool osr,
Djit.cc249 bool Jit::CompileMethod(ArtMethod* method, Thread* self, bool osr) { in CompileMethod() argument
269 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr)) { in CompileMethod()
275 << " osr=" << std::boolalpha << osr; in CompileMethod()
276 bool success = jit_compile_method_(jit_compiler_handle_, method_to_compile, self, osr); in CompileMethod()
277 code_cache_->DoneCompiling(method_to_compile, self, osr); in CompileMethod()
281 << " osr=" << std::boolalpha << osr; in CompileMethod()
Djit.h62 bool CompileMethod(ArtMethod* method, Thread* self, bool osr)
/art/compiler/
Dcompiler.h79 bool osr ATTRIBUTE_UNUSED) in JitCompile()
/art/compiler/optimizing/
Doptimizing_compiler.cc341 bool JitCompile(Thread* self, jit::JitCodeCache* code_cache, ArtMethod* method, bool osr)
383 bool osr,
890 bool osr, in TryCompile() argument
940 osr); in TryCompile()
1139 bool osr) { in JitCompile() argument
1173 osr, in JitCompile()
1236 osr, in JitCompile()
Dnodes.h312 bool osr = false,
345 osr_(osr), in arena_()
/art/test/
DAndroid.bp388 "570-checker-osr/osr.cc",