[Mesa-dev] [PATCH] radv: fix compute shared memory stores since 64-bit.
Edward O'Callaghan
funfunctor at folklore1984.net
Fri Feb 3 02:37:59 UTC 2017
Reviewed-by: Edward O'Callaghan <funfunctor at folklore1984.net>
On 02/03/2017 12:04 PM, Dave Airlie wrote:
> From: Dave Airlie <airlied at redhat.com>
>
> These regressed and caused doom to stop loading.
>
> Fixes:
> 03724af26 radv/ac: Implement Float64 load/store var.
>
> Signed-off-by: Dave Airlie <airlied at redhat.com>
> ---
> src/amd/common/ac_nir_to_llvm.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c
> index 728294c..ddec74f 100644
> --- a/src/amd/common/ac_nir_to_llvm.c
> +++ b/src/amd/common/ac_nir_to_llvm.c
> @@ -2351,9 +2351,11 @@ visit_store_var(struct nir_to_llvm_context *ctx,
>
> if (indir_index)
> index = LLVMBuildAdd(ctx->builder, index, indir_index, "");
> +
> + value = llvm_extract_elem(ctx, src, chan);
> derived_ptr = LLVMBuildGEP(ctx->builder, ptr, &index, 1, "");
> LLVMBuildStore(ctx->builder,
> - to_integer(ctx, src), derived_ptr);
> + to_integer(ctx, value), derived_ptr);
> }
> break;
> }
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: OpenPGP digital signature
URL: <https://lists.freedesktop.org/archives/mesa-dev/attachments/20170203/bdbe3ace/attachment.sig>
More information about the mesa-dev
mailing list