2018-08-26 09:01:31 +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 09:01:31 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sirit/sirit.h"
|
2018-08-28 08:05:47 +01:00
|
|
|
#include "insts.h"
|
2018-08-26 09:01:31 +01:00
|
|
|
|
|
|
|
namespace Sirit {
|
|
|
|
|
2018-08-28 08:01:21 +01:00
|
|
|
Ref Module::Function(Ref result_type, spv::FunctionControlMask function_control, Ref function_type) {
|
2018-08-26 09:01:31 +01:00
|
|
|
Op* op{new Op{spv::Op::OpFunction, bound++, result_type}};
|
|
|
|
op->Add(static_cast<u32>(function_control));
|
|
|
|
op->Add(function_type);
|
|
|
|
return AddCode(op);
|
|
|
|
}
|
|
|
|
|
2018-08-28 08:01:21 +01:00
|
|
|
Ref Module::FunctionEnd() {
|
2018-08-26 09:01:31 +01:00
|
|
|
return AddCode(spv::Op::OpFunctionEnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Sirit
|