[llvm] [AMDGPU][CodeGen] Utilized MBB's liveIn check in SILowerSGPRSpills (PR #129848)
Vikash Gupta via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 6 02:01:34 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;
----------------
vg0204 wrote:
> Blocks should not track both LiveInRegUnits and LiveIns.
What I feel both is important! LiveIns maintains the list of exact physReg with laneBitmask (what is live to use) & LiveInRegUnits to utilize that info to precisely perform checks for isLiveIn like functions!
https://github.com/llvm/llvm-project/pull/129848
More information about the llvm-commits
mailing list