Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Multiple

1069 /// ComputeMultiple - This function computes the integer multiple of Base that
1070 /// equals V. If successful, it returns true and returns the multiple in
1071 /// Multiple. If unsuccessful, it returns false. It looks
1073 bool llvm::ComputeMultiple(Value *V, unsigned Base, Value *&Multiple,
1089 Multiple = V;
1096 // Multiple is 1.
1097 Multiple = ConstantInt::get(T, 1);
1102 Multiple = ConstantInt::get(T, CI->getZExtValue() / Base);
1117 return ComputeMultiple(I->getOperand(0), Base, Multiple,
1147 Multiple = ConstantExpr::getMul(MulC, Op1C);
1154 Multiple = Op1;
1171 Multiple = ConstantExpr::getMul(MulC, Op0C);
1178 Multiple = Op0;
1185 // We could not determine if V is a multiple of Base.
1263 // multiple of 8 bits.