Home
last modified time | relevance | path

Searched refs:GetOptimizeThreshold (Results 1 – 11 of 11) sorted by relevance

/art/runtime/jit/
Dprofiling_info.cc31 : baseline_hotness_count_(GetOptimizeThreshold()), in ProfilingInfo()
49 uint16_t ProfilingInfo::GetOptimizeThreshold() { in GetOptimizeThreshold() function in art::ProfilingInfo
50 return Runtime::Current()->GetJITOptions()->GetOptimizeThreshold(); in GetOptimizeThreshold()
Djit_options.h44 uint16_t GetOptimizeThreshold() const { in GetOptimizeThreshold() function
Dprofiling_info.h178 static uint16_t GetOptimizeThreshold();
Djit.h233 return options_->GetOptimizeThreshold(); in HotMethodThreshold()
Djit.cc117 << ", optimize_threshold=" << options->GetOptimizeThreshold() in Create()
Djit_code_cache.cc1483 (ProfilingInfo::GetOptimizeThreshold() - info->GetBaselineHotnessCount()) < in GetProfiledMethods()
/art/compiler/optimizing/
Dcode_generator_arm64.cc862 __ Mov(counter, ProfilingInfo::GetOptimizeThreshold()); in EmitNativeCode()
Dcode_generator_riscv64.cc280 __ LoadConst32(counter, ProfilingInfo::GetOptimizeThreshold()); in EmitNativeCode()
Dcode_generator_x86_64.cc1054 __ movw(Address(CpuRegister(TMP), 0), Immediate(ProfilingInfo::GetOptimizeThreshold())); in EmitNativeCode()
Dcode_generator_x86.cc1001 __ movw(Address::Absolute(counter_address_), Immediate(ProfilingInfo::GetOptimizeThreshold())); in EmitNativeCode()
Dcode_generator_arm_vixl.cc988 __ Mov(tmp, ProfilingInfo::GetOptimizeThreshold()); in EmitNativeCode()