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

/art/dex2oat/
H A Ddex2oat.cc874 const char* compiler_filter_string = nullptr; local
1009 compiler_filter_string = option.substr(strlen("--compiler-filter=")).data();
1213 if (compiler_filter_string == nullptr) {
1216 compiler_filter_string = "interpret-only";
1218 compiler_filter_string = "speed";
1221 compiler_filter_string = "interpret-only";
1223 compiler_filter_string = "speed";
1227 CHECK(compiler_filter_string != nullptr);
1229 if (strcmp(compiler_filter_string, "verify-none") == 0) {
1231 } else if (strcmp(compiler_filter_string, "interpre
[all...]

Completed in 187 milliseconds