artiq/artiq/compiler/ir.py

448 lines
12 KiB
Python
Raw Normal View History

2015-07-11 23:46:37 +08:00
"""
The :mod:`ir` module contains the intermediate representation
of the ARTIQ compiler.
"""
from . import types, builtins
# Generic SSA IR classes
def escape_name(name):
2015-07-14 11:44:16 +08:00
if all([str.isalnum(x) or x == "." for x in name]):
2015-07-11 23:46:37 +08:00
return name
else:
return "\"{}\"".format(name.replace("\"", "\\\""))
class TSSABasicBlock(types.TMono):
def __init__(self):
super().__init__("ssa.basic_block")
class TSSAOption(types.TMono):
def __init__(self, inner):
super().__init__("ssa.option", {"inner": inner})
class Value:
"""
An SSA value that keeps track of its uses.
:ivar type: (:class:`.types.Type`) type of this value
:ivar uses: (list of :class:`Value`) values that use this value
"""
2015-07-14 01:52:48 +08:00
def __init__(self, typ):
2015-07-11 23:46:37 +08:00
self.uses, self.type = set(), typ
def replace_all_uses_with(self, value):
for user in self.uses:
user.replace_uses_of(self, value)
2015-07-14 11:44:16 +08:00
class Constant(Value):
"""
A constant value.
:ivar value: (None, True or False) value
"""
def __init__(self, value, typ):
super().__init__(typ)
self.value = value
def as_operand(self):
return str(self)
def __str__(self):
return "{} {}".format(types.TypePrinter().name(self.type),
repr(self.value))
2015-07-11 23:46:37 +08:00
class NamedValue(Value):
"""
An SSA value that has a name.
:ivar name: (string) name of this value
:ivar function: (:class:`Function`) function containing this value
"""
2015-07-14 01:52:48 +08:00
def __init__(self, typ, name):
2015-07-11 23:46:37 +08:00
super().__init__(typ)
self.name, self.function = name, None
def set_name(self, new_name):
if self.function is not None:
self.function._remove_name(self.name)
self.name = self.function._add_name(new_name)
else:
self.name = new_name
def _set_function(self, new_function):
if self.function != new_function:
if self.function is not None:
self.function._remove_name(self.name)
self.function = new_function
if self.function is not None:
self.name = self.function._add_name(self.name)
def _detach(self):
self.function = None
def as_operand(self):
return "{} %{}".format(types.TypePrinter().name(self.type),
escape_name(self.name))
class User(NamedValue):
"""
An SSA value that has operands.
:ivar operands: (list of :class:`Value`) operands of this value
"""
2015-07-14 01:52:48 +08:00
def __init__(self, operands, typ, name):
2015-07-11 23:46:37 +08:00
super().__init__(typ, name)
self.operands = []
2015-07-14 01:52:48 +08:00
if operands is not None:
self.set_operands(operands)
2015-07-11 23:46:37 +08:00
def set_operands(self, new_operands):
for operand in self.operands:
operand.uses.remove(self)
self.operands = new_operands
for operand in self.operands:
operand.uses.add(self)
def drop_references(self):
self.set_operands([])
def replace_uses_of(self, value, replacement):
assert value in operands
for index, operand in enumerate(operands):
if operand == value:
operands[index] = replacement
value.uses.remove(self)
replacement.uses.add(self)
class Instruction(User):
"""
An SSA instruction.
"""
2015-07-14 01:52:48 +08:00
def __init__(self, operands, typ, name=""):
super().__init__(operands, typ, name)
2015-07-11 23:46:37 +08:00
self.basic_block = None
def set_basic_block(self, new_basic_block):
self.basic_block = new_basic_block
if self.basic_block is not None:
self._set_function(self.basic_block.function)
else:
self._set_function(None)
def opcode(self):
"""String representation of the opcode."""
return "???"
def _detach(self):
self.set_basic_block(None)
def remove_from_parent(self):
if self.basic_block is not None:
self.basic_block.remove(self)
def erase(self):
self.remove_from_parent()
self.drop_references()
def replace_with(self, value):
self.replace_all_uses_with(value)
if isinstance(value, Instruction):
self.basic_block.replace(self, value)
self.drop_references()
else:
self.erase()
def __str__(self):
if builtins.is_none(self.type):
prefix = ""
else:
prefix = "%{} = {} ".format(escape_name(self.name),
types.TypePrinter().name(self.type))
if any(self.operands):
2015-07-14 11:44:16 +08:00
return "{}{} {}".format(prefix, self.opcode(),
2015-07-11 23:46:37 +08:00
", ".join([operand.as_operand() for operand in self.operands]))
else:
2015-07-14 11:44:16 +08:00
return "{}{}".format(prefix, self.opcode())
2015-07-11 23:46:37 +08:00
class Phi(Instruction):
"""
An SSA instruction that joins data flow.
2015-07-14 01:52:48 +08:00
Use :meth:`incoming` and :meth:`add_incoming` instead of
directly reading :attr:`operands` or calling :meth:`set_operands`.
2015-07-11 23:46:37 +08:00
"""
2015-07-14 01:52:48 +08:00
def __init__(self, typ, name=""):
super().__init__(typ, name)
2015-07-11 23:46:37 +08:00
def opcode(self):
return "phi"
def incoming(self):
operand_iter = iter(self.operands)
while True:
yield next(operand_iter), next(operand_iter)
def incoming_blocks(self):
(block for (block, value) in self.incoming())
def incoming_values(self):
(value for (block, value) in self.incoming())
def incoming_value_for_block(self, target_block):
for (block, value) in self.incoming():
if block == target_block:
return value
assert False
def add_incoming(self, value, block):
assert value.type == self.type
self.operands.append(value)
self.operands.append(block)
def __str__(self):
if builtins.is_none(self.type):
prefix = ""
else:
prefix = "%{} = {} ".format(escape_name(self.name),
types.TypePrinter().name(self.type))
if any(self.operands):
operand_list = ["%{} => %{}".format(escape_name(block.name), escape_name(value.name))
for operand in self.operands]
2015-07-14 11:44:16 +08:00
return "{}{} [{}]".format(prefix, self.opcode(), ", ".join(operand_list))
2015-07-11 23:46:37 +08:00
class Terminator(Instruction):
"""
An SSA instruction that performs control flow.
"""
def successors(self):
2015-07-14 01:52:48 +08:00
return [operand for operand in self.operands if isinstance(operand, BasicBlock)]
2015-07-11 23:46:37 +08:00
class BasicBlock(NamedValue):
"""
A block of instructions with no control flow inside it.
2015-07-14 01:52:48 +08:00
:ivar instructions: (list of :class:`Instruction`)
2015-07-11 23:46:37 +08:00
"""
2015-07-14 01:52:48 +08:00
def __init__(self, instructions, name=""):
2015-07-11 23:46:37 +08:00
super().__init__(TSSABasicBlock(), name)
self.instructions = []
self.set_instructions(instructions)
2015-07-14 01:52:48 +08:00
def set_instructions(self, new_insns):
for insn in self.instructions:
insn.detach()
self.instructions = new_insns
for insn in self.instructions:
insn.set_basic_block(self)
2015-07-11 23:46:37 +08:00
def remove_from_parent(self):
if self.function is not None:
self.function.remove(self)
def prepend(self, insn):
insn.set_basic_block(self)
self.instructions.insert(0, insn)
def append(self, insn):
insn.set_basic_block(self)
self.instructions.append(insn)
2015-07-14 11:44:16 +08:00
return insn
2015-07-11 23:46:37 +08:00
def index(self, insn):
return self.instructions.index(insn)
def insert(self, before, insn):
insn.set_basic_block(self)
self.instructions.insert(self.index(before), insn)
2015-07-14 11:44:16 +08:00
return insn
2015-07-11 23:46:37 +08:00
def remove(self, insn):
insn._detach()
self.instructions.remove(insn)
2015-07-14 11:44:16 +08:00
return insn
2015-07-11 23:46:37 +08:00
def replace(self, insn, replacement):
self.insert(insn, replacement)
self.remove(insn)
2015-07-14 11:44:16 +08:00
def is_terminated(self):
return any(self.instructions) and isinstance(self.instructions[-1], Terminator)
2015-07-11 23:46:37 +08:00
def terminator(self):
2015-07-14 11:44:16 +08:00
assert self.is_terminated()
2015-07-11 23:46:37 +08:00
return self.instructions[-1]
def successors(self):
return self.terminator().successors()
def predecessors(self):
assert self.function is not None
self.function.predecessors_of(self)
def __str__(self):
lines = ["{}:".format(escape_name(self.name))]
for insn in self.instructions:
2015-07-14 11:44:16 +08:00
lines.append(" " + str(insn))
2015-07-11 23:46:37 +08:00
return "\n".join(lines)
class Argument(NamedValue):
"""
A function argument.
"""
def __str__(self):
return self.as_operand()
class Function(Value):
"""
A function containing SSA IR.
"""
def __init__(self, typ, name, arguments):
2015-07-14 01:52:48 +08:00
self.type, self.name = typ, name
self.arguments = []
2015-07-14 11:44:16 +08:00
self.basic_blocks = []
2015-07-11 23:46:37 +08:00
self.names = set()
2015-07-14 01:52:48 +08:00
self.set_arguments(arguments)
2015-07-11 23:46:37 +08:00
def _remove_name(self, name):
self.names.remove(name)
def _add_name(self, base_name):
name, counter = base_name, 1
while name in self.names or name == "":
if base_name == "":
name = str(counter)
else:
name = "{}.{}".format(name, counter)
counter += 1
self.names.add(name)
return name
def set_arguments(self, new_arguments):
for argument in self.arguments:
argument._set_function(None)
self.arguments = new_arguments
for argument in self.arguments:
argument._set_function(self)
def add(self, basic_block):
basic_block._set_function(self)
2015-07-14 11:44:16 +08:00
self.basic_blocks.append(basic_block)
2015-07-11 23:46:37 +08:00
def remove(self, basic_block):
basic_block._detach()
self.basic_block.remove(basic_block)
def predecessors_of(self, successor):
2015-07-14 11:44:16 +08:00
return [block for block in self.basic_blocks if successor in block.successors()]
2015-07-11 23:46:37 +08:00
def as_operand(self):
return "{} @{}".format(types.TypePrinter().name(self.type),
escape_name(self.name))
2015-07-14 01:53:02 +08:00
def __str__(self):
printer = types.TypePrinter()
lines = []
lines.append("{} {}({}) {{ ; type: {}".format(
printer.name(self.type.ret), self.name,
", ".join([arg.as_operand() for arg in self.arguments]),
printer.name(self.type)))
for block in self.basic_blocks:
lines.append(str(block))
lines.append("}")
return "\n".join(lines)
2015-07-11 23:46:37 +08:00
# Python-specific SSA IR classes
2015-07-14 11:44:16 +08:00
class Branch(Terminator):
"""
An unconditional branch instruction.
"""
"""
:param target: (:class:`BasicBlock`) branch target
"""
def __init__(self, target, name=""):
super().__init__([target], builtins.TNone(), name)
def opcode(self):
return "branch"
2015-07-15 03:18:38 +08:00
def target(self):
return self.operands[0]
2015-07-14 11:44:16 +08:00
class BranchIf(Terminator):
"""
A conditional branch instruction.
"""
"""
:param cond: (:class:`Value`) branch condition
:param if_true: (:class:`BasicBlock`) branch target if expression is truthful
:param if_false: (:class:`BasicBlock`) branch target if expression is falseful
"""
def __init__(self, cond, if_true, if_false, name=""):
super().__init__([cond, if_true, if_false], builtins.TNone(), name)
def opcode(self):
return "branch_if"
2015-07-15 03:18:38 +08:00
def condition(self):
return self.operands[0]
def if_true(self):
return self.operands[1]
def if_false(self):
return self.operands[2]
2015-07-14 11:44:16 +08:00
class Return(Terminator):
"""
A return instruction.
"""
"""
:param value: (:class:`Value`) return value
"""
def __init__(self, value, name=""):
super().__init__([value], builtins.TNone(), name)
def opcode(self):
return "return"
2015-07-15 03:18:38 +08:00
def value(self):
return self.operands[0]
2015-07-14 11:44:16 +08:00
class Eval(Instruction):
"""
An instruction that evaluates an AST fragment.
"""
"""
:param ast: (:class:`.asttyped.AST`) return value
"""
def __init__(self, ast, name=""):
super().__init__([], ast.type, name)
self.ast = ast
def opcode(self):
return "eval"
def __str__(self):
return super().__str__() + " `{}`".format(self.ast.loc.source())