Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Multiple

1259 /// ComputeMultiple - This function computes the integer multiple of Base that
1260 /// equals V. If successful, it returns true and returns the multiple in
1261 /// Multiple. If unsuccessful, it returns false. It looks
1263 bool llvm::ComputeMultiple(Value *V, unsigned Base, Value *&Multiple,
1279 Multiple = V;
1286 // Multiple is 1.
1287 Multiple = ConstantInt::get(T, 1);
1292 Multiple = ConstantInt::get(T, CI->getZExtValue() / Base);
1307 return ComputeMultiple(I->getOperand(0), Base, Multiple,
1337 Multiple = ConstantExpr::getMul(MulC, Op1C);
1344 Multiple = Op1;
1361 Multiple = ConstantExpr::getMul(MulC, Op0C);
1368 Multiple = Op0;
1375 // We could not determine if V is a multiple of Base.
1458 // multiple of 8 bits.