HomeSort by relevance Sort by last modified time
    Searched refs:IndexListEntry (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
SlotIndexes.h 36 class IndexListEntry {
37 IndexListEntry *next, *prev;
43 IndexListEntry(MachineInstr *mi, unsigned index) : mi(mi), index(index) {}
55 IndexListEntry* getNext() { return next; }
56 const IndexListEntry* getNext() const { return next; }
57 void setNext(IndexListEntry *next) {
61 IndexListEntry* getPrev() { return prev; }
62 const IndexListEntry* getPrev() const { return prev; }
63 void setPrev(IndexListEntry *prev) {
68 // Specialize PointerLikeTypeTraits for IndexListEntry
    [all...]
  /external/llvm/include/llvm/CodeGen/
SlotIndexes.h 38 class IndexListEntry : public ilist_node<IndexListEntry> {
44 IndexListEntry(MachineInstr *mi, unsigned index) : mi(mi), index(index) {}
72 struct ilist_traits<IndexListEntry> : public ilist_default_traits<IndexListEntry> {
74 mutable ilist_half_node<IndexListEntry> Sentinel;
76 IndexListEntry *createSentinel() const {
77 return static_cast<IndexListEntry*>(&Sentinel);
79 void destroySentinel(IndexListEntry *) const {}
81 IndexListEntry *provideInitialHead() const { return createSentinel();
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SlotIndexes.cpp 120 for (IndexListEntry *curEntry = front(); curEntry != getTail();
129 void SlotIndexes::renumberIndexes(IndexListEntry *curEntry) {
134 IndexListEntry *start = curEntry->getPrev();
136 IndexListEntry *tail = getTail();
150 for (const IndexListEntry *itr = front(); itr != getTail();
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
SlotIndexes.h 47 class IndexListEntry : public ilist_node<IndexListEntry> {
52 IndexListEntry(MachineInstr *mi, unsigned index) : mi(mi), index(index) {}
80 struct ilist_alloc_traits<IndexListEntry>
81 : public ilist_noalloc_traits<IndexListEntry> {};
111 PointerIntPair<IndexListEntry*, 2, unsigned> lie;
113 SlotIndex(IndexListEntry *entry, unsigned slot)
116 IndexListEntry* listEntry() const {
333 // IndexListEntry allocator.
336 using IndexList = ilist<IndexListEntry>;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
SlotIndexes.cpp 114 IndexListEntry &MIEntry = *MIIndex.listEntry();
127 IndexListEntry &MIEntry = *MIIndex.listEntry();

Completed in 7343 milliseconds