mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-23 10:30:23 +01:00
i965: Assert that math instructions don't have conditional mod.
The math function field is at the same location as conditional mod. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
803a744507
commit
f5bef2d2e5
2 changed files with 4 additions and 0 deletions
|
|
@ -1817,6 +1817,7 @@ fs_generator::generate_code(const cfg_t *cfg, int dispatch_width)
|
|||
case SHADER_OPCODE_SIN:
|
||||
case SHADER_OPCODE_COS:
|
||||
assert(brw->gen < 6 || inst->mlen == 0);
|
||||
assert(inst->conditional_mod == BRW_CONDITIONAL_NONE);
|
||||
if (brw->gen >= 7) {
|
||||
gen6_math(p, dst, brw_math_function(inst->opcode), src[0],
|
||||
brw_null_reg());
|
||||
|
|
@ -1832,6 +1833,7 @@ fs_generator::generate_code(const cfg_t *cfg, int dispatch_width)
|
|||
case SHADER_OPCODE_INT_REMAINDER:
|
||||
case SHADER_OPCODE_POW:
|
||||
assert(brw->gen < 6 || inst->mlen == 0);
|
||||
assert(inst->conditional_mod == BRW_CONDITIONAL_NONE);
|
||||
if (brw->gen >= 7 && inst->opcode == SHADER_OPCODE_POW) {
|
||||
gen6_math(p, dst, brw_math_function(inst->opcode), src[0], src[1]);
|
||||
} else if (brw->gen >= 6) {
|
||||
|
|
|
|||
|
|
@ -1361,6 +1361,7 @@ vec4_generator::generate_code(const cfg_t *cfg)
|
|||
case SHADER_OPCODE_LOG2:
|
||||
case SHADER_OPCODE_SIN:
|
||||
case SHADER_OPCODE_COS:
|
||||
assert(inst->conditional_mod == BRW_CONDITIONAL_NONE);
|
||||
if (brw->gen >= 7) {
|
||||
gen6_math(p, dst, brw_math_function(inst->opcode), src[0],
|
||||
brw_null_reg());
|
||||
|
|
@ -1374,6 +1375,7 @@ vec4_generator::generate_code(const cfg_t *cfg)
|
|||
case SHADER_OPCODE_POW:
|
||||
case SHADER_OPCODE_INT_QUOTIENT:
|
||||
case SHADER_OPCODE_INT_REMAINDER:
|
||||
assert(inst->conditional_mod == BRW_CONDITIONAL_NONE);
|
||||
if (brw->gen >= 7) {
|
||||
gen6_math(p, dst, brw_math_function(inst->opcode), src[0], src[1]);
|
||||
} else if (brw->gen == 6) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue