Lines Matching defs:FullV
5756 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), nullptr);
5758 Ops.push_back(SE.getUnknown(FullV));
5772 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), IntTy);
5774 Ops.push_back(SE.getUnknown(FullV));
5782 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
5784 Ops.push_back(SE.getUnknown(FullV));
5823 Value *FullV = Rewriter.expandCodeFor(FullS, Ty);
5864 return FullV;
5929 Value *FullV =
5934 if (FullV->getType() != OpTy)
5935 FullV = CastInst::Create(
5936 CastInst::getCastOpcode(FullV, false, OpTy, false), FullV,
5943 if (auto *I = dyn_cast<Instruction>(FullV))
5947 PN->setIncomingValue(i, FullV);
5948 Pair.first->second = FullV;
6002 Value *FullV = Expand(LU, LF, F, LF.UserInst->getIterator(), DeadInsts);
6006 if (FullV->getType() != OpTy) {
6008 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
6009 FullV, OpTy, "tmp", LF.UserInst->getIterator());
6010 FullV = Cast;
6019 LF.UserInst->setOperand(0, FullV);
6021 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);