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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp927 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes); local
930 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask);
1169 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes); local
1172 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask);
H A DDAGCombiner.cpp15522 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
15523 unsigned NotMaskLZ = countLeadingZeros(NotMask);
15525 unsigned NotMaskTZ = countTrailingZeros(NotMask);
15530 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1067 Value *NotMask = Builder.CreateShl(MinusOne, NBits, "notmask"); local
1069 if (auto *BOp = dyn_cast<BinaryOperator>(NotMask)) {
1075 return BinaryOperator::CreateNot(NotMask, I.getName());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp[all...]

Completed in 133 milliseconds