Home
last modified time | relevance | path

Searched refs:SecondOpc (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp3251 static bool canPairLdStOpc(unsigned FirstOpc, unsigned SecondOpc) { in canPairLdStOpc() argument
3252 if (FirstOpc == SecondOpc) in canPairLdStOpc()
3260 return SecondOpc == AArch64::LDRSWui || SecondOpc == AArch64::LDURSWi; in canPairLdStOpc()
3263 return SecondOpc == AArch64::LDRWui || SecondOpc == AArch64::LDURWi; in canPairLdStOpc()
3326 unsigned SecondOpc = SecondLdSt.getOpcode(); in shouldClusterMemOps() local
3327 if (!canPairLdStOpc(FirstOpc, SecondOpc)) in shouldClusterMemOps()
3342 if (hasUnscaledLdStOffset(SecondOpc) && !scaleOffset(SecondOpc, Offset2)) in shouldClusterMemOps()
3358 BaseOp2.getIndex(), Offset2, SecondOpc); in shouldClusterMemOps()
H A DAArch64ISelLowering.cpp10954 unsigned SecondOpc = SecondOp.getOpcode(); in tryLowerToSLI() local
10961 (SecondOpc == AArch64ISD::VSHL || SecondOpc == AArch64ISD::VLSHR)) { in tryLowerToSLI()
10965 } else if ((SecondOpc == ISD::AND || SecondOpc == AArch64ISD::BICi) && in tryLowerToSLI()
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp2796 static bool isClusterableLdStOpcPair(unsigned FirstOpc, unsigned SecondOpc, in isClusterableLdStOpcPair() argument
2805 return FirstOpc == SecondOpc; in isClusterableLdStOpcPair()
2811 return SecondOpc == PPC::STW || SecondOpc == PPC::STW8; in isClusterableLdStOpcPair()
2843 unsigned SecondOpc = SecondLdSt.getOpcode(); in shouldClusterMemOps() local
2847 if (!isClusterableLdStOpcPair(FirstOpc, SecondOpc, Subtarget)) in shouldClusterMemOps()