mirror of
https://github.com/yuzu-emu/sirit
synced 2024-11-22 12:33:37 +00:00
Add OpLoopMerge
This commit is contained in:
parent
2bafba1a17
commit
136dcf88a7
2 changed files with 14 additions and 0 deletions
|
@ -154,6 +154,10 @@ public:
|
|||
|
||||
// Flow
|
||||
|
||||
/// Declare a structured loop.
|
||||
Ref LoopMerge(Ref merge_block, Ref continue_target, spv::LoopControlMask loop_control,
|
||||
const std::vector<Ref>& literals = {});
|
||||
|
||||
/// The block label instruction: Any reference to a block is through this ref.
|
||||
Ref Label();
|
||||
|
||||
|
|
|
@ -9,6 +9,16 @@
|
|||
|
||||
namespace Sirit {
|
||||
|
||||
Ref Module::LoopMerge(Ref merge_block, Ref continue_target, spv::LoopControlMask loop_control,
|
||||
const std::vector<Ref>& literals) {
|
||||
Op* op{new Op(spv::Op::OpLoopMerge)};
|
||||
op->Add(merge_block);
|
||||
op->Add(continue_target);
|
||||
AddEnum(op, loop_control);
|
||||
op->Add(literals);
|
||||
return AddCode(op);
|
||||
}
|
||||
|
||||
Ref Module::Label() {
|
||||
return AddCode(spv::Op::OpLabel, bound++);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue