mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
i965/fs: Fix regs_written for SIMD-lowered instructions some more.
ISTR having suggested this during review of the recent FP64 changes to the SIMD lowering pass, but it doesn't look like it was taken into account in the end. Using the fs_reg::component_size helper instead of this open-coded variant makes sure that the stride is taken into account correctly. Fixes at least the following piglit tests with spilling forced on (since otherwise regs_written would be calculated incorrectly and the spilling code would be rather confused about how much data needs to be spilled): spec.arb_gpu_shader_fp64.shader_storage.layout-std140-fp64-shader spec.arb_gpu_shader_fp64.shader_storage.layout-std140-fp64-mixed-shader Cc: <mesa-stable@lists.freedesktop.org> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
parent
a84b5d43e2
commit
bd9f972651
1 changed files with 3 additions and 3 deletions
|
|
@ -5261,9 +5261,9 @@ fs_visitor::lower_simd_width()
|
|||
split_inst.src[j] = emit_unzip(lbld, block, inst, j);
|
||||
|
||||
split_inst.dst = emit_zip(lbld, block, inst);
|
||||
split_inst.regs_written =
|
||||
DIV_ROUND_UP(type_sz(inst->dst.type) * dst_size * lower_width,
|
||||
REG_SIZE);
|
||||
split_inst.regs_written = DIV_ROUND_UP(
|
||||
split_inst.dst.component_size(lower_width) * dst_size,
|
||||
REG_SIZE);
|
||||
|
||||
lbld.emit(split_inst);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue