Skip to content

Commit 31e102c

Browse files
committed
Auto merge of #132005 - matthiaskrgr:rollup-ced4upi, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - #130350 (stabilize Strict Provenance and Exposed Provenance APIs) - #131737 (linkchecker: add a reminder on broken links to add new/renamed pages to `SUMMARY.md` for mdBooks) - #131991 (test: Add test for trait in FQS cast, issue #98565) - #131997 (Make `rustc_abi` compile on stable again) - #131999 (Improve test coverage for `unit_bindings` lint) - #132001 (fix coherence error for very large tuples™) - #132003 (update ABI compatibility docs for new option-like rules) r? `@ghost` `@rustbot` modify labels: rollup
2 parents edbd939 + 64f4aa6 commit 31e102c

File tree

107 files changed

+613
-560
lines changed

Some content is hidden

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

107 files changed

+613
-560
lines changed

compiler/rustc_abi/src/callconv.rs

+9-11
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,23 @@ mod abi {
33
pub(crate) use crate::Variants;
44
}
55

6+
#[cfg(feature = "nightly")]
67
use rustc_macros::HashStable_Generic;
78

8-
use crate::{Abi, Align, FieldsShape, HasDataLayout, Size, TyAbiInterface, TyAndLayout};
9+
#[cfg(feature = "nightly")]
10+
use crate::{Abi, FieldsShape, TyAbiInterface, TyAndLayout};
11+
use crate::{Align, HasDataLayout, Size};
912

10-
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug, HashStable_Generic)]
13+
#[cfg_attr(feature = "nightly", derive(HashStable_Generic))]
14+
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
1115
pub enum RegKind {
1216
Integer,
1317
Float,
1418
Vector,
1519
}
1620

17-
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug, HashStable_Generic)]
21+
#[cfg_attr(feature = "nightly", derive(HashStable_Generic))]
22+
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
1823
pub struct Reg {
1924
pub kind: RegKind,
2025
pub size: Size,
@@ -108,15 +113,8 @@ impl HomogeneousAggregate {
108113
}
109114
}
110115

