Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rank arrays #74

Draft
wants to merge 14 commits into
base: master
Choose a base branch
from
Draft

Rank arrays #74

wants to merge 14 commits into from

Conversation

pbeart
Copy link
Collaborator

@pbeart pbeart commented Mar 19, 2025

No description provided.

@VonTum VonTum mentioned this pull request Mar 24, 2025
@VonTum VonTum self-requested a review March 27, 2025 23:48
Copy link
Collaborator

@VonTum VonTum left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, the vast majority (90%+) of line changes were due to renames of commonly used names. Don't do this, it severely slows down the review process.

Your work has some promising parts, namely the new Peano work, but also many strange and wildly incorrect parts, like adding peano types to Linker.

It's a promising direction, but to start we'll need to revert all those renames, as well as the clippy warnings that these changes cause.

I think it might be easiest to copy the Peano work (from abstract_type.rs), and create a clean branch to start over.

const DISPLAY_NAME: &'static str = "type_";
pub struct WholeTypeUUIDMarker;
impl UUIDMarker for WholeTypeUUIDMarker {
const DISPLAY_NAME: &'static str = "whole_type_";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't rename very commonly used types, like TypeUUID. That only causes headaches and merge conflicts with other work.

The change to rank arrays has nothing to do with the IDs we assign to types in the compilation context. "WholeType" is a good name for the combination of a named (IE, indexed by TypeUUID) and Peano array rank type.

Revert this rename.

@@ -214,7 +214,9 @@ enum NamespaceElement {
///
/// Incremental operations such as adding and removing files can be performed on this
pub struct Linker {
pub types: ArenaAllocator<StructType, TypeUUIDMarker>,
pub whole_types: ArenaAllocator<StructType, WholeTypeUUIDMarker>,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't rename commonly used fields in Linker. The types field refers to all declared structs in the compilation context. A "whole type" is constructed locally, from a named type (referring to an element in Linker::types) and a Peano number (that is constructed locally)

Revert this rename

pub types: ArenaAllocator<StructType, TypeUUIDMarker>,
pub whole_types: ArenaAllocator<StructType, WholeTypeUUIDMarker>,
pub inner_types: ArenaAllocator<StructType, WholeTypeUUIDMarker>,
pub rank_types: ArenaAllocator<StructType, WholeTypeUUIDMarker>,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "array ranks" are not something that is collected over multiple source files. the "Rank" arithmetic we've been talking about is a convenient way of representing numbers.

The Linker global singleton struct is used to collect all modules, types and constants that are declared in the user's source files. Since numbers don't need to have some central "store" of these, we don't need these here.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, inner_types and rank_types should be removed

@@ -804,6 +806,7 @@ impl Instruction {
/// See [crate::typing::type_inference::HindleyMilner]
#[derive(Debug, Clone)]
pub struct TypingAllocator {
pub type_variable_alloc: UUIDAllocator<TypeVariableIDMarker>,
pub peano_variable_alloc: UUIDAllocator<PeanoVariableIDMarker>,
pub type_variable_alloc: UUIDAllocator<InnerTypeVariableIDMarker>,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So in another comment I complained about renaming TypeUUID, but in this case the splitting of TypeVariableIDMarker into PeanoVariableIDMarker and InnerTypeVariableIDMarker is justified. Keep 😄

Perhaps even take it further, by renaming type_variable_alloc to ´inner_type_variable_alloc´

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So indeed to contrast it with my complaints about adding the rank stuff to Linker. Having this new peano allocator in TypingAllocator is correct because we indeed have to construct and typecheck the arrays locally within the module

whole_span,
"variable reference",
&"variable reference",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you have clippy enabled? It should warn on this unneccessary &.

To enable, add "rust-analyzer.check.command": "clippy", to your .vscode/settings.json

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, you've added the reference it in multiple places? Why?

pub domain_substitutor: TypeSubstitutor<DomainType, DomainVariableIDMarker>,
//pub type_map: HashMap<Type
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clumsy comment?

) {
// todo: tidy these up (remove duplication of code)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah some kind of abstraction combining unify inner and unify peano would be helpful

span: Span,
context: Context,
context: &Context,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, we need a better system for these Contexts, otherwise we're doing redundant clones all over the place

@@ -413,7 +560,7 @@ impl TypeUnifier {
span: Span,
context: Context,
) {
self.typecheck_write_to_abstract(&found.typ, &expected.typ, span, context.clone());
self.typecheck_write_to_abstract(&found.typ, &expected.typ, span, &mut context.clone());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Redundant &mut. Also &mut of .clone()? That's a heavy code smell

@@ -253,7 +259,7 @@ impl<MyType: HindleyMilner<VariableIDMarker> + Clone + Debug, VariableIDMarker:
found: &MyType,
expected: &MyType,
span: Span,
reporter: Report,
reporter: &Report,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pass-by-value was on purpose to reduce clones. But we should find a better way of doing it. So we can get 0, 1, or 2+ copies without cost. Maybe the most important thing would be the 0 copies case, as we expect no type errors for the happy path

@VonTum
Copy link
Collaborator

VonTum commented Mar 28, 2025

I just committed my .vscode files for all of us to use. This includes rustfmt rules, as well as enabling clippy

4f2cdf7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants