2021-08-03 14:11:41 +08:00
|
|
|
use std::{collections::HashMap, sync::Arc};
|
2021-08-03 13:38:27 +08:00
|
|
|
|
2021-08-05 14:55:23 +08:00
|
|
|
use super::typecheck::type_inferencer::PrimitiveStore;
|
2021-08-10 21:57:31 +08:00
|
|
|
use super::typecheck::typedef::{SharedUnifier, Type, TypeEnum, Unifier};
|
2021-08-07 10:28:41 +08:00
|
|
|
use crate::symbol_resolver::SymbolResolver;
|
2021-08-11 14:37:26 +08:00
|
|
|
use inkwell::context::Context;
|
|
|
|
use parking_lot::{Mutex, RwLock};
|
2021-08-10 21:57:31 +08:00
|
|
|
use rustpython_parser::ast::{self, Stmt};
|
2021-08-03 13:38:27 +08:00
|
|
|
|
2021-08-06 10:30:57 +08:00
|
|
|
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy)]
|
|
|
|
pub struct DefinitionId(pub usize);
|
2021-08-03 13:38:27 +08:00
|
|
|
|
|
|
|
pub enum TopLevelDef {
|
|
|
|
Class {
|
|
|
|
// object ID used for TypeEnum
|
2021-08-06 10:30:57 +08:00
|
|
|
object_id: DefinitionId,
|
2021-08-03 13:38:27 +08:00
|
|
|
// type variables bounded to the class.
|
|
|
|
type_vars: Vec<Type>,
|
2021-08-07 15:06:39 +08:00
|
|
|
// class fields
|
2021-08-03 13:38:27 +08:00
|
|
|
fields: Vec<(String, Type)>,
|
|
|
|
// class methods, pointing to the corresponding function definition.
|
2021-08-07 15:06:39 +08:00
|
|
|
methods: Vec<(String, Type, DefinitionId)>,
|
2021-08-03 13:38:27 +08:00
|
|
|
// ancestor classes, including itself.
|
|
|
|
ancestors: Vec<DefinitionId>,
|
|
|
|
},
|
|
|
|
Function {
|
2021-08-07 15:06:39 +08:00
|
|
|
// prefix for symbol, should be unique globally, and not ending with numbers
|
|
|
|
name: String,
|
|
|
|
// function signature.
|
2021-08-03 13:38:27 +08:00
|
|
|
signature: Type,
|
|
|
|
/// Function instance to symbol mapping
|
|
|
|
/// Key: string representation of type variable values, sorted by variable ID in ascending
|
|
|
|
/// order, including type variables associated with the class.
|
|
|
|
/// Value: function symbol name.
|
|
|
|
instance_to_symbol: HashMap<String, String>,
|
|
|
|
/// Function instances to annotated AST mapping
|
|
|
|
/// Key: string representation of type variable values, sorted by variable ID in ascending
|
|
|
|
/// order, including type variables associated with the class. Excluding rigid type
|
|
|
|
/// variables.
|
|
|
|
/// Value: AST annotated with types together with a unification table index. Could contain
|
|
|
|
/// rigid type variables that would be substituted when the function is instantiated.
|
2021-08-05 14:55:23 +08:00
|
|
|
instance_to_stmt: HashMap<String, (Stmt<Option<Type>>, usize)>,
|
2021-08-03 13:38:27 +08:00
|
|
|
},
|
2021-08-10 10:33:18 +08:00
|
|
|
Initializer {
|
2021-08-10 21:57:31 +08:00
|
|
|
class_id: DefinitionId,
|
|
|
|
},
|
2021-08-03 13:38:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct TopLevelContext {
|
2021-08-05 14:55:23 +08:00
|
|
|
pub definitions: Arc<RwLock<Vec<RwLock<TopLevelDef>>>>,
|
2021-08-11 14:37:26 +08:00
|
|
|
pub unifiers: Arc<RwLock<Vec<(SharedUnifier, PrimitiveStore)>>>,
|
|
|
|
pub conetexts: Arc<RwLock<Vec<Mutex<Context>>>>,
|
2021-08-03 14:11:41 +08:00
|
|
|
}
|
2021-08-09 01:43:41 +08:00
|
|
|
|
2021-08-10 21:57:31 +08:00
|
|
|
pub struct TopLevelDefInfo<'a> {
|
|
|
|
// like adding some info on top of the TopLevelDef for later parsing the class bases, method,
|
|
|
|
// and function sigatures
|
|
|
|
def: TopLevelDef, // the definition entry
|
|
|
|
ty: Type, // the entry in the top_level unifier
|
|
|
|
ast: Option<ast::Stmt<()>>, // the ast submitted by applications
|
|
|
|
resolver: Option<&'a dyn SymbolResolver>, // the resolver
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
2021-08-10 21:57:31 +08:00
|
|
|
|
2021-08-10 10:33:18 +08:00
|
|
|
pub struct TopLevelComposer<'a> {
|
|
|
|
pub definition_list: Vec<TopLevelDefInfo<'a>>,
|
|
|
|
pub primitives: PrimitiveStore,
|
|
|
|
pub unifier: Unifier,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> TopLevelComposer<'a> {
|
2021-08-09 01:43:41 +08:00
|
|
|
pub fn make_primitives() -> (PrimitiveStore, Unifier) {
|
|
|
|
let mut unifier = Unifier::new();
|
|
|
|
let int32 = unifier.add_ty(TypeEnum::TObj {
|
2021-08-10 21:57:31 +08:00
|
|
|
obj_id: DefinitionId(0),
|
2021-08-09 01:43:41 +08:00
|
|
|
fields: HashMap::new().into(),
|
|
|
|
params: HashMap::new(),
|
|
|
|
});
|
|
|
|
let int64 = unifier.add_ty(TypeEnum::TObj {
|
2021-08-10 21:57:31 +08:00
|
|
|
obj_id: DefinitionId(1),
|
2021-08-09 01:43:41 +08:00
|
|
|
fields: HashMap::new().into(),
|
|
|
|
params: HashMap::new(),
|
|
|
|
});
|
|
|
|
let float = unifier.add_ty(TypeEnum::TObj {
|
2021-08-10 21:57:31 +08:00
|
|
|
obj_id: DefinitionId(2),
|
2021-08-09 01:43:41 +08:00
|
|
|
fields: HashMap::new().into(),
|
|
|
|
params: HashMap::new(),
|
|
|
|
});
|
|
|
|
let bool = unifier.add_ty(TypeEnum::TObj {
|
2021-08-10 21:57:31 +08:00
|
|
|
obj_id: DefinitionId(3),
|
2021-08-09 01:43:41 +08:00
|
|
|
fields: HashMap::new().into(),
|
|
|
|
params: HashMap::new(),
|
|
|
|
});
|
|
|
|
let none = unifier.add_ty(TypeEnum::TObj {
|
2021-08-10 21:57:31 +08:00
|
|
|
obj_id: DefinitionId(4),
|
2021-08-09 01:43:41 +08:00
|
|
|
fields: HashMap::new().into(),
|
|
|
|
params: HashMap::new(),
|
|
|
|
});
|
|
|
|
let primitives = PrimitiveStore { int32, int64, float, bool, none };
|
|
|
|
crate::typecheck::magic_methods::set_primitives_magic_methods(&primitives, &mut unifier);
|
|
|
|
(primitives, unifier)
|
|
|
|
}
|
2021-08-10 21:57:31 +08:00
|
|
|
|
2021-08-10 10:33:18 +08:00
|
|
|
pub fn new() -> Self {
|
|
|
|
let primitives = Self::make_primitives();
|
|
|
|
let definition_list: Vec<TopLevelDefInfo<'a>> = vec![
|
|
|
|
TopLevelDefInfo {
|
|
|
|
def: Self::make_top_level_class_def(0),
|
|
|
|
ast: None,
|
|
|
|
resolver: None,
|
2021-08-10 21:57:31 +08:00
|
|
|
ty: primitives.0.int32,
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
|
|
|
TopLevelDefInfo {
|
|
|
|
def: Self::make_top_level_class_def(1),
|
|
|
|
ast: None,
|
|
|
|
resolver: None,
|
2021-08-10 21:57:31 +08:00
|
|
|
ty: primitives.0.int64,
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
|
|
|
TopLevelDefInfo {
|
|
|
|
def: Self::make_top_level_class_def(2),
|
|
|
|
ast: None,
|
|
|
|
resolver: None,
|
2021-08-10 21:57:31 +08:00
|
|
|
ty: primitives.0.float,
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
|
|
|
TopLevelDefInfo {
|
|
|
|
def: Self::make_top_level_class_def(3),
|
|
|
|
ast: None,
|
|
|
|
resolver: None,
|
2021-08-10 21:57:31 +08:00
|
|
|
ty: primitives.0.bool,
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
|
|
|
TopLevelDefInfo {
|
|
|
|
def: Self::make_top_level_class_def(4),
|
|
|
|
ast: None,
|
|
|
|
resolver: None,
|
2021-08-10 21:57:31 +08:00
|
|
|
ty: primitives.0.none,
|
2021-08-09 01:43:41 +08:00
|
|
|
},
|
2021-08-10 10:33:18 +08:00
|
|
|
]; // the entries for primitive types
|
2021-08-10 21:57:31 +08:00
|
|
|
TopLevelComposer { definition_list, primitives: primitives.0, unifier: primitives.1 }
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
|
|
|
|
2021-08-10 10:33:18 +08:00
|
|
|
pub fn make_top_level_class_def(index: usize) -> TopLevelDef {
|
|
|
|
TopLevelDef::Class {
|
|
|
|
object_id: DefinitionId(index),
|
|
|
|
type_vars: Default::default(),
|
|
|
|
fields: Default::default(),
|
|
|
|
methods: Default::default(),
|
|
|
|
ancestors: Default::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pub fn make_top_level_function_def(name: String, ty: Type) -> TopLevelDef {
|
|
|
|
TopLevelDef::Function {
|
|
|
|
name,
|
|
|
|
signature: ty,
|
|
|
|
instance_to_symbol: Default::default(),
|
2021-08-10 21:57:31 +08:00
|
|
|
instance_to_stmt: Default::default(),
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 21:57:31 +08:00
|
|
|
// like to make and return a "primitive" symbol resolver? so that the symbol resolver can later
|
|
|
|
// figure out primitive type definitions when passed a primitive type name
|
2021-08-10 10:33:18 +08:00
|
|
|
pub fn get_primitives_definition(&self) -> Vec<(String, DefinitionId, Type)> {
|
|
|
|
vec![
|
|
|
|
("int32".into(), DefinitionId(0), self.primitives.int32),
|
|
|
|
("int64".into(), DefinitionId(0), self.primitives.int32),
|
|
|
|
("float".into(), DefinitionId(0), self.primitives.int32),
|
|
|
|
("bool".into(), DefinitionId(0), self.primitives.int32),
|
|
|
|
("none".into(), DefinitionId(0), self.primitives.int32),
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2021-08-10 21:57:31 +08:00
|
|
|
pub fn register_top_level(
|
|
|
|
&mut self,
|
|
|
|
ast: ast::Stmt<()>,
|
|
|
|
resolver: &'a dyn SymbolResolver,
|
|
|
|
) -> Result<Vec<(String, DefinitionId, Type)>, String> {
|
2021-08-09 01:43:41 +08:00
|
|
|
match &ast.node {
|
2021-08-10 21:57:31 +08:00
|
|
|
ast::StmtKind::ClassDef { name, body, .. } => {
|
2021-08-10 10:33:18 +08:00
|
|
|
let class_name = name.to_string();
|
|
|
|
let def_id = self.definition_list.len();
|
|
|
|
// add the class to the unifier
|
|
|
|
let ty = self.unifier.add_ty(TypeEnum::TObj {
|
|
|
|
obj_id: DefinitionId(def_id),
|
|
|
|
fields: Default::default(),
|
2021-08-10 21:57:31 +08:00
|
|
|
params: Default::default(),
|
2021-08-10 10:33:18 +08:00
|
|
|
});
|
|
|
|
// add to the definition list
|
2021-08-10 21:57:31 +08:00
|
|
|
self.definition_list.push(TopLevelDefInfo {
|
|
|
|
def: Self::make_top_level_class_def(def_id),
|
|
|
|
resolver: Some(resolver),
|
|
|
|
ast: Some(ast),
|
|
|
|
ty,
|
|
|
|
});
|
|
|
|
|
2021-08-10 10:33:18 +08:00
|
|
|
// TODO: parse class def body and register class methods into the def list?
|
2021-08-10 21:57:31 +08:00
|
|
|
// FIXME: module's symbol resolver would not know the name of the class methods,
|
|
|
|
// thus cannot return their definition_id? so we have to manage it ourselves? or
|
|
|
|
// do we return the class method list of (method_name, def_id, type) to application
|
|
|
|
// to be used to build symbol resolver? <- current implementation
|
2021-08-10 10:33:18 +08:00
|
|
|
|
|
|
|
Ok(vec![(class_name, DefinitionId(def_id), ty)]) // FIXME: need to add class method def
|
2021-08-10 21:57:31 +08:00
|
|
|
}
|
2021-08-10 10:33:18 +08:00
|
|
|
|
2021-08-10 21:57:31 +08:00
|
|
|
ast::StmtKind::FunctionDef { name, .. } => {
|
2021-08-10 10:33:18 +08:00
|
|
|
let fun_name = name.to_string();
|
|
|
|
let def_id = self.definition_list.len();
|
|
|
|
// add to the unifier
|
2021-08-10 21:57:31 +08:00
|
|
|
let ty =
|
|
|
|
self.unifier.add_ty(TypeEnum::TFunc(crate::typecheck::typedef::FunSignature {
|
|
|
|
args: Default::default(),
|
|
|
|
ret: self.primitives.none, // NOTE: this needs to be changed later
|
|
|
|
vars: Default::default(),
|
|
|
|
}));
|
2021-08-10 10:33:18 +08:00
|
|
|
// add to the definition list
|
2021-08-10 21:57:31 +08:00
|
|
|
self.definition_list.push(TopLevelDefInfo {
|
|
|
|
def: Self::make_top_level_function_def(
|
|
|
|
name.into(),
|
|
|
|
self.primitives.none, // NOTE: this needs to be changed later
|
|
|
|
),
|
|
|
|
resolver: Some(resolver),
|
|
|
|
ast: Some(ast),
|
|
|
|
ty,
|
|
|
|
});
|
2021-08-10 10:33:18 +08:00
|
|
|
|
|
|
|
Ok(vec![(fun_name, DefinitionId(def_id), ty)])
|
2021-08-10 21:57:31 +08:00
|
|
|
}
|
2021-08-10 10:33:18 +08:00
|
|
|
|
2021-08-10 21:57:31 +08:00
|
|
|
_ => Err("only registrations of top level classes/functions are supprted".into()),
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// this should be called after all top level classes are registered, and will actually fill in those fields of the previous dummy one
|
|
|
|
pub fn analyze_top_level(&mut self) -> Result<(), String> {
|
|
|
|
for mut d in &mut self.definition_list {
|
|
|
|
if let (Some(ast), Some(resolver)) = (&d.ast, d.resolver) {
|
|
|
|
match &ast.node {
|
|
|
|
ast::StmtKind::ClassDef {
|
|
|
|
name,
|
|
|
|
bases,
|
|
|
|
body,
|
|
|
|
..
|
|
|
|
} => {
|
2021-08-10 21:57:31 +08:00
|
|
|
// ancestors and typevars associate with the class are analyzed by looking
|
|
|
|
// into the `bases` ast node
|
2021-08-10 10:33:18 +08:00
|
|
|
for b in bases {
|
|
|
|
match &b.node {
|
2021-08-10 21:57:31 +08:00
|
|
|
// base class, name directly available inside the module, can use
|
|
|
|
// this module's symbol resolver
|
|
|
|
ast::ExprKind::Name {id, ..} => {
|
2021-08-10 10:33:18 +08:00
|
|
|
let def_id = resolver.get_identifier_def(id);
|
|
|
|
unimplemented!()
|
|
|
|
},
|
2021-08-10 21:57:31 +08:00
|
|
|
// things can be like `class A(BaseModule.Base)`, here we have to
|
|
|
|
// get the symbol resolver of the module `BaseModule`?
|
|
|
|
ast::ExprKind::Attribute {value, attr, ..} => {
|
|
|
|
// need to change symbol resolver in order to get the symbol
|
|
|
|
// resolver of the imported module
|
|
|
|
unimplemented!()
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
2021-08-10 21:57:31 +08:00
|
|
|
// typevars bounded to the class, things like
|
|
|
|
// `class A(Generic[T, V])`
|
|
|
|
ast::ExprKind::Subscript {value, slice, ..} => {
|
2021-08-10 10:33:18 +08:00
|
|
|
if let ast::ExprKind::Name {id, ..} = &value.node {
|
|
|
|
if id == "Generic" {
|
|
|
|
// TODO: get typevars
|
|
|
|
unimplemented!()
|
|
|
|
} else {
|
|
|
|
return Err("unknown type var".into())
|
|
|
|
}
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
|
|
|
},
|
2021-08-10 10:33:18 +08:00
|
|
|
_ => return Err("not supported".into())
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 10:33:18 +08:00
|
|
|
// class method and field are analyzed by looking into the class body ast node
|
|
|
|
for stmt in body {
|
2021-08-09 01:43:41 +08:00
|
|
|
unimplemented!()
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
|
|
|
},
|
2021-08-09 01:43:41 +08:00
|
|
|
|
2021-08-10 10:33:18 +08:00
|
|
|
ast::StmtKind::FunctionDef {
|
|
|
|
name,
|
|
|
|
args,
|
|
|
|
body,
|
|
|
|
returns,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
unimplemented!()
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
|
|
|
|
2021-08-10 10:33:18 +08:00
|
|
|
_ => return Err("only expect function and class definitions to be submitted here to be analyzed".into())
|
|
|
|
}
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
2021-08-10 21:57:31 +08:00
|
|
|
}
|
2021-08-10 10:33:18 +08:00
|
|
|
Ok(())
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
2021-08-10 21:57:31 +08:00
|
|
|
}
|