Searched refs:NotMask (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp627 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes); local
630 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask);
694 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes); local
697 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask);
H A DDAGCombiner.cpp8174 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
8175 unsigned NotMaskLZ = countLeadingZeros(NotMask);
8177 unsigned NotMaskTZ = countTrailingZeros(NotMask);
8182 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)

Completed in 176 milliseconds