aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2016-12-13 20:31:19 -0800
committerIan Romanick <[email protected]>2016-12-19 15:55:43 -0800
commit8d499f60c88b70a39f53d0fbe96a6ada6fd36b8b (patch)
tree33c8ef6bef24eff0dac91aa4b614ded7178c12f8
parentb7053b80f27091acc8ccc954db99197e3073bff4 (diff)
glsl: Add structures to track accessed elements of a single array
Signed-off-by: Ian Romanick <[email protected]> Cc: [email protected] Reviewed-by: Kenneth Graunke <[email protected]>
-rw-r--r--src/compiler/glsl/ir_array_refcount.cpp21
-rw-r--r--src/compiler/glsl/ir_array_refcount.h35
2 files changed, 56 insertions, 0 deletions
diff --git a/src/compiler/glsl/ir_array_refcount.cpp b/src/compiler/glsl/ir_array_refcount.cpp
index 36b22742fa8..1b5c43c9927 100644
--- a/src/compiler/glsl/ir_array_refcount.cpp
+++ b/src/compiler/glsl/ir_array_refcount.cpp
@@ -34,6 +34,7 @@
#include "util/hash_table.h"
ir_array_refcount_visitor::ir_array_refcount_visitor()
+ : derefs(0), num_derefs(0), derefs_size(0)
{
this->mem_ctx = ralloc_context(NULL);
this->ht = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
@@ -84,6 +85,26 @@ ir_array_refcount_visitor::get_variable_entry(ir_variable *var)
}
+array_deref_range *
+ir_array_refcount_visitor::get_array_deref()
+{
+ if ((num_derefs + 1) * sizeof(array_deref_range) > derefs_size) {
+ void *ptr = reralloc_size(mem_ctx, derefs, derefs_size + 4096);
+
+ if (ptr == NULL)
+ return NULL;
+
+ derefs_size += 4096;
+ derefs = (array_deref_range *)ptr;
+ }
+
+ array_deref_range *d = &derefs[num_derefs];
+ num_derefs++;
+
+ return d;
+}
+
+
ir_visitor_status
ir_array_refcount_visitor::visit(ir_dereference_variable *ir)
{
diff --git a/src/compiler/glsl/ir_array_refcount.h b/src/compiler/glsl/ir_array_refcount.h
index 4296e4b9eeb..1e7f34349f8 100644
--- a/src/compiler/glsl/ir_array_refcount.h
+++ b/src/compiler/glsl/ir_array_refcount.h
@@ -32,6 +32,23 @@
#include "compiler/glsl_types.h"
#include "util/bitset.h"
+/**
+ * Describes an access of an array element or an access of the whole array
+ */
+struct array_deref_range {
+ /**
+ * Index that was accessed.
+ *
+ * All valid array indices are less than the size of the array. If index
+ * is equal to the size of the array, this means the entire array has been
+ * accessed (e.g., due to use of a non-constant index).
+ */
+ unsigned index;
+
+ /** Size of the array. Used for offset calculations. */
+ unsigned size;
+};
+
class ir_array_refcount_entry
{
public:
@@ -86,4 +103,22 @@ public:
struct hash_table *ht;
void *mem_ctx;
+
+private:
+ /** Get an array_deref_range element from private tracking. */
+ array_deref_range *get_array_deref();
+
+ /**
+ * \name array_deref_range tracking
+ */
+ /*@{*/
+ /** Currently allocated block of derefs. */
+ array_deref_range *derefs;
+
+ /** Number of derefs used in current processing. */
+ unsigned num_derefs;
+
+ /** Size of the derefs buffer in bytes. */
+ unsigned derefs_size;
+ /*@}*/
};