2018-08-26 10:01:31 +02: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 04:28:39 +02:00
|
|
|
* Lesser General Public License version 2.1 or any later version.
|
2018-08-26 10:01:31 +02:00
|
|
|
*/
|
|
|
|
|
|
2018-08-28 09:05:47 +02:00
|
|
|
#include "insts.h"
|
2018-10-28 17:44:12 +01:00
|
|
|
#include "sirit/sirit.h"
|
2018-08-26 10:01:31 +02:00
|
|
|
|
|
|
|
|
namespace Sirit {
|
|
|
|
|
|
2018-11-01 01:22:00 +01:00
|
|
|
Ref Module::OpFunction(Ref result_type,
|
|
|
|
|
spv::FunctionControlMask function_control,
|
|
|
|
|
Ref function_type) {
|
2018-10-23 10:05:40 +02:00
|
|
|
auto op{new Op{spv::Op::OpFunction, bound++, result_type}};
|
2018-08-26 10:01:31 +02:00
|
|
|
op->Add(static_cast<u32>(function_control));
|
|
|
|
|
op->Add(function_type);
|
|
|
|
|
return AddCode(op);
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-01 01:22:00 +01:00
|
|
|
Ref Module::OpFunctionEnd() { return AddCode(spv::Op::OpFunctionEnd); }
|
2018-08-26 10:01:31 +02:00
|
|
|
|
|
|
|
|
} // namespace Sirit
|