[llvm] [RISCV] Add late optimization pass for riscv (PR #133256)

Michael Maitland via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 27 09:23:42 PDT 2025


================
@@ -307,6 +307,13 @@ class RISCVInstrInfo : public RISCVGenInstrInfo {
   static bool isLdStSafeToPair(const MachineInstr &LdSt,
                                const TargetRegisterInfo *TRI);
 
+  static bool evaluateCondBranch(unsigned CC, int64_t C0, int64_t C1);
+
+  static bool isLoadImm(const MachineInstr *MI, int64_t &Imm);
+
+  static bool isFromLoadImm(const MachineRegisterInfo &MRI,
----------------
michaelmaitland wrote:

Can you please add a docstring?

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


More information about the llvm-commits mailing list