Home
last modified time | relevance | path

Searched refs:jit (Results 76 – 93 of 93) sorted by relevance

1234

/art/compiler/optimizing/
Doptimizing_compiler.cc298 jit::JitCodeCache* code_cache,
299 jit::JitMemoryRegion* region,
302 jit::JitLogger* jit_logger)
1208 jit::JitCodeCache* code_cache, in JitCompile()
1209 jit::JitMemoryRegion* region, in JitCompile()
1212 jit::JitLogger* jit_logger) { in JitCompile()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1047 jit::Jit* jit = Runtime::Current()->GetJit(); in artInstrumentationMethodEntryFromCode() local
1049 DCHECK(jit == nullptr || in artInstrumentationMethodEntryFromCode()
1053 !jit->GetCodeCache()->GetGarbageCollectCode()); in artInstrumentationMethodEntryFromCode()
1055 jit == nullptr || in artInstrumentationMethodEntryFromCode()
1056 !jit->GetCodeCache()->ContainsPc(result)) in artInstrumentationMethodEntryFromCode()
2165 jit::Jit* jit = runtime->GetJit(); in artQuickGenericJniTrampoline() local
2166 if (jit != nullptr) { in artQuickGenericJniTrampoline()
2167 jit->MethodEntered(self, called); in artQuickGenericJniTrampoline()
/art/runtime/jit/
Djit_memory_region.h35 namespace jit {
Dprofile_saver.cc86 jit::JitCodeCache* jit_code_cache, in ProfileSaver()
709 jit::JitCodeCache* jit_code_cache, in Start()
Djit_memory_region_test.cc33 namespace jit { namespace
Djit_code_cache.h75 namespace jit {
/art/openjdkjvmti/
Dti_redefine.cc669 art::jit::ScopedJitSuspend suspend_jit; in RedefineClassesDirect()
861 art::jit::Jit* jit = art::Runtime::Current()->GetJit(); in FindAndAllocateObsoleteMethods() local
862 if (jit != nullptr) { in FindAndAllocateObsoleteMethods()
866 jit->GetCodeCache()->MoveObsoleteMethod(it.old_method, it.obsolete_method); in FindAndAllocateObsoleteMethods()
2954 art::jit::Jit* jit = driver_->runtime_->GetJit(); in UpdateClassStructurally() local
2955 if (jit != nullptr) { in UpdateClassStructurally()
2959 jit->GetCodeCache()->InvalidateAllCompiledCode(); in UpdateClassStructurally()
3031 art::jit::Jit* jit = driver_->runtime_->GetJit(); in UpdateClassInPlace() local
3032 if (jit != nullptr) { in UpdateClassInPlace()
3035 auto code_cache = jit->GetCodeCache(); in UpdateClassInPlace()
/art/compiler/
DAndroid.bp41 "jit/jit_compiler.cc",
42 "jit/jit_logger.cc",
/art/tools/
Dprebuilt_libjdwp_art_failures.txt6 * 'prebuilt-libjdwp-jit' test groups on the chromium buildbot.
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h159 if (jit::Jit::MaybeDoOnStackReplacement(self, in BranchInstrumentation()
173 jit::Jit* jit = Runtime::Current()->GetJit(); in HotnessUpdate() local
174 if (jit != nullptr) { in HotnessUpdate()
175 jit->AddSamples(self, shadow_frame.GetMethod(), 1, /*with_backedges=*/ true); in HotnessUpdate()
Dinterpreter_common.cc294 jit::Jit* jit = Runtime::Current()->GetJit(); in ArtInterpreterToCompiledCodeBridge() local
295 if (jit != nullptr && caller != nullptr) { in ArtInterpreterToCompiledCodeBridge()
296 jit->NotifyInterpreterToCompiledCodeTransition(self, caller); in ArtInterpreterToCompiledCodeBridge()
/art/test/
DAndroid.bp440 // "1952-pop-frame-jit/pop_frame.cc",
442 "1960-obsolete-jit-multithread-native/native_say_hi.cc",
629 "667-jit-jni-stub/jit_jni_stub_test.cc",
632 "708-jit-cache-churn/jit.cc",
777 "1958-transform-try-jit/src/art/Test1958.java",
915 "1958-transform-try-jit/expected.txt",
Drun-test335 run_args+=(--jit)
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc197 jit::JitOptions* jit_options = runtime->GetJITOptions(); in EnableDebugFeatures()
/art/runtime/gc/space/
Ddlmalloc_space.cc388 jit::JitCodeCache* code_cache = runtime->GetJitCodeCache(); in ArtDlMallocMoreCore()
/art/
DTEST_MAPPING804 "name": "art-run-test-545-tracing-and-jit"
1104 "name": "art-run-test-676-proxy-jit-at-first-use"
1122 "name": "art-run-test-694-clinit-jit"
/art/cmdline/
Dcmdline_types.h637 log_verbosity.jit = true;
/art/runtime/
Dclass_linker.cc2551 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); in DeleteClassLoader()
3455 jit::Jit::NewTypeLoadedIfUsingJit(h_new_class.Get()); in DefineClass()
3529 jit::Jit* jit = Runtime::Current()->GetJit(); in GetQuickOatCodeFor() local
3530 if (jit != nullptr) { in GetQuickOatCodeFor()
3531 code = jit->GetCodeCache()->GetSavedEntryPointOfPreCompiledMethod(method); in GetQuickOatCodeFor()
3592 jit::Jit* jit = Runtime::Current()->GetJit(); in ShouldUseInterpreterEntrypoint() local
3593 return (jit == nullptr) || !jit->GetCodeCache()->ContainsPc(quick_code); in ShouldUseInterpreterEntrypoint()
3664 jit::Jit* jit = runtime->GetJit(); in FixupStaticTrampolines() local
3665 if (quick_code == nullptr && jit != nullptr) { in FixupStaticTrampolines()
3666 quick_code = jit->GetCodeCache()->GetSavedEntryPointOfPreCompiledMethod(method); in FixupStaticTrampolines()
[all …]

1234