Home | History | Annotate | Download | only in mterp

Lines Matching defs:jit

650   int32_t countdown_value = jit::kJitHotnessDisabled;
651 jit::Jit* jit = Runtime::Current()->GetJit();
652 if (jit != nullptr) {
653 int32_t warm_threshold = jit->WarmMethodThreshold();
654 int32_t hot_threshold = jit->HotMethodThreshold();
655 int32_t osr_threshold = jit->OSRMethodThreshold();
663 countdown_value = jit::kJitCheckForOSR;
665 if (jit::Jit::ShouldUsePriorityThreadWeight()) {
666 int32_t priority_thread_weight = jit->PriorityThreadWeight();
689 jit::Jit* jit = Runtime::Current()->GetJit();
690 if (jit != nullptr) {
692 jit->AddSamples(self, method, count, /*with_backedges*/ true);
703 jit::Jit* jit = Runtime::Current()->GetJit();
704 if ((jit != nullptr) && (offset <= 0)) {
705 jit->AddSamples(self, method, 1, /*with_backedges*/ true);
708 if (countdown_value == jit::kJitCheckForOSR) {
709 return jit::Jit::MaybeDoOnStackReplacement(self, method, dex_pc, offset, result);
722 jit::Jit* jit = Runtime::Current()->GetJit();
725 jit->AddSamples(self, method, 1, /*with_backedges*/ true);
728 return jit::Jit::MaybeDoOnStackReplacement(self, method, dex_pc, offset, result);