Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DRegisterPressure.cpp95 for (unsigned i = 0, e = LiveOutRegs.size(); i < e; ++i) in dump()
96 dbgs() << PrintReg(LiveOutRegs[i], TRI) << " "; in dump()
146 LiveOutRegs.clear(); in reset()
154 LiveOutRegs.clear(); in reset()
282 assert(P.LiveOutRegs.empty() && "inconsistent max pressure result"); in closeBottom()
283 P.LiveOutRegs.reserve(LiveRegs.PhysRegs.size() + LiveRegs.VirtRegs.size()); in closeBottom()
284 P.LiveOutRegs.append(LiveRegs.PhysRegs.begin(), LiveRegs.PhysRegs.end()); in closeBottom()
287 P.LiveOutRegs.push_back(*I); in closeBottom()
288 std::sort(P.LiveOutRegs.begin(), P.LiveOutRegs.end()); in closeBottom()
289 P.LiveOutRegs.erase(std::unique(P.LiveOutRegs.begin(), P.LiveOutRegs.end()), in closeBottom()
[all …]
DMachineScheduler.cpp464 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs); in initRegPressure()
/external/llvm/include/llvm/CodeGen/
DRegisterPressure.h36 SmallVector<unsigned,8> LiveOutRegs; member