Lines Matching refs:CIEKey
1774 struct CIEKey { struct
1775 static const CIEKey getEmptyKey() { in getEmptyKey() argument
1776 return CIEKey(nullptr, 0, -1, false, false, static_cast<unsigned>(INT_MAX), in getEmptyKey()
1780 static const CIEKey getTombstoneKey() { in getTombstoneKey() argument
1781 return CIEKey(nullptr, -1, 0, false, false, static_cast<unsigned>(INT_MAX), in getTombstoneKey()
1785 CIEKey(const MCSymbol *Personality, unsigned PersonalityEncoding, in CIEKey() function
1792 explicit CIEKey(const MCDwarfFrameInfo &Frame) in CIEKey() function
1805 bool operator<(const CIEKey &Other) const { in operator <() argument
1826 template <> struct DenseMapInfo<CIEKey> {
1827 static CIEKey getEmptyKey() { return CIEKey::getEmptyKey(); } in getEmptyKey()
1828 static CIEKey getTombstoneKey() { return CIEKey::getTombstoneKey(); } in getTombstoneKey()
1830 static unsigned getHashValue(const CIEKey &Key) { in getHashValue()
1836 static bool isEqual(const CIEKey &LHS, const CIEKey &RHS) { in isEqual()
1885 DenseMap<CIEKey, const MCSymbol *> CIEStarts; in Emit()
1896 return CIEKey(X) < CIEKey(Y); in Emit()
1907 CIEKey Key(Frame); in Emit()