Merge git://proxy01.pd.intel.com:9419/git/mesa/mesa into crestline
[mesa.git] / src / mesa / glapi / glX_proto_recv.py
1 #!/usr/bin/env python
2
3 # (C) Copyright IBM Corporation 2005
4 # All Rights Reserved.
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining a
7 # copy of this software and associated documentation files (the "Software"),
8 # to deal in the Software without restriction, including without limitation
9 # on the rights to use, copy, modify, merge, publish, distribute, sub
10 # license, and/or sell copies of the Software, and to permit persons to whom
11 # the Software is furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice (including the next
14 # paragraph) shall be included in all copies or substantial portions of the
15 # 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 NON-INFRINGEMENT. IN NO EVENT SHALL
20 # IBM AND/OR ITS SUPPLIERS 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 DEALINGS
23 # IN THE SOFTWARE.
24 #
25 # Authors:
26 # Ian Romanick <idr@us.ibm.com>
27
28 import gl_XML, glX_XML, glX_proto_common, license
29 import sys, getopt, string
30
31
32 class PrintGlxDispatch_h(gl_XML.gl_print_base):
33 def __init__(self):
34 gl_XML.gl_print_base.__init__(self)
35
36 self.name = "glX_proto_recv.py (from Mesa)"
37 self.license = license.bsd_license_template % ( "(C) Copyright IBM Corporation 2005", "IBM")
38
39 self.header_tag = "_INDIRECT_DISPATCH_H_"
40 return
41
42
43 def printRealHeader(self):
44 self.printVisibility( "HIDDEN", "hidden" )
45 print 'struct __GLXclientStateRec;'
46 print ''
47 return
48
49
50 def printBody(self, api):
51 for func in api.functionIterateAll():
52 if not func.ignore and not func.vectorequiv:
53 if func.glx_rop:
54 print 'extern HIDDEN void __glXDisp_%s(GLbyte * pc);' % (func.name)
55 print 'extern HIDDEN void __glXDispSwap_%s(GLbyte * pc);' % (func.name)
56 elif func.glx_sop or func.glx_vendorpriv:
57 print 'extern HIDDEN int __glXDisp_%s(struct __GLXclientStateRec *, GLbyte *);' % (func.name)
58 print 'extern HIDDEN int __glXDispSwap_%s(struct __GLXclientStateRec *, GLbyte *);' % (func.name)
59
60 if func.glx_sop and func.glx_vendorpriv:
61 n = func.glx_vendorpriv_names[0]
62 print 'extern HIDDEN int __glXDisp_%s(struct __GLXclientStateRec *, GLbyte *);' % (n)
63 print 'extern HIDDEN int __glXDispSwap_%s(struct __GLXclientStateRec *, GLbyte *);' % (n)
64
65 return
66
67
68 class PrintGlxDispatchFunctions(glX_proto_common.glx_print_proto):
69 def __init__(self, do_swap):
70 gl_XML.gl_print_base.__init__(self)
71 self.name = "glX_proto_recv.py (from Mesa)"
72 self.license = license.bsd_license_template % ( "(C) Copyright IBM Corporation 2005", "IBM")
73
74 self.real_types = [ '', '', 'uint16_t', '', 'uint32_t', '', '', '', 'uint64_t' ]
75 self.do_swap = do_swap
76 return
77
78
79 def printRealHeader(self):
80 print '#include <X11/Xmd.h>'
81 print '#include <GL/gl.h>'
82 print '#include <GL/glxproto.h>'
83
84 print '#include <inttypes.h>'
85 print '#include "indirect_size.h"'
86 print '#include "indirect_size_get.h"'
87 print '#include "indirect_dispatch.h"'
88 print '#include "glxserver.h"'
89 print '#include "glxbyteorder.h"'
90 print '#include "indirect_util.h"'
91 print '#include "singlesize.h"'
92 print '#include "glapitable.h"'
93 print '#include "glapi.h"'
94 print '#include "glthread.h"'
95 print '#include "dispatch.h"'
96 print ''
97 print '#define __GLX_PAD(x) (((x) + 3) & ~3)'
98 print ''
99 print 'typedef struct {'
100 print ' __GLX_PIXEL_3D_HDR;'
101 print '} __GLXpixel3DHeader;'
102 print ''
103 print 'extern GLboolean __glXErrorOccured( void );'
104 print 'extern void __glXClearErrorOccured( void );'
105 print ''
106 print 'static const unsigned dummy_answer[2] = {0, 0};'
107 print ''
108 return
109
110
111 def printBody(self, api):
112 if self.do_swap:
113 self.emit_swap_wrappers(api)
114
115
116 for func in api.functionIterateByOffset():
117 if not func.ignore and not func.server_handcode and not func.vectorequiv and (func.glx_rop or func.glx_sop or func.glx_vendorpriv):
118 self.printFunction(func, func.name)
119 if func.glx_sop and func.glx_vendorpriv:
120 self.printFunction(func, func.glx_vendorpriv_names[0])
121
122
123 return
124
125
126 def printFunction(self, f, name):
127 if (f.glx_sop or f.glx_vendorpriv) and (len(f.get_images()) != 0):
128 return
129
130 if not self.do_swap:
131 base = '__glXDisp'
132 else:
133 base = '__glXDispSwap'
134
135 if f.glx_rop:
136 print 'void %s_%s(GLbyte * pc)' % (base, name)
137 else:
138 print 'int %s_%s(__GLXclientState *cl, GLbyte *pc)' % (base, name)
139
140 print '{'
141
142 if f.glx_rop or f.vectorequiv:
143 self.printRenderFunction(f)
144 elif f.glx_sop or f.glx_vendorpriv:
145 if len(f.get_images()) == 0:
146 self.printSingleFunction(f, name)
147 else:
148 print "/* Missing GLX protocol for %s. */" % (name)
149
150 print '}'
151 print ''
152 return
153
154
155 def swap_name(self, bytes):
156 return 'bswap_%u_array' % (8 * bytes)
157
158
159 def emit_swap_wrappers(self, api):
160 self.type_map = {}
161 already_done = [ ]
162
163 for t in api.typeIterate():
164 te = t.get_type_expression()
165 t_size = te.get_element_size()
166
167 if t_size > 1 and t.glx_name:
168
169 t_name = "GL" + t.name
170 self.type_map[ t_name ] = t.glx_name
171
172 if t.glx_name not in already_done:
173 real_name = self.real_types[t_size]
174
175 print 'static %s' % (t_name)
176 print 'bswap_%s( const void * src )' % (t.glx_name)
177 print '{'
178 print ' union { %s dst; %s ret; } x;' % (real_name, t_name)
179 print ' x.dst = bswap_%u( *(%s *) src );' % (t_size * 8, real_name)
180 print ' return x.ret;'
181 print '}'
182 print ''
183 already_done.append( t.glx_name )
184
185 for bits in [16, 32, 64]:
186 print 'static void *'
187 print 'bswap_%u_array( uint%u_t * src, unsigned count )' % (bits, bits)
188 print '{'
189 print ' unsigned i;'
190 print ''
191 print ' for ( i = 0 ; i < count ; i++ ) {'
192 print ' uint%u_t temp = bswap_%u( src[i] );' % (bits, bits)
193 print ' src[i] = temp;'
194 print ' }'
195 print ''
196 print ' return src;'
197 print '}'
198 print ''
199
200
201 def fetch_param(self, param):
202 t = param.type_string()
203 o = param.offset
204 element_size = param.size() / param.get_element_count()
205
206 if self.do_swap and (element_size != 1):
207 if param.is_array():
208 real_name = self.real_types[ element_size ]
209
210 swap_func = self.swap_name( element_size )
211 return ' (%-8s)%s( (%s *) (pc + %2s), %s )' % (t, swap_func, real_name, o, param.count)
212 else:
213 t_name = param.get_base_type_string()
214 return ' (%-8s)bswap_%-7s( pc + %2s )' % (t, self.type_map[ t_name ], o)
215 else:
216 if param.is_array():
217 return ' (%-8s)(pc + %2u)' % (t, o)
218 else:
219 return '*(%-8s *)(pc + %2u)' % (t, o)
220
221 return None
222
223
224 def emit_function_call(self, f, retval_assign, indent):
225 list = []
226
227 for param in f.parameterIterator():
228
229 if param.is_counter or param.is_image() or param.is_output or param.name in f.count_parameter_list or len(param.count_parameter_list):
230 location = param.name
231 else:
232 location = self.fetch_param(param)
233
234 list.append( '%s %s' % (indent, location) )
235
236
237 if len( list ):
238 print '%s %sCALL_%s( GET_DISPATCH(), (' % (indent, retval_assign, f.name)
239 print string.join( list, ",\n" )
240 print '%s ) );' % (indent)
241 else:
242 print '%s %sCALL_%s( GET_DISPATCH(), () );' % (indent, retval_assign, f.name)
243 return
244
245
246 def common_func_print_just_start(self, f, indent):
247 align64 = 0
248 need_blank = 0
249
250
251 f.calculate_offsets()
252 for param in f.parameterIterateGlxSend():
253 # If any parameter has a 64-bit base type, then we
254 # have to do alignment magic for the while thing.
255
256 if param.is_64_bit():
257 align64 = 1
258
259
260 # FIXME img_null_flag is over-loaded. In addition to
261 # FIXME being used for images, it is used to signify
262 # FIXME NULL data pointers for vertex buffer object
263 # FIXME related functions. Re-name it to null_data
264 # FIXME or something similar.
265
266 if param.img_null_flag:
267 print '%s const CARD32 ptr_is_null = *(CARD32 *)(pc + %s);' % (indent, param.offset - 4)
268 cond = '(ptr_is_null != 0) ? NULL : '
269 else:
270 cond = ""
271
272
273 type_string = param.type_string()
274
275 if param.is_image():
276 offset = f.offset_of( param.name )
277
278 print '%s %s const %s = (%s) %s(pc + %s);' % (indent, type_string, param.name, type_string, cond, offset)
279
280 if param.depth:
281 print '%s __GLXpixel3DHeader * const hdr = (__GLXpixel3DHeader *)(pc);' % (indent)
282 else:
283 print '%s __GLXpixelHeader * const hdr = (__GLXpixelHeader *)(pc);' % (indent)
284
285 need_blank = 1
286 elif param.is_counter or param.name in f.count_parameter_list:
287 location = self.fetch_param(param)
288 print '%s const %s %s = %s;' % (indent, type_string, param.name, location)
289 need_blank = 1
290 elif len(param.count_parameter_list):
291 if param.size() == 1 and not self.do_swap:
292 location = self.fetch_param(param)
293 print '%s %s %s = %s%s;' % (indent, type_string, param.name, cond, location)
294 else:
295 print '%s %s %s;' % (indent, type_string, param.name)
296 need_blank = 1
297
298
299
300 if need_blank:
301 print ''
302
303 if align64:
304 print '#ifdef __GLX_ALIGN64'
305
306 if f.has_variable_size_request():
307 self.emit_packet_size_calculation(f, 4)
308 s = "cmdlen"
309 else:
310 s = str((f.command_fixed_length() + 3) & ~3)
311
312 print ' if ((unsigned long)(pc) & 7) {'
313 print ' (void) memmove(pc-4, pc, %s);' % (s)
314 print ' pc -= 4;'
315 print ' }'
316 print '#endif'
317 print ''
318
319
320 need_blank = 0
321 if self.do_swap:
322 for param in f.parameterIterateGlxSend():
323 if param.count_parameter_list:
324 o = param.offset
325 count = param.get_element_count()
326 type_size = param.size() / count
327
328 if param.counter:
329 count_name = param.counter
330 else:
331 count_name = str(count)
332
333 # This is basically an ugly special-
334 # case for glCallLists.
335
336 if type_size == 1:
337 x = []
338 x.append( [1, ['BYTE', 'UNSIGNED_BYTE', '2_BYTES', '3_BYTES', '4_BYTES']] )
339 x.append( [2, ['SHORT', 'UNSIGNED_SHORT']] )
340 x.append( [4, ['INT', 'UNSIGNED_INT', 'FLOAT']] )
341
342 print ' switch(%s) {' % (param.count_parameter_list[0])
343 for sub in x:
344 for t_name in sub[1]:
345 print ' case GL_%s:' % (t_name)
346
347 if sub[0] == 1:
348 print ' %s = (%s) (pc + %s); break;' % (param.name, param.type_string(), o)
349 else:
350 swap_func = self.swap_name(sub[0])
351 print ' %s = (%s) %s( (%s *) (pc + %s), %s ); break;' % (param.name, param.type_string(), swap_func, self.real_types[sub[0]], o, count_name)
352 print ' default:'
353 print ' return;'
354 print ' }'
355 else:
356 swap_func = self.swap_name(type_size)
357 compsize = self.size_call(f, 1)
358 print ' %s = (%s) %s( (%s *) (pc + %s), %s );' % (param.name, param.type_string(), swap_func, self.real_types[type_size], o, compsize)
359
360 need_blank = 1
361
362 else:
363 for param in f.parameterIterateGlxSend():
364 if param.count_parameter_list:
365 print '%s %s = (%s) (pc + %s);' % (indent, param.name, param.type_string(), param.offset)
366 need_blank = 1
367
368
369 if need_blank:
370 print ''
371
372
373 return
374
375
376 def printSingleFunction(self, f, name):
377 if name not in f.glx_vendorpriv_names:
378 print ' xGLXSingleReq * const req = (xGLXSingleReq *) pc;'
379 else:
380 print ' xGLXVendorPrivateReq * const req = (xGLXVendorPrivateReq *) pc;'
381
382 print ' int error;'
383
384 if self.do_swap:
385 print ' __GLXcontext * const cx = __glXForceCurrent(cl, bswap_CARD32( &req->contextTag ), &error);'
386 else:
387 print ' __GLXcontext * const cx = __glXForceCurrent(cl, req->contextTag, &error);'
388
389 print ''
390 if name not in f.glx_vendorpriv_names:
391 print ' pc += __GLX_SINGLE_HDR_SIZE;'
392 else:
393 print ' pc += __GLX_VENDPRIV_HDR_SIZE;'
394
395 print ' if ( cx != NULL ) {'
396 self.common_func_print_just_start(f, " ")
397
398
399 if f.return_type != 'void':
400 print ' %s retval;' % (f.return_type)
401 retval_string = "retval"
402 retval_assign = "retval = "
403 else:
404 retval_string = "0"
405 retval_assign = ""
406
407
408 type_size = 0
409 answer_string = "dummy_answer"
410 answer_count = "0"
411 is_array_string = "GL_FALSE"
412
413 for param in f.parameterIterateOutputs():
414 answer_type = param.get_base_type_string()
415 if answer_type == "GLvoid":
416 answer_type = "GLubyte"
417
418
419 c = param.get_element_count()
420 type_size = (param.size() / c)
421 if type_size == 1:
422 size_scale = ""
423 else:
424 size_scale = " * %u" % (type_size)
425
426
427 if param.count_parameter_list:
428 print ' const GLuint compsize = %s;' % (self.size_call(f, 1))
429 print ' %s answerBuffer[200];' % (answer_type)
430 print ' %s %s = __glXGetAnswerBuffer(cl, compsize%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, size_scale, type_size )
431 answer_string = param.name
432 answer_count = "compsize"
433
434 print ''
435 print ' if (%s == NULL) return BadAlloc;' % (param.name)
436 print ' __glXClearErrorOccured();'
437 print ''
438 elif param.counter:
439 print ' %s answerBuffer[200];' % (answer_type)
440 print ' %s %s = __glXGetAnswerBuffer(cl, %s%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, param.counter, size_scale, type_size)
441 answer_string = param.name
442 answer_count = param.counter
443 elif c >= 1:
444 print ' %s %s[%u];' % (answer_type, param.name, c)
445 answer_string = param.name
446 answer_count = "%u" % (c)
447
448 if f.reply_always_array:
449 is_array_string = "GL_TRUE"
450
451
452 self.emit_function_call(f, retval_assign, " ")
453
454
455 if f.needs_reply():
456 if self.do_swap:
457 for param in f.parameterIterateOutputs():
458 c = param.get_element_count()
459 type_size = (param.size() / c)
460
461 if type_size > 1:
462 swap_name = self.swap_name( type_size )
463 print ' (void) %s( (uint%u_t *) %s, %s );' % (swap_name, 8 * type_size, param.name, answer_count)
464
465
466 reply_func = '__glXSendReplySwap'
467 else:
468 reply_func = '__glXSendReply'
469
470 print ' %s(cl->client, %s, %s, %u, %s, %s);' % (reply_func, answer_string, answer_count, type_size, is_array_string, retval_string)
471 #elif f.note_unflushed:
472 # print ' cx->hasUnflushedCommands = GL_TRUE;'
473
474 print ' error = Success;'
475 print ' }'
476 print ''
477 print ' return error;'
478 return
479
480
481 def printRenderFunction(self, f):
482 # There are 4 distinct phases in a rendering dispatch function.
483 # In the first phase we compute the sizes and offsets of each
484 # element in the command. In the second phase we (optionally)
485 # re-align 64-bit data elements. In the third phase we
486 # (optionally) byte-swap array data. Finally, in the fourth
487 # phase we actually dispatch the function.
488
489 self.common_func_print_just_start(f, "")
490
491 images = f.get_images()
492 if len(images):
493 if self.do_swap:
494 pre = "bswap_CARD32( & "
495 post = " )"
496 else:
497 pre = ""
498 post = ""
499
500 img = images[0]
501
502 # swapBytes and lsbFirst are single byte fields, so
503 # the must NEVER be byte-swapped.
504
505 if not (img.img_type == "GL_BITMAP" and img.img_format == "GL_COLOR_INDEX"):
506 print ' CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_SWAP_BYTES, hdr->swapBytes) );'
507
508 print ' CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_LSB_FIRST, hdr->lsbFirst) );'
509
510 print ' CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_ROW_LENGTH, (GLint) %shdr->rowLength%s) );' % (pre, post)
511 if img.depth:
512 print ' CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_IMAGE_HEIGHT, (GLint) %shdr->imageHeight%s) );' % (pre, post)
513 print ' CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_SKIP_ROWS, (GLint) %shdr->skipRows%s) );' % (pre, post)
514 if img.depth:
515 print ' CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_SKIP_IMAGES, (GLint) %shdr->skipImages%s) );' % (pre, post)
516 print ' CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_SKIP_PIXELS, (GLint) %shdr->skipPixels%s) );' % (pre, post)
517 print ' CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_ALIGNMENT, (GLint) %shdr->alignment%s) );' % (pre, post)
518 print ''
519
520
521 self.emit_function_call(f, "", "")
522 return
523
524
525 if __name__ == '__main__':
526 file_name = "gl_API.xml"
527
528 try:
529 (args, trail) = getopt.getopt(sys.argv[1:], "f:m:s")
530 except Exception,e:
531 show_usage()
532
533 mode = "dispatch_c"
534 do_swap = 0
535 for (arg,val) in args:
536 if arg == "-f":
537 file_name = val
538 elif arg == "-m":
539 mode = val
540 elif arg == "-s":
541 do_swap = 1
542
543 if mode == "dispatch_c":
544 printer = PrintGlxDispatchFunctions(do_swap)
545 elif mode == "dispatch_h":
546 printer = PrintGlxDispatch_h()
547 else:
548 show_usage()
549
550 api = gl_XML.parse_GL_API( file_name, glX_proto_common.glx_proto_item_factory() )
551
552 printer.Print( api )