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

add TypingMode::Borrowck #138785

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Conversation

lcnr
Copy link
Contributor

@lcnr lcnr commented Mar 21, 2025

Shares the first commit with #138499, doesn't really matter which PR to land first 😊 😁

Introduces TypingMode::Borrowck which unlike TypingMode::Analysis, uses the hidden type computed by HIR typeck as the initial value of opaques instead of an unconstrained infer var. This is a part of rust-lang/types-team#129.

Using this new TypingMode is unfortunately a breaking change for now, see tests/ui/impl-trait/non-defining-uses/as-projection-term.rs. Using an inference variable as the initial value results in non-defining uses in the defining scope. We therefore only enable it if with -Znext-solver=globally or -Ztyping-mode-borrowck

To do that the PR contains the following changes:

  • TypeckResults::concrete_opaque_type are already mapped to the definition of the opaque type
    • writeback now checks that the non-lifetime parameters of the opaque are universal
    • for this, fn check_opaque_type_parameter_valid is moved from rustc_borrowck to rustc_trait_selection
  • we add a new query type_of_opaque_hir_typeck which, using the same visitors as MIR typeck, attempts to merge the hidden types from HIR typeck from all defining scopes
    • done by adding a DefiningScopeKind flag to toggle between using borrowck and HIR typeck
    • the visitors stop checking that the MIR type matches the HIR type. This is trivial as the HIR type are now used as the initial hidden types of the opaque. This check is useful as a safeguard when not using TypingMode::Borrowck, but adding it to the new structure is annoying and it's not soundness critical, so I intend to not add it back.
  • add a TypingMode::Borrowck which behaves just like TypingMode::Analysis except when normalizing opaque types
    • it uses type_of_opaque_hir_typeck(opaque) as the initial value after replacing its regions with new inference vars
    • it uses structural lookup in the new solver

fixes #112201, fixes #132335, fixes #137751

r? @compiler-errors @oli-obk

@rustbot rustbot added A-tidy Area: The tidy tool S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. WG-trait-system-refactor The Rustc Trait System Refactor Initiative (-Znext-solver) labels Mar 21, 2025
@lcnr

This comment was marked as outdated.

@rust-timer

This comment has been minimized.

@rustbot rustbot added the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Mar 21, 2025
bors added a commit to rust-lang-ci/rust that referenced this pull request Mar 21, 2025
add `TypingMode::Borrowck`

Still not quite ready

Based on rust-lang#138492 and rust-lang#138719

r? `@compiler-errors` `@oli-obk`
@bors

This comment was marked as outdated.

@rust-log-analyzer

This comment has been minimized.

@bors

This comment was marked as outdated.

@rust-timer

This comment has been minimized.

@rust-timer

This comment was marked as outdated.

@rustbot rustbot added perf-regression Performance regression. and removed S-waiting-on-perf Status: Waiting on a perf run to be completed. labels Mar 21, 2025
bors added a commit to rust-lang-ci/rust that referenced this pull request Mar 27, 2025
increment depth of nested obligations

properly fixes the root cause of rust-lang#109268. While we didn't get hangs here before, I ended up encountering its root cause again with rust-lang#138785.

r? types
@lcnr lcnr force-pushed the typing-mode-borrowck branch 2 times, most recently from 78732a8 to 9b611a3 Compare March 27, 2025 15:35
@lcnr

This comment was marked as outdated.

@rust-log-analyzer

This comment has been minimized.

@lcnr

This comment was marked as outdated.

Zalathar added a commit to Zalathar/rust that referenced this pull request Apr 1, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
increment depth of nested obligations

properly fixes the root cause of rust-lang#109268. While we didn't get hangs here before, I ended up encountering its root cause again with rust-lang#138785.

r? types
Zalathar added a commit to Zalathar/rust that referenced this pull request Apr 1, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
increment depth of nested obligations

properly fixes the root cause of rust-lang#109268. While we didn't get hangs here before, I ended up encountering its root cause again with rust-lang#138785.

r? types
@lcnr lcnr force-pushed the typing-mode-borrowck branch from 0b44108 to d7cf428 Compare April 1, 2025 13:09
@lcnr
Copy link
Contributor Author

lcnr commented Apr 1, 2025

@rustbot ready

@lcnr lcnr marked this pull request as ready for review April 1, 2025 21:41
@rustbot
Copy link
Collaborator

rustbot commented Apr 1, 2025

Some changes occurred to the core trait solver

cc @rust-lang/initiative-trait-system-refactor

This PR changes a file inside tests/crashes. If a crash was fixed, please move into the corresponding ui subdir and add 'Fixes #' to the PR description to autoclose the issue upon merge.

