Lines Matching defs:P0

179   Constant *P0 = ConstantExpr::getPtrToInt(Global, Int32Ty);
180 Constant *P1 = ConstantExpr::getUIToFP(P0, FloatTy);
181 Constant *P2 = ConstantExpr::getUIToFP(P0, DoubleTy);
182 Constant *P3 = ConstantExpr::getTrunc(P0, Int1Ty);
197 CHECK(ConstantExpr::getNeg(P0), "sub i32 0, " P0STR);
199 CHECK(ConstantExpr::getNot(P0), "xor i32 " P0STR ", -1");
200 CHECK(ConstantExpr::getAdd(P0, P0), "add i32 " P0STR ", " P0STR);
201 CHECK(ConstantExpr::getAdd(P0, P0, false, true), "add nsw i32 " P0STR ", "
203 CHECK(ConstantExpr::getAdd(P0, P0, true, true), "add nuw nsw i32 " P0STR ", "
206 CHECK(ConstantExpr::getSub(P0, P0), "sub i32 " P0STR ", " P0STR);
208 CHECK(ConstantExpr::getMul(P0, P0), "mul i32 " P0STR ", " P0STR);
210 CHECK(ConstantExpr::getUDiv(P0, P0), "udiv i32 " P0STR ", " P0STR);
211 CHECK(ConstantExpr::getSDiv(P0, P0), "sdiv i32 " P0STR ", " P0STR);
213 CHECK(ConstantExpr::getURem(P0, P0), "urem i32 " P0STR ", " P0STR);
214 CHECK(ConstantExpr::getSRem(P0, P0), "srem i32 " P0STR ", " P0STR);
216 CHECK(ConstantExpr::getAnd(P0, P0), "and i32 " P0STR ", " P0STR);
217 CHECK(ConstantExpr::getOr(P0, P0), "or i32 " P0STR ", " P0STR);
218 CHECK(ConstantExpr::getXor(P0, P0), "xor i32 " P0STR ", " P0STR);
219 CHECK(ConstantExpr::getShl(P0, P0), "shl i32 " P0STR ", " P0STR);
220 CHECK(ConstantExpr::getShl(P0, P0, true), "shl nuw i32 " P0STR ", " P0STR);
221 CHECK(ConstantExpr::getShl(P0, P0, false, true), "shl nsw i32 " P0STR ", "
223 CHECK(ConstantExpr::getLShr(P0, P0, false), "lshr i32 " P0STR ", " P0STR);
224 CHECK(ConstantExpr::getLShr(P0, P0, true), "lshr exact i32 " P0STR ", " P0STR);
225 CHECK(ConstantExpr::getAShr(P0, P0, false), "ashr i32 " P0STR ", " P0STR);
226 CHECK(ConstantExpr::getAShr(P0, P0, true), "ashr exact i32 " P0STR ", " P0STR);
228 CHECK(ConstantExpr::getSExt(P0, Int64Ty), "sext i32 " P0STR " to i64");
229 CHECK(ConstantExpr::getZExt(P0, Int64Ty), "zext i32 " P0STR " to i64");
235 CHECK(ConstantExpr::getExactUDiv(P0, P0), "udiv exact i32 " P0STR ", " P0STR);
237 CHECK(ConstantExpr::getSelect(P3, P0, P4), "select i1 " P3STR ", i32 " P0STR
239 CHECK(ConstantExpr::getICmp(CmpInst::ICMP_EQ, P0, P4), "icmp eq i32 " P0STR