Home
last modified time | relevance | path

Searched refs:InMask (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp4182 SDValue DAGTypeLegalizer::convertMask(SDValue InMask, EVT MaskVT, in convertMask() argument
4187 assert(isSETCCorConvertedSETCC(InMask) && "Unexpected mask argument."); in convertMask()
4192 for (unsigned i = 0, e = InMask->getNumOperands(); i < e; ++i) in convertMask()
4193 Ops.push_back(InMask->getOperand(i)); in convertMask()
4194 if (InMask->isStrictFPOpcode()) { in convertMask()
4195 Mask = DAG.getNode(InMask->getOpcode(), SDLoc(InMask), in convertMask()
4197 ReplaceValueWith(InMask.getValue(1), Mask.getValue(1)); in convertMask()
4200 Mask = DAG.getNode(InMask->getOpcode(), SDLoc(InMask), MaskVT, Ops); in convertMask()
H A DLegalizeTypes.h988 SDValue convertMask(SDValue InMask, EVT MaskVT, EVT ToMaskVT);
H A DTargetLowering.cpp2054 APInt InMask = APInt::getLowBitsSet(BitWidth, ZVT.getSizeInBits()); in SimplifyDemandedBits() local
2055 if (SimplifyDemandedBits(Op.getOperand(0), ~InMask | DemandedBits, Known, in SimplifyDemandedBits()
2060 Known.Zero |= ~InMask; in SimplifyDemandedBits()
H A DSelectionDAG.cpp3298 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits()); in computeKnownBits() local
3300 Known.Zero |= (~InMask); in computeKnownBits()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp4363 SDValue InMask) { in tryVPTESTM() argument
4457 bool IsMasked = InMask.getNode() != nullptr; in tryVPTESTM()
4481 InMask = SDValue(CurDAG->getMachineNode(TargetOpcode::COPY_TO_REGCLASS, in tryVPTESTM()
4482 dl, MaskVT, InMask, RC), 0); in tryVPTESTM()
4495 SDValue Ops[] = { InMask, Src0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, in tryVPTESTM()
4510 CNode = CurDAG->getMachineNode(Opc, dl, MaskVT, InMask, Src0, Src1); in tryVPTESTM()