Searched refs:SplatIndex (Results 1 – 8 of 8) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | VectorUtils.cpp | 329 int SplatIndex = -1; in getSplatIndex() local 336 if (SplatIndex != -1 && SplatIndex != M) in getSplatIndex() 340 SplatIndex = M; in getSplatIndex() 342 assert((SplatIndex == -1 || SplatIndex >= 0) && "Negative index?"); in getSplatIndex() 343 return SplatIndex; in getSplatIndex()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | PatternMatch.h | 1546 int &SplatIndex; member 1547 m_SplatOrUndefMask(int &SplatIndex) : SplatIndex(SplatIndex) {} in m_SplatOrUndefMask() 1552 SplatIndex = *First; in match()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstructionCombining.cpp | 1715 int SplatIndex; in foldVectorBinop() local 1719 !match(MaskC, m_SplatOrUndefMask(SplatIndex)) || in foldVectorBinop() 1728 if (isSplatValue(BO->getOperand(0), SplatIndex)) { in foldVectorBinop() 1731 } else if (isSplatValue(BO->getOperand(1), SplatIndex)) { in foldVectorBinop() 1742 SmallVector<int, 8> NewMask(MaskC.size(), SplatIndex); in foldVectorBinop()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsSEISelLowering.cpp | 2639 int SplatIndex = -1; in isVECTOR_SHUFFLE_SPLATI() local 2642 SplatIndex = V; in isVECTOR_SHUFFLE_SPLATI() 2647 return fitsRegularPattern<int>(Indices.begin(), 1, Indices.end(), SplatIndex, in isVECTOR_SHUFFLE_SPLATI()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAG.h | 1817 SDValue getSplatSourceVector(SDValue V, int &SplatIndex);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAG.cpp | 2534 int SplatIndex = -1; in isSplatValue() local 2544 if (0 <= SplatIndex && SplatIndex != M) in isSplatValue() 2546 SplatIndex = M; in isSplatValue()
|
| H A D | DAGCombiner.cpp | 20745 int SplatIndex = -1; in formSplatFromShuffles() local 20758 if (SplatIndex == -1) in formSplatFromShuffles() 20759 SplatIndex = InnerMaskElt; in formSplatFromShuffles() 20762 if (SplatIndex != InnerMaskElt) in formSplatFromShuffles() 20945 int SplatIndex = SVN->getSplatIndex(); in visitVECTOR_SHUFFLE() local 20946 if (N0.hasOneUse() && TLI.isExtractVecEltCheap(VT, SplatIndex) && in visitVECTOR_SHUFFLE() 20953 SDValue Index = DAG.getVectorIdxConstant(SplatIndex, DL); in visitVECTOR_SHUFFLE() 20999 SDValue Splatted = V->getOperand(SplatIndex); in visitVECTOR_SHUFFLE()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 6850 int SplatIndex = -1; in isConstantSplat() local 6854 if (0 <= SplatIndex && EltBits[i] != EltBits[SplatIndex]) { in isConstantSplat() 6855 SplatIndex = -1; in isConstantSplat() 6858 SplatIndex = i; in isConstantSplat() 6860 if (0 <= SplatIndex) { in isConstantSplat() 6861 SplatVal = EltBits[SplatIndex]; in isConstantSplat()
|