Skip to content

Commit 478cbb4

Browse files
committed
Auto merge of #109692 - Nilstrieb:rollup-hq65rps, r=Nilstrieb
Rollup of 8 pull requests Successful merges: - #91793 (socket ancillary data implementation for FreeBSD (from 13 and above).) - #92284 (Change advance(_back)_by to return the remainder instead of the number of processed elements) - #102472 (stop special-casing `'static` in evaluation) - #108480 (Use Rayon's TLV directly) - #109321 (Erase impl regions when checking for impossible to eagerly monomorphize items) - #109470 (Correctly substitute GAT's type used in `normalize_param_env` in `check_type_bounds`) - #109562 (Update ar_archive_writer to 0.1.3) - #109629 (remove obsolete `givens` from regionck) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents bf57e8a + 60ce19d commit 478cbb4

File tree

77 files changed

+1014
-748
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1014
-748
lines changed

Cargo.lock

+9-11
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602"
106106

107107
[[package]]
108108
name = "ar_archive_writer"
109-
version = "0.1.1"
109+
version = "0.1.3"
110110
source = "registry+https://github.com/rust-lang/crates.io-index"
111-
checksum = "276881980556fdadeb88aa1ffc667e4d2e8fe72531dfabcb7a82bb3c9ea9ba31"
111+
checksum = "b0639441fd17a3197d1cbca8dc8768cc172a63b64b4bb6c372e8f41ed0acc9bb"
112112
dependencies = [
113-
"object 0.29.0",
113+
"object 0.30.1",
114114
]
115115

116116
[[package]]
@@ -2689,9 +2689,9 @@ checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
26892689

