Lines Matching refs:LocalVarDef
57 struct LocalVarDef { struct
75 uint64_t static toOpaqueValue(const LocalVarDef DR) { in toOpaqueValue() argument
81 LocalVarDef static createFromOpaqueValue(uint64_t Val) { in createFromOpaqueValue() argument
82 LocalVarDef DR; in createFromOpaqueValue()
88 static_assert(sizeof(uint64_t) == sizeof(LocalVarDef));
101 static LocalVarDef createDefRangeMem(uint16_t CVRegister, int Offset);
106 MapVector<LocalVarDef,
529 template <> struct DenseMapInfo<CodeViewDebug::LocalVarDef> {
531 static inline CodeViewDebug::LocalVarDef getEmptyKey() {
532 return CodeViewDebug::LocalVarDef::createFromOpaqueValue(~0ULL);
535 static inline CodeViewDebug::LocalVarDef getTombstoneKey() {
536 return CodeViewDebug::LocalVarDef::createFromOpaqueValue(~0ULL - 1ULL);
539 static unsigned getHashValue(const CodeViewDebug::LocalVarDef &DR) {
540 return CodeViewDebug::LocalVarDef::toOpaqueValue(DR) * 37ULL;
543 static bool isEqual(const CodeViewDebug::LocalVarDef &LHS,
544 const CodeViewDebug::LocalVarDef &RHS) {
545 return CodeViewDebug::LocalVarDef::toOpaqueValue(LHS) ==
546 CodeViewDebug::LocalVarDef::toOpaqueValue(RHS);