Emit runtime type checks in legalizer.rs (#112)

* Emit runtime type checks in legalizer.rs
This commit is contained in:
d1m0
2017-07-10 15:28:32 -07:00
committed by Jakob Stoklund Olesen
parent 464f2625d4
commit 98f822f347
9 changed files with 494 additions and 69 deletions

View File

@@ -10,7 +10,7 @@ from .typevar import TypeVar
from .predicates import IsEqual, And
try:
from typing import Union, Tuple, Sequence, TYPE_CHECKING # noqa
from typing import Union, Tuple, Sequence, TYPE_CHECKING, Dict, List # noqa
if TYPE_CHECKING:
from .operands import ImmediateKind # noqa
from .predicates import PredNode # noqa
@@ -18,6 +18,19 @@ except ImportError:
pass
def replace_var(arg, m):
# type: (Expr, Dict[Var, Var]) -> Expr
"""
Given a var v return either m[v] or a new variable v' (and remember
m[v]=v'). Otherwise return the argument unchanged
"""
if isinstance(arg, Var):
new_arg = m.get(arg, Var(arg.name)) # type: Var
m[arg] = new_arg
return new_arg
return arg
class Def(object):
"""
An AST definition associates a set of variables with the values produced by
@@ -60,6 +73,21 @@ class Def(object):
return "({}) << {!s}".format(
', '.join(map(str, self.defs)), self.expr)
def copy(self, m):
# type: (Dict[Var, Var]) -> Def
"""
Return a copy of this Def with vars replaced with fresh variables,
in accordance with the map m. Update m as neccessary.
"""
new_expr = self.expr.copy(m)
new_defs = [] # type: List[Var]
for v in self.defs:
new_v = replace_var(v, m)
assert(isinstance(new_v, Var))
new_defs.append(new_v)
return Def(tuple(new_defs), new_expr)
class Expr(object):
"""
@@ -303,6 +331,15 @@ class Apply(Expr):
return pred
def copy(self, m):
# type: (Dict[Var, Var]) -> Apply
"""
Return a copy of this Expr with vars replaced with fresh variables,
in accordance with the map m. Update m as neccessary.
"""
return Apply(self.inst, tuple(map(lambda e: replace_var(e, m),
self.args)))
class Enumerator(Expr):
"""