mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
st/mesa: fix broken moves for u2i64 and related ops
These ops just put out mov's directly, which screws up the assignment logic -- it just tries to only process the "last" mov. Don't try to do the more optimized thing for 64-bit types, where this is just much trickier. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Dave Airlie <airlied@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8463>
This commit is contained in:
parent
011fea1a90
commit
55c42b7885
1 changed files with 1 additions and 0 deletions
|
|
@ -3263,6 +3263,7 @@ glsl_to_tgsi_visitor::visit(ir_assignment *ir)
|
|||
ir->rhs == ((glsl_to_tgsi_instruction *)this->instructions.get_tail())->ir &&
|
||||
!((glsl_to_tgsi_instruction *)this->instructions.get_tail())->is_64bit_expanded &&
|
||||
type_size(ir->lhs->type) == 1 &&
|
||||
!ir->lhs->type->is_64bit() &&
|
||||
l.writemask == ((glsl_to_tgsi_instruction *)this->instructions.get_tail())->dst[0].writemask) {
|
||||
/* To avoid emitting an extra MOV when assigning an expression to a
|
||||
* variable, emit the last instruction of the expression again, but
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue