Home
last modified time | relevance | path

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

/art/runtime/jit/
Dprofiling_info.h86 bool IsMethodBeingCompiled(bool osr) const { in IsMethodBeingCompiled() argument
87 return osr in IsMethodBeingCompiled()
92 void SetIsMethodBeingCompiled(bool value, bool osr) { in SetIsMethodBeingCompiled() argument
93 if (osr) { in SetIsMethodBeingCompiled()
Djit_code_cache.cc645 bool osr, in Commit() argument
648 DCHECK(!method->IsNative() || !osr); in Commit()
724 if (osr) { in Commit()
748 << "JIT added (osr=" << std::boolalpha << osr << std::noboolalpha << ") " in Commit()
771 bool osr = osr_code_map_.find(method) != osr_code_map_.end(); in RemoveMethod() local
782 << "JIT removed (osr=" << std::boolalpha << osr << std::noboolalpha << ") " in RemoveMethod()
1598 bool osr, in NotifyCompilationOf() argument
1603 if (!osr && ContainsPc(existing_entry_point)) { in NotifyCompilationOf()
1638 if (osr) { in NotifyCompilationOf()
1692 if (info->IsMethodBeingCompiled(osr)) { in NotifyCompilationOf()
[all …]
Djit_code_cache.h198 bool osr,
217 void DoneCompiling(ArtMethod* method, Thread* self, bool osr)
269 bool osr,
Djit.h195 Thread* self, JitMemoryRegion* region, ArtMethod* method, bool baseline, bool osr)
246 bool CompileMethod(ArtMethod* method, Thread* self, bool baseline, bool osr, bool prejit)
Djit.cc292 bool Jit::CompileMethod(ArtMethod* method, Thread* self, bool baseline, bool osr, bool prejit) { in CompileMethod() argument
322 if (osr && GetCodeCache()->IsSharedRegion(*region)) { in CompileMethod()
332 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr, prejit, baseline, region)) { in CompileMethod()
338 << " osr=" << std::boolalpha << osr in CompileMethod()
340 bool success = jit_compiler_->CompileMethod(self, region, method_to_compile, baseline, osr); in CompileMethod()
341 code_cache_->DoneCompiling(method_to_compile, self, osr); in CompileMethod()
345 << " osr=" << std::boolalpha << osr; in CompileMethod()
/art/compiler/jit/
Djit_compiler.cc166 Thread* self, JitMemoryRegion* region, ArtMethod* method, bool baseline, bool osr) { in CompileMethod() argument
169 << " (baseline=" << baseline << ", osr=" << osr << ")"; in CompileMethod()
186 self, code_cache, region, method, baseline, osr, jit_logger_.get()); in CompileMethod()
Djit_compiler.h43 Thread* self, JitMemoryRegion* region, ArtMethod* method, bool baseline, bool osr)
/art/tools/cpp-define-generator/
Dasm_defines.def31 #include "osr.def"
/art/compiler/
Dcompiler.h79 bool osr ATTRIBUTE_UNUSED, in JitCompile()
/art/compiler/optimizing/
Doptimizing_compiler.cc301 bool osr,
386 bool osr,
739 bool osr, in TryCompile() argument
808 /* osr= */ osr, in TryCompile()
1219 bool osr, in JitCompile() argument
1294 osr, in JitCompile()
1336 osr, in JitCompile()
1402 osr, in JitCompile()
Dcode_generator.cc1101 static bool NeedsVregInfo(HInstruction* instruction, bool osr) { in NeedsVregInfo() argument
1106 osr || in NeedsVregInfo()
1185 bool osr = in RecordPcInfo() local
1192 : (osr ? StackMap::Kind::OSR : StackMap::Kind::Default); in RecordPcInfo()
1193 bool needs_vreg_info = NeedsVregInfo(instruction, osr); in RecordPcInfo()
1204 if (osr) { in RecordPcInfo()
Dnodes.h323 bool osr = false,
361 osr_(osr), in allocator_()
/art/test/
DAndroid.bp574 "570-checker-osr/osr.cc",
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S503 // r11 isn't properly spilled in the osr method, so we need use DWARF expression.