view python/ppci/irmach.py @ 342:86b02c98a717 devel

Moved target directory
author Windel Bouwman
date Sat, 01 Mar 2014 15:40:31 +0100
parents e9fe6988497c
children 3bb7dcfe5529
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), str(cls)
        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