Home
last modified time | relevance | path

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

1234

/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/dexoptanalyzer/
Ddexoptanalyzer.cc156 const StringPiece option(argv[i]); in ParseArgs() local
157 if (option == "--assume-profile-changed") { in ParseArgs()
159 } else if (option.starts_with("--dex-file=")) { in ParseArgs()
160 dex_file_ = option.substr(strlen("--dex-file=")).ToString(); in ParseArgs()
161 } else if (option.starts_with("--compiler-filter=")) { in ParseArgs()
162 std::string filter_str = option.substr(strlen("--compiler-filter=")).ToString(); in ParseArgs()
164 Usage("Invalid compiler filter '%s'", option.data()); in ParseArgs()
166 } else if (option.starts_with("--isa=")) { in ParseArgs()
167 std::string isa_str = option.substr(strlen("--isa=")).ToString(); in ParseArgs()
170 Usage("Invalid isa '%s'", option.data()); in ParseArgs()
[all …]
/art/test/119-noimage-patchoat/
Drun34 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat \
35 --runtime-option -Xpatchoat:${false_bin}
40 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat \
41 --runtime-option -Xpatchoat:${false_bin} --runtime-option -Xno-dex-file-fallback
47 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
/art/test/909-attach-agent/
Drun32 ./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/
Dcompiler_filter.cc188 bool CompilerFilter::ParseCompilerFilter(const char* option, Filter* filter) { in ParseCompilerFilter() argument
191 if (strcmp(option, "verify-none") == 0) { in ParseCompilerFilter()
195 } else if (strcmp(option, "interpret-only") == 0) { in ParseCompilerFilter()
199 } else if (strcmp(option, "verify-profile") == 0) { in ParseCompilerFilter()
203 } else if (strcmp(option, "verify-at-runtime") == 0) { in ParseCompilerFilter()
207 } else if (strcmp(option, "balanced") == 0) { in ParseCompilerFilter()
211 } else if (strcmp(option, "time") == 0) { in ParseCompilerFilter()
215 } else if (strcmp(option, "assume-verified") == 0) { in ParseCompilerFilter()
217 } else if (strcmp(option, "extract") == 0) { in ParseCompilerFilter()
219 } else if (strcmp(option, "verify") == 0) { in ParseCompilerFilter()
[all …]
/art/test/118-noimage-dex2oat/
Drun50 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat
55 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat \
56 --runtime-option -Xno-dex-file-fallback
61 ${RUN} ${flags} ${bpath_arg} --runtime-option -Ximage-dex2oat
/art/test/137-cfi/
Drun21 ${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/cmdline/
Dcmdline_types.h73 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/
Drun21 --runtime-option -Ximage-compiler-option \
22 --runtime-option --compiler-filter=verify
/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/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/tools/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/compiler/driver/
Dcompiler_options.cc85 bool CompilerOptions::ParseDumpInitFailures(const std::string& option, std::string* error_msg) { in ParseDumpInitFailures() argument
86 init_failure_output_.reset(new std::ofstream(option)); in ParseDumpInitFailures()
92 "Failed to open %s for writing the initialization failures.", option.c_str()); in ParseDumpInitFailures()
99 bool CompilerOptions::ParseRegisterAllocationStrategy(const std::string& option, in ParseRegisterAllocationStrategy() argument
101 if (option == "linear-scan") { in ParseRegisterAllocationStrategy()
103 } else if (option == "graph-color") { in ParseRegisterAllocationStrategy()
Dcompiler_options.h282 bool ParseDumpInitFailures(const std::string& option, std::string* error_msg);
283 void ParseDumpCfgPasses(const StringPiece& option, UsageFn Usage);
284 void ParseInlineMaxCodeUnits(const StringPiece& option, UsageFn Usage);
285 void ParseNumDexMethods(const StringPiece& option, UsageFn Usage);
286 void ParseTinyMethodMax(const StringPiece& option, UsageFn Usage);
287 void ParseSmallMethodMax(const StringPiece& option, UsageFn Usage);
288 void ParseLargeMethodMax(const StringPiece& option, UsageFn Usage);
289 void ParseHugeMethodMax(const StringPiece& option, UsageFn Usage);
290 bool ParseRegisterAllocationStrategy(const std::string& option, std::string* error_msg);
/art/compiler/jit/
Djit_compiler.cc107 for (const StringPiece option : Runtime::Current()->GetCompilerOptions()) { in JitCompiler() local
108 VLOG(compiler) << "JIT compiler option " << option; in JitCompiler()
110 if (option.starts_with("--instruction-set-variant=")) { in JitCompiler()
111 StringPiece str = option.substr(strlen("--instruction-set-variant=")).data(); in JitCompiler()
116 LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; in JitCompiler()
118 } else if (option.starts_with("--instruction-set-features=")) { in JitCompiler()
119 StringPiece str = option.substr(strlen("--instruction-set-features=")).data(); in JitCompiler()
125 LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; in JitCompiler()
131 LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; in JitCompiler()
/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/159-app-image-fields/
Drun19 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \
20 -Xcompiler-option -j1
/art/test/163-app-image-methods/
Drun19 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \
20 -Xcompiler-option -j1
/art/test/638-checker-inline-cache-intrinsic/
Drun17 exec ${RUN} --jit --runtime-option -Xjitthreshold:100 -Xcompiler-option --verbose-methods=inlineMon…
/art/test/134-nodex2oat-nofallback/
Drun20 ${RUN} ${flags} --runtime-option -Xnodex2oat --runtime-option -Xno-dex-file-fallback
/art/test/164-resolution-trampoline-dex-cache/
Drun21 -Xcompiler-option --compiler-filter=speed-profile --profile \
22 --runtime-option -Xusejit:true
/art/test/304-method-tracing/
Drun18 exec ${RUN} "$@" --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file:${DEX_LOCATIO…
/art/profman/
Dprofman.cc219 const StringPiece option(argv[i]); in ParseArgs() local
224 if (option == "--dump-only") { in ParseArgs()
226 } else if (option == "--dump-classes-and-methods") { in ParseArgs()
228 } else if (option.starts_with("--create-profile-from=")) { in ParseArgs()
229 create_profile_from_file_ = option.substr(strlen("--create-profile-from=")).ToString(); in ParseArgs()
230 } else if (option.starts_with("--dump-output-to-fd=")) { in ParseArgs()
231 ParseUintOption(option, "--dump-output-to-fd", &dump_output_to_fd_, Usage); in ParseArgs()
232 } else if (option == "--generate-boot-image-profile") { in ParseArgs()
234 } else if (option.starts_with("--boot-image-class-threshold=")) { in ParseArgs()
235 ParseUintOption(option, in ParseArgs()
[all …]

1234