[llvm] [RISCV] Generate MIPS load/store pair instructions (PR #124717)

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 09:44:35 PST 2025


================
@@ -2750,6 +2750,46 @@ MachineInstr *RISCVInstrInfo::emitLdStWithAddr(MachineInstr &MemI,
       .setMIFlags(MemI.getFlags());
 }
 
+bool RISCVInstrInfo::isPairableLdStInstOpc(unsigned Opc) {
+  switch (Opc) {
+  default:
+    return false;
----------------
topperc wrote:

I don't understand the contents of this list. It has more than what Mips supports, but it is not all load and store opcodes. LB, LBU, and LWU are missing.

https://github.com/llvm/llvm-project/pull/124717


More information about the llvm-commits mailing list