cl-typeck: Continue work on symbol namespaces
- Refactor for cl-structures intern pool - Create a list of types the compiler is supposed to care about/have implementations for (Intrinsic/primitive types) - Add modules and projects (the sym equivalent of ast::File) - Flesh out value definitions - TODO: Create an IR for statements and expressions, and lower the AST into it
This commit is contained in:
parent
8cbe570811
commit
ba148ef5de
@ -9,3 +9,4 @@ publish.workspace = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cl-ast = { path = "../cl-ast" }
|
cl-ast = { path = "../cl-ast" }
|
||||||
|
cl-structures = { path = "../cl-structures" }
|
||||||
|
@ -3,140 +3,169 @@
|
|||||||
//! As a statically typed language, Conlang requires a robust type checker to enforce correctness.
|
//! As a statically typed language, Conlang requires a robust type checker to enforce correctness.
|
||||||
|
|
||||||
#![warn(clippy::all)]
|
#![warn(clippy::all)]
|
||||||
#![allow(unused)]
|
|
||||||
use std::{cell::RefCell, collections::HashMap, rc::Rc};
|
|
||||||
|
|
||||||
use cl_ast::*;
|
/*
|
||||||
|
|
||||||
pub mod intern {
|
The type checker keeps track of a *global intern pool* for Types and Values
|
||||||
//! Trivially-copyable, easily comparable typed indices for type system constructs
|
References to the intern pool are held by ID, and items cannot be freed from the pool EVER.
|
||||||
|
|
||||||
/// Creates newtype indices over [`usize`] for use elsewhere in the type checker
|
Items are inserted into their respective pools,
|
||||||
macro_rules! def_id {($($(#[$meta:meta])* $name:ident),*$(,)?) => {$(
|
|
||||||
$(#[$meta])*
|
|
||||||
#[repr(transparent)]
|
|
||||||
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
||||||
pub struct $name(usize);
|
|
||||||
|
|
||||||
impl $name {
|
|
||||||
#[doc = concat!("Constructs a [`", stringify!($name), "`] from a [`usize`] without checking bounds.")]
|
|
||||||
/// # Safety
|
|
||||||
/// The provided value should be within the bounds of its associated container
|
|
||||||
pub unsafe fn from_raw_unchecked(value: usize) -> Self {
|
|
||||||
Self(value)
|
|
||||||
}
|
|
||||||
/// Gets the index of the type by-value
|
|
||||||
pub fn value(&self) -> usize {
|
|
||||||
self.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From< $name > for usize {
|
*/
|
||||||
fn from(value: $name) -> Self {
|
|
||||||
value.0
|
pub mod key {
|
||||||
}
|
use cl_structures::intern_pool::*;
|
||||||
}
|
|
||||||
)*}}
|
|
||||||
|
|
||||||
// define the index types
|
// define the index types
|
||||||
def_id! {
|
make_intern_key! {
|
||||||
/// Uniquely represents a Type
|
/// Uniquely represents a TypeDef in the TypeDef [Pool]
|
||||||
TypeID,
|
TypeID,
|
||||||
/// Uniquely represents a Value
|
/// Uniquely represents a ValueDef in the ValueDef [Pool]
|
||||||
ValueID,
|
ValueID,
|
||||||
|
/// Uniquely represents a Module in the Module [Pool]
|
||||||
|
ModuleID,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod typedef {
|
pub mod typedef {
|
||||||
//! Representations of type definitions
|
//! A TypeDef represents an item in the Type Namespace (a component of a
|
||||||
// use std::collections::HashMap;
|
//! [Project](crate::project::Project)).
|
||||||
|
|
||||||
use crate::intern::TypeID;
|
use crate::key::{TypeID, ValueID};
|
||||||
use cl_ast::{Item, Visibility};
|
use cl_ast::{Item, Visibility};
|
||||||
|
|
||||||
/// The definition of a type
|
/// A TypeDef represents an item in the Type Namespace (a component of a
|
||||||
|
/// [Project](crate::project::Project)).
|
||||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
pub struct TypeDef {
|
pub struct TypeDef {
|
||||||
name: String,
|
pub name: String,
|
||||||
kind: Option<TypeKind>,
|
/// The expanded form of the definition, with all fields properly typed.
|
||||||
definition: Item,
|
/// This is filled in once all types are been enumerated.
|
||||||
|
pub kind: Option<TypeKind>,
|
||||||
|
pub definition: Item,
|
||||||
|
pub associated_values: Vec<ValueID>,
|
||||||
|
// TODO: Generic type parameters
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
pub enum TypeKind {
|
pub enum TypeKind {
|
||||||
/// A primitive type, built-in to the compiler
|
/// A primitive type, built-in to the compiler
|
||||||
Intrinsic,
|
Intrinsic(Intrinsic),
|
||||||
/// A user-defined structural product type
|
/// A user-defined structural product type
|
||||||
Struct(Vec<(String, Visibility, TypeID)>),
|
Struct(Vec<(String, Visibility, TypeID)>),
|
||||||
/// A user-defined union-like enum type
|
/// A user-defined union-like enum type
|
||||||
Enum(Vec<(String, TypeID)>),
|
Enum(Vec<(String, TypeID)>),
|
||||||
/// A type alias
|
/// An alias for an already-defined type
|
||||||
Alias(TypeID),
|
Alias(TypeID),
|
||||||
/// The unit type
|
/// The unit type
|
||||||
Empty,
|
Empty,
|
||||||
/// The Self type
|
/// The Self type
|
||||||
SelfTy,
|
SelfTy,
|
||||||
// TODO: other types
|
// TODO: union types, tuples, tuple structs maybe?
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The set of compiler-intrinsic types.
|
||||||
|
/// These primitive types have native implementations of the basic operations.
|
||||||
|
#[allow(non_camel_case_types)]
|
||||||
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
|
pub enum Intrinsic {
|
||||||
|
/// A 32-bit two's complement integer
|
||||||
|
i32,
|
||||||
|
/// A 32-bit unsigned integer
|
||||||
|
u32,
|
||||||
|
/// A boolean (`true` or `false`)
|
||||||
|
bool,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod valdef {
|
pub mod valdef {
|
||||||
//! Representations of value definitions
|
//! A [ValueDef] represents an item in the Value Namespace (a component of a
|
||||||
|
//! [Project](crate::project::Project)).
|
||||||
|
|
||||||
use crate::intern::{TypeID, ValueID};
|
use crate::typeref::TypeRef;
|
||||||
use cl_ast::Block;
|
use cl_ast::{Block, Item};
|
||||||
|
|
||||||
|
/// A [ValueDef] represents an item in the Value Namespace (a component of a
|
||||||
|
/// [Project](crate::project::Project)).
|
||||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
pub struct ValueDef {
|
pub struct ValueDef {
|
||||||
name: String,
|
pub name: String,
|
||||||
kind: Option<ValueKind>,
|
/// The expanded form of the definition, with all fields properly typed
|
||||||
|
pub kind: Option<ValueKind>,
|
||||||
|
pub definition: Item,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
pub enum ValueKind {
|
pub enum ValueKind {
|
||||||
Const(),
|
Const(TypeRef),
|
||||||
Static(),
|
Static(TypeRef),
|
||||||
Fn {
|
Fn {
|
||||||
args: Vec<TypeID>,
|
args: Vec<TypeRef>,
|
||||||
rety: TypeID,
|
rety: TypeRef,
|
||||||
body: Block,
|
body: Block,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod typeinfo {
|
pub mod module {
|
||||||
//! Stores typeck-time type inference info
|
//! A [Module] is a node in the Module Tree (a component of a
|
||||||
|
//! [Project](crate::project::Project))
|
||||||
|
use crate::key::{ModuleID, TypeID, ValueID};
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use crate::intern::TypeID;
|
/// A [Module] is a node in the Module Tree (a component of a
|
||||||
|
/// [Project](crate::project::Project)).
|
||||||
/// The Type struct represents all valid types, and can be trivially equality-compared
|
#[derive(Clone, Debug, Default, PartialEq, Eq)]
|
||||||
pub struct Type {
|
pub struct Module {
|
||||||
/// You can only have a pointer chain 65535 pointers long.
|
pub parent: Option<ModuleID>,
|
||||||
ref_depth: u16,
|
pub types: HashMap<String, TypeID>,
|
||||||
/// Types can be [Generic](TKind::Generic) or [Concrete](TKind::Concrete)
|
pub values: HashMap<String, ValueID>,
|
||||||
kind: TKind,
|
pub submodules: HashMap<String, ModuleID>,
|
||||||
}
|
|
||||||
|
|
||||||
/// Types can be [Generic](TKind::Generic) or [Concrete](TKind::Concrete)
|
|
||||||
pub enum TKind {
|
|
||||||
/// A Concrete type has an associated [TypeDef](super::typedef::TypeDef)
|
|
||||||
Concrete(TypeID),
|
|
||||||
/// A Generic type is a *locally unique* comparable value,
|
|
||||||
/// valid only until the end of its inference context
|
|
||||||
Generic(usize),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod type_context {
|
pub mod project {
|
||||||
//! A type context stores a map from names to TypeIDs
|
use cl_structures::intern_pool::Pool;
|
||||||
|
|
||||||
use std::collections::HashMap;
|
use crate::{
|
||||||
|
key::{ModuleID, TypeID, ValueID},
|
||||||
|
module::Module,
|
||||||
|
typedef::TypeDef,
|
||||||
|
valdef::ValueDef,
|
||||||
|
};
|
||||||
|
|
||||||
use crate::intern::TypeID;
|
#[derive(Clone, Debug, Default, PartialEq, Eq)]
|
||||||
|
pub struct Project {
|
||||||
|
pub types: Pool<TypeDef, TypeID>,
|
||||||
|
pub values: Pool<ValueDef, ValueID>,
|
||||||
|
pub modules: Pool<Module, ModuleID>,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub struct TypeCtx {
|
pub mod typeref {
|
||||||
parent: Option<Box<TypeCtx>>,
|
//! Stores type and referencce info
|
||||||
concrete: HashMap<String, TypeID>,
|
|
||||||
|
use crate::key::TypeID;
|
||||||
|
|
||||||
|
/// The Type struct represents all valid types, and can be trivially equality-compared
|
||||||
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
|
pub struct TypeRef {
|
||||||
|
/// You can only have a pointer chain 65535 pointers long.
|
||||||
|
ref_depth: u16,
|
||||||
|
/// Types can be [Generic](TKind::Generic) or [Concrete](TKind::Concrete)
|
||||||
|
kind: RefKind,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Types can be [Generic](TKind::Generic) or [Concrete](TKind::Concrete)
|
||||||
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
|
pub enum RefKind {
|
||||||
|
/// A Concrete type has an associated [TypeDef](super::typedef::TypeDef)
|
||||||
|
Concrete(TypeID),
|
||||||
|
/// A Generic type is a *locally unique* comparable value,
|
||||||
|
/// valid only until the end of its typing context.
|
||||||
|
/// This is usually the surrounding function.
|
||||||
|
Generic(usize),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user