compiler/types: Add a contains_64bit helper
authorJason Ekstrand <jason.ekstrand@intel.com>
Tue, 12 Feb 2019 19:03:34 +0000 (13:03 -0600)
committerJason Ekstrand <jason@jlekstrand.net>
Thu, 21 Feb 2019 00:08:42 +0000 (00:08 +0000)
Reviewed-by: Alejandro PiƱeiro <apinheiro@igalia.com>
src/compiler/glsl_types.cpp
src/compiler/glsl_types.h
src/compiler/nir_types.cpp
src/compiler/nir_types.h

index 90f4548030f1643aeae52660ef91a4b6227209f9..042f45a926db291f17385d8b4503059332cfd853 100644 (file)
@@ -260,6 +260,22 @@ glsl_type::contains_double() const
    }
 }
 
+bool
+glsl_type::contains_64bit() const
+{
+   if (this->is_array()) {
+      return this->fields.array->contains_64bit();
+   } else if (this->is_record() || this->is_interface()) {
+      for (unsigned int i = 0; i < this->length; i++) {
+         if (this->fields.structure[i].type->contains_64bit())
+            return true;
+      }
+      return false;
+   } else {
+      return this->is_64bit();
+   }
+}
+
 bool
 glsl_type::contains_opaque() const {
    switch (base_type) {
index 934dc479998a883c1610d206f792f9d71f21ff5b..f9a160b898b059c4c78a13b76a9c2ef831c8e8f1 100644 (file)
@@ -544,6 +544,12 @@ public:
     */
    bool contains_double() const;
 
+   /**
+    * Query whether or not type is a 64-bit type, or for struct, interface and
+    * array types, contains a double type.
+    */
+   bool contains_64bit() const;
+
    /**
     * Query whether or not a type is a float type
     */
index b12aa297da363244f749ca2b87f2e68fb4de36f9..c9e46ef044c44effdbe7bf71456b84d1f652f01b 100644 (file)
@@ -332,6 +332,12 @@ glsl_type_is_integer(const struct glsl_type *type)
    return type->is_integer();
 }
 
+bool
+glsl_type_contains_64bit(const struct glsl_type *type)
+{
+   return type->contains_64bit();
+}
+
 const glsl_type *
 glsl_void_type(void)
 {
index 34f4252a9e2b5237f3379f3fb96532866f418c0e..68855a65d8e606187af9b4a848d60fa04000fe46 100644 (file)
@@ -150,6 +150,7 @@ bool glsl_type_is_dual_slot(const struct glsl_type *type);
 bool glsl_type_is_numeric(const struct glsl_type *type);
 bool glsl_type_is_boolean(const struct glsl_type *type);
 bool glsl_type_is_integer(const struct glsl_type *type);
+bool glsl_type_contains_64bit(const struct glsl_type *type);
 bool glsl_sampler_type_is_shadow(const struct glsl_type *type);
 bool glsl_sampler_type_is_array(const struct glsl_type *type);
 bool glsl_contains_atomic(const struct glsl_type *type);