Searched refs:HasVectorRestrictions (Results 1 – 1 of 1) sorted by relevance
/art/compiler/optimizing/ |
D | loop_optimization.cc | 365 static bool HasVectorRestrictions(uint64_t restrictions, uint64_t tested) { in HasVectorRestrictions() function 1400 if (is_string_char_at && (HasVectorRestrictions(restrictions, kNoStringCharAt) || in VectorizeUse() 1428 if (HasVectorRestrictions(restrictions, kNoReduction)) { in VectorizeUse() 1495 if ((instruction->IsMul() && HasVectorRestrictions(restrictions, kNoMul)) || in VectorizeUse() 1496 (instruction->IsDiv() && HasVectorRestrictions(restrictions, kNoDiv))) { in VectorizeUse() 1519 if ((HasVectorRestrictions(restrictions, kNoShift)) || in VectorizeUse() 1520 (instruction->IsShr() && HasVectorRestrictions(restrictions, kNoShr))) { in VectorizeUse() 1522 } else if (HasVectorRestrictions(restrictions, kNoHiBits)) { in VectorizeUse() 1556 if (HasVectorRestrictions(restrictions, kNoAbs)) { in VectorizeUse() 1558 } else if (HasVectorRestrictions(restrictions, kNoHiBits) && in VectorizeUse() [all …]
|