Searched refs:NotMask (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorOps.cpp | 1197 SDValue NotMask = DAG.getNOT(DL, Mask, MaskTy); in ExpandSELECT() local 1200 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask); in ExpandSELECT() 1460 SDValue NotMask = DAG.getNOT(DL, Mask, VT); in ExpandVSELECT() local 1463 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask); in ExpandVSELECT() 1492 SDValue NotMask = DAG.getNode(ISD::VP_XOR, DL, VT, Mask, Ones, Ones, EVL); in ExpandVP_SELECT() local 1495 Op2 = DAG.getNode(ISD::VP_AND, DL, VT, Op2, NotMask, Ones, EVL); in ExpandVP_SELECT()
|
| H A D | DAGCombiner.cpp | 19416 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); in CheckForMaskedLoad() local 19417 unsigned NotMaskLZ = llvm::countl_zero(NotMask); in CheckForMaskedLoad() 19419 unsigned NotMaskTZ = llvm::countr_zero(NotMask); in CheckForMaskedLoad() 19424 if (llvm::countr_one(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanTransforms.cpp | 1120 auto *NotMask = Builder.createNot(ALM, DL); in addVPLaneMaskPhiAndUpdateExitBranch() local 1121 Builder.createNaryOp(VPInstruction::BranchOnCond, {NotMask}, DL); in addVPLaneMaskPhiAndUpdateExitBranch()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineAddSub.cpp | 1178 Value *NotMask = Builder.CreateShl(MinusOne, NBits, "notmask"); in canonicalizeLowbitMask() local 1180 if (auto *BOp = dyn_cast<BinaryOperator>(NotMask)) { in canonicalizeLowbitMask() 1186 return BinaryOperator::CreateNot(NotMask, I.getName()); in canonicalizeLowbitMask()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerHelper.cpp | 7994 auto NotMask = MIRBuilder.buildNot(MaskTy, MaskReg); in lowerSelect() local 7996 auto NewOp2 = MIRBuilder.buildAnd(MaskTy, Op2Reg, NotMask); in lowerSelect()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 53184 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local 53188 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK() 53196 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local 53199 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()
|