26902690
[[package]]
26912691
name = "indexmap"
2692-
version = "1.9.2"
2692+
version = "1.9.3"
26932693
source = "registry+https://github.com/rust-lang/crates.io-index"
2694-
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
2694+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
26952695
dependencies = [
26962696
"autocfg",
26972697
"hashbrown 0.12.3",
@@ -4160,21 +4160,19 @@ dependencies = [
41604160

41614161
[[package]]
41624162
name = "rustc-rayon"
4163-
version = "0.4.0"
4163+
version = "0.5.0"
41644164
source = "registry+https://github.com/rust-lang/crates.io-index"
4165-
checksum = "1a79f0b0b2609e2eacf9758013f50e7176cb4b29fd6436a747b14a5362c8727a"
4165+
checksum = "eb81aadc8837ca6ecebe0fe1353f15df83b3b3cc2cf7a8afd571bc22aa121710"
41664166
dependencies = [
4167-
"autocfg",
4168-
"crossbeam-deque",
41694167
"either",
41704168
"rustc-rayon-core",
41714169
]
41724170

41734171
[[package]]
41744172
name = "rustc-rayon-core"
4175-
version = "0.4.1"
4173+
version = "0.5.0"
41764174
source = "registry+https://github.com/rust-lang/crates.io-index"
4177-
checksum = "02269144a0db9bb55cf5d4a41a5a0e95b334b0b78b08269018ca9b0250718c30"
4175+
checksum = "67668daaf00e359c126f6dcb40d652d89b458a008c8afa727a42a2d20fca0b7f"
41784176
dependencies = [
41794177
"crossbeam-channel",
41804178
"crossbeam-deque",

compiler/rustc_codegen_cranelift/Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ dependencies = [
235235

236236
[[package]]
237237
name = "indexmap"
238-
version = "1.9.2"
238+
version = "1.9.3"
239239
source = "registry+https://github.com/rust-lang/crates.io-index"
240-
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
240+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
241241
dependencies = [
242242
"autocfg",
243243
"hashbrown",

compiler/rustc_codegen_cranelift/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ target-lexicon = "0.12.0"
2525
gimli = { version = "0.26.0", default-features = false, features = ["write"]}
2626
object = { version = "0.29.0", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
2727

28-
indexmap = "1.9.1"
28+
indexmap = "1.9.3"
2929
libloading = { version = "0.7.3", optional = true }
3030
once_cell = "1.10.0"
3131
smallvec = "1.8.1"

compiler/rustc_codegen_llvm/src/back/archive.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ impl ArchiveBuilderBuilder for LlvmArchiveBuilderBuilder {
110110
fn new_archive_builder<'a>(&self, sess: &'a Session) -> Box<dyn ArchiveBuilder<'a> + 'a> {
111111
// FIXME use ArArchiveBuilder on most targets again once reading thin archives is
112112
// implemented
113-
if true || sess.target.arch == "wasm32" || sess.target.arch == "wasm64" {
113+
if true {
114114
Box::new(LlvmArchiveBuilder { sess, additions: Vec::new() })
115115
} else {
116116
Box::new(ArArchiveBuilder::new(sess, get_llvm_object_symbols))

compiler/rustc_data_structures/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ arrayvec = { version = "0.7", default-features = false }
1010
bitflags = "1.2.1"
1111
cfg-if = "1.0"
1212
ena = "0.14.2"
13-
indexmap = { version = "1.9.1" }
13+
indexmap = { version = "1.9.3" }
1414
jobserver_crate = { version = "0.1.13", package = "jobserver" }
1515
libc = "0.2"
1616
measureme = "10.0.0"
17-
rayon-core = { version = "0.4.0", package = "rustc-rayon-core", optional = true }
18-
rayon = { version = "0.4.0", package = "rustc-rayon", optional = true }
17+
rustc-rayon-core = { version = "0.5.0", optional = true }
18+
rustc-rayon = { version = "0.5.0", optional = true }
1919
rustc_graphviz = { path = "../rustc_graphviz" }
2020
rustc-hash = "1.1.0"
2121
rustc_index = { path = "../rustc_index", package = "rustc_index" }
@@ -51,4 +51,4 @@ features = [
5151
memmap2 = "0.2.1"
5252

5353
[features]
54-
rustc_use_parallel_compiler = ["indexmap/rustc-rayon", "rayon", "rayon-core"]
54+
rustc_use_parallel_compiler = ["indexmap/rustc-rayon", "rustc-rayon", "rustc-rayon-core"]

compiler/rustc_hir_analysis/src/check/compare_impl_item.rs

+51-57
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,6 @@ fn compare_method_predicate_entailment<'tcx>(
330330
// lifetime parameters.
331331
let outlives_env = OutlivesEnvironment::with_bounds(
332332
param_env,
333-
Some(infcx),
334333
infcx.implied_bounds_tys(param_env, impl_m_def_id, wf_tys.clone()),
335334
);
336335
infcx.process_registered_region_obligations(
@@ -727,7 +726,6 @@ pub(super) fn collect_return_position_impl_trait_in_trait_tys<'tcx>(
727726
// lifetime parameters.
728727
let outlives_environment = OutlivesEnvironment::with_bounds(
729728
param_env,
730-
Some(infcx),
731729
infcx.implied_bounds_tys(param_env, impl_m_def_id, wf_tys),
732730
);
733731
infcx
@@ -1876,14 +1874,17 @@ pub(super) fn check_type_bounds<'tcx>(
18761874
impl_ty: ty::AssocItem,
18771875
impl_trait_ref: ty::TraitRef<'tcx>,
18781876
) -> Result<(), ErrorGuaranteed> {
1877+
let param_env = tcx.param_env(impl_ty.def_id);
1878+
let container_id = impl_ty.container_id(tcx);
18791879
// Given
18801880
//
18811881
// impl<A, B> Foo<u32> for (A, B) {
1882-
// type Bar<C> =...
1882+
// type Bar<C> = Wrapper<A, B, C>
18831883
// }
18841884
//
18851885
// - `impl_trait_ref` would be `<(A, B) as Foo<u32>>`
1886-
// - `impl_ty_substs` would be `[A, B, ^0.0]` (`^0.0` here is the bound var with db 0 and index 0)
1886+
// - `normalize_impl_ty_substs` would be `[A, B, ^0.0]` (`^0.0` here is the bound var with db 0 and index 0)
1887+
// - `normalize_impl_ty` would be `Wrapper<A, B, ^0.0>`
18871888
// - `rebased_substs` would be `[(A, B), u32, ^0.0]`, combining the substs from
18881889
// the *trait* with the generic associated type parameters (as bound vars).
18891890
//
@@ -1912,56 +1913,46 @@ pub(super) fn check_type_bounds<'tcx>(
19121913
// Member<C: Eq> = .... That type would fail a well-formedness check that we ought to be doing
19131914
// elsewhere, which would check that any <T as Family>::Member<X> meets the bounds declared in
19141915
// the trait (notably, that X: Eq and T: Family).
1915-
let defs: &ty::Generics = tcx.generics_of(impl_ty.def_id);
1916-
let mut substs = smallvec::SmallVec::with_capacity(defs.count());
1917-
if let Some(def_id) = defs.parent {
1918-
let parent_defs = tcx.generics_of(def_id);
1919-
InternalSubsts::fill_item(&mut substs, tcx, parent_defs, &mut |param, _| {
1920-
tcx.mk_param_from_def(param)
1921-
});
1922-
}
19231916
let mut bound_vars: smallvec::SmallVec<[ty::BoundVariableKind; 8]> =
1924-
smallvec::SmallVec::with_capacity(defs.count());
1925-
InternalSubsts::fill_single(&mut substs, defs, &mut |param, _| match param.kind {
1926-
GenericParamDefKind::Type { .. } => {
1927-
let kind = ty::BoundTyKind::Param(param.def_id, param.name);
1928-
let bound_var = ty::BoundVariableKind::Ty(kind);
1929-
bound_vars.push(bound_var);
1930-
tcx.mk_bound(
1931-
ty::INNERMOST,
1932-
ty::BoundTy { var: ty::BoundVar::from_usize(bound_vars.len() - 1), kind },
1933-
)
1934-
.into()
1935-
}
1936-
GenericParamDefKind::Lifetime => {
1937-
let kind = ty::BoundRegionKind::BrNamed(param.def_id, param.name);
1938-
let bound_var = ty::BoundVariableKind::Region(kind);
1939-
bound_vars.push(bound_var);
1940-
tcx.mk_re_late_bound(
1941-
ty::INNERMOST,
1942-
ty::BoundRegion { var: ty::BoundVar::from_usize(bound_vars.len() - 1), kind },
1943-
)
1944-
.into()
1945-
}
1946-
GenericParamDefKind::Const { .. } => {
1947-
let bound_var = ty::BoundVariableKind::Const;
1948-
bound_vars.push(bound_var);
1949-
tcx.mk_const(
1950-
ty::ConstKind::Bound(ty::INNERMOST, ty::BoundVar::from_usize(bound_vars.len() - 1)),
1951-
tcx.type_of(param.def_id).subst_identity(),
1952-
)
1953-
.into()
1954-
}
1955-
});
1956-
let bound_vars = tcx.mk_bound_variable_kinds(&bound_vars);
1957-
let impl_ty_substs = tcx.mk_substs(&substs);
1958-
let container_id = impl_ty.container_id(tcx);
1959-
1960-
let rebased_substs = impl_ty_substs.rebase_onto(tcx, container_id, impl_trait_ref.substs);
1961-
let impl_ty_value = tcx.type_of(impl_ty.def_id).subst_identity();
1962-
1963-
let param_env = tcx.param_env(impl_ty.def_id);
1964-
1917+
smallvec::SmallVec::with_capacity(tcx.generics_of(impl_ty.def_id).params.len());
1918+
// Extend the impl's identity substs with late-bound GAT vars
1919+
let normalize_impl_ty_substs = ty::InternalSubsts::identity_for_item(tcx, container_id)
1920+
.extend_to(tcx, impl_ty.def_id, |param, _| match param.kind {
1921+
GenericParamDefKind::Type { .. } => {
1922+
let kind = ty::BoundTyKind::Param(param.def_id, param.name);
1923+
let bound_var = ty::BoundVariableKind::Ty(kind);
1924+
bound_vars.push(bound_var);
1925+
tcx.mk_bound(
1926+
ty::INNERMOST,
1927+
ty::BoundTy { var: ty::BoundVar::from_usize(bound_vars.len() - 1), kind },
1928+
)
1929+
.into()
1930+
}
1931+
GenericParamDefKind::Lifetime => {
1932+
let kind = ty::BoundRegionKind::BrNamed(param.def_id, param.name);
1933+
let bound_var = ty::BoundVariableKind::Region(kind);
1934+
bound_vars.push(bound_var);
1935+
tcx.mk_re_late_bound(
1936+
ty::INNERMOST,
1937+
ty::BoundRegion { var: ty::BoundVar::from_usize(bound_vars.len() - 1), kind },
1938+
)
1939+
.into()
1940+
}
1941+
GenericParamDefKind::Const { .. } => {
1942+
let bound_var = ty::BoundVariableKind::Const;
1943+
bound_vars.push(bound_var);
1944+
tcx.mk_const(
1945+
ty::ConstKind::Bound(
1946+
ty::INNERMOST,
1947+
ty::BoundVar::from_usize(bound_vars.len() - 1),
1948+
),
1949+
tcx.type_of(param.def_id)
1950+
.no_bound_vars()
1951+
.expect("const parameter types cannot be generic"),
1952+
)
1953+
.into()
1954+
}
1955+
});
19651956
// When checking something like
19661957
//
19671958
// trait X { type Y: PartialEq<<Self as X>::Y> }
@@ -1971,9 +1962,13 @@ pub(super) fn check_type_bounds<'tcx>(
19711962
// we want <T as X>::Y to normalize to S. This is valid because we are
19721963
// checking the default value specifically here. Add this equality to the
19731964
// ParamEnv for normalization specifically.
1965+
let normalize_impl_ty = tcx.type_of(impl_ty.def_id).subst(tcx, normalize_impl_ty_substs);
1966+
let rebased_substs =
1967+
normalize_impl_ty_substs.rebase_onto(tcx, container_id, impl_trait_ref.substs);
1968+
let bound_vars = tcx.mk_bound_variable_kinds(&bound_vars);
19741969
let normalize_param_env = {
19751970
let mut predicates = param_env.caller_bounds().iter().collect::<Vec<_>>();
1976-
match impl_ty_value.kind() {
1971+
match normalize_impl_ty.kind() {
19771972
ty::Alias(ty::Projection, proj)
19781973
if proj.def_id == trait_ty.def_id && proj.substs == rebased_substs =>
19791974
{
@@ -1987,7 +1982,7 @@ pub(super) fn check_type_bounds<'tcx>(
19871982
ty::Binder::bind_with_vars(
19881983
ty::ProjectionPredicate {
19891984
projection_ty: tcx.mk_alias_ty(trait_ty.def_id, rebased_substs),
1990-
term: impl_ty_value.into(),
1985+
term: normalize_impl_ty.into(),
19911986
},
19921987
bound_vars,
19931988
)
@@ -2068,8 +2063,7 @@ pub(super) fn check_type_bounds<'tcx>(
20682063
// Finally, resolve all regions. This catches wily misuses of
20692064
// lifetime parameters.
20702065
let implied_bounds = infcx.implied_bounds_tys(param_env, impl_ty_def_id, assumed_wf_types);
2071-
let outlives_environment =
2072-
OutlivesEnvironment::with_bounds(param_env, Some(&infcx), implied_bounds);
2066+
let outlives_environment = OutlivesEnvironment::with_bounds(param_env, implied_bounds);
20732067

20742068
infcx.err_ctxt().check_region_obligations_and_report_errors(
20752069
impl_ty.def_id.expect_local(),

compiler/rustc_hir_analysis/src/check/wfcheck.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,7 @@ pub(super) fn enter_wf_checking_ctxt<'tcx, F>(
114114
return;
115115
}
116116

117-
let outlives_environment =
118-
OutlivesEnvironment::with_bounds(param_env, Some(infcx), implied_bounds);
117+
let outlives_environment = OutlivesEnvironment::with_bounds(param_env, implied_bounds);
119118

120119
let _ = infcx
121120
.err_ctxt()
@@ -675,7 +674,6 @@ fn resolve_regions_with_wf_tys<'tcx>(
675674
let infcx = tcx.infer_ctxt().build();
676675
let outlives_environment = OutlivesEnvironment::with_bounds(
677676
param_env,
678-
Some(&infcx),
679677
infcx.implied_bounds_tys(param_env, id, wf_tys.clone()),
680678
);
681679
let region_bound_pairs = outlives_environment.region_bound_pairs();

compiler/rustc_hir_analysis/src/impl_wf_check/min_specialization.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ fn get_impl_substs(
179179
}
180180

181181
let implied_bounds = infcx.implied_bounds_tys(param_env, impl1_def_id, assumed_wf_types);
182-
let outlives_env = OutlivesEnvironment::with_bounds(param_env, Some(infcx), implied_bounds);
182+
let outlives_env = OutlivesEnvironment::with_bounds(param_env, implied_bounds);
183183
let _ =
184184
infcx.err_ctxt().check_region_obligations_and_report_errors(impl1_def_id, &outlives_env);
185185
let Ok(impl2_substs) = infcx.fully_resolve(impl2_substs) else {

compiler/rustc_hir_typeck/src/pat.rs

+1-8
Original file line numberDiff line numberDiff line change
@@ -238,15 +238,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
238238
// Note that there are two tests to check that this remains true
239239
// (`regions-reassign-{match,let}-bound-pointer.rs`).
240240
//
241-
// 2. Things go horribly wrong if we use subtype. The reason for
242-
// THIS is a fairly subtle case involving bound regions. See the
243-
// `givens` field in `region_constraints`, as well as the test
241+
// 2. An outdated issue related to the old HIR borrowck. See the test
244242
// `regions-relate-bound-regions-on-closures-to-inference-variables.rs`,
245-
// for details. Short version is that we must sometimes detect
246-
// relationships between specific region variables and regions
247-
// bound in a closure signature, and that detection gets thrown
248-
// off when we substitute fresh region variables here to enable
249-
// subtyping.
250243
}
251244

252245
/// Compute the new expected type and default binding mode from the old ones

compiler/rustc_infer/src/infer/canonical/query_response.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -640,11 +640,9 @@ pub fn make_query_region_constraints<'tcx>(
640640
outlives_obligations: impl Iterator<Item = (Ty<'tcx>, ty::Region<'tcx>, ConstraintCategory<'tcx>)>,
641641
region_constraints: &RegionConstraintData<'tcx>,
642642
) -> QueryRegionConstraints<'tcx> {
643-
let RegionConstraintData { constraints, verifys, givens, member_constraints } =
644-
region_constraints;
643+
let RegionConstraintData { constraints, verifys, member_constraints } = region_constraints;
645644

646645
assert!(verifys.is_empty());
647-
assert!(givens.is_empty());
648646

649647
debug!(?constraints);
650648

compiler/rustc_infer/src/infer/freshen.rs

+3-14
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,16 @@ pub struct TypeFreshener<'a, 'tcx> {
4343
const_freshen_count: u32,
4444
ty_freshen_map: FxHashMap<ty::InferTy, Ty<'tcx>>,
4545
const_freshen_map: FxHashMap<ty::InferConst<'tcx>, ty::Const<'tcx>>,
46-
keep_static: bool,
4746
}
4847

4948
impl<'a, 'tcx> TypeFreshener<'a, 'tcx> {
50-
pub fn new(infcx: &'a InferCtxt<'tcx>, keep_static: bool) -> TypeFreshener<'a, 'tcx> {
49+
pub fn new(infcx: &'a InferCtxt<'tcx>) -> TypeFreshener<'a, 'tcx> {
5150
TypeFreshener {
5251
infcx,
5352
ty_freshen_count: 0,
5453
const_freshen_count: 0,
5554
ty_freshen_map: Default::default(),
5655
const_freshen_map: Default::default(),
57-
keep_static,
5856
}
5957
}
6058

@@ -121,18 +119,9 @@ impl<'a, 'tcx> TypeFolder<TyCtxt<'tcx>> for TypeFreshener<'a, 'tcx> {
121119
| ty::ReFree(_)
122120
| ty::ReVar(_)
123121
| ty::RePlaceholder(..)
122+
| ty::ReStatic
124123
| ty::ReError(_)
125-
| ty::ReErased => {
126-
// replace all free regions with 'erased
127-
self.interner().lifetimes.re_erased
128-
}
129-
ty::ReStatic => {
130-
if self.keep_static {
131-
r
132-
} else {
133-
self.interner().lifetimes.re_erased
134-
}
135-
}
124+
| ty::ReErased => self.interner().lifetimes.re_erased,
136125
}
137126
}
138127

0 commit comments

Comments
 (0)