fixed a glitch
[mesa.git] / src / mesa / glapi / glsparcasm.py
1 #!/usr/bin/env python
2
3 # $Id: glsparcasm.py,v 1.6 2001/11/19 00:40:33 brianp Exp $
4
5 # Mesa 3-D graphics library
6 # Version: 4.1
7 #
8 # Copyright (C) 1999-2001 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 src/SPARC/glapi_sparc.S file.
29 #
30 # Usage:
31 # gloffsets.py >glapi_sparc.S
32 #
33 # Dependencies:
34 # The apispec file must be in the current directory.
35
36
37 import apiparser;
38
39
40 def PrintHead():
41 print '/* DO NOT EDIT - This file generated automatically with glsparcasm.py script */'
42 print '#include "glapioffsets.h"'
43 print ''
44 print '#define GL_PREFIX(n) gl##n'
45 print '#define GLOBL_FN(x) .globl x'
46 print ''
47 print '/* The _glapi_Dispatch symbol addresses get relocated into the'
48 print ' * sethi/or instruction sequences below at library init time.'
49 print ' */'
50 print ''
51 print ''
52 print '.text'
53 print '.align 32'
54 print '.globl __glapi_sparc_icache_flush'
55 print '__glapi_sparc_icache_flush: /* %o0 = insn_addr */'
56 print '\tflush\t%o0'
57 print '\tretl'
58 print '\tnop'
59 print ''
60 print '.data'
61 print '.align 64'
62 print ''
63 print '.globl _mesa_sparc_glapi_begin'
64 print '.type _mesa_sparc_glapi_begin,#function'
65 print '_mesa_sparc_glapi_begin:'
66 return
67 #endif
68
69 def PrintTail():
70 print '\t nop'
71 print ''
72 print '.globl _mesa_sparc_glapi_end'
73 print '.type _mesa_sparc_glapi_end,#function'
74 print '_mesa_sparc_glapi_end:'
75 print ''
76 #endif
77
78
79
80 records = []
81
82 def FindOffset(funcName):
83 for (name, alias, offset) in records:
84 if name == funcName:
85 return offset
86 #endif
87 #endfor
88 return -1
89 #enddef
90
91 def EmitFunction(name, returnType, argTypeList, argNameList, alias, offset):
92 argList = apiparser.MakeArgList(argTypeList, argNameList)
93 if alias != '':
94 dispatchName = alias
95 else:
96 dispatchName = name
97 #endif
98
99 if offset < 0:
100 # try to find offset from alias name
101 assert dispatchName != ''
102 offset = FindOffset(dispatchName)
103 if offset == -1:
104 #print 'Cannot dispatch %s' % name
105 return
106 #endif
107 #endif
108
109 # save this info in case we need to look up an alias later
110 records.append((name, dispatchName, offset))
111
112 # print the assembly code
113 print ''
114 print "GLOBL_FN(GL_PREFIX(%s))" % (name)
115 print '.type gl%s,#function' %(name)
116 print "GL_PREFIX(%s):" % (name)
117 print '#ifdef __sparc_v9__'
118 print '\tsethi\t%hi(0x00000000), %g2'
119 print '\tsethi\t%hi(0x00000000), %g1'
120 print '\tor\t%g2, %lo(0x00000000), %g2'
121 print '\tor\t%g1, %lo(0x00000000), %g1'
122 print '\tsllx\t%g2, 32, %g2'
123 print '\tldx\t[%g1 + %g2], %g1'
124 print "\tsethi\t%%hi(8 * _gloffset_%s), %%g2" % (dispatchName)
125 print "\tor\t%%g2, %%lo(8 * _gloffset_%s), %%g2" % (dispatchName)
126 print '\tldx\t[%g1 + %g2], %g3'
127 print '#else'
128 print '\tsethi\t%hi(0x00000000), %g1'
129 print '\tld\t[%g1 + %lo(0x00000000)], %g1'
130 print "\tld\t[%%g1 + (4 * _gloffset_%s)], %%g3" % (dispatchName)
131 print '#endif'
132 print '\tjmpl\t%g3, %g0'
133 print '\tnop'
134 #enddef
135
136
137 PrintHead()
138 apiparser.ProcessSpecFile("APIspec", EmitFunction)
139 PrintTail()