Mercurial > lcfOS
view python/ppci/irmach.py @ 341:4d204f6f7d4e devel
Rewrite of assembler parts
author | Windel Bouwman |
---|---|
date | Fri, 28 Feb 2014 18:07:14 +0100 |
parents | e9fe6988497c |
children | 86b02c98a717 |
line wrap: on
line source
""" Abstract assembly language instructions. This is the second intermediate representation. Instructions are selected and scheduled at this stage. """ from target import Instruction class Frame: """ Activation record abstraction. This class contains a flattened function. Instructions are selected and scheduled at this stage. Frames differ per machine. """ def __init__(self, name): self.name = name self.instructions = [] self.stacksize = 0 def __repr__(self): return 'Frame {}'.format(self.name) def lower_to(self, outs): for im in self.instructions: if isinstance(im.assem, Instruction): outs.emit(im.assem) else: outs.emit(im.assem.fromim(im)) class AbstractInstruction: """ Abstract machine instruction class. This is a very simple abstraction of machine instructions. """ def __init__(self, cls, ops=(), src=(), dst=(), jumps=(), others=(), ismove=False): assert type(cls) is type or isinstance(cls, Instruction) self.assem = cls self.ops = tuple(ops) self.src = tuple(src) self.dst = tuple(dst) self.jumps = tuple(jumps) self.others = tuple(others) self.ismove = ismove def __repr__(self): return self.render() def render(self): """ Substitutes source, dst and labels in the string """ if isinstance(self.assem, Instruction): x = str(self.assem) else: cn = self.assem.__name__ x = '{}, def={}, use={}, other={}' x = x.format(cn, self.dst, self.src, self.others) return x makeIns = AbstractInstruction