summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRhys Perry <pendingchaos02@gmail.com>2020-07-01 16:14:16 +0100
committerEric Engestrom <eric@engestrom.ch>2020-07-22 22:30:05 +0200
commit804dbfc098d5a69c4ba20eea44ea15fa77b78ec4 (patch)
treea12c5d107d484a9fcd511ebf494fa8d4337eb227 /src
parent0c1db924089909411991317fde86d72b1bf313bd (diff)
nir/lower_int64: lower 64-bit amul
Fixes an issue with Renderdoc's shader debugging with ACO. If nir_opt_algebraic isn't called in-between nir_lower_explicit_io and nir_lower_int64, we can end up with 64-bit multiplications. Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Fixes: 6320e37d4be ('nir: add amul instruction') Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5709> (cherry picked from commit 0868638aed05775db44e9acc625bc34c737ee4fa)
Diffstat (limited to 'src')
-rw-r--r--src/compiler/nir/nir_lower_int64.c26
1 files changed, 22 insertions, 4 deletions
diff --git a/src/compiler/nir/nir_lower_int64.c b/src/compiler/nir/nir_lower_int64.c
index 7eb0ae52403..6b4b28e873b 100644
--- a/src/compiler/nir/nir_lower_int64.c
+++ b/src/compiler/nir/nir_lower_int64.c
@@ -675,6 +675,7 @@ nir_lower_int64_op_to_options_mask(nir_op opcode)
{
switch (opcode) {
case nir_op_imul:
+ case nir_op_amul:
return nir_lower_imul64;
case nir_op_imul_2x32_64:
case nir_op_umul_2x32_64:
@@ -759,6 +760,7 @@ lower_int64_alu_instr(nir_builder *b, nir_instr *instr, void *_state)
switch (alu->op) {
case nir_op_imul:
+ case nir_op_amul:
return lower_imul64(b, src[0], src[1]);
case nir_op_imul_2x32_64:
return lower_mul_2x32_64(b, src[0], src[1], true);
@@ -864,11 +866,16 @@ lower_int64_alu_instr(nir_builder *b, nir_instr *instr, void *_state)
}
}
+typedef struct {
+ const nir_shader_compiler_options *shader_options;
+ nir_lower_int64_options options;
+} should_lower_cb_data;
+
static bool
-should_lower_int64_alu_instr(const nir_instr *instr, const void *_options)
+should_lower_int64_alu_instr(const nir_instr *instr, const void *_data)
{
- const nir_lower_int64_options options =
- *(const nir_lower_int64_options *)_options;
+ const should_lower_cb_data *cb_data = (const should_lower_cb_data *)_data;
+ const nir_lower_int64_options options = cb_data->options;
if (instr->type != nir_instr_type_alu)
return false;
@@ -913,6 +920,13 @@ should_lower_int64_alu_instr(const nir_instr *instr, const void *_options)
if (alu->src[0].src.ssa->bit_size != 64)
return false;
break;
+ case nir_op_amul:
+ assert(alu->dest.dest.is_ssa);
+ if (cb_data->shader_options->has_imul24)
+ return false;
+ if (alu->dest.dest.ssa.bit_size != 64)
+ return false;
+ break;
default:
assert(alu->dest.dest.is_ssa);
if (alu->dest.dest.ssa.bit_size != 64)
@@ -926,8 +940,12 @@ should_lower_int64_alu_instr(const nir_instr *instr, const void *_options)
bool
nir_lower_int64(nir_shader *shader, nir_lower_int64_options options)
{
+ should_lower_cb_data cb_data;
+ cb_data.shader_options = shader->options;
+ cb_data.options = options;
+
return nir_shader_lower_instructions(shader,
should_lower_int64_alu_instr,
lower_int64_alu_instr,
- &options);
+ &cb_data);
}