Move flow and function opcodes into their own file
This commit is contained in:
parent
3bd3688567
commit
c2215fca0e
6 changed files with 63 additions and 27 deletions
|
@ -47,18 +47,31 @@ public:
|
||||||
void AddEntryPoint(spv::ExecutionModel execution_model, const Op* entry_point,
|
void AddEntryPoint(spv::ExecutionModel execution_model, const Op* entry_point,
|
||||||
const std::string& name, const std::vector<const Op*>& interfaces = {});
|
const std::string& name, const std::vector<const Op*>& interfaces = {});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds an instruction to module's code
|
||||||
|
* @param op Instruction to insert into code. Types must not be emitted
|
||||||
|
* @return Returns op.
|
||||||
|
*/
|
||||||
|
const Op* Emit(const Op* op);
|
||||||
|
|
||||||
|
// Types
|
||||||
|
|
||||||
/// Returns type void.
|
/// Returns type void.
|
||||||
const Op* TypeVoid();
|
const Op* TypeVoid();
|
||||||
|
|
||||||
/// Returns a function type.
|
/// Returns a function type.
|
||||||
const Op* TypeFunction(const Op* return_type, const std::vector<const Op*>& arguments = {});
|
const Op* TypeFunction(const Op* return_type, const std::vector<const Op*>& arguments = {});
|
||||||
|
|
||||||
/// Adds an instruction to module's code block
|
// Function
|
||||||
const Op* Emit(const Op* op);
|
|
||||||
|
|
||||||
/// Emits a function.
|
/// Emits a function.
|
||||||
const Op* Function(const Op* result_type, spv::FunctionControlMask function_control,
|
const Op* Function(const Op* result_type, spv::FunctionControlMask function_control,
|
||||||
const Op* function_type);
|
const Op* function_type);
|
||||||
|
|
||||||
|
/// Emits a function end.
|
||||||
|
const Op* FunctionEnd();
|
||||||
|
|
||||||
|
// Flow
|
||||||
|
|
||||||
/// Emits a label. It starts a block.
|
/// Emits a label. It starts a block.
|
||||||
const Op* Label();
|
const Op* Label();
|
||||||
|
@ -66,9 +79,6 @@ public:
|
||||||
/// Emits a return. It ends a block.
|
/// Emits a return. It ends a block.
|
||||||
const Op* Return();
|
const Op* Return();
|
||||||
|
|
||||||
/// Emits a function end.
|
|
||||||
const Op* FunctionEnd();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const Op* AddCode(Op* op);
|
const Op* AddCode(Op* op);
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,9 @@ add_library(sirit
|
||||||
operand.h
|
operand.h
|
||||||
common_types.h
|
common_types.h
|
||||||
opcodes.h
|
opcodes.h
|
||||||
opcodes_type.cpp
|
opcodes/type.cpp
|
||||||
|
opcodes/function.cpp
|
||||||
|
opcodes/flow.cpp
|
||||||
)
|
)
|
||||||
target_include_directories(sirit
|
target_include_directories(sirit
|
||||||
PUBLIC ../include
|
PUBLIC ../include
|
||||||
|
|
20
src/opcodes/flow.cpp
Normal file
20
src/opcodes/flow.cpp
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
/* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "sirit/sirit.h"
|
||||||
|
#include "opcodes.h"
|
||||||
|
|
||||||
|
namespace Sirit {
|
||||||
|
|
||||||
|
const Op* Module::Label() {
|
||||||
|
return AddCode(spv::Op::OpLabel, bound++);
|
||||||
|
}
|
||||||
|
|
||||||
|
const Op* Module::Return() {
|
||||||
|
return AddCode(spv::Op::OpReturn);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Sirit
|
24
src/opcodes/function.cpp
Normal file
24
src/opcodes/function.cpp
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
/* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "sirit/sirit.h"
|
||||||
|
#include "opcodes.h"
|
||||||
|
|
||||||
|
namespace Sirit {
|
||||||
|
|
||||||
|
const Op* Module::Function(const Op* result_type, spv::FunctionControlMask function_control,
|
||||||
|
const Op* function_type) {
|
||||||
|
Op* op{new Op{spv::Op::OpFunction, bound++, result_type}};
|
||||||
|
op->Add(static_cast<u32>(function_control));
|
||||||
|
op->Add(function_type);
|
||||||
|
return AddCode(op);
|
||||||
|
}
|
||||||
|
|
||||||
|
const Op* Module::FunctionEnd() {
|
||||||
|
return AddCode(spv::Op::OpFunctionEnd);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Sirit
|
|
@ -89,26 +89,6 @@ const Op* Module::Emit(const Op* op) {
|
||||||
return op;
|
return op;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Op* Module::Function(const Op* result_type, spv::FunctionControlMask function_control,
|
|
||||||
const Op* function_type) {
|
|
||||||
Op* op{new Op{spv::Op::OpFunction, bound++, result_type}};
|
|
||||||
op->Add(static_cast<u32>(function_control));
|
|
||||||
op->Add(function_type);
|
|
||||||
return AddCode(op);
|
|
||||||
}
|
|
||||||
|
|
||||||
const Op* Module::Label() {
|
|
||||||
return AddCode(spv::Op::OpLabel, bound++);
|
|
||||||
}
|
|
||||||
|
|
||||||
const Op* Module::Return() {
|
|
||||||
return AddCode(spv::Op::OpReturn);
|
|
||||||
}
|
|
||||||
|
|
||||||
const Op* Module::FunctionEnd() {
|
|
||||||
return AddCode(spv::Op::OpFunctionEnd);
|
|
||||||
}
|
|
||||||
|
|
||||||
const Op* Module::AddCode(Op* op) {
|
const Op* Module::AddCode(Op* op) {
|
||||||
code_store.push_back(std::unique_ptr<Op>(op));
|
code_store.push_back(std::unique_ptr<Op>(op));
|
||||||
return op;
|
return op;
|
||||||
|
|
Loading…
Reference in a new issue