Lines Matching defs:SecondOpc
4237 static bool canPairLdStOpc(unsigned FirstOpc, unsigned SecondOpc) {
4238 if (FirstOpc == SecondOpc)
4246 return SecondOpc == AArch64::STRSui || SecondOpc == AArch64::STURSi;
4249 return SecondOpc == AArch64::STRDui || SecondOpc == AArch64::STURDi;
4252 return SecondOpc == AArch64::STRQui || SecondOpc == AArch64::STURQi;
4255 return SecondOpc == AArch64::STRWui || SecondOpc == AArch64::STURWi;
4258 return SecondOpc == AArch64::STRXui || SecondOpc == AArch64::STURXi;
4261 return SecondOpc == AArch64::LDRSui || SecondOpc == AArch64::LDURSi;
4264 return SecondOpc == AArch64::LDRDui || SecondOpc == AArch64::LDURDi;
4267 return SecondOpc == AArch64::LDRQui || SecondOpc == AArch64::LDURQi;
4270 return SecondOpc == AArch64::LDRSWui || SecondOpc == AArch64::LDURSWi;
4273 return SecondOpc == AArch64::LDRWui || SecondOpc == AArch64::LDURWi;
4276 return SecondOpc == AArch64::LDRXui || SecondOpc == AArch64::LDURXi;
4340 unsigned SecondOpc = SecondLdSt.getOpcode();
4341 if (!canPairLdStOpc(FirstOpc, SecondOpc))
4356 if (hasUnscaledLdStOffset(SecondOpc) && !scaleOffset(SecondOpc, Offset2))
4372 BaseOp2.getIndex(), Offset2, SecondOpc);