Home
last modified time | relevance | path

Searched refs:warmup_threshold_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/jit/
Djit.cc119 jit_options->warmup_threshold_ = in CreateFromRuntimeArguments()
127 DCHECK_LT(jit_options->warmup_threshold_, jit_options->compile_threshold_); in CreateFromRuntimeArguments()
128 DCHECK_EQ(RoundUp(jit_options->warmup_threshold_, kJitThresholdStep), in CreateFromRuntimeArguments()
129 jit_options->warmup_threshold_); in CreateFromRuntimeArguments()
137 jit_options->warmup_threshold_ = *options.Get(RuntimeArgumentMap::JITWarmupThreshold); in CreateFromRuntimeArguments()
139 jit_options->warmup_threshold_ = RoundUp(jit_options->warmup_threshold_, kJitThresholdStep); in CreateFromRuntimeArguments()
162 jit_options->warmup_threshold_ = in CreateFromRuntimeArguments()
163 std::clamp(jit_options->warmup_threshold_, in CreateFromRuntimeArguments()
171 if (jit_options->priority_thread_weight_ > jit_options->warmup_threshold_) { in CreateFromRuntimeArguments()
178 jit_options->warmup_threshold_ / Jit::kDefaultPriorityThreadWeightRatio, in CreateFromRuntimeArguments()
[all …]
Djit.h77 return warmup_threshold_; in GetWarmupThreshold()
166 uint32_t warmup_threshold_; variable
181 warmup_threshold_(0), in JitOptions()