2021-05-21 17:56:46 -07:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
#include "shader_recompiler/backend/glsl/emit_context.h"
|
2021-05-28 23:09:29 -07:00
|
|
|
#include "shader_recompiler/backend/glsl/emit_glsl_instructions.h"
|
2021-05-21 17:56:46 -07:00
|
|
|
#include "shader_recompiler/frontend/ir/value.h"
|
|
|
|
|
|
|
|
namespace Shader::Backend::GLSL {
|
2021-05-27 19:28:33 -07: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 17:56:46 -07: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 09:53:40 -07:00
|
|
|
NotImplemented();
|
2021-05-21 17:56:46 -07: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 09:53:40 -07:00
|
|
|
NotImplemented();
|
2021-05-21 17:56:46 -07:00
|
|
|
}
|
|
|
|
|
2021-05-21 18:37:13 -07:00
|
|
|
void EmitSelectU32(EmitContext& ctx, IR::Inst& inst, std::string_view cond,
|
|
|
|
std::string_view true_value, std::string_view false_value) {
|
2021-06-10 23:50:30 -07:00
|
|
|
ctx.AddU32("{}={}?{}:{};", inst, cond, true_value, false_value);
|
2021-05-21 17:56:46 -07:00
|
|
|
}
|
|
|
|
|
2021-05-21 22:52:03 -07:00
|
|
|
void EmitSelectU64(EmitContext& ctx, IR::Inst& inst, std::string_view cond,
|
|
|
|
std::string_view true_value, std::string_view false_value) {
|
2021-06-10 23:50:30 -07:00
|
|
|
ctx.AddU64("{}={}?{}:{};", inst, cond, true_value, false_value);
|
2021-05-21 17:56:46 -07: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 09:53:40 -07:00
|
|
|
NotImplemented();
|
2021-05-21 17:56:46 -07:00
|
|
|
}
|
|
|
|
|
2021-05-21 18:37:13 -07: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 17:56:46 -07:00
|
|
|
}
|
|
|
|
|
2021-05-21 22:52:03 -07: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 17:56:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Shader::Backend::GLSL
|