# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.
import sys
import apiutil
def GenerateEntrypoints():
#apiutil.CopyrightC()
# Get sorted list of dispatched functions.
# The order is very important - it must match cr_opcodes.h
# and spu_dispatch_table.h
print '%include "iprt/asmdefs.mac"'
print ""
print "%ifdef RT_ARCH_AMD64"
print "extern glim"
print "%else ; X86"
print "extern glim"
print "%endif"
print ""
continue
continue
print "BEGINPROC_EXPORTED cr_gl%s" % func_name
print "%ifdef RT_ARCH_AMD64"
print "\tjmp \t[rax]"
print "%else ; X86"
print "\tjmp \t[eax]"
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
continue
# we already processed this function earlier
continue
# alias is the function we're aliasing
if alias:
# this dict lookup should never fail (raise an exception)!
print "BEGINPROC_EXPORTED cr_gl%s" % func_name
print "%ifdef RT_ARCH_AMD64"
print "\tjmp \t[rax]"
print "%else ; X86"
print "\tjmp \t[eax]"
print "%endif"
print "ENDPROC cr_gl%s" % func_name
print ""
print ';'
print '; No-op stubs'
print ';'
# Now generate no-op stub functions
print "BEGINPROC_EXPORTED cr_gl%s" % func_name
print "\tleave"
print "\tret"
print "ENDPROC cr_gl%s" % func_name
print ""