OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IndexList
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/CodeGen/
SlotIndexes.cpp
37
indexList
.clear();
57
assert(
indexList
.empty() && "Index list non-empty at initial numbering?");
69
indexList
.push_back(createEntry(0, 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(0, index += SlotIndex::InstrDist));
97
MBBRanges[mbb->getNumber()].second = SlotIndex(&
indexList
.back(),
118
for (
IndexList
::iterator I =
indexList
.begin(), E = indexList.end()
[
all
...]
/external/llvm/include/llvm/CodeGen/
SlotIndexes.h
337
typedef ilist<IndexListEntry>
IndexList
;
338
IndexList
indexList
;
341
IndexList
graveyardList;
371
void renumberIndexes(
IndexList
::iterator curItr);
398
assert(
indexList
.front().getIndex() == 0 && "First index is not 0?");
399
return SlotIndex(&
indexList
.front(), 0);
404
return SlotIndex(&
indexList
.back(), 0);
430
IndexList
::iterator I = Index.listEntry();
431
IndexList
::iterator E = indexList.end()
[
all
...]
Completed in 246 milliseconds