/art/runtime/jit/ |
D | profiling_info.h | 86 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()
|
D | jit_code_cache.cc | 645 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 …]
|
D | jit_code_cache.h | 198 bool osr, 217 void DoneCompiling(ArtMethod* method, Thread* self, bool osr) 269 bool osr,
|
D | jit.h | 195 Thread* self, JitMemoryRegion* region, ArtMethod* method, bool baseline, bool osr) 246 bool CompileMethod(ArtMethod* method, Thread* self, bool baseline, bool osr, bool prejit)
|
D | jit.cc | 292 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/ |
D | jit_compiler.cc | 166 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()
|
D | jit_compiler.h | 43 Thread* self, JitMemoryRegion* region, ArtMethod* method, bool baseline, bool osr)
|
/art/tools/cpp-define-generator/ |
D | asm_defines.def | 31 #include "osr.def"
|
/art/compiler/ |
D | compiler.h | 79 bool osr ATTRIBUTE_UNUSED, in JitCompile()
|
/art/compiler/optimizing/ |
D | optimizing_compiler.cc | 301 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()
|
D | code_generator.cc | 1101 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()
|
D | nodes.h | 323 bool osr = false, 361 osr_(osr), in allocator_()
|
/art/test/ |
D | Android.bp | 574 "570-checker-osr/osr.cc",
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 503 // r11 isn't properly spilled in the osr method, so we need use DWARF expression.
|