Lines Matching defs:NotY
4239 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not");
4240 // Replace all uses of Y (excluding the one in NotY!) with NotY.
4242 Y->replaceUsesWithIf(NotY,
4243 [NotY](Use &U) { return U.getUser() != NotY; });
4318 Value *NotY = Builder.CreateNot(Y);
4319 return BinaryOperator::CreateOr(X, NotY);
4494 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not");
4495 return BinaryOperator::CreateOr(X, NotY);
4498 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not");
4499 return SelectInst::Create(X, ConstantInt::getTrue(Ty), NotY);
4505 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not");
4506 return BinaryOperator::CreateAnd(X, NotY);
4509 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not");
4510 return SelectInst::Create(X, NotY, ConstantInt::getFalse(Ty));
4520 Value *NotY = Builder.CreateNot(Y);
4521 return BinaryOperator::CreateAnd(DecX, NotY);
4605 Value *NotY = Builder.CreateNot(Y);
4606 Value *InvMaxMin = Builder.CreateBinaryIntrinsic(InvID, X, NotY);