/art/build/ |
D | Android.gtest.mk | 182 runtime/arch/arch_test.cc \ 183 runtime/arch/instruction_set_test.cc \ 184 runtime/arch/instruction_set_features_test.cc \ 185 runtime/arch/memcmp16_test.cc \ 186 runtime/arch/stub_test.cc \ 187 runtime/arch/arm/instruction_set_features_arm_test.cc \ 188 runtime/arch/arm64/instruction_set_features_arm64_test.cc \ 189 runtime/arch/mips/instruction_set_features_mips_test.cc \ 190 runtime/arch/mips64/instruction_set_features_mips64_test.cc \ 191 runtime/arch/x86/instruction_set_features_x86_test.cc \ [all …]
|
D | Android.cpplint.mk | 20 …on,-readability/streams,-readability/todo,-runtime/references,-runtime/sizeof,-runtime/threadsafe_… 26 ART_CPPLINT_SRC := $(filter-out $(LOCAL_PATH)/runtime/elf.h, $(addprefix $(LOCAL_PATH)/, $(call all…
|
/art/test/119-noimage-patchoat/ |
D | run | 34 ${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/ |
D | run | 50 ${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/runtime/native/ |
D | dalvik_system_ZygoteHooks.cc | 82 Runtime* const runtime = Runtime::Current(); in EnableDebugFeatures() local 84 JavaVMExt* vm = runtime->GetJavaVM(); in EnableDebugFeatures() 110 runtime->AddCompilerOption("--compiler-filter=interpret-only"); in EnableDebugFeatures() 111 runtime->SetSafeMode(true); in EnableDebugFeatures() 117 runtime->AddCompilerOption("--generate-debug-info"); in EnableDebugFeatures() 125 jit::JitOptions* jit_options = runtime->GetJITOptions(); in EnableDebugFeatures() 132 runtime->AddCompilerOption("--debuggable"); in EnableDebugFeatures() 133 runtime->AddCompilerOption("--generate-debug-info"); in EnableDebugFeatures() 134 runtime->SetNativeDebuggable(true); in EnableDebugFeatures() 144 Runtime* runtime = Runtime::Current(); in ZygoteHooks_nativePreFork() local [all …]
|
/art/runtime/ |
D | signal_catcher.cc | 129 Runtime* runtime = Runtime::Current(); in HandleSigQuit() local 138 std::string fingerprint = runtime->GetFingerprint(); in HandleSigQuit() 140 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit() 144 runtime->DumpForSigQuit(os); in HandleSigQuit() 185 Runtime* runtime = Runtime::Current(); in Run() local 186 CHECK(runtime->AttachCurrentThread("Signal Catcher", true, runtime->GetSystemThreadGroup(), in Run() 187 !runtime->IsAotCompiler())); in Run() 205 runtime->DetachCurrentThread(); in Run()
|
D | runtime_android.cc | 44 Runtime* runtime = Runtime::Current(); in HandleUnexpectedSignal() local 45 if (runtime != nullptr) { in HandleUnexpectedSignal() 47 LOG(INTERNAL_FATAL) << "Fault message: " << runtime->GetFaultMessage(); in HandleUnexpectedSignal() 48 gc::Heap* heap = runtime->GetHeap(); in HandleUnexpectedSignal()
|
D | instrumentation_test.cc | 208 Runtime* runtime = Runtime::Current(); in DeoptimizeMethod() local 209 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in DeoptimizeMethod() 224 Runtime* runtime = Runtime::Current(); in UndeoptimizeMethod() local 225 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in UndeoptimizeMethod() 239 Runtime* runtime = Runtime::Current(); in DeoptimizeEverything() local 240 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in DeoptimizeEverything() 254 Runtime* runtime = Runtime::Current(); in UndeoptimizeEverything() local 255 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in UndeoptimizeEverything() 269 Runtime* runtime = Runtime::Current(); in EnableMethodTracing() local 270 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); in EnableMethodTracing() [all …]
|
D | scoped_thread_state_change.h | 42 Runtime* runtime = Runtime::Current(); in ScopedThreadStateChange() local 43 CHECK(runtime == nullptr || !runtime->IsStarted() || runtime->IsShuttingDown(self_)); in ScopedThreadStateChange() 65 Runtime* runtime = Runtime::Current(); 66 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDown(nullptr);
|
D | oat_file_assistant.cc | 108 Runtime* runtime = Runtime::Current(); in IsInBootClassPath() local 109 ClassLinker* class_linker = runtime->GetClassLinker(); in IsInBootClassPath() 639 Runtime* runtime = Runtime::Current(); in RelocateOatFile() local 646 if (!runtime->IsDex2OatEnabled()) { in RelocateOatFile() 653 argv.push_back(runtime->GetPatchoatExecutable()); in RelocateOatFile() 676 Runtime* runtime = Runtime::Current(); in GenerateOatFile() local 677 if (!runtime->IsDex2OatEnabled()) { in GenerateOatFile() 740 Runtime* runtime = Runtime::Current(); in Dex2Oat() local 748 argv.push_back(runtime->GetCompilerExecutable()); in Dex2Oat() 752 std::string class_path = runtime->GetClassPathString(); in Dex2Oat() [all …]
|
/art/test/595-profile-saving/ |
D | run | 25 --runtime-option -XOatFileManagerCompilerFilter:interpret-only \ 26 --runtime-option -Xjitsaveprofilinginfo \ 27 --runtime-option -Xusejit:false \
|
/art/test/004-NativeAllocations/src/ |
D | Main.java | 25 static Object runtime; field in Main 35 register_native_allocation.invoke(runtime, bytes); in NativeAllocation() 50 register_native_free.invoke(runtime, bytes); in finalize() 60 runtime = get_runtime.invoke(null); in main()
|
/art/test/577-profile-foreign-dex/ |
D | run | 18 --runtime-option -Xjitsaveprofilinginfo \ 19 --runtime-option -Xusejit:true \
|
/art/runtime/mirror/ |
D | dex_cache_test.cc | 53 Runtime* const runtime = Runtime::Current(); in TEST_F() local 54 ClassLinker* const class_linker = runtime->GetClassLinker(); in TEST_F() 61 EXPECT_NE(linear_alloc, runtime->GetLinearAlloc()); in TEST_F() 69 Runtime* const runtime = Runtime::Current(); in TEST_F() local 70 ClassLinker* const class_linker = runtime->GetClassLinker(); in TEST_F()
|
D | dex_cache.cc | 63 Runtime* const runtime = Runtime::Current(); in Init() local 64 if (runtime->HasResolutionMethod()) { in Init() 66 Fixup(runtime->GetResolutionMethod(), pointer_size); in Init()
|
/art/test/134-nodex2oat-nofallback/ |
D | run | 20 ${RUN} ${flags} --runtime-option -Xnodex2oat --runtime-option -Xno-dex-file-fallback
|
/art/test/304-method-tracing/ |
D | run | 18 exec ${RUN} "$@" --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file:${DEX_LOCATIO…
|
/art/test/116-nodex2oat/ |
D | run | 29 ${RUN} ${flags} --runtime-option -Xnodex2oat 33 ${RUN} ${flags} --runtime-option -Xdex2oat
|
/art/test/117-nopatchoat/ |
D | run | 39 ${RUN} ${flags} --runtime-option -Xnodex2oat 43 ${RUN} ${flags} --runtime-option -Xdex2oat
|
/art/test/005-annotations/src/android/test/anno/ |
D | TestAnnotations.java | 166 Object runtime = VMRuntime.getRuntime(); in testVisibilityCompatibility() local 167 int currentSdkVersion = VMRuntime.getTargetSdkVersion(runtime); in testVisibilityCompatibility() 170 VMRuntime.setTargetSdkVersion(runtime, oldSdkVersion); in testVisibilityCompatibility() 177 VMRuntime.setTargetSdkVersion(runtime, currentSdkVersion); in testVisibilityCompatibility() 291 public static int getTargetSdkVersion(Object runtime) throws Exception { in getTargetSdkVersion() argument 292 return (int) getTargetSdkVersionMethod.invoke(runtime); in getTargetSdkVersion() 295 public static void setTargetSdkVersion(Object runtime, int version) throws Exception { in setTargetSdkVersion() argument 296 setTargetSdkVersionMethod.invoke(runtime, version); in setTargetSdkVersion()
|
/art/test/ |
D | run-test | 110 runtime="art" 150 runtime="jvm" 163 runtime="dalvik" 431 if [ "$runtime" = "jvm" ]; then 447 if [ ! "$runtime" = "jvm" ]; then 451 if [ "$runtime" = "dalvik" ]; then 459 elif [ "$runtime" = "art" ]; then 478 elif [ "$runtime" = "jvm" ]; then 484 if [ "$runtime" != "art" ]; then 675 if [ "$runtime" = "art" -a "$image_suffix" = "-optimizing" -a "$USE_JACK" = "true" ]; then [all …]
|
/art/dex2oat/ |
D | dex2oat_test.cc | 104 Runtime* runtime = Runtime::Current(); in Dex2Oat() local 107 runtime->GetHeap()->GetBootImageSpaces(); in Dex2Oat() 115 argv.push_back(runtime->GetCompilerExecutable()); in Dex2Oat() 119 std::string class_path = runtime->GetClassPathString(); in Dex2Oat() 124 if (runtime->IsDebuggable()) { in Dex2Oat() 127 runtime->AddCurrentRuntimeFeaturesAsDex2OatArguments(&argv); in Dex2Oat() 129 if (!runtime->IsVerificationEnabled()) { in Dex2Oat() 133 if (runtime->MustRelocateIfPossible()) { in Dex2Oat() 147 std::vector<std::string> compiler_options = runtime->GetCompilerOptions(); in Dex2Oat()
|
/art/test/115-native-bridge/ |
D | run | 31 exec ${RUN} --runtime-option -Xforce-nb-testing --runtime-option -XX:NativeBridge=libnativebridgete…
|
/art/runtime/arch/ |
D | arch_test.cc | 45 Runtime* const runtime = Runtime::Current(); in CheckFrameSize() local 49 runtime->SetInstructionSet(isa); in CheckFrameSize() 50 ArtMethod* save_method = runtime->CreateCalleeSaveMethod(); in CheckFrameSize() 51 runtime->SetCalleeSaveMethod(save_method, type); in CheckFrameSize() 52 QuickMethodFrameInfo frame_info = runtime->GetRuntimeMethodFrameInfo(save_method); in CheckFrameSize()
|
/art/compiler/optimizing/ |
D | sharpening.cc | 167 Runtime* runtime = Runtime::Current(); in ProcessLoadString() local 168 ClassLinker* class_linker = runtime->GetClassLinker(); in ProcessLoadString() 177 DCHECK(!runtime->UseJitCompilation()); in ProcessLoadString() 190 } else if (runtime->UseJitCompilation()) { in ProcessLoadString() 195 if (string != nullptr && runtime->GetHeap()->ObjectIsInBootImageSpace(string)) { in ProcessLoadString() 210 if (string != nullptr && runtime->GetHeap()->ObjectIsInBootImageSpace(string)) { in ProcessLoadString()
|