Home
last modified time | relevance | path

Searched refs:Jit (Results 1 – 25 of 27) sorted by relevance

12

/art/runtime/jit/
Djit.cc83 DEFINE_RUNTIME_DEBUG_FLAG(Jit, kSlowMode);
86 void* Jit::jit_library_handle_ = nullptr;
87 JitCompilerInterface* Jit::jit_compiler_ = nullptr;
88 JitCompilerInterface* (*Jit::jit_load_)(void) = nullptr;
112 ? (Jit::kSlowMode in CreateFromRuntimeArguments()
118 const uint32_t kJitThresholdStep = Jit::kSlowMode ? 1u : kJitSamplesBatchSize; in CreateFromRuntimeArguments()
122 kIsDebugBuild ? (Jit::kSlowMode in CreateFromRuntimeArguments()
180 jit_options->warmup_threshold_ / Jit::kDefaultPriorityThreadWeightRatio, in CreateFromRuntimeArguments()
194 jit_options->warmup_threshold_ / Jit::kDefaultInvokeTransitionWeightRatio, in CreateFromRuntimeArguments()
201 void Jit::DumpInfo(std::ostream& os) { in DumpInfo()
[all …]
Djit-inl.h30 inline bool Jit::ShouldUsePriorityThreadWeight(Thread* self) { in ShouldUsePriorityThreadWeight()
34 inline void Jit::AddSamples(Thread* self, in AddSamples()
38 if (Jit::ShouldUsePriorityThreadWeight(self)) { in AddSamples()
Dprofiling_info.h33 class Jit; variable
147 ScopedProfilingInfoUse(jit::Jit* jit, ArtMethod* method, Thread* self);
153 jit::Jit* const jit_;
Djit.h237 class Jit {
246 virtual ~Jit();
249 static Jit* Create(JitCodeCache* code_cache, JitOptions* options);
460 Jit(JitCodeCache* code_cache, JitOptions* options);
530 DISALLOW_COPY_AND_ASSIGN(Jit);
Dprofiling_info.cc109 ScopedProfilingInfoUse::ScopedProfilingInfoUse(jit::Jit* jit, ArtMethod* method, Thread* self) in ScopedProfilingInfoUse()
Ddebugger_interface.cc491 jit::Jit* jit = Runtime::Current()->GetJit(); in RepackEntries()
/art/test/common/
Druntime_state.cc48 static jit::Jit* GetJitIfEnabled() { in GetJitIfEnabled()
200 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_hasJitCompiledEntrypoint()
217 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_hasJitCompiledCode()
262 jit::Jit* jit = GetJitIfEnabled(); in ForceJitCompiled()
279 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_ensureMethodJitCompiled()
297 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_ensureJitCompiled()
317 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_ensureJitBaselineCompiled()
374 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_fetchProfiles()
387 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_waitForCompilation()
394 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_stopJit()
[all …]
/art/test/566-polymorphic-inlining/
Dpolymorphic_inline.cc32 jit::Jit* jit = Runtime::Current()->GetJit(); in do_checks()
60 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_ensureJittedAndPolymorphicInline566()
/art/test/141-class-unload/
Djni_unload.cc29 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_IntHolder_waitForCompilation()
/art/test/570-checker-osr/
Dosr.cc57 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_isInOsrCode()
127 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_ensureHasOsrCode()
/art/test/708-jit-cache-churn/
Djit.cc40 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_JitCacheChurnTest_removeJitCompiledMethod()
/art/runtime/interpreter/mterp/
Dmterp.cc846 jit::Jit* jit = Runtime::Current()->GetJit(); in MterpSetUpHotnessCountdown()
860 if (jit::Jit::ShouldUsePriorityThreadWeight(self)) { in MterpSetUpHotnessCountdown()
884 jit::Jit* jit = Runtime::Current()->GetJit(); in MterpAddHotnessBatch()
908 jit::Jit* jit = Runtime::Current()->GetJit(); in MterpMaybeDoOnStackReplacement()
909 osr_countdown = jit::Jit::kJitRecheckOSRThreshold; in MterpMaybeDoOnStackReplacement()
914 did_osr = jit::Jit::MaybeDoOnStackReplacement(self, method, dex_pc, offset, result); in MterpMaybeDoOnStackReplacement()
Dnterp.cc725 jit::Jit* jit = Runtime::Current()->GetJit(); in NterpHotMethod()
/art/runtime/
Druntime.h65 class Jit; variable
511 jit::Jit* GetJit() const { in GetJit()
1180 std::unique_ptr<jit::Jit> jit_;
Dart_method.cc577 jit::Jit* jit = runtime->GetJit(); in GetOatQuickMethodHeader()
651 jit::Jit* jit = runtime->GetJit(); in HasAnyCompiledCode()
Druntime.cc703 jit::Jit* jit = GetJit(); in PostZygoteFork()
935 if (!jit::Jit::LoadCompilerLibrary(&error_msg)) { in Start()
2909 jit::Jit* jit = jit::Jit::Create(jit_code_cache_.get(), jit_options_.get()); in CreateJit()
3108 jit::Jit* jit = GetJit(); in DeoptimizeBootImage()
Dcha.cc687 jit::Jit* jit = Runtime::Current()->GetJit(); in InvalidateSingleImplementationMethods()
Dinstrumentation.cc212 jit::Jit* jit = Runtime::Current()->GetJit(); in UpdateEntrypoints()
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc453 static bool isJitZygote = jit::Jit::InZygoteUsingJit(); in ZygoteHooks_nativeZygoteLongSuspendOk()
Ddalvik_system_VMRuntime.cc463 jit::Jit* jit = Runtime::Current()->GetJit(); in VMRuntime_bootCompleted()
/art/runtime/interpreter/
Dinterpreter.cc336 jit::Jit* jit = Runtime::Current()->GetJit(); in Execute()
643 jit::Jit* jit = Runtime::Current()->GetJit(); in EnterInterpreterFromEntryPoint()
Dinterpreter_switch_impl-inl.h243 if (jit::Jit::MaybeDoOnStackReplacement(Self(), in HandleBranch()
256 jit::Jit* jit = Runtime::Current()->GetJit(); in HandleBranch()
Dinterpreter_common.h284 jit::Jit* jit = Runtime::Current()->GetJit(); in DoInvoke()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1047 jit::Jit* jit = Runtime::Current()->GetJit(); in artInstrumentationMethodEntryFromCode()
2101 jit::Jit* jit = runtime->GetJit(); in artQuickGenericJniTrampoline()
/art/openjdkjvmti/
Dti_redefine.cc858 art::jit::Jit* jit = art::Runtime::Current()->GetJit(); in FindAndAllocateObsoleteMethods()
2958 art::jit::Jit* jit = driver_->runtime_->GetJit(); in UpdateClassStructurally()
3035 art::jit::Jit* jit = driver_->runtime_->GetJit(); in UpdateClassInPlace()

12