[llvm] [AMDGPU] Support block load/store for CSR (PR #130013)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 21:06:33 PDT 2025
================
@@ -663,6 +663,18 @@ class SIInstrInfo final : public AMDGPUGenInstrInfo {
return get(Opcode).TSFlags & SIInstrFlags::FLAT;
}
+ static bool isBlockLoadStore(uint16_t Opcode) {
+ switch (Opcode) {
+ case AMDGPU::SI_BLOCK_SPILL_V1024_SAVE:
+ case AMDGPU::SI_BLOCK_SPILL_V1024_RESTORE:
+ case AMDGPU::SCRATCH_STORE_BLOCK_SADDR:
+ case AMDGPU::SCRATCH_LOAD_BLOCK_SADDR:
----------------
arsenm wrote:
do these not support the other addressing modes?
https://github.com/llvm/llvm-project/pull/130013
More information about the llvm-commits
mailing list