Lines Matching refs:Opc
123 static bool isUnscaledLdst(unsigned Opc) { in isUnscaledLdst() argument
124 switch (Opc) { in isUnscaledLdst()
193 static unsigned getMatchingNonSExtOpcode(unsigned Opc, in getMatchingNonSExtOpcode() argument
197 switch (Opc) { in getMatchingNonSExtOpcode()
222 return Opc; in getMatchingNonSExtOpcode()
230 static unsigned getMatchingPairOpcode(unsigned Opc) { in getMatchingPairOpcode() argument
231 switch (Opc) { in getMatchingPairOpcode()
270 static unsigned getPreIndexedOpcode(unsigned Opc) { in getPreIndexedOpcode() argument
271 switch (Opc) { in getPreIndexedOpcode()
299 static unsigned getPostIndexedOpcode(unsigned Opc) { in getPostIndexedOpcode() argument
300 switch (Opc) { in getPostIndexedOpcode()
341 unsigned Opc = in mergePairedInsns() local
343 bool IsUnscaled = isUnscaledLdst(Opc); in mergePairedInsns()
347 unsigned NewOpc = getMatchingPairOpcode(Opc); in mergePairedInsns()
521 unsigned Opc = FirstMI->getOpcode(); in findMatchingInsn() local
523 bool IsUnscaled = isUnscaledLdst(Opc); in findMatchingInsn()
559 bool CanMergeOpc = Opc == MI->getOpcode(); in findMatchingInsn()
563 unsigned NonSExtOpc = getMatchingNonSExtOpcode(Opc, &IsValidLdStrOpc); in findMatchingInsn()
567 SExtIdx = NonSExtOpc == (unsigned)Opc ? 1 : 0; in findMatchingInsn()
989 unsigned Opc = MI->getOpcode(); in optimizeBlock() local
990 switch (Opc) { in optimizeBlock()
1033 if (isUnscaledLdst(Opc)) { in optimizeBlock()