Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-rc/
H A DResourceScriptStmt.h73 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 …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp1012 SDValue NotMask = DAG.getNOT(DL, Mask, MaskTy); in ExpandSELECT() local
1015 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask); in ExpandSELECT()
1275 SDValue NotMask = DAG.getNOT(DL, Mask, VT); in ExpandVSELECT() local
1278 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask); in ExpandVSELECT()
1307 SDValue NotMask = DAG.getNode(ISD::VP_XOR, DL, VT, Mask, Ones, Mask, EVL); in ExpandVP_SELECT() local
1310 Op2 = DAG.getNode(ISD::VP_AND, DL, VT, Op2, NotMask, Mask, EVL); in ExpandVP_SELECT()
H A DDAGCombiner.cpp18129 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); in CheckForMaskedLoad() local
18130 unsigned NotMaskLZ = countLeadingZeros(NotMask); in CheckForMaskedLoad()
18132 unsigned NotMaskTZ = countTrailingZeros(NotMask); in CheckForMaskedLoad()
18137 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1099 Value *NotMask = Builder.CreateShl(MinusOne, NBits, "notmask"); in canonicalizeLowbitMask() local
1101 if (auto *BOp = dyn_cast<BinaryOperator>(NotMask)) { in canonicalizeLowbitMask()
1107 return BinaryOperator::CreateNot(NotMask, I.getName()); in canonicalizeLowbitMask()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp8782 auto *NotMask = new VPInstruction(VPInstruction::Not, ALM, DL); in addCanonicalIVRecipes() local
8783 EB->appendRecipe(NotMask); in addCanonicalIVRecipes()
8786 new VPInstruction(VPInstruction::BranchOnCond, {NotMask}, DL); in addCanonicalIVRecipes()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp7517 auto NotMask = MIRBuilder.buildNot(MaskTy, MaskReg); in lowerSelect() local
7519 auto NewOp2 = MIRBuilder.buildAnd(MaskTy, Op2Reg, NotMask); in lowerSelect()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp53588 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local
53592 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()
53600 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local
53603 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()