Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DRegisterPressure.cpp66 for (unsigned i = 0, e = LiveOutRegs.size(); i < e; ++i) in dump()
67 dbgs() << PrintReg(LiveOutRegs[i], TRI) << " "; in dump()
106 LiveOutRegs.clear(); in reset()
114 LiveOutRegs.clear(); in reset()
260 assert(P.LiveOutRegs.empty() && "inconsistent max pressure result"); in closeBottom()
261 P.LiveOutRegs.reserve(LiveRegs.PhysRegs.size() + LiveRegs.VirtRegs.size()); in closeBottom()
262 P.LiveOutRegs.append(LiveRegs.PhysRegs.begin(), LiveRegs.PhysRegs.end()); in closeBottom()
265 P.LiveOutRegs.push_back(*I); in closeBottom()
266 std::sort(P.LiveOutRegs.begin(), P.LiveOutRegs.end()); in closeBottom()
267 P.LiveOutRegs.erase(std::unique(P.LiveOutRegs.begin(), P.LiveOutRegs.end()), in closeBottom()
[all …]
DMachineScheduler.cpp877 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
894 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
1132 ArrayRef<unsigned> LiveOuts = RPTracker.getPressure().LiveOutRegs; in computeCyclicCriticalPath()
/external/llvm/include/llvm/CodeGen/
DRegisterPressure.h36 SmallVector<unsigned,8> LiveOutRegs; member