Lines Matching refs:HasVectorRestrictions
365 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()
1994 if ((!is_unsigned && HasVectorRestrictions(restrictions, kNoSignedHAdd)) || in VectorizeHalvingAddIdiom()
1995 (!is_rounded && HasVectorRestrictions(restrictions, kNoUnroundedHAdd))) { in VectorizeHalvingAddIdiom()
2070 HasVectorRestrictions(restrictions, kNoSAD) || in VectorizeSADIdiom()
2071 (reduction_type != sub_type && HasVectorRestrictions(restrictions, kNoWideSAD))) { in VectorizeSADIdiom()
2143 HasVectorRestrictions(restrictions, kNoDotProd)) { in VectorizeDotProdIdiom()