Searched refs:NotX (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp4165 Value *NotX = Builder.CreateNot(X); local
4166 return BinaryOperator::CreateOr(Y, NotX);
4437 Value *NotX = Builder.CreateNot(X); local
4438 Value *Sext = Builder.CreateSExt(NotX, SextTy);
4638 Value *NotX = Builder.CreateNot(X); local
4639 return BinaryOperator::CreateShl(NotX, ConstantInt::get(Ty, *C));
4644 Value *NotX = Builder.CreateNot(X); local
4645 return BinaryOperator::CreateLShr(NotX, ConstantInt::get(Ty, *C));
H A DInstructionCombining.cpp946 Value *NotX = Builder.CreateNot(X);
947 Value *NewBinOp = Builder.CreateBinOp(I.getOpcode(), Y, NotX);
3247 Value *NotX = Builder.CreateNot(X, "not." + X->getName()); local
3248 Value *Or = Builder.CreateLogicalOr(NotX, Y);
H A DInstCombineAddSub.cpp979 Value *NotX = Builder.CreateNot(X); local
980 return BinaryOperator::CreateAnd(NotX, ConstantInt::get(Ty, 1));
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9347 SDValue NotX = DAG.getNOT(DL, X, VT); local
9348 SDValue LHS = DAG.getNode(ISD::AND, DL, VT, NotX, M);
9527 SDValue NotX = DAG.getNOT(SDLoc(X), X, VT); local
9528 AddToWorklist(NotX.getNode());
9529 return DAG.getNode(ISD::AND, DL, VT, NotX, N1);
13236 SDValue NotX = DAG.getNOT(DL, X, VT); local
13240 return DAG.getNode(ShiftOpcode, DL, VT, NotX, ShiftAmount);
[all...]
H A DTargetLowering.cpp3997 SDValue NotX = DAG.getNOT(SDLoc(X), X, OpVT);
3998 SDValue NewAnd = DAG.getNode(ISD::AND, SDLoc(N0), OpVT, NotX, Y);

Completed in 225 milliseconds