Searched refs:NotMask (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/llvm/tools/llvm-rc/ |
| H A D | ResourceScriptStmt.h | 73 int32_t NotMask; variable 77 IntWithNotMask(RCInt Value, int32_t NotMask = 0) : Value(Value), NotMask(NotMask) {} in Value() 84 return NotMask; in getNotMask() 88 Value &= ~Rhs.NotMask; 90 NotMask |= Rhs.NotMask; 95 Value &= ~Rhs.NotMask; 97 NotMask |= Rhs.NotMask; 102 Value &= ~Rhs.NotMask; 104 NotMask |= Rhs.NotMask; 109 Value &= ~Rhs.NotMask; [all …]
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorOps.cpp | 968 SDValue NotMask = DAG.getNOT(DL, Mask, MaskTy); in ExpandSELECT() local 971 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask); in ExpandSELECT() 1231 SDValue NotMask = DAG.getNOT(DL, Mask, VT); in ExpandVSELECT() local 1234 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask); in ExpandVSELECT() 1263 SDValue NotMask = DAG.getNode(ISD::VP_XOR, DL, VT, Mask, Ones, Mask, EVL); in ExpandVP_SELECT() local 1266 Op2 = DAG.getNode(ISD::VP_AND, DL, VT, Op2, NotMask, Mask, EVL); in ExpandVP_SELECT()
|
| H A D | DAGCombiner.cpp | 17475 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); in CheckForMaskedLoad() local 17476 unsigned NotMaskLZ = countLeadingZeros(NotMask); in CheckForMaskedLoad() 17478 unsigned NotMaskTZ = countTrailingZeros(NotMask); in CheckForMaskedLoad() 17483 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineAddSub.cpp | 1102 Value *NotMask = Builder.CreateShl(MinusOne, NBits, "notmask"); in canonicalizeLowbitMask() local 1104 if (auto *BOp = dyn_cast<BinaryOperator>(NotMask)) { in canonicalizeLowbitMask() 1110 return BinaryOperator::CreateNot(NotMask, I.getName()); in canonicalizeLowbitMask()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/ |
| H A D | LoopVectorize.cpp | 8655 auto *NotMask = new VPInstruction(VPInstruction::Not, ALM, DL); in addCanonicalIVRecipes() local 8656 EB->appendRecipe(NotMask); in addCanonicalIVRecipes() 8659 new VPInstruction(VPInstruction::BranchOnCond, {NotMask}, DL); in addCanonicalIVRecipes()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerHelper.cpp | 7256 auto NotMask = MIRBuilder.buildNot(MaskTy, MaskReg); in lowerSelect() local 7258 auto NewOp2 = MIRBuilder.buildAnd(MaskTy, Op2Reg, NotMask); in lowerSelect()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 52251 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local 52255 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK() 52263 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local 52266 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()
|