Home
last modified time | relevance | path

Searched refs:LiveOutRegs (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.h85 std::set<unsigned> LiveOutRegs; variable
161 std::set<unsigned> &getOutRegs() { return LiveOutRegs; } in getOutRegs()
475 for (const auto &RegMaskPair : RPTracker.getPressure().LiveOutRegs) { in getOutRegs()
H A DSIMachineScheduler.cpp328 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
335 LiveOutRegs.clear(); in initRegPressure()
358 for (const auto &RegMaskPair : RPTracker.getPressure().LiveOutRegs) { in initRegPressure()
364 LiveOutRegs.insert(Reg); in initRegPressure()
590 for (unsigned Reg : LiveOutRegs) in printDebug()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DRegisterPressure.cpp107 for (const RegisterMaskPair &P : LiveOutRegs) { in dump()
181 LiveOutRegs.clear(); in reset()
189 LiveOutRegs.clear(); in reset()
337 assert(P.LiveOutRegs.empty() && "inconsistent max pressure result"); in closeBottom()
338 P.LiveOutRegs.reserve(LiveRegs.size()); in closeBottom()
339 LiveRegs.appendTo(P.LiveOutRegs); in closeBottom()
362 for (const RegisterMaskPair &Pair : P.LiveOutRegs) { in initLiveThru()
742 discoverLiveInOrOut(Pair, P.LiveOutRegs); in discoverLiveOut()
H A DMachinePipeliner.cpp1599 SmallVector<RegisterMaskPair, 8> LiveOutRegs; in computeLiveOuts() local
1622 LiveOutRegs.push_back(RegisterMaskPair(Reg, in computeLiveOuts()
1628 LiveOutRegs.push_back(RegisterMaskPair(*Units, in computeLiveOuts()
1632 RPTracker.addLiveRegs(LiveOutRegs); in computeLiveOuts()
H A DMachineScheduler.cpp1029 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
1046 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
1341 for (const RegisterMaskPair &P : RPTracker.getPressure().LiveOutRegs) { in computeCyclicCriticalPath()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h53 SmallVector<RegisterMaskPair,8> LiveOutRegs; member