2021-02-08 05:54:35 +00:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "shader_recompiler/backend/spirv/emit_spirv.h"
|
2021-05-03 23:53:00 +00:00
|
|
|
#include "shader_recompiler/backend/spirv/emit_spirv_instructions.h"
|
2021-02-16 07:10:22 +00:00
|
|
|
|
|
|
|
namespace Shader::Backend::SPIRV {
|
|
|
|
|
2021-03-19 22:28:31 +00:00
|
|
|
void EmitBranch(EmitContext& ctx, Id label) {
|
|
|
|
ctx.OpBranch(label);
|
2021-02-16 07:10:22 +00:00
|
|
|
}
|
|
|
|
|
2021-03-19 22:28:31 +00:00
|
|
|
void EmitBranchConditional(EmitContext& ctx, Id condition, Id true_label, Id false_label) {
|
|
|
|
ctx.OpBranchConditional(condition, true_label, false_label);
|
2021-02-16 07:10:22 +00:00
|
|
|
}
|
|
|
|
|
2021-03-19 22:28:31 +00:00
|
|
|
void EmitLoopMerge(EmitContext& ctx, Id merge_label, Id continue_label) {
|
|
|
|
ctx.OpLoopMerge(merge_label, continue_label, spv::LoopControlMask::MaskNone);
|
2021-02-16 07:10:22 +00:00
|
|
|
}
|
|
|
|
|
2021-03-19 22:28:31 +00:00
|
|
|
void EmitSelectionMerge(EmitContext& ctx, Id merge_label) {
|
|
|
|
ctx.OpSelectionMerge(merge_label, spv::SelectionControlMask::MaskNone);
|
2021-02-16 07:10:22 +00:00
|
|
|
}
|
|
|
|
|
2021-02-17 03:59:28 +00:00
|
|
|
void EmitReturn(EmitContext& ctx) {
|
2021-02-16 07:10:22 +00:00
|
|
|
ctx.OpReturn();
|
|
|
|
}
|
|
|
|
|
2021-04-18 23:03:38 +00:00
|
|
|
void EmitJoin(EmitContext&) {
|
|
|
|
throw NotImplementedException("Join shouldn't be emitted");
|
|
|
|
}
|
|
|
|
|
2021-03-27 21:30:24 +00:00
|
|
|
void EmitUnreachable(EmitContext& ctx) {
|
|
|
|
ctx.OpUnreachable();
|
|
|
|
}
|
|
|
|
|
2021-03-19 22:28:31 +00:00
|
|
|
void EmitDemoteToHelperInvocation(EmitContext& ctx, Id continue_label) {
|
2021-05-23 07:20:37 +00:00
|
|
|
if (ctx.profile.support_demote_to_helper_invocation) {
|
|
|
|
ctx.OpDemoteToHelperInvocationEXT();
|
|
|
|
ctx.OpBranch(continue_label);
|
|
|
|
} else {
|
|
|
|
ctx.OpKill();
|
|
|
|
}
|
2021-03-19 22:28:31 +00:00
|
|
|
}
|
|
|
|
|
2021-02-16 07:10:22 +00:00
|
|
|
} // namespace Shader::Backend::SPIRV
|