Lines Matching refs:Comm
8184 if (const SCEVCommutativeExpr *Comm = dyn_cast<SCEVCommutativeExpr>(V)) { in computeSCEVAtScope() local
8187 for (unsigned i = 0, e = Comm->getNumOperands(); i != e; ++i) { in computeSCEVAtScope()
8188 const SCEV *OpAtScope = getSCEVAtScope(Comm->getOperand(i), L); in computeSCEVAtScope()
8189 if (OpAtScope != Comm->getOperand(i)) { in computeSCEVAtScope()
8192 SmallVector<const SCEV *, 8> NewOps(Comm->op_begin(), in computeSCEVAtScope()
8193 Comm->op_begin()+i); in computeSCEVAtScope()
8197 OpAtScope = getSCEVAtScope(Comm->getOperand(i), L); in computeSCEVAtScope()
8200 if (isa<SCEVAddExpr>(Comm)) in computeSCEVAtScope()
8202 if (isa<SCEVMulExpr>(Comm)) in computeSCEVAtScope()
8204 if (isa<SCEVSMaxExpr>(Comm)) in computeSCEVAtScope()
8206 if (isa<SCEVUMaxExpr>(Comm)) in computeSCEVAtScope()
8212 return Comm; in computeSCEVAtScope()