Remove ENABLE_* flags, ctx->_Enabled.
[mesa.git] / src / mesa / glapi / glx86asm.py
1 #!/usr/bin/env python
2
3 # $Id: glx86asm.py,v 1.3 2001/03/28 17:22:11 brianp Exp $
4
5 # Mesa 3-D graphics library
6 # Version: 3.4
7 #
8 # Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
9 #
10 # Permission is hereby granted, free of charge, to any person obtaining a
11 # copy of this software and associated documentation files (the "Software"),
12 # to deal in the Software without restriction, including without limitation
13 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 # and/or sell copies of the Software, and to permit persons to whom the
15 # Software is furnished to do so, subject to the following conditions:
16 #
17 # The above copyright notice and this permission notice shall be included
18 # in all copies or substantial portions of the Software.
19 #
20 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 # BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
24 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
27
28 # Generate the glapi_x86.S assembly language file.
29 #
30 # Usage:
31 # glx86asm.py >glapi_x86.S
32 #
33 # Dependencies:
34 # The gl.spec file from the SI must be in the current directory.
35 #
36 # Brian Paul 11 May 2000
37
38
39 import string
40 import re
41
42
43 def PrintHead():
44 print '/* DO NOT EDIT - This file generated automatically with glx86asm.py script */'
45 print '#include "assyntax.h"'
46 print '#include "glapioffsets.h"'
47 print ''
48 print '#ifndef __WIN32__'
49 print ''
50 print '#if defined(USE_MGL_NAMESPACE)'
51 print '#define GL_PREFIX(n) GLNAME(CONCAT(mgl,n))'
52 print '#else'
53 print '#define GL_PREFIX(n) GLNAME(CONCAT(gl,n))'
54 print '#endif'
55 print ''
56 print '#define GL_OFFSET(x) CODEPTR(REGOFF(4 * x, EAX))'
57 print ''
58 print '#ifdef GNU_ASSEMBLER'
59 print '#define GLOBL_FN(x) GLOBL x ; .type x,@function'
60 print '#else'
61 print '#define GLOBL_FN(x) GLOBL x'
62 print '#endif'
63 print ''
64 print ''
65 return
66 #endif
67
68
69 def PrintTail():
70 print ''
71 print '#endif /* __WIN32__ */'
72 #endif
73
74
75 def GenerateDispatchCode(name, offset):
76 print 'ALIGNTEXT16'
77 print "GLOBL_FN(GL_PREFIX(%s))" % (name)
78 print "GL_PREFIX(%s):" % (name)
79 print '\tMOV_L(GLNAME(_glapi_Dispatch), EAX)'
80 print "\tJMP(GL_OFFSET(_gloffset_%s))" % (offset)
81 print ''
82 #enddef
83
84
85 def FindAlias(list, funcName):
86 for i in range(0, len(list)):
87 entry = list[i]
88 if entry[0] == funcName:
89 return entry[1]
90 #endif
91 #endfor
92 return ''
93 #enddef
94
95
96
97 def PrintDefines():
98 functionPattern = re.compile('^[a-zA-Z0-9]+\(')
99 functionNamePattern = re.compile('^[a-zA-Z0-9]+')
100
101 funcName = ''
102 functions = [ ]
103
104 f = open('gl.spec')
105 for line in f.readlines():
106
107 m = functionPattern.match(line)
108 if m:
109 # extract funcName
110 n = functionNamePattern.findall(line)
111 funcName = n[0]
112
113 m = string.split(line)
114 if len(m) > 1:
115 if m[0] == 'param':
116 paramName = m[1]
117 if m[0] == 'offset':
118 if m[1] == '?':
119 #print 'WARNING skipping', funcName
120 noop = 0
121 else:
122 entry = [ funcName, funcName ]
123 functions.append(entry)
124 #endif
125 elif m[0] == 'alias':
126 aliasedName = FindAlias(functions, m[1])
127 if aliasedName:
128 entry = [ funcName, aliasedName ]
129 functions.append(entry)
130 else:
131 print 'WARNING: alias to unknown function:', aliasedName
132 #endif
133 #endif
134 #endif
135 #endfor
136
137 # Now generate the assembly dispatch code
138 for i in range(0, len(functions)):
139 entry = functions[i]
140 GenerateDispatchCode( entry[0], entry[1] )
141
142 #enddef
143
144
145
146 PrintHead()
147 PrintDefines()
148 PrintTail()