/art/test/595-profile-saving/ |
D | run | 24 -Xcompiler-option --compiler-filter=quicken \ 25 --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/909-attach-agent/ |
D | run | 32 ./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/ |
D | compiler_filter.cc | 190 bool CompilerFilter::ParseCompilerFilter(const char* option, Filter* filter) { in ParseCompilerFilter() argument 193 if (strcmp(option, "verify-none") == 0) { in ParseCompilerFilter() 197 } else if (strcmp(option, "interpret-only") == 0) { in ParseCompilerFilter() 201 } else if (strcmp(option, "verify-profile") == 0) { in ParseCompilerFilter() 205 } else if (strcmp(option, "verify-at-runtime") == 0) { in ParseCompilerFilter() 209 } else if (strcmp(option, "balanced") == 0) { in ParseCompilerFilter() 213 } else if (strcmp(option, "time") == 0) { in ParseCompilerFilter() 217 } else if (strcmp(option, "assume-verified") == 0) { in ParseCompilerFilter() 219 } else if (strcmp(option, "extract") == 0) { in ParseCompilerFilter() 221 } else if (strcmp(option, "verify") == 0) { in ParseCompilerFilter() [all …]
|
/art/test/172-app-image-twice/ |
D | run | 23 ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \ 24 -Xcompiler-option --class-loader-context=\& 26 ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \ 27 -Xcompiler-option '--class-loader-context=\&'
|
/art/dexoptanalyzer/ |
D | dexoptanalyzer.cc | 179 const std::string_view option(raw_option); in ParseArgs() local 180 if (option == "--assume-profile-changed") { in ParseArgs() 182 } else if (StartsWith(option, "--dex-file=")) { in ParseArgs() 183 dex_file_ = std::string(option.substr(strlen("--dex-file="))); in ParseArgs() 184 } else if (StartsWith(option, "--compiler-filter=")) { in ParseArgs() 189 } else if (StartsWith(option, "--isa=")) { in ParseArgs() 195 } else if (StartsWith(option, "--image=")) { in ParseArgs() 196 image_ = std::string(option.substr(strlen("--image="))); in ParseArgs() 197 } else if (option == "--runtime-arg") { in ParseArgs() 203 } else if (StartsWith(option, "--android-data=")) { in ParseArgs() [all …]
|
/art/test/137-cfi/ |
D | run | 21 ${RUN} "$@" -Xcompiler-option --generate-debug-info \ 22 --runtime-option -Xjitthreshold:0 \ 29 ${RUN} "$@" -Xcompiler-option --generate-mini-debug-info \ 30 --runtime-option -Xjitthreshold:0 \
|
/art/test/004-ThreadStress/ |
D | run | 26 ${RUN} --runtime-option -Xlockprofthreshold:10 "${@}" Main \ 39 ${RUN} --runtime-option -Xlockprofthreshold:10 "${@}" 45 ${RUN} --runtime-option -Xlockprofthreshold:10 --runtime-option -Xstackdumplockprofthreshold:20 \
|
/art/test/118-noimage-dex2oat/ |
D | run | 37 ${RUN} ${flags} --runtime-option -Xnoimage-dex2oat 42 ${RUN} ${flags} --runtime-option -Xnoimage-dex2oat \ 43 --runtime-option -Xno-dex-file-fallback 48 ${RUN} ${flags} --runtime-option -Ximage-dex2oat
|
/art/cmdline/ |
D | cmdline_types.h | 73 Result Parse(const std::string& option) { 74 if (option == "help") { 80 } else if (option == "default") { 82 } else if (option == "internal") { 84 } else if (option == "adbconnection") { 86 } else if (option == "none") { 89 return Result::Failure(std::string("not a valid jdwp provider: ") + option); 408 static gc::CollectorType ParseCollectorType(const std::string& option) { 409 if (option == "MS" || option == "nonconcurrent") { 411 } else if (option == "CMS" || option == "concurrent") { [all …]
|
/art/test/157-void-class/ |
D | run | 21 --runtime-option -Ximage-compiler-option \ 22 --runtime-option --compiler-filter=verify
|
/art/test/677-fsi/ |
D | run | 19 exec ${RUN} $@ -Xcompiler-option --copy-dex-files=always --runtime-option -Xonly-use-system-oat-fil…
|
/art/test/900-hello-plugin/ |
D | run | 21 ./default-run "$@" --runtime-option -agentpath:${plugin}=test_900 \ 22 --runtime-option -agentpath:${plugin}=test_900_round_2 \ 23 --android-runtime-option -Xplugin:${plugin}
|
/art/tools/jvmti-agents/breakpoint-logger/ |
D | breakpoint_logger.cc | 290 std::string option = bp; in ParseSingleBreakpoint() local 291 if (option.empty() || option[0] != 'L' || option.find(';') == std::string::npos) { in ParseSingleBreakpoint() 292 LOG(ERROR) << option << " doesn't look like it has a class name"; in ParseSingleBreakpoint() 295 target->class_name = SubstrOf(option, 1, option.find(';')); in ParseSingleBreakpoint() 297 option = SubstrOf(option, option.find(';') + 1, std::string::npos); in ParseSingleBreakpoint() 298 if (option.size() < 2 || option[0] != '-' || option[1] != '>') { in ParseSingleBreakpoint() 302 option = SubstrOf(option, 2, std::string::npos); in ParseSingleBreakpoint() 303 size_t sig_start = option.find('('); in ParseSingleBreakpoint() 304 size_t loc_start = option.find('@'); in ParseSingleBreakpoint() 305 if (option.empty() || sig_start == std::string::npos) { in ParseSingleBreakpoint() [all …]
|
/art/test/597-deopt-invoke-stub/ |
D | run | 21 exec ${RUN} "${@}" --jit --runtime-option -Xjitthreshold:10000 -Xcompiler-option --debuggable
|
/art/test/652-deopt-intrinsic/ |
D | run | 22 exec ${RUN} "$@" --runtime-option -Xjitinitialsize:32M --runtime-option -Xjitthreshold:1000
|
/art/test/676-proxy-jit-at-first-use/ |
D | run | 19 ${RUN} "${@}" --runtime-option -Xjitthreshold:0 --runtime-option -Xjitinitialsize:32M
|
/art/compiler/jit/ |
D | jit_compiler.cc | 74 for (const std::string& option : runtime->GetCompilerOptions()) { in ParseCompilerOptions() local 75 VLOG(compiler) << "JIT compiler option " << option; in ParseCompilerOptions() 77 if (StartsWith(option, "--instruction-set-variant=")) { in ParseCompilerOptions() 78 const char* str = option.c_str() + strlen("--instruction-set-variant="); in ParseCompilerOptions() 83 LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; in ParseCompilerOptions() 85 } else if (StartsWith(option, "--instruction-set-features=")) { in ParseCompilerOptions() 86 const char* str = option.c_str() + strlen("--instruction-set-features="); in ParseCompilerOptions() 92 LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; in ParseCompilerOptions() 98 LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; in ParseCompilerOptions()
|
/art/test/159-app-image-fields/ |
D | run | 19 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \ 20 -Xcompiler-option -j1
|
/art/test/163-app-image-methods/ |
D | run | 19 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \ 20 -Xcompiler-option -j1
|
/art/test/638-checker-inline-cache-intrinsic/ |
D | run | 19 exec ${RUN} --jit --runtime-option -Xjitthreshold:100 -Xcompiler-option --verbose-methods=inlineMon…
|
/art/test/164-resolution-trampoline-dex-cache/ |
D | run | 21 -Xcompiler-option --compiler-filter=speed-profile --profile \ 22 --runtime-option -Xusejit:true
|
/art/test/1003-metadata-section-strings/ |
D | run | 17 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile -Xcompiler-option --reso…
|
/art/test/134-nodex2oat-nofallback/ |
D | run | 20 ${RUN} ${flags} --runtime-option -Xno-dex-file-fallback --runtime-option -XX:FastClassNotFoundExcep…
|
/art/test/304-method-tracing/ |
D | run | 18 exec ${RUN} "$@" --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file:${DEX_LOCATIO…
|
/art/compiler/driver/ |
D | compiler_options.cc | 104 bool CompilerOptions::ParseDumpInitFailures(const std::string& option, std::string* error_msg) { in ParseDumpInitFailures() argument 105 init_failure_output_.reset(new std::ofstream(option)); in ParseDumpInitFailures() 111 "Failed to open %s for writing the initialization failures.", option.c_str()); in ParseDumpInitFailures() 118 bool CompilerOptions::ParseRegisterAllocationStrategy(const std::string& option, in ParseRegisterAllocationStrategy() argument 120 if (option == "linear-scan") { in ParseRegisterAllocationStrategy() 122 } else if (option == "graph-color") { in ParseRegisterAllocationStrategy()
|