From: Jonathan Marek Date: Sun, 15 Dec 2019 18:43:39 +0000 (-0500) Subject: freedreno/ir3: lower pack/unpack ops X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c7c5a84cf3a08623755ef46a5a68bbfb6ae26667;p=mesa.git freedreno/ir3: lower pack/unpack ops Signed-off-by: Jonathan Marek Reviewed-by: Alyssa Rosenzweig Reviewed-by: Eric Anholt Tested-by: Marge Bot Part-of: --- diff --git a/src/freedreno/ir3/ir3_nir.c b/src/freedreno/ir3/ir3_nir.c index 4a45a15ba50..bf643c71439 100644 --- a/src/freedreno/ir3/ir3_nir.c +++ b/src/freedreno/ir3/ir3_nir.c @@ -57,6 +57,18 @@ static const nir_shader_compiler_options options = { .lower_helper_invocation = true, .lower_bitfield_insert_to_shifts = true, .lower_bitfield_extract_to_shifts = true, + .lower_pack_half_2x16 = true, + .lower_pack_half_2x16_split = true, + .lower_pack_snorm_4x8 = true, + .lower_pack_snorm_2x16 = true, + .lower_pack_unorm_4x8 = true, + .lower_pack_unorm_2x16 = true, + .lower_unpack_half_2x16 = true, + .lower_unpack_half_2x16_split = true, + .lower_unpack_snorm_4x8 = true, + .lower_unpack_snorm_2x16 = true, + .lower_unpack_unorm_4x8 = true, + .lower_unpack_unorm_2x16 = true, .use_interpolated_input_intrinsics = true, .lower_rotate = true, .lower_to_scalar = true, @@ -87,6 +99,18 @@ static const nir_shader_compiler_options options_a6xx = { .lower_helper_invocation = true, .lower_bitfield_insert_to_shifts = true, .lower_bitfield_extract_to_shifts = true, + .lower_pack_half_2x16 = true, + .lower_pack_half_2x16_split = true, + .lower_pack_snorm_4x8 = true, + .lower_pack_snorm_2x16 = true, + .lower_pack_unorm_4x8 = true, + .lower_pack_unorm_2x16 = true, + .lower_unpack_half_2x16 = true, + .lower_unpack_half_2x16_split = true, + .lower_unpack_snorm_4x8 = true, + .lower_unpack_snorm_2x16 = true, + .lower_unpack_unorm_4x8 = true, + .lower_unpack_unorm_2x16 = true, .use_interpolated_input_intrinsics = true, .lower_rotate = true, .vectorize_io = true,