Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 131) 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/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/runtime/
Dcompiler_filter.cc190 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/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/dexoptanalyzer/
Ddexoptanalyzer.cc179 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/172-app-image-twice/
Drun23 ${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/test/
Drun-test227 option="$1"
229 run_args+=("$option" "$1")
235 run_args+=(-Xcompiler-option --debuggable)
273 option="$1"
274 run_args+=(-Xcompiler-option "$option")
278 option="$1"
279 build_args="${build_args} $option"
283 option="$1"
284 run_args+=(--runtime-option "$option")
299 option="$1"
[all …]
/art/test/157-void-class/
Drun21 --runtime-option -Ximage-compiler-option \
22 --runtime-option --compiler-filter=verify
/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/159-app-image-fields/
Drun20 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \
21 -Xcompiler-option -j1 --runtime-option -Xmx16m
/art/test/638-checker-inline-cache-intrinsic/
Drun22 exec ${RUN} --jit --runtime-option -Xjitinitialsize:32M --runtime-option -Xjitthreshold:1000 -Xcomp…
/art/test/2031-zygote-compiled-frame-deopt/
Drun21 ./default-run "$@" --runtime-option -Xopaque-jni-ids:true --add-libdir-argument --runtime-option -X…
/art/test/004-ThreadStress/
Drun18 ${RUN} --runtime-option -Xlockprofthreshold:10 "${@}"
23 ${RUN} --runtime-option -Xlockprofthreshold:10 --runtime-option -Xstackdumplockprofthreshold:20 \
/art/test/677-fsi/
Drun19 exec ${RUN} $@ -Xcompiler-option --copy-dex-files=always --runtime-option -Xonly-use-system-oat-fil…
/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/cmdline/
Dcmdline_types.h75 Result Parse(const std::string& option) {
76 if (option == "help") {
81 } else if (option == "default") {
83 } else if (option == "adbconnection") {
85 } else if (option == "none") {
88 return Result::Failure(std::string("not a valid jdwp provider: ") + option);
464 static gc::CollectorType ParseCollectorType(const std::string& option) {
465 if (option == "MS" || option == "nonconcurrent") {
467 } else if (option == "CMS" || option == "concurrent") {
469 } else if (option == "SS") {
[all …]
/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/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/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/652-deopt-intrinsic/
Drun22 exec ${RUN} "$@" --runtime-option -Xjitinitialsize:32M --runtime-option -Xjitthreshold:1000
/art/test/676-proxy-jit-at-first-use/
Drun19 ${RUN} "${@}" --runtime-option -Xjitthreshold:0 --runtime-option -Xjitinitialsize:32M
/art/test/597-deopt-invoke-stub/
Drun21 exec ${RUN} "${@}" --jit --runtime-option -Xjitthreshold:10000 -Xcompiler-option --debuggable
/art/test/164-resolution-trampoline-dex-cache/
Drun21 -Xcompiler-option --compiler-filter=speed-profile --profile \
22 --runtime-option -Xusejit:true
/art/test/1003-metadata-section-strings/
Drun17 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile -Xcompiler-option --reso…

123456