Lines Matching refs:Comm
5009 if (const SCEVCommutativeExpr *Comm = dyn_cast<SCEVCommutativeExpr>(V)) { in computeSCEVAtScope() local
5012 for (unsigned i = 0, e = Comm->getNumOperands(); i != e; ++i) { in computeSCEVAtScope()
5013 const SCEV *OpAtScope = getSCEVAtScope(Comm->getOperand(i), L); in computeSCEVAtScope()
5014 if (OpAtScope != Comm->getOperand(i)) { in computeSCEVAtScope()
5017 SmallVector<const SCEV *, 8> NewOps(Comm->op_begin(), in computeSCEVAtScope()
5018 Comm->op_begin()+i); in computeSCEVAtScope()
5022 OpAtScope = getSCEVAtScope(Comm->getOperand(i), L); in computeSCEVAtScope()
5025 if (isa<SCEVAddExpr>(Comm)) in computeSCEVAtScope()
5027 if (isa<SCEVMulExpr>(Comm)) in computeSCEVAtScope()
5029 if (isa<SCEVSMaxExpr>(Comm)) in computeSCEVAtScope()
5031 if (isa<SCEVUMaxExpr>(Comm)) in computeSCEVAtScope()
5037 return Comm; in computeSCEVAtScope()