Home
last modified time | relevance | path

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

/external/llvm/lib/Target/AArch64/
DAArch64ExpandPseudoInsts.cpp536 unsigned FirstOpc; in expandMOVImm() local
539 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi); in expandMOVImm()
541 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi); in expandMOVImm()
554 BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(FirstOpc)) in expandMOVImm()
DAArch64InstrInfo.cpp1740 static bool canPairLdStOpc(unsigned FirstOpc, unsigned SecondOpc) { in canPairLdStOpc() argument
1741 if (FirstOpc == SecondOpc) in canPairLdStOpc()
1744 switch (FirstOpc) { in canPairLdStOpc()
1769 unsigned FirstOpc = FirstLdSt.getOpcode(); in shouldClusterMemOps() local
1771 if (!canPairLdStOpc(FirstOpc, SecondOpc)) in shouldClusterMemOps()
1782 if (isUnscaledLdSt(FirstOpc) && !scaleOffset(FirstOpc, Offset1)) in shouldClusterMemOps()