|
| 1 | + |
| 2 | +# How are `ParamEnv`'s constructed internally? |
| 3 | + |
| 4 | +Creating a [`ParamEnv`][pe] is more complicated than simply using the list of where clauses defined on an item as written by the user. We need to both elaborate supertraits into the env and fully normalize all aliases. This logic is handled by [`traits::normalize_param_env_or_error`][normalize_env_or_error] (even though it does not mention anything about elaboration). |
| 5 | + |
| 6 | +## Elaborating supertraits |
| 7 | + |
| 8 | +When we have a function such as `fn foo<T: Copy>()` we would like to be able to prove `T: Clone` inside of the function as the `Copy` trait has a `Clone` supertrait. Constructing a `ParamEnv` looks at all of the trait bounds in the env and explicitly adds new where clauses to the `ParamEnv` for any supertraits found on the traits. |
| 9 | + |
| 10 | +A concrete example would be the following function: |
| 11 | +```rust |
| 12 | +trait Trait: SuperTrait {} |
| 13 | +trait SuperTrait: SuperSuperTrait {} |
| 14 | + |
| 15 | +// `bar`'s unelaborated `ParamEnv` would be: |
| 16 | +// `[T: Sized, T: Copy, T: Trait]` |
| 17 | +fn bar<T: Copy + Trait>(a: T) { |
| 18 | + requires_impl(a); |
| 19 | +} |
| 20 | + |
| 21 | +fn requires_impl<T: Clone + SuperSuperTrait>(a: T) {} |
| 22 | +``` |
| 23 | + |
| 24 | +If we did not elaborate the env then the `requires_impl` call would fail to typecheck as we would not be able to prove `T: Clone` or `T: SuperSuperTrait`. In practice we elaborate the env which means that `bar`'s `ParamEnv` is actually: |
| 25 | +`[T: Sized, T: Copy, T: Clone, T: Trait, T: SuperTrait, T: SuperSuperTrait]` |
| 26 | +This allows us to prove `T: Clone` and `T: SuperSuperTrait` when type checking `bar`. |
| 27 | + |
| 28 | +The `Clone` trait has a `Sized` supertrait however we do not end up with two `T: Sized` bounds in the env (one for the supertrait and one for the implicitly added `T: Sized` bound). This is because the elaboration process (implemented via [`util::elaborate`][elaborate]) deduplicates the where clauses to avoid this. |
| 29 | + |
| 30 | +As a side effect this also means that even if no actual elaboration of supertraits takes place, the existing where clauses in the env are _also_ deduplicated. See the following example: |
| 31 | +```rust |
| 32 | +trait Trait {} |
| 33 | +// The unelaborated `ParamEnv` would be: |
| 34 | +// `[T: Sized, T: Trait, T: Trait]` |
| 35 | +// but after elaboration it would be: |
| 36 | +// `[T: Sized, T: Trait]` |
| 37 | +fn foo<T: Trait + Trait>() {} |
| 38 | +``` |
| 39 | + |
| 40 | +The [next-gen trait solver][next-gen-solver] also requires this elaboration to take place. |
| 41 | + |
| 42 | +[elaborate]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_infer/traits/util/fn.elaborate.html |
| 43 | +[next-gen-solver]: https://rustc-dev-guide.rust-lang.org/solve/trait-solving.html |
| 44 | + |
| 45 | +## Normalizing all bounds |
| 46 | + |
| 47 | +In the old trait solver the where clauses stored in `ParamEnv` are required to be fully normalized or else the trait solver will not function correctly. A concrete example of needing to normalize the `ParamEnv` is the following: |
| 48 | +```rust |
| 49 | +trait Trait<T> { |
| 50 | + type Assoc; |
| 51 | +} |
| 52 | + |
| 53 | +trait Other { |
| 54 | + type Bar; |
| 55 | +} |
| 56 | + |
| 57 | +impl<T> Other for T { |
| 58 | + type Bar = u32; |
| 59 | +} |
| 60 | + |
| 61 | +// `foo`'s unnormalized `ParamEnv` would be: |
| 62 | +// `[T: Sized, U: Sized, U: Trait<T::Bar>]` |
| 63 | +fn foo<T, U>(a: U) |
| 64 | +where |
| 65 | + U: Trait<<T as Other>::Bar>, |
| 66 | +{ |
| 67 | + requires_impl(a); |
| 68 | +} |
| 69 | + |
| 70 | +fn requires_impl<U: Trait<u32>>(_: U) {} |
| 71 | +``` |
| 72 | + |
| 73 | +As humans we can tell that `<T as Other>::Bar` is equal to `u32` so the trait bound on `U` is equivalent to `U: Trait<u32>`. In practice trying to prove `U: Trait<u32>` in the old solver in this environment would fail as it is unable to determine that `<T as Other>::Bar` is equal to `u32`. |
| 74 | + |
| 75 | +To work around this we normalize `ParamEnv`'s after constructing them so that `foo`'s `ParamEnv` is actually: `[T: Sized, U: Sized, U: Trait<u32>]` which means the trait solver is now able to use the `U: Trait<u32>` in the `ParamEnv` to determine that the trait bound `U: Trait<u32>` holds. |
| 76 | + |
| 77 | +This workaround does not work in all cases as normalizing associated types requires a `ParamEnv` which introduces a bootstrapping problem. We need a normalized `ParamEnv` in order for normalization to give correct results, but we need to normalize to get that `ParamEnv`. Currently we normalize the `ParamEnv` once using the unnormalized param env and it tends to give okay results in practice even though there are some examples where this breaks ([example]). |
| 78 | + |
| 79 | +In the next-gen trait solver the requirement for all where clauses in the `ParamEnv` to be fully normalized is not present and so we do not normalize when constructing `ParamEnv`s. |
| 80 | + |
| 81 | +[example]: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=e6933265ea3e84eaa47019465739992c |
| 82 | +[pe]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.ParamEnv.html |
0 commit comments