/art/runtime/jit/ |
D | jit.cc | 82 DEFINE_RUNTIME_DEBUG_FLAG(Jit, kSlowMode); 85 void* Jit::jit_library_handle_ = nullptr; 86 JitCompilerInterface* Jit::jit_compiler_ = nullptr; 87 JitCompilerInterface* (*Jit::jit_load_)(void) = nullptr; 109 ? (Jit::kSlowMode in CreateFromRuntimeArguments() 115 const uint32_t kJitThresholdStep = Jit::kSlowMode ? 1u : kJitSamplesBatchSize; in CreateFromRuntimeArguments() 119 kIsDebugBuild ? (Jit::kSlowMode in CreateFromRuntimeArguments() 177 jit_options->warmup_threshold_ / Jit::kDefaultPriorityThreadWeightRatio, in CreateFromRuntimeArguments() 191 jit_options->warmup_threshold_ / Jit::kDefaultInvokeTransitionWeightRatio, in CreateFromRuntimeArguments() 198 void Jit::DumpInfo(std::ostream& os) { in DumpInfo() [all …]
|
D | jit-inl.h | 30 inline bool Jit::ShouldUsePriorityThreadWeight(Thread* self) { in ShouldUsePriorityThreadWeight() 34 inline void Jit::AddSamples(Thread* self, in AddSamples() 38 if (Jit::ShouldUsePriorityThreadWeight(self)) { in AddSamples()
|
D | jit.h | 232 class Jit { 241 virtual ~Jit(); 244 static Jit* Create(JitCodeCache* code_cache, JitOptions* options); 445 Jit(JitCodeCache* code_cache, JitOptions* options); 511 DISALLOW_COPY_AND_ASSIGN(Jit);
|
D | debugger_interface.cc | 475 jit::Jit* jit = Runtime::Current()->GetJit(); in RepackEntries()
|
/art/test/566-polymorphic-inlining/ |
D | polymorphic_inline.cc | 32 jit::Jit* jit = Runtime::Current()->GetJit(); in do_checks() 64 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_ensureProfilingInfo566() 75 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_ensureJittedAndPolymorphicInline566()
|
/art/test/common/ |
D | runtime_state.cc | 48 static jit::Jit* GetJitIfEnabled() { in GetJitIfEnabled() 204 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_hasJitCompiledEntrypoint() 221 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_hasJitCompiledCode() 267 jit::Jit* jit = GetJitIfEnabled(); in ForceJitCompiled() 296 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_ensureMethodJitCompiled() 314 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_ensureJitCompiled() 371 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_fetchProfiles() 384 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_waitForCompilation() 391 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_stopJit() 398 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_startJit() [all …]
|
/art/test/141-class-unload/ |
D | jni_unload.cc | 29 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_IntHolder_waitForCompilation()
|
/art/test/570-checker-osr/ |
D | osr.cc | 57 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/ |
D | jit.cc | 40 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_JitCacheChurnTest_removeJitCompiledMethod()
|
/art/runtime/interpreter/mterp/ |
D | mterp.cc | 888 jit::Jit* jit = Runtime::Current()->GetJit(); in MterpSetUpHotnessCountdown() 902 if (jit::Jit::ShouldUsePriorityThreadWeight(self)) { in MterpSetUpHotnessCountdown() 926 jit::Jit* jit = Runtime::Current()->GetJit(); in MterpAddHotnessBatch() 950 jit::Jit* jit = Runtime::Current()->GetJit(); in MterpMaybeDoOnStackReplacement() 951 osr_countdown = jit::Jit::kJitRecheckOSRThreshold; in MterpMaybeDoOnStackReplacement() 956 did_osr = jit::Jit::MaybeDoOnStackReplacement(self, method, dex_pc, offset, result); in MterpMaybeDoOnStackReplacement()
|
D | nterp.cc | 575 jit::Jit* jit = Runtime::Current()->GetJit(); in NterpHotMethod()
|
/art/runtime/ |
D | runtime.h | 62 class Jit; variable 496 jit::Jit* GetJit() const { in GetJit() 1111 std::unique_ptr<jit::Jit> jit_;
|
D | art_method.cc | 621 jit::Jit* jit = runtime->GetJit(); in GetOatQuickMethodHeader() 692 jit::Jit* jit = runtime->GetJit(); in HasAnyCompiledCode()
|
D | cha.cc | 686 jit::Jit* jit = Runtime::Current()->GetJit(); in InvalidateSingleImplementationMethods()
|
D | runtime.cc | 915 if (!jit::Jit::LoadCompilerLibrary(&error_msg)) { in Start() 2682 jit::Jit* jit = jit::Jit::Create(jit_code_cache_.get(), jit_options_.get()); in CreateJit() 2881 jit::Jit* jit = GetJit(); in DeoptimizeBootImage()
|
D | instrumentation.cc | 212 jit::Jit* jit = Runtime::Current()->GetJit(); in UpdateEntrypoints() 1175 jit::Jit* jit = Runtime::Current()->GetJit(); in GetCodeForInvoke()
|
/art/runtime/interpreter/ |
D | interpreter.cc | 314 jit::Jit* jit = Runtime::Current()->GetJit(); in Execute() 654 jit::Jit* jit = Runtime::Current()->GetJit(); in EnterInterpreterFromEntryPoint()
|
D | interpreter_switch_impl-inl.h | 159 if (jit::Jit::MaybeDoOnStackReplacement(self, in BranchInstrumentation() 173 jit::Jit* jit = Runtime::Current()->GetJit(); in HotnessUpdate()
|
D | interpreter_common.h | 301 jit::Jit* jit = Runtime::Current()->GetJit(); in DoInvoke()
|
D | interpreter_common.cc | 294 jit::Jit* jit = Runtime::Current()->GetJit(); in ArtInterpreterToCompiledCodeBridge()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 732 jit::Jit* jit = Runtime::Current()->GetJit(); in VMRuntime_bootCompleted()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 1048 jit::Jit* jit = Runtime::Current()->GetJit(); in artInstrumentationMethodEntryFromCode() 2191 jit::Jit* jit = runtime->GetJit(); in artQuickGenericJniTrampoline()
|
/art/openjdkjvmti/ |
D | ti_redefine.cc | 861 art::jit::Jit* jit = art::Runtime::Current()->GetJit(); in FindAndAllocateObsoleteMethods() 2938 art::jit::Jit* jit = driver_->runtime_->GetJit(); in UpdateClassStructurally() 3008 art::jit::Jit* jit = driver_->runtime_->GetJit(); in UpdateClassInPlace()
|