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-08-27 03:28:39 +01:00
|
|
|
* Lesser General Public License version 2.1 or any later version.
|
2018-08-26 00:16:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include "common_types.h"
|
|
|
|
#include "operand.h"
|
2018-08-26 00:34:06 +01:00
|
|
|
#include "op.h"
|
2018-08-26 00:16:37 +01:00
|
|
|
|
|
|
|
namespace Sirit {
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
Op::Op(spv::Op opcode_, u32 id_, const Op* result_type_)
|
2018-08-26 00:16:37 +01:00
|
|
|
: opcode(opcode_), id(id_), result_type(result_type_) {
|
2018-08-27 04:29:40 +01:00
|
|
|
operand_type = OperandType::Op;
|
2018-08-26 00:16:37 +01:00
|
|
|
}
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
Op::~Op() = default;
|
2018-08-26 00:16:37 +01:00
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
void Op::Fetch(Stream& stream) const {
|
2018-08-26 00:16:37 +01:00
|
|
|
assert(id != UINT32_MAX);
|
|
|
|
stream.Write(id);
|
|
|
|
}
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
u16 Op::GetWordCount() const {
|
2018-08-26 00:16:37 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
bool Op::operator==(const Operand& other) const {
|
2018-08-26 00:16:37 +01:00
|
|
|
if (operand_type != other.GetType()) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-08-26 00:34:06 +01:00
|
|
|
const Op& op = dynamic_cast<const Op&>(other);
|
|
|
|
if (op.opcode == opcode && result_type == op.result_type &&
|
|
|
|
operands.size() == op.operands.size()) {
|
2018-08-26 00:16:37 +01:00
|
|
|
for (std::size_t i{}; i < operands.size(); i++) {
|
2018-08-26 00:34:06 +01:00
|
|
|
if (*operands[i] != *op.operands[i]) {
|
2018-08-26 00:16:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
void Op::Write(Stream& stream) const {
|
2018-08-26 00:16:37 +01:00
|
|
|
stream.Write(static_cast<u16>(opcode));
|
|
|
|
stream.Write(WordCount());
|
|
|
|
|
|
|
|
if (result_type) {
|
|
|
|
result_type->Fetch(stream);
|
|
|
|
}
|
|
|
|
if (id != UINT32_MAX) {
|
|
|
|
stream.Write(id);
|
|
|
|
}
|
|
|
|
for (const Operand* operand : operands) {
|
|
|
|
operand->Fetch(stream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
void Op::Add(Operand* operand) {
|
2018-08-26 00:16:37 +01:00
|
|
|
Add(static_cast<const Operand*>(operand));
|
|
|
|
operand_store.push_back(std::unique_ptr<Operand>(operand));
|
|
|
|
}
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
void Op::Add(const Operand* operand) {
|
2018-08-26 00:16:37 +01:00
|
|
|
operands.push_back(operand);
|
|
|
|
}
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
void Op::Add(u32 integer) {
|
2018-08-27 04:29:40 +01:00
|
|
|
Add(new LiteralNumber(integer));
|
2018-08-26 00:16:37 +01:00
|
|
|
}
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
void Op::Add(const std::string& string) {
|
2018-08-26 00:16:37 +01:00
|
|
|
Add(new LiteralString(string));
|
|
|
|
}
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
void Op::Add(const std::vector<const Op*>& ids) {
|
|
|
|
for (const Op* op : ids) {
|
|
|
|
Add(op);
|
2018-08-26 00:16:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-26 00:34:06 +01:00
|
|
|
u16 Op::WordCount() const {
|
2018-08-26 00:16:37 +01:00
|
|
|
u16 count{1};
|
|
|
|
if (result_type) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
if (id != UINT32_MAX) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
for (const Operand* operand : operands) {
|
|
|
|
count += operand->GetWordCount();
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Sirit
|