Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 145) sorted by relevance

123456

/art/test/595-profile-saving/
Drun24 -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/libartbase/base/
Dcompiler_filter.cc164 bool CompilerFilter::ParseCompilerFilter(const char* option, Filter* filter) { in ParseCompilerFilter() argument
167 if (strcmp(option, "verify-none") == 0) { in ParseCompilerFilter()
171 } else if (strcmp(option, "interpret-only") == 0) { in ParseCompilerFilter()
175 } else if (strcmp(option, "verify-profile") == 0) { in ParseCompilerFilter()
179 } else if (strcmp(option, "verify-at-runtime") == 0) { in ParseCompilerFilter()
183 } else if (strcmp(option, "balanced") == 0) { in ParseCompilerFilter()
187 } else if (strcmp(option, "time") == 0) { in ParseCompilerFilter()
191 } else if (strcmp(option, "assume-verified") == 0) { in ParseCompilerFilter()
193 } else if (strcmp(option, "extract") == 0) { in ParseCompilerFilter()
195 } else if (strcmp(option, "verify") == 0) { in ParseCompilerFilter()
[all …]
/art/test/2230-profile-save-hotness/
Drun17 -Xcompiler-option --count-hotness-in-compiled-code \
18 -Xcompiler-option --compiler-filter=speed \
19 --runtime-option -Xps-profile-aot-code \
20 --runtime-option -Xjitsaveprofilinginfo \
21 --runtime-option -Xusejit:true "${@}"
/art/test/137-cfi/
Drun19 ${RUN} "$@" -Xcompiler-option --generate-debug-info \
25 ${RUN} "$@" -Xcompiler-option --generate-debug-info \
26 --runtime-option -Xjitthreshold:0 \
33 ${RUN} "$@" -Xcompiler-option --generate-mini-debug-info \
34 --runtime-option -Xjitthreshold:0 \
/art/test/909-attach-agent/
Drun60 ./default-run "$@" --android-runtime-option -Xplugin:${plugin} \
61 --android-runtime-option -Xcompiler-option \
62 --android-runtime-option --debuggable \
67 ./default-run "$@" --android-runtime-option -Xcompiler-option \
68 --android-runtime-option --debuggable \
/art/test/
Drun-test230 option="$1"
232 run_args+=("$option" "$1")
238 run_args+=(-Xcompiler-option --debuggable)
276 option="$1"
277 run_args+=(-Xcompiler-option "$option")
281 option="$1"
282 build_args="${build_args} $option"
286 option="$1"
287 run_args+=(--runtime-option "$option")
302 option="$1"
[all …]
/art/dexoptanalyzer/
Ddexoptanalyzer.cc171 const std::string_view option(raw_option); in ParseArgs() local
173 if (StartsWith(option, "--profile-analysis-result=")) { in ParseArgs()
175 option.substr(strlen("--profile-analysis-result="))), nullptr, 0); 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()
[all …]
/art/cmdline/
Dcmdline_types.h92 Result Parse(const std::string& option) {
93 if (option == "help") {
98 } else if (option == "default") {
100 } else if (option == "adbconnection") {
102 } else if (option == "none") {
105 return Result::Failure(std::string("not a valid jdwp provider: ") + option);
481 static gc::CollectorType ParseCollectorType(const std::string& option) {
482 if (option == "MS" || option == "nonconcurrent") {
484 } else if (option == "CMS" || option == "concurrent") {
486 } else if (option == "SS") {
[all …]
/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc290 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/821-madvise-willneed/
Drun19 exec ${RUN} "${@}" --runtime-option -XMadviseWillNeedVdexFileSize:104857600 \
20 --runtime-option -XMadviseWillNeedOdexFileSize:104857600 \
21 --runtime-option -XMadviseWillNeedArtFileSize:104857600
/art/test/157-void-class/
Drun21 --runtime-option -Ximage-compiler-option \
22 --runtime-option --compiler-filter=verify
/art/test/159-app-image-fields/
Drun20 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \
21 -Xcompiler-option -j1 --runtime-option -Xmx16m
/art/test/163-app-image-methods/
Drun20 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \
21 -Xcompiler-option -j1 --runtime-option -Xmx16m
/art/test/2031-zygote-compiled-frame-deopt/
Drun21 ./default-run "$@" --runtime-option -Xopaque-jni-ids:true --add-libdir-argument --runtime-option -X…
/art/test/638-checker-inline-cache-intrinsic/
Drun22 exec ${RUN} --jit --runtime-option -Xjitinitialsize:32M --runtime-option -Xjitthreshold:1000 -Xcomp…
/art/test/677-fsi/
Drun19 exec ${RUN} $@ -Xcompiler-option --copy-dex-files=always --runtime-option -Xonly-use-system-oat-fil…
/art/test/004-ThreadStress/
Drun18 ${RUN} --runtime-option -Xlockprofthreshold:10 "${@}"
23 ${RUN} --runtime-option -Xlockprofthreshold:10 --runtime-option -Xstackdumplockprofthreshold:20 \
/art/test/178-app-image-native-method/
Drun19 ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \
20 -Xcompiler-option --large-method-max=2000
24 ${RUN} ${@} --profile -Xcompiler-option --compiler-filter=verify
/art/compiler/jit/
Djit_compiler.cc78 for (const std::string& option : runtime->GetCompilerOptions()) { in ParseCompilerOptions() local
79 VLOG(compiler) << "JIT compiler option " << option; in ParseCompilerOptions()
81 if (StartsWith(option, "--instruction-set-variant=")) { in ParseCompilerOptions()
82 const char* str = option.c_str() + strlen("--instruction-set-variant="); in ParseCompilerOptions()
87 LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; in ParseCompilerOptions()
89 } else if (StartsWith(option, "--instruction-set-features=")) { in ParseCompilerOptions()
90 const char* str = option.c_str() + strlen("--instruction-set-features="); in ParseCompilerOptions()
96 LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; in ParseCompilerOptions()
102 LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; in ParseCompilerOptions()
/art/test/900-hello-plugin/
Drun43 ./default-run "$@" --runtime-option -agentpath:${plugin}=test_900 \
44 --runtime-option -agentpath:${plugin}=test_900_round_2 \
45 --android-runtime-option -Xplugin:${plugin}
/art/compiler/driver/
Dcompiler_options.cc106 bool CompilerOptions::ParseDumpInitFailures(const std::string& option, std::string* error_msg) { in ParseDumpInitFailures() argument
107 init_failure_output_.reset(new std::ofstream(option)); in ParseDumpInitFailures()
113 "Failed to open %s for writing the initialization failures.", option.c_str()); in ParseDumpInitFailures()
120 bool CompilerOptions::ParseRegisterAllocationStrategy(const std::string& option, in ParseRegisterAllocationStrategy() argument
122 if (option == "linear-scan") { in ParseRegisterAllocationStrategy()
124 } else if (option == "graph-color") { in ParseRegisterAllocationStrategy()
/art/test/597-deopt-invoke-stub/
Drun21 exec ${RUN} "${@}" --jit --runtime-option -Xjitthreshold:10000 -Xcompiler-option --debuggable
/art/test/676-proxy-jit-at-first-use/
Drun19 ${RUN} "${@}" --runtime-option -Xjitthreshold:0 --runtime-option -Xjitinitialsize:32M
/art/test/652-deopt-intrinsic/
Drun22 exec ${RUN} "$@" --runtime-option -Xjitinitialsize:32M --runtime-option -Xjitthreshold:1000
/art/test/164-resolution-trampoline-dex-cache/
Drun21 -Xcompiler-option --compiler-filter=speed-profile --profile \
22 --runtime-option -Xusejit:true

123456