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<Register> LiveOutRegs; variable
161 std::set<Register> &getOutRegs() { return LiveOutRegs; } in getOutRegs()
475 for (const auto &RegMaskPair : RPTracker.getPressure().LiveOutRegs) { in getOutRegs()
H A DSIMachineScheduler.cpp322 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
329 LiveOutRegs.clear(); in initRegPressure()
352 for (const auto &RegMaskPair : RPTracker.getPressure().LiveOutRegs) { in initRegPressure()
358 LiveOutRegs.insert(Reg); in initRegPressure()
584 for (Register Reg : LiveOutRegs) in printDebug()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterPressure.cpp103 for (const VRegMaskOrUnit &P : LiveOutRegs) { in dump()
177 LiveOutRegs.clear(); in reset()
185 LiveOutRegs.clear(); in reset()
333 assert(P.LiveOutRegs.empty() && "inconsistent max pressure result"); in closeBottom()
334 P.LiveOutRegs.reserve(LiveRegs.size()); in closeBottom()
335 LiveRegs.appendTo(P.LiveOutRegs); in closeBottom()
358 for (const VRegMaskOrUnit &Pair : P.LiveOutRegs) { in initLiveThru()
728 discoverLiveInOrOut(Pair, P.LiveOutRegs); in discoverLiveOut()
H A DMachinePipeliner.cpp2240 SmallVector<VRegMaskOrUnit, 8> LiveOutRegs; in computeLiveOuts() local
2260 LiveOutRegs.emplace_back(Reg, LaneBitmask::getNone()); in computeLiveOuts()
2264 LiveOutRegs.emplace_back(Unit, LaneBitmask::getNone()); in computeLiveOuts()
2267 RPTracker.addLiveRegs(LiveOutRegs); in computeLiveOuts()
H A DMachineScheduler.cpp1515 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
1532 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
1838 for (const VRegMaskOrUnit &P : RPTracker.getPressure().LiveOutRegs) { in computeCyclicCriticalPath()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h54 SmallVector<VRegMaskOrUnit, 8> LiveOutRegs; member