/* This file is part of the dynarmic project. * Copyright (c) 2016 MerryMage * This software may be used and distributed according to the terms of the GNU * General Public License version 2 or any later version. */ #pragma once #include #include #include "common/common_types.h" namespace Dynarmic::IR { class LocationDescriptor { public: explicit LocationDescriptor(u64 value) : value(value) {} bool operator == (const LocationDescriptor& o) const { return value == o.Value(); } bool operator != (const LocationDescriptor& o) const { return !operator==(o); } u64 Value() const { return value; } private: u64 value; }; std::ostream& operator<<(std::ostream& o, const LocationDescriptor& descriptor); } // namespace Dynarmic::IR namespace std { template <> struct less { bool operator()(const Dynarmic::IR::LocationDescriptor& x, const Dynarmic::IR::LocationDescriptor& y) const { return x.Value() < y.Value(); } }; template <> struct hash { size_t operator()(const Dynarmic::IR::LocationDescriptor& x) const { return std::hash()(x.Value()); } }; } // namespace std