Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp3040 static bool canPairLdStOpc(unsigned FirstOpc, unsigned SecondOpc) { in canPairLdStOpc() argument
3041 if (FirstOpc == SecondOpc) in canPairLdStOpc()
3049 return SecondOpc == AArch64::LDRSWui || SecondOpc == AArch64::LDURSWi; in canPairLdStOpc()
3052 return SecondOpc == AArch64::LDRWui || SecondOpc == AArch64::LDURWi; in canPairLdStOpc()
3115 unsigned SecondOpc = SecondLdSt.getOpcode(); in shouldClusterMemOps() local
3116 if (!canPairLdStOpc(FirstOpc, SecondOpc)) in shouldClusterMemOps()
3131 if (hasUnscaledLdStOffset(SecondOpc) && !scaleOffset(SecondOpc, Offset2)) in shouldClusterMemOps()
3147 BaseOp2.getIndex(), Offset2, SecondOpc); in shouldClusterMemOps()
H A DAArch64ISelLowering.cpp9538 unsigned SecondOpc = SecondOp.getOpcode(); in tryLowerToSLI() local
9545 (SecondOpc == AArch64ISD::VSHL || SecondOpc == AArch64ISD::VLSHR)) { in tryLowerToSLI()
9549 } else if ((SecondOpc == ISD::AND || SecondOpc == AArch64ISD::BICi) && in tryLowerToSLI()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp2768 static bool isClusterableLdStOpcPair(unsigned FirstOpc, unsigned SecondOpc, in isClusterableLdStOpcPair() argument
2777 return FirstOpc == SecondOpc; in isClusterableLdStOpcPair()
2783 return SecondOpc == PPC::STW || SecondOpc == PPC::STW8; in isClusterableLdStOpcPair()
2815 unsigned SecondOpc = SecondLdSt.getOpcode(); in shouldClusterMemOps() local
2819 if (!isClusterableLdStOpcPair(FirstOpc, SecondOpc, Subtarget)) in shouldClusterMemOps()