blob: be3aa1bd2b69b846522228afd1d3b3ae7f5b9508 [file] [log] [blame]
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001#!/usr/bin/env python3
2#
3# XGL
4#
5# Copyright (C) 2014 LunarG, Inc.
6#
7# Permission is hereby granted, free of charge, to any person obtaining a
8# copy of this software and associated documentation files (the "Software"),
9# to deal in the Software without restriction, including without limitation
10# the rights to use, copy, modify, merge, publish, distribute, sublicense,
11# and/or sell copies of the Software, and to permit persons to whom the
12# Software is furnished to do so, subject to the following conditions:
13#
14# The above copyright notice and this permission notice shall be included
15# in all copies or substantial portions of the Software.
16#
17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23# DEALINGS IN THE SOFTWARE.
24#
25# Authors:
26# Chia-I Wu <olv@lunarg.com>
27
28import sys
Tobin Ehlis14ff0852014-12-17 17:44:50 -070029import os
Tobin Ehlis12076fc2014-10-22 09:06:33 -060030
31import xgl
Tobin Ehlis14ff0852014-12-17 17:44:50 -070032import xgl_helper
Tobin Ehlis12076fc2014-10-22 09:06:33 -060033
34class Subcommand(object):
35 def __init__(self, argv):
36 self.argv = argv
Chia-I Wuc4f24e82015-01-01 08:46:31 +080037 self.headers = xgl.headers
38 self.protos = xgl.protos
Tobin Ehlis12076fc2014-10-22 09:06:33 -060039
40 def run(self):
Tobin Ehlis12076fc2014-10-22 09:06:33 -060041 print(self.generate())
42
43 def generate(self):
44 copyright = self.generate_copyright()
45 header = self.generate_header()
46 body = self.generate_body()
47 footer = self.generate_footer()
48
49 contents = []
50 if copyright:
51 contents.append(copyright)
52 if header:
53 contents.append(header)
54 if body:
55 contents.append(body)
56 if footer:
57 contents.append(footer)
58
59 return "\n\n".join(contents)
60
61 def generate_copyright(self):
62 return """/* THIS FILE IS GENERATED. DO NOT EDIT. */
63
64/*
65 * XGL
66 *
67 * Copyright (C) 2014 LunarG, Inc.
68 *
69 * Permission is hereby granted, free of charge, to any person obtaining a
70 * copy of this software and associated documentation files (the "Software"),
71 * to deal in the Software without restriction, including without limitation
72 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
73 * and/or sell copies of the Software, and to permit persons to whom the
74 * Software is furnished to do so, subject to the following conditions:
75 *
76 * The above copyright notice and this permission notice shall be included
77 * in all copies or substantial portions of the Software.
78 *
79 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
80 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
81 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
82 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
83 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
84 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
85 * DEALINGS IN THE SOFTWARE.
86 */"""
87
88 def generate_header(self):
89 return "\n".join(["#include <" + h + ">" for h in self.headers])
90
91 def generate_body(self):
92 pass
93
94 def generate_footer(self):
95 pass
96
97 # Return set of printf '%' qualifier and input to that qualifier
Tobin Ehlis99f88672015-01-10 12:42:41 -070098 def _get_printf_params(self, xgl_type, name, output_param, cpp=False):
Tobin Ehlis12076fc2014-10-22 09:06:33 -060099 # TODO : Need ENUM and STRUCT checks here
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700100 if xgl_helper.is_type(xgl_type, 'enum'):#"_TYPE" in xgl_type: # TODO : This should be generic ENUM check
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600101 return ("%s", "string_%s(%s)" % (xgl_type.strip('const ').strip('*'), name))
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600102 if "char*" == xgl_type:
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600103 return ("%s", name)
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700104 if "uint64" in xgl_type:
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600105 if '*' in xgl_type:
106 return ("%lu", "*%s" % name)
107 return ("%lu", name)
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700108 if "size" in xgl_type:
Chia-I Wu99ff89d2014-12-27 14:14:50 +0800109 if '*' in xgl_type:
110 return ("%zu", "*%s" % name)
111 return ("%zu", name)
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700112 if "float" in xgl_type:
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600113 if '[' in xgl_type: # handle array, current hard-coded to 4 (TODO: Make this dynamic)
Tobin Ehlis99f88672015-01-10 12:42:41 -0700114 if cpp:
115 return ("[%i, %i, %i, %i]", '"[" << %s[0] << "," << %s[1] << "," << %s[2] << "," << %s[3] << "]"' % (name, name, name, name))
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600116 return ("[%f, %f, %f, %f]", "%s[0], %s[1], %s[2], %s[3]" % (name, name, name, name))
117 return ("%f", name)
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700118 if "bool" in xgl_type or 'xcb_randr_crtc_t' in xgl_type:
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600119 return ("%u", name)
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700120 if True in [t in xgl_type for t in ["int", "FLAGS", "MASK", "xcb_window_t"]]:
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600121 if '[' in xgl_type: # handle array, current hard-coded to 4 (TODO: Make this dynamic)
Tobin Ehlis99f88672015-01-10 12:42:41 -0700122 if cpp:
123 return ("[%i, %i, %i, %i]", "%s[0] << %s[1] << %s[2] << %s[3]" % (name, name, name, name))
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600124 return ("[%i, %i, %i, %i]", "%s[0], %s[1], %s[2], %s[3]" % (name, name, name, name))
125 if '*' in xgl_type:
Tobin Ehlisd2b88e82015-02-04 15:15:11 -0700126 if 'pUserData' == name:
127 return ("%i", "((pUserData == 0) ? 0 : *(pUserData))")
Jon Ashburn52f79b52014-12-12 16:10:45 -0700128 return ("%i", "*(%s)" % name)
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600129 return ("%i", name)
Tobin Ehlis3a1cc8d2014-11-11 17:28:22 -0700130 # TODO : This is special-cased as there's only one "format" param currently and it's nice to expand it
Jon Ashburn52f79b52014-12-12 16:10:45 -0700131 if "XGL_FORMAT" == xgl_type:
Tobin Ehlis99f88672015-01-10 12:42:41 -0700132 if cpp:
133 return ("%p", "&%s" % name)
134 return ("{%s.channelFormat = %%s, %s.numericFormat = %%s}" % (name, name), "string_XGL_CHANNEL_FORMAT(%s.channelFormat), string_XGL_NUM_FORMAT(%s.numericFormat)" % (name, name))
Tobin Ehlise7271572014-11-19 15:52:46 -0700135 if output_param:
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600136 return ("%p", "(void*)*%s" % name)
Courtney Goeltzenleuchterd462fba2015-04-03 16:35:32 -0600137 if xgl_helper.is_type(xgl_type, 'struct') and '*' not in xgl_type:
138 return ("%p", "(void*)(&%s)" % name)
Jon Ashburn52f79b52014-12-12 16:10:45 -0700139 return ("%p", "(void*)(%s)" % name)
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600140
Tobin Ehlise8185062014-12-17 08:01:59 -0700141 def _gen_layer_dbg_callback_register(self):
142 r_body = []
Courtney Goeltzenleuchterc80a5572015-04-13 14:10:06 -0600143 r_body.append('XGL_LAYER_EXPORT XGL_RESULT XGLAPI xglDbgRegisterMsgCallback(XGL_INSTANCE instance, XGL_DBG_MSG_CALLBACK_FUNCTION pfnMsgCallback, void* pUserData)')
Tobin Ehlise8185062014-12-17 08:01:59 -0700144 r_body.append('{')
145 r_body.append(' // This layer intercepts callbacks')
146 r_body.append(' XGL_LAYER_DBG_FUNCTION_NODE *pNewDbgFuncNode = (XGL_LAYER_DBG_FUNCTION_NODE*)malloc(sizeof(XGL_LAYER_DBG_FUNCTION_NODE));')
147 r_body.append(' if (!pNewDbgFuncNode)')
148 r_body.append(' return XGL_ERROR_OUT_OF_MEMORY;')
149 r_body.append(' pNewDbgFuncNode->pfnMsgCallback = pfnMsgCallback;')
150 r_body.append(' pNewDbgFuncNode->pUserData = pUserData;')
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700151 r_body.append(' pNewDbgFuncNode->pNext = g_pDbgFunctionHead;')
152 r_body.append(' g_pDbgFunctionHead = pNewDbgFuncNode;')
Jon Ashburna8aa8372015-03-03 15:07:15 -0700153 r_body.append(' // force callbacks if DebugAction hasn\'t been set already other than initial value')
Ian Elliott6d9e41e2015-03-05 12:28:53 -0700154 r_body.append(' if (g_actionIsDefault) {')
Jon Ashburna8aa8372015-03-03 15:07:15 -0700155 r_body.append(' g_debugAction = XGL_DBG_LAYER_ACTION_CALLBACK;')
Ian Elliott6d9e41e2015-03-05 12:28:53 -0700156 r_body.append(' }')
Courtney Goeltzenleuchterc80a5572015-04-13 14:10:06 -0600157 r_body.append(' XGL_RESULT result = nextTable.DbgRegisterMsgCallback(instance, pfnMsgCallback, pUserData);')
Tobin Ehlise8185062014-12-17 08:01:59 -0700158 r_body.append(' return result;')
159 r_body.append('}')
160 return "\n".join(r_body)
161
162 def _gen_layer_dbg_callback_unregister(self):
163 ur_body = []
Courtney Goeltzenleuchterc80a5572015-04-13 14:10:06 -0600164 ur_body.append('XGL_LAYER_EXPORT XGL_RESULT XGLAPI xglDbgUnregisterMsgCallback(XGL_INSTANCE instance, XGL_DBG_MSG_CALLBACK_FUNCTION pfnMsgCallback)')
Tobin Ehlise8185062014-12-17 08:01:59 -0700165 ur_body.append('{')
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700166 ur_body.append(' XGL_LAYER_DBG_FUNCTION_NODE *pTrav = g_pDbgFunctionHead;')
Tobin Ehlise8185062014-12-17 08:01:59 -0700167 ur_body.append(' XGL_LAYER_DBG_FUNCTION_NODE *pPrev = pTrav;')
168 ur_body.append(' while (pTrav) {')
169 ur_body.append(' if (pTrav->pfnMsgCallback == pfnMsgCallback) {')
170 ur_body.append(' pPrev->pNext = pTrav->pNext;')
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700171 ur_body.append(' if (g_pDbgFunctionHead == pTrav)')
172 ur_body.append(' g_pDbgFunctionHead = pTrav->pNext;')
Tobin Ehlise8185062014-12-17 08:01:59 -0700173 ur_body.append(' free(pTrav);')
174 ur_body.append(' break;')
175 ur_body.append(' }')
176 ur_body.append(' pPrev = pTrav;')
177 ur_body.append(' pTrav = pTrav->pNext;')
178 ur_body.append(' }')
Jon Ashburna8aa8372015-03-03 15:07:15 -0700179 ur_body.append(' if (g_pDbgFunctionHead == NULL)')
180 ur_body.append(' {')
181 ur_body.append(' if (g_actionIsDefault)')
182 ur_body.append(' g_debugAction = XGL_DBG_LAYER_ACTION_LOG_MSG;')
183 ur_body.append(' else')
184 ur_body.append(' g_debugAction &= ~XGL_DBG_LAYER_ACTION_CALLBACK;')
185 ur_body.append(' }')
Courtney Goeltzenleuchterc80a5572015-04-13 14:10:06 -0600186 ur_body.append(' XGL_RESULT result = nextTable.DbgUnregisterMsgCallback(instance, pfnMsgCallback);')
Tobin Ehlise8185062014-12-17 08:01:59 -0700187 ur_body.append(' return result;')
188 ur_body.append('}')
189 return "\n".join(ur_body)
190
Tobin Ehlisd49efcb2014-11-25 17:43:26 -0700191 def _generate_dispatch_entrypoints(self, qual="", layer="Generic", no_addr=False):
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600192 if qual:
193 qual += " "
194
Tobin Ehlisa363cfa2014-11-25 16:59:27 -0700195 layer_name = layer
Tobin Ehlisd49efcb2014-11-25 17:43:26 -0700196 if no_addr:
197 layer_name = "%sNoAddr" % layer
Tobin Ehlis99f88672015-01-10 12:42:41 -0700198 if 'Cpp' in layer_name:
199 layer_name = "APIDumpNoAddrCpp"
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600200 funcs = []
201 for proto in self.protos:
202 if proto.name != "GetProcAddr" and proto.name != "InitAndEnumerateGpus":
Tobin Ehlisa363cfa2014-11-25 16:59:27 -0700203 if "Generic" == layer:
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600204 decl = proto.c_func(prefix="xgl", attr="XGLAPI")
205 param0_name = proto.params[0].name
206 ret_val = ''
207 stmt = ''
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600208 if proto.ret != "void":
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600209 ret_val = "XGL_RESULT result = "
210 stmt = " return result;\n"
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700211 if 'WsiX11AssociateConnection' == proto.name:
Ian Elliottd1597d22015-02-26 14:34:52 -0700212 funcs.append("#if defined(__linux__) || defined(XCB_NVIDIA)")
Jon Ashburnf7a08742014-11-25 11:08:42 -0700213 if proto.name == "EnumerateLayers":
214 c_call = proto.c_call().replace("(" + proto.params[0].name, "((XGL_PHYSICAL_GPU)gpuw->nextObject", 1)
215 funcs.append('%s%s\n'
216 '{\n'
Tobin Ehlise8185062014-12-17 08:01:59 -0700217 ' char str[1024];\n'
Jon Ashburnf7a08742014-11-25 11:08:42 -0700218 ' if (gpu != NULL) {\n'
219 ' XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) %s;\n'
Tobin Ehlise8185062014-12-17 08:01:59 -0700220 ' sprintf(str, "At start of layered %s\\n");\n'
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600221 ' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, gpu, 0, 0, (char *) "GENERIC", (char *) str);\n'
Jon Ashburnf7a08742014-11-25 11:08:42 -0700222 ' pCurObj = gpuw;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700223 ' loader_platform_thread_once(&tabOnce, init%s);\n'
Jon Ashburnf7a08742014-11-25 11:08:42 -0700224 ' %snextTable.%s;\n'
Tobin Ehlise8185062014-12-17 08:01:59 -0700225 ' sprintf(str, "Completed layered %s\\n");\n'
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600226 ' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, gpu, 0, 0, (char *) "GENERIC", (char *) str);\n'
Jon Ashburnf7a08742014-11-25 11:08:42 -0700227 ' fflush(stdout);\n'
228 ' %s'
229 ' } else {\n'
230 ' if (pOutLayerCount == NULL || pOutLayers == NULL || pOutLayers[0] == NULL)\n'
231 ' return XGL_ERROR_INVALID_POINTER;\n'
232 ' // This layer compatible with all GPUs\n'
233 ' *pOutLayerCount = 1;\n'
Chia-I Wu1da4b9f2014-12-16 10:47:33 +0800234 ' strncpy((char *) pOutLayers[0], "%s", maxStringSize);\n'
Jon Ashburnf7a08742014-11-25 11:08:42 -0700235 ' return XGL_SUCCESS;\n'
236 ' }\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700237 '}' % (qual, decl, proto.params[0].name, proto.name, layer_name, ret_val, c_call, proto.name, stmt, layer_name))
Tobin Ehlise8185062014-12-17 08:01:59 -0700238 elif 'DbgRegisterMsgCallback' == proto.name:
239 funcs.append(self._gen_layer_dbg_callback_register())
240 elif 'DbgUnregisterMsgCallback' == proto.name:
241 funcs.append(self._gen_layer_dbg_callback_unregister())
Jon Ashburnf7a08742014-11-25 11:08:42 -0700242 elif proto.params[0].ty != "XGL_PHYSICAL_GPU":
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600243 funcs.append('%s%s\n'
244 '{\n'
245 ' %snextTable.%s;\n'
246 '%s'
247 '}' % (qual, decl, ret_val, proto.c_call(), stmt))
248 else:
249 c_call = proto.c_call().replace("(" + proto.params[0].name, "((XGL_PHYSICAL_GPU)gpuw->nextObject", 1)
250 funcs.append('%s%s\n'
251 '{\n'
Tobin Ehlise8185062014-12-17 08:01:59 -0700252 ' char str[1024];'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600253 ' XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) %s;\n'
Tobin Ehlise8185062014-12-17 08:01:59 -0700254 ' sprintf(str, "At start of layered %s\\n");\n'
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600255 ' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, gpuw, 0, 0, (char *) "GENERIC", (char *) str);\n'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600256 ' pCurObj = gpuw;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700257 ' loader_platform_thread_once(&tabOnce, init%s);\n'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600258 ' %snextTable.%s;\n'
Tobin Ehlise8185062014-12-17 08:01:59 -0700259 ' sprintf(str, "Completed layered %s\\n");\n'
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600260 ' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, gpuw, 0, 0, (char *) "GENERIC", (char *) str);\n'
Courtney Goeltzenleuchterb412d212014-11-18 10:40:29 -0700261 ' fflush(stdout);\n'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600262 '%s'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700263 '}' % (qual, decl, proto.params[0].name, proto.name, layer_name, ret_val, c_call, proto.name, stmt))
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700264 if 'WsiX11QueuePresent' == proto.name:
265 funcs.append("#endif")
Tobin Ehlis99f88672015-01-10 12:42:41 -0700266 elif "APIDumpCpp" in layer:
267 decl = proto.c_func(prefix="xgl", attr="XGLAPI")
268 param0_name = proto.params[0].name
269 ret_val = ''
270 stmt = ''
Tobin Ehlis291cd702015-01-20 09:48:48 -0700271 sp_param_dict = {} # Store 'index' for struct param to print, or an name of binding "Count" param for array to print
Tobin Ehlis99f88672015-01-10 12:42:41 -0700272 create_params = 0 # Num of params at end of function that are created and returned as output values
Tobin Ehlis291cd702015-01-20 09:48:48 -0700273 if 'WsiX11CreatePresentableImage' in proto.name or 'AllocDescriptorSets' in proto.name:
Tobin Ehlis99f88672015-01-10 12:42:41 -0700274 create_params = -2
275 elif 'Create' in proto.name or 'Alloc' in proto.name or 'MapMemory' in proto.name:
276 create_params = -1
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600277 if proto.ret != "void":
Tobin Ehlis99f88672015-01-10 12:42:41 -0700278 ret_val = "XGL_RESULT result = "
279 stmt = " return result;\n"
280 f_open = ''
281 f_close = ''
282 if "File" in layer:
283 file_mode = "a"
284 if 'CreateDevice' in proto.name:
285 file_mode = "w"
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700286 f_open = 'loader_platform_thread_lock_mutex(&printLock);\n pOutFile = fopen(outFileName, "%s");\n ' % (file_mode)
Tobin Ehlis99f88672015-01-10 12:42:41 -0700287 log_func = 'fprintf(pOutFile, "t{%%u} xgl%s(' % proto.name
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700288 f_close = '\n fclose(pOutFile);\n loader_platform_thread_unlock_mutex(&printLock);'
Tobin Ehlis99f88672015-01-10 12:42:41 -0700289 else:
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700290 f_open = 'loader_platform_thread_lock_mutex(&printLock);\n '
Tobin Ehlis99f88672015-01-10 12:42:41 -0700291 log_func = 'cout << "t{" << getTIDIndex() << "} xgl%s(' % proto.name
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700292 f_close = '\n loader_platform_thread_unlock_mutex(&printLock);'
Tobin Ehlis99f88672015-01-10 12:42:41 -0700293 pindex = 0
Tobin Ehlis291cd702015-01-20 09:48:48 -0700294 prev_count_name = ''
Tobin Ehlis99f88672015-01-10 12:42:41 -0700295 for p in proto.params:
Tobin Ehlis99f88672015-01-10 12:42:41 -0700296 cp = False
297 if 0 != create_params:
298 # If this is any of the N last params of the func, treat as output
299 for y in range(-1, create_params-1, -1):
300 if p.name == proto.params[y].name:
301 cp = True
302 (pft, pfi) = self._get_printf_params(p.ty, p.name, cp, cpp=True)
303 if no_addr and "%p" == pft:
304 (pft, pfi) = ("%s", '"addr"')
305 log_func += '%s = " << %s << ", ' % (p.name, pfi)
306 #print_vals += ', %s' % (pfi)
Tobin Ehlis291cd702015-01-20 09:48:48 -0700307 if prev_count_name != '' and (prev_count_name.strip('Count')[1:] in p.name or 'slotCount' == prev_count_name):
308 sp_param_dict[pindex] = prev_count_name
309 elif 'pDescriptorSets' == p.name and proto.params[-1].name == 'pCount':
310 sp_param_dict[pindex] = '*pCount'
Tobin Ehlisf29cc372015-01-22 12:29:31 -0700311 elif 'Wsi' not in proto.name and xgl_helper.is_type(p.ty.strip('*').strip('const '), 'struct'):
312 sp_param_dict[pindex] = 'index'
Tobin Ehlis99f88672015-01-10 12:42:41 -0700313 pindex += 1
Tobin Ehlis291cd702015-01-20 09:48:48 -0700314 if p.name.endswith('Count'):
315 if '*' in p.ty:
316 prev_count_name = "*%s" % p.name
317 else:
318 prev_count_name = p.name
319 else:
320 prev_count_name = ''
Tobin Ehlis99f88672015-01-10 12:42:41 -0700321 log_func = log_func.strip(', ')
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600322 if proto.ret != "void":
Courtney Goeltzenleuchterb7f22da2015-02-26 11:40:39 -0700323 log_func += ') = " << string_XGL_RESULT((XGL_RESULT)result) << endl'
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700324 #print_vals += ', string_XGL_RESULT_CODE(result)'
Tobin Ehlis99f88672015-01-10 12:42:41 -0700325 else:
326 log_func += ')\\n"'
327 log_func += ';'
Tobin Ehlis291cd702015-01-20 09:48:48 -0700328 if len(sp_param_dict) > 0:
329 i_decl = False
Tobin Ehlis99f88672015-01-10 12:42:41 -0700330 log_func += '\n string tmp_str;'
Tobin Ehlis291cd702015-01-20 09:48:48 -0700331 for sp_index in sp_param_dict:
332 if 'index' == sp_param_dict[sp_index]:
333 cis_print_func = 'xgl_print_%s' % (proto.params[sp_index].ty.strip('const ').strip('*').lower())
Courtney Goeltzenleuchterd462fba2015-04-03 16:35:32 -0600334 var_name = proto.params[sp_index].name
335 if proto.params[sp_index].name != 'color':
336 log_func += '\n if (%s) {' % (proto.params[sp_index].name)
337 else:
338 var_name = '&%s' % (proto.params[sp_index].name)
339 log_func += '\n tmp_str = %s(%s, " ");' % (cis_print_func, var_name)
Tobin Ehlis291cd702015-01-20 09:48:48 -0700340 if "File" in layer:
341 if no_addr:
342 log_func += '\n fprintf(pOutFile, " %s (addr)\\n%%s\\n", pTmpStr);' % (proto.params[sp_index].name)
343 else:
Courtney Goeltzenleuchterd462fba2015-04-03 16:35:32 -0600344 log_func += '\n fprintf(pOutFile, " %s (%%p)\\n%%s\\n", (void*)%s, pTmpStr);' % (proto.params[sp_index].name, var_name)
Tobin Ehlis99f88672015-01-10 12:42:41 -0700345 else:
Tobin Ehlis291cd702015-01-20 09:48:48 -0700346 if no_addr:
347 #log_func += '\n printf(" %s (addr)\\n%%s\\n", pTmpStr);' % (proto.params[sp_index].name)
348 log_func += '\n cout << " %s (addr)" << endl << tmp_str << endl;' % (proto.params[sp_index].name)
349 else:
350 #log_func += '\n printf(" %s (%%p)\\n%%s\\n", (void*)%s, pTmpStr);' % (proto.params[sp_index].name, proto.params[sp_index].name)
Courtney Goeltzenleuchterd462fba2015-04-03 16:35:32 -0600351 log_func += '\n cout << " %s (" << %s << ")" << endl << tmp_str << endl;' % (proto.params[sp_index].name, var_name)
Tobin Ehlis291cd702015-01-20 09:48:48 -0700352 #log_func += '\n fflush(stdout);'
Courtney Goeltzenleuchterd462fba2015-04-03 16:35:32 -0600353 if proto.params[sp_index].name != 'color':
354 log_func += '\n }'
Tobin Ehlis291cd702015-01-20 09:48:48 -0700355 else: # We have a count value stored to iterate over an array
356 print_cast = ''
357 print_func = ''
358 if xgl_helper.is_type(proto.params[sp_index].ty.strip('*').strip('const '), 'struct'):
359 print_cast = '&'
360 print_func = 'xgl_print_%s' % proto.params[sp_index].ty.strip('const ').strip('*').lower()
361 #cis_print_func = 'tmp_str = xgl_print_%s(&%s[i], " ");' % (proto.params[sp_index].ty.strip('const ').strip('*').lower(), proto.params[sp_index].name)
362# TODO : Need to display this address as a string
Tobin Ehlis99f88672015-01-10 12:42:41 -0700363 else:
Tobin Ehlis291cd702015-01-20 09:48:48 -0700364 print_cast = '(void*)'
365 print_func = 'string_convert_helper'
366 #cis_print_func = 'tmp_str = string_convert_helper((void*)%s[i], " ");' % proto.params[sp_index].name
367 cis_print_func = 'tmp_str = %s(%s%s[i], " ");' % (print_func, print_cast, proto.params[sp_index].name)
368# else:
369# cis_print_func = ''
370 if not i_decl:
371 log_func += '\n uint32_t i;'
372 i_decl = True
373 log_func += '\n for (i = 0; i < %s; i++) {' % (sp_param_dict[sp_index])
374 log_func += '\n %s' % (cis_print_func)
375 if "File" in layer:
376 if no_addr:
377 log_func += '\n fprintf(pOutFile, " %s (addr)\\n%%s\\n", pTmpStr);' % (proto.params[sp_index].name)
378 else:
379 log_func += '\n fprintf(pOutFile, " %s (%%p)\\n%%s\\n", (void*)%s, pTmpStr);' % (proto.params[sp_index].name, proto.params[sp_index].name)
380 else:
381 if no_addr:
382 #log_func += '\n printf(" %s (addr)\\n%%s\\n", pTmpStr);' % (proto.params[sp_index].name)
383 log_func += '\n cout << " %s[" << (uint32_t)i << "] (addr)" << endl << tmp_str << endl;' % (proto.params[sp_index].name)
384 else:
385 #log_func += '\n printf(" %s (%%p)\\n%%s\\n", (void*)%s, pTmpStr);' % (proto.params[sp_index].name, proto.params[sp_index].name)
386 #log_func += '\n cout << " %s[" << (uint32_t)i << "] (" << %s[i] << ")" << endl << tmp_str << endl;' % (proto.params[sp_index].name, proto.params[sp_index].name)
387 log_func += '\n cout << " %s[" << i << "] (" << %s%s[i] << ")" << endl << tmp_str << endl;' % (proto.params[sp_index].name, print_cast, proto.params[sp_index].name)
388 #log_func += '\n fflush(stdout);'
389 log_func += '\n }'
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700390 if 'WsiX11AssociateConnection' == proto.name:
Ian Elliottd1597d22015-02-26 14:34:52 -0700391 funcs.append("#if defined(__linux__) || defined(XCB_NVIDIA)")
Tobin Ehlis99f88672015-01-10 12:42:41 -0700392 if proto.name == "EnumerateLayers":
393 c_call = proto.c_call().replace("(" + proto.params[0].name, "((XGL_PHYSICAL_GPU)gpuw->nextObject", 1)
394 funcs.append('%s%s\n'
395 '{\n'
396 ' if (gpu != NULL) {\n'
397 ' XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) %s;\n'
398 ' pCurObj = gpuw;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700399 ' loader_platform_thread_once(&tabOnce, init%s);\n'
Tobin Ehlis99f88672015-01-10 12:42:41 -0700400 ' %snextTable.%s;\n'
401 ' %s %s %s\n'
402 ' %s'
403 ' } else {\n'
404 ' if (pOutLayerCount == NULL || pOutLayers == NULL || pOutLayers[0] == NULL)\n'
405 ' return XGL_ERROR_INVALID_POINTER;\n'
406 ' // This layer compatible with all GPUs\n'
407 ' *pOutLayerCount = 1;\n'
408 ' strncpy((char *) pOutLayers[0], "%s", maxStringSize);\n'
409 ' return XGL_SUCCESS;\n'
410 ' }\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700411 '}' % (qual, decl, proto.params[0].name, layer_name, ret_val, c_call,f_open, log_func, f_close, stmt, layer_name))
Tobin Ehlis99f88672015-01-10 12:42:41 -0700412 elif proto.params[0].ty != "XGL_PHYSICAL_GPU":
413 funcs.append('%s%s\n'
414 '{\n'
415 ' %snextTable.%s;\n'
416 ' %s%s%s\n'
417 '%s'
418 '}' % (qual, decl, ret_val, proto.c_call(), f_open, log_func, f_close, stmt))
419 else:
420 c_call = proto.c_call().replace("(" + proto.params[0].name, "((XGL_PHYSICAL_GPU)gpuw->nextObject", 1)
421 funcs.append('%s%s\n'
422 '{\n'
423 ' XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) %s;\n'
424 ' pCurObj = gpuw;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700425 ' loader_platform_thread_once(&tabOnce, init%s);\n'
Tobin Ehlis99f88672015-01-10 12:42:41 -0700426 ' %snextTable.%s;\n'
427 ' %s%s%s\n'
428 '%s'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700429 '}' % (qual, decl, proto.params[0].name, layer_name, ret_val, c_call, f_open, log_func, f_close, stmt))
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700430 if 'WsiX11QueuePresent' == proto.name:
431 funcs.append("#endif")
Tobin Ehlisa363cfa2014-11-25 16:59:27 -0700432 elif "APIDump" in layer:
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600433 decl = proto.c_func(prefix="xgl", attr="XGLAPI")
434 param0_name = proto.params[0].name
435 ret_val = ''
436 stmt = ''
Tobin Ehlis291cd702015-01-20 09:48:48 -0700437 sp_param_dict = {} # Store 'index' for struct param to print, or an name of binding "Count" param for array to print
Tobin Ehlise7271572014-11-19 15:52:46 -0700438 create_params = 0 # Num of params at end of function that are created and returned as output values
439 if 'WsiX11CreatePresentableImage' in proto.name:
440 create_params = -2
441 elif 'Create' in proto.name or 'Alloc' in proto.name or 'MapMemory' in proto.name:
442 create_params = -1
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600443 if proto.ret != "void":
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600444 ret_val = "XGL_RESULT result = "
445 stmt = " return result;\n"
Tobin Ehlisea3d21b2014-11-12 13:11:15 -0700446 f_open = ''
447 f_close = ''
Tobin Ehlisa363cfa2014-11-25 16:59:27 -0700448 if "File" in layer:
Tobin Ehlisdbcd2572014-11-21 09:35:53 -0700449 file_mode = "a"
450 if 'CreateDevice' in proto.name:
451 file_mode = "w"
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700452 f_open = 'loader_platform_thread_lock_mutex(&printLock);\n pOutFile = fopen(outFileName, "%s");\n ' % (file_mode)
Tobin Ehlisd009bae2014-11-24 15:46:55 -0700453 log_func = 'fprintf(pOutFile, "t{%%u} xgl%s(' % proto.name
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700454 f_close = '\n fclose(pOutFile);\n loader_platform_thread_unlock_mutex(&printLock);'
Tobin Ehlisea3d21b2014-11-12 13:11:15 -0700455 else:
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700456 f_open = 'loader_platform_thread_lock_mutex(&printLock);\n '
Tobin Ehlisd009bae2014-11-24 15:46:55 -0700457 log_func = 'printf("t{%%u} xgl%s(' % proto.name
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700458 f_close = '\n loader_platform_thread_unlock_mutex(&printLock);'
Tobin Ehlisd009bae2014-11-24 15:46:55 -0700459 print_vals = ', getTIDIndex()'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600460 pindex = 0
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700461 prev_count_name = ''
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600462 for p in proto.params:
Tobin Ehlise7271572014-11-19 15:52:46 -0700463 cp = False
464 if 0 != create_params:
465 # If this is any of the N last params of the func, treat as output
466 for y in range(-1, create_params-1, -1):
467 if p.name == proto.params[y].name:
468 cp = True
469 (pft, pfi) = self._get_printf_params(p.ty, p.name, cp)
Tobin Ehlisd49efcb2014-11-25 17:43:26 -0700470 if no_addr and "%p" == pft:
471 (pft, pfi) = ("%s", '"addr"')
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600472 log_func += '%s = %s, ' % (p.name, pft)
473 print_vals += ', %s' % (pfi)
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700474 # Catch array inputs that are bound by a "Count" param
475 if prev_count_name != '' and (prev_count_name.strip('Count')[1:] in p.name or 'slotCount' == prev_count_name):
476 sp_param_dict[pindex] = prev_count_name
Tobin Ehlis291cd702015-01-20 09:48:48 -0700477 elif 'pDescriptorSets' == p.name and proto.params[-1].name == 'pCount':
478 sp_param_dict[pindex] = '*pCount'
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700479 elif 'Wsi' not in proto.name and xgl_helper.is_type(p.ty.strip('*').strip('const '), 'struct'):
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700480 sp_param_dict[pindex] = 'index'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600481 pindex += 1
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700482 if p.name.endswith('Count'):
Courtney Goeltzenleuchter1b587b12015-01-13 15:32:18 -0700483 if '*' in p.ty:
484 prev_count_name = "*%s" % p.name
485 else:
486 prev_count_name = p.name
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700487 else:
488 prev_count_name = ''
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600489 log_func = log_func.strip(', ')
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600490 if proto.ret != "void":
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600491 log_func += ') = %s\\n"'
Courtney Goeltzenleuchterb412d212014-11-18 10:40:29 -0700492 print_vals += ', string_XGL_RESULT(result)'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600493 else:
494 log_func += ')\\n"'
495 log_func = '%s%s);' % (log_func, print_vals)
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700496 if len(sp_param_dict) > 0:
497 i_decl = False
498 log_func += '\n char *pTmpStr = "";'
499 for sp_index in sorted(sp_param_dict):
500 # TODO : Clean this if/else block up, too much duplicated code
501 if 'index' == sp_param_dict[sp_index]:
502 cis_print_func = 'xgl_print_%s' % (proto.params[sp_index].ty.strip('const ').strip('*').lower())
Courtney Goeltzenleuchterd462fba2015-04-03 16:35:32 -0600503 var_name = proto.params[sp_index].name
504 if proto.params[sp_index].name != 'color':
505 log_func += '\n if (%s) {' % (proto.params[sp_index].name)
506 else:
507 var_name = "&%s" % proto.params[sp_index].name
508 log_func += '\n pTmpStr = %s(%s, " ");' % (cis_print_func, var_name)
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700509 if "File" in layer:
510 if no_addr:
Courtney Goeltzenleuchterd462fba2015-04-03 16:35:32 -0600511 log_func += '\n fprintf(pOutFile, " %s (addr)\\n%%s\\n", pTmpStr);' % (var_name)
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700512 else:
Courtney Goeltzenleuchterd462fba2015-04-03 16:35:32 -0600513 log_func += '\n fprintf(pOutFile, " %s (%%p)\\n%%s\\n", (void*)%s, pTmpStr);' % (var_name, var_name)
Tobin Ehlisd49efcb2014-11-25 17:43:26 -0700514 else:
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700515 if no_addr:
516 log_func += '\n printf(" %s (addr)\\n%%s\\n", pTmpStr);' % (proto.params[sp_index].name)
517 else:
Courtney Goeltzenleuchterd462fba2015-04-03 16:35:32 -0600518 log_func += '\n printf(" %s (%%p)\\n%%s\\n", (void*)%s, pTmpStr);' % (proto.params[sp_index].name, var_name)
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700519 log_func += '\n fflush(stdout);'
Courtney Goeltzenleuchterd462fba2015-04-03 16:35:32 -0600520 log_func += '\n free(pTmpStr);'
521 if proto.params[sp_index].name != 'color':
522 log_func += '\n }'
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700523 else: # should have a count value stored to iterate over array
524 if xgl_helper.is_type(proto.params[sp_index].ty.strip('*').strip('const '), 'struct'):
525 cis_print_func = 'pTmpStr = xgl_print_%s(&%s[i], " ");' % (proto.params[sp_index].ty.strip('const ').strip('*').lower(), proto.params[sp_index].name)
Tobin Ehlisd49efcb2014-11-25 17:43:26 -0700526 else:
Mike Stroyanb30f3ed2015-03-03 16:54:24 -0700527 cis_print_func = 'pTmpStr = (char*)malloc(32);\n sprintf(pTmpStr, " %%p", %s[i]);' % proto.params[sp_index].name
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700528 if not i_decl:
529 log_func += '\n uint32_t i;'
530 i_decl = True
Jon Ashburn8219c042015-01-14 08:52:37 -0700531 log_func += '\n for (i = 0; i < %s; i++) {' % (sp_param_dict[sp_index])
Tobin Ehlis3bd868a2014-12-18 15:20:05 -0700532 log_func += '\n %s' % (cis_print_func)
533 if "File" in layer:
534 if no_addr:
535 log_func += '\n fprintf(pOutFile, " %s[%%i] (addr)\\n%%s\\n", i, pTmpStr);' % (proto.params[sp_index].name)
536 else:
537 log_func += '\n fprintf(pOutFile, " %s[%%i] (%%p)\\n%%s\\n", i, (void*)%s, pTmpStr);' % (proto.params[sp_index].name, proto.params[sp_index].name)
538 else:
539 if no_addr:
540 log_func += '\n printf(" %s[%%i] (addr)\\n%%s\\n", i, pTmpStr);' % (proto.params[sp_index].name)
541 else:
542 log_func += '\n printf(" %s[%%i] (%%p)\\n%%s\\n", i, (void*)%s, pTmpStr);' % (proto.params[sp_index].name, proto.params[sp_index].name)
543 log_func += '\n fflush(stdout);'
544 log_func += '\n free(pTmpStr);\n }'
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700545 if 'WsiX11AssociateConnection' == proto.name:
Ian Elliottd1597d22015-02-26 14:34:52 -0700546 funcs.append("#if defined(__linux__) || defined(XCB_NVIDIA)")
Jon Ashburnf7a08742014-11-25 11:08:42 -0700547 if proto.name == "EnumerateLayers":
548 c_call = proto.c_call().replace("(" + proto.params[0].name, "((XGL_PHYSICAL_GPU)gpuw->nextObject", 1)
549 funcs.append('%s%s\n'
550 '{\n'
551 ' if (gpu != NULL) {\n'
552 ' XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) %s;\n'
553 ' pCurObj = gpuw;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700554 ' loader_platform_thread_once(&tabOnce, init%s);\n'
Jon Ashburnf7a08742014-11-25 11:08:42 -0700555 ' %snextTable.%s;\n'
556 ' %s %s %s\n'
557 ' %s'
558 ' } else {\n'
559 ' if (pOutLayerCount == NULL || pOutLayers == NULL || pOutLayers[0] == NULL)\n'
560 ' return XGL_ERROR_INVALID_POINTER;\n'
561 ' // This layer compatible with all GPUs\n'
562 ' *pOutLayerCount = 1;\n'
Chia-I Wu1da4b9f2014-12-16 10:47:33 +0800563 ' strncpy((char *) pOutLayers[0], "%s", maxStringSize);\n'
Jon Ashburnf7a08742014-11-25 11:08:42 -0700564 ' return XGL_SUCCESS;\n'
565 ' }\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700566 '}' % (qual, decl, proto.params[0].name, layer_name, ret_val, c_call,f_open, log_func, f_close, stmt, layer_name))
Jon Ashburnf7a08742014-11-25 11:08:42 -0700567 elif proto.params[0].ty != "XGL_PHYSICAL_GPU":
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600568 funcs.append('%s%s\n'
569 '{\n'
570 ' %snextTable.%s;\n'
Tobin Ehlisea3d21b2014-11-12 13:11:15 -0700571 ' %s%s%s\n'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600572 '%s'
Tobin Ehlisea3d21b2014-11-12 13:11:15 -0700573 '}' % (qual, decl, ret_val, proto.c_call(), f_open, log_func, f_close, stmt))
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600574 else:
575 c_call = proto.c_call().replace("(" + proto.params[0].name, "((XGL_PHYSICAL_GPU)gpuw->nextObject", 1)
576 funcs.append('%s%s\n'
577 '{\n'
578 ' XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) %s;\n'
579 ' pCurObj = gpuw;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700580 ' loader_platform_thread_once(&tabOnce, init%s);\n'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600581 ' %snextTable.%s;\n'
Tobin Ehlisea3d21b2014-11-12 13:11:15 -0700582 ' %s%s%s\n'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600583 '%s'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700584 '}' % (qual, decl, proto.params[0].name, layer_name, ret_val, c_call, f_open, log_func, f_close, stmt))
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700585 if 'WsiX11QueuePresent' == proto.name:
586 funcs.append("#endif")
Tobin Ehlisa363cfa2014-11-25 16:59:27 -0700587 elif "ObjectTracker" == layer:
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700588 obj_type_mapping = {base_t : base_t.replace("XGL_", "XGL_OBJECT_TYPE_") for base_t in xgl.object_type_list}
589 # For the various "super-types" we have to use function to distinguish sub type
590 for obj_type in ["XGL_BASE_OBJECT", "XGL_OBJECT", "XGL_DYNAMIC_STATE_OBJECT"]:
591 obj_type_mapping[obj_type] = "ll_get_obj_type(object)"
Tobin Ehlisca915872014-11-18 11:28:33 -0700592
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600593 decl = proto.c_func(prefix="xgl", attr="XGLAPI")
594 param0_name = proto.params[0].name
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700595 p0_type = proto.params[0].ty.strip('*').strip('const ')
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600596 create_line = ''
597 destroy_line = ''
Tobin Ehlisca915872014-11-18 11:28:33 -0700598 if 'DbgRegisterMsgCallback' in proto.name:
599 using_line = ' // This layer intercepts callbacks\n'
600 using_line += ' XGL_LAYER_DBG_FUNCTION_NODE *pNewDbgFuncNode = (XGL_LAYER_DBG_FUNCTION_NODE*)malloc(sizeof(XGL_LAYER_DBG_FUNCTION_NODE));\n'
601 using_line += ' if (!pNewDbgFuncNode)\n'
602 using_line += ' return XGL_ERROR_OUT_OF_MEMORY;\n'
603 using_line += ' pNewDbgFuncNode->pfnMsgCallback = pfnMsgCallback;\n'
604 using_line += ' pNewDbgFuncNode->pUserData = pUserData;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700605 using_line += ' pNewDbgFuncNode->pNext = g_pDbgFunctionHead;\n'
606 using_line += ' g_pDbgFunctionHead = pNewDbgFuncNode;\n'
Jon Ashburna8aa8372015-03-03 15:07:15 -0700607 using_line += ' // force callbacks if DebugAction hasn\'t been set already other than initial value\n'
Ian Elliott6d9e41e2015-03-05 12:28:53 -0700608 using_line += ' if (g_actionIsDefault) {\n'
Jon Ashburna8aa8372015-03-03 15:07:15 -0700609 using_line += ' g_debugAction = XGL_DBG_LAYER_ACTION_CALLBACK;\n'
Ian Elliott6d9e41e2015-03-05 12:28:53 -0700610 using_line += ' }'
Tobin Ehlisca915872014-11-18 11:28:33 -0700611 elif 'DbgUnregisterMsgCallback' in proto.name:
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700612 using_line = ' XGL_LAYER_DBG_FUNCTION_NODE *pTrav = g_pDbgFunctionHead;\n'
Tobin Ehlisca915872014-11-18 11:28:33 -0700613 using_line += ' XGL_LAYER_DBG_FUNCTION_NODE *pPrev = pTrav;\n'
614 using_line += ' while (pTrav) {\n'
615 using_line += ' if (pTrav->pfnMsgCallback == pfnMsgCallback) {\n'
616 using_line += ' pPrev->pNext = pTrav->pNext;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700617 using_line += ' if (g_pDbgFunctionHead == pTrav)\n'
618 using_line += ' g_pDbgFunctionHead = pTrav->pNext;\n'
Tobin Ehlisca915872014-11-18 11:28:33 -0700619 using_line += ' free(pTrav);\n'
620 using_line += ' break;\n'
621 using_line += ' }\n'
622 using_line += ' pPrev = pTrav;\n'
623 using_line += ' pTrav = pTrav->pNext;\n'
624 using_line += ' }\n'
Jon Ashburna8aa8372015-03-03 15:07:15 -0700625 using_line += ' if (g_pDbgFunctionHead == NULL)\n'
626 using_line += ' {\n'
627 using_line += ' if (g_actionIsDefault)\n'
628 using_line += ' g_debugAction = XGL_DBG_LAYER_ACTION_LOG_MSG;\n'
629 using_line += ' else\n'
630 using_line += ' g_debugAction &= ~XGL_DBG_LAYER_ACTION_CALLBACK;\n'
631 using_line += ' }\n'
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700632 # Special cases for API funcs that don't use an object as first arg
Courtney Goeltzenleuchterebb95842015-03-25 17:14:29 -0600633 elif True in [no_use_proto in proto.name for no_use_proto in ['GlobalOption', 'CreateInstance', 'QueueSubmit', 'QueueSetGlobalMemReferences', 'QueueWaitIdle', 'CreateDevice', 'GetGpuInfo', 'QueueSignalSemaphore', 'QueueWaitSemaphore', 'WsiX11QueuePresent']]:
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600634 using_line = ''
Tobin Ehlisca915872014-11-18 11:28:33 -0700635 else:
Tobin Ehlis36f1b462015-02-23 14:09:16 -0700636 using_line = ' loader_platform_thread_lock_mutex(&objLock);\n'
637 using_line += ' ll_increment_use_count((void*)%s, %s);\n' % (param0_name, obj_type_mapping[p0_type])
638 using_line += ' loader_platform_thread_unlock_mutex(&objLock);\n'
Tobin Ehlis91ce77e2015-01-16 08:56:30 -0700639 if 'QueueSubmit' in proto.name:
640 using_line += ' set_status((void*)fence, XGL_OBJECT_TYPE_FENCE, OBJSTATUS_FENCE_IS_SUBMITTED);\n'
Mark Lobodzinski4988dea2015-02-03 11:52:26 -0600641 using_line += ' validate_memory_mapping_status(pMemRefs, memRefCount);\n'
Mark Lobodzinskiaae93e52015-02-09 10:20:53 -0600642 using_line += ' validate_mem_ref_count(memRefCount);\n'
Tobin Ehlis91ce77e2015-01-16 08:56:30 -0700643 elif 'GetFenceStatus' in proto.name:
644 using_line += ' // Warn if submitted_flag is not set\n'
Mark Lobodzinski4988dea2015-02-03 11:52:26 -0600645 using_line += ' validate_status((void*)fence, XGL_OBJECT_TYPE_FENCE, OBJSTATUS_FENCE_IS_SUBMITTED, OBJSTATUS_FENCE_IS_SUBMITTED, XGL_DBG_MSG_ERROR, OBJTRACK_INVALID_FENCE, "Status Requested for Unsubmitted Fence");\n'
Mark Lobodzinski40370872015-02-03 10:06:31 -0600646 elif 'EndCommandBuffer' in proto.name:
647 using_line += ' reset_status((void*)cmdBuffer, XGL_OBJECT_TYPE_CMD_BUFFER, (OBJSTATUS_VIEWPORT_BOUND |\n'
648 using_line += ' OBJSTATUS_RASTER_BOUND |\n'
649 using_line += ' OBJSTATUS_COLOR_BLEND_BOUND |\n'
650 using_line += ' OBJSTATUS_DEPTH_STENCIL_BOUND));\n'
651 elif 'CmdBindDynamicStateObject' in proto.name:
652 using_line += ' track_object_status((void*)cmdBuffer, stateBindPoint);\n'
653 elif 'CmdDraw' in proto.name:
654 using_line += ' validate_draw_state_flags((void *)cmdBuffer);\n'
Mark Lobodzinski4988dea2015-02-03 11:52:26 -0600655 elif 'MapMemory' in proto.name:
656 using_line += ' set_status((void*)mem, XGL_OBJECT_TYPE_GPU_MEMORY, OBJSTATUS_GPU_MEM_MAPPED);\n'
657 elif 'UnmapMemory' in proto.name:
658 using_line += ' reset_status((void*)mem, XGL_OBJECT_TYPE_GPU_MEMORY, OBJSTATUS_GPU_MEM_MAPPED);\n'
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700659 if 'AllocDescriptor' in proto.name: # Allocates array of DSs
Ian Elliotta83a58a2015-02-04 12:15:12 -0700660 create_line = ' for (uint32_t i = 0; i < *pCount; i++) {\n'
Tobin Ehlis36f1b462015-02-23 14:09:16 -0700661 create_line += ' loader_platform_thread_lock_mutex(&objLock);\n'
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700662 create_line += ' ll_insert_obj((void*)pDescriptorSets[i], XGL_OBJECT_TYPE_DESCRIPTOR_SET);\n'
Tobin Ehlis36f1b462015-02-23 14:09:16 -0700663 create_line += ' loader_platform_thread_unlock_mutex(&objLock);\n'
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700664 create_line += ' }\n'
Courtney Goeltzenleuchterbe1c8982015-02-25 16:58:34 -0700665 elif 'CreatePresentableImage' in proto.name:
666 create_line = ' loader_platform_thread_lock_mutex(&objLock);\n'
667 create_line += ' ll_insert_obj((void*)*%s, %s);\n' % (proto.params[-2].name, obj_type_mapping[proto.params[-2].ty.strip('*').strip('const ')])
Mark Lobodzinski78a21972015-03-05 12:39:33 -0600668 create_line += ' ll_insert_obj((void*)*pMem, XGL_OBJECT_TYPE_PRESENTABLE_IMAGE_MEMORY);\n'
669 # create_line += ' ll_insert_obj((void*)*%s, XGL_OBJECT_TYPE_PRESENTABLE_IMAGE_MEMORY);\n' % (obj_type_mapping[proto.params[-1].ty.strip('*').strip('const ')])
Courtney Goeltzenleuchterbe1c8982015-02-25 16:58:34 -0700670 create_line += ' loader_platform_thread_unlock_mutex(&objLock);\n'
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700671 elif 'Create' in proto.name or 'Alloc' in proto.name:
Tobin Ehlis36f1b462015-02-23 14:09:16 -0700672 create_line = ' loader_platform_thread_lock_mutex(&objLock);\n'
673 create_line += ' ll_insert_obj((void*)*%s, %s);\n' % (proto.params[-1].name, obj_type_mapping[proto.params[-1].ty.strip('*').strip('const ')])
674 create_line += ' loader_platform_thread_unlock_mutex(&objLock);\n'
Tobin Ehlisca915872014-11-18 11:28:33 -0700675 if 'DestroyObject' in proto.name:
Tobin Ehlis36f1b462015-02-23 14:09:16 -0700676 destroy_line = ' loader_platform_thread_lock_mutex(&objLock);\n'
677 destroy_line += ' ll_destroy_obj((void*)%s);\n' % (param0_name)
678 destroy_line += ' loader_platform_thread_unlock_mutex(&objLock);\n'
Tobin Ehlisca915872014-11-18 11:28:33 -0700679 using_line = ''
680 else:
681 if 'Destroy' in proto.name or 'Free' in proto.name:
Tobin Ehlis36f1b462015-02-23 14:09:16 -0700682 destroy_line = ' loader_platform_thread_lock_mutex(&objLock);\n'
Mark Lobodzinskiaadd4c82015-02-24 16:20:24 -0600683 destroy_line += ' ll_destroy_obj((void*)%s);\n' % (param0_name)
Tobin Ehlis36f1b462015-02-23 14:09:16 -0700684 destroy_line += ' loader_platform_thread_unlock_mutex(&objLock);\n'
Tobin Ehlisca915872014-11-18 11:28:33 -0700685 using_line = ''
686 if 'DestroyDevice' in proto.name:
687 destroy_line += ' // Report any remaining objects in LL\n objNode *pTrav = pGlobalHead;\n while (pTrav) {\n'
Mark Lobodzinski78a21972015-03-05 12:39:33 -0600688 destroy_line += ' if (pTrav->obj.objType == XGL_OBJECT_TYPE_PRESENTABLE_IMAGE_MEMORY) {\n'
689 destroy_line += ' objNode *pDel = pTrav;\n'
690 destroy_line += ' pTrav = pTrav->pNextGlobal;\n'
691 destroy_line += ' ll_destroy_obj((void*)(pDel->obj.pObj));\n'
692 destroy_line += ' } else {\n'
693 destroy_line += ' char str[1024];\n'
694 destroy_line += ' sprintf(str, "OBJ ERROR : %s object %p has not been destroyed (was used %lu times).", string_XGL_OBJECT_TYPE(pTrav->obj.objType), pTrav->obj.pObj, pTrav->obj.numUses);\n'
695 destroy_line += ' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, device, 0, OBJTRACK_OBJECT_LEAK, "OBJTRACK", str);\n'
696 destroy_line += ' pTrav = pTrav->pNextGlobal;\n'
697 destroy_line += ' }\n'
698 destroy_line += ' }\n'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600699 ret_val = ''
700 stmt = ''
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600701 if proto.ret != "void":
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600702 ret_val = "XGL_RESULT result = "
703 stmt = " return result;\n"
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700704 if 'WsiX11AssociateConnection' == proto.name:
Ian Elliottd1597d22015-02-26 14:34:52 -0700705 funcs.append("#if defined(__linux__) || defined(XCB_NVIDIA)")
Jon Ashburnf7a08742014-11-25 11:08:42 -0700706 if proto.name == "EnumerateLayers":
707 c_call = proto.c_call().replace("(" + proto.params[0].name, "((XGL_PHYSICAL_GPU)gpuw->nextObject", 1)
708 funcs.append('%s%s\n'
709 '{\n'
710 ' if (gpu != NULL) {\n'
711 ' XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) %s;\n'
712 ' %s'
713 ' pCurObj = gpuw;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700714 ' loader_platform_thread_once(&tabOnce, init%s);\n'
Jon Ashburnf7a08742014-11-25 11:08:42 -0700715 ' %snextTable.%s;\n'
716 ' %s%s'
717 ' %s'
718 ' } else {\n'
719 ' if (pOutLayerCount == NULL || pOutLayers == NULL || pOutLayers[0] == NULL)\n'
720 ' return XGL_ERROR_INVALID_POINTER;\n'
721 ' // This layer compatible with all GPUs\n'
722 ' *pOutLayerCount = 1;\n'
Chia-I Wu1da4b9f2014-12-16 10:47:33 +0800723 ' strncpy((char *) pOutLayers[0], "%s", maxStringSize);\n'
Jon Ashburnf7a08742014-11-25 11:08:42 -0700724 ' return XGL_SUCCESS;\n'
725 ' }\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700726 '}' % (qual, decl, proto.params[0].name, using_line, layer_name, ret_val, c_call, create_line, destroy_line, stmt, layer_name))
Jon Ashburnf7a08742014-11-25 11:08:42 -0700727 elif proto.params[0].ty != "XGL_PHYSICAL_GPU":
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600728 funcs.append('%s%s\n'
729 '{\n'
730 '%s'
731 ' %snextTable.%s;\n'
732 '%s%s'
733 '%s'
734 '}' % (qual, decl, using_line, ret_val, proto.c_call(), create_line, destroy_line, stmt))
735 else:
736 c_call = proto.c_call().replace("(" + proto.params[0].name, "((XGL_PHYSICAL_GPU)gpuw->nextObject", 1)
Mark Lobodzinskiaae93e52015-02-09 10:20:53 -0600737 gpu_state = ''
738 if 'GetGpuInfo' in proto.name:
739 gpu_state = ' if (infoType == XGL_INFO_TYPE_PHYSICAL_GPU_PROPERTIES) {\n'
740 gpu_state += ' if (pData != NULL) {\n'
741 gpu_state += ' setGpuInfoState(pData);\n'
742 gpu_state += ' }\n'
743 gpu_state += ' }\n'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600744 funcs.append('%s%s\n'
745 '{\n'
746 ' XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) %s;\n'
747 '%s'
748 ' pCurObj = gpuw;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700749 ' loader_platform_thread_once(&tabOnce, init%s);\n'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600750 ' %snextTable.%s;\n'
751 '%s%s'
752 '%s'
Mark Lobodzinskiaae93e52015-02-09 10:20:53 -0600753 '%s'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700754 '}' % (qual, decl, proto.params[0].name, using_line, layer_name, ret_val, c_call, create_line, destroy_line, gpu_state, stmt))
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700755 if 'WsiX11QueuePresent' == proto.name:
756 funcs.append("#endif")
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700757 elif "ParamChecker" == layer:
758 # TODO : Need to fix up the non-else cases below to do param checking as well
759 decl = proto.c_func(prefix="xgl", attr="XGLAPI")
760 param0_name = proto.params[0].name
761 ret_val = ''
762 stmt = ''
763 param_checks = []
764 # Add code to check enums and structs
765 # TODO : Currently only validating enum values, need to validate everything
766 str_decl = False
Tobin Ehlisc6d256a2014-12-18 13:51:21 -0700767 prev_count_name = ''
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700768 for p in proto.params:
769 if xgl_helper.is_type(p.ty.strip('*').strip('const '), 'enum'):
770 if not str_decl:
771 param_checks.append(' char str[1024];')
772 str_decl = True
773 param_checks.append(' if (!validate_%s(%s)) {' % (p.ty, p.name))
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700774 param_checks.append(' sprintf(str, "Parameter %s to function %s has invalid value of %%i.", (int)%s);' % (p.name, proto.name, p.name))
775 param_checks.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, NULL, 0, 1, "PARAMCHECK", str);')
776 param_checks.append(' }')
777 elif xgl_helper.is_type(p.ty.strip('*').strip('const '), 'struct') and 'const' in p.ty:
Tobin Ehlisc6d256a2014-12-18 13:51:21 -0700778 is_array = False
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700779 if not str_decl:
780 param_checks.append(' char str[1024];')
781 str_decl = True
782 if '*' in p.ty: # First check for null ptr
Tobin Ehlisc6d256a2014-12-18 13:51:21 -0700783 # If this is an input array, parse over all of the array elements
784 if prev_count_name != '' and (prev_count_name.strip('Count')[1:] in p.name or 'slotCount' == prev_count_name):
785 #if 'pImageViews' in p.name:
786 is_array = True
787 param_checks.append(' uint32_t i;')
788 param_checks.append(' for (i = 0; i < %s; i++) {' % prev_count_name)
789 param_checks.append(' if (!xgl_validate_%s(&%s[i])) {' % (p.ty.strip('*').strip('const ').lower(), p.name))
790 param_checks.append(' sprintf(str, "Parameter %s[%%i] to function %s contains an invalid value.", i);' % (p.name, proto.name))
791 param_checks.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, NULL, 0, 1, "PARAMCHECK", str);')
792 param_checks.append(' }')
793 param_checks.append(' }')
794 else:
795 param_checks.append(' if (!%s) {' % p.name)
796 param_checks.append(' sprintf(str, "Struct ptr parameter %s to function %s is NULL.");' % (p.name, proto.name))
797 param_checks.append(' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, NULL, 0, 1, "PARAMCHECK", str);')
798 param_checks.append(' }')
799 param_checks.append(' else if (!xgl_validate_%s(%s)) {' % (p.ty.strip('*').strip('const ').lower(), p.name))
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700800 else:
801 param_checks.append(' if (!xgl_validate_%s(%s)) {' % (p.ty.strip('const ').lower(), p.name))
Tobin Ehlisc6d256a2014-12-18 13:51:21 -0700802 if not is_array:
803 param_checks.append(' sprintf(str, "Parameter %s to function %s contains an invalid value.");' % (p.name, proto.name))
804 param_checks.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, NULL, 0, 1, "PARAMCHECK", str);')
805 param_checks.append(' }')
806 if p.name.endswith('Count'):
807 prev_count_name = p.name
808 else:
809 prev_count_name = ''
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600810 if proto.ret != "void":
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700811 ret_val = "XGL_RESULT result = "
812 stmt = " return result;\n"
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700813 if 'WsiX11AssociateConnection' == proto.name:
Ian Elliottd1597d22015-02-26 14:34:52 -0700814 funcs.append("#if defined(__linux__) || defined(XCB_NVIDIA)")
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700815 if proto.name == "EnumerateLayers":
816 c_call = proto.c_call().replace("(" + proto.params[0].name, "((XGL_PHYSICAL_GPU)gpuw->nextObject", 1)
817 funcs.append('%s%s\n'
818 '{\n'
819 ' char str[1024];\n'
820 ' if (gpu != NULL) {\n'
821 ' XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) %s;\n'
822 ' sprintf(str, "At start of layered %s\\n");\n'
823 ' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, gpu, 0, 0, "PARAMCHECK", str);\n'
824 ' pCurObj = gpuw;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700825 ' loader_platform_thread_once(&tabOnce, init%s);\n'
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700826 ' %snextTable.%s;\n'
827 ' sprintf(str, "Completed layered %s\\n");\n'
828 ' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, gpu, 0, 0, "PARAMCHECK", str);\n'
829 ' fflush(stdout);\n'
830 ' %s'
831 ' } else {\n'
832 ' if (pOutLayerCount == NULL || pOutLayers == NULL || pOutLayers[0] == NULL)\n'
833 ' return XGL_ERROR_INVALID_POINTER;\n'
834 ' // This layer compatible with all GPUs\n'
835 ' *pOutLayerCount = 1;\n'
836 ' strncpy(pOutLayers[0], "%s", maxStringSize);\n'
837 ' return XGL_SUCCESS;\n'
838 ' }\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700839 '}' % (qual, decl, proto.params[0].name, proto.name, layer_name, ret_val, c_call, proto.name, stmt, layer_name))
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700840 elif 'DbgRegisterMsgCallback' == proto.name:
841 funcs.append(self._gen_layer_dbg_callback_register())
842 elif 'DbgUnregisterMsgCallback' == proto.name:
843 funcs.append(self._gen_layer_dbg_callback_unregister())
844 elif proto.params[0].ty != "XGL_PHYSICAL_GPU":
845 funcs.append('%s%s\n'
846 '{\n'
847 '%s\n'
848 ' %snextTable.%s;\n'
849 '%s'
850 '}' % (qual, decl, "\n".join(param_checks), ret_val, proto.c_call(), stmt))
851 else:
852 c_call = proto.c_call().replace("(" + proto.params[0].name, "((XGL_PHYSICAL_GPU)gpuw->nextObject", 1)
853 funcs.append('%s%s\n'
854 '{\n'
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700855 ' XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) %s;\n'
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700856 ' pCurObj = gpuw;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700857 ' loader_platform_thread_once(&tabOnce, init%s);\n'
Tobin Ehlisbf4c4de2014-12-18 08:44:01 -0700858 '%s\n'
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700859 ' %snextTable.%s;\n'
Tobin Ehlis14ff0852014-12-17 17:44:50 -0700860 '%s'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700861 '}' % (qual, decl, proto.params[0].name, layer_name, "\n".join(param_checks), ret_val, c_call, stmt))
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700862 if 'WsiX11QueuePresent' == proto.name:
863 funcs.append("#endif")
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600864
865 return "\n\n".join(funcs)
866
Tobin Ehlisca915872014-11-18 11:28:33 -0700867 def _generate_extensions(self):
868 exts = []
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600869 exts.append('uint64_t objTrackGetObjectCount(XGL_OBJECT_TYPE type)')
Tobin Ehlisca915872014-11-18 11:28:33 -0700870 exts.append('{')
871 exts.append(' return (type == XGL_OBJECT_TYPE_ANY) ? numTotalObjs : numObjs[type];')
872 exts.append('}')
873 exts.append('')
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600874 exts.append('XGL_RESULT objTrackGetObjects(XGL_OBJECT_TYPE type, uint64_t objCount, OBJTRACK_NODE* pObjNodeArray)')
Tobin Ehlisca915872014-11-18 11:28:33 -0700875 exts.append('{')
876 exts.append(" // This bool flags if we're pulling all objs or just a single class of objs")
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600877 exts.append(' bool32_t bAllObjs = (type == XGL_OBJECT_TYPE_ANY);')
Tobin Ehlisca915872014-11-18 11:28:33 -0700878 exts.append(' // Check the count first thing')
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600879 exts.append(' uint64_t maxObjCount = (bAllObjs) ? numTotalObjs : numObjs[type];')
Tobin Ehlisca915872014-11-18 11:28:33 -0700880 exts.append(' if (objCount > maxObjCount) {')
881 exts.append(' char str[1024];')
882 exts.append(' sprintf(str, "OBJ ERROR : Received objTrackGetObjects() request for %lu objs, but there are only %lu objs of type %s", objCount, maxObjCount, string_XGL_OBJECT_TYPE(type));')
883 exts.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, 0, 0, OBJTRACK_OBJCOUNT_MAX_EXCEEDED, "OBJTRACK", str);')
884 exts.append(' return XGL_ERROR_INVALID_VALUE;')
885 exts.append(' }')
886 exts.append(' objNode* pTrav = (bAllObjs) ? pGlobalHead : pObjectHead[type];')
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600887 exts.append(' for (uint64_t i = 0; i < objCount; i++) {')
Tobin Ehlisca915872014-11-18 11:28:33 -0700888 exts.append(' if (!pTrav) {')
889 exts.append(' char str[1024];')
890 exts.append(' sprintf(str, "OBJ INTERNAL ERROR : Ran out of %s objs! Should have %lu, but only copied %lu and not the requested %lu.", string_XGL_OBJECT_TYPE(type), maxObjCount, i, objCount);')
891 exts.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, 0, 0, OBJTRACK_INTERNAL_ERROR, "OBJTRACK", str);')
892 exts.append(' return XGL_ERROR_UNKNOWN;')
893 exts.append(' }')
894 exts.append(' memcpy(&pObjNodeArray[i], pTrav, sizeof(OBJTRACK_NODE));')
895 exts.append(' pTrav = (bAllObjs) ? pTrav->pNextGlobal : pTrav->pNextObj;')
896 exts.append(' }')
897 exts.append(' return XGL_SUCCESS;')
898 exts.append('}')
899
900 return "\n".join(exts)
901
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700902 def _generate_layer_gpa_function(self, layer, extensions=[]):
Chia-I Wu4d11dcc2015-01-05 13:18:57 +0800903 func_body = ["#include \"xgl_generic_intercept_proc_helper.h\""]
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600904 func_body.append("XGL_LAYER_EXPORT void* XGLAPI xglGetProcAddr(XGL_PHYSICAL_GPU gpu, const char* funcName)\n"
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600905 "{\n"
906 " XGL_BASE_LAYER_OBJECT* gpuw = (XGL_BASE_LAYER_OBJECT *) gpu;\n"
Chia-I Wu4d11dcc2015-01-05 13:18:57 +0800907 " void* addr;\n"
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600908 " if (gpu == NULL)\n"
909 " return NULL;\n"
910 " pCurObj = gpuw;\n"
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700911 " loader_platform_thread_once(&tabOnce, init%s);\n\n"
Chia-I Wu4d11dcc2015-01-05 13:18:57 +0800912 " addr = layer_intercept_proc(funcName);\n"
913 " if (addr)\n"
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700914 " return addr;" % layer)
Chia-I Wu4d11dcc2015-01-05 13:18:57 +0800915
Tobin Ehlisca915872014-11-18 11:28:33 -0700916 if 0 != len(extensions):
917 for ext_name in extensions:
Chia-I Wuf1a5a742014-12-27 15:16:07 +0800918 func_body.append(' else if (!strncmp("%s", funcName, sizeof("%s")))\n'
Tobin Ehlisca915872014-11-18 11:28:33 -0700919 ' return %s;' % (ext_name, ext_name, ext_name))
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600920 func_body.append(" else {\n"
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600921 " if (gpuw->pGPA == NULL)\n"
922 " return NULL;\n"
Tobin Ehlis99f88672015-01-10 12:42:41 -0700923 " return gpuw->pGPA((XGL_PHYSICAL_GPU)gpuw->nextObject, funcName);\n"
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600924 " }\n"
925 "}\n")
926 return "\n".join(func_body)
927
Tobin Ehlis36f1b462015-02-23 14:09:16 -0700928 def _generate_layer_initialization(self, name, init_opts=False, prefix='xgl', lockname=None):
Chia-I Wuaa4121f2015-01-04 23:11:43 +0800929 func_body = ["#include \"xgl_dispatch_table_helper.h\""]
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700930 func_body.append('static void init%s(void)\n'
931 '{\n' % name)
932 if init_opts:
933 func_body.append(' const char *strOpt;')
934 func_body.append(' // initialize %s options' % name)
Ian Elliotte7826712015-03-06 13:50:05 -0700935 func_body.append(' getLayerOptionEnum("%sReportLevel", (uint32_t *) &g_reportingLevel);' % name)
936 func_body.append(' g_actionIsDefault = getLayerOptionEnum("%sDebugAction", (uint32_t *) &g_debugAction);' % name)
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700937 func_body.append('')
938 func_body.append(' if (g_debugAction & XGL_DBG_LAYER_ACTION_LOG_MSG)')
939 func_body.append(' {')
940 func_body.append(' strOpt = getLayerOption("%sLogFilename");' % name)
941 func_body.append(' if (strOpt)')
942 func_body.append(' {')
943 func_body.append(' g_logFile = fopen(strOpt, "w");')
944 func_body.append(' }')
945 func_body.append(' if (g_logFile == NULL)')
946 func_body.append(' g_logFile = stdout;')
947 func_body.append(' }')
948 func_body.append('')
949 func_body.append(' xglGetProcAddrType fpNextGPA;\n'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600950 ' fpNextGPA = pCurObj->pGPA;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700951 ' assert(fpNextGPA);\n')
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600952
Chia-I Wuaa4121f2015-01-04 23:11:43 +0800953 func_body.append(" layer_initialize_dispatch_table(&nextTable, fpNextGPA, (XGL_PHYSICAL_GPU) pCurObj->nextObject);")
Tobin Ehlis36f1b462015-02-23 14:09:16 -0700954 if lockname is not None:
955 func_body.append(" if (!%sLockInitialized)" % lockname)
956 func_body.append(" {")
957 func_body.append(" // TODO/TBD: Need to delete this mutex sometime. How???")
958 func_body.append(" loader_platform_thread_create_mutex(&%sLock);" % lockname)
959 func_body.append(" %sLockInitialized = 1;" % lockname)
960 func_body.append(" }")
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600961 func_body.append("}\n")
962 return "\n".join(func_body)
963
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700964 def _generate_layer_initialization_with_lock(self, layer, prefix='xgl'):
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700965 func_body = ["#include \"xgl_dispatch_table_helper.h\""]
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700966 func_body.append('static void init%s(void)\n'
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700967 '{\n'
968 ' xglGetProcAddrType fpNextGPA;\n'
969 ' fpNextGPA = pCurObj->pGPA;\n'
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700970 ' assert(fpNextGPA);\n' % layer);
Ian Elliott2d4ab1e2015-01-13 17:52:38 -0700971
972 func_body.append(" layer_initialize_dispatch_table(&nextTable, fpNextGPA, (XGL_PHYSICAL_GPU) pCurObj->nextObject);\n")
973 func_body.append(" if (!printLockInitialized)")
974 func_body.append(" {")
975 func_body.append(" // TODO/TBD: Need to delete this mutex sometime. How???")
976 func_body.append(" loader_platform_thread_create_mutex(&printLock);")
977 func_body.append(" printLockInitialized = 1;")
978 func_body.append(" }")
979 func_body.append("}\n")
980 return "\n".join(func_body)
981
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600982class LayerFuncsSubcommand(Subcommand):
983 def generate_header(self):
984 return '#include <xglLayer.h>\n#include "loader.h"'
985
986 def generate_body(self):
987 return self._generate_dispatch_entrypoints("static", True)
988
989class LayerDispatchSubcommand(Subcommand):
990 def generate_header(self):
991 return '#include "layer_wrappers.h"'
992
993 def generate_body(self):
Jon Ashburnd6badbc2015-02-16 08:26:50 -0700994 return self._generate_layer_initialization()
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600995
996class GenericLayerSubcommand(Subcommand):
997 def generate_header(self):
Jon Ashburn9a7f9a22015-02-17 11:03:12 -0700998 return '#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include "loader_platform.h"\n#include "xglLayer.h"\n//The following is #included again to catch certain OS-specific functions being used:\n#include "loader_platform.h"\n\n#include "layers_config.h"\n#include "layers_msg.h"\n\nstatic XGL_LAYER_DISPATCH_TABLE nextTable;\nstatic XGL_BASE_LAYER_OBJECT *pCurObj;\n\nstatic LOADER_PLATFORM_THREAD_ONCE_DECLARATION(tabOnce);'
Tobin Ehlis12076fc2014-10-22 09:06:33 -0600999
1000 def generate_body(self):
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001001 body = [self._generate_layer_initialization("Generic", True),
Tobin Ehlisa363cfa2014-11-25 16:59:27 -07001002 self._generate_dispatch_entrypoints("XGL_LAYER_EXPORT", "Generic"),
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001003 self._generate_layer_gpa_function("Generic")]
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001004
1005 return "\n\n".join(body)
1006
1007class ApiDumpSubcommand(Subcommand):
1008 def generate_header(self):
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001009 header_txt = []
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001010 header_txt.append('#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>')
1011 header_txt.append('#include "loader_platform.h"')
1012 header_txt.append('#include "xglLayer.h"\n#include "xgl_struct_string_helper.h"\n')
Ian Elliott655cad72015-02-12 17:08:34 -07001013 header_txt.append('// The following is #included again to catch certain OS-specific functions being used:')
1014 header_txt.append('#include "loader_platform.h"')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001015 header_txt.append('static XGL_LAYER_DISPATCH_TABLE nextTable;')
1016 header_txt.append('static XGL_BASE_LAYER_OBJECT *pCurObj;\n')
1017 header_txt.append('static LOADER_PLATFORM_THREAD_ONCE_DECLARATION(tabOnce);')
1018 header_txt.append('static int printLockInitialized = 0;')
1019 header_txt.append('static loader_platform_thread_mutex printLock;\n')
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001020 header_txt.append('#define MAX_TID 513')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001021 header_txt.append('static loader_platform_thread_id tidMapping[MAX_TID] = {0};')
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001022 header_txt.append('static uint32_t maxTID = 0;')
1023 header_txt.append('// Map actual TID to an index value and return that index')
1024 header_txt.append('// This keeps TIDs in range from 0-MAX_TID and simplifies compares between runs')
1025 header_txt.append('static uint32_t getTIDIndex() {')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001026 header_txt.append(' loader_platform_thread_id tid = loader_platform_get_thread_id();')
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001027 header_txt.append(' for (uint32_t i = 0; i < maxTID; i++) {')
1028 header_txt.append(' if (tid == tidMapping[i])')
1029 header_txt.append(' return i;')
1030 header_txt.append(' }')
1031 header_txt.append(" // Don't yet have mapping, set it and return newly set index")
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001032 header_txt.append(' uint32_t retVal = (uint32_t) maxTID;')
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001033 header_txt.append(' tidMapping[maxTID++] = tid;')
1034 header_txt.append(' assert(maxTID < MAX_TID);')
1035 header_txt.append(' return retVal;')
1036 header_txt.append('}')
1037 return "\n".join(header_txt)
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001038
1039 def generate_body(self):
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001040 body = [self._generate_layer_initialization_with_lock("APIDump"),
Tobin Ehlisa363cfa2014-11-25 16:59:27 -07001041 self._generate_dispatch_entrypoints("XGL_LAYER_EXPORT", "APIDump"),
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001042 self._generate_layer_gpa_function("APIDump")]
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001043
1044 return "\n\n".join(body)
1045
Tobin Ehlis99f88672015-01-10 12:42:41 -07001046class ApiDumpCppSubcommand(Subcommand):
1047 def generate_header(self):
1048 header_txt = []
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001049 header_txt.append('#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>')
1050 header_txt.append('#include "loader_platform.h"')
1051 header_txt.append('#include "xglLayer.h"\n#include "xgl_struct_string_helper_cpp.h"\n')
Ian Elliott655cad72015-02-12 17:08:34 -07001052 header_txt.append('// The following is #included again to catch certain OS-specific functions being used:')
1053 header_txt.append('#include "loader_platform.h"')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001054 header_txt.append('static XGL_LAYER_DISPATCH_TABLE nextTable;')
1055 header_txt.append('static XGL_BASE_LAYER_OBJECT *pCurObj;\n')
1056 header_txt.append('static LOADER_PLATFORM_THREAD_ONCE_DECLARATION(tabOnce);')
1057 header_txt.append('static int printLockInitialized = 0;')
1058 header_txt.append('static loader_platform_thread_mutex printLock;\n')
Tobin Ehlis99f88672015-01-10 12:42:41 -07001059 header_txt.append('#define MAX_TID 513')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001060 header_txt.append('static loader_platform_thread_id tidMapping[MAX_TID] = {0};')
Tobin Ehlis99f88672015-01-10 12:42:41 -07001061 header_txt.append('static uint32_t maxTID = 0;')
1062 header_txt.append('// Map actual TID to an index value and return that index')
1063 header_txt.append('// This keeps TIDs in range from 0-MAX_TID and simplifies compares between runs')
1064 header_txt.append('static uint32_t getTIDIndex() {')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001065 header_txt.append(' loader_platform_thread_id tid = loader_platform_get_thread_id();')
Tobin Ehlis99f88672015-01-10 12:42:41 -07001066 header_txt.append(' for (uint32_t i = 0; i < maxTID; i++) {')
1067 header_txt.append(' if (tid == tidMapping[i])')
1068 header_txt.append(' return i;')
1069 header_txt.append(' }')
1070 header_txt.append(" // Don't yet have mapping, set it and return newly set index")
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001071 header_txt.append(' uint32_t retVal = (uint32_t) maxTID;')
Tobin Ehlis99f88672015-01-10 12:42:41 -07001072 header_txt.append(' tidMapping[maxTID++] = tid;')
1073 header_txt.append(' assert(maxTID < MAX_TID);')
1074 header_txt.append(' return retVal;')
1075 header_txt.append('}')
1076 return "\n".join(header_txt)
1077
1078 def generate_body(self):
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001079 body = [self._generate_layer_initialization_with_lock("APIDumpCpp"),
Tobin Ehlis99f88672015-01-10 12:42:41 -07001080 self._generate_dispatch_entrypoints("XGL_LAYER_EXPORT", "APIDumpCpp"),
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001081 self._generate_layer_gpa_function("APIDumpCpp")]
Tobin Ehlis99f88672015-01-10 12:42:41 -07001082
1083 return "\n\n".join(body)
1084
Tobin Ehlisea3d21b2014-11-12 13:11:15 -07001085class ApiDumpFileSubcommand(Subcommand):
1086 def generate_header(self):
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001087 header_txt = []
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001088 header_txt.append('#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>')
1089 header_txt.append('#include "loader_platform.h"')
1090 header_txt.append('#include "xglLayer.h"\n#include "xgl_struct_string_helper.h"\n')
Ian Elliott655cad72015-02-12 17:08:34 -07001091 header_txt.append('// The following is #included again to catch certain OS-specific functions being used:')
1092 header_txt.append('#include "loader_platform.h"')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001093 header_txt.append('static XGL_LAYER_DISPATCH_TABLE nextTable;')
1094 header_txt.append('static XGL_BASE_LAYER_OBJECT *pCurObj;\n')
1095 header_txt.append('static LOADER_PLATFORM_THREAD_ONCE_DECLARATION(tabOnce);')
1096 header_txt.append('static int printLockInitialized = 0;')
1097 header_txt.append('static loader_platform_thread_mutex printLock;\n')
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001098 header_txt.append('#define MAX_TID 513')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001099 header_txt.append('static loader_platform_thread_id tidMapping[MAX_TID] = {0};')
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001100 header_txt.append('static uint32_t maxTID = 0;')
1101 header_txt.append('// Map actual TID to an index value and return that index')
1102 header_txt.append('// This keeps TIDs in range from 0-MAX_TID and simplifies compares between runs')
1103 header_txt.append('static uint32_t getTIDIndex() {')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001104 header_txt.append(' loader_platform_thread_id tid = loader_platform_get_thread_id();')
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001105 header_txt.append(' for (uint32_t i = 0; i < maxTID; i++) {')
1106 header_txt.append(' if (tid == tidMapping[i])')
1107 header_txt.append(' return i;')
1108 header_txt.append(' }')
1109 header_txt.append(" // Don't yet have mapping, set it and return newly set index")
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001110 header_txt.append(' uint32_t retVal = (uint32_t) maxTID;')
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001111 header_txt.append(' tidMapping[maxTID++] = tid;')
1112 header_txt.append(' assert(maxTID < MAX_TID);')
1113 header_txt.append(' return retVal;')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001114 header_txt.append('}\n')
1115 header_txt.append('static FILE* pOutFile;\nstatic char* outFileName = "xgl_apidump.txt";')
Tobin Ehlisd009bae2014-11-24 15:46:55 -07001116 return "\n".join(header_txt)
Tobin Ehlisea3d21b2014-11-12 13:11:15 -07001117
1118 def generate_body(self):
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001119 body = [self._generate_layer_initialization_with_lock("APIDumpFile"),
Tobin Ehlisa363cfa2014-11-25 16:59:27 -07001120 self._generate_dispatch_entrypoints("XGL_LAYER_EXPORT", "APIDumpFile"),
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001121 self._generate_layer_gpa_function("APIDumpFile")]
Tobin Ehlisea3d21b2014-11-12 13:11:15 -07001122
1123 return "\n\n".join(body)
1124
Tobin Ehlisd49efcb2014-11-25 17:43:26 -07001125class ApiDumpNoAddrSubcommand(Subcommand):
1126 def generate_header(self):
1127 header_txt = []
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001128 header_txt.append('#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>')
1129 header_txt.append('#include "loader_platform.h"')
1130 header_txt.append('#include "xglLayer.h"\n#include "xgl_struct_string_helper_no_addr.h"\n')
Ian Elliott655cad72015-02-12 17:08:34 -07001131 header_txt.append('// The following is #included again to catch certain OS-specific functions being used:')
1132 header_txt.append('#include "loader_platform.h"')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001133 header_txt.append('static XGL_LAYER_DISPATCH_TABLE nextTable;')
1134 header_txt.append('static XGL_BASE_LAYER_OBJECT *pCurObj;\n')
1135 header_txt.append('static LOADER_PLATFORM_THREAD_ONCE_DECLARATION(tabOnce);')
1136 header_txt.append('static int printLockInitialized = 0;')
1137 header_txt.append('static loader_platform_thread_mutex printLock;\n')
Tobin Ehlisd49efcb2014-11-25 17:43:26 -07001138 header_txt.append('#define MAX_TID 513')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001139 header_txt.append('static loader_platform_thread_id tidMapping[MAX_TID] = {0};')
Tobin Ehlisd49efcb2014-11-25 17:43:26 -07001140 header_txt.append('static uint32_t maxTID = 0;')
1141 header_txt.append('// Map actual TID to an index value and return that index')
1142 header_txt.append('// This keeps TIDs in range from 0-MAX_TID and simplifies compares between runs')
1143 header_txt.append('static uint32_t getTIDIndex() {')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001144 header_txt.append(' loader_platform_thread_id tid = loader_platform_get_thread_id();')
Tobin Ehlisd49efcb2014-11-25 17:43:26 -07001145 header_txt.append(' for (uint32_t i = 0; i < maxTID; i++) {')
1146 header_txt.append(' if (tid == tidMapping[i])')
1147 header_txt.append(' return i;')
1148 header_txt.append(' }')
1149 header_txt.append(" // Don't yet have mapping, set it and return newly set index")
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001150 header_txt.append(' uint32_t retVal = (uint32_t) maxTID;')
Tobin Ehlisd49efcb2014-11-25 17:43:26 -07001151 header_txt.append(' tidMapping[maxTID++] = tid;')
1152 header_txt.append(' assert(maxTID < MAX_TID);')
1153 header_txt.append(' return retVal;')
1154 header_txt.append('}')
1155 return "\n".join(header_txt)
1156
1157 def generate_body(self):
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001158 body = [self._generate_layer_initialization_with_lock("APIDumpNoAddr"),
Tobin Ehlisd49efcb2014-11-25 17:43:26 -07001159 self._generate_dispatch_entrypoints("XGL_LAYER_EXPORT", "APIDump", True),
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001160 self._generate_layer_gpa_function("APIDumpNoAddr")]
Tobin Ehlisd49efcb2014-11-25 17:43:26 -07001161
1162 return "\n\n".join(body)
1163
Tobin Ehlis99f88672015-01-10 12:42:41 -07001164class ApiDumpNoAddrCppSubcommand(Subcommand):
1165 def generate_header(self):
1166 header_txt = []
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001167 header_txt.append('#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>')
1168 header_txt.append('#include "loader_platform.h"')
1169 header_txt.append('#include "xglLayer.h"\n#include "xgl_struct_string_helper_no_addr_cpp.h"\n')
Ian Elliott655cad72015-02-12 17:08:34 -07001170 header_txt.append('// The following is #included again to catch certain OS-specific functions being used:')
1171 header_txt.append('#include "loader_platform.h"')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001172 header_txt.append('static XGL_LAYER_DISPATCH_TABLE nextTable;')
1173 header_txt.append('static XGL_BASE_LAYER_OBJECT *pCurObj;\n')
1174 header_txt.append('static LOADER_PLATFORM_THREAD_ONCE_DECLARATION(tabOnce);')
1175 header_txt.append('static int printLockInitialized = 0;')
1176 header_txt.append('static loader_platform_thread_mutex printLock;\n')
Tobin Ehlis99f88672015-01-10 12:42:41 -07001177 header_txt.append('#define MAX_TID 513')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001178 header_txt.append('static loader_platform_thread_id tidMapping[MAX_TID] = {0};')
Tobin Ehlis99f88672015-01-10 12:42:41 -07001179 header_txt.append('static uint32_t maxTID = 0;')
1180 header_txt.append('// Map actual TID to an index value and return that index')
1181 header_txt.append('// This keeps TIDs in range from 0-MAX_TID and simplifies compares between runs')
1182 header_txt.append('static uint32_t getTIDIndex() {')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001183 header_txt.append(' loader_platform_thread_id tid = loader_platform_get_thread_id();')
Tobin Ehlis99f88672015-01-10 12:42:41 -07001184 header_txt.append(' for (uint32_t i = 0; i < maxTID; i++) {')
1185 header_txt.append(' if (tid == tidMapping[i])')
1186 header_txt.append(' return i;')
1187 header_txt.append(' }')
1188 header_txt.append(" // Don't yet have mapping, set it and return newly set index")
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001189 header_txt.append(' uint32_t retVal = (uint32_t) maxTID;')
Tobin Ehlis99f88672015-01-10 12:42:41 -07001190 header_txt.append(' tidMapping[maxTID++] = tid;')
1191 header_txt.append(' assert(maxTID < MAX_TID);')
1192 header_txt.append(' return retVal;')
1193 header_txt.append('}')
1194 return "\n".join(header_txt)
1195
1196 def generate_body(self):
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001197 body = [self._generate_layer_initialization_with_lock("APIDumpNoAddrCpp"),
Tobin Ehlis99f88672015-01-10 12:42:41 -07001198 self._generate_dispatch_entrypoints("XGL_LAYER_EXPORT", "APIDumpCpp", True),
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001199 self._generate_layer_gpa_function("APIDumpNoAddrCpp")]
Tobin Ehlis99f88672015-01-10 12:42:41 -07001200
1201 return "\n\n".join(body)
1202
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001203class ObjectTrackerSubcommand(Subcommand):
1204 def generate_header(self):
1205 header_txt = []
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001206 header_txt.append('#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include "loader_platform.h"')
Tobin Ehlisca915872014-11-18 11:28:33 -07001207 header_txt.append('#include "object_track.h"\n\nstatic XGL_LAYER_DISPATCH_TABLE nextTable;\nstatic XGL_BASE_LAYER_OBJECT *pCurObj;')
Ian Elliott655cad72015-02-12 17:08:34 -07001208 header_txt.append('// The following is #included again to catch certain OS-specific functions being used:')
1209 header_txt.append('#include "loader_platform.h"')
Jon Ashburn9a7f9a22015-02-17 11:03:12 -07001210 header_txt.append('#include "layers_config.h"')
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001211 header_txt.append('#include "layers_msg.h"')
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001212 header_txt.append('static LOADER_PLATFORM_THREAD_ONCE_DECLARATION(tabOnce);')
1213 header_txt.append('static long long unsigned int object_track_index = 0;')
Tobin Ehlis36f1b462015-02-23 14:09:16 -07001214 header_txt.append('static int objLockInitialized = 0;')
1215 header_txt.append('static loader_platform_thread_mutex objLock;')
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001216 header_txt.append('')
Tobin Ehlisca915872014-11-18 11:28:33 -07001217 header_txt.append('// We maintain a "Global" list which links every object and a')
1218 header_txt.append('// per-Object list which just links objects of a given type')
1219 header_txt.append('// The object node has both pointers so the actual nodes are shared between the two lists')
1220 header_txt.append('typedef struct _objNode {')
1221 header_txt.append(' OBJTRACK_NODE obj;')
1222 header_txt.append(' struct _objNode *pNextObj;')
1223 header_txt.append(' struct _objNode *pNextGlobal;')
1224 header_txt.append('} objNode;')
1225 header_txt.append('static objNode *pObjectHead[XGL_NUM_OBJECT_TYPE] = {0};')
1226 header_txt.append('static objNode *pGlobalHead = NULL;')
1227 header_txt.append('static uint64_t numObjs[XGL_NUM_OBJECT_TYPE] = {0};')
1228 header_txt.append('static uint64_t numTotalObjs = 0;')
Mark Lobodzinskiaae93e52015-02-09 10:20:53 -06001229 header_txt.append('static uint32_t maxMemRefsPerSubmission = 0;')
Tobin Ehlisca915872014-11-18 11:28:33 -07001230 header_txt.append('// Debug function to print global list and each individual object list')
1231 header_txt.append('static void ll_print_lists()')
1232 header_txt.append('{')
1233 header_txt.append(' objNode* pTrav = pGlobalHead;')
1234 header_txt.append(' printf("=====GLOBAL OBJECT LIST (%lu total objs):\\n", numTotalObjs);')
1235 header_txt.append(' while (pTrav) {')
1236 header_txt.append(' printf(" ObjNode (%p) w/ %s obj %p has pNextGlobal %p\\n", (void*)pTrav, string_XGL_OBJECT_TYPE(pTrav->obj.objType), pTrav->obj.pObj, (void*)pTrav->pNextGlobal);')
1237 header_txt.append(' pTrav = pTrav->pNextGlobal;')
1238 header_txt.append(' }')
1239 header_txt.append(' for (uint32_t i = 0; i < XGL_NUM_OBJECT_TYPE; i++) {')
1240 header_txt.append(' pTrav = pObjectHead[i];')
1241 header_txt.append(' if (pTrav) {')
1242 header_txt.append(' printf("=====%s OBJECT LIST (%lu objs):\\n", string_XGL_OBJECT_TYPE(pTrav->obj.objType), numObjs[i]);')
1243 header_txt.append(' while (pTrav) {')
1244 header_txt.append(' printf(" ObjNode (%p) w/ %s obj %p has pNextObj %p\\n", (void*)pTrav, string_XGL_OBJECT_TYPE(pTrav->obj.objType), pTrav->obj.pObj, (void*)pTrav->pNextObj);')
1245 header_txt.append(' pTrav = pTrav->pNextObj;')
1246 header_txt.append(' }')
1247 header_txt.append(' }')
1248 header_txt.append(' }')
1249 header_txt.append('}')
Mark Lobodzinski17caf572015-01-29 08:55:56 -06001250 header_txt.append('static void ll_insert_obj(void* pObj, XGL_OBJECT_TYPE objType) {')
Tobin Ehlisca915872014-11-18 11:28:33 -07001251 header_txt.append(' char str[1024];')
1252 header_txt.append(' sprintf(str, "OBJ[%llu] : CREATE %s object %p", object_track_index++, string_XGL_OBJECT_TYPE(objType), (void*)pObj);')
1253 header_txt.append(' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_NONE, "OBJTRACK", str);')
1254 header_txt.append(' objNode* pNewObjNode = (objNode*)malloc(sizeof(objNode));')
1255 header_txt.append(' pNewObjNode->obj.pObj = pObj;')
1256 header_txt.append(' pNewObjNode->obj.objType = objType;')
Mark Lobodzinski40370872015-02-03 10:06:31 -06001257 header_txt.append(' pNewObjNode->obj.status = OBJSTATUS_NONE;')
Tobin Ehlisca915872014-11-18 11:28:33 -07001258 header_txt.append(' pNewObjNode->obj.numUses = 0;')
1259 header_txt.append(' // insert at front of global list')
1260 header_txt.append(' pNewObjNode->pNextGlobal = pGlobalHead;')
1261 header_txt.append(' pGlobalHead = pNewObjNode;')
1262 header_txt.append(' // insert at front of object list')
1263 header_txt.append(' pNewObjNode->pNextObj = pObjectHead[objType];')
1264 header_txt.append(' pObjectHead[objType] = pNewObjNode;')
1265 header_txt.append(' // increment obj counts')
1266 header_txt.append(' numObjs[objType]++;')
1267 header_txt.append(' numTotalObjs++;')
1268 header_txt.append(' //sprintf(str, "OBJ_STAT : %lu total objs & %lu %s objs.", numTotalObjs, numObjs[objType], string_XGL_OBJECT_TYPE(objType));')
Chia-I Wu85763e52014-12-16 11:02:06 +08001269 header_txt.append(' if (0) ll_print_lists();')
Tobin Ehlisca915872014-11-18 11:28:33 -07001270 header_txt.append('}')
1271 header_txt.append('// Traverse global list and return type for given object')
1272 header_txt.append('static XGL_OBJECT_TYPE ll_get_obj_type(XGL_OBJECT object) {')
1273 header_txt.append(' objNode *pTrav = pGlobalHead;')
1274 header_txt.append(' while (pTrav) {')
1275 header_txt.append(' if (pTrav->obj.pObj == object)')
1276 header_txt.append(' return pTrav->obj.objType;')
1277 header_txt.append(' pTrav = pTrav->pNextGlobal;')
1278 header_txt.append(' }')
1279 header_txt.append(' char str[1024];')
1280 header_txt.append(' sprintf(str, "Attempting look-up on obj %p but it is NOT in the global list!", (void*)object);')
1281 header_txt.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, object, 0, OBJTRACK_MISSING_OBJECT, "OBJTRACK", str);')
1282 header_txt.append(' return XGL_OBJECT_TYPE_UNKNOWN;')
1283 header_txt.append('}')
Chia-I Wu85763e52014-12-16 11:02:06 +08001284 header_txt.append('#if 0')
Mark Lobodzinski17caf572015-01-29 08:55:56 -06001285 header_txt.append('static uint64_t ll_get_obj_uses(void* pObj, XGL_OBJECT_TYPE objType) {')
Tobin Ehlisca915872014-11-18 11:28:33 -07001286 header_txt.append(' objNode *pTrav = pObjectHead[objType];')
1287 header_txt.append(' while (pTrav) {')
1288 header_txt.append(' if (pTrav->obj.pObj == pObj) {')
1289 header_txt.append(' return pTrav->obj.numUses;')
1290 header_txt.append(' }')
1291 header_txt.append(' pTrav = pTrav->pNextObj;')
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001292 header_txt.append(' }')
1293 header_txt.append(' return 0;')
1294 header_txt.append('}')
Chia-I Wu85763e52014-12-16 11:02:06 +08001295 header_txt.append('#endif')
Mark Lobodzinski17caf572015-01-29 08:55:56 -06001296 header_txt.append('static void ll_increment_use_count(void* pObj, XGL_OBJECT_TYPE objType) {')
Tobin Ehlisca915872014-11-18 11:28:33 -07001297 header_txt.append(' objNode *pTrav = pObjectHead[objType];')
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001298 header_txt.append(' while (pTrav) {')
Tobin Ehlisca915872014-11-18 11:28:33 -07001299 header_txt.append(' if (pTrav->obj.pObj == pObj) {')
1300 header_txt.append(' pTrav->obj.numUses++;')
1301 header_txt.append(' char str[1024];')
1302 header_txt.append(' sprintf(str, "OBJ[%llu] : USING %s object %p (%lu total uses)", object_track_index++, string_XGL_OBJECT_TYPE(objType), (void*)pObj, pTrav->obj.numUses);')
1303 header_txt.append(' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_NONE, "OBJTRACK", str);')
1304 header_txt.append(' return;')
1305 header_txt.append(' }')
1306 header_txt.append(' pTrav = pTrav->pNextObj;')
1307 header_txt.append(' }')
1308 header_txt.append(' // If we do not find obj, insert it and then increment count')
1309 header_txt.append(' char str[1024];')
1310 header_txt.append(' sprintf(str, "Unable to increment count for obj %p, will add to list as %s type and increment count", pObj, string_XGL_OBJECT_TYPE(objType));')
1311 header_txt.append(' layerCbMsg(XGL_DBG_MSG_WARNING, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_UNKNOWN_OBJECT, "OBJTRACK", str);')
1312 header_txt.append('')
1313 header_txt.append(' ll_insert_obj(pObj, objType);')
1314 header_txt.append(' ll_increment_use_count(pObj, objType);')
1315 header_txt.append('}')
1316 header_txt.append('// We usually do not know Obj type when we destroy it so have to fetch')
1317 header_txt.append('// Type from global list w/ ll_destroy_obj()')
1318 header_txt.append('// and then do the full removal from both lists w/ ll_remove_obj_type()')
Mark Lobodzinski17caf572015-01-29 08:55:56 -06001319 header_txt.append('static void ll_remove_obj_type(void* pObj, XGL_OBJECT_TYPE objType) {')
Tobin Ehlisca915872014-11-18 11:28:33 -07001320 header_txt.append(' objNode *pTrav = pObjectHead[objType];')
1321 header_txt.append(' objNode *pPrev = pObjectHead[objType];')
1322 header_txt.append(' while (pTrav) {')
1323 header_txt.append(' if (pTrav->obj.pObj == pObj) {')
1324 header_txt.append(' pPrev->pNextObj = pTrav->pNextObj;')
1325 header_txt.append(' // update HEAD of Obj list as needed')
1326 header_txt.append(' if (pObjectHead[objType] == pTrav)')
1327 header_txt.append(' pObjectHead[objType] = pTrav->pNextObj;')
1328 header_txt.append(' assert(numObjs[objType] > 0);')
1329 header_txt.append(' numObjs[objType]--;')
1330 header_txt.append(' char str[1024];')
1331 header_txt.append(' sprintf(str, "OBJ[%llu] : DESTROY %s object %p", object_track_index++, string_XGL_OBJECT_TYPE(objType), (void*)pObj);')
1332 header_txt.append(' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_NONE, "OBJTRACK", str);')
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001333 header_txt.append(' return;')
1334 header_txt.append(' }')
1335 header_txt.append(' pPrev = pTrav;')
Tobin Ehlisca915872014-11-18 11:28:33 -07001336 header_txt.append(' pTrav = pTrav->pNextObj;')
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001337 header_txt.append(' }')
Tobin Ehlisca915872014-11-18 11:28:33 -07001338 header_txt.append(' char str[1024];')
1339 header_txt.append(' sprintf(str, "OBJ INTERNAL ERROR : Obj %p was in global list but not in %s list", pObj, string_XGL_OBJECT_TYPE(objType));')
1340 header_txt.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_INTERNAL_ERROR, "OBJTRACK", str);')
1341 header_txt.append('}')
1342 header_txt.append('// Parse global list to find obj type, then remove obj from obj type list, finally')
1343 header_txt.append('// remove obj from global list')
Mark Lobodzinski17caf572015-01-29 08:55:56 -06001344 header_txt.append('static void ll_destroy_obj(void* pObj) {')
Tobin Ehlisca915872014-11-18 11:28:33 -07001345 header_txt.append(' objNode *pTrav = pGlobalHead;')
1346 header_txt.append(' objNode *pPrev = pGlobalHead;')
1347 header_txt.append(' while (pTrav) {')
1348 header_txt.append(' if (pTrav->obj.pObj == pObj) {')
1349 header_txt.append(' ll_remove_obj_type(pObj, pTrav->obj.objType);')
1350 header_txt.append(' pPrev->pNextGlobal = pTrav->pNextGlobal;')
1351 header_txt.append(' // update HEAD of global list if needed')
1352 header_txt.append(' if (pGlobalHead == pTrav)')
1353 header_txt.append(' pGlobalHead = pTrav->pNextGlobal;')
Tobin Ehlisca915872014-11-18 11:28:33 -07001354 header_txt.append(' assert(numTotalObjs > 0);')
1355 header_txt.append(' numTotalObjs--;')
1356 header_txt.append(' char str[1024];')
Courtney Goeltzenleuchter9d9da102015-03-26 16:16:16 -06001357 header_txt.append(' sprintf(str, "OBJ_STAT Removed %s obj %p that was used %lu times (%lu total objs remain & %lu %s objs).", string_XGL_OBJECT_TYPE(pTrav->obj.objType), pTrav->obj.pObj, pTrav->obj.numUses, numTotalObjs, numObjs[pTrav->obj.objType], string_XGL_OBJECT_TYPE(pTrav->obj.objType));')
Tobin Ehlisca915872014-11-18 11:28:33 -07001358 header_txt.append(' layerCbMsg(XGL_DBG_MSG_UNKNOWN, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_NONE, "OBJTRACK", str);')
Tobin Ehlis36f1b462015-02-23 14:09:16 -07001359 header_txt.append(' free(pTrav);')
Tobin Ehlisca915872014-11-18 11:28:33 -07001360 header_txt.append(' return;')
1361 header_txt.append(' }')
1362 header_txt.append(' pPrev = pTrav;')
1363 header_txt.append(' pTrav = pTrav->pNextGlobal;')
1364 header_txt.append(' }')
1365 header_txt.append(' char str[1024];')
1366 header_txt.append(' sprintf(str, "Unable to remove obj %p. Was it created? Has it already been destroyed?", pObj);')
1367 header_txt.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_DESTROY_OBJECT_FAILED, "OBJTRACK", str);')
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001368 header_txt.append('}')
Tobin Ehlis91ce77e2015-01-16 08:56:30 -07001369 header_txt.append('// Set selected flag state for an object node')
1370 header_txt.append('static void set_status(void* pObj, XGL_OBJECT_TYPE objType, OBJECT_STATUS status_flag) {')
Mark Lobodzinski709e16d2015-02-09 10:16:20 -06001371 header_txt.append(' if (pObj != NULL) {')
1372 header_txt.append(' objNode *pTrav = pObjectHead[objType];')
1373 header_txt.append(' while (pTrav) {')
1374 header_txt.append(' if (pTrav->obj.pObj == pObj) {')
1375 header_txt.append(' pTrav->obj.status |= status_flag;')
1376 header_txt.append(' return;')
1377 header_txt.append(' }')
1378 header_txt.append(' pTrav = pTrav->pNextObj;')
Tobin Ehlis91ce77e2015-01-16 08:56:30 -07001379 header_txt.append(' }')
Mark Lobodzinski709e16d2015-02-09 10:16:20 -06001380 header_txt.append(' // If we do not find it print an error')
1381 header_txt.append(' char str[1024];')
1382 header_txt.append(' sprintf(str, "Unable to set status for non-existent object %p of %s type", pObj, string_XGL_OBJECT_TYPE(objType));')
1383 header_txt.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_UNKNOWN_OBJECT, "OBJTRACK", str);')
1384 header_txt.append(' }');
Tobin Ehlis91ce77e2015-01-16 08:56:30 -07001385 header_txt.append('}')
1386 header_txt.append('')
Mark Lobodzinski40370872015-02-03 10:06:31 -06001387 header_txt.append('// Track selected state for an object node')
1388 header_txt.append('static void track_object_status(void* pObj, XGL_STATE_BIND_POINT stateBindPoint) {')
1389 header_txt.append(' objNode *pTrav = pObjectHead[XGL_OBJECT_TYPE_CMD_BUFFER];')
1390 header_txt.append('')
1391 header_txt.append(' while (pTrav) {')
1392 header_txt.append(' if (pTrav->obj.pObj == pObj) {')
1393 header_txt.append(' if (stateBindPoint == XGL_STATE_BIND_VIEWPORT) {')
1394 header_txt.append(' pTrav->obj.status |= OBJSTATUS_VIEWPORT_BOUND;')
1395 header_txt.append(' } else if (stateBindPoint == XGL_STATE_BIND_RASTER) {')
1396 header_txt.append(' pTrav->obj.status |= OBJSTATUS_RASTER_BOUND;')
1397 header_txt.append(' } else if (stateBindPoint == XGL_STATE_BIND_COLOR_BLEND) {')
1398 header_txt.append(' pTrav->obj.status |= OBJSTATUS_COLOR_BLEND_BOUND;')
1399 header_txt.append(' } else if (stateBindPoint == XGL_STATE_BIND_DEPTH_STENCIL) {')
1400 header_txt.append(' pTrav->obj.status |= OBJSTATUS_DEPTH_STENCIL_BOUND;')
1401 header_txt.append(' }')
1402 header_txt.append(' return;')
1403 header_txt.append(' }')
1404 header_txt.append(' pTrav = pTrav->pNextObj;')
1405 header_txt.append(' }')
1406 header_txt.append(' // If we do not find it print an error')
1407 header_txt.append(' char str[1024];')
1408 header_txt.append(' sprintf(str, "Unable to track status for non-existent Command Buffer object %p", pObj);')
1409 header_txt.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_UNKNOWN_OBJECT, "OBJTRACK", str);')
1410 header_txt.append('}')
1411 header_txt.append('')
1412 header_txt.append('// Reset selected flag state for an object node')
1413 header_txt.append('static void reset_status(void* pObj, XGL_OBJECT_TYPE objType, OBJECT_STATUS status_flag) {')
Tobin Ehlis91ce77e2015-01-16 08:56:30 -07001414 header_txt.append(' objNode *pTrav = pObjectHead[objType];')
1415 header_txt.append(' while (pTrav) {')
1416 header_txt.append(' if (pTrav->obj.pObj == pObj) {')
Mark Lobodzinski40370872015-02-03 10:06:31 -06001417 header_txt.append(' pTrav->obj.status &= ~status_flag;')
1418 header_txt.append(' return;')
1419 header_txt.append(' }')
1420 header_txt.append(' pTrav = pTrav->pNextObj;')
1421 header_txt.append(' }')
1422 header_txt.append(' // If we do not find it print an error')
1423 header_txt.append(' char str[1024];')
1424 header_txt.append(' sprintf(str, "Unable to reset status for non-existent object %p of %s type", pObj, string_XGL_OBJECT_TYPE(objType));')
1425 header_txt.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_UNKNOWN_OBJECT, "OBJTRACK", str);')
1426 header_txt.append('}')
1427 header_txt.append('')
1428 header_txt.append('// Check object status for selected flag state')
Mark Lobodzinski78a21972015-03-05 12:39:33 -06001429 header_txt.append('static bool32_t validate_status(void* pObj, XGL_OBJECT_TYPE objType, OBJECT_STATUS status_mask, OBJECT_STATUS status_flag, XGL_DBG_MSG_TYPE error_level, OBJECT_TRACK_ERROR error_code, char* fail_msg) {')
Mark Lobodzinski40370872015-02-03 10:06:31 -06001430 header_txt.append(' objNode *pTrav = pObjectHead[objType];')
1431 header_txt.append(' while (pTrav) {')
1432 header_txt.append(' if (pTrav->obj.pObj == pObj) {')
Mark Lobodzinski4988dea2015-02-03 11:52:26 -06001433 header_txt.append(' if ((pTrav->obj.status & status_mask) != status_flag) {')
Tobin Ehlis91ce77e2015-01-16 08:56:30 -07001434 header_txt.append(' char str[1024];')
1435 header_txt.append(' sprintf(str, "OBJECT VALIDATION WARNING: %s object %p: %s", string_XGL_OBJECT_TYPE(objType), (void*)pObj, fail_msg);')
Mark Lobodzinski40370872015-02-03 10:06:31 -06001436 header_txt.append(' layerCbMsg(error_level, XGL_VALIDATION_LEVEL_0, pObj, 0, error_code, "OBJTRACK", str);')
Mark Lobodzinski78a21972015-03-05 12:39:33 -06001437 header_txt.append(' return XGL_FALSE;')
Tobin Ehlis91ce77e2015-01-16 08:56:30 -07001438 header_txt.append(' }')
Mark Lobodzinski78a21972015-03-05 12:39:33 -06001439 header_txt.append(' return XGL_TRUE;')
Tobin Ehlis91ce77e2015-01-16 08:56:30 -07001440 header_txt.append(' }')
1441 header_txt.append(' pTrav = pTrav->pNextObj;')
1442 header_txt.append(' }')
Mark Lobodzinski78a21972015-03-05 12:39:33 -06001443 header_txt.append(' if (objType != XGL_OBJECT_TYPE_PRESENTABLE_IMAGE_MEMORY) {')
1444 header_txt.append(' // If we do not find it print an error')
1445 header_txt.append(' char str[1024];')
1446 header_txt.append(' sprintf(str, "Unable to obtain status for non-existent object %p of %s type", pObj, string_XGL_OBJECT_TYPE(objType));')
1447 header_txt.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, pObj, 0, OBJTRACK_UNKNOWN_OBJECT, "OBJTRACK", str);')
1448 header_txt.append(' }')
1449 header_txt.append(' return XGL_FALSE;')
Tobin Ehlis91ce77e2015-01-16 08:56:30 -07001450 header_txt.append('}')
Mark Lobodzinski40370872015-02-03 10:06:31 -06001451 header_txt.append('')
1452 header_txt.append('static void validate_draw_state_flags(void* pObj) {')
Mark Lobodzinski4988dea2015-02-03 11:52:26 -06001453 header_txt.append(' validate_status((void*)pObj, XGL_OBJECT_TYPE_CMD_BUFFER, OBJSTATUS_VIEWPORT_BOUND, OBJSTATUS_VIEWPORT_BOUND, XGL_DBG_MSG_ERROR, OBJTRACK_VIEWPORT_NOT_BOUND, "Viewport object not bound to this command buffer");')
1454 header_txt.append(' validate_status((void*)pObj, XGL_OBJECT_TYPE_CMD_BUFFER, OBJSTATUS_RASTER_BOUND, OBJSTATUS_RASTER_BOUND, XGL_DBG_MSG_ERROR, OBJTRACK_RASTER_NOT_BOUND, "Raster object not bound to this command buffer");')
1455 header_txt.append(' validate_status((void*)pObj, XGL_OBJECT_TYPE_CMD_BUFFER, OBJSTATUS_COLOR_BLEND_BOUND, OBJSTATUS_COLOR_BLEND_BOUND, XGL_DBG_MSG_UNKNOWN, OBJTRACK_COLOR_BLEND_NOT_BOUND, "Color-blend object not bound to this command buffer");')
1456 header_txt.append(' validate_status((void*)pObj, XGL_OBJECT_TYPE_CMD_BUFFER, OBJSTATUS_DEPTH_STENCIL_BOUND, OBJSTATUS_DEPTH_STENCIL_BOUND, XGL_DBG_MSG_UNKNOWN, OBJTRACK_DEPTH_STENCIL_NOT_BOUND, "Depth-stencil object not bound to this command buffer");')
1457 header_txt.append('}')
1458 header_txt.append('')
1459 header_txt.append('static void validate_memory_mapping_status(const XGL_MEMORY_REF* pMemRefs, uint32_t numRefs) {')
Ian Elliotta83a58a2015-02-04 12:15:12 -07001460 header_txt.append(' uint32_t i;')
Mark Lobodzinski4988dea2015-02-03 11:52:26 -06001461 header_txt.append(' for (i = 0; i < numRefs; i++) {')
Mark Lobodzinski78a21972015-03-05 12:39:33 -06001462 header_txt.append(' if(pMemRefs[i].mem) {')
1463 header_txt.append(' // If mem reference is in presentable image memory list, skip the check of the GPU_MEMORY list')
1464 header_txt.append(' if (!validate_status((void *)pMemRefs[i].mem, XGL_OBJECT_TYPE_PRESENTABLE_IMAGE_MEMORY, OBJSTATUS_NONE, OBJSTATUS_NONE, XGL_DBG_MSG_UNKNOWN, OBJTRACK_NONE, NULL) == XGL_TRUE)')
1465 header_txt.append(' {')
1466 header_txt.append(' validate_status((void *)pMemRefs[i].mem, XGL_OBJECT_TYPE_GPU_MEMORY, OBJSTATUS_GPU_MEM_MAPPED, OBJSTATUS_NONE, XGL_DBG_MSG_ERROR, OBJTRACK_GPU_MEM_MAPPED, "A Mapped Memory Object was referenced in a command buffer");')
1467 header_txt.append(' }')
1468 header_txt.append(' }')
Mark Lobodzinski4988dea2015-02-03 11:52:26 -06001469 header_txt.append(' }')
Mark Lobodzinski40370872015-02-03 10:06:31 -06001470 header_txt.append('}')
Mark Lobodzinskiaae93e52015-02-09 10:20:53 -06001471 header_txt.append('')
1472 header_txt.append('static void validate_mem_ref_count(uint32_t numRefs) {')
1473 header_txt.append(' if (maxMemRefsPerSubmission == 0) {')
1474 header_txt.append(' char str[1024];')
1475 header_txt.append(' sprintf(str, "xglQueueSubmit called before calling xglGetGpuInfo");')
1476 header_txt.append(' layerCbMsg(XGL_DBG_MSG_WARNING, XGL_VALIDATION_LEVEL_0, NULL, 0, OBJTRACK_GETGPUINFO_NOT_CALLED, "OBJTRACK", str);')
1477 header_txt.append(' } else {')
1478 header_txt.append(' if (numRefs > maxMemRefsPerSubmission) {')
1479 header_txt.append(' char str[1024];')
1480 header_txt.append(' sprintf(str, "xglQueueSubmit Memory reference count (%d) exceeds allowable GPU limit (%d)", numRefs, maxMemRefsPerSubmission);')
1481 header_txt.append(' layerCbMsg(XGL_DBG_MSG_ERROR, XGL_VALIDATION_LEVEL_0, NULL, 0, OBJTRACK_MEMREFCOUNT_MAX_EXCEEDED, "OBJTRACK", str);')
1482 header_txt.append(' }')
1483 header_txt.append(' }')
1484 header_txt.append('}')
1485 header_txt.append('')
1486 header_txt.append('static void setGpuInfoState(void *pData) {')
1487 header_txt.append(' maxMemRefsPerSubmission = ((XGL_PHYSICAL_GPU_PROPERTIES *)pData)->maxMemRefsPerSubmission;')
1488 header_txt.append('}')
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001489 return "\n".join(header_txt)
1490
1491 def generate_body(self):
Tobin Ehlis36f1b462015-02-23 14:09:16 -07001492 body = [self._generate_layer_initialization("ObjectTracker", True, lockname='obj'),
Tobin Ehlisa363cfa2014-11-25 16:59:27 -07001493 self._generate_dispatch_entrypoints("XGL_LAYER_EXPORT", "ObjectTracker"),
Tobin Ehlisca915872014-11-18 11:28:33 -07001494 self._generate_extensions(),
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001495 self._generate_layer_gpa_function("ObjectTracker", extensions=['objTrackGetObjectCount', 'objTrackGetObjects'])]
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001496
1497 return "\n\n".join(body)
Courtney Goeltzenleuchterb412d212014-11-18 10:40:29 -07001498
Tobin Ehlis14ff0852014-12-17 17:44:50 -07001499class ParamCheckerSubcommand(Subcommand):
1500 def generate_header(self):
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001501 return '#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include "loader_platform.h"\n#include "xglLayer.h"\n#include "layers_config.h"\n#include "xgl_enum_validate_helper.h"\n#include "xgl_struct_validate_helper.h"\n//The following is #included again to catch certain OS-specific functions being used:\n#include "loader_platform.h"\n\n#include "layers_msg.h"\n\nstatic XGL_LAYER_DISPATCH_TABLE nextTable;\nstatic XGL_BASE_LAYER_OBJECT *pCurObj;\nstatic LOADER_PLATFORM_THREAD_ONCE_DECLARATION(tabOnce);\n\n'
Tobin Ehlis14ff0852014-12-17 17:44:50 -07001502
1503 def generate_body(self):
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001504 body = [self._generate_layer_initialization("ParamChecker", True),
Tobin Ehlis14ff0852014-12-17 17:44:50 -07001505 self._generate_dispatch_entrypoints("XGL_LAYER_EXPORT", "ParamChecker"),
Jon Ashburnd6badbc2015-02-16 08:26:50 -07001506 self._generate_layer_gpa_function("ParamChecker")]
Tobin Ehlis14ff0852014-12-17 17:44:50 -07001507
1508 return "\n\n".join(body)
1509
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001510def main():
1511 subcommands = {
1512 "layer-funcs" : LayerFuncsSubcommand,
1513 "layer-dispatch" : LayerDispatchSubcommand,
Tobin Ehlisa363cfa2014-11-25 16:59:27 -07001514 "Generic" : GenericLayerSubcommand,
1515 "ApiDump" : ApiDumpSubcommand,
1516 "ApiDumpFile" : ApiDumpFileSubcommand,
Tobin Ehlisd49efcb2014-11-25 17:43:26 -07001517 "ApiDumpNoAddr" : ApiDumpNoAddrSubcommand,
Tobin Ehlis99f88672015-01-10 12:42:41 -07001518 "ApiDumpCpp" : ApiDumpCppSubcommand,
1519 "ApiDumpNoAddrCpp" : ApiDumpNoAddrCppSubcommand,
Tobin Ehlisa363cfa2014-11-25 16:59:27 -07001520 "ObjectTracker" : ObjectTrackerSubcommand,
Tobin Ehlis14ff0852014-12-17 17:44:50 -07001521 "ParamChecker" : ParamCheckerSubcommand,
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001522 }
1523
Tobin Ehlis14ff0852014-12-17 17:44:50 -07001524 if len(sys.argv) < 3 or sys.argv[1] not in subcommands or not os.path.exists(sys.argv[2]):
1525 print("Usage: %s <subcommand> <input_header> [options]" % sys.argv[0])
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001526 print
Tobin Ehlis7e65d752015-01-15 17:51:52 -07001527 print("Available subcommands are: %s" % " ".join(subcommands))
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001528 exit(1)
1529
Tobin Ehlis14ff0852014-12-17 17:44:50 -07001530 hfp = xgl_helper.HeaderFileParser(sys.argv[2])
1531 hfp.parse()
1532 xgl_helper.enum_val_dict = hfp.get_enum_val_dict()
1533 xgl_helper.enum_type_dict = hfp.get_enum_type_dict()
1534 xgl_helper.struct_dict = hfp.get_struct_dict()
1535 xgl_helper.typedef_fwd_dict = hfp.get_typedef_fwd_dict()
1536 xgl_helper.typedef_rev_dict = hfp.get_typedef_rev_dict()
1537 xgl_helper.types_dict = hfp.get_types_dict()
1538
Tobin Ehlis12076fc2014-10-22 09:06:33 -06001539 subcmd = subcommands[sys.argv[1]](sys.argv[2:])
1540 subcmd.run()
1541
1542if __name__ == "__main__":
1543 main()