Home | History | Annotate | Download | only in Vectorize

Lines Matching defs:BI

3990 /// the phi node P with reduction operators BI, then check if it
3994 static bool canMatchHorizontalReduction(PHINode *P, BinaryOperator *BI,
4000 if (!HorRdx.matchAssociativeReduction(P, BI))
4083 BinaryOperator *BI = dyn_cast_or_null<BinaryOperator>(Rdx);
4084 if (!BI)
4088 if (canMatchHorizontalReduction(P, BI, R, TTI)) {
4095 Value *Inst = BI->getOperand(0);
4097 Inst = BI->getOperand(1);
4151 if (BinaryOperator *BI = dyn_cast<BinaryOperator>(CI->getOperand(i))) {
4152 if (tryToVectorizePair(BI->getOperand(0), BI->getOperand(1), R)) {