Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp1191 SDValue NotMask = DAG.getNOT(DL, Mask, MaskTy); in ExpandSELECT() local
1194 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask); in ExpandSELECT()
1454 SDValue NotMask = DAG.getNOT(DL, Mask, VT); in ExpandVSELECT() local
1457 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask); in ExpandVSELECT()
1486 SDValue NotMask = DAG.getNode(ISD::VP_XOR, DL, VT, Mask, Ones, Ones, EVL); in ExpandVP_SELECT() local
1489 Op2 = DAG.getNode(ISD::VP_AND, DL, VT, Op2, NotMask, Ones, EVL); in ExpandVP_SELECT()
H A DDAGCombiner.cpp19754 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); in CheckForMaskedLoad() local
19755 unsigned NotMaskLZ = llvm::countl_zero(NotMask); in CheckForMaskedLoad()
19757 unsigned NotMaskTZ = llvm::countr_zero(NotMask); in CheckForMaskedLoad()
19762 if (llvm::countr_one(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp1324 auto *NotMask = Builder.createNot(ALM, DL); in addVPLaneMaskPhiAndUpdateExitBranch() local
1325 Builder.createNaryOp(VPInstruction::BranchOnCond, {NotMask}, DL); in addVPLaneMaskPhiAndUpdateExitBranch()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp1743 enum NotMask { None = 0, NotInner, NotRHS }; in foldSelectICmpEq() enum
1746 unsigned NotMask) { in foldSelectICmpEq() argument
1751 if (NotMask == NotInner) { in foldSelectICmpEq()
1754 } else if (NotMask == NotRHS) { in foldSelectICmpEq()
H A DInstCombineAddSub.cpp1220 Value *NotMask = Builder.CreateShl(MinusOne, NBits, "notmask"); in canonicalizeLowbitMask() local
1222 if (auto *BOp = dyn_cast<BinaryOperator>(NotMask)) { in canonicalizeLowbitMask()
1228 return BinaryOperator::CreateNot(NotMask, I.getName()); in canonicalizeLowbitMask()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp8513 auto NotMask = MIRBuilder.buildNot(MaskTy, MaskReg); in lowerSelect() local
8515 auto NewOp2 = MIRBuilder.buildAnd(MaskTy, Op2Reg, NotMask); in lowerSelect()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp54528 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local
54532 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()
54540 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local
54543 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()