Lines Matching refs:NotY
4078 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in foldXorOfICmps() local
4081 Y->replaceUsesWithIf(NotY, in foldXorOfICmps()
4082 [NotY](Use &U) { return U.getUser() != NotY; }); in foldXorOfICmps()
4157 Value *NotY = Builder.CreateNot(Y); in foldNotXor() local
4158 return BinaryOperator::CreateOr(X, NotY); in foldNotXor()
4332 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in foldNot() local
4333 return BinaryOperator::CreateOr(X, NotY); in foldNot()
4336 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in foldNot() local
4337 return SelectInst::Create(X, ConstantInt::getTrue(Ty), NotY); in foldNot()
4343 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in foldNot() local
4344 return BinaryOperator::CreateAnd(X, NotY); in foldNot()
4347 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not"); in foldNot() local
4348 return SelectInst::Create(X, NotY, ConstantInt::getFalse(Ty)); in foldNot()
4358 Value *NotY = Builder.CreateNot(Y); in foldNot() local
4359 return BinaryOperator::CreateAnd(DecX, NotY); in foldNot()
4453 Value *NotY = Builder.CreateNot(Y); in foldNot() local
4454 Value *InvMaxMin = Builder.CreateBinaryIntrinsic(InvID, X, NotY); in foldNot()