reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
47 ScopedHashTableVal *NextInScope; 48 ScopedHashTableVal *NextForKey; 59 ScopedHashTableVal *getNextForKey() { return NextForKey; } 60 const ScopedHashTableVal *getNextForKey() const { return NextForKey; } 61 ScopedHashTableVal *getNextInScope() { return NextInScope; } 64 static ScopedHashTableVal *Create(ScopedHashTableVal *nextInScope, 64 static ScopedHashTableVal *Create(ScopedHashTableVal *nextInScope, 65 ScopedHashTableVal *nextForKey, 68 ScopedHashTableVal *New = Allocator.template Allocate<ScopedHashTableVal>(); 68 ScopedHashTableVal *New = Allocator.template Allocate<ScopedHashTableVal>(); 70 new (New) ScopedHashTableVal(key, val); 78 this->~ScopedHashTableVal(); 94 ScopedHashTableVal<K, V> *LastValInScope; 108 ScopedHashTableVal<K, V> *getLastValInScope() { 112 void setLastValInScope(ScopedHashTableVal<K, V> *Val) { 119 ScopedHashTableVal<K, V> *Node; 122 ScopedHashTableIterator(ScopedHashTableVal<K, V> *node) : Node(node) {} 160 using ValTy = ScopedHashTableVal<K, V>; 218 ScopedHashTableVal<K, V> *&KeyEntry = TopLevelMap[Key]; 241 while (ScopedHashTableVal<K, V> *ThisEntry = LastValInScope) { 248 ScopedHashTableVal<K, V> *&KeyEntry = HT.TopLevelMap[ThisEntry->getKey()];lib/CodeGen/MachineCSE.cpp
100 ScopedHashTableVal<MachineInstr *, unsigned>>;
lib/Target/Mips/MipsOptimizePICCall.cpp 60 ScopedHashTableVal<ValueType, CntRegP>>;