pub mod infer;
mod registration;
pub mod scopes;
use rustc_hash::{FxHashMap as HashMap, FxHashSet as HashSet};
use std::cell::RefCell;
use std::rc::Rc;
use crate::facts::Facts;
use crate::store::Store;
use diagnostics::DiagnosticSink;
use ecow::EcoString;
use scopes::Scopes;
use syntax::ast::Visibility as AstVisibility;
use syntax::ast::{Annotation, Expression, Generic, ImportAlias, Span, StructFieldDefinition};
use syntax::program::{
CoercionInfo, Definition, FileImport, MethodSignatures, Module, ResolutionInfo,
};
use syntax::types::{SubstitutionMap, Type, TypeVariableState, substitute};
#[derive(Debug, Default)]
pub struct IdGen {
next_type_var_id: i32,
}
impl IdGen {
pub fn new() -> Self {
Self::default()
}
pub fn new_type_var_id(&mut self) -> i32 {
let id = self.next_type_var_id;
self.next_type_var_id += 1;
id
}
}
#[derive(Debug, Clone)]
pub struct Cursor {
pub module_id: String,
pub file_id: Option<u32>,
}
impl Default for Cursor {
fn default() -> Self {
Self {
module_id: "std".to_string(),
file_id: None,
}
}
}
impl Cursor {
pub fn new() -> Self {
Self::default()
}
}
#[derive(Debug, Default)]
pub struct ImportState {
pub imported_modules: HashMap<String, (Vec<StructFieldDefinition>, Type)>,
pub prefix_to_module: HashMap<String, String>,
pub unprefixed_imports: HashSet<String>,
}
impl ImportState {
pub fn new() -> Self {
Self::default()
}
pub fn clear(&mut self) {
let prelude = self.imported_modules.remove("prelude");
self.imported_modules.clear();
if let Some(p) = prelude {
self.imported_modules.insert("prelude".to_string(), p);
}
let prelude_mapping = self.prefix_to_module.remove("prelude");
self.prefix_to_module.clear();
if let Some(m) = prelude_mapping {
self.prefix_to_module.insert("prelude".to_string(), m);
}
self.unprefixed_imports.clear();
}
}
type BuiltinCache = HashMap<String, Type>;
pub(crate) struct InferenceState {
pub type_param_depth: u32,
pub satisfying_stack: rustc_hash::FxHashSet<(String, String)>,
pub inferring_assignment_target: bool,
pub impl_receiver_type: Option<Type>,
pub undo_log: Option<Vec<(Rc<RefCell<TypeVariableState>>, TypeVariableState)>>,
pub in_match_arm: bool,
pub loop_needs_label_stack: Vec<bool>,
pub in_subexpression: bool,
}
impl InferenceState {
pub fn new() -> Self {
Self {
type_param_depth: 0,
satisfying_stack: rustc_hash::FxHashSet::default(),
inferring_assignment_target: false,
impl_receiver_type: None,
undo_log: None,
in_match_arm: false,
loop_needs_label_stack: Vec::new(),
in_subexpression: false,
}
}
}
pub enum PostInferenceCheck {
GenericCall { return_ty: Type, span: Span },
EmptyCollection { name: String, ty: Type, span: Span },
StatementTail { expected_ty: Type, span: Span },
}
pub struct Checker<'r, 's> {
pub ids: IdGen,
pub store: &'r mut Store,
pub scopes: Scopes,
pub cursor: Cursor,
pub imports: ImportState,
pub builtins: BuiltinCache,
pub sink: &'s DiagnosticSink,
pub facts: Facts,
pub coercions: CoercionInfo,
pub resolutions: ResolutionInfo,
pub post_inference_checks: Vec<PostInferenceCheck>,
pub(crate) inference: InferenceState,
method_cache: RefCell<HashMap<EcoString, MethodSignatures>>,
pub ufcs_methods: HashSet<(String, String)>,
}
impl<'r, 's> Checker<'r, 's> {
pub fn new(store: &'r mut Store, sink: &'s DiagnosticSink) -> Self {
Self {
ids: IdGen::new(),
store,
scopes: Scopes::new(),
cursor: Cursor::new(),
imports: ImportState::new(),
builtins: BuiltinCache::default(),
sink,
facts: Facts::new(),
coercions: CoercionInfo::default(),
resolutions: ResolutionInfo::default(),
post_inference_checks: Vec::new(),
inference: InferenceState::new(),
method_cache: RefCell::new(HashMap::default()),
ufcs_methods: HashSet::default(),
}
}
pub fn new_type_var(&mut self) -> Type {
let id = self.new_type_var_id();
Type::Variable(Rc::new(RefCell::new(TypeVariableState::Unbound {
id,
hint: None,
})))
}
pub fn new_type_var_with_hint(&mut self, hint: &str) -> Type {
let id = self.new_type_var_id();
Type::Variable(Rc::new(RefCell::new(TypeVariableState::Unbound {
id,
hint: Some(hint.into()),
})))
}
pub fn type_from_literal_expression(&mut self, expression: &Expression) -> Option<Type> {
use syntax::ast::{Expression, Literal};
match expression {
Expression::Literal { literal, .. } => match literal {
Literal::Integer { .. } => Some(self.type_int()),
Literal::Float { .. } => Some(self.type_float()),
Literal::Boolean(_) => Some(self.type_bool()),
Literal::String(_) => Some(self.type_string()),
Literal::Char(_) => Some(self.type_char()),
_ => None,
},
Expression::Unary { expression, .. } => self.type_from_literal_expression(expression),
_ => None,
}
}
pub fn instantiate(&mut self, ty: &Type) -> (Type, SubstitutionMap) {
match ty {
Type::Forall { vars, body } => {
let map: SubstitutionMap = vars
.iter()
.map(|name| {
let id = self.new_type_var_id();
let fresh_var =
Type::Variable(Rc::new(RefCell::new(TypeVariableState::Unbound {
id,
hint: Some(name.clone()),
})));
(name.clone(), fresh_var)
})
.collect();
(substitute(body, &map), map)
}
_ => (ty.clone(), HashMap::default()),
}
}
pub fn new_file_id(&mut self) -> u32 {
self.store.new_file_id()
}
pub fn new_type_var_id(&mut self) -> i32 {
self.ids.new_type_var_id()
}
pub fn is_d_lis(&self) -> bool {
let Some(file_id) = self.cursor.file_id else {
return false;
};
let Some(module) = self.store.get_module(&self.cursor.module_id) else {
return false;
};
module.typedefs.contains_key(&file_id)
}
pub fn is_lis(&self) -> bool {
!self.is_d_lis()
}
pub(crate) fn qualify_name(&self, name: &str) -> String {
format!("{}.{}", self.cursor.module_id, name)
}
pub(crate) fn put_in_scope(&mut self, generics: &[Generic]) {
for (index, generic) in generics.iter().enumerate() {
self.scopes
.current_mut()
.type_params
.get_or_insert_with(HashMap::default)
.insert(generic.name.to_string(), index);
}
}
fn resolve_in_imported_module<'m>(
&self,
module: &'m Module,
simple_name: &str,
) -> Option<(String, &'m Definition)> {
let module_prefix = format!("{}.", module.id);
let direct = format!("{}{}", module_prefix, simple_name);
if let Some(definition) = module.definitions.get(direct.as_str())
&& definition.visibility().is_public()
{
return Some((direct, definition));
}
let suffix = format!(".{}", simple_name);
for (qn, definition) in &module.definitions {
if qn.ends_with(suffix.as_str())
&& qn.starts_with(module_prefix.as_str())
&& definition.visibility().is_public()
{
let rest = &qn[module_prefix.len()..];
if rest.contains('.') {
return Some((qn.to_string(), definition));
}
}
}
None
}
pub(crate) fn lookup_qualified_name(&self, type_name: &str) -> Option<String> {
if let Some((prefix, simple_name)) = type_name.split_once('.')
&& let Some(module_id) = self.imports.prefix_to_module.get(prefix)
&& let Some(imported_module) = self.store.get_module(module_id)
&& let Some((qualified_name, _)) =
self.resolve_in_imported_module(imported_module, simple_name)
{
return Some(qualified_name);
}
let module = self.store.get_module(&self.cursor.module_id)?;
let qualified_name = format!("{}.{}", module.id, type_name);
if module.definitions.contains_key(qualified_name.as_str()) {
return Some(qualified_name);
}
for imported_module_id in &self.imports.unprefixed_imports {
if let Some(imported_module) = self.store.get_module(imported_module_id) {
let qualified_name = format!("{}.{}", imported_module_id, type_name);
if imported_module
.definitions
.contains_key(qualified_name.as_str())
{
return Some(qualified_name);
}
}
}
None
}
pub(crate) fn get_definition_name_span(&self, qualified_name: &str) -> Option<Span> {
self.store.get_definition(qualified_name)?.name_span()
}
pub(crate) fn track_name_usage(&mut self, qualified_name: &str, span: &Span, name_len: u32) {
if let Some(definition_span) = self.get_definition_name_span(qualified_name) {
let usage_span = Span::new(span.file_id, span.byte_offset, name_len);
self.facts.add_usage(usage_span, definition_span);
}
}
pub(crate) fn lookup_generic_index(&self, type_name: &str) -> Option<usize> {
self.scopes.lookup_type_param(type_name)
}
fn resolve_definition_value_type(&self, definition: &Definition) -> Type {
if let Definition::Struct {
constructor: Some(ctor_ty),
..
} = definition
{
return ctor_ty.clone();
}
if let Definition::TypeAlias { ty: alias_ty, .. } = definition {
let underlying = match alias_ty {
Type::Forall { body, .. } => body.as_ref(),
other => other,
};
if let Type::Constructor { id, .. } = underlying
&& let Some(Definition::Struct {
constructor: Some(ctor_ty),
..
}) = self.store.get_definition(id)
{
return ctor_ty.clone();
}
}
definition.ty().clone()
}
pub(crate) fn lookup_type(&self, value_name: &str) -> Option<Type> {
if let Some(ty) = self.scopes.lookup_value(value_name) {
return Some(ty.clone());
}
if let Some((_definition, ty)) = self.imports.imported_modules.get(value_name) {
return Some(ty.clone());
}
if let Some((prefix, rest)) = value_name.split_once('.')
&& let Some(module_id) = self.imports.prefix_to_module.get(prefix)
&& let Some(imported_module) = self.store.get_module(module_id)
&& let Some((_, definition)) = self.resolve_in_imported_module(imported_module, rest)
{
return Some(self.resolve_definition_value_type(definition));
}
let module = self.store.get_module(&self.cursor.module_id)?;
let qualified_name = format!("{}.{}", module.id, value_name);
if let Some(definition) = module.definitions.get(qualified_name.as_str()) {
return Some(self.resolve_definition_value_type(definition));
}
for imported_module_id in &self.imports.unprefixed_imports {
if let Some(imported_module) = self.store.get_module(imported_module_id) {
let qualified_name = format!("{}.{}", imported_module_id, value_name);
if let Some(definition) = imported_module.definitions.get(qualified_name.as_str()) {
return Some(self.resolve_definition_value_type(definition));
}
}
}
None
}
pub(crate) fn is_enum_type(&self, ty: &Type) -> bool {
let Type::Constructor { id, .. } = ty else {
return false;
};
let Some(definition) = self.store.get_definition(id) else {
return false;
};
matches!(
definition,
Definition::Enum { .. } | Definition::ValueEnum { .. }
)
}
pub(crate) fn resolve_type_name(&mut self, type_name: &str) -> Option<(String, Type)> {
if self.scopes.lookup_type_param(type_name).is_some() {
return None;
}
let qualified_name = self.lookup_qualified_name(type_name)?;
let ty = self.store.get_type(&qualified_name)?.clone();
Some((qualified_name, ty))
}
pub(crate) fn resolve_type_from_prelude(&self, type_name: &str) -> Option<(String, Type)> {
let qualified_name = format!("prelude.{}", type_name);
let ty = self.store.get_type(&qualified_name)?.clone();
Some((qualified_name, ty))
}
pub(crate) fn get_all_methods(&self, ty: &Type) -> MethodSignatures {
if let Type::Parameter(name) = ty {
let trait_bounds = self.scopes.collect_all_trait_bounds();
let qualified_name = self.qualify_name(name);
return self
.store
.get_methods_from_bounds(&qualified_name, &trait_bounds);
}
let Type::Constructor { id, .. } = ty.strip_refs().resolve() else {
return MethodSignatures::default();
};
if self.store.get_interface(&id).is_some() {
let empty = HashMap::default();
return self.store.get_all_methods(ty, &empty);
}
if let Some(cached) = self.method_cache.borrow().get(&id) {
return cached.clone();
}
let empty = HashMap::default();
let methods = self.store.get_all_methods(ty, &empty);
self.method_cache.borrow_mut().insert(id, methods.clone());
methods
}
pub fn reset_scopes(&mut self) {
self.scopes.reset();
self.imports.clear();
}
pub fn failed(&self) -> bool {
self.sink.has_errors()
}
pub fn put_prelude_in_scope(&mut self) {
self.put_unprefixed_module_in_scope("prelude");
if self.imports.imported_modules.contains_key("prelude") {
return;
}
self.put_module_in_scope("prelude", Some("prelude".to_string()));
}
pub fn put_unprefixed_module_in_scope(&mut self, module_id: &str) {
self.put_module_in_scope(module_id, None)
}
pub fn put_imported_modules_in_scope(&mut self, imports: &[FileImport]) {
let mut seen_aliases: HashMap<String, String> = HashMap::default(); let mut seen_paths: HashSet<String> = HashSet::default();
for import in imports {
if seen_paths.contains(import.name.as_str()) {
self.sink.push(diagnostics::infer::duplicate_import_path(
&import.name,
import.name_span,
));
continue;
}
seen_paths.insert(import.name.to_string());
if let Some(ImportAlias::Blank(blank_span)) = &import.alias {
if !import.name.starts_with("go:") {
self.sink
.push(diagnostics::infer::blank_import_non_go(*blank_span));
}
continue;
}
if let Some(ImportAlias::Named(alias, alias_span)) = &import.alias
&& is_reserved_import_alias(alias)
{
self.sink.push(diagnostics::infer::reserved_import_alias(
alias,
*alias_span,
));
continue;
}
let Some(effective) = import.effective_alias() else {
continue;
};
if let Some(existing_path) = seen_aliases.get(&effective)
&& existing_path != &import.name
{
self.sink.push(diagnostics::infer::import_conflict(
&effective,
existing_path,
&import.name,
import.name_span,
));
continue;
}
seen_aliases.insert(effective.clone(), import.name.to_string());
if !self.store.has(&import.name) {
continue;
}
self.put_module_in_scope(&import.name, Some(effective));
}
}
pub fn put_module_in_scope(&mut self, module_id: &str, prefix: Option<String>) {
let Some(prefix) = prefix else {
self.imports
.unprefixed_imports
.insert(module_id.to_string());
return;
};
let module = self
.store
.get_module(module_id)
.expect("module must exist when putting in scope");
let imported_module_id = module.id.clone();
let module_prefix = format!("{}.", module.id);
let module_struct_fields: Vec<_> = module
.definitions
.iter()
.filter(|(qn, _)| module.is_public(qn))
.filter(|(qn, _)| {
qn.strip_prefix(&module_prefix)
.is_some_and(|rest| !rest.contains('.'))
})
.map(|(qn, definition)| {
let simple_name = qn
.strip_prefix(&module_prefix)
.expect("qualified_name must start with module prefix");
let ty = if let Definition::Struct {
constructor: Some(ctor_ty),
..
} = definition
{
ctor_ty.clone()
} else {
definition.ty().clone()
};
StructFieldDefinition {
doc: None,
attributes: vec![],
visibility: AstVisibility::Public,
name: simple_name.into(),
name_span: Span::dummy(),
annotation: Annotation::Unknown,
ty,
}
})
.collect();
let ty = Type::Constructor {
id: format!("@import/{}", imported_module_id).into(),
params: vec![],
underlying_ty: None,
};
self.imports
.imported_modules
.insert(prefix.clone(), (module_struct_fields, ty));
self.imports
.prefix_to_module
.insert(prefix, imported_module_id);
}
pub(crate) fn speculatively<T, E>(
&mut self,
f: impl FnOnce(&mut Self) -> Result<T, E>,
) -> Result<T, E> {
let prev_log = self.inference.undo_log.take();
self.inference.undo_log = Some(Vec::new());
let result = f(self);
let log = self.inference.undo_log.take().unwrap();
self.inference.undo_log = prev_log;
if result.is_err() {
for (type_var, original_state) in log.into_iter().rev() {
*type_var.borrow_mut() = original_state;
}
} else if let Some(parent_log) = &mut self.inference.undo_log {
parent_log.extend(log);
}
result
}
pub(crate) fn set_inferring_assignment_target(&mut self) {
self.inference.inferring_assignment_target = true;
}
pub(crate) fn clear_inferring_assignment_target(&mut self) {
self.inference.inferring_assignment_target = false;
}
pub(crate) fn is_inferring_assignment_target(&self) -> bool {
self.inference.inferring_assignment_target
}
}
fn is_reserved_import_alias(name: &str) -> bool {
matches!(
name,
"break"
| "case"
| "chan"
| "const"
| "continue"
| "default"
| "defer"
| "else"
| "fallthrough"
| "for"
| "func"
| "go"
| "goto"
| "if"
| "interface"
| "map"
| "package"
| "range"
| "return"
| "select"
| "struct"
| "switch"
| "type"
| "var"
| "nil"
| "iota"
| "true"
| "false"
| "bool"
| "byte"
| "complex64"
| "complex128"
| "error"
| "float32"
| "float64"
| "int"
| "int8"
| "int16"
| "int32"
| "int64"
| "rune"
| "string"
| "uint"
| "uint8"
| "uint16"
| "uint32"
| "uint64"
| "uintptr"
| "append"
| "cap"
| "clear"
| "close"
| "complex"
| "copy"
| "delete"
| "imag"
| "len"
| "make"
| "max"
| "min"
| "new"
| "panic"
| "print"
| "println"
| "real"
| "recover"
| "any"
| "comparable"
| "init"
| "main"
| "Option"
| "Result"
| "Some"
| "None"
| "Ok"
| "Err"
)
}