SunOS_i386_exports_dri.py revision 7eeca0bc9b71feb4baf8935a1ae99bcf328dedec
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# Copyright (C) 2009 Sun Microsystems, Inc.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
af062818b47340eef15700d2f0211576ba3506eevboxsync# available from http://www.virtualbox.org. This file is free software;
af062818b47340eef15700d2f0211576ba3506eevboxsync# you can redistribute it and/or modify it under the terms of the GNU
af062818b47340eef15700d2f0211576ba3506eevboxsync# General Public License (GPL) as published by the Free Software
af062818b47340eef15700d2f0211576ba3506eevboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
af062818b47340eef15700d2f0211576ba3506eevboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
af062818b47340eef15700d2f0211576ba3506eevboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
af062818b47340eef15700d2f0211576ba3506eevboxsync# Clara, CA 95054 USA or visit http://www.sun.com if you need
af062818b47340eef15700d2f0211576ba3506eevboxsync# additional information or have any questions.
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncimport sys
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncimport apiutil
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsyncdef GenerateEntrypoints():
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync #apiutil.CopyrightC()
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync # Get sorted list of dispatched functions.
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync # The order is very important - it must match cr_opcodes.h
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync # and spu_dispatch_table.h
af062818b47340eef15700d2f0211576ba3506eevboxsync print '%include "iprt/asmdefs.mac"'
af062818b47340eef15700d2f0211576ba3506eevboxsync print ""
af062818b47340eef15700d2f0211576ba3506eevboxsync print "%ifdef RT_ARCH_AMD64"
af062818b47340eef15700d2f0211576ba3506eevboxsync print "extern glim"
af062818b47340eef15700d2f0211576ba3506eevboxsync print "%else ; X86"
af062818b47340eef15700d2f0211576ba3506eevboxsync print "extern glim"
af062818b47340eef15700d2f0211576ba3506eevboxsync print "%endif"
af062818b47340eef15700d2f0211576ba3506eevboxsync print ""
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync keys = apiutil.GetDispatchedFunctions(sys.argv[1]+"/APIspec.txt")
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync for index in range(len(keys)):
func_name = keys[index]
if apiutil.Category(func_name) == "Chromium":
continue
print "BEGINPROC_EXPORTED cr_gl%s" % func_name
print "%ifdef RT_ARCH_AMD64"
print "\tjmp \t[glim+%d wrt rip wrt ..gotpcrel]" % (8*index)
print "%else ; X86"
print "\tjmp \t[glim+%d wrt rip wrt ..gotpcrel]" % (4*index)
print "%endif"
print "ENDPROC cr_gl%s" % func_name
print ""
print ';'
print '; Aliases'
print ';'
# Now loop over all the functions and take care of any aliases
allkeys = apiutil.GetAllFunctions(sys.argv[1]+"/APIspec.txt")
for func_name in allkeys:
if "omit" in apiutil.ChromiumProps(func_name):
continue
if func_name in keys:
# we already processed this function earlier
continue
# alias is the function we're aliasing
alias = apiutil.Alias(func_name)
if alias:
# this dict lookup should never fail (raise an exception)!
index = keys.index(alias)
print "BEGINPROC_EXPORTED cr_gl%s" % func_name
print "%ifdef RT_ARCH_AMD64"
print "\tjmp \t[glim+%d wrt rip wrt ..gotpcrel]" % (8*index)
print "%else ; X86"
print "\tjmp \t[glim+%d wrt rip wrt ..gotpcrel]" % (4*index)
print "%endif"
print "ENDPROC cr_gl%s" % func_name
print ""
print ';'
print '; No-op stubs'
print ';'
# Now generate no-op stub functions
for func_name in allkeys:
if "stub" in apiutil.ChromiumProps(func_name):
print "BEGINPROC_EXPORTED cr_gl%s" % func_name
print "\tleave"
print "\tret"
print "ENDPROC cr_gl%s" % func_name
print ""
GenerateEntrypoints()