freedreno/isa: generate ir3-isa.h
authorChristian Gmeiner <christian.gmeiner@gmail.com>
Thu, 13 May 2021 12:07:51 +0000 (14:07 +0200)
committerMarge Bot <eric+marge@anholt.net>
Tue, 21 Sep 2021 20:25:31 +0000 (20:25 +0000)
This header contains the bitmask_t struct typedef that will be
used by the isaspec.

Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11321>

src/freedreno/isa/decode.py
src/freedreno/isa/meson.build

index 0e459c6..d920b98 100644 (file)
@@ -22,6 +22,7 @@
 
 from mako.template import Template
 from isa import ISA
+import os
 import sys
 
 template = """\
@@ -189,10 +190,52 @@ const struct isa_bitset *${root.get_c_name()}[] = {
 
 """
 
+header = """\
+/* Copyright (C) 2020 Google, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#ifndef _${guard}_
+#define _${guard}_
+
+#include <util/bitset.h>
+
+typedef struct {
+    BITSET_WORD bitset[BITMASK_WORDS];
+} bitmask_t;
+
+
+#endif /* _${guard}_ */
+
+"""
+
 xml = sys.argv[1]
-dst = sys.argv[2]
+dst_c = sys.argv[2]
+dst_h = sys.argv[3]
 
 isa = ISA(xml)
 
-with open(dst, 'w') as f:
+with open(dst_c, 'w') as f:
     f.write(Template(template).render(isa=isa))
+
+with open(dst_h, 'w') as f:
+    guard = os.path.basename(dst_h).upper().replace("-", "_").replace(".", "_")
+    f.write(Template(header).render(isa=isa, guard=guard))
index 878d5b5..0f050b7 100644 (file)
@@ -34,7 +34,7 @@ isa_depend_files = [
 ir3_isa_c = custom_target(
   'ir3-isa.c',
   input: ['decode.py', 'ir3.xml'],
-  output: 'ir3-isa.c',
+  output: ['ir3-isa.c', 'ir3-isa.h'],
   command: [
     prog_python, '@INPUT@', '@OUTPUT@'
   ],