summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/backend/glasm/emit_glasm_select.cpp
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-05-09 01:21:32 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:30 +0200
commit934d3002462e27bcc289c1edb4959896cb23beb0 (patch)
treec28a4192fc0968f2197e9cfdbca6f4864679c56d /src/shader_recompiler/backend/glasm/emit_glasm_select.cpp
parentglasm: Implement more logical ops (diff)
downloadyuzu-934d3002462e27bcc289c1edb4959896cb23beb0.tar
yuzu-934d3002462e27bcc289c1edb4959896cb23beb0.tar.gz
yuzu-934d3002462e27bcc289c1edb4959896cb23beb0.tar.bz2
yuzu-934d3002462e27bcc289c1edb4959896cb23beb0.tar.lz
yuzu-934d3002462e27bcc289c1edb4959896cb23beb0.tar.xz
yuzu-934d3002462e27bcc289c1edb4959896cb23beb0.tar.zst
yuzu-934d3002462e27bcc289c1edb4959896cb23beb0.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_glasm_select.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_select.cpp b/src/shader_recompiler/backend/glasm/emit_glasm_select.cpp
index 636cbe8a0..16f6c33f3 100644
--- a/src/shader_recompiler/backend/glasm/emit_glasm_select.cpp
+++ b/src/shader_recompiler/backend/glasm/emit_glasm_select.cpp
@@ -24,12 +24,7 @@ void EmitSelectU16(EmitContext&, std::string_view, std::string_view, std::string
void EmitSelectU32(EmitContext& ctx, IR::Inst& inst, std::string_view cond,
std::string_view true_value, std::string_view false_value) {
- ctx.Add("MOV.U.CC RC,{};", cond);
- ctx.Add("IF NE.x;");
- ctx.Add("MOV.U {},{};", inst, true_value);
- ctx.Add("ELSE;");
- ctx.Add("MOV.U {},{};", inst, false_value);
- ctx.Add("ENDIF;");
+ ctx.Add("CMP.S {},{},{},{};", inst, cond, true_value, false_value);
}
void EmitSelectU64(EmitContext&, std::string_view, std::string_view, std::string_view) {
@@ -40,8 +35,9 @@ void EmitSelectF16(EmitContext&, std::string_view, std::string_view, std::string
throw NotImplementedException("GLASM instruction");
}
-void EmitSelectF32(EmitContext&, std::string_view, std::string_view, std::string_view) {
- throw NotImplementedException("GLASM instruction");
+void EmitSelectF32(EmitContext& ctx, IR::Inst& inst, std::string_view cond,
+ std::string_view true_value, std::string_view false_value) {
+ ctx.Add("CMP.S {},{},{},{};", inst, cond, true_value, false_value);
}
void EmitSelectF64(EmitContext&, std::string_view, std::string_view, std::string_view) {