Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ExpandImm.cpp263 unsigned FirstOpc; in expandMOVImmSimple() local
266 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi); in expandMOVImmSimple()
268 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi); in expandMOVImmSimple()
280 Insn.push_back({ FirstOpc, Imm16, in expandMOVImmSimple()
DAArch64InstrInfo.cpp2319 static bool canPairLdStOpc(unsigned FirstOpc, unsigned SecondOpc) { in canPairLdStOpc() argument
2320 if (FirstOpc == SecondOpc) in canPairLdStOpc()
2323 switch (FirstOpc) { in canPairLdStOpc()
2389 unsigned FirstOpc = FirstLdSt.getOpcode(); in shouldClusterMemOps() local
2391 if (!canPairLdStOpc(FirstOpc, SecondOpc)) in shouldClusterMemOps()
2402 if (isUnscaledLdSt(FirstOpc) && !scaleOffset(FirstOpc, Offset1)) in shouldClusterMemOps()
2421 return shouldClusterFI(MFI, BaseOp1.getIndex(), Offset1, FirstOpc, in shouldClusterMemOps()
/external/llvm-project/llvm/lib/Target/AArch64/
DAArch64ExpandImm.cpp263 unsigned FirstOpc; in expandMOVImmSimple() local
266 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi); in expandMOVImmSimple()
268 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi); in expandMOVImmSimple()
280 Insn.push_back({ FirstOpc, Imm16, in expandMOVImmSimple()
DAArch64InstrInfo.cpp2580 static bool canPairLdStOpc(unsigned FirstOpc, unsigned SecondOpc) { in canPairLdStOpc() argument
2581 if (FirstOpc == SecondOpc) in canPairLdStOpc()
2584 switch (FirstOpc) { in canPairLdStOpc()
2654 unsigned FirstOpc = FirstLdSt.getOpcode(); in shouldClusterMemOps() local
2656 if (!canPairLdStOpc(FirstOpc, SecondOpc)) in shouldClusterMemOps()
2667 if (isUnscaledLdSt(FirstOpc) && !scaleOffset(FirstOpc, Offset1)) in shouldClusterMemOps()
2686 return shouldClusterFI(MFI, BaseOp1.getIndex(), Offset1, FirstOpc, in shouldClusterMemOps()
DAArch64ISelLowering.cpp9163 unsigned FirstOpc = FirstOp.getOpcode(); in tryLowerToSLI() local
9171 if ((FirstOpc == ISD::AND || FirstOpc == AArch64ISD::BICi) && in tryLowerToSLI()
9177 (FirstOpc == AArch64ISD::VSHL || FirstOpc == AArch64ISD::VLSHR)) { in tryLowerToSLI()
/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()
/external/llvm-project/llvm/lib/Target/PowerPC/
DPPCInstrInfo.cpp2325 static bool isClusterableLdStOpcPair(unsigned FirstOpc, unsigned SecondOpc, in isClusterableLdStOpcPair() argument
2327 switch (FirstOpc) { in isClusterableLdStOpcPair()
2334 return FirstOpc == SecondOpc; in isClusterableLdStOpcPair()
2371 unsigned FirstOpc = FirstLdSt.getOpcode(); in shouldClusterMemOps() local
2376 if (!isClusterableLdStOpcPair(FirstOpc, SecondOpc, Subtarget)) in shouldClusterMemOps()