Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DSIMachineScheduler.h86 std::set<unsigned> LiveOutRegs; variable
162 std::set<unsigned> &getOutRegs() { return LiveOutRegs; } in getOutRegs()
476 for (const auto &RegMaskPair : RPTracker.getPressure().LiveOutRegs) { in getOutRegs()
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()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
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()
DMachinePipeliner.cpp1610 SmallVector<RegisterMaskPair, 8> LiveOutRegs; in computeLiveOuts() local
1633 LiveOutRegs.push_back(RegisterMaskPair(Reg, in computeLiveOuts()
1639 LiveOutRegs.push_back(RegisterMaskPair(*Units, in computeLiveOuts()
1643 RPTracker.addLiveRegs(LiveOutRegs); in computeLiveOuts()
DMachineScheduler.cpp1030 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
1047 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
1342 for (const RegisterMaskPair &P : RPTracker.getPressure().LiveOutRegs) { in computeCyclicCriticalPath()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DRegisterPressure.h54 SmallVector<RegisterMaskPair,8> LiveOutRegs; member