mirror of https://github.com/xemu-project/xemu.git
nv2a/vsh: Output muxed op first to avoid temp clobber
This commit is contained in:
parent
516f2917aa
commit
851407e07c
|
@ -405,13 +405,6 @@ static QString* decode_opcode(const uint32_t *shader_token,
|
|||
reg_num = 1;
|
||||
}
|
||||
|
||||
if (strcmp(opcode, mac_opcode[MAC_ARL]) == 0) {
|
||||
qstring_append_fmt(ret, " ARL(A0%s);\n", inputs);
|
||||
} else if (mask > 0) {
|
||||
qstring_append_fmt(ret, " %s(R%d%s%s);\n",
|
||||
opcode, reg_num, mask_str[mask], inputs);
|
||||
}
|
||||
|
||||
/* See if we must add a muxed opcode too: */
|
||||
if (vsh_get_field(shader_token, FLD_OUT_MUX) == out_mux
|
||||
/* Only if it's not masked away: */
|
||||
|
@ -439,6 +432,13 @@ static QString* decode_opcode(const uint32_t *shader_token,
|
|||
qstring_append(ret, ");\n");
|
||||
}
|
||||
|
||||
if (strcmp(opcode, mac_opcode[MAC_ARL]) == 0) {
|
||||
qstring_append_fmt(ret, " ARL(A0%s);\n", inputs);
|
||||
} else if (mask > 0) {
|
||||
qstring_append_fmt(ret, " %s(R%d%s%s);\n",
|
||||
opcode, reg_num, mask_str[mask], inputs);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue