From: Marek Olšák Date: Wed, 7 Feb 2018 00:09:32 +0000 (+0100) Subject: radeonsi: allow fewer input SGPRs in 2nd shader of merged shaders X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f852b24ce04431ecde639cefd5d86f64975894d5;p=mesa.git radeonsi: allow fewer input SGPRs in 2nd shader of merged shaders Reviewed-by: Nicolai Hähnle --- diff --git a/src/gallium/drivers/radeonsi/si_shader.c b/src/gallium/drivers/radeonsi/si_shader.c index 7af0bdb99ce..288f7434bb2 100644 --- a/src/gallium/drivers/radeonsi/si_shader.c +++ b/src/gallium/drivers/radeonsi/si_shader.c @@ -6600,9 +6600,13 @@ static void si_build_wrapper_function(struct si_shader_context *ctx, if (is_sgpr) lp_add_function_attr(parts[part], param_idx + 1, LP_FUNC_ATTR_INREG); + else if (out_idx < num_out_sgpr) { + /* Skip returned SGPRs the current part doesn't + * declare on the input. */ + out_idx = num_out_sgpr; + } assert(out_idx + param_size <= (is_sgpr ? num_out_sgpr : num_out)); - assert(is_sgpr || out_idx >= num_out_sgpr); if (param_size == 1) arg = out[out_idx];