2015-06-13 15:29:26 +08:00
|
|
|
"""
|
2015-06-24 16:46:15 +08:00
|
|
|
The :mod:`builtins` module contains the builtin Python
|
|
|
|
and ARTIQ types, such as int or float.
|
2015-06-13 15:29:26 +08:00
|
|
|
"""
|
|
|
|
|
2015-07-16 21:03:24 +08:00
|
|
|
from collections import OrderedDict
|
2015-06-13 15:29:26 +08:00
|
|
|
from . import types
|
|
|
|
|
2015-06-24 16:28:24 +08:00
|
|
|
# Types
|
|
|
|
|
2015-06-13 15:29:26 +08:00
|
|
|
class TNone(types.TMono):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__("NoneType")
|
|
|
|
|
|
|
|
class TBool(types.TMono):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__("bool")
|
|
|
|
|
2015-07-16 21:03:24 +08:00
|
|
|
@staticmethod
|
|
|
|
def zero():
|
|
|
|
return False
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def one():
|
|
|
|
return True
|
|
|
|
|
2015-06-13 15:29:26 +08:00
|
|
|
class TInt(types.TMono):
|
|
|
|
def __init__(self, width=None):
|
|
|
|
if width is None:
|
|
|
|
width = types.TVar()
|
|
|
|
super().__init__("int", {"width": width})
|
|
|
|
|
2015-07-16 21:03:24 +08:00
|
|
|
@staticmethod
|
|
|
|
def zero():
|
|
|
|
return 0
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def one():
|
|
|
|
return 1
|
|
|
|
|
2015-06-13 15:29:26 +08:00
|
|
|
class TFloat(types.TMono):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__("float")
|
|
|
|
|
2015-07-16 21:03:24 +08:00
|
|
|
@staticmethod
|
|
|
|
def zero():
|
|
|
|
return 0.0
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def one():
|
|
|
|
return 1.0
|
|
|
|
|
2015-06-13 15:29:26 +08:00
|
|
|
class TList(types.TMono):
|
|
|
|
def __init__(self, elt=None):
|
|
|
|
if elt is None:
|
|
|
|
elt = types.TVar()
|
|
|
|
super().__init__("list", {"elt": elt})
|
|
|
|
|
2015-06-26 23:53:20 +08:00
|
|
|
class TRange(types.TMono):
|
|
|
|
def __init__(self, elt=None):
|
|
|
|
if elt is None:
|
|
|
|
elt = types.TVar()
|
|
|
|
super().__init__("range", {"elt": elt})
|
2015-07-16 19:57:44 +08:00
|
|
|
self.attributes = OrderedDict([
|
|
|
|
("start", elt),
|
|
|
|
("stop", elt),
|
|
|
|
("step", elt),
|
|
|
|
])
|
2015-06-26 23:53:20 +08:00
|
|
|
|
2015-06-29 03:48:15 +08:00
|
|
|
class TException(types.TMono):
|
2015-07-16 19:58:40 +08:00
|
|
|
def __init__(self, name="Exception"):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
class TIndexError(types.TMono):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__("IndexError")
|
|
|
|
|
|
|
|
class TValueError(types.TMono):
|
2015-06-29 03:48:15 +08:00
|
|
|
def __init__(self):
|
2015-07-16 19:58:40 +08:00
|
|
|
super().__init__("ValueError")
|
2015-06-29 03:48:15 +08:00
|
|
|
|
2015-06-26 16:16:08 +08:00
|
|
|
def fn_bool():
|
2015-06-29 03:40:57 +08:00
|
|
|
return types.TConstructor("bool")
|
2015-06-26 16:16:08 +08:00
|
|
|
|
|
|
|
def fn_int():
|
2015-06-29 03:40:57 +08:00
|
|
|
return types.TConstructor("int")
|
2015-06-26 16:16:08 +08:00
|
|
|
|
|
|
|
def fn_float():
|
2015-06-29 03:40:57 +08:00
|
|
|
return types.TConstructor("float")
|
2015-06-26 16:16:08 +08:00
|
|
|
|
|
|
|
def fn_list():
|
2015-06-29 03:40:57 +08:00
|
|
|
return types.TConstructor("list")
|
2015-06-26 16:16:08 +08:00
|
|
|
|
2015-06-29 03:48:15 +08:00
|
|
|
def fn_Exception():
|
|
|
|
return types.TExceptionConstructor("Exception")
|
|
|
|
|
2015-07-16 19:58:40 +08:00
|
|
|
def fn_IndexError():
|
|
|
|
return types.TExceptionConstructor("IndexError")
|
|
|
|
|
|
|
|
def fn_ValueError():
|
|
|
|
return types.TExceptionConstructor("ValueError")
|
|
|
|
|
2015-06-26 23:53:20 +08:00
|
|
|
def fn_range():
|
2015-06-29 03:40:57 +08:00
|
|
|
return types.TBuiltinFunction("range")
|
2015-06-26 23:53:20 +08:00
|
|
|
|
2015-06-24 16:28:24 +08:00
|
|
|
def fn_len():
|
2015-06-29 03:40:57 +08:00
|
|
|
return types.TBuiltinFunction("len")
|
2015-06-24 16:28:24 +08:00
|
|
|
|
|
|
|
def fn_round():
|
2015-06-29 03:40:57 +08:00
|
|
|
return types.TBuiltinFunction("round")
|
2015-06-24 16:28:24 +08:00
|
|
|
|
|
|
|
def fn_syscall():
|
2015-06-29 03:40:57 +08:00
|
|
|
return types.TBuiltinFunction("syscall")
|
2015-06-24 16:28:24 +08:00
|
|
|
|
|
|
|
# Accessors
|
2015-06-13 15:29:26 +08:00
|
|
|
|
2015-06-14 17:07:13 +08:00
|
|
|
def is_none(typ):
|
|
|
|
return types.is_mono(typ, "NoneType")
|
|
|
|
|
|
|
|
def is_bool(typ):
|
|
|
|
return types.is_mono(typ, "bool")
|
|
|
|
|
2015-06-13 18:45:09 +08:00
|
|
|
def is_int(typ, width=None):
|
2015-06-29 03:48:15 +08:00
|
|
|
if width is not None:
|
2015-06-13 18:45:09 +08:00
|
|
|
return types.is_mono(typ, "int", {"width": width})
|
|
|
|
else:
|
|
|
|
return types.is_mono(typ, "int")
|
|
|
|
|
2015-06-14 17:07:13 +08:00
|
|
|
def get_int_width(typ):
|
|
|
|
if is_int(typ):
|
2015-06-15 13:40:37 +08:00
|
|
|
return types.get_value(typ.find()["width"])
|
2015-06-14 17:07:13 +08:00
|
|
|
|
|
|
|
def is_float(typ):
|
|
|
|
return types.is_mono(typ, "float")
|
|
|
|
|
2015-06-13 15:29:26 +08:00
|
|
|
def is_numeric(typ):
|
2015-06-14 17:07:13 +08:00
|
|
|
typ = typ.find()
|
2015-06-13 15:29:26 +08:00
|
|
|
return isinstance(typ, types.TMono) and \
|
|
|
|
typ.name in ('int', 'float')
|
2015-06-14 17:07:13 +08:00
|
|
|
|
|
|
|
def is_list(typ, elt=None):
|
2015-06-29 03:48:15 +08:00
|
|
|
if elt is not None:
|
2015-06-14 17:07:13 +08:00
|
|
|
return types.is_mono(typ, "list", {"elt": elt})
|
|
|
|
else:
|
|
|
|
return types.is_mono(typ, "list")
|
|
|
|
|
2015-06-26 23:53:20 +08:00
|
|
|
def is_range(typ, elt=None):
|
2015-06-29 03:48:15 +08:00
|
|
|
if elt is not None:
|
2015-06-26 23:53:20 +08:00
|
|
|
return types.is_mono(typ, "range", {"elt": elt})
|
|
|
|
else:
|
|
|
|
return types.is_mono(typ, "range")
|
|
|
|
|
|
|
|
def is_iterable(typ):
|
|
|
|
typ = typ.find()
|
|
|
|
return isinstance(typ, types.TMono) and \
|
|
|
|
typ.name in ('list', 'range')
|
|
|
|
|
|
|
|
def get_iterable_elt(typ):
|
|
|
|
if is_iterable(typ):
|
|
|
|
return typ.find()["elt"]
|
|
|
|
|
2015-06-14 17:07:13 +08:00
|
|
|
def is_collection(typ):
|
|
|
|
typ = typ.find()
|
|
|
|
return isinstance(typ, types.TTuple) or \
|
|
|
|
types.is_mono(typ, "list")
|
2015-06-24 16:46:15 +08:00
|
|
|
|
2015-07-04 09:16:37 +08:00
|
|
|
def is_mutable(typ):
|
|
|
|
return typ.fold(False, lambda accum, typ:
|
|
|
|
is_list(typ) or types.is_function(typ))
|