Home
last modified time | relevance | path

Searched refs:HasVectorRestrictions (Results 1 – 1 of 1) sorted by relevance

/art/compiler/optimizing/
Dloop_optimization.cc365 static bool HasVectorRestrictions(uint64_t restrictions, uint64_t tested) { in HasVectorRestrictions() function
1363 if (is_string_char_at && HasVectorRestrictions(restrictions, kNoStringCharAt)) { in VectorizeUse()
1389 if (HasVectorRestrictions(restrictions, kNoReduction)) { in VectorizeUse()
1456 if ((instruction->IsMul() && HasVectorRestrictions(restrictions, kNoMul)) || in VectorizeUse()
1457 (instruction->IsDiv() && HasVectorRestrictions(restrictions, kNoDiv))) { in VectorizeUse()
1480 if ((HasVectorRestrictions(restrictions, kNoShift)) || in VectorizeUse()
1481 (instruction->IsShr() && HasVectorRestrictions(restrictions, kNoShr))) { in VectorizeUse()
1483 } else if (HasVectorRestrictions(restrictions, kNoHiBits)) { in VectorizeUse()
1517 if (HasVectorRestrictions(restrictions, kNoAbs)) { in VectorizeUse()
1519 } else if (HasVectorRestrictions(restrictions, kNoHiBits) && in VectorizeUse()
[all …]