git @ Cat's Eye Technologies Castile / a699b21
Deal with types in C backend more fully; "only" 30 failures now. catseye 12 years ago
2 changed file(s) with 51 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
00 # nascent! embryonic! inchoate! alpha! wip!
1 from castile.types import *
2 from castile.transformer import VarDeclTypeAssigner
13
24 OPS = {
35 }
68 class Compiler(object):
79 def __init__(self, out):
810 self.out = out
11 self.main_type = None
912
1013 def commas(self, asts, sep=','):
1114 if asts:
1518 self.compile(asts[-1])
1619
1720 def c_type(self, type):
18 return 'int'
21 if type == Integer():
22 return 'int'
23 elif type == String():
24 return 'char *'
25 elif type == Void():
26 return 'void'
27 elif isinstance(type, Struct):
28 return 'struct %s *' % type.name
29 elif isinstance(type, Function):
30 # oh dear
31 return 'void *'
32 elif isinstance(type, Union):
33 # oh dear
34 return 'void *'
35 else:
36 raise NotImplementedError(type)
1937
2038 def compile(self, ast):
2139 if ast.tag == 'Program':
40 g = VarDeclTypeAssigner()
41 g.assign_types(ast)
2242 self.out.write(r"""
2343 /* AUTOMATICALLY GENERATED -- EDIT AT OWN RISK */
2444
2545 #include <stdio.h>
46 #include <stdlib.h>
2647
2748 void print(char *s)
2849 {
3253 """)
3354 for child in ast.children:
3455 self.compile(child)
35 self.out.write(r"""
56 if self.main_type == Void():
57 self.out.write(r"""
58
59 int main(int argc, char **argv)
60 {
61 castile_main();
62 return 0;
63 }
64
65 """)
66 if self.main_type == Integer():
67 self.out.write(r"""
3668
3769 int main(int argc, char **argv)
3870 {
4779 name = ast.value
4880 if name == 'main':
4981 name = 'castile_main'
82 self.main_type = thing.type.return_type
5083 if thing.tag == 'FunLit':
5184 self.out.write('%s %s' % (self.c_type(thing.type.return_type), name))
5285 self.compile(ast.children[0])
5790 elif ast.tag == 'Forward':
5891 self.out.write('extern %s;\n' % ast.value)
5992 elif ast.tag == 'StructDefn':
60 self.out.write('struct %s {}\n' % ast.value)
93 self.out.write('struct %s {' % ast.value)
94 for child in ast.children:
95 self.compile(child)
96 self.out.write('};\n')
97 elif ast.tag == 'FieldDefn':
98 self.out.write('%s %s;\n' % (self.c_type(ast.children[0].type), ast.value))
6199 elif ast.tag == 'FunLit':
62100 self.out.write('(')
63101 self.compile(ast.children[0])
135173 self.out.write(' = ')
136174 self.compile(ast.children[1])
137175 elif ast.tag == 'Make':
138 self.out.write('malloc()<--{')
176 self.out.write('&(struct %s){ ' % ast.type.name)
139177 self.commas(ast.children[1:])
140 self.out.write('}')
178 self.out.write(' }')
141179 elif ast.tag == 'FieldInit':
142 self.out.write("'%s'," % ast.value)
143 self.compile(ast.children[0])
180 self.commas(ast.children)
144181 elif ast.tag == 'Index':
145182 self.compile(ast.children[0])
146 self.out.write('["%s"]' % ast.value)
183 self.out.write('->%s' % ast.value)
147184 elif ast.tag == 'TypeCast':
148 self.out.write("['%s'," % str(ast.children[0].type))
149 self.compile(ast.children[0])
150 self.out.write(']')
185 self.out.write('tag("%s",' % str(ast.children[0].type))
186 self.compile(ast.children[0])
187 self.out.write(')')
151188 elif ast.tag == 'TypeCase':
152189 self.out.write('if (')
153190 self.compile(ast.children[0])
6767 self.current_funlit = None
6868
6969 def find_vardecl(self, name):
70 vardecls = self.current_funlit.children[0]
70 body = self.current_funlit.children[1]
71 assert body.tag == 'Body'
72 vardecls = body.children[0]
7173 assert vardecls.tag == 'VarDecls'
7274 for child in vardecls.children:
7375 if child.value == name: