Lines Matching refs:LiveOuts
90 LiveOutVec &LiveOuts) const { in parseOperand()
152 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut()); in parseOperand()
163 const LiveOutVec &LiveOuts = CSI.LiveOuts; in print() local
211 OS << WSMP << "\thas " << 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()
252 std::sort(LiveOuts.begin(), LiveOuts.end(), in parseRegisterLiveOutMask()
258 for (auto I = LiveOuts.begin(), E = LiveOuts.end(); I != E; ++I) { in parseRegisterLiveOutMask()
272 LiveOuts.erase( in parseRegisterLiveOutMask()
273 std::remove_if(LiveOuts.begin(), LiveOuts.end(), in parseRegisterLiveOutMask()
275 LiveOuts.end()); in parseRegisterLiveOutMask()
277 return LiveOuts; in parseRegisterLiveOutMask()
290 LiveOutVec LiveOuts; in recordStackMapOpers() local
295 LiveOuts); in recordStackMapOpers()
300 MOI = parseOperand(MOI, MOE, Locations, LiveOuts); in recordStackMapOpers()
331 std::move(LiveOuts)); in recordStackMapOpers()
472 const LiveOutVec &LiveOuts = CSI.LiveOuts; in emitCallsiteEntries() local
478 if (CSLocs.size() > UINT16_MAX || LiveOuts.size() > UINT16_MAX) { in emitCallsiteEntries()
505 OS.EmitIntValue(LiveOuts.size(), 2); in emitCallsiteEntries()
507 for (const auto &LO : LiveOuts) { in emitCallsiteEntries()