Lines Matching refs:LiveOuts
90 LocationVec &Locs, LiveOutVec &LiveOuts) const { in parseOperand()
152 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut()); in parseOperand()
163 const LiveOutVec &LiveOuts = CSI.LiveOuts; in print() local
211 OS << WSMP << " has " << LiveOuts.size() << " live-out registers\n"; in print()
214 for (const auto &LO : LiveOuts) { in print()
241 LiveOutVec LiveOuts; in parseRegisterLiveOutMask() local
246 LiveOuts.push_back(createLiveOutReg(Reg, TRI)); in parseRegisterLiveOutMask()
251 std::sort(LiveOuts.begin(), LiveOuts.end()); in parseRegisterLiveOutMask()
252 for (LiveOutVec::iterator I = LiveOuts.begin(), E = LiveOuts.end(); in parseRegisterLiveOutMask()
266 LiveOuts.erase(std::remove_if(LiveOuts.begin(), LiveOuts.end(), in parseRegisterLiveOutMask()
267 LiveOutReg::IsInvalid), LiveOuts.end()); in parseRegisterLiveOutMask()
268 return LiveOuts; in parseRegisterLiveOutMask()
281 LiveOutVec LiveOuts; in recordStackMapOpers() local
286 Locations, LiveOuts); in recordStackMapOpers()
291 MOI = parseOperand(MOI, MOE, Locations, LiveOuts); in recordStackMapOpers()
324 std::move(LiveOuts)); in recordStackMapOpers()
468 const LiveOutVec &LiveOuts = CSI.LiveOuts; in emitCallsiteEntries() local
474 if (CSLocs.size() > UINT16_MAX || LiveOuts.size() > UINT16_MAX) { in emitCallsiteEntries()
501 OS.EmitIntValue(LiveOuts.size(), 2); in emitCallsiteEntries()
503 for (const auto &LO : LiveOuts) { in emitCallsiteEntries()