Mercurial > lcfOS
view ide/compiler/compiler.py @ 6:1784af239df4
Added error list
author | windel |
---|---|
date | Fri, 07 Oct 2011 11:20:06 +0200 |
parents | 818f80afa78b |
children | 2db4d2b362e6 |
line wrap: on
line source
import hashlib # Import compiler components: from . import lexer from .parser import Parser from .codegenerator import CodeGenerator from .nodes import ExportedSymbol class Compiler: versie = '0.9.3' def __repr__(self): return 'LCFOS compiler {0}'.format(self.versie) def generateSignature(self, src): return hashlib.md5(bytes(src,encoding='ascii')).hexdigest() def compilesource(self, src): """ Front end that handles the stages: """ self.errorlist = [] # Pass 1: parsing and type checking tokens = lexer.tokenize(src) # Lexical stage p = Parser(tokens) ast = p.parseModule() # Parse a module if len(p.errorlist) > 0: self.errorlist = p.errorlist return # Pass 2: code generation CodeGenerator().generatecode(ast) # Attach a signature: ast.signature = self.generateSignature(src) # Generate exported symbols: ast.exports = [] for proc in ast.procs: if proc.public: sym = ExportedSymbol(proc.name, proc.typ) sym.imageoffset = proc.entrypoint ast.exports.append(sym) return ast