blob: 3312d238cefd549675f31de8952e1bc873872cf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.
import sys;
import cPickle;
import string;
import re;
import apiutil
apiutil.CopyrightC()
print """
#include "cr_debugopcodes.h"
#include <stdio.h>
"""
print """void crDebugOpcodes( FILE *fp, unsigned char *ptr, unsigned int num_opcodes )
{
\tunsigned int i;
\tfor (i = 0 ; i < num_opcodes ; i++)
\t{
\t\tswitch(*(ptr--))
\t\t{
"""
keys = apiutil.GetDispatchedFunctions(sys.argv[1]+"/APIspec.txt")
keys.sort()
for func_name in keys:
if "pack" in apiutil.ChromiumProps(func_name):
print '\t\tcase %s:' % apiutil.OpcodeName( func_name )
print '\t\t\tfprintf( fp, "%s\\n" ); ' % apiutil.OpcodeName( func_name )
print '\t\t\tbreak;'
print """
\t\t}
\t}
}
"""
|