intel/compiler: use the same name for nir shaders in brw_compile_* functions
[mesa.git] / src / intel / genxml / gen_zipped_file.py
index 66222cabe71ea71410edc3e91923dd5575b47035..fd91f175b161d5fb9360f3acc957a01da1e50e9a 100644 (file)
 #
 
 from __future__ import print_function
-import os
 import sys
 import zlib
+import xml.etree.ElementTree as et
 
 def main():
     if len(sys.argv) < 2:
         print("No input xml file specified")
         sys.exit(1)
 
-    with open(sys.argv[1]) as f:
-        compressed_data = zlib.compress(f.read())
+    compress = zlib.compressobj()
 
-    gen_name = os.path.splitext(os.path.basename(sys.argv[1]))[0]
-    print("static const uint8_t %s_xml[] = {" % gen_name)
-    print("   ", end='')
+    print("static const struct {")
+    print("   uint32_t gen_10;")
+    print("   uint32_t offset;")
+    print("   uint32_t length;")
+    print("} genxml_files_table[] = {")
+
+    xml_offset = 0
+    compressed_data = b''
+    for i in range(1, len(sys.argv)):
+        filename = sys.argv[i]
+        xml = open(filename, "rb").read()
+        xml_length = len(xml)
+        root = et.fromstring(xml)
+
+        print("   { %i, %i, %i }," %
+              (int(float(root.attrib['gen']) * 10), xml_offset, xml_length))
+
+        compressed_data += compress.compress(xml)
+        xml_offset += xml_length
 
-    for i, c in enumerate(compressed_data, start=1):
-        print("0x%.2x, " % ord(c), end='\n   ' if not i % 12 else '')
+    print("};")
+
+    compressed_data += compress.flush()
+
+    print("")
+    print("static const uint8_t compress_genxmls[] = {")
+    print("   ", end='')
+    for i, c in enumerate(bytearray(compressed_data), start=1):
+        print("0x%.2x, " % c, end='\n   ' if not i % 12 else '')
     print('\n};')
 
+
 if __name__ == '__main__':
     main()