33 lines
832 B
C++
33 lines
832 B
C++
/* 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 <string>
|
|
#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<u16>(string.size() / 4 + 1);
|
|
}
|
|
|
|
bool LiteralString::operator==(const Operand& other) const noexcept {
|
|
if (!EqualType(other)) {
|
|
return false;
|
|
}
|
|
return static_cast<const LiteralString&>(other).string == string;
|
|
}
|
|
|
|
} // namespace Sirit
|