Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:NewVal

73   Value *NewVal = SimplifyDemandedUseBits(U.get(), DemandedMask,
75 if (!NewVal) return false;
76 U = NewVal;
663 Instruction *NewVal = BinaryOperator::CreateLShr(
665 return InsertNewInstWith(NewVal, *I);
707 BinaryOperator *NewVal = BinaryOperator::CreateLShr(I->getOperand(0),
709 NewVal->setIsExact(cast<BinaryOperator>(I)->isExact());
710 return InsertNewInstWith(NewVal, *I);
798 Instruction *NewVal;
800 NewVal = BinaryOperator::CreateLShr(II->getArgOperand(0),
803 NewVal = BinaryOperator::CreateShl(II->getArgOperand(0),
805 NewVal->takeName(I);
806 return InsertNewInstWith(NewVal, *I);