Searched refs:HasVectorRestrictions (Results 1 – 1 of 1) sorted by relevance
/art/compiler/optimizing/ |
D | loop_optimization.cc | 363 static bool HasVectorRestrictions(uint64_t restrictions, uint64_t tested) { in HasVectorRestrictions() function 1366 if (is_string_char_at && HasVectorRestrictions(restrictions, kNoStringCharAt)) { in VectorizeUse() 1392 if (HasVectorRestrictions(restrictions, kNoReduction)) { in VectorizeUse() 1459 if ((instruction->IsMul() && HasVectorRestrictions(restrictions, kNoMul)) || in VectorizeUse() 1460 (instruction->IsDiv() && HasVectorRestrictions(restrictions, kNoDiv))) { in VectorizeUse() 1483 if ((HasVectorRestrictions(restrictions, kNoShift)) || in VectorizeUse() 1484 (instruction->IsShr() && HasVectorRestrictions(restrictions, kNoShr))) { in VectorizeUse() 1486 } else if (HasVectorRestrictions(restrictions, kNoHiBits)) { in VectorizeUse() 1520 if (HasVectorRestrictions(restrictions, kNoAbs)) { in VectorizeUse() 1522 } else if (HasVectorRestrictions(restrictions, kNoHiBits) && in VectorizeUse() [all …]
|