mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 23:40:12 +01:00
brw: better model READ_ARF_REG opcode
This opcode gets translated to 2 ALU instructions with dependency ALU stall. This change reproduces the FS_OPCODE_PACK_HALF_2x16_SPLIT values which is another opcode that generates 2 instructions. Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29446>
This commit is contained in:
parent
ac03cefb28
commit
724bb7fa15
1 changed files with 9 additions and 1 deletions
|
|
@ -312,7 +312,6 @@ namespace {
|
|||
case FS_OPCODE_DDY_COARSE:
|
||||
case FS_OPCODE_PIXEL_X:
|
||||
case FS_OPCODE_PIXEL_Y:
|
||||
case SHADER_OPCODE_READ_ARCH_REG:
|
||||
if (devinfo->ver >= 11) {
|
||||
return calculate_desc(info, EU_UNIT_FPU, 0, 2, 0, 0, 2,
|
||||
0, 10, 6 /* XXX */, 14, 0, 0);
|
||||
|
|
@ -457,6 +456,15 @@ namespace {
|
|||
0, 8 /* XXX */, 4 /* XXX */,
|
||||
12 /* XXX */, 0, 0);
|
||||
|
||||
case SHADER_OPCODE_READ_ARCH_REG:
|
||||
if (devinfo->ver >= 12) {
|
||||
return calculate_desc(info, EU_UNIT_FPU, 20, 6, 0, 0, 6,
|
||||
0, 10, 6 /* XXX */, 14, 0, 0);
|
||||
} else {
|
||||
return calculate_desc(info, EU_UNIT_FPU, 0, 2, 0, 0, 2,
|
||||
0, 8, 4, 12, 0, 0);
|
||||
}
|
||||
|
||||
case SHADER_OPCODE_MOV_INDIRECT:
|
||||
if (devinfo->ver >= 11)
|
||||
return calculate_desc(info, EU_UNIT_FPU, 34, 0, 0, 34, 0,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue