Home | History | Annotate | Download | only in ARM

Lines Matching refs:ExtTy

242 /// Return whether we can safely mutate V's type to ExtTy without having to be
287 Type *ExtTy = Type::getInt32Ty(M->getContext());
311 ConstantExpr::getSExt(Const, ExtTy) :
312 ConstantExpr::getZExt(Const, ExtTy);
319 NewConst = ConstantInt::get(ExtTy, NewVal);
343 auto *ZExt = cast<Instruction>(Builder.CreateZExt(V, ExtTy));
357 ZExt->mutateType(ExtTy);
384 if ((U->getType() == ExtTy) || !isSupportedType(&*U))
390 U->mutateType(ExtTy);
394 I->mutateType(ExtTy);
405 if (ZExt->getDestTy() != ExtTy) {
406 ZExt->mutateType(ExtTy);
409 else if (ZExt->getSrcTy() == ExtTy) {
445 if (TruncTy == ExtTy)