#include <assert.h>
#include "anv_private.h"
+#include "vk_enum_to_str.h"
/** Log an error message. */
void anv_printflike(1, 2)
va_list ap;
char buffer[256];
-#define ERROR_CASE(error) case error: error_str = #error; break;
-
- const char *error_str;
- switch ((int32_t)error) {
-
- /* Core errors */
- ERROR_CASE(VK_ERROR_OUT_OF_HOST_MEMORY)
- ERROR_CASE(VK_ERROR_OUT_OF_DEVICE_MEMORY)
- ERROR_CASE(VK_ERROR_INITIALIZATION_FAILED)
- ERROR_CASE(VK_ERROR_DEVICE_LOST)
- ERROR_CASE(VK_ERROR_MEMORY_MAP_FAILED)
- ERROR_CASE(VK_ERROR_LAYER_NOT_PRESENT)
- ERROR_CASE(VK_ERROR_EXTENSION_NOT_PRESENT)
- ERROR_CASE(VK_ERROR_FEATURE_NOT_PRESENT)
- ERROR_CASE(VK_ERROR_INCOMPATIBLE_DRIVER)
- ERROR_CASE(VK_ERROR_TOO_MANY_OBJECTS)
- ERROR_CASE(VK_ERROR_FORMAT_NOT_SUPPORTED)
- ERROR_CASE(VK_ERROR_FRAGMENTED_POOL)
-
- /* Extension errors */
- ERROR_CASE(VK_ERROR_SURFACE_LOST_KHR)
- ERROR_CASE(VK_ERROR_NATIVE_WINDOW_IN_USE_KHR)
- ERROR_CASE(VK_ERROR_OUT_OF_DATE_KHR)
- ERROR_CASE(VK_ERROR_INCOMPATIBLE_DISPLAY_KHR)
- ERROR_CASE(VK_ERROR_VALIDATION_FAILED_EXT)
- ERROR_CASE(VK_ERROR_INVALID_SHADER_NV)
- ERROR_CASE(VK_ERROR_OUT_OF_POOL_MEMORY_KHR)
-
- default:
- assert(!"Unknown error");
- error_str = "unknown error";
- }
-
-#undef ERROR_CASE
+ const char *error_str = vk_Result_to_str(error);
if (format) {
va_start(ap, format);
--- /dev/null
+# encoding=utf-8
+# Copyright © 2017 Intel Corporation
+
+# 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 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.
+
+"""Create enum to string functions for vulking using vk.xml."""
+
+from __future__ import print_function
+import os
+import textwrap
+import xml.etree.cElementTree as et
+
+from mako.template import Template
+
+VK_XML = os.path.join(os.path.dirname(__file__), '..', 'registry', 'vk.xml')
+
+COPYRIGHT = textwrap.dedent(u"""\
+ * Copyright © 2017 Intel Corporation
+ *
+ * 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 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.""")
+
+C_TEMPLATE = Template(textwrap.dedent(u"""\
+ /* Autogenerated file -- do not edit
+ * generated by ${file}
+ *
+ ${copyright}
+ */
+
+ #include <vulkan/vulkan.h>
+ #include "util/macros.h"
+ #include "vk_enum_to_str.h"
+
+ % for enum in enums:
+
+ const char *
+ vk_${enum.name[2:]}_to_str(${enum.name} input)
+ {
+ switch(input) {
+ % for v in enum.values:
+ case ${v}:
+ return "${v}";
+ % endfor
+ default:
+ unreachable("Undefined enum value.");
+ }
+ }
+ %endfor"""),
+ output_encoding='utf-8')
+
+H_TEMPLATE = Template(textwrap.dedent(u"""\
+ /* Autogenerated file -- do not edit
+ * generated by ${file}
+ *
+ ${copyright}
+ */
+
+ #ifndef MESA_VK_ENUM_TO_STR_H
+ #define MESA_VK_ENUM_TO_STR_H
+
+ #include <vulkan/vulkan.h>
+
+ % for enum in enums:
+ const char * vk_${enum.name[2:]}_to_str(${enum.name} input);
+ % endfor
+
+ #endif"""),
+ output_encoding='utf-8')
+
+
+class EnumFactory(object):
+ """Factory for creating enums."""
+
+ def __init__(self, type_):
+ self.registry = {}
+ self.type = type_
+
+ def __call__(self, name):
+ try:
+ return self.registry[name]
+ except KeyError:
+ n = self.registry[name] = self.type(name)
+ return n
+
+
+class VkEnum(object):
+ """Simple struct-like class representing a single Vulkan Enum."""
+
+ def __init__(self, name, values=None):
+ self.name = name
+ self.values = values or []
+
+
+def xml_parser(filename):
+ """Parse the XML file and return parsed data.
+
+ This parser is a memory efficient iterative XML parser that returns a list
+ of VkEnum objects.
+ """
+ efactory = EnumFactory(VkEnum)
+
+ with open(filename, 'rb') as f:
+ context = iter(et.iterparse(f, events=('start', 'end')))
+
+ # This gives the root element, since goal is to iterate over the
+ # elements without building a tree, this allows the root to be cleared
+ # (erase the elements) after the children have been processed.
+ _, root = next(context)
+
+ for event, elem in context:
+ if event == 'end' and elem.tag == 'enums':
+ type_ = elem.attrib.get('type')
+ if type_ == 'enum':
+ enum = efactory(elem.attrib['name'])
+ enum.values.extend([e.attrib['name'] for e in elem
+ if e.tag == 'enum'])
+ elif event == 'end' and elem.tag == 'extension':
+ if elem.attrib['supported'] != 'vulkan':
+ continue
+ for e in elem.findall('.//enum[@extends][@offset]'):
+ enum = efactory(e.attrib['extends'])
+ enum.values.append(e.attrib['name'])
+
+ root.clear()
+
+ return efactory.registry.values()
+
+
+def main():
+ enums = xml_parser(VK_XML)
+ for template, file_ in [(C_TEMPLATE, 'vk_enum_to_str.c'),
+ (H_TEMPLATE, 'vk_enum_to_str.h')]:
+ with open(file_, 'wb') as f:
+ f.write(template.render(
+ file=os.path.basename(__file__),
+ enums=enums,
+ copyright=COPYRIGHT))
+
+
+if __name__ == '__main__':
+ main()