[llvm] [RISCV] Add late optimization pass for riscv (PR #133256)
Mikhail R. Gadelha via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 09:26:22 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);
----------------
mikhailramalho wrote:
yeah... `optimizeCondBranch` uses `isLoadImm` directly
https://github.com/llvm/llvm-project/pull/133256
More information about the llvm-commits
mailing list