Searched defs:compiler_filter_string (Results 1 - 1 of 1) sorted by relevance

/art/dex2oat/
H A Ddex2oat.cc840 const char* compiler_filter_string = nullptr; local
966 compiler_filter_string = option.substr(strlen("--compiler-filter=")).data();
1146 if (compiler_filter_string == nullptr) {
1149 compiler_filter_string = "interpret-only";
1151 compiler_filter_string = "speed";
1154 compiler_filter_string = "interpret-only";
1156 compiler_filter_string = "speed";
1160 CHECK(compiler_filter_string != nullptr);
1162 if (strcmp(compiler_filter_string, "verify-none") == 0) {
1164 } else if (strcmp(compiler_filter_string, "interpre
[all...]

Completed in 20 milliseconds