Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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.cpp326 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
333 LiveOutRegs.clear(); in initRegPressure()
356 for (const auto &RegMaskPair : RPTracker.getPressure().LiveOutRegs) { in initRegPressure()
362 LiveOutRegs.insert(Reg); in initRegPressure()
588 for (unsigned Reg : LiveOutRegs) in printDebug()
/freebsd/contrib/llvm-project/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()
733 discoverLiveInOrOut(Pair, P.LiveOutRegs); in discoverLiveOut()
H A DMachinePipeliner.cpp2037 SmallVector<RegisterMaskPair, 8> LiveOutRegs; in computeLiveOuts() local
2058 LiveOutRegs.push_back(RegisterMaskPair(Reg, in computeLiveOuts()
2063 LiveOutRegs.push_back( in computeLiveOuts()
2067 RPTracker.addLiveRegs(LiveOutRegs); in computeLiveOuts()
H A DMachineScheduler.cpp1275 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
1292 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
1587 for (const RegisterMaskPair &P : RPTracker.getPressure().LiveOutRegs) { in computeCyclicCriticalPath()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h53 SmallVector<RegisterMaskPair,8> LiveOutRegs; member