2016-09-05 12:54:09 +02:00
|
|
|
/* 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
|
|
|
|
|
2016-09-05 22:31:25 +02:00
|
|
|
#include <iosfwd>
|
2018-01-01 16:23:56 +01:00
|
|
|
|
2016-09-05 12:54:09 +02:00
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Dynarmic {
|
|
|
|
namespace IR {
|
|
|
|
|
|
|
|
class LocationDescriptor {
|
|
|
|
public:
|
|
|
|
bool operator == (const LocationDescriptor& o) const {
|
2018-01-01 16:23:56 +01:00
|
|
|
return value == o.value;
|
2016-09-05 12:54:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator != (const LocationDescriptor& o) const {
|
|
|
|
return !operator==(o);
|
|
|
|
}
|
|
|
|
|
2018-01-01 16:23:56 +01:00
|
|
|
u64 value;
|
2016-09-05 12:54:09 +02:00
|
|
|
};
|
|
|
|
|
2016-09-05 22:31:25 +02:00
|
|
|
std::ostream& operator<<(std::ostream& o, const LocationDescriptor& descriptor);
|
|
|
|
|
2018-01-01 16:23:56 +01:00
|
|
|
} // namespace A32
|
2016-09-05 12:54:09 +02:00
|
|
|
} // namespace Dynarmic
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
template <>
|
2017-12-05 22:34:40 +01:00
|
|
|
struct less<Dynarmic::IR::LocationDescriptor> {
|
|
|
|
bool operator()(const Dynarmic::IR::LocationDescriptor& x, const Dynarmic::IR::LocationDescriptor& y) const {
|
2018-01-01 16:23:56 +01:00
|
|
|
return x.value < y.value;
|
2017-12-05 22:34:40 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
template <>
|
2016-09-05 12:54:09 +02:00
|
|
|
struct hash<Dynarmic::IR::LocationDescriptor> {
|
|
|
|
size_t operator()(const Dynarmic::IR::LocationDescriptor& x) const {
|
2018-01-01 16:23:56 +01:00
|
|
|
return std::hash<u64>()(x.value);
|
2016-09-05 12:54:09 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace std
|