Lines Matching refs:LiveOuts
90 LiveOutVec &LiveOuts) const { in parseOperand()
154 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut()); in parseOperand()
165 const LiveOutVec &LiveOuts = CSI.LiveOuts; in print() local
213 OS << WSMP << "\thas " << LiveOuts.size() << " live-out registers\n"; in print()
216 for (const auto &LO : LiveOuts) { in print()
243 LiveOutVec LiveOuts; in parseRegisterLiveOutMask() local
248 LiveOuts.push_back(createLiveOutReg(Reg, TRI)); in parseRegisterLiveOutMask()
254 std::sort(LiveOuts.begin(), LiveOuts.end(), in parseRegisterLiveOutMask()
260 for (auto I = LiveOuts.begin(), E = LiveOuts.end(); I != E; ++I) { in parseRegisterLiveOutMask()
274 LiveOuts.erase( in parseRegisterLiveOutMask()
275 std::remove_if(LiveOuts.begin(), LiveOuts.end(), in parseRegisterLiveOutMask()
277 LiveOuts.end()); in parseRegisterLiveOutMask()
279 return LiveOuts; in parseRegisterLiveOutMask()
292 LiveOutVec LiveOuts; in recordStackMapOpers() local
297 LiveOuts); in recordStackMapOpers()
302 MOI = parseOperand(MOI, MOE, Locations, LiveOuts); in recordStackMapOpers()
333 std::move(LiveOuts)); in recordStackMapOpers()
474 const LiveOutVec &LiveOuts = CSI.LiveOuts; in emitCallsiteEntries() local
480 if (CSLocs.size() > UINT16_MAX || LiveOuts.size() > UINT16_MAX) { in emitCallsiteEntries()
507 OS.EmitIntValue(LiveOuts.size(), 2); in emitCallsiteEntries()
509 for (const auto &LO : LiveOuts) { in emitCallsiteEntries()