summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2014-12-08 17:34:23 -0800
committerJason Ekstrand <jason.ekstrand@intel.com>2014-12-17 21:08:11 -0800
commit2156b946be00bed06376863aa006dbfff9f0d215 (patch)
tree4329e1076aa119437f99e1504e4dd5eb0c7e38aa
parent3dc83e76615dbd411219c9cf1208f045bb21878a (diff)
nir: Add a helper for getting a constant value from an SSA source
-rw-r--r--src/glsl/nir/nir.c19
-rw-r--r--src/glsl/nir/nir.h1
2 files changed, 20 insertions, 0 deletions
diff --git a/src/glsl/nir/nir.c b/src/glsl/nir/nir.c
index c692a896c8..d501150bbb 100644
--- a/src/glsl/nir/nir.c
+++ b/src/glsl/nir/nir.c
@@ -1669,6 +1669,25 @@ nir_foreach_src(nir_instr *instr, nir_foreach_src_cb cb, void *state)
return nir_foreach_dest(instr, visit_dest_indirect, &dest_state);
}
+nir_const_value *
+nir_src_as_const_value(nir_src src)
+{
+ if (!src.is_ssa)
+ return NULL;
+
+ if (src.ssa->parent_instr->type != nir_instr_type_load_const)
+ return NULL;
+
+ nir_load_const_instr *load = nir_instr_as_load_const(src.ssa->parent_instr);
+
+ if (load->array_elems == 0)
+ return &load->value;
+ if (load->array_elems == 1)
+ return load->array;
+ else
+ return NULL;
+}
+
bool
nir_srcs_equal(nir_src src1, nir_src src2)
{
diff --git a/src/glsl/nir/nir.h b/src/glsl/nir/nir.h
index 3ae5af7fea..ef8271e0a0 100644
--- a/src/glsl/nir/nir.h
+++ b/src/glsl/nir/nir.h
@@ -1326,6 +1326,7 @@ typedef bool (*nir_foreach_src_cb)(nir_src *src, void *state);
bool nir_foreach_dest(nir_instr *instr, nir_foreach_dest_cb cb, void *state);
bool nir_foreach_src(nir_instr *instr, nir_foreach_src_cb cb, void *state);
+nir_const_value *nir_src_as_const_value(nir_src src);
bool nir_srcs_equal(nir_src src1, nir_src src2);
void nir_instr_rewrite_src(nir_instr *instr, nir_src *src, nir_src new_src);