Home
last modified time | relevance | path

Searched refs:runtime (Results 1 – 25 of 257) sorted by relevance

1234567891011

/art/test/595-profile-saving/
Drun25 --runtime-option '-Xcompiler-option --compiler-filter=quicken' \
26 --runtime-option -Xjitinitialsize:32M \
27 --runtime-option -Xjitsaveprofilinginfo \
28 --runtime-option -Xusejit:false \
29 --runtime-option -Xps-profile-boot-class-path \
/art/test/119-noimage-patchoat/
Drun34 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat \
35 --runtime-option -Xpatchoat:${false_bin}
40 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat \
41 --runtime-option -Xpatchoat:${false_bin} --runtime-option -Xno-dex-file-fallback
47 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
/art/runtime/
Daot_class_linker.cc36 Runtime* const runtime = Runtime::Current(); in InitializeClass() local
37 bool strict_mode_ = runtime->IsActiveStrictTransactionMode(); in InitializeClass()
48 runtime->AbortTransactionAndThrowAbortError(self, "Can't resolve " in InitializeClass()
55 runtime->EnterTransactionMode(true, klass.Get()->AsClass()); in InitializeClass()
62 runtime->ExitTransactionMode(); in InitializeClass()
66 DCHECK(runtime->IsTransactionAborted()); in InitializeClass()
77 Runtime* const runtime = Runtime::Current(); in PerformClassVerification() local
78 CompilerCallbacks* callbacks = runtime->GetCompilerCallbacks(); in PerformClassVerification()
Dhidden_api.cc192 static ALWAYS_INLINE void MaybeWhitelistMember(Runtime* runtime, T* member) in MaybeWhitelistMember() argument
194 if (CanUpdateMemberAccessFlags(member) && runtime->ShouldDedupeHiddenApiWarnings()) { in MaybeWhitelistMember()
210 Runtime* runtime = Runtime::Current(); in GetMemberActionImpl() local
218 const bool shouldWarn = kLogAllAccesses || runtime->IsJavaDebuggable(); in GetMemberActionImpl()
220 if (member_signature.IsExempted(runtime->GetHiddenApiExemptions())) { in GetMemberActionImpl()
225 MaybeWhitelistMember(runtime, member); in GetMemberActionImpl()
237 uint32_t eventLogSampleRate = runtime->GetHiddenApiEventLogSampleRate(); in GetMemberActionImpl()
257 MaybeWhitelistMember(runtime, member); in GetMemberActionImpl()
261 (action == kAllowButWarnAndToast || runtime->ShouldAlwaysSetHiddenApiWarningFlag())) { in GetMemberActionImpl()
262 runtime->SetPendingHiddenApiWarning(true); in GetMemberActionImpl()
[all …]
Dscoped_thread_state_change-inl.h37 Runtime* runtime = Runtime::Current(); in ScopedThreadStateChange() local
38 CHECK(runtime == nullptr || !runtime->IsStarted() || runtime->IsShuttingDown(self_)); in ScopedThreadStateChange()
60 Runtime* runtime = Runtime::Current(); in ~ScopedThreadStateChange() local
61 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDown(nullptr); in ~ScopedThreadStateChange()
Dsignal_catcher.cc181 Runtime* runtime = Runtime::Current(); in HandleSigQuit() local
190 std::string fingerprint = runtime->GetFingerprint(); in HandleSigQuit()
192 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()
196 runtime->DumpForSigQuit(os); in HandleSigQuit()
238 Runtime* runtime = Runtime::Current(); in Run() local
239 CHECK(runtime->AttachCurrentThread("Signal Catcher", true, runtime->GetSystemThreadGroup(), in Run()
240 !runtime->IsAotCompiler())); in Run()
258 runtime->DetachCurrentThread(); in Run()
Dinstrumentation_test.cc280 Runtime* runtime = Runtime::Current(); in DeoptimizeMethod() local
281 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in DeoptimizeMethod()
296 Runtime* runtime = Runtime::Current(); in UndeoptimizeMethod() local
297 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in UndeoptimizeMethod()
311 Runtime* runtime = Runtime::Current(); in DeoptimizeEverything() local
312 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in DeoptimizeEverything()
326 Runtime* runtime = Runtime::Current(); in UndeoptimizeEverything() local
327 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in UndeoptimizeEverything()
341 Runtime* runtime = Runtime::Current(); in EnableMethodTracing() local
342 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in EnableMethodTracing()
[all …]
/art/test/118-noimage-dex2oat/
Drun50 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat
55 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat \
56 --runtime-option -Xno-dex-file-fallback
61 ${RUN} ${flags} ${bpath_arg} --runtime-option -Ximage-dex2oat
/art/test/909-attach-agent/
Drun32 ./default-run "$@" --android-runtime-option -Xplugin:${plugin} \
33 --android-runtime-option -Xcompiler-option \
34 --android-runtime-option --debuggable \
38 ./default-run "$@" --android-runtime-option -Xcompiler-option \
39 --android-runtime-option --debuggable \
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc146 Runtime* const runtime = Runtime::Current(); in CollectNonDebuggableClasses() local
157 runtime->GetThreadList()->ForEach(DoCollectNonDebuggableCallback, &classes); in CollectNonDebuggableClasses()
188 Runtime* const runtime = Runtime::Current(); in EnableDebugFeatures() local
190 JavaVMExt* vm = runtime->GetJavaVM(); in EnableDebugFeatures()
216 runtime->AddCompilerOption("--compiler-filter=quicken"); in EnableDebugFeatures()
217 runtime->SetSafeMode(true); in EnableDebugFeatures()
225 jit::JitOptions* jit_options = runtime->GetJITOptions(); in EnableDebugFeatures()
233 runtime->AddCompilerOption("--debuggable"); in EnableDebugFeatures()
235 runtime->SetJavaDebuggable(true); in EnableDebugFeatures()
237 runtime->DeoptimizeBootImage(); in EnableDebugFeatures()
[all …]
/art/test/004-ThreadStress/
Drun18 ${RUN} --runtime-option -Xlockprofthreshold:10 "${@}"
23 ${RUN} --runtime-option -Xlockprofthreshold:10 --runtime-option -Xstackdumplockprofthreshold:20 \
/art/test/900-hello-plugin/
Drun21 ./default-run "$@" --runtime-option -agentpath:${plugin}=test_900 \
22 --runtime-option -agentpath:${plugin}=test_900_round_2 \
23 --android-runtime-option -Xplugin:${plugin}
/art/openjdkjvmti/
Dti_jni.cc66 art::Runtime* runtime = art::Runtime::Current(); in GetJNIFunctionTable() local
67 if (runtime != nullptr && runtime->GetJavaVM() != nullptr) { in GetJNIFunctionTable()
68 check_jni = runtime->GetJavaVM()->IsCheckJniEnabled(); in GetJNIFunctionTable()
Ddeopt_manager.cc113 art::Runtime* runtime = art::Runtime::Current(); in FinishSetup() local
115 if (!runtime->IsJavaDebuggable()) { in FinishSetup()
123 DCHECK(runtime->GetJit() == nullptr) << "Jit should not be running yet!"; in FinishSetup()
124 runtime->AddCompilerOption("--debuggable"); in FinishSetup()
125 runtime->SetJavaDebuggable(true); in FinishSetup()
131 if (runtime->GetJit() == nullptr && in FinishSetup()
132 runtime->GetJITOptions()->UseJitCompilation() && in FinishSetup()
133 !runtime->GetInstrumentation()->IsForcedInterpretOnly()) { in FinishSetup()
140 runtime->CreateJit(); in FinishSetup()
141 if (runtime->GetJit() == nullptr) { in FinishSetup()
[all …]
/art/test/004-NativeAllocations/src-art/
DMain.java24 static VMRuntime runtime = VMRuntime.getRuntime(); field in Main
58 runtime.registerNativeAllocation(size); in checkRegisterNativeAllocation()
76 runtime.registerNativeFree(size); in checkRegisterNativeAllocation()
90 runtime.registerNativeAllocation(size); in triggerBlockingRegisterNativeAllocation()
95 runtime.registerNativeFree(size); in triggerBlockingRegisterNativeAllocation()
/art/test/676-proxy-jit-at-first-use/
Drun19 ${RUN} "${@}" --runtime-option -Xjitthreshold:0 --runtime-option -Xjitinitialsize:32M
/art/test/134-nodex2oat-nofallback/
Drun20 ${RUN} ${flags} --runtime-option -Xnodex2oat --runtime-option -Xno-dex-file-fallback
/art/test/304-method-tracing/
Drun18 exec ${RUN} "$@" --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file:${DEX_LOCATIO…
/art/test/157-void-class/
Drun21 --runtime-option -Ximage-compiler-option \
22 --runtime-option --compiler-filter=verify
/art/test/677-fsi/
Drun19 …N} $@ -Xcompiler-option --copy-dex-files=always --runtime-option -Xonly-use-system-oat-files --run…
/art/test/677-fsi2/
Drun18 ${RUN} $@ --runtime-option -Xonly-use-system-oat-files
22 ${RUN} $@ --no-dex2oat --runtime-option -Xonly-use-system-oat-files
/art/test/116-nodex2oat/
Drun29 ${RUN} ${flags} --runtime-option -Xnodex2oat
34 ${RUN} ${flags} --runtime-option -Xdex2oat
/art/
DCPPLINT.cfg31 filter=-runtime/printf,-runtime/references,-runtime/sizeof,-runtime/threadsafe_fn
/art/compiler/optimizing/
Dsharpening.cc174 Runtime* runtime = Runtime::Current(); in ComputeLoadClassKind() local
177 DCHECK(!runtime->UseJitCompilation()); in ComputeLoadClassKind()
192 runtime->GetHeap()->ObjectIsInBootImageSpace(klass.Get()); in ComputeLoadClassKind()
193 if (runtime->UseJitCompilation()) { in ComputeLoadClassKind()
252 Runtime* runtime = Runtime::Current(); in ProcessLoadString() local
253 ClassLinker* class_linker = runtime->GetClassLinker(); in ProcessLoadString()
264 DCHECK(!runtime->UseJitCompilation()); in ProcessLoadString()
274 } else if (runtime->UseJitCompilation()) { in ProcessLoadString()
278 if (runtime->GetHeap()->ObjectIsInBootImageSpace(string)) { in ProcessLoadString()
289 if (string != nullptr && runtime->GetHeap()->ObjectIsInBootImageSpace(string)) { in ProcessLoadString()
/art/test/117-nopatchoat/
Drun39 ${RUN} ${flags} --runtime-option -Xnodex2oat
44 ${RUN} ${flags} --runtime-option -Xdex2oat

1234567891011