/* This file is part of the sirit project. * Copyright (c) 2019 sirit * This software may be used and distributed according to the terms of the * 3-Clause BSD License */ #include #include "common_types.h" #include "literal_string.h" namespace Sirit { LiteralString::LiteralString(std::string string) : Operand{OperandType::String}, string{std::move(string)} {} LiteralString::~LiteralString() = default; void LiteralString::Fetch(Stream& stream) const { stream.Write(string); } u16 LiteralString::GetWordCount() const noexcept { return static_cast(string.size() / 4 + 1); } bool LiteralString::operator==(const Operand& other) const noexcept { if (!EqualType(other)) { return false; } return static_cast(other).string == string; } } // namespace Sirit