Searched refs:NotMask (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorOps.cpp | 1373 SDValue NotMask = DAG.getNOT(DL, Mask, MaskTy); in ExpandSELECT() local 1376 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask); in ExpandSELECT() 1624 SDValue NotMask = DAG.getNOT(DL, Mask, VT); in ExpandVSELECT() local 1627 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask); in ExpandVSELECT() 1656 SDValue NotMask = DAG.getNode(ISD::VP_XOR, DL, VT, Mask, Ones, Ones, EVL); in ExpandVP_SELECT() local 1659 Op2 = DAG.getNode(ISD::VP_AND, DL, VT, Op2, NotMask, Ones, EVL); in ExpandVP_SELECT()
|
| H A D | DAGCombiner.cpp | 20752 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); in CheckForMaskedLoad() local 20753 unsigned NotMaskLZ = llvm::countl_zero(NotMask); in CheckForMaskedLoad() 20755 unsigned NotMaskTZ = llvm::countr_zero(NotMask); in CheckForMaskedLoad() 20760 if (llvm::countr_one(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineAddSub.cpp | 1228 Value *NotMask = Builder.CreateShl(MinusOne, NBits, "notmask"); in canonicalizeLowbitMask() local 1230 if (auto *BOp = dyn_cast<BinaryOperator>(NotMask)) { in canonicalizeLowbitMask() 1236 return BinaryOperator::CreateNot(NotMask, I.getName()); in canonicalizeLowbitMask()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanTransforms.cpp | 2041 auto *NotMask = Builder.createNot(ALM, DL); in addVPLaneMaskPhiAndUpdateExitBranch() local 2042 Builder.createNaryOp(VPInstruction::BranchOnCond, {NotMask}, DL); in addVPLaneMaskPhiAndUpdateExitBranch()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerHelper.cpp | 9459 auto NotMask = MIRBuilder.buildNot(MaskTy, MaskReg); in lowerSelect() local 9461 auto NewOp2 = MIRBuilder.buildAnd(MaskTy, Op2Reg, NotMask); in lowerSelect()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 56571 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local 56575 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK() 56583 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local 56586 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()
|