Home | History | Annotate | Download | only in IR

Lines Matching defs:Div

1120         assert(!CI2->isNullValue() && "Div by zero handled above");
1123 assert(!CI2->isNullValue() && "Div by zero handled above");
1128 assert(!CI2->isNullValue() && "Div by zero handled above");
1131 assert(!CI2->isNullValue() && "Div by zero handled above");
2193 Constant *Div = ConstantExpr::getSDiv(CI, Factor);
2197 Div->getType()->getIntegerBitWidth());
2205 Type::getIntNTy(Div->getContext(), CommonExtendedWidth));
2206 if (!Div->getType()->isIntegerTy(CommonExtendedWidth))
2207 Div = ConstantExpr::getSExt(
2208 Div, Type::getIntNTy(Div->getContext(), CommonExtendedWidth));
2210 NewIdxs[i-1] = ConstantExpr::getAdd(PrevIdx, Div);