Home
last modified time | relevance | path

Searched refs:NotX (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp4165 Value *NotX = Builder.CreateNot(X); in foldNotXor() local
4166 return BinaryOperator::CreateOr(Y, NotX); in foldNotXor()
4437 Value *NotX = Builder.CreateNot(X); in foldNot() local
4438 Value *Sext = Builder.CreateSExt(NotX, SextTy); in foldNot()
4638 Value *NotX = Builder.CreateNot(X); in visitXor() local
4639 return BinaryOperator::CreateShl(NotX, ConstantInt::get(Ty, *C)); in visitXor()
4644 Value *NotX = Builder.CreateNot(X); in visitXor() local
4645 return BinaryOperator::CreateLShr(NotX, ConstantInt::get(Ty, *C)); in visitXor()
H A DInstructionCombining.cpp946 Value *NotX = Builder.CreateNot(X); in foldBinOpShiftWithShift() local
947 Value *NewBinOp = Builder.CreateBinOp(I.getOpcode(), Y, NotX); in foldBinOpShiftWithShift()
3247 Value *NotX = Builder.CreateNot(X, "not." + X->getName()); in visitBranchInst() local
3248 Value *Or = Builder.CreateLogicalOr(NotX, Y); in visitBranchInst()
H A DInstCombineAddSub.cpp979 Value *NotX = Builder.CreateNot(X); in foldAddWithConstant() local
980 return BinaryOperator::CreateAnd(NotX, ConstantInt::get(Ty, 1)); in foldAddWithConstant()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstructions.td2293 auto *NotX = dyn_cast<ConstantSDNode>(N->getOperand(1)->getOperand(1));
2294 return X && NotX &&
2295 ~(unsigned)X->getZExtValue() == (unsigned)NotX->getZExtValue();
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9347 SDValue NotX = DAG.getNOT(DL, X, VT); in unfoldMaskedMerge() local
9348 SDValue LHS = DAG.getNode(ISD::AND, DL, VT, NotX, M); in unfoldMaskedMerge()
9527 SDValue NotX = DAG.getNOT(SDLoc(X), X, VT); in visitXOR() local
9528 AddToWorklist(NotX.getNode()); in visitXOR()
9529 return DAG.getNode(ISD::AND, DL, VT, NotX, N1); in visitXOR()
13236 SDValue NotX = DAG.getNOT(DL, X, VT); in foldExtendedSignBitTest() local
13240 return DAG.getNode(ShiftOpcode, DL, VT, NotX, ShiftAmount); in foldExtendedSignBitTest()
H A DTargetLowering.cpp3997 SDValue NotX = DAG.getNOT(SDLoc(X), X, OpVT); in foldSetCCWithAnd() local
3998 SDValue NewAnd = DAG.getNode(ISD::AND, SDLoc(N0), OpVT, NotX, Y); in foldSetCCWithAnd()