mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 00:00:11 +01:00
lima/gp: Mark more add-only nodes as maybe-two-slot
Reviewed-by: Qiang Yu <yuq825@gmail.com>
This commit is contained in:
parent
16de3dd7a6
commit
12645e8714
1 changed files with 8 additions and 0 deletions
|
|
@ -68,21 +68,29 @@ const gpir_op_info gpir_op_infos[] = {
|
|||
.name = "floor",
|
||||
.src_neg = {true, false, false, false},
|
||||
.slots = (int []) { GPIR_INSTR_SLOT_ADD0, GPIR_INSTR_SLOT_ADD1, GPIR_INSTR_SLOT_END },
|
||||
.spillless = true,
|
||||
.may_consume_two_slots = true,
|
||||
},
|
||||
[gpir_op_sign] = {
|
||||
.name = "sign",
|
||||
.src_neg = {true, false, false, false},
|
||||
.slots = (int []) { GPIR_INSTR_SLOT_ADD0, GPIR_INSTR_SLOT_ADD1, GPIR_INSTR_SLOT_END },
|
||||
.spillless = true,
|
||||
.may_consume_two_slots = true,
|
||||
},
|
||||
[gpir_op_ge] = {
|
||||
.name = "ge",
|
||||
.src_neg = {true, true, false, false},
|
||||
.slots = (int []) { GPIR_INSTR_SLOT_ADD0, GPIR_INSTR_SLOT_ADD1, GPIR_INSTR_SLOT_END },
|
||||
.spillless = true,
|
||||
.may_consume_two_slots = true,
|
||||
},
|
||||
[gpir_op_lt] = {
|
||||
.name = "lt",
|
||||
.src_neg = {true, true, false, false},
|
||||
.slots = (int []) { GPIR_INSTR_SLOT_ADD0, GPIR_INSTR_SLOT_ADD1, GPIR_INSTR_SLOT_END },
|
||||
.spillless = true,
|
||||
.may_consume_two_slots = true,
|
||||
},
|
||||
[gpir_op_min] = {
|
||||
.name = "min",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue