Searched refs:InMask (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorTypes.cpp | 5616 SDValue DAGTypeLegalizer::convertMask(SDValue InMask, EVT MaskVT, in convertMask() argument 5621 assert(isSETCCorConvertedSETCC(InMask) && "Unexpected mask argument."); in convertMask() 5626 for (unsigned i = 0, e = InMask->getNumOperands(); i < e; ++i) in convertMask() 5627 Ops.push_back(InMask->getOperand(i)); in convertMask() 5628 if (InMask->isStrictFPOpcode()) { in convertMask() 5629 Mask = DAG.getNode(InMask->getOpcode(), SDLoc(InMask), in convertMask() 5631 ReplaceValueWith(InMask.getValue(1), Mask.getValue(1)); in convertMask() 5634 Mask = DAG.getNode(InMask->getOpcode(), SDLoc(InMask), MaskVT, Ops); in convertMask()
|
| H A D | LegalizeTypes.h | 1070 SDValue convertMask(SDValue InMask, EVT MaskVT, EVT ToMaskVT);
|
| H A D | TargetLowering.cpp | 2595 APInt InMask = APInt::getLowBitsSet(BitWidth, ZVT.getSizeInBits()); in SimplifyDemandedBits() local 2596 if (SimplifyDemandedBits(Op.getOperand(0), ~InMask | DemandedBits, Known, in SimplifyDemandedBits() 2601 Known.Zero |= ~InMask; in SimplifyDemandedBits()
|
| H A D | SelectionDAG.cpp | 3698 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits()); in computeKnownBits() local 3700 Known.Zero |= (~InMask); in computeKnownBits()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelDAGToDAG.cpp | 4797 SDValue InMask) { in tryVPTESTM() argument 4891 bool IsMasked = InMask.getNode() != nullptr; in tryVPTESTM() 4915 InMask = SDValue(CurDAG->getMachineNode(TargetOpcode::COPY_TO_REGCLASS, in tryVPTESTM() 4916 dl, MaskVT, InMask, RC), 0); in tryVPTESTM() 4929 SDValue Ops[] = { InMask, Src0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, in tryVPTESTM() 4944 CNode = CurDAG->getMachineNode(Opc, dl, MaskVT, InMask, Src0, Src1); in tryVPTESTM()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 8112 SmallBitVector InMask = in getEntryCost() local 8115 if (!InMask.all() && NumScalars != NumElts && !IsWholeSubvector) { in getEntryCost() 8123 Mask[I] = InMask.test(I) ? PoisonMaskElem : I; in getEntryCost() 8130 ((I >= InMask.size()) || InMask.test(I)) ? PoisonMaskElem : I; in getEntryCost()
|