[llvm] [CodeGen][RAGreedy] Inform LiveDebugVariables about snippets spilled by InlineSpiller. (PR #109962)
Bevin Hansson via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 30 00:07:04 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;
----------------
bevin-hansson wrote:
I started implementing this change, but it really didn't turn out that well.
https://github.com/llvm/llvm-project/pull/109962
More information about the llvm-commits
mailing list