Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ExpandImm.cpp483 unsigned FirstOpc; in expandMOVImmSimple() local
486 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi); in expandMOVImmSimple()
488 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi); in expandMOVImmSimple()
500 Insn.push_back({ FirstOpc, Imm16, in expandMOVImmSimple()
H A DAArch64InstrInfo.cpp4237 static bool canPairLdStOpc(unsigned FirstOpc, unsigned SecondOpc) { in canPairLdStOpc() argument
4238 if (FirstOpc == SecondOpc) in canPairLdStOpc()
4241 switch (FirstOpc) { in canPairLdStOpc()
4339 unsigned FirstOpc = FirstLdSt.getOpcode(); in shouldClusterMemOps() local
4341 if (!canPairLdStOpc(FirstOpc, SecondOpc)) in shouldClusterMemOps()
4352 if (hasUnscaledLdStOffset(FirstOpc) && !scaleOffset(FirstOpc, Offset1)) in shouldClusterMemOps()
4371 return shouldClusterFI(MFI, BaseOp1.getIndex(), Offset1, FirstOpc, in shouldClusterMemOps()
H A DAArch64ISelLowering.cpp13699 unsigned FirstOpc = FirstOp.getOpcode(); in tryLowerToSLI() local
13708 if ((FirstOpc == ISD::AND || FirstOpc == AArch64ISD::BICi) && in tryLowerToSLI()
13716 (FirstOpc == AArch64ISD::VSHL || FirstOpc == AArch64ISD::VLSHR || in tryLowerToSLI()
13717 FirstOpc == AArch64ISD::SHL_PRED || in tryLowerToSLI()
13718 FirstOpc == AArch64ISD::SRL_PRED)) { in tryLowerToSLI()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp2869 static bool isClusterableLdStOpcPair(unsigned FirstOpc, unsigned SecondOpc, in isClusterableLdStOpcPair() argument
2871 switch (FirstOpc) { in isClusterableLdStOpcPair()
2878 return FirstOpc == SecondOpc; in isClusterableLdStOpcPair()
2917 unsigned FirstOpc = FirstLdSt.getOpcode(); in shouldClusterMemOps() local
2922 if (!isClusterableLdStOpcPair(FirstOpc, SecondOpc, Subtarget)) in shouldClusterMemOps()