Home
last modified time | relevance | path

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

/aosp12/art/runtime/jit/
H A Djit.cc121 jit_options->warmup_threshold_ = in CreateFromRuntimeArguments()
129 DCHECK_LT(jit_options->warmup_threshold_, jit_options->compile_threshold_); in CreateFromRuntimeArguments()
130 DCHECK_EQ(RoundUp(jit_options->warmup_threshold_, kJitThresholdStep), in CreateFromRuntimeArguments()
131 jit_options->warmup_threshold_); in CreateFromRuntimeArguments()
141 jit_options->warmup_threshold_ = RoundUp(jit_options->warmup_threshold_, kJitThresholdStep); in CreateFromRuntimeArguments()
164 jit_options->warmup_threshold_ = in CreateFromRuntimeArguments()
165 std::clamp(jit_options->warmup_threshold_, in CreateFromRuntimeArguments()
173 if (jit_options->priority_thread_weight_ > jit_options->warmup_threshold_) { in CreateFromRuntimeArguments()
180 jit_options->warmup_threshold_ / Jit::kDefaultPriorityThreadWeightRatio, in CreateFromRuntimeArguments()
187 if (jit_options->invoke_transition_weight_ > jit_options->warmup_threshold_) { in CreateFromRuntimeArguments()
[all …]
H A Djit.h81 return warmup_threshold_; in GetWarmupThreshold()
168 uint32_t warmup_threshold_; variable
184 warmup_threshold_(0), in JitOptions()