sirit/src/operand.h

41 lines
866 B
C
Raw Normal View History

2018-08-26 00:16:37 +01:00
/* This file is part of the sirit project.
2019-07-14 22:48:59 +01:00
* Copyright (c) 2019 sirit
* This software may be used and distributed according to the terms of the
* 3-Clause BSD License
2018-08-26 00:16:37 +01:00
*/
#pragma once
#include <cstddef>
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:
explicit Operand(OperandType operand_type);
2018-08-26 00:16:37 +01:00
virtual ~Operand();
2019-11-01 09:07:53 +00:00
virtual void Fetch(Stream& stream) const = 0;
2018-08-26 00:16:37 +01:00
virtual std::size_t GetWordCount() const noexcept = 0;
2018-08-26 00:16:37 +01:00
2019-11-01 09:07:53 +00:00
virtual bool operator==(const Operand& other) const noexcept = 0;
bool operator!=(const Operand& other) const noexcept {
return !operator==(other);
}
bool EqualType(const Operand& other) const noexcept {
return operand_type == other.operand_type;
}
2018-08-26 00:16:37 +01:00
private:
2019-11-01 09:07:53 +00:00
OperandType operand_type;
2018-08-26 00:16:37 +01:00
};
} // namespace Sirit