[llvm] [llvm][CodeGen] avoid repeated interval calculation in window scheduler (PR #132352)
Yuta Mukai via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 02:18:19 PDT 2025
ytmukai wrote:
Strictly speaking, it might be necessary to fix and restore the following code. The intention of this code is to invalidate the interval because the reference to an existing register was changed. However, the existing register is not `ToReg` but `FromReg`. Additionally, the invalidation should be done using `removeInterval()`.
As mentioned above, within the scope currently used by MachinePipeliner, the interval of this register will not be referenced further.
https://github.com/llvm/llvm-project/blob/e0fee65b87872c434ab7a60fe237573d5ce88ca9/llvm/lib/CodeGen/ModuloSchedule.cpp#L352-L353
https://github.com/llvm/llvm-project/pull/132352
More information about the llvm-commits
mailing list