glthread: don't insert _mesa_post_marshal_hook into every function
[mesa.git] / src / mapi / glapi / gen / gl_marshal.py
1
2 # Copyright (C) 2012 Intel Corporation
3 #
4 # Permission is hereby granted, free of charge, to any person obtaining a
5 # copy of this software and associated documentation files (the "Software"),
6 # to deal in the Software without restriction, including without limitation
7 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 # and/or sell copies of the Software, and to permit persons to whom the
9 # Software is furnished to do so, subject to the following conditions:
10 #
11 # The above copyright notice and this permission notice (including the next
12 # paragraph) shall be included in all copies or substantial portions of the
13 # Software.
14 #
15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 # IN THE SOFTWARE.
22
23 from __future__ import print_function
24
25 import contextlib
26 import getopt
27 import gl_XML
28 import license
29 import marshal_XML
30 import sys
31
32 header = """
33 #include "api_exec.h"
34 #include "context.h"
35 #include "dispatch.h"
36 #include "glthread.h"
37 #include "marshal.h"
38 """
39
40
41 current_indent = 0
42
43
44 def out(str):
45 if str:
46 print(' '*current_indent + str)
47 else:
48 print('')
49
50
51 @contextlib.contextmanager
52 def indent(delta = 3):
53 global current_indent
54 current_indent += delta
55 yield
56 current_indent -= delta
57
58
59 class PrintCode(gl_XML.gl_print_base):
60 def __init__(self):
61 super(PrintCode, self).__init__()
62
63 self.name = 'gl_marshal.py'
64 self.license = license.bsd_license_template % (
65 'Copyright (C) 2012 Intel Corporation', 'INTEL CORPORATION')
66
67 def printRealHeader(self):
68 print(header)
69 print('static inline int safe_mul(int a, int b)')
70 print('{')
71 print(' if (a < 0 || b < 0) return -1;')
72 print(' if (a == 0 || b == 0) return 0;')
73 print(' if (a > INT_MAX / b) return -1;')
74 print(' return a * b;')
75 print('}')
76 print()
77
78 def printRealFooter(self):
79 pass
80
81 def print_sync_call(self, func):
82 call = 'CALL_{0}(ctx->CurrentServerDispatch, ({1}))'.format(
83 func.name, func.get_called_parameter_string())
84 if func.return_type == 'void':
85 out('{0};'.format(call))
86 else:
87 out('return {0};'.format(call))
88
89 def print_sync_dispatch(self, func):
90 self.print_sync_call(func)
91
92 def print_sync_body(self, func):
93 out('/* {0}: marshalled synchronously */'.format(func.name))
94 out('static {0} GLAPIENTRY'.format(func.return_type))
95 out('_mesa_marshal_{0}({1})'.format(func.name, func.get_parameter_string()))
96 out('{')
97 with indent():
98 out('GET_CURRENT_CONTEXT(ctx);')
99 out('_mesa_glthread_finish_before(ctx, "{0}");'.format(func.name))
100 self.print_sync_call(func)
101 out('}')
102 out('')
103 out('')
104
105 def print_async_dispatch(self, func):
106 out('cmd = _mesa_glthread_allocate_command(ctx, '
107 'DISPATCH_CMD_{0}, cmd_size);'.format(func.name))
108 for p in func.fixed_params:
109 if p.count:
110 out('memcpy(cmd->{0}, {0}, {1});'.format(
111 p.name, p.size_string()))
112 else:
113 out('cmd->{0} = {0};'.format(p.name))
114 if func.variable_params:
115 out('char *variable_data = (char *) (cmd + 1);')
116 for p in func.variable_params:
117 if p.img_null_flag:
118 out('cmd->{0}_null = !{0};'.format(p.name))
119 out('if (!cmd->{0}_null) {{'.format(p.name))
120 with indent():
121 out(('memcpy(variable_data, {0}, {1});').format(
122 p.name, p.size_string(False)))
123 out('variable_data += {0};'.format(
124 p.size_string(False)))
125 out('}')
126 else:
127 out(('memcpy(variable_data, {0}, {1});').format(
128 p.name, p.size_string(False)))
129 out('variable_data += {0};'.format(
130 p.size_string(False)))
131
132 if not func.fixed_params and not func.variable_params:
133 out('(void) cmd;\n')
134
135 # Uncomment this if you want to call _mesa_glthread_finish for debugging
136 #out('_mesa_glthread_finish(ctx);')
137
138 def print_async_struct(self, func):
139 out('struct marshal_cmd_{0}'.format(func.name))
140 out('{')
141 with indent():
142 out('struct marshal_cmd_base cmd_base;')
143 for p in func.fixed_params:
144 if p.count:
145 out('{0} {1}[{2}];'.format(
146 p.get_base_type_string(), p.name, p.count))
147 else:
148 out('{0} {1};'.format(p.type_string(), p.name))
149
150 for p in func.variable_params:
151 if p.img_null_flag:
152 out('bool {0}_null; /* If set, no data follows '
153 'for "{0}" */'.format(p.name))
154
155 for p in func.variable_params:
156 if p.count_scale != 1:
157 out(('/* Next {0} bytes are '
158 '{1} {2}[{3}][{4}] */').format(
159 p.size_string(), p.get_base_type_string(),
160 p.name, p.counter, p.count_scale))
161 else:
162 out(('/* Next {0} bytes are '
163 '{1} {2}[{3}] */').format(
164 p.size_string(), p.get_base_type_string(),
165 p.name, p.counter))
166 out('};')
167
168 def print_async_unmarshal(self, func):
169 out('static inline void')
170 out(('_mesa_unmarshal_{0}(struct gl_context *ctx, '
171 'const struct marshal_cmd_{0} *cmd)').format(func.name))
172 out('{')
173 with indent():
174 for p in func.fixed_params:
175 if p.count:
176 p_decl = '{0} * {1} = cmd->{1};'.format(
177 p.get_base_type_string(), p.name)
178 else:
179 p_decl = '{0} {1} = cmd->{1};'.format(
180 p.type_string(), p.name)
181
182 if not p_decl.startswith('const '):
183 # Declare all local function variables as const, even if
184 # the original parameter is not const.
185 p_decl = 'const ' + p_decl
186
187 out(p_decl)
188
189 if func.variable_params:
190 for p in func.variable_params:
191 out('{0} * {1};'.format(
192 p.get_base_type_string(), p.name))
193 out('const char *variable_data = (const char *) (cmd + 1);')
194 for p in func.variable_params:
195 out('{0} = ({1} *) variable_data;'.format(
196 p.name, p.get_base_type_string()))
197
198 if p.img_null_flag:
199 out('if (cmd->{0}_null)'.format(p.name))
200 with indent():
201 out('{0} = NULL;'.format(p.name))
202 out('else')
203 with indent():
204 out('variable_data += {0};'.format(p.size_string(False)))
205 else:
206 out('variable_data += {0};'.format(p.size_string(False)))
207
208 self.print_sync_call(func)
209 out('}')
210
211 def validate_count_or_fallback(self, func):
212 # Check that any counts for variable-length arguments might be < 0, in
213 # which case the command alloc or the memcpy would blow up before we
214 # get to the validation in Mesa core.
215 for p in func.parameters:
216 if p.is_variable_length():
217 out('if (unlikely({0} < 0)) {{'.format(p.size_string()))
218 with indent():
219 out('goto fallback_to_sync;')
220 out('}')
221 return True
222 return False
223
224
225 def print_async_marshal(self, func):
226 need_fallback_sync = False
227 out('static void GLAPIENTRY')
228 out('_mesa_marshal_{0}({1})'.format(
229 func.name, func.get_parameter_string()))
230 out('{')
231 with indent():
232 out('GET_CURRENT_CONTEXT(ctx);')
233 struct = 'struct marshal_cmd_{0}'.format(func.name)
234 size_terms = ['sizeof({0})'.format(struct)]
235 for p in func.variable_params:
236 size = p.size_string()
237 if p.img_null_flag:
238 size = '({0} ? {1} : 0)'.format(p.name, size)
239 size_terms.append(size)
240 out('int cmd_size = {0};'.format(' + '.join(size_terms)))
241 out('{0} *cmd;'.format(struct))
242
243 out('debug_print_marshal("{0}");'.format(func.name))
244
245 need_fallback_sync = self.validate_count_or_fallback(func)
246
247 if func.marshal_fail:
248 out('if ({0}) {{'.format(func.marshal_fail))
249 with indent():
250 out('_mesa_glthread_disable(ctx, "{0}");'.format(func.name))
251 self.print_sync_dispatch(func)
252 out('return;')
253 out('}')
254
255 if len(func.variable_params) > 0:
256 with indent():
257 out('if (cmd_size <= MARSHAL_MAX_CMD_SIZE) {')
258 with indent():
259 self.print_async_dispatch(func)
260 out('return;')
261 out('}')
262 out('')
263 if need_fallback_sync:
264 out('fallback_to_sync:')
265 with indent():
266 out('_mesa_glthread_finish_before(ctx, "{0}");'.format(func.name))
267 self.print_sync_dispatch(func)
268 else:
269 with indent():
270 self.print_async_dispatch(func)
271 assert not need_fallback_sync
272 out('}')
273
274 def print_async_body(self, func):
275 out('/* {0}: marshalled asynchronously */'.format(func.name))
276 self.print_async_struct(func)
277 self.print_async_unmarshal(func)
278 self.print_async_marshal(func)
279 out('')
280 out('')
281
282 def print_unmarshal_dispatch_cmd(self, api):
283 out('const _mesa_unmarshal_func _mesa_unmarshal_dispatch[NUM_DISPATCH_CMD] = {')
284 with indent():
285 for func in api.functionIterateAll():
286 flavor = func.marshal_flavor()
287 if flavor in ('skip', 'sync'):
288 continue
289 out('[DISPATCH_CMD_{0}] = (_mesa_unmarshal_func)_mesa_unmarshal_{0},'.format(func.name))
290 out('};')
291 out('')
292 out('')
293
294 def print_create_marshal_table(self, api):
295 out('struct _glapi_table *')
296 out('_mesa_create_marshal_table(const struct gl_context *ctx)')
297 out('{')
298 with indent():
299 out('struct _glapi_table *table;')
300 out('')
301 out('table = _mesa_alloc_dispatch_table();')
302 out('if (table == NULL)')
303 with indent():
304 out('return NULL;')
305 out('')
306 for func in api.functionIterateAll():
307 if func.marshal_flavor() == 'skip':
308 continue
309 out('SET_{0}(table, _mesa_marshal_{0});'.format(func.name))
310 out('')
311 out('return table;')
312 out('}')
313 out('')
314 out('')
315
316 def printBody(self, api):
317 async_funcs = []
318 for func in api.functionIterateAll():
319 flavor = func.marshal_flavor()
320 if flavor in ('skip', 'custom'):
321 continue
322 elif flavor == 'async':
323 self.print_async_body(func)
324 async_funcs.append(func)
325 elif flavor == 'sync':
326 self.print_sync_body(func)
327 self.print_unmarshal_dispatch_cmd(api)
328 self.print_create_marshal_table(api)
329
330
331 def show_usage():
332 print('Usage: %s [-f input_file_name]' % sys.argv[0])
333 sys.exit(1)
334
335
336 if __name__ == '__main__':
337 file_name = 'gl_API.xml'
338
339 try:
340 (args, trail) = getopt.getopt(sys.argv[1:], 'm:f:')
341 except Exception:
342 show_usage()
343
344 for (arg,val) in args:
345 if arg == '-f':
346 file_name = val
347
348 printer = PrintCode()
349
350 api = gl_XML.parse_GL_API(file_name, marshal_XML.marshal_item_factory())
351 printer.Print(api)