2021-08-27 10:21:51 +08:00
|
|
|
use super::*;
|
|
|
|
|
2021-09-07 17:30:15 +08:00
|
|
|
impl TopLevelDef {
|
2021-09-08 02:27:12 +08:00
|
|
|
pub fn to_string<F, G>(
|
|
|
|
&self,
|
|
|
|
unifier: &mut Unifier,
|
|
|
|
obj_to_name: &mut F,
|
|
|
|
var_to_name: &mut G,
|
|
|
|
) -> String
|
2021-09-07 17:30:15 +08:00
|
|
|
where
|
|
|
|
F: FnMut(usize) -> String,
|
|
|
|
G: FnMut(u32) -> String,
|
|
|
|
{
|
|
|
|
match self {
|
|
|
|
TopLevelDef::Class {
|
2021-09-08 02:27:12 +08:00
|
|
|
name, ancestors, fields, methods, object_id, type_vars, ..
|
|
|
|
} => {
|
2021-09-07 17:30:15 +08:00
|
|
|
let fields_str = fields
|
|
|
|
.iter()
|
2021-09-08 02:27:12 +08:00
|
|
|
.map(|(n, ty)| {
|
|
|
|
(n.to_string(), unifier.stringify(*ty, obj_to_name, var_to_name))
|
|
|
|
})
|
2021-09-07 17:30:15 +08:00
|
|
|
.collect_vec();
|
2021-09-08 02:27:12 +08:00
|
|
|
|
2021-09-07 17:30:15 +08:00
|
|
|
let methods_str = methods
|
|
|
|
.iter()
|
2021-09-08 02:27:12 +08:00
|
|
|
.map(|(n, ty, id)| {
|
2021-09-07 17:30:15 +08:00
|
|
|
(n.to_string(), unifier.stringify(*ty, obj_to_name, var_to_name), *id)
|
2021-09-08 02:27:12 +08:00
|
|
|
})
|
2021-09-07 17:30:15 +08:00
|
|
|
.collect_vec();
|
2021-09-08 02:27:12 +08:00
|
|
|
|
2021-09-07 17:30:15 +08:00
|
|
|
format!(
|
|
|
|
"Class {{\nname: {:?},\ndef_id: {:?},\nancestors: {:?},\nfields: {:?},\nmethods: {:?},\ntype_vars: {:?}\n}}",
|
|
|
|
name,
|
|
|
|
object_id,
|
|
|
|
ancestors,
|
|
|
|
fields_str,
|
|
|
|
methods_str,
|
|
|
|
type_vars,
|
|
|
|
)
|
|
|
|
}
|
2021-09-08 02:27:12 +08:00
|
|
|
TopLevelDef::Function { name, signature, var_id, .. } => format!(
|
|
|
|
"Function {{\nname: {:?},\nsig: {:?},\nvar_id: {:?}\n}}",
|
|
|
|
name,
|
|
|
|
unifier.stringify(*signature, obj_to_name, var_to_name),
|
2021-09-09 00:44:56 +08:00
|
|
|
{
|
2021-09-12 13:14:46 +08:00
|
|
|
// preserve the order for debug output and test
|
2021-09-09 00:44:56 +08:00
|
|
|
let mut r = var_id.clone();
|
|
|
|
r.sort_unstable();
|
|
|
|
r
|
|
|
|
}
|
2021-09-08 02:27:12 +08:00
|
|
|
),
|
2021-09-07 17:30:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-27 10:21:51 +08:00
|
|
|
impl TopLevelComposer {
|
|
|
|
pub fn make_primitives() -> (PrimitiveStore, Unifier) {
|
|
|
|
let mut unifier = Unifier::new();
|
|
|
|
let int32 = unifier.add_ty(TypeEnum::TObj {
|
|
|
|
obj_id: DefinitionId(0),
|
|
|
|
fields: HashMap::new().into(),
|
|
|
|
params: HashMap::new().into(),
|
|
|
|
});
|
|
|
|
let int64 = unifier.add_ty(TypeEnum::TObj {
|
|
|
|
obj_id: DefinitionId(1),
|
|
|
|
fields: HashMap::new().into(),
|
|
|
|
params: HashMap::new().into(),
|
|
|
|
});
|
|
|
|
let float = unifier.add_ty(TypeEnum::TObj {
|
|
|
|
obj_id: DefinitionId(2),
|
|
|
|
fields: HashMap::new().into(),
|
|
|
|
params: HashMap::new().into(),
|
|
|
|
});
|
|
|
|
let bool = unifier.add_ty(TypeEnum::TObj {
|
|
|
|
obj_id: DefinitionId(3),
|
|
|
|
fields: HashMap::new().into(),
|
|
|
|
params: HashMap::new().into(),
|
|
|
|
});
|
|
|
|
let none = unifier.add_ty(TypeEnum::TObj {
|
|
|
|
obj_id: DefinitionId(4),
|
|
|
|
fields: HashMap::new().into(),
|
|
|
|
params: HashMap::new().into(),
|
|
|
|
});
|
|
|
|
let primitives = PrimitiveStore { int32, int64, float, bool, none };
|
|
|
|
crate::typecheck::magic_methods::set_primitives_magic_methods(&primitives, &mut unifier);
|
|
|
|
(primitives, unifier)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// already include the definition_id of itself inside the ancestors vector
|
|
|
|
/// when first regitering, the type_vars, fields, methods, ancestors are invalid
|
|
|
|
pub fn make_top_level_class_def(
|
|
|
|
index: usize,
|
2021-09-08 19:27:32 +08:00
|
|
|
resolver: Option<Arc<Box<dyn SymbolResolver + Send + Sync>>>,
|
2021-09-22 17:19:27 +08:00
|
|
|
name: StrRef,
|
2021-09-20 14:24:16 +08:00
|
|
|
constructor: Option<Type>,
|
2021-08-27 10:21:51 +08:00
|
|
|
) -> TopLevelDef {
|
|
|
|
TopLevelDef::Class {
|
2021-09-22 17:19:27 +08:00
|
|
|
name,
|
2021-08-27 10:21:51 +08:00
|
|
|
object_id: DefinitionId(index),
|
|
|
|
type_vars: Default::default(),
|
|
|
|
fields: Default::default(),
|
|
|
|
methods: Default::default(),
|
|
|
|
ancestors: Default::default(),
|
2021-09-19 22:54:06 +08:00
|
|
|
constructor,
|
2021-08-27 10:21:51 +08:00
|
|
|
resolver,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// when first registering, the type is a invalid value
|
|
|
|
pub fn make_top_level_function_def(
|
|
|
|
name: String,
|
2021-09-22 17:19:27 +08:00
|
|
|
simple_name: StrRef,
|
2021-08-27 10:21:51 +08:00
|
|
|
ty: Type,
|
2021-09-08 19:27:32 +08:00
|
|
|
resolver: Option<Arc<Box<dyn SymbolResolver + Send + Sync>>>,
|
2021-08-27 10:21:51 +08:00
|
|
|
) -> TopLevelDef {
|
|
|
|
TopLevelDef::Function {
|
|
|
|
name,
|
2021-09-19 22:54:06 +08:00
|
|
|
simple_name,
|
2021-08-27 10:21:51 +08:00
|
|
|
signature: ty,
|
|
|
|
var_id: Default::default(),
|
|
|
|
instance_to_symbol: Default::default(),
|
|
|
|
instance_to_stmt: Default::default(),
|
|
|
|
resolver,
|
2021-09-30 17:07:48 +08:00
|
|
|
codegen_callback: None,
|
2021-08-27 10:21:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn make_class_method_name(mut class_name: String, method_name: &str) -> String {
|
2021-09-12 13:14:46 +08:00
|
|
|
class_name.push('.');
|
2021-08-27 10:21:51 +08:00
|
|
|
class_name.push_str(method_name);
|
|
|
|
class_name
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_class_method_def_info(
|
2021-09-22 17:19:27 +08:00
|
|
|
class_methods_def: &[(StrRef, Type, DefinitionId)],
|
|
|
|
method_name: StrRef,
|
2021-08-27 10:21:51 +08:00
|
|
|
) -> Result<(Type, DefinitionId), String> {
|
|
|
|
for (name, ty, def_id) in class_methods_def {
|
2021-09-22 17:19:27 +08:00
|
|
|
if name == &method_name {
|
2021-08-27 10:21:51 +08:00
|
|
|
return Ok((*ty, *def_id));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(format!("no method {} in the current class", method_name))
|
|
|
|
}
|
|
|
|
|
2021-08-30 12:05:01 +08:00
|
|
|
/// get all base class def id of a class, excluding itself. \
|
|
|
|
/// this function should called only after the direct parent is set
|
|
|
|
/// and before all the ancestors are set
|
|
|
|
/// and when we allow single inheritance \
|
|
|
|
/// the order of the returned list is from the child to the deepest ancestor
|
|
|
|
pub fn get_all_ancestors_helper(
|
|
|
|
child: &TypeAnnotation,
|
2021-08-27 10:21:51 +08:00
|
|
|
temp_def_list: &[Arc<RwLock<TopLevelDef>>],
|
2021-08-31 09:57:07 +08:00
|
|
|
) -> Result<Vec<TypeAnnotation>, String> {
|
2021-08-30 12:05:01 +08:00
|
|
|
let mut result: Vec<TypeAnnotation> = Vec::new();
|
|
|
|
let mut parent = Self::get_parent(child, temp_def_list);
|
|
|
|
while let Some(p) = parent {
|
|
|
|
parent = Self::get_parent(&p, temp_def_list);
|
2021-08-31 09:57:07 +08:00
|
|
|
let p_id = if let TypeAnnotation::CustomClassKind { id, .. } = &p {
|
|
|
|
*id
|
|
|
|
} else {
|
|
|
|
unreachable!("must be class kind annotation")
|
|
|
|
};
|
|
|
|
// check cycle
|
|
|
|
let no_cycle = result.iter().all(|x| {
|
|
|
|
if let TypeAnnotation::CustomClassKind { id, .. } = x {
|
|
|
|
id.0 != p_id.0
|
|
|
|
} else {
|
|
|
|
unreachable!("must be class kind annotation")
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if no_cycle {
|
|
|
|
result.push(p);
|
|
|
|
} else {
|
|
|
|
return Err("cyclic inheritance detected".into());
|
|
|
|
}
|
2021-08-30 12:05:01 +08:00
|
|
|
}
|
2021-08-31 09:57:07 +08:00
|
|
|
Ok(result)
|
2021-08-30 12:05:01 +08:00
|
|
|
}
|
2021-08-27 10:21:51 +08:00
|
|
|
|
2021-08-30 22:46:50 +08:00
|
|
|
/// should only be called when finding all ancestors, so panic when wrong
|
2021-08-30 12:05:01 +08:00
|
|
|
fn get_parent(
|
|
|
|
child: &TypeAnnotation,
|
|
|
|
temp_def_list: &[Arc<RwLock<TopLevelDef>>],
|
|
|
|
) -> Option<TypeAnnotation> {
|
2021-08-30 22:46:50 +08:00
|
|
|
let child_id = if let TypeAnnotation::CustomClassKind { id, .. } = child {
|
|
|
|
*id
|
|
|
|
} else {
|
|
|
|
unreachable!("should be class type annotation")
|
|
|
|
};
|
2021-08-30 12:05:01 +08:00
|
|
|
let child_def = temp_def_list.get(child_id.0).unwrap();
|
|
|
|
let child_def = child_def.read();
|
|
|
|
if let TopLevelDef::Class { ancestors, .. } = &*child_def {
|
2021-08-30 22:46:50 +08:00
|
|
|
if !ancestors.is_empty() {
|
|
|
|
Some(ancestors[0].clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2021-08-27 10:21:51 +08:00
|
|
|
} else {
|
2021-08-30 22:46:50 +08:00
|
|
|
unreachable!("child must be top level class def")
|
2021-08-27 10:21:51 +08:00
|
|
|
}
|
|
|
|
}
|
2021-08-30 17:38:07 +08:00
|
|
|
|
2021-08-31 09:57:07 +08:00
|
|
|
/// get the var_id of a given TVar type
|
|
|
|
pub fn get_var_id(var_ty: Type, unifier: &mut Unifier) -> Result<u32, String> {
|
|
|
|
if let TypeEnum::TVar { id, .. } = unifier.get_ty(var_ty).as_ref() {
|
|
|
|
Ok(*id)
|
|
|
|
} else {
|
|
|
|
Err("not type var".to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn check_overload_function_type(
|
|
|
|
this: Type,
|
|
|
|
other: Type,
|
|
|
|
unifier: &mut Unifier,
|
|
|
|
type_var_to_concrete_def: &HashMap<Type, TypeAnnotation>,
|
|
|
|
) -> bool {
|
|
|
|
let this = unifier.get_ty(this);
|
|
|
|
let this = this.as_ref();
|
2021-08-30 17:38:07 +08:00
|
|
|
let other = unifier.get_ty(other);
|
|
|
|
let other = other.as_ref();
|
2021-08-31 09:57:07 +08:00
|
|
|
if let (TypeEnum::TFunc(this_sig), TypeEnum::TFunc(other_sig)) = (this, other) {
|
|
|
|
let (this_sig, other_sig) = (&*this_sig.borrow(), &*other_sig.borrow());
|
|
|
|
let (
|
|
|
|
FunSignature { args: this_args, ret: this_ret, vars: _this_vars },
|
|
|
|
FunSignature { args: other_args, ret: other_ret, vars: _other_vars },
|
|
|
|
) = (this_sig, other_sig);
|
|
|
|
// check args
|
|
|
|
let args_ok = this_args
|
2021-08-30 17:38:07 +08:00
|
|
|
.iter()
|
2021-08-31 09:57:07 +08:00
|
|
|
.map(|FuncArg { name, ty, .. }| (name, type_var_to_concrete_def.get(ty).unwrap()))
|
|
|
|
.zip(other_args.iter().map(|FuncArg { name, ty, .. }| {
|
|
|
|
(name, type_var_to_concrete_def.get(ty).unwrap())
|
|
|
|
}))
|
|
|
|
.all(|(this, other)| {
|
2021-09-22 17:19:27 +08:00
|
|
|
if this.0 == &"self".into() && this.0 == other.0 {
|
2021-08-31 09:57:07 +08:00
|
|
|
true
|
|
|
|
} else {
|
|
|
|
this.0 == other.0
|
|
|
|
&& check_overload_type_annotation_compatible(this.1, other.1, unifier)
|
|
|
|
}
|
|
|
|
});
|
2021-08-30 17:38:07 +08:00
|
|
|
|
2021-08-31 09:57:07 +08:00
|
|
|
// check rets
|
|
|
|
let ret_ok = check_overload_type_annotation_compatible(
|
|
|
|
type_var_to_concrete_def.get(this_ret).unwrap(),
|
|
|
|
type_var_to_concrete_def.get(other_ret).unwrap(),
|
|
|
|
unifier,
|
|
|
|
);
|
2021-08-30 17:38:07 +08:00
|
|
|
|
2021-08-31 09:57:07 +08:00
|
|
|
// return
|
|
|
|
args_ok && ret_ok
|
|
|
|
} else {
|
|
|
|
unreachable!("this function must be called with function type")
|
2021-08-30 17:38:07 +08:00
|
|
|
}
|
|
|
|
}
|
2021-08-30 22:46:50 +08:00
|
|
|
|
2021-08-31 09:57:07 +08:00
|
|
|
pub fn check_overload_field_type(
|
|
|
|
this: Type,
|
|
|
|
other: Type,
|
|
|
|
unifier: &mut Unifier,
|
|
|
|
type_var_to_concrete_def: &HashMap<Type, TypeAnnotation>,
|
|
|
|
) -> bool {
|
|
|
|
check_overload_type_annotation_compatible(
|
|
|
|
type_var_to_concrete_def.get(&this).unwrap(),
|
|
|
|
type_var_to_concrete_def.get(&other).unwrap(),
|
|
|
|
unifier,
|
|
|
|
)
|
2021-08-30 22:46:50 +08:00
|
|
|
}
|
2021-09-21 02:48:42 +08:00
|
|
|
|
2021-09-22 17:19:27 +08:00
|
|
|
pub fn get_all_assigned_field(stmts: &[ast::Stmt<()>]) -> Result<HashSet<StrRef>, String> {
|
|
|
|
let mut result = HashSet::new();
|
2021-09-21 02:48:42 +08:00
|
|
|
for s in stmts {
|
|
|
|
match &s.node {
|
|
|
|
ast::StmtKind::AnnAssign { target, .. }
|
|
|
|
if {
|
|
|
|
if let ast::ExprKind::Attribute { value, .. } = &target.node {
|
|
|
|
if let ast::ExprKind::Name { id, .. } = &value.node {
|
2021-09-22 17:19:27 +08:00
|
|
|
id == &"self".into()
|
2021-09-21 02:48:42 +08:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
} =>
|
|
|
|
{
|
|
|
|
return Err(format!(
|
|
|
|
"redundant type annotation for class fields at {}",
|
|
|
|
s.location
|
|
|
|
))
|
|
|
|
}
|
|
|
|
ast::StmtKind::Assign { targets, .. } => {
|
|
|
|
for t in targets {
|
|
|
|
if let ast::ExprKind::Attribute { value, attr, .. } = &t.node {
|
|
|
|
if let ast::ExprKind::Name { id, .. } = &value.node {
|
2021-09-22 17:19:27 +08:00
|
|
|
if id == &"self".into() {
|
2021-09-22 17:56:48 +08:00
|
|
|
result.insert(*attr);
|
2021-09-21 02:48:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: do not check for For and While?
|
|
|
|
ast::StmtKind::For { body, orelse, .. }
|
|
|
|
| ast::StmtKind::While { body, orelse, .. } => {
|
|
|
|
result.extend(Self::get_all_assigned_field(body.as_slice())?);
|
|
|
|
result.extend(Self::get_all_assigned_field(orelse.as_slice())?);
|
|
|
|
}
|
|
|
|
ast::StmtKind::If { body, orelse, .. } => {
|
|
|
|
let inited_for_sure = Self::get_all_assigned_field(body.as_slice())?
|
|
|
|
.intersection(&Self::get_all_assigned_field(orelse.as_slice())?)
|
|
|
|
.cloned()
|
2021-09-22 17:19:27 +08:00
|
|
|
.collect::<HashSet<_>>();
|
2021-09-21 02:48:42 +08:00
|
|
|
result.extend(inited_for_sure);
|
|
|
|
}
|
|
|
|
ast::StmtKind::Try { body, orelse, finalbody, .. } => {
|
|
|
|
let inited_for_sure = Self::get_all_assigned_field(body.as_slice())?
|
|
|
|
.intersection(&Self::get_all_assigned_field(orelse.as_slice())?)
|
|
|
|
.cloned()
|
2021-09-22 17:19:27 +08:00
|
|
|
.collect::<HashSet<_>>();
|
2021-09-21 02:48:42 +08:00
|
|
|
result.extend(inited_for_sure);
|
|
|
|
result.extend(Self::get_all_assigned_field(finalbody.as_slice())?);
|
|
|
|
}
|
|
|
|
ast::StmtKind::With { body, .. } => {
|
|
|
|
result.extend(Self::get_all_assigned_field(body.as_slice())?);
|
|
|
|
}
|
|
|
|
ast::StmtKind::Pass => {}
|
|
|
|
ast::StmtKind::Assert { .. } => {}
|
|
|
|
ast::StmtKind::Expr { .. } => {}
|
|
|
|
|
|
|
|
_ => {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(result)
|
|
|
|
}
|
2021-08-27 10:21:51 +08:00
|
|
|
}
|