Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Op1

1122     Value *Op1 = I->getOperand(1);
1125 ConstantInt *Op1CI = dyn_cast<ConstantInt>(Op1);
1127 // Turn Op0 << Op1 into Op0 * 2^Op1
1132 Op1 = ConstantInt::get(V->getContext(), API);
1137 if (Constant *Op1C = dyn_cast<Constant>(Op1))
1146 // V == Base * (Mul0 * Op1), so return (Mul0 * Op1)
1153 // V == Base * Op1, so return Op1
1154 Multiple = Op1;
1160 if (ComputeMultiple(Op1, Base, Mul1, LookThroughSExt, Depth+1)) {