Lines Matching refs:LL
543 const IFListType &LL = I->second;
544 for (unsigned i = 0, n = LL.size(); i < n; ++i)
545 dbgs() << " " << PrintIFR(LL[i].first, HRI) << ", "
546 << PrintRegSet(LL[i].second, HRI) << '\n';
827 const RSListType &LL = I->second;
828 for (unsigned i = 0, n = LL.size(); i < n; ++i)
829 dbgs() << " (" << PrintReg(LL[i].first, HRI) << ",@"
830 << LL[i].second << ')';
860 RSListType &LL = F->second;
861 for (unsigned i = 0, n = LL.size(); i < n; ++i) {
862 uint16_t S = LL[i].second;
873 unsigned InsR = LL[i].first;
1007 IFListType &LL = I->second;
1008 for (unsigned i = 0, n = LL.size(); i < n; ++i)
1009 findRemovableRegisters(I->first, LL[i].first, LL[i].second);
1031 IFListType &LL = F->second;
1043 for (unsigned i = 0, n = LL.size(); i < n; ++i) {
1044 if (LL[i].second.empty())
1055 auto End = std::remove_if(LL.begin(), LL.end(), IsEmpty);
1056 if (End != LL.end())
1057 LL.erase(End, LL.end());
1064 IFRecord MaxIF = LL[0].first;
1065 for (unsigned i = 1, n = LL.size(); i < n; ++i) {
1066 // If LL[MaxI] < LL[i], then MaxI = i.
1067 const IFRecord &IF = LL[i].first;
1087 LL.clear();
1088 LL.push_back(std::make_pair(MaxIF, RegisterSet()));
1098 for (unsigned i = 0, n = LL.size(); i < n; ) {
1099 const RegisterSet &RMi = LL[i].second;
1102 if (j != i && LL[j].second.includes(RMi))
1110 LL.erase(LL.begin()+i);
1111 n = LL.size();
1120 IFListType &LL = F->second;
1124 for (unsigned i = LL.size(); i > 0; --i) {
1125 unsigned SR = LL[i-1].first.SrcR, IR = LL[i-1].first.InsR;
1134 LL.erase(LL.begin()+(i-1));
1142 IFListType &LL = F->second;
1147 auto End = std::remove_if(LL.begin(), LL.end(), IsCopy);
1148 if (End != LL.end())
1149 LL.erase(End, LL.end());
1258 const IFListType &LL = I->second;
1260 for (unsigned i = 0, n = LL.size(); i < n; ++i)
1261 TT.insert(LL[i].second);
1295 IFListType &LL = I->second;
1296 if (LL.empty())
1302 IFListType::iterator MinI = std::min_element(LL.begin(), LL.end(), IFO);
1303 assert(MinI != LL.end());
1305 LL.clear();
1338 LL.push_back(M);
1347 const IFListType &LL = I->second;
1348 if (LL.size() > 0)
1349 AllRMs.insert(LL[0].second);
1352 IFListType &LL = I->second;
1353 if (LL.size() == 0)
1355 unsigned SR = LL[0].first.SrcR, IR = LL[0].first.InsR;
1357 LL.clear();