summaryrefslogtreecommitdiff
path: root/src/panfrost
diff options
context:
space:
mode:
authorIcecream95 <ixn@disroot.org>2020-12-22 23:20:10 +1300
committerMarge Bot <eric+marge@anholt.net>2021-01-18 20:49:45 +0000
commitf5c9a10f336d8be18e39e88818f425fdd931fc5e (patch)
tree674a928ce927238cf166946185124a9a8da0997a /src/panfrost
parentf4d2b35ac85245e1bb1d4ba497d8d4c5b11c8ae2 (diff)
pan/bi: Lower 64-bit integers
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8358>
Diffstat (limited to 'src/panfrost')
-rw-r--r--src/panfrost/bifrost/bifrost_compile.c2
-rw-r--r--src/panfrost/bifrost/bifrost_compile.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/panfrost/bifrost/bifrost_compile.c b/src/panfrost/bifrost/bifrost_compile.c
index 82a40547039..eacddef4c58 100644
--- a/src/panfrost/bifrost/bifrost_compile.c
+++ b/src/panfrost/bifrost/bifrost_compile.c
@@ -2044,6 +2044,8 @@ bi_optimize_nir(nir_shader *nir)
.lower_txd = true,
};
+ NIR_PASS(progress, nir, nir_lower_int64);
+
NIR_PASS(progress, nir, nir_lower_tex, &lower_tex_options);
NIR_PASS(progress, nir, nir_lower_alu_to_scalar, NULL, NULL);
NIR_PASS(progress, nir, nir_lower_load_const_to_scalar);
diff --git a/src/panfrost/bifrost/bifrost_compile.h b/src/panfrost/bifrost/bifrost_compile.h
index 2c6d6217d93..7aa5a386761 100644
--- a/src/panfrost/bifrost/bifrost_compile.h
+++ b/src/panfrost/bifrost/bifrost_compile.h
@@ -67,6 +67,8 @@ static const nir_shader_compiler_options bifrost_nir_options = {
.lower_pack_split = true,
.lower_doubles_options = nir_lower_dmod,
+ /* TODO: Don't lower supported 64-bit operations */
+ .lower_int64_options = ~0,
.lower_bitfield_extract_to_shifts = true,
.has_fsub = true,