1 | #!/usr/bin/env python
|
---|
2 | #
|
---|
3 | # Copyright (c) 2014 Jakub Jermar
|
---|
4 | # All rights reserved.
|
---|
5 | #
|
---|
6 | # Redistribution and use in source and binary forms, with or without
|
---|
7 | # modification, are permitted provided that the following conditions
|
---|
8 | # are met:
|
---|
9 | #
|
---|
10 | # - Redistributions of source code must retain the above copyright
|
---|
11 | # notice, this list of conditions and the following disclaimer.
|
---|
12 | # - Redistributions in binary form must reproduce the above copyright
|
---|
13 | # notice, this list of conditions and the following disclaimer in the
|
---|
14 | # documentation and/or other materials provided with the distribution.
|
---|
15 | # - The name of the author may not be used to endorse or promote products
|
---|
16 | # derived from this software without specific prior written permission.
|
---|
17 | #
|
---|
18 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | #
|
---|
29 |
|
---|
30 | import sys
|
---|
31 | import yaml
|
---|
32 | import re
|
---|
33 |
|
---|
34 | def usage():
|
---|
35 | print("%s - Automated structure and offsets generator" % sys.argv[0])
|
---|
36 | print("%s file.ag probe|generate struct.ag" % sys.argv[0])
|
---|
37 | sys.exit()
|
---|
38 |
|
---|
39 | def generate_includes(struct):
|
---|
40 | code = ""
|
---|
41 | for include in struct['includes']:
|
---|
42 | if 'guard' in include.keys():
|
---|
43 | code = code + "#ifdef %s\n" % include['guard']
|
---|
44 | if 'negative-guard' in include.keys():
|
---|
45 | code = code + "#ifndef %s\n" % include['negative-guard']
|
---|
46 | code = code + "#include %s\n" % include['include']
|
---|
47 | if 'guard' in include.keys():
|
---|
48 | code = code + "#endif\n"
|
---|
49 | if 'negative-guard' in include.keys():
|
---|
50 | code = code + "#endif\n"
|
---|
51 | return code.strip()
|
---|
52 |
|
---|
53 | def generate_struct(struct):
|
---|
54 | code = "typedef struct %s {\n" % struct['name']
|
---|
55 | for i in range(len(struct['members'])):
|
---|
56 | member = struct['members'][i]
|
---|
57 | code = code + "\t%s %s;\n" % (member['type'], member['name'])
|
---|
58 | code = code + "} %s_t;" % struct['name']
|
---|
59 | return code
|
---|
60 |
|
---|
61 | def generate_probes(struct):
|
---|
62 | code = ""
|
---|
63 | for i in range(len(struct['members'])):
|
---|
64 | member = struct['members'][i]
|
---|
65 | code = code + ("\temit_constant(%s_OFFSET_%s, offsetof(%s_t, %s));\n" %
|
---|
66 | (struct['name'].upper(), member['name'].upper(), struct['name'],
|
---|
67 | member['name']))
|
---|
68 | return code
|
---|
69 |
|
---|
70 | def probe(struct):
|
---|
71 | name = struct['name']
|
---|
72 | typename = struct['name'] + "_t"
|
---|
73 |
|
---|
74 | code = """
|
---|
75 | %s
|
---|
76 |
|
---|
77 | #define str(s) #s
|
---|
78 | #define emit_constant(n, v) \
|
---|
79 | asm volatile ("EMITTED_CONSTANT " str(n) \" = %%0\" :: \"i\" (v))
|
---|
80 | #define offsetof(t, m) ((size_t) &(((t *) 0)->m))
|
---|
81 |
|
---|
82 | %s
|
---|
83 |
|
---|
84 | int main()
|
---|
85 | {
|
---|
86 | %s
|
---|
87 | emit_constant(%s_SIZE, sizeof(%s));
|
---|
88 | return 0;
|
---|
89 | }
|
---|
90 | """ % (generate_includes(struct), generate_struct(struct),
|
---|
91 | generate_probes(struct), name.upper(), typename)
|
---|
92 |
|
---|
93 | return code
|
---|
94 |
|
---|
95 | def generate_defines(pairs):
|
---|
96 | code = ""
|
---|
97 | for pair in pairs:
|
---|
98 | code = code + "#define %s %s\n" % (pair[0], pair[1])
|
---|
99 | return code.strip()
|
---|
100 |
|
---|
101 | def generate(struct, lines):
|
---|
102 | code = """
|
---|
103 | /*****************************************************************************
|
---|
104 | * AUTO-GENERATED FILE, DO NOT EDIT!!!
|
---|
105 | * Generated by: tools/autogen.py
|
---|
106 | * Generated from: %s
|
---|
107 | *****************************************************************************/
|
---|
108 |
|
---|
109 | #ifndef AUTOGEN_%s_H
|
---|
110 | #define AUTOGEN_%s_H
|
---|
111 |
|
---|
112 | #ifndef __ASM__
|
---|
113 | %s
|
---|
114 | #endif
|
---|
115 |
|
---|
116 | %s
|
---|
117 |
|
---|
118 | #ifndef __ASM__
|
---|
119 | %s
|
---|
120 | #endif
|
---|
121 |
|
---|
122 | #endif
|
---|
123 | """ % (sys.argv[2], struct['name'].upper(), struct['name'].upper(),
|
---|
124 | generate_includes(struct), generate_defines(lines),
|
---|
125 | generate_struct(struct))
|
---|
126 |
|
---|
127 | return code
|
---|
128 |
|
---|
129 | def filter_pairs(lines):
|
---|
130 | pattern = re.compile("^\tEMITTED_CONSTANT ([A-Z_][A-Z0-9_]*) = \$([0-9]+)$");
|
---|
131 | pairs = []
|
---|
132 | for line in lines:
|
---|
133 | res = pattern.match(line)
|
---|
134 | if res == None:
|
---|
135 | continue
|
---|
136 | pairs = pairs + [res.group(1, 2)]
|
---|
137 | return pairs
|
---|
138 |
|
---|
139 |
|
---|
140 | def run():
|
---|
141 | if len(sys.argv) != 3:
|
---|
142 | usage()
|
---|
143 |
|
---|
144 | with open(sys.argv[2], "rb") as fp:
|
---|
145 | struct = yaml.load(fp)
|
---|
146 |
|
---|
147 | if sys.argv[1] == "probe":
|
---|
148 | code = probe(struct)
|
---|
149 | print(code)
|
---|
150 | elif sys.argv[1] == "generate":
|
---|
151 | lines = sys.stdin.readlines()
|
---|
152 | pairs = filter_pairs(lines)
|
---|
153 | code = generate(struct, pairs)
|
---|
154 | print(code)
|
---|
155 | else:
|
---|
156 | usage()
|
---|
157 |
|
---|
158 | run()
|
---|
159 |
|
---|