Lines Matching defs:FullV
5754 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), nullptr);
5756 Ops.push_back(SE.getUnknown(FullV));
5770 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), IntTy);
5772 Ops.push_back(SE.getUnknown(FullV));
5780 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
5782 Ops.push_back(SE.getUnknown(FullV));
5821 Value *FullV = Rewriter.expandCodeFor(FullS, Ty);
5862 return FullV;
5933 Value *FullV =
5938 if (FullV->getType() != OpTy)
5939 FullV = CastInst::Create(
5940 CastInst::getCastOpcode(FullV, false, OpTy, false), FullV,
5947 if (auto *I = dyn_cast<Instruction>(FullV))
5951 PN->setIncomingValue(i, FullV);
5952 Pair.first->second = FullV;
6008 Value *FullV = Expand(LU, LF, F, LF.UserInst->getIterator(), DeadInsts);
6012 if (FullV->getType() != OpTy) {
6014 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
6015 FullV, OpTy, "tmp", LF.UserInst->getIterator());
6016 FullV = Cast;
6025 LF.UserInst->setOperand(0, FullV);
6027 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);