[llvm] [AMDGPU] Support block load/store for CSR (PR #130013)
Diana Picus via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 06:43:16 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; }
----------------
rovka wrote:
I did override those, but I'm only using them for the block VGPRs. I didn't want to copy-paste all the generic code into our target-specific methods.
https://github.com/llvm/llvm-project/pull/130013
More information about the llvm-commits
mailing list