Searched refs:InMask (Results 1 – 6 of 6) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorTypes.cpp | 5369 SDValue DAGTypeLegalizer::convertMask(SDValue InMask, EVT MaskVT, in convertMask() argument 5374 assert(isSETCCorConvertedSETCC(InMask) && "Unexpected mask argument."); in convertMask() 5379 for (unsigned i = 0, e = InMask->getNumOperands(); i < e; ++i) in convertMask() 5380 Ops.push_back(InMask->getOperand(i)); in convertMask() 5381 if (InMask->isStrictFPOpcode()) { in convertMask() 5382 Mask = DAG.getNode(InMask->getOpcode(), SDLoc(InMask), in convertMask() 5384 ReplaceValueWith(InMask.getValue(1), Mask.getValue(1)); in convertMask() 5387 Mask = DAG.getNode(InMask->getOpcode(), SDLoc(InMask), MaskVT, Ops); in convertMask()
|
| H A D | LegalizeTypes.h | 1048 SDValue convertMask(SDValue InMask, EVT MaskVT, EVT ToMaskVT);
|
| H A D | TargetLowering.cpp | 2423 APInt InMask = APInt::getLowBitsSet(BitWidth, ZVT.getSizeInBits()); in SimplifyDemandedBits() local 2424 if (SimplifyDemandedBits(Op.getOperand(0), ~InMask | DemandedBits, Known, in SimplifyDemandedBits() 2429 Known.Zero |= ~InMask; in SimplifyDemandedBits()
|
| H A D | SelectionDAG.cpp | 3570 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits()); in computeKnownBits() local 3572 Known.Zero |= (~InMask); in computeKnownBits()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86ISelDAGToDAG.cpp | 4555 SDValue InMask) { in tryVPTESTM() argument 4649 bool IsMasked = InMask.getNode() != nullptr; in tryVPTESTM() 4673 InMask = SDValue(CurDAG->getMachineNode(TargetOpcode::COPY_TO_REGCLASS, in tryVPTESTM() 4674 dl, MaskVT, InMask, RC), 0); in tryVPTESTM() 4687 SDValue Ops[] = { InMask, Src0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, in tryVPTESTM() 4702 CNode = CurDAG->getMachineNode(Opc, dl, MaskVT, InMask, Src0, Src1); in tryVPTESTM()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 7139 SmallBitVector InMask = in getEntryCost() local 7142 if (!InMask.all() && NumScalars != NumElts && !IsWholeSubvector) { in getEntryCost() 7151 Mask[I] = InMask.test(I) ? UndefMaskElem : I; in getEntryCost() 7158 ((I >= InMask.size()) || InMask.test(I)) ? UndefMaskElem : I; in getEntryCost()
|