blob: d585b43cde54983ad487575746e843b867b627c9 [file] [log] [blame]
Ian Romanick73f59b02004-05-18 18:33:40 +00001#!/usr/bin/python2
2
3# (C) Copyright IBM Corporation 2004
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
Ian Romanick73f59b02004-05-18 18:33:40 +000028import gl_XML
29import license
30import sys, getopt
31
Ian Romanick66a55482005-06-21 23:42:43 +000032class PrintGlTable(gl_XML.gl_print_base):
Ian Romanick73f59b02004-05-18 18:33:40 +000033 def __init__(self):
Ian Romanick66a55482005-06-21 23:42:43 +000034 gl_XML.gl_print_base.__init__(self)
Ian Romanick497dd3e2005-05-26 16:34:58 +000035
Ian Romanick16c3c742005-01-28 19:00:54 +000036 self.header_tag = '_GLAPI_TABLE_H_'
Ian Romanick497dd3e2005-05-26 16:34:58 +000037 self.name = "gl_table.py (from Mesa)"
Ian Romanick73f59b02004-05-18 18:33:40 +000038 self.license = license.bsd_license_template % ( \
39"""Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
40(C) Copyright IBM Corporation 2004""", "BRIAN PAUL, IBM")
Ian Romanick66a55482005-06-21 23:42:43 +000041 return
Ian Romanick73f59b02004-05-18 18:33:40 +000042
43
Ian Romanick66a55482005-06-21 23:42:43 +000044 def printBody(self, api):
45 for f in api.functionIterateByOffset():
46 arg_string = f.get_parameter_string()
47 print ' %s (GLAPIENTRYP %s)(%s); /* %d */' % (f.return_type, f.name, arg_string, f.offset)
Ian Romanick73f59b02004-05-18 18:33:40 +000048
Ian Romanick73f59b02004-05-18 18:33:40 +000049
50 def printRealHeader(self):
Ian Romanick73f59b02004-05-18 18:33:40 +000051 print '#ifndef GLAPIENTRYP'
52 print '#define GLAPIENTRYP'
53 print '#endif'
54 print ''
55 print 'struct _glapi_table'
56 print '{'
57 return
58
Ian Romanick66a55482005-06-21 23:42:43 +000059
Ian Romanick73f59b02004-05-18 18:33:40 +000060 def printRealFooter(self):
61 print '};'
Ian Romanick73f59b02004-05-18 18:33:40 +000062 return
63
64
Ian Romanick9bdfee32005-07-18 12:31:24 +000065class PrintRemapTable(gl_XML.gl_print_base):
66 def __init__(self):
67 gl_XML.gl_print_base.__init__(self)
68
69 self.header_tag = '_DISPATCH_H_'
70 self.name = "gl_table.py (from Mesa)"
71 self.license = license.bsd_license_template % ("(C) Copyright IBM Corporation 2005", "IBM")
72 return
73
74
75 def printRealHeader(self):
76 print """/**
77 * \\file dispatch.h
78 * Macros for handling GL dispatch tables.
79 *
80 * For each known GL function, there are 3 macros in this file. The first
81 * macro is named CALL_FuncName and is used to call that GL function using
82 * the specified dispatch table. The other 2 macros, called GET_FuncName
83 * can SET_FuncName, are used to get and set the dispatch pointer for the
84 * named function in the specified dispatch table.
85 */
86"""
87
88 return
89
90 def printBody(self, api):
91 print '#define CALL_by_offset(disp, cast, offset, parameters) \\'
92 print ' (*(cast (((_glapi_proc *)(disp))[offset]))) parameters'
93 print '#define GET_by_offset(disp, offset) \\'
94 print ' (((_glapi_proc *)(disp))[offset])'
95 print '#define SET_by_offset(disp, offset, fn) \\'
96 print ' ((((_glapi_proc *)(disp))[offset]) = fn)'
97 print ''
98
99 for f in api.functionIterateByOffset():
100 print '#define CALL_%s(disp, parameters) (*((disp)->%s)) parameters' % (f.name, f.name)
101 print '#define GET_%s(disp) ((disp)->%s)' % (f.name, f.name)
102 print '#define SET_%s(disp, fn) ((disp)->%s = fn)' % (f.name, f.name)
103 return
104
105 abi = [ "1.0", "1.1", "1.2", "GL_ARB_multitexture" ]
106
107 functions = []
108 abi_functions = []
109 count = 0
110 for f in api.functionIterateByOffset():
111 [category, num] = api.get_category_for_name( f.name )
112 if category not in abi:
113 functions.append( [f, count] )
114 count += 1
115 else:
116 abi_functions.append( f )
117
118
119 print 'struct _mesa_dispatch_remap_table {'
120
121 for [f, index] in functions:
122 print ' unsigned %s;' % (f.name)
123
124 print '};'
125 print ''
126 print '/* %u functions need remapping. */' % (count)
127 print ''
128
129 for f in abi_functions:
130 print '#define CALL_%s(disp, parameters) (*disp->%s) parameters' % (f.name, f.name)
131
132
133 for [f, index] in functions:
134 arg_string = gl_XML.create_parameter_string( f.parameters, 0 )
135 cast = '%s (GLAPIENTRYP)(%s)' % (f.return_type, arg_string)
136
137 print '#define CALL_%s(disp, parameters) (* (%s) (((_glapi_proc *)disp)[dispatch_remap.%s])) parameters' % (f.name, cast, f.name)
138
139 return
140
141
Ian Romanick73f59b02004-05-18 18:33:40 +0000142def show_usage():
Ian Romanick9bdfee32005-07-18 12:31:24 +0000143 print "Usage: %s [-f input_file_name] [-m mode]" % sys.argv[0]
144 print " -m mode Mode can be 'table' or 'remap_table'."
Ian Romanick73f59b02004-05-18 18:33:40 +0000145 sys.exit(1)
146
147if __name__ == '__main__':
148 file_name = "gl_API.xml"
149
150 try:
Ian Romanick9bdfee32005-07-18 12:31:24 +0000151 (args, trail) = getopt.getopt(sys.argv[1:], "f:m:")
Ian Romanick73f59b02004-05-18 18:33:40 +0000152 except Exception,e:
153 show_usage()
154
Ian Romanick9bdfee32005-07-18 12:31:24 +0000155 mode = "table"
Ian Romanick73f59b02004-05-18 18:33:40 +0000156 for (arg,val) in args:
157 if arg == "-f":
158 file_name = val
Ian Romanick9bdfee32005-07-18 12:31:24 +0000159 elif arg == "-m":
160 mode = val
161
162 if mode == "table":
163 printer = PrintGlTable()
164 elif mode == "remap_table":
165 printer = PrintRemapTable()
166 else:
167 show_usage()
Ian Romanick73f59b02004-05-18 18:33:40 +0000168
Ian Romanick66a55482005-06-21 23:42:43 +0000169 api = gl_XML.parse_GL_API( file_name )
170
Ian Romanick66a55482005-06-21 23:42:43 +0000171 printer.Print( api )