Searched refs:SymbolsMapKey (Results 1 – 2 of 2) sorted by relevance
26 struct SymbolsMapKey { struct30 SymbolsMapKey(MachO::EncodeKind Kind, StringRef Name) in SymbolsMapKey() argument33 template <> struct DenseMapInfo<SymbolsMapKey> {34 static inline SymbolsMapKey getEmptyKey() {35 return SymbolsMapKey(MachO::EncodeKind::GlobalSymbol, StringRef{});38 static inline SymbolsMapKey getTombstoneKey() {39 return SymbolsMapKey(MachO::EncodeKind::ObjectiveCInstanceVariable,43 static unsigned getHashValue(const SymbolsMapKey &Key) {47 static bool isEqual(const SymbolsMapKey &LHS, const SymbolsMapKey &RHS) {53 bool operator==(const DenseMapBase<DerivedT, SymbolsMapKey, MachO::Symbol *,[all …]
17 auto Result = Symbols.try_emplace(SymbolsMapKey{Kind, Name}, nullptr); in addGlobalImpl()