mirror of
https://git.suyu.dev/suyu/sirit.git
synced 2024-12-23 12:42:06 +00:00
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
/* 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
|
|
* General Public License version 2 or any later version.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "sirit/sirit.h"
|
|
#include "common_types.h"
|
|
#include "operand.h"
|
|
#include "stream.h"
|
|
|
|
namespace Sirit {
|
|
|
|
class Op : public Operand {
|
|
public:
|
|
explicit Op(spv::Op opcode, u32 id = UINT32_MAX, const Op* result_type = nullptr);
|
|
~Op();
|
|
|
|
virtual void Fetch(Stream& stream) const;
|
|
virtual u16 GetWordCount() const;
|
|
|
|
virtual bool operator==(const Operand& other) const;
|
|
|
|
void Write(Stream& stream) const;
|
|
|
|
void Add(Operand* operand);
|
|
|
|
void Add(const Operand* operand);
|
|
|
|
void Add(u32 integer);
|
|
|
|
void Add(const std::string& string);
|
|
|
|
void Add(const std::vector<const Op*>& ids);
|
|
|
|
private:
|
|
u16 WordCount() const;
|
|
|
|
spv::Op opcode;
|
|
|
|
const Op* result_type;
|
|
|
|
u32 id;
|
|
|
|
std::vector<const Operand*> operands;
|
|
|
|
std::vector<std::unique_ptr<Operand>> operand_store;
|
|
};
|
|
|
|
} // namespace Sirit
|