OSDN Git Service

spirv: Add imageoperands_to_string helper
authorCaio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
Wed, 23 Oct 2019 05:25:29 +0000 (22:25 -0700)
committerCaio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
Thu, 24 Oct 2019 18:39:56 +0000 (11:39 -0700)
Change the information to also include the category, so that the
particulars of BitEnum enumeration can be handled in the template.

Acked-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
src/compiler/spirv/spirv_info.h
src/compiler/spirv/spirv_info_c.py

index 199b98c..8b8b687 100644 (file)
@@ -34,6 +34,7 @@ const char *spirv_dim_to_string(SpvDim dim);
 const char *spirv_executionmode_to_string(SpvExecutionMode mode);
 const char *spirv_executionmodel_to_string(SpvExecutionModel model);
 const char *spirv_imageformat_to_string(SpvImageFormat format);
+const char *spirv_imageoperands_to_string(SpvImageOperandsMask op);
 const char *spirv_memorymodel_to_string(SpvMemoryModel cap);
 const char *spirv_op_to_string(SpvOp op);
 const char *spirv_storageclass_to_string(SpvStorageClass sc);
index 1e5017c..29baec1 100644 (file)
@@ -43,7 +43,7 @@ def collect_data(spirv, kind):
             seen.add(x["value"])
             values.append(x["enumerant"])
 
-    return (kind, values)
+    return (kind, values, operands["category"])
 
 def collect_opcodes(spirv):
     seen = set()
@@ -59,7 +59,7 @@ def collect_opcodes(spirv):
         values.append(name[2:])
         seen.add(opcode)
 
-    return ("Op", values)
+    return ("Op", values, None)
 
 def parse_args():
     p = argparse.ArgumentParser()
@@ -72,8 +72,25 @@ TEMPLATE  = Template("""\
 
 """ + COPYRIGHT + """\
 #include "spirv_info.h"
-% for kind,values in info:
+% for kind,values,category in info:
 
+% if category == "BitEnum":
+const char *
+spirv_${kind.lower()}_to_string(Spv${kind}Mask v)
+{
+   switch (v) {
+    % for name in values:
+    %if name != "None":
+   case Spv${kind}${name}Mask: return "Spv${kind}${name}";
+    % else:
+   case Spv${kind}MaskNone: return "Spv${kind}${name}";
+    % endif
+    % endfor
+   }
+
+   return "unknown";
+}
+% else:
 const char *
 spirv_${kind.lower()}_to_string(Spv${kind} v)
 {
@@ -86,6 +103,7 @@ spirv_${kind.lower()}_to_string(Spv${kind} v)
 
    return "unknown";
 }
+% endif
 % endfor
 """)
 
@@ -105,6 +123,7 @@ if __name__ == "__main__":
         collect_data(spirv_info, "ImageFormat"),
         collect_data(spirv_info, "MemoryModel"),
         collect_data(spirv_info, "StorageClass"),
+        collect_data(spirv_info, "ImageOperands"),
         collect_opcodes(spirv_info),
     ]