summaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_search.c
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2016-08-17 15:02:58 -0700
committerKenneth Graunke <kenneth@whitecape.org>2016-08-18 01:26:47 -0700
commit241870fe5b91c6efaa77a68dc9ed4a335dc76650 (patch)
tree4bead287532f22c0f4f20f5bcda492b66d1ae4e4 /src/compiler/nir/nir_search.c
parentd14dd727f4aded5bd34a78dc2c81374a78114440 (diff)
downloadexternal_mesa3d-241870fe5b91c6efaa77a68dc9ed4a335dc76650.zip
external_mesa3d-241870fe5b91c6efaa77a68dc9ed4a335dc76650.tar.gz
external_mesa3d-241870fe5b91c6efaa77a68dc9ed4a335dc76650.tar.bz2
nir/search: Introduce a src_is_type() helper for 'a@type' handling.
Currently, 'a@type' can only match if 'a' is produced by an ALU instruction. This is rather limited - there are other cases we can easily detect which we should handle. Extending the code in-place would be fairly messy, so we introduce a new src_is_type() helper. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'src/compiler/nir/nir_search.c')
-rw-r--r--src/compiler/nir/nir_search.c42
1 files changed, 29 insertions, 13 deletions
diff --git a/src/compiler/nir/nir_search.c b/src/compiler/nir/nir_search.c
index b21fb2c..bd12312 100644
--- a/src/compiler/nir/nir_search.c
+++ b/src/compiler/nir/nir_search.c
@@ -70,6 +70,32 @@ alu_instr_is_bool(nir_alu_instr *instr)
}
}
+/**
+ * Check if a source produces a value of the given type.
+ *
+ * Used for satisfying 'a@type' constraints.
+ */
+static bool
+src_is_type(nir_src src, nir_alu_type type)
+{
+ assert(type != nir_type_invalid);
+
+ if (!src.is_ssa)
+ return false;
+
+ if (src.ssa->parent_instr->type == nir_instr_type_alu) {
+ nir_alu_instr *src_alu = nir_instr_as_alu(src.ssa->parent_instr);
+ nir_alu_type output_type = nir_op_infos[src_alu->op].output_type;
+
+ return nir_alu_type_get_base_type(output_type) == type ||
+ (nir_alu_type_get_base_type(type) == nir_type_bool &&
+ alu_instr_is_bool(src_alu));
+ }
+
+ /* don't know */
+ return false;
+}
+
static bool
match_value(const nir_search_value *value, nir_alu_instr *instr, unsigned src,
unsigned num_components, const uint8_t *swizzle,
@@ -130,19 +156,9 @@ match_value(const nir_search_value *value, nir_alu_instr *instr, unsigned src,
if (var->cond && !var->cond(instr, src, num_components, new_swizzle))
return false;
- if (var->type != nir_type_invalid) {
- if (instr->src[src].src.ssa->parent_instr->type != nir_instr_type_alu)
- return false;
-
- nir_alu_instr *src_alu =
- nir_instr_as_alu(instr->src[src].src.ssa->parent_instr);
-
- if (nir_alu_type_get_base_type(nir_op_infos[src_alu->op].output_type) !=
- var->type &&
- !(nir_alu_type_get_base_type(var->type) == nir_type_bool &&
- alu_instr_is_bool(src_alu)))
- return false;
- }
+ if (var->type != nir_type_invalid &&
+ !src_is_type(instr->src[src].src, var->type))
+ return false;
state->variables_seen |= (1 << var->variable);
state->variables[var->variable].src = instr->src[src].src;