Home
last modified time | relevance | path

Searched refs:NotMask (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp965 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes); in ExpandSELECT() local
968 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask); in ExpandSELECT()
1212 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes); in ExpandVSELECT() local
1215 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask); in ExpandVSELECT()
H A DDAGCombiner.cpp16533 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); in CheckForMaskedLoad() local
16534 unsigned NotMaskLZ = countLeadingZeros(NotMask); in CheckForMaskedLoad()
16536 unsigned NotMaskTZ = countTrailingZeros(NotMask); in CheckForMaskedLoad()
16541 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1116 Value *NotMask = Builder.CreateShl(MinusOne, NBits, "notmask"); in canonicalizeLowbitMask() local
1118 if (auto *BOp = dyn_cast<BinaryOperator>(NotMask)) { in canonicalizeLowbitMask()
1124 return BinaryOperator::CreateNot(NotMask, I.getName()); in canonicalizeLowbitMask()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp7241 auto NotMask = MIRBuilder.buildNot(MaskTy, MaskReg); in lowerSelect() local
7243 auto NewOp2 = MIRBuilder.buildAnd(MaskTy, Op2Reg, NotMask); in lowerSelect()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp48860 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local
48864 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()
48872 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local
48875 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()