Home
last modified time | relevance | path

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

123456789

/art/test/119-noimage-patchoat/
Drun34 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xpatchoat:${false_bin}
38 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xpatchoat:${false_bin…
42 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
/art/test/118-noimage-dex2oat/
Drun50 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat
54 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat --runt…
58 ${RUN} ${flags} ${bpath_arg} --runtime-option -Ximage-dex2oat
/art/test/595-profile-saving/
Drun24 --runtime-option '-Xcompiler-option --compiler-filter=quicken' \
25 --runtime-option -Xjitsaveprofilinginfo \
26 --runtime-option -Xusejit:false \
27 --runtime-option -Xps-profile-boot-class-path \
/art/test/909-attach-agent/
Drun24 ./default-run "$@" --android-runtime-option -Xplugin:${plugin} \
25 --android-runtime-option -Xcompiler-option \
26 --android-runtime-option --debuggable \
29 ./default-run "$@" --android-runtime-option -Xcompiler-option \
30 --android-runtime-option --debuggable \
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc139 Runtime* const runtime = Runtime::Current(); in CollectNonDebuggableClasses() local
150 runtime->GetThreadList()->ForEach(DoCollectNonDebuggableCallback, &classes); in CollectNonDebuggableClasses()
171 Runtime* const runtime = Runtime::Current(); in EnableDebugFeatures() local
173 JavaVMExt* vm = runtime->GetJavaVM(); in EnableDebugFeatures()
199 runtime->AddCompilerOption("--compiler-filter=quicken"); in EnableDebugFeatures()
200 runtime->SetSafeMode(true); in EnableDebugFeatures()
206 runtime->AddCompilerOption("--generate-debug-info"); in EnableDebugFeatures()
214 jit::JitOptions* jit_options = runtime->GetJITOptions(); in EnableDebugFeatures()
222 runtime->AddCompilerOption("--debuggable"); in EnableDebugFeatures()
223 runtime->SetJavaDebuggable(true); in EnableDebugFeatures()
[all …]
/art/test/004-ThreadStress/
Drun18 ${RUN} --runtime-option -Xlockprofthreshold:10 "${@}"
22 ${RUN} --runtime-option -Xlockprofthreshold:10 --runtime-option -Xstackdumplockprofthreshold:20 "${…
/art/build/
DAndroid.cpplint.mk20 …on,-readability/streams,-readability/todo,-runtime/references,-runtime/sizeof,-runtime/threadsafe_…
24 runtime/elf.h \
25 runtime/openjdkjvmti/include/jvmti.h
/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/runtime/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()
DREADME.md5 runtime as a plugin. This allows the use of agents that can modify the running
7 operations on the global runtime state.
/art/runtime/
Dscoped_thread_state_change-inl.h35 Runtime* runtime = Runtime::Current(); in ScopedThreadStateChange() local
36 CHECK(runtime == nullptr || !runtime->IsStarted() || runtime->IsShuttingDown(self_)); in ScopedThreadStateChange()
58 Runtime* runtime = Runtime::Current(); in ~ScopedThreadStateChange() local
59 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDown(nullptr); in ~ScopedThreadStateChange()
Dsignal_catcher.cc178 Runtime* runtime = Runtime::Current(); in HandleSigQuit() local
187 std::string fingerprint = runtime->GetFingerprint(); in HandleSigQuit()
189 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()
193 runtime->DumpForSigQuit(os); in HandleSigQuit()
235 Runtime* runtime = Runtime::Current(); in Run() local
236 CHECK(runtime->AttachCurrentThread("Signal Catcher", true, runtime->GetSystemThreadGroup(), in Run()
237 !runtime->IsAotCompiler())); in Run()
255 runtime->DetachCurrentThread(); in Run()
Dinstrumentation_test.cc259 Runtime* runtime = Runtime::Current(); in DeoptimizeMethod() local
260 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in DeoptimizeMethod()
275 Runtime* runtime = Runtime::Current(); in UndeoptimizeMethod() local
276 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in UndeoptimizeMethod()
290 Runtime* runtime = Runtime::Current(); in DeoptimizeEverything() local
291 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in DeoptimizeEverything()
305 Runtime* runtime = Runtime::Current(); in UndeoptimizeEverything() local
306 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in UndeoptimizeEverything()
320 Runtime* runtime = Runtime::Current(); in EnableMethodTracing() local
321 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in EnableMethodTracing()
[all …]
Daot_class_linker.cc36 Runtime* const runtime = Runtime::Current(); in PerformClassVerification() local
37 CompilerCallbacks* callbacks = runtime->GetCompilerCallbacks(); in PerformClassVerification()
/art/test/004-NativeAllocations/src-art/
DMain.java26 static Object runtime; field in Main
36 register_native_allocation.invoke(runtime, bytes); in NativeAllocation()
60 register_native_free.invoke(runtime, bytes); in finalize()
70 runtime = get_runtime.invoke(null); in main()
/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/116-nodex2oat/
Drun29 ${RUN} ${flags} --runtime-option -Xnodex2oat
33 ${RUN} ${flags} --runtime-option -Xdex2oat
/art/test/117-nopatchoat/
Drun39 ${RUN} ${flags} --runtime-option -Xnodex2oat
43 ${RUN} ${flags} --runtime-option -Xdex2oat
/art/compiler/optimizing/
Dsharpening.cc175 Runtime* runtime = Runtime::Current(); in ComputeLoadClassKind() local
178 DCHECK(!runtime->UseJitCompilation()); in ComputeLoadClassKind()
193 runtime->GetHeap()->ObjectIsInBootImageSpace(klass.Get()); in ComputeLoadClassKind()
194 if (runtime->UseJitCompilation()) { in ComputeLoadClassKind()
244 Runtime* runtime = Runtime::Current(); in ProcessLoadString() local
245 ClassLinker* class_linker = runtime->GetClassLinker(); in ProcessLoadString()
256 DCHECK(!runtime->UseJitCompilation()); in ProcessLoadString()
266 } else if (runtime->UseJitCompilation()) { in ProcessLoadString()
270 if (runtime->GetHeap()->ObjectIsInBootImageSpace(string)) { in ProcessLoadString()
282 runtime->GetHeap()->ObjectIsInBootImageSpace(string) && in ProcessLoadString()
/art/test/005-annotations/src/android/test/anno/
DTestAnnotations.java165 Object runtime = VMRuntime.getRuntime(); in testVisibilityCompatibility() local
166 int currentSdkVersion = VMRuntime.getTargetSdkVersion(runtime); in testVisibilityCompatibility()
169 VMRuntime.setTargetSdkVersion(runtime, oldSdkVersion); in testVisibilityCompatibility()
176 VMRuntime.setTargetSdkVersion(runtime, currentSdkVersion); in testVisibilityCompatibility()
290 public static int getTargetSdkVersion(Object runtime) throws Exception { in getTargetSdkVersion() argument
291 return (int) getTargetSdkVersionMethod.invoke(runtime); in getTargetSdkVersion()
294 public static void setTargetSdkVersion(Object runtime, int version) throws Exception { in setTargetSdkVersion() argument
295 setTargetSdkVersionMethod.invoke(runtime, version); in setTargetSdkVersion()
/art/runtime/gc/
Dheap_verification_test.cc100 Runtime* const runtime = Runtime::Current(); in TEST_F() local
102 const Verification* const v = runtime->GetHeap()->GetVerification(); in TEST_F()
112 Runtime* const runtime = Runtime::Current(); in TEST_F() local
118 const Verification* const v = runtime->GetHeap()->GetVerification(); in TEST_F()
132 Runtime* const runtime = Runtime::Current(); in TEST_F() local
139 const Verification* const v = runtime->GetHeap()->GetVerification(); in TEST_F()
153 Runtime* const runtime = Runtime::Current(); in TEST_F() local
159 const Verification* const v = runtime->GetHeap()->GetVerification(); in TEST_F()
/art/test/
Drun-test137 runtime="art"
185 runtime="jvm"
200 runtime="dalvik"
454 if [ ! "$runtime" = "jvm" ]; then
517 if [ "$runtime" = "jvm" ]; then
533 if [ ! "$runtime" = "jvm" ]; then
537 if [ "$runtime" = "dalvik" ]; then
545 elif [ "$runtime" = "art" ]; then
560 elif [ "$runtime" = "jvm" ]; then
566 if [ "$runtime" != "art" ]; then
[all …]
/art/test/115-native-bridge/
Drun34 exec ${RUN} --runtime-option -Xforce-nb-testing --runtime-option -XX:NativeBridge=libnativebridgete…

123456789