Mercurial > lcfOS
annotate python/ppci/c3/codegenerator.py @ 315:084cccaa5deb
Added console and screen
author | Windel Bouwman |
---|---|
date | Sat, 21 Dec 2013 10:03:01 +0100 |
parents | 04cf4d26a3bc |
children | 56e6ff84f646 |
rev | line source |
---|---|
255 | 1 import logging |
301 | 2 from .. import ir |
307 | 3 from .. import irutils |
308 | 4 from . import astnodes as ast |
230 | 5 |
228 | 6 |
307 | 7 class SemanticError(Exception): |
308 | 8 """ Error thrown when a semantic issue is observed """ |
307 | 9 def __init__(self, msg, loc): |
308 | 10 super().__init__() |
307 | 11 self.msg = msg |
12 self.loc = loc | |
13 | |
14 | |
15 class CodeGenerator(irutils.Builder): | |
288 | 16 """ |
274 | 17 Generates intermediate (IR) code from a package. The entry function is |
18 'genModule'. The main task of this part is to rewrite complex control | |
19 structures, such as while and for loops into simple conditional | |
20 jump statements. Also complex conditional statements are simplified. | |
21 Such as 'and' and 'or' statements are rewritten in conditional jumps. | |
22 And structured datatypes are rewritten. | |
307 | 23 |
24 Type checking is done in one run with code generation. | |
274 | 25 """ |
307 | 26 def __init__(self, diag): |
261 | 27 self.logger = logging.getLogger('c3cgen') |
307 | 28 self.diag = diag |
261 | 29 |
217 | 30 def gencode(self, pkg): |
308 | 31 """ Generate code for a single module """ |
268 | 32 self.prepare() |
308 | 33 assert type(pkg) is ast.Package |
307 | 34 self.pkg = pkg |
35 self.intType = pkg.scope['int'] | |
36 self.boolType = pkg.scope['bool'] | |
313 | 37 self.logger.info('Generating ir-code for {}'.format(pkg.name), extra={'c3_ast':pkg}) |
288 | 38 self.varMap = {} # Maps variables to storage locations. |
217 | 39 self.funcMap = {} |
268 | 40 self.m = ir.Module(pkg.name) |
307 | 41 try: |
42 for s in pkg.innerScope.Functions: | |
43 f = self.newFunction(s.name) | |
44 self.funcMap[s] = f | |
45 for v in pkg.innerScope.Variables: | |
46 self.varMap[v] = self.newTemp() | |
47 for s in pkg.innerScope.Functions: | |
308 | 48 self.gen_function(s) |
307 | 49 except SemanticError as e: |
50 self.error(e.msg, e.loc) | |
313 | 51 if self.pkg.ok: |
52 return self.m | |
308 | 53 |
54 def error(self, msg, loc=None): | |
55 self.pkg.ok = False | |
56 self.diag.error(msg, loc) | |
307 | 57 |
58 def checkType(self, t): | |
59 """ Verify the type is correct """ | |
60 t = self.theType(t) | |
174 | 61 |
308 | 62 def gen_function(self, fn): |
268 | 63 # TODO: handle arguments |
64 f = self.funcMap[fn] | |
272 | 65 f.return_value = self.newTemp() |
268 | 66 self.setFunction(f) |
269 | 67 l2 = self.newBlock() |
68 self.emit(ir.Jump(l2)) | |
69 self.setBlock(l2) | |
268 | 70 # generate room for locals: |
174 | 71 |
268 | 72 for sym in fn.innerScope: |
73 # TODO: handle parameters different | |
313 | 74 self.checkType(sym.typ) |
272 | 75 if sym.isParameter: |
308 | 76 variable = ir.Parameter(sym.name) |
77 f.addParameter(variable) | |
274 | 78 elif sym.isLocal: |
308 | 79 variable = ir.LocalVariable(sym.name) |
80 f.addLocal(variable) | |
81 elif isinstance(sym, ast.Variable): | |
82 variable = ir.LocalVariable(sym.name) | |
83 f.addLocal(variable) | |
274 | 84 else: |
275 | 85 raise NotImplementedError('{}'.format(sym)) |
308 | 86 self.varMap[sym] = variable |
268 | 87 |
88 self.genCode(fn.body) | |
272 | 89 self.emit(ir.Move(f.return_value, ir.Const(0))) |
269 | 90 self.emit(ir.Jump(f.epiloog)) |
268 | 91 self.setFunction(None) |
158 | 92 |
217 | 93 def genCode(self, code): |
308 | 94 """ Wrapper around gen_stmt to catch errors """ |
307 | 95 try: |
308 | 96 self.gen_stmt(code) |
307 | 97 except SemanticError as e: |
98 self.error(e.msg, e.loc) | |
99 | |
308 | 100 def gen_stmt(self, code): |
101 """ Generate code for a statement """ | |
102 assert isinstance(code, ast.Statement) | |
268 | 103 self.setLoc(code.loc) |
308 | 104 if type(code) is ast.Compound: |
221 | 105 for s in code.statements: |
106 self.genCode(s) | |
308 | 107 elif type(code) is ast.Empty: |
306 | 108 pass |
308 | 109 elif type(code) is ast.Assignment: |
268 | 110 lval = self.genExprCode(code.lval) |
307 | 111 rval = self.genExprCode(code.rval) |
112 if not self.equalTypes(code.lval.typ, code.rval.typ): | |
315 | 113 msg = 'Cannot assign {} to {}'.format(code.rval.typ, code.lval.typ) |
307 | 114 raise SemanticError(msg, code.loc) |
115 if not code.lval.lvalue: | |
116 raise SemanticError('No valid lvalue {}'.format(code.lval), code.lval.loc) | |
268 | 117 self.emit(ir.Move(lval, rval)) |
308 | 118 elif type(code) is ast.ExpressionStatement: |
275 | 119 self.emit(ir.Exp(self.genExprCode(code.ex))) |
308 | 120 elif type(code) is ast.If: |
268 | 121 bbtrue = self.newBlock() |
122 bbfalse = self.newBlock() | |
123 te = self.newBlock() | |
308 | 124 self.gen_cond_code(code.condition, bbtrue, bbfalse) |
268 | 125 self.setBlock(bbtrue) |
126 self.genCode(code.truestatement) | |
127 self.emit(ir.Jump(te)) | |
128 self.setBlock(bbfalse) | |
306 | 129 self.genCode(code.falsestatement) |
268 | 130 self.emit(ir.Jump(te)) |
131 self.setBlock(te) | |
308 | 132 elif type(code) is ast.Return: |
303 | 133 re = self.genExprCode(code.expr) |
134 self.emit(ir.Move(self.fn.return_value, re)) | |
135 self.emit(ir.Jump(self.fn.epiloog)) | |
136 b = self.newBlock() | |
137 self.setBlock(b) | |
308 | 138 elif type(code) is ast.While: |
268 | 139 bbdo = self.newBlock() |
140 bbtest = self.newBlock() | |
141 te = self.newBlock() | |
142 self.emit(ir.Jump(bbtest)) | |
143 self.setBlock(bbtest) | |
308 | 144 self.gen_cond_code(code.condition, bbdo, te) |
268 | 145 self.setBlock(bbdo) |
228 | 146 self.genCode(code.statement) |
268 | 147 self.emit(ir.Jump(bbtest)) |
148 self.setBlock(te) | |
315 | 149 elif type(code) is ast.For: |
150 bbdo = self.newBlock() | |
151 bbtest = self.newBlock() | |
152 te = self.newBlock() | |
153 self.genCode(code.init) | |
154 self.emit(ir.Jump(bbtest)) | |
155 self.setBlock(bbtest) | |
156 self.gen_cond_code(code.condition, bbdo, te) | |
157 self.setBlock(bbdo) | |
158 self.genCode(code.statement) | |
159 self.emit(ir.Jump(bbtest)) | |
160 self.setBlock(te) | |
222 | 161 else: |
268 | 162 raise NotImplementedError('Unknown stmt {}'.format(code)) |
230 | 163 |
308 | 164 def gen_cond_code(self, expr, bbtrue, bbfalse): |
165 """ Generate conditional logic. | |
166 Implement sequential logical operators. """ | |
167 if type(expr) is ast.Binop: | |
268 | 168 if expr.op == 'or': |
169 l2 = self.newBlock() | |
308 | 170 self.gen_cond_code(expr.a, bbtrue, l2) |
171 if not self.equalTypes(expr.a.typ, self.boolType): | |
307 | 172 raise SemanticError('Must be boolean', expr.a.loc) |
268 | 173 self.setBlock(l2) |
308 | 174 self.gen_cond_code(expr.b, bbtrue, bbfalse) |
175 if not self.equalTypes(expr.b.typ, self.boolType): | |
307 | 176 raise SemanticError('Must be boolean', expr.b.loc) |
268 | 177 elif expr.op == 'and': |
178 l2 = self.newBlock() | |
308 | 179 self.gen_cond_code(expr.a, l2, bbfalse) |
180 if not self.equalTypes(expr.a.typ, self.boolType): | |
307 | 181 self.error('Must be boolean', expr.a.loc) |
268 | 182 self.setBlock(l2) |
308 | 183 self.gen_cond_code(expr.b, bbtrue, bbfalse) |
184 if not self.equalTypes(expr.b.typ, self.boolType): | |
307 | 185 raise SemanticError('Must be boolean', expr.b.loc) |
305 | 186 elif expr.op in ['==', '>', '<', '!=', '<=', '>=']: |
228 | 187 ta = self.genExprCode(expr.a) |
188 tb = self.genExprCode(expr.b) | |
307 | 189 if not self.equalTypes(expr.a.typ, expr.b.typ): |
190 raise SemanticError('Types unequal {} != {}' | |
191 .format(expr.a.typ, expr.b.typ), expr.loc) | |
268 | 192 self.emit(ir.CJump(ta, expr.op, tb, bbtrue, bbfalse)) |
193 else: | |
311 | 194 raise SemanticError('non-bool: {}'.format(expr.op), expr.loc) |
307 | 195 expr.typ = self.boolType |
308 | 196 elif type(expr) is ast.Literal: |
197 self.genExprCode(expr) | |
288 | 198 if expr.val: |
268 | 199 self.emit(ir.Jump(bbtrue)) |
288 | 200 else: |
268 | 201 self.emit(ir.Jump(bbfalse)) |
228 | 202 else: |
288 | 203 raise NotImplementedError('Unknown cond {}'.format(expr)) |
307 | 204 if not self.equalTypes(expr.typ, self.boolType): |
205 self.error('Condition must be boolean', expr.loc) | |
230 | 206 |
217 | 207 def genExprCode(self, expr): |
308 | 208 """ Generate code for an expression. Return the generated ir-value """ |
209 assert isinstance(expr, ast.Expression) | |
210 if type(expr) is ast.Binop: | |
307 | 211 expr.lvalue = False |
212 if expr.op in ['+', '-', '*', '/', '<<', '>>', '|', '&']: | |
213 ra = self.genExprCode(expr.a) | |
214 rb = self.genExprCode(expr.b) | |
215 if self.equalTypes(expr.a.typ, self.intType) and \ | |
216 self.equalTypes(expr.b.typ, self.intType): | |
217 expr.typ = expr.a.typ | |
218 else: | |
219 raise SemanticError('Can only add integers', expr.loc) | |
220 else: | |
221 raise NotImplementedError("Cannot use equality as expressions") | |
268 | 222 return ir.Binop(ra, expr.op, rb) |
308 | 223 elif type(expr) is ast.Unop: |
307 | 224 if expr.op == '&': |
225 ra = self.genExprCode(expr.a) | |
308 | 226 expr.typ = ast.PointerType(expr.a.typ) |
307 | 227 if not expr.a.lvalue: |
228 raise SemanticError('No valid lvalue', expr.a.loc) | |
229 expr.lvalue = False | |
230 assert type(ra) is ir.Mem | |
231 return ra.e | |
232 else: | |
233 raise NotImplementedError('Unknown unop {0}'.format(expr.op)) | |
308 | 234 elif type(expr) is ast.Identifier: |
307 | 235 # Generate code for this identifier. |
236 tg = self.resolveSymbol(expr) | |
237 expr.kind = type(tg) | |
238 expr.typ = tg.typ | |
279 | 239 # This returns the dereferenced variable. |
308 | 240 if isinstance(tg, ast.Variable): |
313 | 241 expr.lvalue = True |
307 | 242 return ir.Mem(self.varMap[tg]) |
313 | 243 elif isinstance(tg, ast.Constant): |
244 c_val = self.genExprCode(tg.value) | |
245 return self.evalConst(c_val) | |
280
02385f62f250
Rework from str interface to Instruction interface
Windel Bouwman
parents:
279
diff
changeset
|
246 else: |
308 | 247 raise NotImplementedError(str(tg)) |
248 elif type(expr) is ast.Deref: | |
222 | 249 # dereference pointer type: |
225 | 250 addr = self.genExprCode(expr.ptr) |
307 | 251 ptr_typ = self.theType(expr.ptr.typ) |
252 expr.lvalue = True | |
308 | 253 if type(ptr_typ) is ast.PointerType: |
307 | 254 expr.typ = ptr_typ.ptype |
255 return ir.Mem(addr) | |
256 else: | |
257 raise SemanticError('Cannot deref non-pointer', expr.loc) | |
308 | 258 elif type(expr) is ast.Member: |
279 | 259 base = self.genExprCode(expr.base) |
307 | 260 expr.lvalue = expr.base.lvalue |
261 basetype = self.theType(expr.base.typ) | |
308 | 262 if type(basetype) is ast.StructureType: |
307 | 263 if basetype.hasField(expr.field): |
264 expr.typ = basetype.fieldType(expr.field) | |
265 else: | |
266 raise SemanticError('{} does not contain field {}' | |
308 | 267 .format(basetype, expr.field), expr.loc) |
307 | 268 else: |
308 | 269 raise SemanticError('Cannot select {} of non-structure type {}' |
270 .format(expr.field, basetype), expr.loc) | |
307 | 271 |
279 | 272 assert type(base) is ir.Mem, type(base) |
307 | 273 bt = self.theType(expr.base.typ) |
268 | 274 offset = ir.Const(bt.fieldOffset(expr.field)) |
308 | 275 return ir.Mem(ir.Add(base.e, offset)) |
276 elif type(expr) is ast.Literal: | |
307 | 277 expr.lvalue = False |
313 | 278 typemap = {int: 'int', float: 'double', bool: 'bool', str:'string'} |
307 | 279 if type(expr.val) in typemap: |
280 expr.typ = self.pkg.scope[typemap[type(expr.val)]] | |
281 else: | |
312 | 282 raise SemanticError('Unknown literal type {}'.format(expr.val), expr.loc) |
268 | 283 return ir.Const(expr.val) |
308 | 284 elif type(expr) is ast.TypeCast: |
285 return self.gen_type_cast(expr) | |
286 elif type(expr) is ast.FunctionCall: | |
287 return self.gen_function_call(expr) | |
225 | 288 else: |
259 | 289 raise NotImplementedError('Unknown expr {}'.format(expr)) |
307 | 290 |
308 | 291 def gen_type_cast(self, expr): |
292 """ Generate code for type casting """ | |
293 ar = self.genExprCode(expr.a) | |
294 from_type = self.theType(expr.a.typ) | |
295 to_type = self.theType(expr.to_type) | |
296 if isinstance(from_type, ast.PointerType) and isinstance(to_type, ast.PointerType): | |
297 expr.typ = expr.to_type | |
298 return ar | |
299 elif type(from_type) is ast.BaseType and from_type.name == 'int' and \ | |
300 isinstance(to_type, ast.PointerType): | |
301 expr.typ = expr.to_type | |
302 return ar | |
303 else: | |
304 raise SemanticError('Cannot cast {} to {}' | |
305 .format(from_type, to_type), expr.loc) | |
306 | |
307 def gen_function_call(self, expr): | |
308 """ Generate code for a function call """ | |
309 # Evaluate the arguments: | |
310 args = [self.genExprCode(e) for e in expr.args] | |
311 # Check arguments: | |
312 tg = self.resolveSymbol(expr.proc) | |
313 if type(tg) is not ast.Function: | |
314 raise SemanticError('cannot call {}'.format(tg)) | |
315 ftyp = tg.typ | |
316 fname = tg.name | |
317 ptypes = ftyp.parametertypes | |
318 if len(expr.args) != len(ptypes): | |
319 raise SemanticError('{} requires {} arguments, {} given' | |
320 .format(fname, len(ptypes), len(expr.args)), expr.loc) | |
321 for arg, at in zip(expr.args, ptypes): | |
322 if not self.equalTypes(arg.typ, at): | |
323 raise SemanticError('Got {}, expected {}' | |
324 .format(arg.typ, at), arg.loc) | |
325 # determine return type: | |
326 expr.typ = ftyp.returntype | |
327 return ir.Call(fname, args) | |
328 | |
313 | 329 def evalConst(self, c): |
330 if isinstance(c, ir.Const): | |
331 return c | |
332 else: | |
333 raise SemanticError('Cannot evaluate constant {}'.format(c)) | |
334 | |
307 | 335 def resolveSymbol(self, sym): |
308 | 336 if type(sym) is ast.Member: |
307 | 337 base = self.resolveSymbol(sym.base) |
308 | 338 if type(base) is not ast.Package: |
339 raise SemanticError('Base is not a package', sym.loc) | |
307 | 340 scope = base.innerScope |
341 name = sym.field | |
308 | 342 elif type(sym) is ast.Identifier: |
307 | 343 scope = sym.scope |
344 name = sym.target | |
345 else: | |
346 raise NotImplementedError(str(sym)) | |
347 if name in scope: | |
348 s = scope[name] | |
349 else: | |
350 raise SemanticError('{} undefined'.format(name), sym.loc) | |
308 | 351 assert isinstance(s, ast.Symbol) |
307 | 352 return s |
353 | |
354 def theType(self, t): | |
355 """ Recurse until a 'real' type is found """ | |
308 | 356 if type(t) is ast.DefinedType: |
307 | 357 t = self.theType(t.typ) |
308 | 358 elif type(t) in [ast.Identifier, ast.Member]: |
307 | 359 t = self.theType(self.resolveSymbol(t)) |
308 | 360 elif isinstance(t, ast.Type): |
307 | 361 pass |
362 else: | |
363 raise NotImplementedError(str(t)) | |
308 | 364 assert isinstance(t, ast.Type) |
307 | 365 return t |
366 | |
367 def equalTypes(self, a, b): | |
368 """ Compare types a and b for structural equavalence. """ | |
369 # Recurse into named types: | |
370 a = self.theType(a) | |
371 b = self.theType(b) | |
308 | 372 assert isinstance(a, ast.Type) |
373 assert isinstance(b, ast.Type) | |
307 | 374 |
375 if type(a) is type(b): | |
308 | 376 if type(a) is ast.BaseType: |
307 | 377 return a.name == b.name |
308 | 378 elif type(a) is ast.PointerType: |
307 | 379 return self.equalTypes(a.ptype, b.ptype) |
308 | 380 elif type(a) is ast.StructureType: |
307 | 381 if len(a.mems) != len(b.mems): |
382 return False | |
383 return all(self.equalTypes(am.typ, bm.typ) for am, bm in | |
384 zip(a.mems, b.mems)) | |
385 else: | |
386 raise NotImplementedError('{} not implemented'.format(type(a))) | |
387 return False |