-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Don't infer regions in type checking #68261
Labels
A-inference
Area: Type inference
A-lifetimes
Area: Lifetimes / regions
A-NLL
Area: Non-lexical lifetimes (NLL)
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
matthewjasper
added
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
A-lifetimes
Area: Lifetimes / regions
A-inference
Area: Type inference
A-NLL
Area: Non-lexical lifetimes (NLL)
labels
Jan 15, 2020
The first steps towards this are #67681 and #65232 Some further steps are:
Some related work would be
|
jonas-schievink
added
the
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
label
Jan 15, 2020
Centril
added a commit
to Centril/rust
that referenced
this issue
Mar 12, 2020
…komatsakis Erase regions in writeback Regions in `TypeckTables` (except canonicalized user annotations) are now erased. Further, we no longer do lexical region solving on item bodies with `-Zborrowck=mir`. cc rust-lang#68261 r? @nikomatsakis
Centril
added a commit
to Centril/rust
that referenced
this issue
Mar 17, 2020
…komatsakis Erase regions in writeback Regions in `TypeckTables` (except canonicalized user annotations) are now erased. Further, we no longer do lexical region solving on item bodies with `-Zborrowck=mir`. cc rust-lang#68261 r? @nikomatsakis
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 17, 2020
…komatsakis Erase regions in writeback Regions in `TypeckTables` (except canonicalized user annotations) are now erased. Further, we no longer do lexical region solving on item bodies with `-Zborrowck=mir`. cc rust-lang#68261 r? @nikomatsakis
Centril
added a commit
to Centril/rust
that referenced
this issue
Mar 18, 2020
…komatsakis Erase regions in writeback Regions in `TypeckTables` (except canonicalized user annotations) are now erased. Further, we no longer do lexical region solving on item bodies with `-Zborrowck=mir`. cc rust-lang#68261 r? @nikomatsakis
Centril
added a commit
to Centril/rust
that referenced
this issue
Mar 18, 2020
…komatsakis Erase regions in writeback Regions in `TypeckTables` (except canonicalized user annotations) are now erased. Further, we no longer do lexical region solving on item bodies with `-Zborrowck=mir`. cc rust-lang#68261 r? @nikomatsakis
Centril
added a commit
to Centril/rust
that referenced
this issue
Mar 18, 2020
…komatsakis Erase regions in writeback Regions in `TypeckTables` (except canonicalized user annotations) are now erased. Further, we no longer do lexical region solving on item bodies with `-Zborrowck=mir`. cc rust-lang#68261 r? @nikomatsakis
Centril
added a commit
to Centril/rust
that referenced
this issue
Mar 18, 2020
…komatsakis Erase regions in writeback Regions in `TypeckTables` (except canonicalized user annotations) are now erased. Further, we no longer do lexical region solving on item bodies with `-Zborrowck=mir`. cc rust-lang#68261 r? @nikomatsakis
Merged
RalfJung
added a commit
to RalfJung/rust
that referenced
this issue
May 23, 2020
…omatsakis Remove ReScope `ReScope` is unnecessary now that AST borrowck is gone and we're erasing the results of region inference in function bodies. This removes about as much of the old regionck code as possible without having to enable NLL fully. cc rust-lang#68261 r? @nikomatsakis
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
May 24, 2020
…atsakis Remove ReScope `ReScope` is unnecessary now that AST borrowck is gone and we're erasing the results of region inference in function bodies. This removes about as much of the old regionck code as possible without having to enable NLL fully. cc rust-lang#68261 r? @nikomatsakis
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-inference
Area: Type inference
A-lifetimes
Area: Lifetimes / regions
A-NLL
Area: Non-lexical lifetimes (NLL)
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
This is a tracking issue for avoiding region inference in item body type checking. The goal would be to use
ReErased
where we currently useReVar
as much as possible.The motivations for this are:
cc @nikomatsakis
The text was updated successfully, but these errors were encountered: