Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:NewVal

72   Value *NewVal = SimplifyDemandedUseBits(U.get(), DemandedMask,
74 if (NewVal == 0) return false;
75 U = NewVal;
662 Instruction *NewVal = BinaryOperator::CreateLShr(
664 return InsertNewInstWith(NewVal, *I);
706 BinaryOperator *NewVal = BinaryOperator::CreateLShr(I->getOperand(0),
708 NewVal->setIsExact(cast<BinaryOperator>(I)->isExact());
709 return InsertNewInstWith(NewVal, *I);
797 Instruction *NewVal;
799 NewVal = BinaryOperator::CreateLShr(II->getArgOperand(0),
802 NewVal = BinaryOperator::CreateShl(II->getArgOperand(0),
804 NewVal->takeName(I);
805 return InsertNewInstWith(NewVal, *I);