Searched defs:IndexListEntry (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h38 class IndexListEntry : public ilist_node<IndexListEntry> { class in namespace:llvm
44 IndexListEntry(MachineInstr *mi, unsigned index) : mi(mi), index(index) {} function in class:llvm::IndexListEntry
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 *provideInitialHea
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DSlotIndexes.h36 class IndexListEntry { class in namespace:llvm
37 IndexListEntry *next, *prev;
43 IndexListEntry(MachineInstr *mi, unsigned index) : mi(mi), index(index) {} function in class:llvm::IndexListEntry
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...]

Completed in 161 milliseconds