Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Operand

2256 // Given a product, e.g., 10*X*Y, returns the first constant operand,
2343 const SCEV *Operand = Sum->getOperand(Op);
2344 if (isa<SCEVConstant>(Operand)) {
2346 Constant = cast<SCEVConstant>(Operand);
2348 else if (const SCEVMulExpr *Product = dyn_cast<SCEVMulExpr>(Operand)) {
2349 // Search for constant operand to participate in GCD;