Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
H A DResourceScriptStmt.h72 int32_t NotMask; variable
76 IntWithNotMask(RCInt Value, int32_t NotMask = 0) : Value(Value), NotMask(NotMask) {} in Value()
83 return NotMask; in getNotMask()
87 Value &= ~Rhs.NotMask;
89 NotMask |= Rhs.NotMask;
94 Value &= ~Rhs.NotMask;
96 NotMask |= Rhs.NotMask;
101 Value &= ~Rhs.NotMask;
103 NotMask |= Rhs.NotMask;
108 Value &= ~Rhs.NotMask;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp964 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes); in ExpandSELECT() local
967 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask); in ExpandSELECT()
1206 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes); in ExpandVSELECT() local
1209 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask); in ExpandVSELECT()
H A DDAGCombiner.cpp16338 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); in CheckForMaskedLoad() local
16339 unsigned NotMaskLZ = countLeadingZeros(NotMask); in CheckForMaskedLoad()
16341 unsigned NotMaskTZ = countTrailingZeros(NotMask); in CheckForMaskedLoad()
16346 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1116 Value *NotMask = Builder.CreateShl(MinusOne, NBits, "notmask"); in canonicalizeLowbitMask() local
1118 if (auto *BOp = dyn_cast<BinaryOperator>(NotMask)) { in canonicalizeLowbitMask()
1124 return BinaryOperator::CreateNot(NotMask, I.getName()); in canonicalizeLowbitMask()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp6833 auto NotMask = MIRBuilder.buildNot(MaskTy, MaskReg); in lowerSelect() local
6835 auto NewOp2 = MIRBuilder.buildAnd(MaskTy, Op2Reg, NotMask); in lowerSelect()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp48540 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local
48544 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()
48552 APInt NotMask = APInt::getLowBitsSet(NumBits, NumElts); in combineMOVMSK() local
48555 DAG.getConstant(NotMask, DL, VT)); in combineMOVMSK()