HomeSort by relevance Sort by last modified time
    Searched refs:GetJit (Results 1 - 25 of 34) sorted by null

1 2

  /art/test/141-class-unload/
jni_unload.cc 29 jit::Jit* jit = Runtime::Current()->GetJit();
  /art/test/667-jit-jni-stub/
jit_jni_stub_test.cc 32 CHECK(Runtime::Current()->GetJit() != nullptr);
33 jit::JitCodeCache* cache = Runtime::Current()->GetJit()->GetCodeCache();
51 CHECK(Runtime::Current()->GetJit() != nullptr);
52 jit::JitCodeCache* cache = Runtime::Current()->GetJit()->GetCodeCache();
  /art/test/566-polymorphic-inlining/
polymorphic_inline.cc 32 jit::Jit* jit = Runtime::Current()->GetJit();
64 jit::Jit* jit = Runtime::Current()->GetJit();
75 jit::Jit* jit = Runtime::Current()->GetJit();
  /art/test/570-checker-osr/
osr.cc 57 jit::Jit* jit = Runtime::Current()->GetJit();
69 Runtime::Current()->GetJit()->GetCodeCache()->LookupOsrMethodHeader(m);
91 Runtime::Current()->GetJit()->GetCodeCache()->LookupOsrMethodHeader(m);
126 jit::Jit* jit = Runtime::Current()->GetJit();
  /art/test/708-jit-cache-churn/
jit.cc 40 jit::Jit* jit = Runtime::Current()->GetJit();
  /art/test/common/
runtime_state.cc 48 && runtime->GetJit() != nullptr
51 return can_jit ? runtime->GetJit() : nullptr;
343 jit::Jit* jit = Runtime::Current()->GetJit();
350 jit::Jit* jit = Runtime::Current()->GetJit();
357 jit::Jit* jit = Runtime::Current()->GetJit();
364 jit::Jit* jit = Runtime::Current()->GetJit();
369 jit::Jit* jit = Runtime::Current()->GetJit();
  /art/runtime/native/
dalvik_system_ZygoteHooks.cc 265 if (Runtime::Current()->GetJit() != nullptr) {
266 Runtime::Current()->GetJit()->GetCodeCache()->PostForkChildAction(
321 if (runtime->GetJit() != nullptr) {
324 runtime->GetJit()->GetCodeCache()->PostForkChildAction(
328 runtime->GetJit()->PostForkChildAction(is_system_server, is_zygote);
  /art/runtime/jit/
profiling_info.cc 67 jit::JitCodeCache* code_cache = Runtime::Current()->GetJit()->GetCodeCache();
jit.cc 371 jit::Jit* jit = Runtime::Current()->GetJit();
412 Jit* jit = Runtime::Current()->GetJit();
589 Runtime::Current()->GetJit()->CompileMethod(
637 runtime->GetJit()->CompileMethodsFromProfile(
677 Runtime::Current()->GetJit()->CompileMethodsFromProfile(
    [all...]
  /art/compiler/jit/
jit_compiler.cc 199 JitCodeCache* const code_cache = runtime->GetJit()->GetCodeCache();
216 runtime->GetJit()->AddTimingLogger(logger);
  /art/runtime/
runtime.cc 654 if (GetJit() != nullptr) {
655 GetJit()->PreZygoteFork();
661 if (GetJit() != nullptr) {
662 GetJit()->PostZygoteFork();
679 if (GetJit() != nullptr) {
685 GetJit()->GetCodeCache()->SweepRootTables(visitor);
    [all...]
stack.cc 590 runtime->GetJit()->GetCodeCache()->ContainsPc(reinterpret_cast<const void*>(pc))) {
605 if (runtime->UseJitCompilation() && runtime->GetJit()->GetCodeCache()->ContainsPc(code)) {
731 (runtime->GetJit() != nullptr &&
732 runtime->GetJit()->GetCodeCache()->ContainsPc(entry_point))) << method->PrettyMethod();
797 CHECK(runtime->GetJit() != nullptr);
798 code = runtime->GetJit()->GetCodeCache()->GetJniStubCode(method);
    [all...]
art_method.cc 607 jit::Jit* jit = runtime->GetJit();
678 jit::Jit* jit = runtime->GetJit();
763 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
    [all...]
oat_file_manager.cc 649 if (Runtime::Current()->GetJit() != nullptr) {
651 Runtime::Current()->GetJit()->RegisterDexFiles(
    [all...]
instrumentation.cc     [all...]
cha.cc 686 jit::Jit* jit = Runtime::Current()->GetJit();
quick_exception_handler.cc 609 Runtime::Current()->GetJit()->GetCodeCache()->InvalidateCompiledCodeFor(
trace.cc 395 if (runtime->GetJit() != nullptr) {
401 runtime->GetJit()->GetCodeCache()->SetGarbageCollectCode(false);
    [all...]
  /art/tools/jvmti-agents/jit-load/
jitload.cc 40 auto* jit = art::Runtime::Current()->GetJit();
  /art/openjdkjvmti/
deopt_manager.cc 178 DCHECK(runtime->GetJit() == nullptr) << "Jit should not be running yet!";
186 if (runtime->GetJit() == nullptr &&
199 if (runtime->GetJit() == nullptr) {
  /art/runtime/gc/space/
dlmalloc_space.cc 387 if (LIKELY(runtime->GetJit() != nullptr)) {
388 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache();
  /art/runtime/interpreter/mterp/
mterp.cc 161 (runtime->GetJit() == nullptr || !runtime->GetJit()->JitAtFirstUse());
    [all...]
  /art/runtime/interpreter/
interpreter.cc 293 jit::Jit* jit = Runtime::Current()->GetJit();
634 jit::Jit* jit = Runtime::Current()->GetJit();
  /art/compiler/optimizing/
optimizing_compiler.cc     [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc     [all...]

Completed in 507 milliseconds

1 2