1 | # Copyright (c) 2001, Stanford University
|
---|
2 | # All rights reserved.
|
---|
3 | #
|
---|
4 | # See the file LICENSE.txt for information on redistributing this software.
|
---|
5 |
|
---|
6 | # This script generates include/cr_opcodes.h from the gl_header.parsed file.
|
---|
7 |
|
---|
8 | import sys;
|
---|
9 | import cPickle;
|
---|
10 | import string;
|
---|
11 | import re;
|
---|
12 |
|
---|
13 | import apiutil
|
---|
14 |
|
---|
15 | apiutil.CopyrightC()
|
---|
16 |
|
---|
17 | print ""
|
---|
18 | print "/* DO NOT EDIT - THIS FILE GENERATED BY THE opcodes.py SCRIPT */"
|
---|
19 | print ""
|
---|
20 | print "#ifndef CR_OPCODES_H"
|
---|
21 | print "#define CR_OPCODES_H"
|
---|
22 | print ""
|
---|
23 |
|
---|
24 | keys = apiutil.GetDispatchedFunctions(sys.argv[1]+"/APIspec.txt")
|
---|
25 | assert len(keys) > 0
|
---|
26 |
|
---|
27 | print "/* Functions with no return value and input-only parameters */"
|
---|
28 | print "typedef enum {"
|
---|
29 |
|
---|
30 | enum_index = 0
|
---|
31 | for func in keys:
|
---|
32 | if "pack" in apiutil.ChromiumProps(func):
|
---|
33 | print "\t%s = %d," % ( apiutil.OpcodeName(func), enum_index )
|
---|
34 | enum_index = enum_index + 1
|
---|
35 |
|
---|
36 | if enum_index > 255:
|
---|
37 | # This would have saved Mike some grief if it had been here earlier.
|
---|
38 | print >> sys.stderr, "You have more than 255 opcodes! You've been adding functions to"
|
---|
39 | print >> sys.stderr, "glapi_parser/APIspec! Each new function you add"
|
---|
40 | print >> sys.stderr, "gets an opcode assigned to it. Fortunately for you, we have"
|
---|
41 | print >> sys.stderr, "an ``extend'' opcode. Please mark the function as"
|
---|
42 | print >> sys.stderr, "'extpack' in APIspec so as to keep the main opcode pool"
|
---|
43 | print >> sys.stderr, "less than 255! THIS IS A CATASTROPHIC FAILURE, and I WILL NOT CONTINUE!"
|
---|
44 | print >> sys.stderr, "I'm putting an error in the generated header file so you won't miss"
|
---|
45 | print >> sys.stderr, "this even if you're doing a 'make -k.'"
|
---|
46 | print "#error -- more than 255 opcodes!"
|
---|
47 | sys.exit(-1)
|
---|
48 | print "\tCR_EXTEND_OPCODE=%d" % enum_index
|
---|
49 | print "} CROpcode;\n"
|
---|
50 |
|
---|
51 | # count up number of extended opcode commands
|
---|
52 | num_extends = 0
|
---|
53 | for func in keys:
|
---|
54 | if "extpack" in apiutil.ChromiumProps(func):
|
---|
55 | num_extends += 1
|
---|
56 |
|
---|
57 | print "/* Functions with a return value or output parameters */"
|
---|
58 | print "typedef enum {"
|
---|
59 |
|
---|
60 | enum_index = 0
|
---|
61 | for func in keys:
|
---|
62 | if "extpack" in apiutil.ChromiumProps(func):
|
---|
63 | opcodeName = apiutil.ExtendedOpcodeName(func)
|
---|
64 | if enum_index != num_extends-1:
|
---|
65 | print "\t%s = %d," % (opcodeName, enum_index )
|
---|
66 | else:
|
---|
67 | print "\t%s = %d" % (opcodeName, enum_index )
|
---|
68 | enum_index = enum_index + 1
|
---|
69 | print "} CRExtendOpcode;\n"
|
---|
70 | print "#endif /* CR_OPCODES_H */"
|
---|