[llvm] [AMDGPU] Support block load/store for CSR (PR #130013)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 11 22:08:19 PDT 2025


================
@@ -72,6 +76,9 @@ class CalleeSavedInfo {
   bool isRestored()                        const { return Restored; }
   void setRestored(bool R)                       { Restored = R; }
   bool isSpilledToReg()                    const { return SpilledToReg; }
+
+  bool isHandledByTarget() const { return IsHandledByTarget; }
+  void setHandledByTarget() { IsHandledByTarget = true; }
----------------
arsenm wrote:

Can you just override spillCalleeSavedRegisters/restoreCalleeSavesRegisters? Why do we need a parallel customization mechanism in the same code?

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


More information about the llvm-commits mailing list