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

Update 2023-07-24-report.org #101

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions 2023-07-24-report.org
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ Thanks again to [[https://opensrcsec.com/][Open Source Security, inc]] and [[htt
1. Path resolution
2. Module resolution
3. Now looking at it with Pierre-Emmanuel
4. Sized marker trait implemented
1. Lays ground work for support drop traits
2. Means our trait system is working well
3. Fixed ICE's in typesystem thanks to bugs from GSoC Students
5. More error codes and lots of testing going on.

** Completed Activities

Expand Down Expand Up @@ -116,5 +121,47 @@ Thus the percentage is computed using the sum of issues and tracked items done d

- Finish name resolution rework
- Look into remaining issues required for proper AST pipeline of `core`
- Continue bug fixing in type system
- Opaque types development

** Detailed changelog

*** Sized marker trait

In Rust all generic type parameters implement the Sized marker trait by default. This means for an example such as:

#+BEGIN_SRC rust
fn foo<T>(a:T) -> X { ... }
#+END_SRC

Will always get turned into:

#+BEGIN_SRC rust
#[lang = "sized"]
pub trait Sized {}

fn foo<T: Sized>(a:T) -> X { ... }
#+END_SRC

Types such as Slices, Dyn traits do not implement sized so we need to use the special syntax of ?Sized to remove the Sized trait obligation

#+BEGIN_SRC rust
#[lang = "sized"]
pub trait Sized {}

pub trait Trait {
fn foo(&self) -> Self
where
Self: Sized;
}

pub fn static_foo<T: Trait + ?Sized>(_b: &T) {}

pub fn dynamic_bar(a: &dyn Trait) {
static_foo(a)
}
#+END_SRC

Note in the example, traits define an implicit Self type parameter which does not implement Sized by default. This is because it would cause a recursive trait obligation for Sized to be defined on the Self for the Sized trait itself.

This is a key milestone for gccrs as it lays the groundwork to support the other major marker-trait of Drop.