Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1500 BitVector UndefElements; in getVectorShuffle() local
1501 SDValue Splat = BV->getSplatValue(&UndefElements); in getVectorShuffle()
1510 if (UndefElements[MaskVec[i] - Offset]) { in getVectorShuffle()
1516 if (!UndefElements[i]) in getVectorShuffle()
1573 BitVector UndefElements; in getVectorShuffle() local
1574 SDValue Splat = BV->getSplatValue(&UndefElements); in getVectorShuffle()
1584 if (Splat && UndefElements.none()) { in getVectorShuffle()
6860 SDValue BuildVectorSDNode::getSplatValue(BitVector *UndefElements) const { in getSplatValue()
6861 if (UndefElements) { in getSplatValue()
6862 UndefElements->clear(); in getSplatValue()
[all …]
DTargetLowering.cpp1169 BitVector UndefElements; in isConstTrueVal() local
1170 CN = BV->getConstantSplatNode(&UndefElements); in isConstTrueVal()
1173 if (!CN || UndefElements.none()) in isConstTrueVal()
1199 BitVector UndefElements; in isConstFalseVal() local
1200 CN = BV->getConstantSplatNode(&UndefElements); in isConstFalseVal()
1203 if (!CN || UndefElements.none()) in isConstFalseVal()
DDAGCombiner.cpp736 BitVector UndefElements; in isConstOrConstSplat() local
737 ConstantSDNode *CN = BV->getConstantSplatNode(&UndefElements); in isConstOrConstSplat()
742 if (CN && UndefElements.none() && in isConstOrConstSplat()
757 BitVector UndefElements; in isConstOrConstSplatFP() local
758 ConstantFPSDNode *CN = BV->getConstantFPSplatNode(&UndefElements); in isConstOrConstSplatFP()
760 if (CN && UndefElements.none()) in isConstOrConstSplatFP()
/external/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h1617 SDValue getSplatValue(BitVector *UndefElements = nullptr) const;
1625 getConstantSplatNode(BitVector *UndefElements = nullptr) const;
1633 getConstantFPSplatNode(BitVector *UndefElements = nullptr) const;
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp4895 BitVector UndefElements; in LowerVectorBroadcast() local
4896 SDValue Splat = BVOp->getSplatValue(&UndefElements); in LowerVectorBroadcast()
4900 if (!Splat || (VT.getVectorNumElements() - UndefElements.count()) <= 1) in LowerVectorBroadcast()