blob: 7f624023c02cb5a5a8e48e576b232814cd48042a [file] [log] [blame]
davem69ae144992001-06-05 04:30:03 +00001#!/usr/bin/env python
2
Brian Paulefe2baa2002-01-03 16:33:59 +00003# $Id: glsparcasm.py,v 1.7 2002/01/03 16:33:59 brianp Exp $
davem69ae144992001-06-05 04:30:03 +00004
5# Mesa 3-D graphics library
Brian Paul6c0d72f2001-11-18 22:42:57 +00006# Version: 4.1
davem69ae144992001-06-05 04:30:03 +00007#
Brian Paul6c0d72f2001-11-18 22:42:57 +00008# Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
davem69ae144992001-06-05 04:30:03 +00009#
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
Brian Paul6c0d72f2001-11-18 22:42:57 +000028# Generate the src/SPARC/glapi_sparc.S file.
davem69ae144992001-06-05 04:30:03 +000029#
30# Usage:
Brian Paul6c0d72f2001-11-18 22:42:57 +000031# gloffsets.py >glapi_sparc.S
davem69ae144992001-06-05 04:30:03 +000032#
33# Dependencies:
Brian Paul6c0d72f2001-11-18 22:42:57 +000034# The apispec file must be in the current directory.
davem69ae144992001-06-05 04:30:03 +000035
Brian Paul6c0d72f2001-11-18 22:42:57 +000036
37import apiparser;
davem69ae144992001-06-05 04:30:03 +000038
39
40def PrintHead():
41 print '/* DO NOT EDIT - This file generated automatically with glsparcasm.py script */'
42 print '#include "glapioffsets.h"'
43 print ''
davem69ae144992001-06-05 04:30:03 +000044 print '/* The _glapi_Dispatch symbol addresses get relocated into the'
45 print ' * sethi/or instruction sequences below at library init time.'
46 print ' */'
47 print ''
davem694a497e62001-06-06 22:55:28 +000048 print ''
49 print '.text'
50 print '.align 32'
51 print '.globl __glapi_sparc_icache_flush'
52 print '__glapi_sparc_icache_flush: /* %o0 = insn_addr */'
53 print '\tflush\t%o0'
54 print '\tretl'
Brian Paul6c0d72f2001-11-18 22:42:57 +000055 print '\tnop'
davem694a497e62001-06-06 22:55:28 +000056 print ''
davem69775355a2001-06-05 23:54:00 +000057 print '.data'
davem69ae144992001-06-05 04:30:03 +000058 print '.align 64'
59 print ''
davem69775355a2001-06-05 23:54:00 +000060 print '.globl _mesa_sparc_glapi_begin'
davem69636fb6c2001-08-03 13:16:31 +000061 print '.type _mesa_sparc_glapi_begin,#function'
davem69775355a2001-06-05 23:54:00 +000062 print '_mesa_sparc_glapi_begin:'
davem69ae144992001-06-05 04:30:03 +000063 return
64#endif
65
66def PrintTail():
67 print '\t nop'
68 print ''
davem69775355a2001-06-05 23:54:00 +000069 print '.globl _mesa_sparc_glapi_end'
davem69636fb6c2001-08-03 13:16:31 +000070 print '.type _mesa_sparc_glapi_end,#function'
davem69775355a2001-06-05 23:54:00 +000071 print '_mesa_sparc_glapi_end:'
72 print ''
davem69ae144992001-06-05 04:30:03 +000073#endif
74
75
Brian Paul6c0d72f2001-11-18 22:42:57 +000076
77records = []
78
79def FindOffset(funcName):
80 for (name, alias, offset) in records:
81 if name == funcName:
82 return offset
83 #endif
84 #endfor
85 return -1
86#enddef
87
88def EmitFunction(name, returnType, argTypeList, argNameList, alias, offset):
89 argList = apiparser.MakeArgList(argTypeList, argNameList)
90 if alias != '':
91 dispatchName = alias
92 else:
93 dispatchName = name
94 #endif
95
96 if offset < 0:
97 # try to find offset from alias name
98 assert dispatchName != ''
99 offset = FindOffset(dispatchName)
100 if offset == -1:
101 #print 'Cannot dispatch %s' % name
102 return
103 #endif
104 #endif
105
106 # save this info in case we need to look up an alias later
107 records.append((name, dispatchName, offset))
108
109 # print the assembly code
davem69ae144992001-06-05 04:30:03 +0000110 print ''
Brian Paulefe2baa2002-01-03 16:33:59 +0000111 print '.globl gl%s' % (name)
112 print '.type gl%s,#function' % (name)
113 print 'gl%s:' % (name)
davem69ae144992001-06-05 04:30:03 +0000114 print '#ifdef __sparc_v9__'
115 print '\tsethi\t%hi(0x00000000), %g2'
116 print '\tsethi\t%hi(0x00000000), %g1'
117 print '\tor\t%g2, %lo(0x00000000), %g2'
118 print '\tor\t%g1, %lo(0x00000000), %g1'
119 print '\tsllx\t%g2, 32, %g2'
davem69775355a2001-06-05 23:54:00 +0000120 print '\tldx\t[%g1 + %g2], %g1'
Brian Paul6c0d72f2001-11-18 22:42:57 +0000121 print "\tsethi\t%%hi(8 * _gloffset_%s), %%g2" % (dispatchName)
122 print "\tor\t%%g2, %%lo(8 * _gloffset_%s), %%g2" % (dispatchName)
davem69ae144992001-06-05 04:30:03 +0000123 print '\tldx\t[%g1 + %g2], %g3'
124 print '#else'
125 print '\tsethi\t%hi(0x00000000), %g1'
davem69775355a2001-06-05 23:54:00 +0000126 print '\tld\t[%g1 + %lo(0x00000000)], %g1'
Brian Paul6c0d72f2001-11-18 22:42:57 +0000127 print "\tld\t[%%g1 + (4 * _gloffset_%s)], %%g3" % (dispatchName)
davem69ae144992001-06-05 04:30:03 +0000128 print '#endif'
129 print '\tjmpl\t%g3, %g0'
Brian Paul6c0d72f2001-11-18 22:42:57 +0000130 print '\tnop'
davem69ae144992001-06-05 04:30:03 +0000131#enddef
132
133
davem69ae144992001-06-05 04:30:03 +0000134PrintHead()
Brian Paul6c0d72f2001-11-18 22:42:57 +0000135apiparser.ProcessSpecFile("APIspec", EmitFunction)
davem69ae144992001-06-05 04:30:03 +0000136PrintTail()