2020-06-10 08:16:36 +08:00
|
|
|
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
# See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
"""
|
|
|
|
Importers for populating MLIR from AST.
|
|
|
|
"""
|
|
|
|
import ast
|
|
|
|
import sys
|
2020-06-26 14:10:58 +08:00
|
|
|
import traceback
|
2020-06-10 08:16:36 +08:00
|
|
|
|
2020-12-30 05:22:18 +08:00
|
|
|
from mlir import ir as _ir
|
|
|
|
from mlir.dialects import std as std_ops
|
|
|
|
|
|
|
|
from npcomp import _cext
|
|
|
|
from npcomp.dialects import basicpy as basicpy_ops
|
2020-06-10 08:16:36 +08:00
|
|
|
|
2020-11-11 10:03:25 +08:00
|
|
|
from ..utils import logging
|
2020-06-29 07:52:25 +08:00
|
|
|
from .interfaces import *
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
"FunctionContext",
|
|
|
|
"FunctionDefImporter",
|
|
|
|
"ExpressionImporter",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
class FunctionContext:
|
|
|
|
"""Accounting information for importing a function."""
|
|
|
|
__slots__ = [
|
2020-12-30 05:22:18 +08:00
|
|
|
"ic",
|
2020-06-10 08:16:36 +08:00
|
|
|
"ir_f",
|
2020-12-30 05:22:18 +08:00
|
|
|
"filename",
|
2020-06-23 09:15:56 +08:00
|
|
|
"environment",
|
2020-06-10 08:16:36 +08:00
|
|
|
]
|
|
|
|
|
2020-12-30 05:22:18 +08:00
|
|
|
def __init__(self, *, ic: ImportContext, ir_f: _ir.Operation, filename: str,
|
|
|
|
environment: Environment):
|
|
|
|
self.ic = ic
|
2020-06-10 08:16:36 +08:00
|
|
|
self.ir_f = ir_f
|
2020-12-30 05:22:18 +08:00
|
|
|
self.filename = filename
|
2020-06-23 09:15:56 +08:00
|
|
|
self.environment = environment
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
def abort(self, message):
|
|
|
|
"""Emits an error diagnostic and raises an exception to abort."""
|
|
|
|
loc = self.current_loc
|
2020-12-30 05:22:18 +08:00
|
|
|
_cext.emit_error(loc, message)
|
2020-06-10 08:16:36 +08:00
|
|
|
raise EmittedError(loc, message)
|
|
|
|
|
2020-06-27 04:50:51 +08:00
|
|
|
def check_partial_evaluated(self, result: PartialEvalResult):
|
|
|
|
"""Checks that a PartialEvalResult has evaluated without error."""
|
|
|
|
if result.type == PartialEvalType.ERROR:
|
2020-06-30 08:48:17 +08:00
|
|
|
exc_type, exc_value, tb = result.yields
|
2020-06-26 14:10:58 +08:00
|
|
|
loc = self.current_loc
|
2020-06-30 08:48:17 +08:00
|
|
|
if issubclass(exc_type, UserReportableError):
|
|
|
|
message = exc_value.message
|
|
|
|
else:
|
|
|
|
message = ("Error while evaluating value from environment:\n" +
|
|
|
|
"".join(traceback.format_exception(exc_type, exc_value, tb)))
|
2020-12-30 05:22:18 +08:00
|
|
|
|
|
|
|
# TODO: Add this to the python API.
|
|
|
|
_cext.emit_error(loc, message)
|
2020-06-26 14:10:58 +08:00
|
|
|
raise EmittedError(loc, message)
|
2020-06-27 04:50:51 +08:00
|
|
|
if result.type == PartialEvalType.NOT_EVALUATED:
|
2020-06-26 14:10:58 +08:00
|
|
|
self.abort("Unable to evaluate expression")
|
|
|
|
|
2020-06-10 08:16:36 +08:00
|
|
|
@property
|
|
|
|
def current_loc(self):
|
2020-12-30 05:22:18 +08:00
|
|
|
return self.ic.loc
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
def update_loc(self, ast_node):
|
2020-12-30 05:22:18 +08:00
|
|
|
self.ic.set_file_line_col(self.filename, ast_node.lineno,
|
|
|
|
ast_node.col_offset)
|
2020-06-10 08:16:36 +08:00
|
|
|
|
2020-06-23 09:15:56 +08:00
|
|
|
def lookup_name(self, name) -> NameReference:
|
2020-06-26 14:10:58 +08:00
|
|
|
"""Lookup a name in the environment, requiring it to have evaluated."""
|
2020-06-29 07:52:25 +08:00
|
|
|
ref = self.environment.resolve_name(name)
|
2020-06-23 09:15:56 +08:00
|
|
|
if ref is None:
|
|
|
|
self.abort("Could not resolve referenced name '{}'".format(name))
|
|
|
|
logging.debug("Map name({}) -> {}", name, ref)
|
|
|
|
return ref
|
2020-06-10 08:16:36 +08:00
|
|
|
|
2020-12-30 05:22:18 +08:00
|
|
|
def emit_const_value(self, py_value) -> _ir.Value:
|
2020-06-26 14:10:58 +08:00
|
|
|
"""Codes a value as a constant, returning an ir Value."""
|
|
|
|
env = self.environment
|
2020-06-29 07:52:25 +08:00
|
|
|
result = env.code_py_value_as_const(py_value)
|
2020-06-26 14:10:58 +08:00
|
|
|
if result is NotImplemented:
|
|
|
|
self.abort("Cannot code python value as constant: {}".format(py_value))
|
|
|
|
return result
|
|
|
|
|
2020-06-27 04:50:51 +08:00
|
|
|
def emit_partial_eval_result(self,
|
2020-12-30 05:22:18 +08:00
|
|
|
partial_result: PartialEvalResult) -> _ir.Value:
|
2020-06-27 04:50:51 +08:00
|
|
|
"""Emits a partial eval result either as a direct IR value or a constant."""
|
|
|
|
self.check_partial_evaluated(partial_result)
|
|
|
|
if partial_result.type == PartialEvalType.YIELDS_IR_VALUE:
|
2020-06-26 14:10:58 +08:00
|
|
|
# Return directly.
|
2020-06-27 04:50:51 +08:00
|
|
|
return partial_result.yields
|
|
|
|
elif partial_result.type == PartialEvalType.YIELDS_LIVE_VALUE:
|
2020-06-26 14:10:58 +08:00
|
|
|
# Import constant.
|
2020-06-27 04:50:51 +08:00
|
|
|
return self.emit_const_value(partial_result.yields.live_value)
|
2020-06-26 14:10:58 +08:00
|
|
|
else:
|
2020-06-27 04:50:51 +08:00
|
|
|
self.abort("Unhandled partial eval result type {}".format(partial_result))
|
2020-06-26 14:10:58 +08:00
|
|
|
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
class BaseNodeVisitor(ast.NodeVisitor):
|
|
|
|
"""Base class of a node visitor that aborts on unhandled nodes."""
|
|
|
|
IMPORTER_TYPE = "<unknown>"
|
2020-06-27 04:50:51 +08:00
|
|
|
__slots__ = [
|
|
|
|
"fctx",
|
|
|
|
]
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
def __init__(self, fctx):
|
|
|
|
super().__init__()
|
|
|
|
self.fctx = fctx
|
|
|
|
|
|
|
|
def visit(self, node):
|
|
|
|
self.fctx.update_loc(node)
|
|
|
|
return super().visit(node)
|
|
|
|
|
|
|
|
def generic_visit(self, ast_node):
|
|
|
|
logging.debug("UNHANDLED NODE: {}", ast.dump(ast_node))
|
|
|
|
self.fctx.abort("unhandled python %s AST node '%s'" %
|
|
|
|
(self.IMPORTER_TYPE, ast_node.__class__.__name__))
|
|
|
|
|
|
|
|
|
|
|
|
class FunctionDefImporter(BaseNodeVisitor):
|
|
|
|
"""AST visitor for importing a function's statements.
|
|
|
|
|
|
|
|
Handles nodes that are direct children of a FunctionDef.
|
|
|
|
"""
|
|
|
|
IMPORTER_TYPE = "statement"
|
2020-06-27 04:50:51 +08:00
|
|
|
__slots__ = [
|
|
|
|
"ast_fd",
|
|
|
|
"_last_was_return",
|
|
|
|
]
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
def __init__(self, fctx, ast_fd):
|
|
|
|
super().__init__(fctx)
|
|
|
|
self.ast_fd = ast_fd
|
2020-06-10 09:34:07 +08:00
|
|
|
self._last_was_return = False
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
def import_body(self):
|
2020-12-30 05:22:18 +08:00
|
|
|
ic = self.fctx.ic
|
2020-06-10 08:16:36 +08:00
|
|
|
for ast_stmt in self.ast_fd.body:
|
2020-06-10 09:34:07 +08:00
|
|
|
self._last_was_return = False
|
2020-06-10 08:16:36 +08:00
|
|
|
logging.debug("STMT: {}", ast.dump(ast_stmt, include_attributes=True))
|
|
|
|
self.visit(ast_stmt)
|
2020-06-10 09:34:07 +08:00
|
|
|
if not self._last_was_return:
|
|
|
|
# Add a default terminator.
|
2020-12-30 05:22:18 +08:00
|
|
|
none_value = basicpy_ops.SingletonOp(ic.none_type, loc=ic.loc,
|
|
|
|
ip=ic.ip).result
|
|
|
|
none_cast = basicpy_ops.UnknownCastOp(ic.unknown_type,
|
|
|
|
none_value,
|
|
|
|
loc=ic.loc,
|
|
|
|
ip=ic.ip).result
|
|
|
|
std_ops.ReturnOp([none_cast], loc=ic.loc, ip=ic.ip)
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
def visit_Assign(self, ast_node):
|
|
|
|
expr = ExpressionImporter(self.fctx)
|
|
|
|
expr.visit(ast_node.value)
|
|
|
|
for target in ast_node.targets:
|
|
|
|
self.fctx.update_loc(target)
|
|
|
|
if not isinstance(target.ctx, ast.Store):
|
|
|
|
# TODO: Del, AugStore, etc
|
|
|
|
self.fctx.abort("Unsupported assignment context type %s" %
|
|
|
|
target.ctx.__class__.__name__)
|
2020-06-23 09:15:56 +08:00
|
|
|
name_ref = self.fctx.lookup_name(target.id)
|
|
|
|
try:
|
|
|
|
name_ref.store(self.fctx.environment, expr.value)
|
|
|
|
logging.debug("STORE: {} <- {}", name_ref, expr.value)
|
|
|
|
except NotImplementedError:
|
|
|
|
self.fctx.abort(
|
|
|
|
"Cannot assign to '{}': Store not supported".format(name_ref))
|
2020-06-10 08:16:36 +08:00
|
|
|
|
2020-06-10 09:34:07 +08:00
|
|
|
def visit_Expr(self, ast_node):
|
2020-12-30 05:22:18 +08:00
|
|
|
ic = self.fctx.ic
|
|
|
|
exec_ip = ic.basicpy_ExecOp()
|
|
|
|
|
2020-06-10 09:34:07 +08:00
|
|
|
# Evaluate the expression in the exec body.
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.push_ip(exec_ip)
|
2020-06-10 09:34:07 +08:00
|
|
|
expr = ExpressionImporter(self.fctx)
|
|
|
|
expr.visit(ast_node.value)
|
2020-12-30 05:22:18 +08:00
|
|
|
basicpy_ops.ExecDiscardOp([expr.value], loc=ic.loc, ip=ic.ip)
|
|
|
|
ic.pop_ip()
|
2020-06-10 09:34:07 +08:00
|
|
|
|
|
|
|
def visit_Pass(self, ast_node):
|
|
|
|
pass
|
|
|
|
|
2020-06-10 08:16:36 +08:00
|
|
|
def visit_Return(self, ast_node):
|
2020-12-30 05:22:18 +08:00
|
|
|
ic = self.fctx.ic
|
|
|
|
with ic.loc, ic.ip:
|
|
|
|
expr = ExpressionImporter(self.fctx)
|
|
|
|
expr.visit(ast_node.value)
|
|
|
|
casted = basicpy_ops.UnknownCastOp(ic.unknown_type, expr.value).result
|
|
|
|
std_ops.ReturnOp([casted])
|
|
|
|
self._last_was_return = True
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ExpressionImporter(BaseNodeVisitor):
|
2020-06-26 14:10:58 +08:00
|
|
|
"""Imports expression nodes.
|
|
|
|
|
|
|
|
Visitor methods should either raise an exception or set self.value to the
|
|
|
|
IR value that the expression lowers to.
|
|
|
|
"""
|
2020-06-10 08:16:36 +08:00
|
|
|
IMPORTER_TYPE = "expression"
|
2020-06-27 04:50:51 +08:00
|
|
|
__slots__ = [
|
|
|
|
"value",
|
|
|
|
]
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
def __init__(self, fctx):
|
|
|
|
super().__init__(fctx)
|
|
|
|
self.value = None
|
|
|
|
|
|
|
|
def visit(self, node):
|
|
|
|
super().visit(node)
|
|
|
|
assert self.value, ("ExpressionImporter did not assign a value (%r)" %
|
|
|
|
(ast.dump(node),))
|
|
|
|
|
|
|
|
def sub_evaluate(self, sub_node):
|
|
|
|
sub_importer = ExpressionImporter(self.fctx)
|
|
|
|
sub_importer.visit(sub_node)
|
|
|
|
return sub_importer.value
|
|
|
|
|
|
|
|
def emit_constant(self, value):
|
2020-06-23 09:15:56 +08:00
|
|
|
env = self.fctx.environment
|
2020-06-29 07:52:25 +08:00
|
|
|
ir_const_value = env.code_py_value_as_const(value)
|
2020-06-23 09:15:56 +08:00
|
|
|
if ir_const_value is NotImplemented:
|
2020-06-10 08:16:36 +08:00
|
|
|
self.fctx.abort("unknown constant type '%r'" % (value,))
|
2020-06-23 09:15:56 +08:00
|
|
|
self.value = ir_const_value
|
2020-06-10 08:16:36 +08:00
|
|
|
|
2020-06-26 14:10:58 +08:00
|
|
|
def visit_Attribute(self, ast_node):
|
2020-06-27 04:50:51 +08:00
|
|
|
# Import the attribute's value recursively as a partial eval if possible.
|
|
|
|
pe_importer = PartialEvalImporter(self.fctx)
|
|
|
|
pe_importer.visit(ast_node)
|
|
|
|
if pe_importer.partial_eval_result:
|
|
|
|
self.fctx.check_partial_evaluated(pe_importer.partial_eval_result)
|
|
|
|
self.value = self.fctx.emit_partial_eval_result(
|
|
|
|
pe_importer.partial_eval_result)
|
2020-06-26 14:10:58 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
self.fctx.abort("unhandled attribute access mode: {}".format(
|
|
|
|
ast.dump(ast_node)))
|
|
|
|
|
2020-06-10 08:16:36 +08:00
|
|
|
def visit_BinOp(self, ast_node):
|
2020-12-30 05:22:18 +08:00
|
|
|
ic = self.fctx.ic
|
2020-06-10 08:16:36 +08:00
|
|
|
left = self.sub_evaluate(ast_node.left)
|
|
|
|
right = self.sub_evaluate(ast_node.right)
|
2020-12-30 05:22:18 +08:00
|
|
|
self.value = basicpy_ops.BinaryExprOp(ic.unknown_type,
|
|
|
|
left,
|
|
|
|
right,
|
|
|
|
_ir.StringAttr.get(
|
|
|
|
ast_node.op.__class__.__name__,
|
|
|
|
context=ic.context),
|
|
|
|
ip=ic.ip,
|
|
|
|
loc=ic.loc).result
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
def visit_BoolOp(self, ast_node):
|
2020-12-30 05:22:18 +08:00
|
|
|
ic = self.fctx.ic
|
2020-06-10 08:16:36 +08:00
|
|
|
if isinstance(ast_node.op, ast.And):
|
|
|
|
return_first_true = False
|
|
|
|
elif isinstance(ast_node.op, ast.Or):
|
|
|
|
return_first_true = True
|
|
|
|
else:
|
|
|
|
self.fctx.abort("unknown bool op %r" % (ast.dump(ast_node.op)))
|
|
|
|
|
|
|
|
def emit_next(next_nodes):
|
|
|
|
next_node = next_nodes[0]
|
|
|
|
next_nodes = next_nodes[1:]
|
|
|
|
next_value = self.sub_evaluate(next_node)
|
|
|
|
if not next_nodes:
|
|
|
|
return next_value
|
2020-12-30 05:22:18 +08:00
|
|
|
condition_value = basicpy_ops.AsI1Op(ic.i1_type, next_value,
|
|
|
|
ip=ic.ip).result
|
|
|
|
if_op, then_ip, else_ip = ic.scf_IfOp([ic.unknown_type], condition_value,
|
|
|
|
True)
|
2020-06-10 08:16:36 +08:00
|
|
|
# Short-circuit return case.
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.push_ip(then_ip if return_first_true else else_ip)
|
|
|
|
next_value_casted = basicpy_ops.UnknownCastOp(ic.unknown_type,
|
|
|
|
next_value,
|
|
|
|
ip=ic.ip).result
|
|
|
|
ic.scf_YieldOp([next_value_casted])
|
|
|
|
ic.pop_ip()
|
|
|
|
|
2020-06-10 08:16:36 +08:00
|
|
|
# Nested evaluate next case.
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.push_ip(else_ip if return_first_true else then_ip)
|
2020-06-10 08:16:36 +08:00
|
|
|
nested_value = emit_next(next_nodes)
|
2020-12-30 05:22:18 +08:00
|
|
|
nested_value_casted = next_value_casted = basicpy_ops.UnknownCastOp(
|
|
|
|
ic.unknown_type, nested_value, ip=ic.ip).result
|
|
|
|
ic.scf_YieldOp([nested_value_casted])
|
|
|
|
ic.pop_ip()
|
|
|
|
|
2020-06-10 08:16:36 +08:00
|
|
|
return if_op.result
|
|
|
|
|
2020-12-30 05:22:18 +08:00
|
|
|
with ic.loc:
|
|
|
|
self.value = emit_next(ast_node.values)
|
2020-06-10 08:16:36 +08:00
|
|
|
|
2020-06-27 09:36:36 +08:00
|
|
|
def visit_Call(self, ast_node):
|
|
|
|
# Evaluate positional args.
|
|
|
|
evaluated_args = []
|
|
|
|
for raw_arg in ast_node.args:
|
|
|
|
evaluated_args.append(self.sub_evaluate(raw_arg))
|
|
|
|
|
|
|
|
# Evaluate keyword args.
|
|
|
|
keyword_args = []
|
|
|
|
for raw_kw_arg in ast_node.keywords:
|
|
|
|
keyword_args.append((raw_kw_arg.arg, self.sub_evaluate(raw_kw_arg.value)))
|
|
|
|
|
|
|
|
# Perform partial evaluation of the callee.
|
|
|
|
callee_importer = PartialEvalImporter(self.fctx)
|
|
|
|
callee_importer.visit(ast_node.func)
|
|
|
|
callee_result = callee_importer.partial_eval_result
|
|
|
|
if (callee_result and
|
|
|
|
callee_result.type == PartialEvalType.YIELDS_LIVE_VALUE):
|
|
|
|
# This is a function known to the compiler. Perform a template call.
|
|
|
|
call_result = callee_result.yields.resolve_call(self.fctx.environment,
|
|
|
|
evaluated_args,
|
|
|
|
keyword_args)
|
|
|
|
if call_result.type != PartialEvalType.NOT_EVALUATED:
|
|
|
|
# Partial evaluation success.
|
|
|
|
self.fctx.check_partial_evaluated(call_result)
|
|
|
|
self.value = self.fctx.emit_partial_eval_result(call_result)
|
|
|
|
return
|
|
|
|
|
|
|
|
# The function is not known to the compiler.
|
|
|
|
self.fctx.check_partial_evaluated(callee_result)
|
|
|
|
# TODO: Implement first class functions.
|
|
|
|
self.fctx.abort("unhandled (potentially first-class function): {}".format(
|
|
|
|
ast.dump(ast_node)))
|
|
|
|
|
2020-06-10 08:16:36 +08:00
|
|
|
def visit_Compare(self, ast_node):
|
|
|
|
# Short-circuit comparison (degenerates to binary comparison when just
|
|
|
|
# two operands).
|
2020-12-30 05:22:18 +08:00
|
|
|
ic = self.fctx.ic
|
|
|
|
false_value = basicpy_ops.BoolConstantOp(ic.bool_type,
|
|
|
|
ic.i1_false,
|
|
|
|
ip=ic.ip,
|
|
|
|
loc=ic.loc).result
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
def emit_next(left_value, comparisons):
|
|
|
|
operation, right_node = comparisons[0]
|
|
|
|
comparisons = comparisons[1:]
|
|
|
|
right_value = self.sub_evaluate(right_node)
|
2020-12-30 05:22:18 +08:00
|
|
|
compare_result = basicpy_ops.BinaryCompareOp(
|
|
|
|
ic.bool_type,
|
|
|
|
left_value,
|
|
|
|
right_value,
|
|
|
|
_ir.StringAttr.get(operation.__class__.__name__),
|
|
|
|
ip=ic.ip,
|
|
|
|
loc=ic.loc).result
|
2020-06-10 08:16:36 +08:00
|
|
|
# Terminate by yielding the final compare result.
|
|
|
|
if not comparisons:
|
|
|
|
return compare_result
|
|
|
|
|
|
|
|
# Emit 'if' op and recurse. The if op takes an i1 (core dialect
|
|
|
|
# requirement) and returns a basicpy.BoolType. Since this is an 'and',
|
|
|
|
# all else clauses yield a false value.
|
2020-12-30 05:22:18 +08:00
|
|
|
compare_result_i1 = basicpy_ops.BoolCastOp(ic.i1_type,
|
|
|
|
compare_result,
|
|
|
|
ip=ic.ip,
|
|
|
|
loc=ic.loc).result
|
|
|
|
if_op, then_ip, else_ip = ic.scf_IfOp([ic.bool_type], compare_result_i1,
|
|
|
|
True)
|
2020-06-10 08:16:36 +08:00
|
|
|
# Build the else clause.
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.push_ip(else_ip)
|
|
|
|
ic.scf_YieldOp([false_value])
|
|
|
|
ic.pop_ip()
|
|
|
|
|
2020-06-10 08:16:36 +08:00
|
|
|
# Build the then clause.
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.push_ip(then_ip)
|
2020-06-10 08:16:36 +08:00
|
|
|
nested_result = emit_next(right_value, comparisons)
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.scf_YieldOp([nested_result])
|
|
|
|
ic.pop_ip()
|
|
|
|
|
2020-06-10 08:16:36 +08:00
|
|
|
return if_op.result
|
|
|
|
|
|
|
|
self.value = emit_next(self.sub_evaluate(ast_node.left),
|
|
|
|
list(zip(ast_node.ops, ast_node.comparators)))
|
|
|
|
|
|
|
|
def visit_IfExp(self, ast_node):
|
2020-12-30 05:22:18 +08:00
|
|
|
ic = self.fctx.ic
|
|
|
|
test_result = basicpy_ops.AsI1Op(ic.i1_type,
|
|
|
|
self.sub_evaluate(ast_node.test),
|
|
|
|
ip=ic.ip,
|
|
|
|
loc=ic.loc).result
|
|
|
|
if_op, then_ip, else_ip = ic.scf_IfOp([ic.unknown_type], test_result, True)
|
2020-06-10 08:16:36 +08:00
|
|
|
# Build the then clause
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.push_ip(then_ip)
|
2020-06-10 08:16:36 +08:00
|
|
|
then_result = self.sub_evaluate(ast_node.body)
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.scf_YieldOp([
|
|
|
|
basicpy_ops.UnknownCastOp(ic.unknown_type,
|
|
|
|
then_result,
|
|
|
|
ip=ic.ip,
|
|
|
|
loc=ic.loc).result
|
2020-06-10 08:16:36 +08:00
|
|
|
])
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.pop_ip()
|
|
|
|
|
2020-06-10 08:16:36 +08:00
|
|
|
# Build the then clause.
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.push_ip(else_ip)
|
2020-06-10 08:16:36 +08:00
|
|
|
orelse_result = self.sub_evaluate(ast_node.orelse)
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.scf_YieldOp([
|
|
|
|
basicpy_ops.UnknownCastOp(ic.unknown_type,
|
|
|
|
orelse_result,
|
|
|
|
ip=ic.ip,
|
|
|
|
loc=ic.loc).result
|
2020-06-10 08:16:36 +08:00
|
|
|
])
|
2020-12-30 05:22:18 +08:00
|
|
|
ic.pop_ip()
|
2020-06-10 08:16:36 +08:00
|
|
|
self.value = if_op.result
|
|
|
|
|
|
|
|
def visit_Name(self, ast_node):
|
|
|
|
if not isinstance(ast_node.ctx, ast.Load):
|
|
|
|
self.fctx.abort("Unsupported expression name context type %s" %
|
|
|
|
ast_node.ctx.__class__.__name__)
|
2020-06-23 09:15:56 +08:00
|
|
|
name_ref = self.fctx.lookup_name(ast_node.id)
|
2020-06-27 04:50:51 +08:00
|
|
|
pe_result = name_ref.load(self.fctx.environment)
|
|
|
|
logging.debug("LOAD {} -> {}", name_ref, pe_result)
|
|
|
|
self.value = self.fctx.emit_partial_eval_result(pe_result)
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
def visit_UnaryOp(self, ast_node):
|
2020-12-30 05:22:18 +08:00
|
|
|
ic = self.fctx.ic
|
|
|
|
with ic.ip, ic.loc:
|
|
|
|
op = ast_node.op
|
|
|
|
operand_value = self.sub_evaluate(ast_node.operand)
|
|
|
|
if isinstance(op, ast.Not):
|
|
|
|
# Special handling for logical-not.
|
|
|
|
condition_value = basicpy_ops.AsI1Op(ic.i1_type, operand_value).result
|
|
|
|
true_value = basicpy_ops.BoolConstantOp(ic.bool_type, ic.i1_true).result
|
|
|
|
false_value = basicpy_ops.BoolConstantOp(ic.bool_type,
|
|
|
|
ic.i1_false).result
|
|
|
|
self.value = std_ops.SelectOp(ic.bool_type, condition_value,
|
|
|
|
false_value, true_value).result
|
|
|
|
else:
|
|
|
|
self.fctx.abort("Unknown unary op %r", (ast.dump(op)))
|
2020-06-10 08:16:36 +08:00
|
|
|
|
|
|
|
if sys.version_info < (3, 8, 0):
|
|
|
|
# <3.8 breaks these out into separate AST classes.
|
|
|
|
def visit_Num(self, ast_node):
|
|
|
|
self.emit_constant(ast_node.n)
|
|
|
|
|
|
|
|
def visit_Str(self, ast_node):
|
|
|
|
self.emit_constant(ast_node.s)
|
|
|
|
|
|
|
|
def visit_Bytes(self, ast_node):
|
|
|
|
self.emit_constant(ast_node.s)
|
|
|
|
|
|
|
|
def visit_NameConstant(self, ast_node):
|
|
|
|
self.emit_constant(ast_node.value)
|
|
|
|
|
|
|
|
def visit_Ellipsis(self, ast_node):
|
|
|
|
self.emit_constant(...)
|
|
|
|
else:
|
|
|
|
|
|
|
|
def visit_Constant(self, ast_node):
|
|
|
|
self.emit_constant(ast_node.value)
|
|
|
|
|
|
|
|
|
2020-06-27 04:50:51 +08:00
|
|
|
class PartialEvalImporter(BaseNodeVisitor):
|
|
|
|
"""Importer for performing greedy partial evaluation.
|
2020-06-26 14:10:58 +08:00
|
|
|
|
|
|
|
Concretely this is used for Attribute.value and Call resolution.
|
|
|
|
|
|
|
|
Attribute resolution is not just treated as a normal expression because it
|
2020-06-27 04:50:51 +08:00
|
|
|
is first subject to "partial evaluation", allowing the environment's partial
|
|
|
|
eval hook to operate on live python values from the containing
|
|
|
|
environment versus naively emitting code for attribute resolution for
|
2020-06-26 14:10:58 +08:00
|
|
|
entities that can/should be considered constants from the hosting context.
|
|
|
|
This is used, for example, to resolve attributes from modules without
|
2020-06-27 04:50:51 +08:00
|
|
|
immediately dereferencing/transforming the intervening chain of attributes.
|
2020-06-26 14:10:58 +08:00
|
|
|
"""
|
2020-06-27 04:50:51 +08:00
|
|
|
IMPORTER_TYPE = "partial_eval"
|
|
|
|
__slots__ = [
|
|
|
|
"partial_eval_result",
|
|
|
|
]
|
2020-06-26 14:10:58 +08:00
|
|
|
|
|
|
|
def __init__(self, fctx):
|
|
|
|
super().__init__(fctx)
|
2020-06-27 04:50:51 +08:00
|
|
|
self.partial_eval_result = None
|
2020-06-26 14:10:58 +08:00
|
|
|
|
|
|
|
def visit_Attribute(self, ast_node):
|
|
|
|
# Sub-evaluate the 'value'.
|
2020-06-27 04:50:51 +08:00
|
|
|
sub_eval = PartialEvalImporter(self.fctx)
|
|
|
|
sub_eval.visit(ast_node.value)
|
2020-06-26 14:10:58 +08:00
|
|
|
|
2020-06-27 04:50:51 +08:00
|
|
|
if sub_eval.partial_eval_result:
|
|
|
|
# Partial sub-evaluation successful.
|
|
|
|
sub_result = sub_eval.partial_eval_result
|
2020-06-26 14:10:58 +08:00
|
|
|
else:
|
|
|
|
# Need to evaluate it as an expression.
|
|
|
|
sub_expr = ExpressionImporter(self.fctx)
|
|
|
|
sub_expr.visit(ast_node.value)
|
|
|
|
assert sub_expr.value, (
|
2020-06-27 04:50:51 +08:00
|
|
|
"Evaluated sub expression did not return a value: %r" %
|
|
|
|
(ast_node.value))
|
|
|
|
sub_result = PartialEvalResult.yields_ir_value(sub_expr.value)
|
|
|
|
|
|
|
|
# Attempt to perform a static getattr as a partial eval if still operating
|
|
|
|
# on a live value.
|
|
|
|
self.fctx.check_partial_evaluated(sub_result)
|
|
|
|
if sub_result.type == PartialEvalType.YIELDS_LIVE_VALUE:
|
2020-06-26 14:10:58 +08:00
|
|
|
logging.debug("STATIC getattr '{}' on {}", ast_node.attr, sub_result)
|
|
|
|
getattr_result = sub_result.yields.resolve_getattr(
|
|
|
|
self.fctx.environment, ast_node.attr)
|
2020-06-27 04:50:51 +08:00
|
|
|
if getattr_result.type != PartialEvalType.NOT_EVALUATED:
|
|
|
|
self.fctx.check_partial_evaluated(getattr_result)
|
|
|
|
self.partial_eval_result = getattr_result
|
2020-06-26 14:10:58 +08:00
|
|
|
return
|
|
|
|
# If a non-statically evaluable live value, then convert to a constant
|
|
|
|
# and dynamic dispatch.
|
|
|
|
ir_value = self.fctx.emit_const_value(sub_result.yields.live_value)
|
|
|
|
else:
|
|
|
|
ir_value = sub_result.yields
|
|
|
|
|
2020-06-27 04:50:51 +08:00
|
|
|
# Yielding an IR value from a recursive partial evaluation means that the
|
2020-06-26 14:10:58 +08:00
|
|
|
# entire chain needs to be hoisted to IR.
|
|
|
|
# TODO: Implement.
|
|
|
|
self.fctx.abort("dynamic-emitted getattr not yet supported: %r" %
|
|
|
|
(ir_value,))
|
|
|
|
|
|
|
|
def visit_Name(self, ast_node):
|
|
|
|
name_ref = self.fctx.lookup_name(ast_node.id)
|
2020-06-27 04:50:51 +08:00
|
|
|
partial_eval_result = name_ref.load(self.fctx.environment)
|
|
|
|
logging.debug("PARTIAL EVAL {} -> {}", name_ref, partial_eval_result)
|
|
|
|
self.partial_eval_result = partial_eval_result
|