[PATCH] D151323: [AMDGPU] Switch to backwards scavenging in non-spill cases

Jay Foad via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 24 06:07:52 PDT 2023


foad created this revision.
foad added a reviewer: AMDGPU.
Herald added subscribers: StephenFan, kerbowa, hiraditya, tpr, dstuttard, yaxunl, jvesely, kzhuravl, arsenm.
Herald added a project: All.
foad requested review of this revision.
Herald added subscribers: llvm-commits, wdng.
Herald added a project: LLVM.

When the scavenger is not allowed to spill, the only difference between
forward and backward should be the heuristics used to pick an available
register. Forwards scavenging tries to pick a register that can be used
again later in the BB; backwards scavenging tries to pick one that can
be used earlier.

Backwards scavenging is preferred because it does not rely on accurate
kill flags.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D151323

Files:
  llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
  llvm/test/CodeGen/AMDGPU/accvgpr-copy.mir
  llvm/test/CodeGen/AMDGPU/llvm.amdgcn.mfma.bf16.ll
  llvm/test/CodeGen/AMDGPU/llvm.amdgcn.mfma.i8.ll
  llvm/test/CodeGen/AMDGPU/llvm.amdgcn.mfma.ll

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D151323.525134.patch
Type: text/x-patch
Size: 7215 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230524/db6aaf44/attachment.bin>


More information about the llvm-commits mailing list