3 # (C) Copyright IBM Corporation 2004, 2005
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:
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
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
26 # Ian Romanick <idr@us.ibm.com>
29 import gl_XML
, glX_XML
32 class PrintGenericStubs(gl_XML
.gl_print_base
):
35 gl_XML
.gl_print_base
.__init
__(self
)
37 self
.name
= "gl_x86_asm.py (from Mesa)"
38 self
.license
= license
.bsd_license_template
% ( \
39 """Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
40 (C) Copyright IBM Corporation 2004, 2005""", "BRIAN PAUL, IBM")
44 def get_stack_size(self
, f
):
46 for p
in f
.parameterIterator():
50 size
+= p
.get_stack_size()
55 def printRealHeader(self
):
56 print '#include "x86/assyntax.h"'
58 print '#if defined(STDCALL_API)'
59 print '# if defined(USE_MGL_NAMESPACE)'
60 print '# define GL_PREFIX(n,n2) GLNAME(CONCAT(mgl,n2))'
62 print '# define GL_PREFIX(n,n2) GLNAME(CONCAT(gl,n2))'
65 print '# if defined(USE_MGL_NAMESPACE)'
66 print '# define GL_PREFIX(n,n2) GLNAME(CONCAT(mgl,n))'
67 print '# define _glapi_Dispatch _mglapi_Dispatch'
69 print '# define GL_PREFIX(n,n2) GLNAME(CONCAT(gl,n))'
73 print '#define GL_OFFSET(x) CODEPTR(REGOFF(4 * x, EAX))'
75 print '#if defined(GNU_ASSEMBLER) && !defined(__DJGPP__) && !defined(__MINGW32__) && !defined(__APPLE__)'
76 print '#define GLOBL_FN(x) GLOBL x ; .type x, @function'
78 print '#define GLOBL_FN(x) GLOBL x'
81 print '#if defined(PTHREADS) || defined(WIN32) || defined(BEOS_THREADS)'
82 print '# define THREADS'
85 print '#ifdef GLX_USE_TLS'
87 print '#ifdef GLX_X86_READONLY_TEXT'
88 print '# define CTX_INSNS MOV_L(GS:(EAX), EAX)'
90 print '# define CTX_INSNS NOP /* Pad for init_glapi_relocs() */'
93 print '# define GL_STUB(fn,off,fn_alt)\t\t\t\\'
94 print 'ALIGNTEXT16;\t\t\t\t\t\t\\'
95 print 'GLOBL_FN(GL_PREFIX(fn, fn_alt));\t\t\t\\'
96 print 'GL_PREFIX(fn, fn_alt):\t\t\t\t\t\\'
97 print '\tCALL(_x86_get_dispatch) ;\t\t\t\\'
98 print '\tCTX_INSNS ; \\'
99 print '\tJMP(GL_OFFSET(off))'
101 print '#elif defined(PTHREADS)'
102 print '# define GL_STUB(fn,off,fn_alt)\t\t\t\\'
103 print 'ALIGNTEXT16;\t\t\t\t\t\t\\'
104 print 'GLOBL_FN(GL_PREFIX(fn, fn_alt));\t\t\t\\'
105 print 'GL_PREFIX(fn, fn_alt):\t\t\t\t\t\\'
106 print '\tMOV_L(CONTENT(GLNAME(_glapi_Dispatch)), EAX) ;\t\\'
107 print '\tTEST_L(EAX, EAX) ;\t\t\t\t\\'
108 print '\tJE(1f) ;\t\t\t\t\t\\'
109 print '\tJMP(GL_OFFSET(off)) ;\t\t\t\t\\'
110 print '1:\tCALL(_x86_get_dispatch) ;\t\t\t\\'
111 print '\tJMP(GL_OFFSET(off))'
112 print '#elif defined(THREADS)'
113 print '# define GL_STUB(fn,off,fn_alt)\t\t\t\\'
114 print 'ALIGNTEXT16;\t\t\t\t\t\t\\'
115 print 'GLOBL_FN(GL_PREFIX(fn, fn_alt));\t\t\t\\'
116 print 'GL_PREFIX(fn, fn_alt):\t\t\t\t\t\\'
117 print '\tMOV_L(CONTENT(GLNAME(_glapi_Dispatch)), EAX) ;\t\\'
118 print '\tTEST_L(EAX, EAX) ;\t\t\t\t\\'
119 print '\tJE(1f) ;\t\t\t\t\t\\'
120 print '\tJMP(GL_OFFSET(off)) ;\t\t\t\t\\'
121 print '1:\tCALL(_glapi_get_dispatch) ;\t\t\t\\'
122 print '\tJMP(GL_OFFSET(off))'
123 print '#else /* Non-threaded version. */'
124 print '# define GL_STUB(fn,off,fn_alt)\t\t\t\\'
125 print 'ALIGNTEXT16;\t\t\t\t\t\t\\'
126 print 'GLOBL_FN(GL_PREFIX(fn, fn_alt));\t\t\t\\'
127 print 'GL_PREFIX(fn, fn_alt):\t\t\t\t\t\\'
128 print '\tMOV_L(CONTENT(GLNAME(_glapi_Dispatch)), EAX) ;\t\\'
129 print '\tJMP(GL_OFFSET(off))'
132 print '#ifdef HAVE_ALIAS'
133 print '# define GL_STUB_ALIAS(fn,off,fn_alt,alias,alias_alt)\t\\'
134 print '\t.globl\tGL_PREFIX(fn, fn_alt) ;\t\t\t\\'
135 print '\t.set\tGL_PREFIX(fn, fn_alt), GL_PREFIX(alias, alias_alt)'
137 print '# define GL_STUB_ALIAS(fn,off,fn_alt,alias,alias_alt)\t\\'
138 print ' GL_STUB(fn, off, fn_alt)'
143 print '#ifdef GLX_USE_TLS'
145 print '\tGLOBL\tGLNAME(_x86_get_dispatch)'
146 print '\tHIDDEN(GLNAME(_x86_get_dispatch))'
148 print 'GLNAME(_x86_get_dispatch):'
150 print '1:\tpopl %eax'
151 print '\taddl $_GLOBAL_OFFSET_TABLE_+[.-1b], %eax'
152 print '\tmovl _glapi_tls_Dispatch@GOTNTPOFF(%eax), %eax'
155 print '#elif defined(PTHREADS)'
156 print 'EXTERN GLNAME(_glapi_Dispatch)'
157 print 'EXTERN GLNAME(_gl_DispatchTSD)'
158 print 'EXTERN GLNAME(pthread_getspecific)'
161 print 'GLNAME(_x86_get_dispatch):'
162 print '\tSUB_L(CONST(24), ESP)'
163 print '\tPUSH_L(GLNAME(_gl_DispatchTSD))'
164 print '\tCALL(GLNAME(pthread_getspecific))'
165 print '\tADD_L(CONST(28), ESP)'
167 print '#elif defined(THREADS)'
168 print 'EXTERN GLNAME(_glapi_get_dispatch)'
172 print '#if defined( GLX_USE_TLS ) && !defined( GLX_X86_READONLY_TEXT )'
173 print '\t\t.section\twtext, "awx", @progbits'
174 print '#endif /* defined( GLX_USE_TLS ) */'
177 print '\t\tALIGNTEXT16'
178 print '\t\tGLOBL GLNAME(gl_dispatch_functions_start)'
179 print '\t\tHIDDEN(GLNAME(gl_dispatch_functions_start))'
180 print 'GLNAME(gl_dispatch_functions_start):'
185 def printRealFooter(self
):
187 print '\t\tGLOBL\tGLNAME(gl_dispatch_functions_end)'
188 print '\t\tHIDDEN(GLNAME(gl_dispatch_functions_end))'
189 print '\t\tALIGNTEXT16'
190 print 'GLNAME(gl_dispatch_functions_end):'
192 print '#if defined(GLX_USE_TLS) && defined(__linux__)'
193 print ' .section ".note.ABI-tag", "a"'
195 print ' .long 1f - 0f /* name length */'
196 print ' .long 3f - 2f /* data length */'
197 print ' .long 1 /* note length */'
198 print '0: .asciz "GNU" /* vendor name */'
199 print '1: .p2align 2'
200 print '2: .long 0 /* note data: the ABI tag */'
201 print ' .long 2,4,20 /* Minimum kernel version w/TLS */'
202 print '3: .p2align 2 /* pad out section */'
203 print '#endif /* GLX_USE_TLS */'
205 print '#if defined (__ELF__) && defined (__linux__)'
206 print ' .section .note.GNU-stack,"",%progbits'
211 def printBody(self
, api
):
212 for f
in api
.functionIterateByOffset():
213 name
= f
.dispatch_name()
214 stack
= self
.get_stack_size(f
)
215 alt
= "%s@%u" % (name
, stack
)
217 print '\tGL_STUB(%s, %d, %s)' % (name
, f
.offset
, alt
)
219 if not f
.is_static_entry_point(f
.name
):
220 print '\tHIDDEN(GL_PREFIX(%s, %s))' % (name
, alt
)
223 for f
in api
.functionIterateByOffset():
224 name
= f
.dispatch_name()
225 stack
= self
.get_stack_size(f
)
226 alt
= "%s@%u" % (name
, stack
)
228 for n
in f
.entry_points
:
229 if f
.is_static_entry_point(n
):
231 alt2
= "%s@%u" % (n
, stack
)
232 text
= '\tGL_STUB_ALIAS(%s, %d, %s, %s, %s)' % (n
, f
.offset
, alt2
, name
, alt
)
234 if f
.has_different_protocol(n
):
235 print '#ifndef GLX_INDIRECT_RENDERING'
244 print "Usage: %s [-f input_file_name] [-m output_mode]" % sys
.argv
[0]
247 if __name__
== '__main__':
248 file_name
= "gl_API.xml"
252 (args
, trail
) = getopt
.getopt(sys
.argv
[1:], "m:f:")
256 for (arg
,val
) in args
:
262 if mode
== "generic":
263 printer
= PrintGenericStubs()
265 print "ERROR: Invalid mode \"%s\" specified." % mode
268 api
= gl_XML
.parse_GL_API(file_name
, glX_XML
.glx_item_factory())