Lines Matching refs:NotY
3273 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in foldXorOfICmps() local
3276 Y->replaceUsesWithIf(NotY, in foldXorOfICmps()
3277 [NotY](Use &U) { return U.getUser() != NotY; }); in foldXorOfICmps()
3424 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in sinkNotIntoOtherHandOfAndOrOr() local
3426 BinaryOperator::Create(NewOpc, X, NotY, I.getName() + ".not"); in sinkNotIntoOtherHandOfAndOrOr()
3453 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in foldNot() local
3454 return BinaryOperator::CreateOr(X, NotY); in foldNot()
3457 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in foldNot() local
3458 return SelectInst::Create(X, ConstantInt::getTrue(Ty), NotY); in foldNot()
3464 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in foldNot() local
3465 return BinaryOperator::CreateAnd(X, NotY); in foldNot()
3468 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in foldNot() local
3469 return SelectInst::Create(X, NotY, ConstantInt::getFalse(Ty)); in foldNot()
3485 Value *NotY = Builder.CreateNot(NotVal->getOperand(1), "notrhs"); in foldNot() local
3487 return BinaryOperator::CreateOr(NotX, NotY); in foldNot()
3488 return BinaryOperator::CreateAnd(NotX, NotY); in foldNot()
3496 Value *NotY = Builder.CreateNot(Y); in foldNot() local
3497 return BinaryOperator::CreateAnd(DecX, NotY); in foldNot()
3563 Value *NotY = Builder.CreateNot(Y); in foldNot() local
3564 Value *InvMaxMin = Builder.CreateBinaryIntrinsic(InvID, NotX, NotY); in foldNot()
3569 Value *NotY = Builder.CreateNot(Y); in foldNot() local
3570 Value *InvMaxMin = Builder.CreateBinaryIntrinsic(InvID, X, NotY); in foldNot()