Home
last modified time | relevance | path

Searched refs:FirstOpc (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ExpandImm.cpp262 unsigned FirstOpc; in expandMOVImmSimple() local
265 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi); in expandMOVImmSimple()
267 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi); in expandMOVImmSimple()
279 Insn.push_back({ FirstOpc, Imm16, in expandMOVImmSimple()
H A DAArch64InstrInfo.cpp3096 static bool canPairLdStOpc(unsigned FirstOpc, unsigned SecondOpc) { in canPairLdStOpc() argument
3097 if (FirstOpc == SecondOpc) in canPairLdStOpc()
3100 switch (FirstOpc) { in canPairLdStOpc()
3170 unsigned FirstOpc = FirstLdSt.getOpcode(); in shouldClusterMemOps() local
3172 if (!canPairLdStOpc(FirstOpc, SecondOpc)) in shouldClusterMemOps()
3183 if (hasUnscaledLdStOffset(FirstOpc) && !scaleOffset(FirstOpc, Offset1)) in shouldClusterMemOps()
3202 return shouldClusterFI(MFI, BaseOp1.getIndex(), Offset1, FirstOpc, in shouldClusterMemOps()
H A DAArch64ISelLowering.cpp9875 unsigned FirstOpc = FirstOp.getOpcode(); in tryLowerToSLI() local
9883 if ((FirstOpc == ISD::AND || FirstOpc == AArch64ISD::BICi) && in tryLowerToSLI()
9889 (FirstOpc == AArch64ISD::VSHL || FirstOpc == AArch64ISD::VLSHR)) { in tryLowerToSLI()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp2786 static bool isClusterableLdStOpcPair(unsigned FirstOpc, unsigned SecondOpc, in isClusterableLdStOpcPair() argument
2788 switch (FirstOpc) { in isClusterableLdStOpcPair()
2795 return FirstOpc == SecondOpc; in isClusterableLdStOpcPair()
2832 unsigned FirstOpc = FirstLdSt.getOpcode(); in shouldClusterMemOps() local
2837 if (!isClusterableLdStOpcPair(FirstOpc, SecondOpc, Subtarget)) in shouldClusterMemOps()