mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 09:28:07 +02:00
r300/compiler: Handle SGT and SLE at the beginning of loops.
This commit is contained in:
parent
0125f5270b
commit
f7269cf26a
1 changed files with 11 additions and 3 deletions
|
|
@ -297,10 +297,12 @@ static int transform_const_loop(struct emulate_loop_state * s,
|
|||
/* Remove the first 4 instructions inside the loop, which are part
|
||||
* of the conditional and no longer needed.
|
||||
*/
|
||||
/* SLT/SGE */
|
||||
/* SLT/SGE/SGT/SLE */
|
||||
if(loop->BeginLoop->Next->U.I.Opcode != RC_OPCODE_SLT &&
|
||||
loop->BeginLoop->Next->U.I.Opcode != RC_OPCODE_SGE){
|
||||
rc_error(s->C,"Unexpected instruction, expected SLT/SGE\n");
|
||||
loop->BeginLoop->Next->U.I.Opcode != RC_OPCODE_SGE &&
|
||||
loop->BeginLoop->Next->U.I.Opcode != RC_OPCODE_SGT &&
|
||||
loop->BeginLoop->Next->U.I.Opcode != RC_OPCODE_SLE){
|
||||
rc_error(s->C,"Unexpected instruction, expected LT,GT,LE,GE\n");
|
||||
return 0;
|
||||
}
|
||||
/* IF */
|
||||
|
|
@ -364,6 +366,12 @@ static struct rc_instruction * transform_loop(struct emulate_loop_state * s,
|
|||
case RC_OPCODE_SLT:
|
||||
ptr->U.I.Opcode = RC_OPCODE_SGE;
|
||||
break;
|
||||
case RC_OPCODE_SLE:
|
||||
ptr->U.I.Opcode = RC_OPCODE_SGT;
|
||||
break;
|
||||
case RC_OPCODE_SGT:
|
||||
ptr->U.I.Opcode = RC_OPCODE_SLE;
|
||||
break;
|
||||
default:
|
||||
rc_error(s->C,
|
||||
"Loop does not start with a conditional instruction.");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue