[llvm] [AMDGPU][CodeGen] Utilized MBB's liveIn check in SILowerSGPRSpills (PR #129848)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 6 05:27:29 PST 2025


================
@@ -177,6 +179,10 @@ class MachineBasicBlock
   using LiveInVector = std::vector<RegisterMaskPair>;
   LiveInVector LiveIns;
 
+  /// Keeps track of live register units for those physical registers which
+  /// are livein of the basicblock.
+  BitVector LiveInRegUnits;
----------------
arsenm wrote:

I think you should decouple these issues. In this PR, just use the MCRegAliasIterator at the use point to get it functional. Fixing the APIs is for later 

https://github.com/llvm/llvm-project/pull/129848


More information about the llvm-commits mailing list