Home
last modified time | relevance | path

Searched refs:indexList (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSlotIndexes.cpp44 indexList.clear(); in ~SlotIndexes()
61 indexList.clear(); in clear()
81 assert(indexList.empty() && "Index list non-empty at initial numbering?"); in analyze()
93 indexList.push_back(*createEntry(nullptr, index)); in analyze()
98 SlotIndex blockStartIndex(&indexList.back(), SlotIndex::Slot_Block); in analyze()
105 indexList.push_back(*createEntry(&MI, index += SlotIndex::InstrDist)); in analyze()
109 &MI, SlotIndex(&indexList.back(), SlotIndex::Slot_Block))); in analyze()
113 indexList.push_back(*createEntry(nullptr, index += SlotIndex::InstrDist)); in analyze()
116 MBBRanges[MBB.getNumber()].second = SlotIndex(&indexList.back(), in analyze()
183 } while (curItr != indexList.end() && curItr->getIndex() <= index); in renumberIndexes()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h305 IndexList indexList; variable
363 assert(indexList.front().getIndex() == 0 && "First index is not 0?"); in getZeroIndex()
364 return SlotIndex(&indexList.front(), 0); in getZeroIndex()
369 return SlotIndex(&indexList.back(), 0); in getLastIndex()
405 IndexList::iterator E = indexList.end(); in getNextNonNullIndex()
560 indexList.insert(nextItr, *createEntry(&MI, newNumber));
619 indexList.insert(insEntry->getIterator(), *startEntry); in insertMBBInMaps()
/freebsd/contrib/dialog/samples/
H A Ddialog.py192 indexList = map(lambda x: int(x[1:-1]), split(output))
193 objectList = filter(lambda item, list=list, indexList=indexList:
194 list.index(item) + 1 in indexList,
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DELFAttributeParser.cpp85 void ELFAttributeParser::parseIndexList(SmallVectorImpl<uint8_t> &indexList) { in parseIndexList() argument
90 indexList.push_back(value); in parseIndexList()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DELFAttributeParser.h42 void parseIndexList(SmallVectorImpl<uint8_t> &indexList);