116+
#[cfg(feature = "nightly")]
111117
impl<'a, Ty> TyAndLayout<'a, Ty> {
112-
/// Returns `true` if this is an aggregate type (including a ScalarPair!)
113-
pub fn is_aggregate(&self) -> bool {
114-
match self.abi {
115-
Abi::Uninhabited | Abi::Scalar(_) | Abi::Vector { .. } => false,
116-
Abi::ScalarPair(..) | Abi::Aggregate { .. } => true,
117-
}
118-
}
119-
120118
/// Returns `Homogeneous` if this layout is an aggregate containing fields of
121119
/// only a single type (e.g., `(u32, u32)`). Such aggregates are often
122120
/// special-cased in ABIs.

compiler/rustc_abi/src/layout.rs

+2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ use crate::{
1111
Variants, WrappingRange,
1212
};
1313

14+
#[cfg(feature = "nightly")]
1415
mod ty;
1516

17+
#[cfg(feature = "nightly")]
1618
pub use ty::{FIRST_VARIANT, FieldIdx, Layout, TyAbiInterface, TyAndLayout, VariantIdx};
1719

1820
// A variant is absent if it's uninhabited and only has ZST fields.

compiler/rustc_abi/src/lib.rs

+12-4
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ mod layout;
2929
mod tests;
3030

3131
pub use callconv::{Heterogeneous, HomogeneousAggregate, Reg, RegKind};
32-
pub use layout::{
33-
FIRST_VARIANT, FieldIdx, Layout, LayoutCalculator, LayoutCalculatorError, TyAbiInterface,
34-
TyAndLayout, VariantIdx,
35-
};
32+
#[cfg(feature = "nightly")]
33+
pub use layout::{FIRST_VARIANT, FieldIdx, Layout, TyAbiInterface, TyAndLayout, VariantIdx};
34+
pub use layout::{LayoutCalculator, LayoutCalculatorError};
3635

3736
/// Requirements for a `StableHashingContext` to be used in this crate.
3837
/// This is a hack to allow using the `HashStable_Generic` derive macro
3938
/// instead of implementing everything in `rustc_middle`.
39+
#[cfg(feature = "nightly")]
4040
pub trait HashStableContext {}
4141

4242
#[derive(Clone, Copy, PartialEq, Eq, Default)]
@@ -1644,6 +1644,14 @@ pub struct LayoutS<FieldIdx: Idx, VariantIdx: Idx> {
16441644
}
16451645

16461646
impl<FieldIdx: Idx, VariantIdx: Idx> LayoutS<FieldIdx, VariantIdx> {
1647+
/// Returns `true` if this is an aggregate type (including a ScalarPair!)
1648+
pub fn is_aggregate(&self) -> bool {
1649+
match self.abi {
1650+
Abi::Uninhabited | Abi::Scalar(_) | Abi::Vector { .. } => false,
1651+
Abi::ScalarPair(..) | Abi::Aggregate { .. } => true,
1652+
}
1653+
}
1654+
16471655
pub fn scalar<C: HasDataLayout>(cx: &C, scalar: Scalar) -> Self {
16481656
let largest_niche = Niche::from_scalar(cx, Size::ZERO, scalar);
16491657
let size = scalar.size(cx);

compiler/rustc_arena/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#![feature(maybe_uninit_slice)]
2424
#![feature(rustc_attrs)]
2525
#![feature(rustdoc_internals)]
26-
#![feature(strict_provenance)]
2726
#![warn(unreachable_pub)]
2827
// tidy-alphabetical-end
2928

compiler/rustc_codegen_ssa/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#![feature(let_chains)]
1212
#![feature(negative_impls)]
1313
#![feature(rustdoc_internals)]
14-
#![feature(strict_provenance)]
1514
#![feature(trait_alias)]
1615
#![feature(try_blocks)]
1716
#![warn(unreachable_pub)]

compiler/rustc_codegen_ssa/src/mir/rvalue.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -361,12 +361,16 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
361361
(Int(..) | Float(_), Int(..) | Float(_)) => bx.bitcast(imm, to_backend_ty),
362362
(Pointer(..), Pointer(..)) => bx.pointercast(imm, to_backend_ty),
363363
(Int(..), Pointer(..)) => bx.ptradd(bx.const_null(bx.type_ptr()), imm),
364-
(Pointer(..), Int(..)) => bx.ptrtoint(imm, to_backend_ty),
364+
(Pointer(..), Int(..)) => {
365+
// FIXME: this exposes the provenance, which shouldn't be necessary.
366+
bx.ptrtoint(imm, to_backend_ty)
367+
}
365368
(Float(_), Pointer(..)) => {
366369
let int_imm = bx.bitcast(imm, bx.cx().type_isize());
367370
bx.ptradd(bx.const_null(bx.type_ptr()), int_imm)
368371
}
369372
(Pointer(..), Float(_)) => {
373+
// FIXME: this exposes the provenance, which shouldn't be necessary.
370374
let int_imm = bx.ptrtoint(imm, bx.cx().type_isize());
371375
bx.bitcast(int_imm, to_backend_ty)
372376
}

compiler/rustc_const_eval/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#![feature(never_type)]
1111
#![feature(rustdoc_internals)]
1212
#![feature(slice_ptr_get)]
13-
#![feature(strict_provenance)]
1413
#![feature(trait_alias)]
1514
#![feature(try_blocks)]
1615
#![feature(unqualified_local_imports)]

compiler/rustc_data_structures/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
#![feature(ptr_alignment_type)]
3434
#![feature(rustc_attrs)]
3535
#![feature(rustdoc_internals)]
36-
#![feature(strict_provenance)]
3736
#![feature(test)]
3837
#![feature(thread_id_value)]
3938
#![feature(type_alias_impl_trait)]

compiler/rustc_feature/src/unstable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ declare_features! (
595595
/// Allows attributes on expressions and non-item statements.
596596
(unstable, stmt_expr_attributes, "1.6.0", Some(15701)),
597597
/// Allows lints part of the strict provenance effort.
598-
(unstable, strict_provenance, "1.61.0", Some(95228)),
598+
(unstable, strict_provenance_lints, "1.61.0", Some(130351)),
599599
/// Allows string patterns to dereference values to match them.
600600
(unstable, string_deref_patterns, "1.67.0", Some(87121)),
601601
/// Allows the use of `#[target_feature]` on safe functions.

compiler/rustc_lint_defs/src/builtin.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -2667,7 +2667,6 @@ declare_lint! {
26672667
/// ### Example
26682668
///
26692669
/// ```rust
2670-
/// #![feature(strict_provenance)]
26712670
/// #![warn(fuzzy_provenance_casts)]
26722671
///
26732672
/// fn main() {
@@ -2701,7 +2700,7 @@ declare_lint! {
27012700
pub FUZZY_PROVENANCE_CASTS,
27022701
Allow,
27032702
"a fuzzy integer to pointer cast is used",
2704-
@feature_gate = strict_provenance;
2703+
@feature_gate = strict_provenance_lints;
27052704
}
27062705

27072706
declare_lint! {
@@ -2711,7 +2710,6 @@ declare_lint! {
27112710
/// ### Example
27122711
///
27132712
/// ```rust
2714-
/// #![feature(strict_provenance)]
27152713
/// #![warn(lossy_provenance_casts)]
27162714
///
27172715
/// fn main() {
@@ -2747,7 +2745,7 @@ declare_lint! {
27472745
pub LOSSY_PROVENANCE_CASTS,
27482746
Allow,
27492747
"a lossy pointer to integer cast is used",
2750-
@feature_gate = strict_provenance;
2748+
@feature_gate = strict_provenance_lints;
27512749
}
27522750

27532751
declare_lint! {

compiler/rustc_middle/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
#![feature(ptr_alignment_type)]
5757
#![feature(rustc_attrs)]
5858
#![feature(rustdoc_internals)]
59-
#![feature(strict_provenance)]
6059
#![feature(trait_upcasting)]
6160
#![feature(trusted_len)]
6261
#![feature(try_blocks)]

compiler/rustc_next_trait_solver/src/solve/eval_ctxt/canonical.rs

+17-7
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use rustc_type_ir::fold::TypeFoldable;
1616
use rustc_type_ir::inherent::*;
1717
use rustc_type_ir::relate::solver_relating::RelateExt;
1818
use rustc_type_ir::{self as ty, Canonical, CanonicalVarValues, InferCtxtLike, Interner};
19-
use tracing::{instrument, trace};
19+
use tracing::{debug, instrument, trace};
2020

2121
use crate::canonicalizer::{CanonicalizeMode, Canonicalizer};
2222
use crate::delegate::SolverDelegate;
@@ -165,12 +165,22 @@ where
165165
// HACK: We bail with overflow if the response would have too many non-region
166166
// inference variables. This tends to only happen if we encounter a lot of
167167
// ambiguous alias types which get replaced with fresh inference variables
168-
// during generalization. This prevents a hang in nalgebra.
169-
let num_non_region_vars = canonical.variables.iter().filter(|c| !c.is_region()).count();
170-
if num_non_region_vars > self.cx().recursion_limit() {
171-
return Ok(self.make_ambiguous_response_no_constraints(MaybeCause::Overflow {
172-
suggest_increasing_limit: true,
173-
}));
168+
// during generalization. This prevents hangs caused by an exponential blowup,
169+
// see tests/ui/traits/next-solver/coherence-alias-hang.rs.
170+
//
171+
// We don't do so for `NormalizesTo` goals as we erased the expected term and
172+
// bailing with overflow here would prevent us from detecting a type-mismatch,
173+
// causing a coherence error in diesel, see #131969. We still bail with verflow
174+
// when later returning from the parent AliasRelate goal.
175+
if !self.is_normalizes_to_goal {
176+
let num_non_region_vars =
177+
canonical.variables.iter().filter(|c| !c.is_region() && c.is_existential()).count();
178+
if num_non_region_vars > self.cx().recursion_limit() {
179+
debug!(?num_non_region_vars, "too many inference variables -> overflow");
180+
return Ok(self.make_ambiguous_response_no_constraints(MaybeCause::Overflow {
181+
suggest_increasing_limit: true,
182+
}));
183+
}
174184
}
175185

176186
Ok(canonical)

compiler/rustc_span/src/symbol.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1913,7 +1913,7 @@ symbols! {
19131913
str_trim,
19141914
str_trim_end,
19151915
str_trim_start,
1916-
strict_provenance,
1916+
strict_provenance_lints,
19171917
string_as_mut_str,
19181918
string_as_str,
19191919
string_deref_patterns,

compiler/rustc_trait_selection/src/traits/coherence.rs

+2
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ fn equate_impl_headers<'tcx>(
298298
}
299299

300300
/// The result of [fn impl_intersection_has_impossible_obligation].
301+
#[derive(Debug)]
301302
enum IntersectionHasImpossibleObligations<'tcx> {
302303
Yes,
303304
No {
@@ -328,6 +329,7 @@ enum IntersectionHasImpossibleObligations<'tcx> {
328329
/// of the two impls above to be empty.
329330
///
330331
/// Importantly, this works even if there isn't a `impl !Error for MyLocalType`.
332+
#[instrument(level = "debug", skip(selcx), ret)]
331333
fn impl_intersection_has_impossible_obligation<'a, 'cx, 'tcx>(
332334
selcx: &mut SelectionContext<'cx, 'tcx>,
333335
obligations: &'a [PredicateObligation<'tcx>],

library/alloc/benches/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
#![feature(iter_next_chunk)]
55
#![feature(repr_simd)]
66
#![feature(slice_partition_dedup)]
7-
#![feature(strict_provenance)]
7+
#![cfg_attr(bootstrap, feature(strict_provenance))]
8+
#![cfg_attr(not(bootstrap), feature(strict_provenance_lints))]
89
#![feature(test)]
910
#![deny(fuzzy_provenance_casts)]
1011

library/alloc/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@
147147
#![feature(slice_range)]
148148
#![feature(std_internals)]
149149
#![feature(str_internals)]
150-
#![feature(strict_provenance)]
151150
#![feature(trusted_fused)]
152151
#![feature(trusted_len)]
153152
#![feature(trusted_random_access)]
@@ -162,6 +161,8 @@
162161
//
163162
// Language features:
164163
// tidy-alphabetical-start
164+
#![cfg_attr(bootstrap, feature(strict_provenance))]
165+
#![cfg_attr(not(bootstrap), feature(strict_provenance_lints))]
165166
#![cfg_attr(not(test), feature(coroutine_trait))]
166167
#![cfg_attr(test, feature(panic_update_hook))]
167168
#![cfg_attr(test, feature(test))]

library/alloc/tests/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
#![feature(panic_update_hook)]
3333
#![feature(pointer_is_aligned_to)]
3434
#![feature(thin_box)]
35-
#![feature(strict_provenance)]
35+
#![cfg_attr(bootstrap, feature(strict_provenance))]
36+
#![cfg_attr(not(bootstrap), feature(strict_provenance_lints))]
3637
#![feature(drain_keep_rest)]
3738
#![feature(local_waker)]
3839
#![feature(vec_pop_if)]

library/core/src/intrinsics.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2794,7 +2794,6 @@ where
27942794
/// #![feature(is_val_statically_known)]
27952795
/// #![feature(core_intrinsics)]
27962796
/// # #![allow(internal_features)]
2797-
/// #![feature(strict_provenance)]
27982797
/// use std::intrinsics::is_val_statically_known;
27992798
///
28002799
/// fn foo(x: &i32) -> bool {

library/core/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@
163163
#![feature(str_internals)]
164164
#![feature(str_split_inclusive_remainder)]
165165
#![feature(str_split_remainder)]
166-
#![feature(strict_provenance)]
167166
#![feature(ub_checks)]
168167
#![feature(unchecked_neg)]
169168
#![feature(unchecked_shifts)]
@@ -174,6 +173,8 @@
174173
//
175174
// Language features:
176175
// tidy-alphabetical-start
176+
#![cfg_attr(bootstrap, feature(strict_provenance))]
177+
#![cfg_attr(not(bootstrap), feature(strict_provenance_lints))]
177178
#![feature(abi_unadjusted)]
178179
#![feature(adt_const_params)]
179180
#![feature(allow_internal_unsafe)]

library/core/src/primitive_docs.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -1784,9 +1784,11 @@ mod prim_ref {}
17841784
/// unique field that doesn't have size 0 and alignment 1 (if there is such a field).
17851785
/// - `i32` is ABI-compatible with `NonZero<i32>`, and similar for all other integer types.
17861786
/// - If `T` is guaranteed to be subject to the [null pointer
1787-
/// optimization](option/index.html#representation), then `T` and `Option<T>` are ABI-compatible.
1788-
/// Furthermore, if `U` satisfies the requirements [outlined here](result/index.html#representation),
1789-
/// then `T` and `Result<T, U>` and `Result<U, T>` are all ABI-compatible.
1787+
/// optimization](option/index.html#representation), and `E` is an enum satisfying the following
1788+
/// requirements, then `T` and `E` are ABI-compatible. Such an enum `E` is called "option-like".
1789+
/// - The enum `E` has exactly two variants.
1790+
/// - One variant has exactly one field, of type `T`.
1791+
/// - All fields of the other variant are zero-sized with 1-byte alignment.
17901792
///
17911793
/// Furthermore, ABI compatibility satisfies the following general properties:
17921794
///

0 commit comments

Comments
 (0)