Some changes occurred in exhaustiveness checking

cc @Nadrieril

@lcnr lcnr force-pushed the typing-mode-borrowck branch from cbcc802 to 83109dd Compare April 1, 2025 21:48
//~^ ERROR type parameter `T` is part of concrete type but not used in parameter list for the `impl Trait` type alias
|| ()
Copy link
Contributor Author

Choose a reason for hiding this comment

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

unfortunate side-effect from HIR typeck eagerly replacing the return type with an inference var. This will be partially fixed when removing this eager normalization call. The new solver does point to the closure instead.

However, as we're still normalizing away opaques to infer vars during generalization, there may still be span regressions where we point at the place introducing the opaque instead of the place which actually constrains it. This feels unavoidable without major changes to the way we track spans for opaques/in the type system in general.

Copy link
Member

Choose a reason for hiding this comment

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

OK, yeah that seems like the major fallout of this PR (along w/ the bad spans for mismatched hidden types).

I guess most of these will not be a problem w/ RPIT.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

(along w/ the bad spans for mismatched hidden types).

which happens for the same reason :3 In MIR tpyeck, we equate each return statement with the return type and constrain the opaque there.

In HIR typeck, we replace the opaque with an infer var at the span of the return type, so that's the span used for its defining use.

@lcnr lcnr force-pushed the typing-mode-borrowck branch from 83109dd to 6e4f81e Compare April 1, 2025 21:55
@lcnr
Copy link
Contributor Author

lcnr commented Apr 1, 2025

@rust-timer build d7cf428

rust-timer added a commit to rust-lang-ci/rust that referenced this pull request Apr 2, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Rollup merge of rust-lang#139022 - lcnr:incr-obligation-depth, r=oli-obk

increment depth of nested obligations

properly fixes the root cause of rust-lang#109268. While we didn't get hangs here before, I ended up encountering its root cause again with rust-lang#138785.

r? types
Zalathar added a commit to Zalathar/rust that referenced this pull request Apr 2, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
…errors

small opaque type/borrowck cleanup

pulled out of rust-lang#138785
rust-timer added a commit to rust-lang-ci/rust that referenced this pull request Apr 2, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Rollup merge of rust-lang#139191 - lcnr:interner-opaques, r=compiler-errors

small opaque type/borrowck cleanup

pulled out of rust-lang#138785
@lcnr
Copy link
Contributor Author

lcnr commented Apr 2, 2025

@bors try @rust-timer queue

@rust-timer

This comment has been minimized.

bors added a commit to rust-lang-ci/rust that referenced this pull request Apr 2, 2025
add `TypingMode::Borrowck`

First two commits are from rust-lang#139191.

Introduces `TypingMode::Borrowck` which unlike `TypingMode::Analysis`, uses the hidden type computed by HIR typeck as the initial value of opaques instead of an unconstrained infer var. This is a part of rust-lang/types-team#129.

Using this new `TypingMode` is unfortunately a breaking change for now, see tests/ui/impl-trait/non-defining-uses/as-projection-term.rs. Using an inference variable as the initial value results in non-defining uses in the defining scope. We therefore only enable it if with `-Znext-solver=globally` or `-Ztyping-mode-borrowck`

To do that the PR contains the following changes:
- `TypeckResults::concrete_opaque_type` are already mapped to the definition of the opaque type
  - writeback now checks that the non-lifetime parameters of the opaque are universal
  - for this, `fn check_opaque_type_parameter_valid` is moved from `rustc_borrowck` to `rustc_trait_selection`
- we add a new `query type_of_opaque_hir_typeck` which, using the same visitors as MIR typeck, attempts to merge the hidden types from HIR typeck from all defining scopes
  - done by adding a `DefiningScopeKind` flag to toggle between using borrowck and HIR typeck
  - the visitors stop checking that the MIR type matches the HIR type. This is trivial as the HIR type are now used as the initial hidden types of the opaque. This check is useful as a safeguard when not using `TypingMode::Borrowck`, but adding it to the new structure is annoying and it's not soundness critical, so I intend to not add it back.
- add a `TypingMode::Borrowck`  which behaves just like `TypingMode::Analysis` except when normalizing opaque types
   - it uses `type_of_opaque_hir_typeck(opaque)` as the initial value after replacing its regions with new inference vars
   - it uses structural lookup in the new solver

fixes rust-lang#112201, fixes rust-lang#132335, fixes rust-lang#137751

r? `@compiler-errors` `@oli-obk`
@bors
Copy link
Collaborator

