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

/art/runtime/arch/arm64/
H A Dinstruction_set_features_arm64.cc72 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
137 std::string feature = Trim(*i); local
138 if (feature == "a53") {
140 } else if (feature == "-a53") {
143 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
/art/runtime/arch/mips64/
H A Dinstruction_set_features_mips64.cc49 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
107 std::string feature = Trim(*i); local
108 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
/art/runtime/arch/arm/
H A Dinstruction_set_features_arm.cc75 // TODO: some of the variants below may have feature support, but that support is currently
127 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
272 std::string feature = Trim(*i); local
273 if (feature == "div") {
275 } else if (feature == "-div") {
277 } else if (feature == "atomic_ldrd_strd") {
279 } else if (feature == "-atomic_ldrd_strd") {
282 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
/art/runtime/arch/
H A Dinstruction_set_features.cc221 bool use_default = false; // Have we seen the 'default' feature?
222 bool first = false; // Is this first feature?
228 std::string feature = Trim(*it); local
230 if (feature == "default") {
238 } else if (feature == "smp") {
241 } else if (feature == "-smp") {
245 // Erase the smp feature once processed.
/art/runtime/arch/mips/
H A Dinstruction_set_features_mips.cc124 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
209 std::string feature = Trim(*i); local
210 if (feature == "fpu32") {
212 } else if (feature == "-fpu32") {
214 } else if (feature == "mips2") {
216 } else if (feature == "-mips2") {
218 } else if (feature == "r6") {
220 } else if (feature == "-r6") {
223 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature
[all...]
/art/runtime/arch/x86/
H A Dinstruction_set_features_x86.cc170 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
319 std::string feature = Trim(*i); local
320 if (feature == "ssse3") {
322 } else if (feature == "-ssse3") {
324 } else if (feature == "sse4.1") {
326 } else if (feature == "-sse4.1") {
328 } else if (feature == "sse4.2") {
330 } else if (feature == "-sse4.2") {
332 } else if (feature == "avx") {
334 } else if (feature
[all...]

Completed in 129 milliseconds