-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
697f007
commit cdc9b5e
Showing
1 changed file
with
243 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,243 @@ | ||
## Overview | ||
|
||
Thanks again to [Open Source Security, inc](https://opensrcsec.com/) and | ||
[Embecosm](https://www.embecosm.com/) for their ongoing support for this | ||
project. | ||
|
||
### Project update | ||
|
||
37 pull-requests were merged this month, which makes October one of the | ||
most productive months of this year for `gccrs`. Most of the changes | ||
concerned our name resolution rewrite, and more specifically its | ||
integration to the rest of the compiler pipeline. This paves the way for | ||
the removal of our old name resolution algorithm, which will happen as | ||
soon as all testcases pass using the new algorithm. Some long standing | ||
type system bugs were also fixed, which brings us closer and closer | ||
towards typechecking `core` and being able to compile it. We are now | ||
approaching the end of the Stage 1 period for GCC 15.1, which means we | ||
will soon no longer be able to push changes to common GCC | ||
infrastructure. As such, we are spending some time making sure all of | ||
these changes are properly sent upstream and are being reviewed. Changes | ||
made specifically to the Rust frontend will be upstreamable until the | ||
release of GCC 15.1, in spring of 2025. We are also working towards a | ||
rework of our fork-updating process, in order to make it easier to | ||
develop `gccrs` on the most recent version of GCC. This process is | ||
currently manual, and hard to automate - which is not fair to the | ||
contributor in charge of this task. Spending this time will make it | ||
easier for us to upstream our changes, which will speed up that process. | ||
|
||
The technical blogpost from last month was well-received, with positive | ||
comments and conversations on Reddit. It has been linked in the | ||
blog.rust-lang.org blogpost, which has been reviewed and approved, and | ||
should release shortly. | ||
|
||
### Community call | ||
|
||
We will have our next monthly community call on the 12th of November at | ||
10am UTC. You can subscribe to our calendar to see when the next one | ||
will be held. The call is open to everyone, even if you would just like | ||
to sit-in and listen. You can also subscribe to our | ||
[mailing-list](https://gcc.gnu.org/mailman/listinfo/gcc-rust) or join | ||
our [Zulip chat](https://gcc-rust.zulipchat.com) to be notified of | ||
upcoming events. | ||
|
||
- [Jitsi link](https://meet.jit.si/gccrs-community-call-august) | ||
- Calendar ID: | ||
7060a0923ffebd3cb52b1afef35a28ff7b64f05962c9af84c23b1847f1f5f894@group.calendar.google.com | ||
- [Google calendar | ||
link](https://calendar.google.com/calendar/embed?src=7060a0923ffebd3cb52b1afef35a28ff7b64f05962c9af84c23b1847f1f5f894%40group.calendar.google.com) | ||
- [iCal | ||
link](https://calendar.google.com/calendar/ical/7060a0923ffebd3cb52b1afef35a28ff7b64f05962c9af84c23b1847f1f5f894%40group.calendar.google.com/public/basic.ics) | ||
|
||
## Call for contribution | ||
|
||
There are no calls for contribution this month, as we do not have a lot | ||
of good first issues available. Still, feel free to take a look at them | ||
[here](https://github.com/Rust-GCC/gccrs/issues?q=is%3Aopen+is%3Aissue+label%3Agood-first-pr) | ||
and get in touch with us for some mentoring or help! | ||
|
||
## Completed Activities | ||
|
||
- Remove usage of \`Resolver::get<sub>builtintypes</sub>\` | ||
[PR3236](https://github.com/rust-gcc/gccrs/pull/3236) | ||
- gccrs: fix bad type inferencing on path's | ||
[PR3235](https://github.com/rust-gcc/gccrs/pull/3235) | ||
- gccrs: add test case to show method resolution is working | ||
[PR3234](https://github.com/rust-gcc/gccrs/pull/3234) | ||
- Make \`TyTy::TupleType::get<sub>unittype</sub>\` cache its return | ||
value [PR3232](https://github.com/rust-gcc/gccrs/pull/3232) | ||
- Use name resolution 2.0 in \`TraitItemReference\` | ||
[PR3228](https://github.com/rust-gcc/gccrs/pull/3228) | ||
- Insert trait names during toplevel resolution 2.0 | ||
[PR3227](https://github.com/rust-gcc/gccrs/pull/3227) | ||
- Fix variable shadowing in late resolution 2.0 | ||
[PR3226](https://github.com/rust-gcc/gccrs/pull/3226) | ||
- Use name resolver 2.0 in \`CompileTraitItem\` | ||
[PR3223](https://github.com/rust-gcc/gccrs/pull/3223) | ||
- Use name resolution 2.0 in \`TraitResolver\` | ||
[PR3222](https://github.com/rust-gcc/gccrs/pull/3222) | ||
- Resolve \`SelfParam\` in name resolution 2.0 | ||
[PR3221](https://github.com/rust-gcc/gccrs/pull/3221) | ||
- Rename some \`PathIdentSegment\` functions | ||
[PR3219](https://github.com/rust-gcc/gccrs/pull/3219) | ||
- Fix name resolution 2.0 definition lookups in unsafe checker | ||
[PR3217](https://github.com/rust-gcc/gccrs/pull/3217) | ||
- Add a newline to the end of \`nr2/exclude\` | ||
[PR3216](https://github.com/rust-gcc/gccrs/pull/3216) | ||
- gccrs: Fix bad recursive operator overload call | ||
[PR3214](https://github.com/rust-gcc/gccrs/pull/3214) | ||
- Make \`const\` references to \`ForeverStack\` more useful | ||
[PR3211](https://github.com/rust-gcc/gccrs/pull/3211) | ||
- Use name resolver 2.0 in const checker | ||
[PR3207](https://github.com/rust-gcc/gccrs/pull/3207) | ||
- Use name resolver 2.0 for compiling break/continue | ||
[PR3206](https://github.com/rust-gcc/gccrs/pull/3206) | ||
- Load unloaded modules during toplevel resolution 2.0 | ||
[PR3205](https://github.com/rust-gcc/gccrs/pull/3205) | ||
- Use name resolver 2.0 in pattern checker | ||
[PR3204](https://github.com/rust-gcc/gccrs/pull/3204) | ||
- Improve path handling while testing name resolution 2.0 | ||
[PR3203](https://github.com/rust-gcc/gccrs/pull/3203) | ||
- Handle const generic parameters during resolution 2.0 | ||
[PR3202](https://github.com/rust-gcc/gccrs/pull/3202) | ||
- Handle external static items in toplevel resolver 2.0 | ||
[PR3201](https://github.com/rust-gcc/gccrs/pull/3201) | ||
- Disambiguate generic args during name resolution 2.0 | ||
[PR3200](https://github.com/rust-gcc/gccrs/pull/3200) | ||
- Use name resolver 2.0 in \`MarkLive\` | ||
[PR3199](https://github.com/rust-gcc/gccrs/pull/3199) | ||
- Use name resolver 2.0 during pattern typechecking | ||
[PR3198](https://github.com/rust-gcc/gccrs/pull/3198) | ||
- Allow identifiers and paths to reference types during nr2.0 | ||
[PR3197](https://github.com/rust-gcc/gccrs/pull/3197) | ||
- Insert static items into the value namespace | ||
[PR3194](https://github.com/rust-gcc/gccrs/pull/3194) | ||
- Improve \`InlineAsmOperand\` | ||
[PR3193](https://github.com/rust-gcc/gccrs/pull/3193) | ||
- Handle \`TypeAlias\` during toplevel resolution 2.0 | ||
[PR3192](https://github.com/rust-gcc/gccrs/pull/3192) | ||
- Improve handling of \`InlineAsm\` in \`DefaultASTVisitor\` | ||
[PR3191](https://github.com/rust-gcc/gccrs/pull/3191) | ||
- Fix some issues with canonical path fetching in name resolution 2.0 | ||
[PR3190](https://github.com/rust-gcc/gccrs/pull/3190) | ||
- Improve \`Rib::Definition\` shadowing | ||
[PR3188](https://github.com/rust-gcc/gccrs/pull/3188) | ||
- gccrs: Fix ICE when typechecking non-trait item when we expect one | ||
[PR3187](https://github.com/rust-gcc/gccrs/pull/3187) | ||
- gccrs: Add test case to show ICE is fixed | ||
[PR3186](https://github.com/rust-gcc/gccrs/pull/3186) | ||
- Provide input operand for gccrs | ||
[PR3151](https://github.com/rust-gcc/gccrs/pull/3151) | ||
- Desugar IfLet\* expr to match | ||
[PR3064](https://github.com/rust-gcc/gccrs/pull/3064) | ||
- Check for writes outside of the build directory | ||
[PR2974](https://github.com/rust-gcc/gccrs/pull/2974) | ||
|
||
### Contributors this month | ||
|
||
- [Philip Herron](https://github.com/philberty) | ||
- [Owen Avery](https://github.com/powerboat9) | ||
- [Marc Poulhiès](https://github.com/dkm) | ||
- [Jasmine Tang](https://github.com/badumbatish) | ||
|
||
### Overall Task Status | ||
|
||
| Category | Last Month | This Month | Delta | | ||
|-------------|------------|------------|-------| | ||
| TODO | 327 | 327 | \- | | ||
| In Progress | 75 | 75 | \- | | ||
| Completed | 888 | 897 | +9 | | ||
|
||
### Test Cases | ||
|
||
| TestCases | Last Month | This Month | Delta | | ||
|-----------|------------|------------|-------| | ||
| Passing | 9144 | 9212 | +67 | | ||
| Failed | \- | \- | \- | | ||
| XFAIL | 323 | 294 | -29 | | ||
| XPASS | \- | \- | \- | | ||
|
||
### Bugs | ||
|
||
| Category | Last Month | This Month | Delta | | ||
|-------------|------------|------------|-------| | ||
| TODO | 120 | 119 | -1 | | ||
| In Progress | 40 | 48 | +8 | | ||
| Completed | 437 | 441 | +4 | | ||
|
||
### Milestones Progress | ||
|
||
| Milestone | Last Month | This Month | Delta | Start Date | Completion Date | Target | Target GCC | | ||
|---------------------------------|------------|------------|-------|---------------|-----------------|---------------|------------| | ||
| GCC 14.2 | 100% | 100% | \- | 7th Jun 2024 | 15th Jun 2024 | 15th Jun 2024 | GCC 14.2 | | ||
| GCC 15.1 | 100% | 100% | \- | 21st Jun 2024 | 31st Jun 2024 | 1st Jul 2024 | GCC 15.1 | | ||
| Name resolution 2.0 rework | 6% | 6% | \- | 1st Jun 2024 | \- | 1st Apr 2025 | GCC 15.1 | | ||
| Macro expansion | 18% | 29% | +9% | 1st Jun 2024 | \- | 1st Jan 2025 | GCC 15.1 | | ||
| Unhandled attributes | 100% | 100% | \- | 1st Jul 2024 | 15th Aug 2024 | 15th Aug 2024 | GCC 15.1 | | ||
| Lang items | 66% | 66% | \- | 1st Jul 2024 | \- | 21st Nov 2024 | GCC 15.1 | | ||
| Deref and DerefMut improvements | 0% | 100% | +100% | 28th Sep 2024 | 25th Oct 2024 | 28th Dec 2024 | GCC 15.1 | | ||
| Indexing fixes | 0% | 0% | \- | 21st Jul 2024 | \- | 15th Nov 2024 | GCC 15.1 | | ||
| Iterator fixes | 0% | 0% | \- | 21st Jul 2024 | \- | 15th Nov 2024 | GCC 15.1 | | ||
|
||
| Upcoming Milestone | Last Month | This Month | Delta | Start Date | Completion Date | Target | Target GCC | | ||
|--------------------------------------|------------|------------|-------|---------------|-----------------|---------------|------------| | ||
| Auto traits improvements | 0% | 0% | \- | 15th Sep 2024 | \- | 21st Dec 2024 | GCC 15.1 | | ||
| Remaining typecheck issues | 0% | 85% | +85% | 21st Oct 2024 | \- | 1st Mar 2025 | GCC 15.1 | | ||
| cfg-core | 0% | 0% | \- | 1st Dec 2024 | \- | 1st Mar 2025 | GCC 15.1 | | ||
| Question mark operator | 0% | 0% | \- | 15th Dec 2024 | \- | 21st Feb 2025 | GCC 15.1 | | ||
| Codegen fixes | 0% | 0% | \- | 7th Oct 2024 | \- | 1st Mar 2025 | GCC 15.1 | | ||
| Specialization | 0% | 0% | \- | 1st Jan 2025 | \- | 1st Mar 2025 | GCC 15.1 | | ||
| Inline assembly | 100% | 100% | \- | 1st Jun 2024 | 26th Aug 2024 | 15th Sep 2024 | GCC 15.1 | | ||
| Borrow checker improvements | 100% | 100% | \- | 1st Jun 2024 | 26th Aug 2024 | 15th Sep 2024 | GCC 15.1 | | ||
| Rustc Testsuite Adaptor | 0% | 0% | \- | 1st Jun 2024 | \- | 15th Sep 2024 | GCC 15.1 | | ||
| black<sub>box</sub> intrinsic | 0% | 0% | \- | 28th Oct 2024 | \- | 28th Jan 2025 | GCC 15.1 | | ||
| Unstable RfL features | 0% | 0% | \- | 7th Jan 2025 | \- | 1st Mar 2025 | GCC 15.1 | | ||
| cfg-rfl | 0% | 0% | \- | 7th Jan 2025 | \- | 15th Feb 2025 | GCC 15.1 | | ||
| alloc parser issues | 100% | 100% | \- | 7th Jan 2025 | 31st Jun 2024 | 28th Jan 2025 | GCC 15.1 | | ||
| let-else | 0% | 0% | \- | 28th Jan 2025 | \- | 28th Feb 2025 | GCC 15.1 | | ||
| Explicit generics with impl Trait | 0% | 0% | \- | 28th Feb 2025 | \- | 28th Mar 2025 | GCC 15.1 | | ||
| offset<sub>of</sub>!() builtin macro | 0% | 0% | \- | 15th Mar 2025 | \- | 15th May 2025 | GCC 15.1 | | ||
| Generic Associated Types | 0% | 0% | \- | 15th Mar 2025 | \- | 15th Jun 2025 | GCC 16.1 | | ||
| RfL const generics | 0% | 0% | \- | 1st May 2025 | \- | 15th Jun 2025 | GCC 16.1 | | ||
| frontend plugin hooks | 0% | 0% | \- | 15th May 2025 | \- | 7th Jul 2025 | GCC 16.1 | | ||
| Handling the testsuite issues | 0% | 0% | \- | 15th Sep 2024 | \- | 15th Sep 2025 | GCC 16.1 | | ||
| std parser issues | 100% | 100% | \- | 7th Jan 2025 | 31st Jun 2024 | 28th Jan 2025 | GCC 16.1 | | ||
| main shim | 0% | 0% | \- | 28th Jul 2025 | \- | 15th Sep 2025 | GCC 16.1 | | ||
|
||
| Past Milestone | Last Month | This Month | Delta | Start Date | Completion Date | Target | Target GCC | | ||
|-----------------------------------|------------|------------|-------|---------------|-----------------|---------------|------------| | ||
| Data Structures 1 - Core | 100% | 100% | \- | 30th Nov 2020 | 27th Jan 2021 | 29th Jan 2021 | GCC 14.1 | | ||
| Control Flow 1 - Core | 100% | 100% | \- | 28th Jan 2021 | 10th Feb 2021 | 26th Feb 2021 | GCC 14.1 | | ||
| Data Structures 2 - Generics | 100% | 100% | \- | 11th Feb 2021 | 14th May 2021 | 28th May 2021 | GCC 14.1 | | ||
| Data Structures 3 - Traits | 100% | 100% | \- | 20th May 2021 | 17th Sep 2021 | 27th Aug 2021 | GCC 14.1 | | ||
| Control Flow 2 - Pattern Matching | 100% | 100% | \- | 20th Sep 2021 | 9th Dec 2021 | 29th Nov 2021 | GCC 14.1 | | ||
| Macros and cfg expansion | 100% | 100% | \- | 1st Dec 2021 | 31st Mar 2022 | 28th Mar 2022 | GCC 14.1 | | ||
| Imports and Visibility | 100% | 100% | \- | 29th Mar 2022 | 13th Jul 2022 | 27th May 2022 | GCC 14.1 | | ||
| Const Generics | 100% | 100% | \- | 30th May 2022 | 10th Oct 2022 | 17th Oct 2022 | GCC 14.1 | | ||
| Initial upstream patches | 100% | 100% | \- | 10th Oct 2022 | 13th Nov 2022 | 13th Nov 2022 | GCC 14.1 | | ||
| Upstream initial patchset | 100% | 100% | \- | 13th Nov 2022 | 13th Dec 2022 | 19th Dec 2022 | GCC 14.1 | | ||
| Update GCC's master branch | 100% | 100% | \- | 1st Jan 2023 | 21st Feb 2023 | 3rd Mar 2023 | GCC 14.1 | | ||
| Final set of upstream patches | 100% | 100% | \- | 16th Nov 2022 | 1st May 2023 | 30th Apr 2023 | GCC 14.1 | | ||
| Borrow Checking 1 | 100% | 100% | \- | TBD | 8th Jan 2024 | 15th Aug 2023 | GCC 14.1 | | ||
| Procedural Macros 1 | 100% | 100% | \- | 13th Apr 2023 | 6th Aug 2023 | 6th Aug 2023 | GCC 14.1 | | ||
| GCC 13.2 Release | 100% | 100% | \- | 13th Apr 2023 | 22nd Jul 2023 | 15th Jul 2023 | GCC 14.1 | | ||
| GCC 14 Stage 3 | 100% | 100% | \- | 1st Sep 2023 | 20th Sep 2023 | 1st Nov 2023 | GCC 14.1 | | ||
| GCC 14.1 Release | 100% | 100% | \- | 2nd Jan 2024 | 2nd Jun 2024 | 15th Apr 2024 | GCC 14.1 | | ||
| format<sub>args</sub>!() support | 100% | 100% | \- | 15th Feb 2024 | \- | 1st Apr 2024 | GCC 14.1 | | ||
|
||
## Planned Activities | ||
|
||
- Finish usage of lang items for codegen | ||
- Finish for-loops code expansion | ||
- Improve our process for updating our github repository with upstream | ||
GCC | ||
|
||
### Risks | ||
|
||
There have been no changes to the Risk table this month | ||
|
||
| Risk | Impact (1-3) | Likelihood (0-10) | Risk (I \* L) | Mitigation | | ||
|----------------------------------------|--------------|-------------------|---------------|-----------------------------------------------------------------| | ||
| Missing features for GCC 15.1 deadline | 2 | 1 | 2 | Start working on required features as early as July (6mo ahead) | | ||
|
||
## Detailed changelog |