2018-08-26 00:16:37 +01:00
|
|
|
/* This file is part of the sirit project.
|
|
|
|
* Copyright (c) 2018 ReinUsesLisp
|
|
|
|
* This software may be used and distributed according to the terms of the GNU
|
2018-11-16 07:10:10 +00:00
|
|
|
* Lesser General Public License version 3 or any later version.
|
2018-08-26 00:16:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-06-08 09:23:15 +01:00
|
|
|
#include <cstddef>
|
|
|
|
#include "common_types.h"
|
2018-08-26 00:16:37 +01:00
|
|
|
#include "stream.h"
|
|
|
|
|
|
|
|
namespace Sirit {
|
|
|
|
|
2018-10-03 04:32:45 +01:00
|
|
|
enum class OperandType { Invalid, Op, Number, String };
|
2018-08-26 00:16:37 +01:00
|
|
|
|
|
|
|
class Operand {
|
2019-03-11 06:26:21 +00:00
|
|
|
public:
|
2018-08-26 00:16:37 +01:00
|
|
|
Operand();
|
|
|
|
virtual ~Operand();
|
|
|
|
|
|
|
|
virtual void Fetch(Stream& stream) const;
|
|
|
|
virtual u16 GetWordCount() const;
|
|
|
|
|
|
|
|
virtual bool operator==(const Operand& other) const;
|
|
|
|
bool operator!=(const Operand& other) const;
|
|
|
|
|
2019-06-08 09:23:15 +01:00
|
|
|
virtual std::size_t Hash() const;
|
|
|
|
|
2018-08-26 00:16:37 +01:00
|
|
|
OperandType GetType() const;
|
|
|
|
|
2019-03-11 06:26:21 +00:00
|
|
|
protected:
|
2018-08-26 00:16:37 +01:00
|
|
|
OperandType operand_type{};
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Sirit
|
2019-06-08 09:23:15 +01:00
|
|
|
|
|
|
|
namespace std {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct hash<Sirit::Operand> {
|
|
|
|
std::size_t operator()(const Sirit::Operand& operand) const noexcept {
|
|
|
|
return operand.Hash();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace std
|