2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2021-05-21 20:56:46 -04:00
|
|
|
|
|
|
|
#include <string_view>
|
|
|
|
|
2021-05-29 02:09:29 -04:00
|
|
|
#include "shader_recompiler/backend/glsl/emit_glsl_instructions.h"
|
2021-12-05 16:42:03 -05:00
|
|
|
#include "shader_recompiler/backend/glsl/glsl_emit_context.h"
|
2021-05-21 20:56:46 -04:00
|
|
|
#include "shader_recompiler/frontend/ir/value.h"
|
|
|
|
|
|
|
|
namespace Shader::Backend::GLSL {
|
2021-05-27 22:28:33 -04:00
|
|
|
void EmitSelectU1(EmitContext& ctx, IR::Inst& inst, std::string_view cond,
|
|
|
|
std::string_view true_value, std::string_view false_value) {
|
|
|
|
ctx.AddU1("{}={}?{}:{};", inst, cond, true_value, false_value);
|
2021-05-21 20:56:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmitSelectU8([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] std::string_view cond,
|
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
2021-05-31 12:53:40 -04:00
|
|
|
NotImplemented();
|
2021-05-21 20:56:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmitSelectU16([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] std::string_view cond,
|
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
2021-05-31 12:53:40 -04:00
|
|
|
NotImplemented();
|
2021-05-21 20:56:46 -04:00
|
|
|
}
|
|
|
|
|
2021-05-21 21:37:13 -04:00
|
|
|
void EmitSelectU32(EmitContext& ctx, IR::Inst& inst, std::string_view cond,
|
|
|
|
std::string_view true_value, std::string_view false_value) {
|
2021-06-11 02:50:30 -04:00
|
|
|
ctx.AddU32("{}={}?{}:{};", inst, cond, true_value, false_value);
|
2021-05-21 20:56:46 -04:00
|
|
|
}
|
|
|
|
|
2021-05-22 01:52:03 -04:00
|
|
|
void EmitSelectU64(EmitContext& ctx, IR::Inst& inst, std::string_view cond,
|
|
|
|
std::string_view true_value, std::string_view false_value) {
|
2021-06-11 02:50:30 -04:00
|
|
|
ctx.AddU64("{}={}?{}:{};", inst, cond, true_value, false_value);
|
2021-05-21 20:56:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmitSelectF16([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] std::string_view cond,
|
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
2021-05-31 12:53:40 -04:00
|
|
|
NotImplemented();
|
2021-05-21 20:56:46 -04:00
|
|
|
}
|
|
|
|
|
2021-05-21 21:37:13 -04:00
|
|
|
void EmitSelectF32(EmitContext& ctx, IR::Inst& inst, std::string_view cond,
|
|
|
|
std::string_view true_value, std::string_view false_value) {
|
|
|
|
ctx.AddF32("{}={}?{}:{};", inst, cond, true_value, false_value);
|
2021-05-21 20:56:46 -04:00
|
|
|
}
|
|
|
|
|
2021-05-22 01:52:03 -04:00
|
|
|
void EmitSelectF64(EmitContext& ctx, IR::Inst& inst, std::string_view cond,
|
|
|
|
std::string_view true_value, std::string_view false_value) {
|
|
|
|
ctx.AddF64("{}={}?{}:{};", inst, cond, true_value, false_value);
|
2021-05-21 20:56:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Shader::Backend::GLSL
|