2021-10-19 13:48:00 -07:00
|
|
|
use std::rc::Rc;
|
|
|
|
|
|
|
|
use crate::ast::*;
|
2021-10-24 17:57:56 -07:00
|
|
|
use crate::symbol_table::{Fqsn, Scope, SymbolTable, SymbolSpec};
|
2021-10-19 13:48:00 -07:00
|
|
|
use crate::util::ScopeStack;
|
|
|
|
|
2021-10-19 21:14:15 -07:00
|
|
|
type FqsnPrefix = Vec<Scope>;
|
2021-10-19 13:48:00 -07:00
|
|
|
|
2021-10-24 00:08:26 -07:00
|
|
|
#[derive(Debug)]
|
|
|
|
enum NameType {
|
|
|
|
//TODO eventually this needs to support closures
|
2021-10-24 01:00:32 -07:00
|
|
|
Param(u8), //TODO handle implications of functions being limited to 255 params
|
2021-10-24 00:08:26 -07:00
|
|
|
LocalVariable,
|
2021-10-24 01:00:32 -07:00
|
|
|
Import(Fqsn),
|
2021-10-24 00:08:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
enum ScopeType {
|
|
|
|
Function {
|
|
|
|
name: Rc<String>
|
|
|
|
},
|
|
|
|
//TODO add some notion of a let-like scope?
|
|
|
|
}
|
|
|
|
|
2021-10-21 15:23:48 -07:00
|
|
|
pub struct ScopeResolver<'a> {
|
2021-10-21 14:46:42 -07:00
|
|
|
symbol_table: &'a mut super::SymbolTable,
|
2021-10-24 01:00:32 -07:00
|
|
|
lexical_scopes: ScopeStack<'a, Rc<String>, NameType, ScopeType>,
|
2021-10-19 13:48:00 -07:00
|
|
|
}
|
|
|
|
|
2021-10-21 15:23:48 -07:00
|
|
|
impl<'a> ScopeResolver<'a> {
|
2021-10-21 14:46:42 -07:00
|
|
|
pub fn new(symbol_table: &'a mut SymbolTable) -> Self {
|
2021-10-24 00:08:26 -07:00
|
|
|
let lexical_scopes = ScopeStack::new(None);
|
2021-10-21 14:46:42 -07:00
|
|
|
Self {
|
|
|
|
symbol_table,
|
2021-10-24 00:08:26 -07:00
|
|
|
lexical_scopes,
|
2021-10-19 13:48:00 -07:00
|
|
|
}
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2021-10-24 00:08:26 -07:00
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
pub fn resolve(&mut self, ast: &AST) {
|
|
|
|
walk_ast(self, ast);
|
|
|
|
}
|
2021-10-19 13:48:00 -07:00
|
|
|
|
2021-10-24 01:00:32 -07:00
|
|
|
|
|
|
|
/*
|
2021-10-21 14:46:42 -07:00
|
|
|
fn lookup_name_in_scope(&self, sym_name: &QualifiedName) -> Fqsn {
|
|
|
|
let QualifiedName { components, .. } = sym_name;
|
|
|
|
let first_component = &components[0];
|
|
|
|
match self.name_scope_stack.lookup(first_component) {
|
|
|
|
None => Fqsn {
|
|
|
|
scopes: components
|
|
|
|
.iter()
|
|
|
|
.map(|name| Scope::Name(name.clone()))
|
|
|
|
.collect(),
|
|
|
|
},
|
|
|
|
Some(fqsn_prefix) => {
|
|
|
|
let mut full_name = fqsn_prefix.clone();
|
|
|
|
let rest_of_name: FqsnPrefix = components[1..]
|
|
|
|
.iter()
|
|
|
|
.map(|name| Scope::Name(name.clone()))
|
|
|
|
.collect();
|
|
|
|
full_name.extend_from_slice(&rest_of_name);
|
|
|
|
|
|
|
|
Fqsn { scopes: full_name }
|
|
|
|
}
|
2021-10-19 13:48:00 -07:00
|
|
|
}
|
|
|
|
}
|
2021-10-24 01:00:32 -07:00
|
|
|
*/
|
2021-10-19 13:48:00 -07:00
|
|
|
|
2021-10-24 00:08:26 -07:00
|
|
|
/// This method correctly modifies the id_to_symbol table (ItemId) to have the appropriate
|
|
|
|
/// mappings.
|
2021-10-24 01:00:32 -07:00
|
|
|
fn lookup_name_in_scope(&mut self, name: &QualifiedName) {
|
|
|
|
let QualifiedName { id, components } = name;
|
|
|
|
//TODO handle a "partial" qualified name
|
|
|
|
if components.len() == 1 {
|
|
|
|
let local_name: Rc<String> = components[0].clone();
|
|
|
|
let name_type = self.lexical_scopes.lookup(&local_name);
|
|
|
|
match name_type {
|
|
|
|
Some(NameType::Import(fqsn)) => {
|
|
|
|
let symbol = self.symbol_table.fqsn_to_symbol.get(&fqsn);
|
|
|
|
if let Some(symbol) = symbol {
|
|
|
|
self.symbol_table.id_to_symbol.insert(id.clone(), symbol.clone());
|
|
|
|
}
|
|
|
|
},
|
2021-10-24 02:02:04 -07:00
|
|
|
Some(NameType::Param(n)) => {
|
|
|
|
let spec = SymbolSpec::FunctionParam(*n);
|
|
|
|
let fqsn = Fqsn { scopes: vec![Scope::Name(local_name.clone())] };
|
|
|
|
self.symbol_table.add_symbol(id, fqsn, spec);
|
|
|
|
}
|
|
|
|
Some(NameType::LocalVariable) => {
|
|
|
|
let spec = SymbolSpec::LocalVariable;
|
|
|
|
let fqsn = Fqsn { scopes: vec![Scope::Name(local_name.clone())] };
|
|
|
|
self.symbol_table.add_symbol(id, fqsn, spec);
|
|
|
|
},
|
2021-10-24 02:54:21 -07:00
|
|
|
None => {
|
|
|
|
//TODO see if I can reduce this duplicate code
|
|
|
|
let fqsn = Fqsn { scopes: vec![Scope::Name(local_name.clone())] };
|
|
|
|
let symbol = self.symbol_table.fqsn_to_symbol.get(&fqsn);
|
|
|
|
if let Some(symbol) = symbol {
|
|
|
|
self.symbol_table.id_to_symbol.insert(id.clone(), symbol.clone());
|
|
|
|
}
|
|
|
|
}
|
2021-10-24 01:00:32 -07:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let fqsn = Fqsn { scopes: components.iter().map(|name| Scope::Name(name.clone())).collect() };
|
|
|
|
let symbol = self.symbol_table.fqsn_to_symbol.get(&fqsn);
|
|
|
|
if let Some(symbol) = symbol {
|
|
|
|
self.symbol_table.id_to_symbol.insert(id.clone(), symbol.clone());
|
|
|
|
}
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2021-10-19 13:48:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-21 15:23:48 -07:00
|
|
|
impl<'a> ASTVisitor for ScopeResolver<'a> {
|
2021-10-24 00:08:26 -07:00
|
|
|
// Import statements bring in a bunch of local names that all map to a specific FQSN.
|
|
|
|
// FQSNs map to a Symbol (or this is an error), Symbols have a DefId. So for every
|
|
|
|
// name we import, we map a local name (a string) to a NameType::ImportedDefinition(DefId).
|
|
|
|
fn import(&mut self, import_spec: &ImportSpecifier) -> Recursion {
|
2021-10-21 14:46:42 -07:00
|
|
|
let ImportSpecifier {
|
|
|
|
ref path_components,
|
|
|
|
ref imported_names,
|
|
|
|
..
|
|
|
|
} = &import_spec;
|
|
|
|
match imported_names {
|
|
|
|
ImportedNames::All => {
|
|
|
|
let prefix = Fqsn {
|
|
|
|
scopes: path_components
|
|
|
|
.iter()
|
|
|
|
.map(|c| Scope::Name(c.clone()))
|
|
|
|
.collect(),
|
|
|
|
};
|
|
|
|
let members = self.symbol_table.symbol_trie.get_children(&prefix);
|
2021-10-24 01:00:32 -07:00
|
|
|
for fqsn in members.into_iter() {
|
|
|
|
self.lexical_scopes.insert( fqsn.local_name(), NameType::Import(fqsn));
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ImportedNames::LastOfPath => {
|
2021-10-24 01:00:32 -07:00
|
|
|
let fqsn = Fqsn {
|
|
|
|
scopes: path_components
|
2021-10-21 14:46:42 -07:00
|
|
|
.iter()
|
|
|
|
.map(|c| Scope::Name(c.clone()))
|
2021-10-24 01:00:32 -07:00
|
|
|
.collect()
|
|
|
|
};
|
|
|
|
self.lexical_scopes.insert(fqsn.local_name(), NameType::Import(fqsn));
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
|
|
|
ImportedNames::List(ref names) => {
|
2021-10-24 01:00:32 -07:00
|
|
|
let fqsn_prefix: Vec<Scope> = path_components
|
2021-10-21 14:46:42 -07:00
|
|
|
.iter()
|
|
|
|
.map(|c| Scope::Name(c.clone()))
|
|
|
|
.collect();
|
|
|
|
for name in names.iter() {
|
2021-10-24 01:00:32 -07:00
|
|
|
let mut scopes = fqsn_prefix.clone();
|
|
|
|
scopes.push(Scope::Name(name.clone()));
|
|
|
|
let fqsn = Fqsn { scopes };
|
|
|
|
self.lexical_scopes.insert(fqsn.local_name(), NameType::Import(fqsn));
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
|
|
|
}
|
2021-10-19 13:48:00 -07:00
|
|
|
};
|
2021-10-24 00:08:26 -07:00
|
|
|
Recursion::Continue
|
|
|
|
}
|
|
|
|
|
|
|
|
fn declaration(&mut self, declaration: &Declaration) -> Recursion {
|
2021-10-24 01:00:32 -07:00
|
|
|
let is_function_scope = matches!(self.lexical_scopes.get_name(), Some(ScopeType::Function { .. }));
|
|
|
|
match declaration {
|
|
|
|
Declaration::FuncDecl(signature, block) => {
|
|
|
|
let param_names = signature.params.iter().map(|param| param.name.clone());
|
|
|
|
//TODO I'm 90% sure this is right, until I get to closures
|
|
|
|
//let mut new_scope = self.lexical_scopes.new_scope(Some(ScopeType::Function { name: signature.name.clone() }));
|
2021-10-24 02:02:04 -07:00
|
|
|
let mut new_scope = ScopeStack::new(Some(ScopeType::Function { name: signature.name.clone() }));
|
2021-10-24 01:00:32 -07:00
|
|
|
|
|
|
|
for (n, param) in param_names.enumerate().into_iter() {
|
|
|
|
new_scope.insert(param, NameType::Param(n as u8));
|
|
|
|
}
|
2021-10-24 00:08:26 -07:00
|
|
|
|
2021-10-24 01:00:32 -07:00
|
|
|
let mut new_resolver = ScopeResolver {
|
|
|
|
symbol_table: self.symbol_table,
|
|
|
|
lexical_scopes: new_scope,
|
|
|
|
};
|
|
|
|
walk_block(&mut new_resolver, block);
|
|
|
|
Recursion::Stop
|
2021-10-24 00:08:26 -07:00
|
|
|
}
|
2021-10-24 01:00:32 -07:00
|
|
|
Declaration::Binding { name, .. } if is_function_scope => {
|
|
|
|
self.lexical_scopes.insert(name.clone(), NameType::LocalVariable);
|
|
|
|
Recursion::Continue
|
|
|
|
}
|
|
|
|
_ => Recursion::Continue
|
2021-10-24 00:08:26 -07:00
|
|
|
}
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2021-10-19 13:48:00 -07:00
|
|
|
|
2021-10-24 00:08:26 -07:00
|
|
|
fn expression(&mut self, expression: &Expression) -> Recursion {
|
2021-10-23 00:22:12 -07:00
|
|
|
use ExpressionKind::*;
|
|
|
|
match &expression.kind {
|
|
|
|
Value(name) => {
|
2021-10-24 01:00:32 -07:00
|
|
|
self.lookup_name_in_scope(name);
|
2021-10-23 00:22:12 -07:00
|
|
|
},
|
|
|
|
NamedStruct { name, fields: _ } => {
|
2021-10-24 01:00:32 -07:00
|
|
|
self.lookup_name_in_scope(name);
|
2021-10-23 00:22:12 -07:00
|
|
|
},
|
|
|
|
_ => (),
|
2021-10-21 21:55:21 -07:00
|
|
|
}
|
2021-10-24 00:08:26 -07:00
|
|
|
Recursion::Continue
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2021-10-19 13:48:00 -07:00
|
|
|
|
2021-10-24 00:08:26 -07:00
|
|
|
fn pattern(&mut self, pat: &Pattern) -> Recursion {
|
2021-10-21 14:46:42 -07:00
|
|
|
use Pattern::*;
|
2021-10-23 00:22:12 -07:00
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
match pat {
|
|
|
|
//TODO I think not handling TuplePattern is an oversight
|
|
|
|
TuplePattern(_) => (),
|
|
|
|
Literal(_) | Ignored => (),
|
|
|
|
TupleStruct(name, _) | Record(name, _) | VarOrName(name) => {
|
2021-10-24 01:00:32 -07:00
|
|
|
self.lookup_name_in_scope(name);
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
|
|
|
};
|
2021-10-24 00:08:26 -07:00
|
|
|
Recursion::Continue
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2021-10-19 13:48:00 -07:00
|
|
|
}
|