Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:IndexList

37   indexList.clear();
57 assert(indexList.empty() && "Index list non-empty at initial numbering?");
69 indexList.push_back(createEntry(nullptr, index));
77 SlotIndex blockStartIndex(&indexList.back(), SlotIndex::Slot_Block);
86 indexList.push_back(createEntry(mi, index += SlotIndex::InstrDist));
89 mi2iMap.insert(std::make_pair(mi, SlotIndex(&indexList.back(),
94 indexList.push_back(createEntry(nullptr, index += SlotIndex::InstrDist));
97 MBBRanges[mbb->getNumber()].second = SlotIndex(&indexList.back(),
118 for (IndexList::iterator I = indexList.begin(), E = indexList.end();
127 void SlotIndexes::renumberIndexes(IndexList::iterator curItr) {
132 IndexList::iterator startItr = std::prev(curItr);
138 } while (curItr != indexList.end() && curItr->getIndex() <= index);
175 IndexList::iterator ListB = startIdx.listEntry();
176 IndexList::iterator ListI = endIdx.listEntry();
207 // to update the IndexList while we are iterating it.
218 for (IndexList::const_iterator itr = indexList.begin();
219 itr != indexList.end(); ++itr) {