Lines Matching refs:Comm
5264 if (const SCEVCommutativeExpr *Comm = dyn_cast<SCEVCommutativeExpr>(V)) {
5267 for (unsigned i = 0, e = Comm->getNumOperands(); i != e; ++i) {
5268 const SCEV *OpAtScope = getSCEVAtScope(Comm->getOperand(i), L);
5269 if (OpAtScope != Comm->getOperand(i)) {
5272 SmallVector<const SCEV *, 8> NewOps(Comm->op_begin(),
5273 Comm->op_begin()+i);
5277 OpAtScope = getSCEVAtScope(Comm->getOperand(i), L);
5280 if (isa<SCEVAddExpr>(Comm))
5282 if (isa<SCEVMulExpr>(Comm))
5284 if (isa<SCEVSMaxExpr>(Comm))
5286 if (isa<SCEVUMaxExpr>(Comm))
5292 return Comm;