[llvm] [CodeGen][RAGreedy] Inform LiveDebugVariables about snippets spilled by InlineSpiller. (PR #109962)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 25 05:26:37 PDT 2024
================
@@ -167,8 +167,8 @@ class InlineSpiller : public Spiller {
// All registers to spill to StackSlot, including the main register.
SmallVector<Register, 8> RegsToSpill;
- // All registers that were replaced by the spiller. This includes registers
- // that were rematerialized; rematted regs are removed from RegsToSpill.
+ // All registers that were replaced by the spiller through some other method,
+ // e.g. rematerialization.
SmallVector<Register, 8> RegsReplaced;
----------------
arsenm wrote:
Maybe could make this one set, if there's another way to tell which were spilled and which were just rematerialized
https://github.com/llvm/llvm-project/pull/109962
More information about the llvm-commits
mailing list