bors commented Apr 2, 2025

⌛ Trying commit 6e4f81e with merge 423064c...

@bors
Copy link
Collaborator

bors commented Apr 2, 2025

☀️ Try build successful - checks-actions
Build commit: 423064c (423064ca6a6975340d4e353b5271613f585eda43)

@rust-timer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (423064c): comparison URL.

Overall result: ❌✅ regressions and improvements - please read the text below

Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf.

Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @rustbot label: +perf-regression-triaged along with sufficient written justification. If you cannot justify the regressions please fix the regressions and do another perf run. If the next run shows neutral or positive results, the label will be automatically removed.

@bors rollup=never
@rustbot label: -S-waiting-on-perf +perf-regression

Instruction count

This is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.

mean range count
Regressions ❌
(primary)
0.5% [0.4%, 0.6%] 4
Regressions ❌
(secondary)
0.4% [0.2%, 0.6%] 2
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-0.1% [-0.1%, -0.1%] 1
All ❌✅ (primary) 0.5% [0.4%, 0.6%] 4

Max RSS (memory usage)

Results (secondary -3.9%)

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-3.9% [-3.9%, -3.9%] 1
All ❌✅ (primary) - - 0

Cycles

Results (secondary 0.8%)

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
1.8% [1.5%, 2.6%] 4
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-3.5% [-3.5%, -3.5%] 1
All ❌✅ (primary) - - 0

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 775.08s -> 776.357s (0.16%)
Artifact size: 365.94 MiB -> 365.90 MiB (-0.01%)

@rustbot rustbot removed the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Apr 2, 2025
@lcnr
Copy link
Contributor Author

lcnr commented Apr 2, 2025

slightly worse perf, not sure why. Might be due to another variant in the TypingMode enum and the additional type_of_opaque_hir_typeck query? 🤔 this impact is acceptable to me, so I'd like to merge this as is

LL | fn foo<'a>() -> Self::FooFuture<'a> {
| ^^^
|
= note: consider removing `#[define_opaque]` or adding an empty `#[define_opaque()]`
Copy link
Member

Choose a reason for hiding this comment

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

This note will need tweaking

Copy link
Contributor Author

@lcnr lcnr Apr 3, 2025

Choose a reason for hiding this comment

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

Yeah, that's existing though and the suggestiono to add an empty #[define_opaque()] is applicable for ATPIT afaik? Or at least it should be

Copy link
Member

Choose a reason for hiding this comment

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

Yes, the "consider removing" part should be dependent on the existence of the attr, tho.

//~^ ERROR type parameter `T` is part of concrete type but not used in parameter list for the `impl Trait` type alias
|| ()
Copy link
Member

Choose a reason for hiding this comment

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

OK, yeah that seems like the major fallout of this PR (along w/ the bad spans for mismatched hidden types).

I guess most of these will not be a problem w/ RPIT.

@lcnr lcnr force-pushed the typing-mode-borrowck branch from 6e4f81e to 815679b Compare April 3, 2025 09:04
lcnr added 3 commits April 3, 2025 11:13
we already collect opaque types from nested items
during `mir_borrowck` of the root, checking that they
are consistent this way.
@lcnr lcnr force-pushed the typing-mode-borrowck branch from 815679b to 509a144 Compare April 3, 2025 09:13
Copy link
Contributor

@oli-obk oli-obk left a comment

Choose a reason for hiding this comment

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

makes all sense to me

} else {
hir_opaque_ty = Some(concrete_type);
let hir_ty = tcx.type_of_opaque_hir_typeck(def_id).instantiate_identity();
Copy link
Contributor

Choose a reason for hiding this comment

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

When do we go down this route? If borrowck was tainted, we don't get here. If borrowck didn't find the opaque constraint because it was only in typeck, that's allowed for RPIT, but shouldn't we have gotten the HIR type in borrowck now that all the HIR types are seeding the borrowck table?

Copy link
Member

Choose a reason for hiding this comment

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

Well, this is reachable if neither -Ztyping-mode-borrowck or -Znext-solver=globally are enabled, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We're not seeding the borrowck table anymore, we only seed the default value when encountering an opaque. If the only uses of the opaque are in dead code, we still don't have any opaque in the opaque type storage in the old solver. cc #112417

I think the new solver may actually never reach this as we should try to eagerly normalize the fn sig which defines the opaque? But for now having only uses in dead code does reach this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-tidy Area: The tidy tool perf-regression Performance regression. S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. WG-trait-system-refactor The Rustc Trait System Refactor Initiative (-Znext-solver)
Projects
None yet
7 participants