Skip to content

Commit e1d9a20

Browse files
committed
Auto merge of #99391 - JohnTitor:rollup-tdigzzo, r=JohnTitor
Rollup of 6 pull requests Successful merges: - #98383 (Remove restrictions on compare-exchange memory ordering.) - #99350 (Be more precise when suggesting removal of parens on unit ctor) - #99356 (Do not constraint TAITs when checking impl/trait item compatibility) - #99360 (Do not ICE when we have `-Zunpretty=expanded` with invalid ABI) - #99373 (Fix source code sidebar tree auto-expand) - #99374 (Fix doc for `rchunks_exact`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 246f66a + 7c98c92 commit e1d9a20

36 files changed

+287
-95
lines changed

compiler/rustc_ast_passes/src/feature_gate.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -274,10 +274,12 @@ impl<'a> PostExpansionVisitor<'a> {
274274
);
275275
}
276276
abi => {
277-
self.sess.parse_sess.span_diagnostic.delay_span_bug(
278-
span,
279-
&format!("unrecognized ABI not caught in lowering: {}", abi),
280-
);
277+
if self.sess.opts.pretty.map_or(true, |ppm| ppm.needs_hir()) {
278+
self.sess.parse_sess.span_diagnostic.delay_span_bug(
279+
span,
280+
&format!("unrecognized ABI not caught in lowering: {}", abi),
281+
);
282+
}
281283
}
282284
}
283285
}

compiler/rustc_hir_pretty/src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,10 @@ pub fn path_to_string(segment: &hir::Path<'_>) -> String {
211211
to_string(NO_ANN, |s| s.print_path(segment, false))
212212
}
213213

214+
pub fn qpath_to_string(segment: &hir::QPath<'_>) -> String {
215+
to_string(NO_ANN, |s| s.print_qpath(segment, false))
216+
}
217+
214218
pub fn fn_to_string(
215219
decl: &hir::FnDecl<'_>,
216220
header: hir::FnHeader,

compiler/rustc_session/src/config.rs

+8
Original file line numberDiff line numberDiff line change
@@ -2707,6 +2707,14 @@ impl PpMode {
27072707
| MirCFG => true,
27082708
}
27092709
}
2710+
pub fn needs_hir(&self) -> bool {
2711+
use PpMode::*;
2712+
match *self {
2713+
Source(_) | AstTree(_) => false,
2714+
2715+
Hir(_) | HirTree | ThirTree | Mir | MirCFG => true,
2716+
}
2717+
}
27102718

27112719
pub fn needs_analysis(&self) -> bool {
27122720
use PpMode::*;

compiler/rustc_typeck/src/check/callee.rs

+20-15
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::type_error_struct;
44

55
use rustc_errors::{struct_span_err, Applicability, Diagnostic};
66
use rustc_hir as hir;
7-
use rustc_hir::def::{Namespace, Res};
7+
use rustc_hir::def::{self, Namespace, Res};
88
use rustc_hir::def_id::{DefId, LOCAL_CRATE};
99
use rustc_infer::{
1010
infer,
@@ -390,17 +390,22 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
390390
(fn_sig, Some(def_id))
391391
}
392392
ty::FnPtr(sig) => (sig, None),
393-
ref t => {
393+
_ => {
394394
let mut unit_variant = None;
395-
let mut removal_span = call_expr.span;
396-
if let ty::Adt(adt_def, ..) = t
397-
&& adt_def.is_enum()
398-
&& let hir::ExprKind::Call(expr, _) = call_expr.kind
395+
if let hir::ExprKind::Path(qpath) = &callee_expr.kind
396+
&& let Res::Def(def::DefKind::Ctor(kind, def::CtorKind::Const), _)
397+
= self.typeck_results.borrow().qpath_res(qpath, callee_expr.hir_id)
398+
// Only suggest removing parens if there are no arguments
399+
&& arg_exprs.is_empty()
399400
{
400-
removal_span =
401-
expr.span.shrink_to_hi().to(call_expr.span.shrink_to_hi());
401+
let descr = match kind {
402+
def::CtorOf::Struct => "struct",
403+
def::CtorOf::Variant => "enum variant",
404+
};
405+
let removal_span =
406+
callee_expr.span.shrink_to_hi().to(call_expr.span.shrink_to_hi());
402407
unit_variant =
403-
self.tcx.sess.source_map().span_to_snippet(expr.span).ok();
408+
Some((removal_span, descr, rustc_hir_pretty::qpath_to_string(qpath)));
404409
}
405410

406411
let callee_ty = self.resolve_vars_if_possible(callee_ty);
@@ -410,8 +415,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
410415
callee_ty,
411416
E0618,
412417
"expected function, found {}",
413-
match unit_variant {
414-
Some(ref path) => format!("enum variant `{path}`"),
418+
match &unit_variant {
419+
Some((_, kind, path)) => format!("{kind} `{path}`"),
415420
None => format!("`{callee_ty}`"),
416421
}
417422
);
@@ -423,11 +428,11 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
423428
callee_expr.span,
424429
);
425430

426-
if let Some(ref path) = unit_variant {
431+
if let Some((removal_span, kind, path)) = &unit_variant {
427432
err.span_suggestion_verbose(
428-
removal_span,
433+
*removal_span,
429434
&format!(
430-
"`{path}` is a unit variant, you need to write it without the parentheses",
435+
"`{path}` is a unit {kind}, and does not take parentheses to be constructed",
431436
),
432437
"",
433438
Applicability::MachineApplicable,
@@ -470,7 +475,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
470475
if let Some(span) = self.tcx.hir().res_span(def) {
471476
let callee_ty = callee_ty.to_string();
472477
let label = match (unit_variant, inner_callee_path) {
473-
(Some(path), _) => Some(format!("`{path}` defined here")),
478+
(Some((_, kind, path)), _) => Some(format!("{kind} `{path}` defined here")),
474479
(_, Some(hir::QPath::Resolved(_, path))) => self
475480
.tcx
476481
.sess

compiler/rustc_typeck/src/check/compare_method.rs

+15
Original file line numberDiff line numberDiff line change
@@ -1505,6 +1505,21 @@ pub fn check_type_bounds<'tcx>(
15051505
&outlives_environment,
15061506
);
15071507

1508+
let constraints = infcx.inner.borrow_mut().opaque_type_storage.take_opaque_types();
1509+
for (key, value) in constraints {
1510+
infcx
1511+
.report_mismatched_types(
1512+
&ObligationCause::misc(
1513+
value.hidden_type.span,
1514+
tcx.hir().local_def_id_to_hir_id(impl_ty.def_id.expect_local()),
1515+
),
1516+
tcx.mk_opaque(key.def_id, key.substs),
1517+
value.hidden_type.ty,
1518+
TypeError::Mismatch,
1519+
)
1520+
.emit();
1521+
}
1522+
15081523
Ok(())
15091524
})
15101525
}

compiler/rustc_typeck/src/check/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
531531
tcx.ty_error()
532532
}
533533
Res::Def(DefKind::Ctor(_, CtorKind::Fictive), _) => {
534-
report_unexpected_variant_res(tcx, res, expr.span);
534+
report_unexpected_variant_res(tcx, res, qpath, expr.span);
535535
tcx.ty_error()
536536
}
537537
_ => self.instantiate_value_path(segs, opt_ty, res, expr.span, expr.hir_id).0,

compiler/rustc_typeck/src/check/mod.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -863,17 +863,14 @@ fn bad_non_zero_sized_fields<'tcx>(
863863
err.emit();
864864
}
865865

866-
fn report_unexpected_variant_res(tcx: TyCtxt<'_>, res: Res, span: Span) {
866+
fn report_unexpected_variant_res(tcx: TyCtxt<'_>, res: Res, qpath: &hir::QPath<'_>, span: Span) {
867867
struct_span_err!(
868868
tcx.sess,
869869
span,
870870
E0533,
871-
"expected unit struct, unit variant or constant, found {}{}",
871+
"expected unit struct, unit variant or constant, found {} `{}`",
872872
res.descr(),
873-
tcx.sess
874-
.source_map()
875-
.span_to_snippet(span)
876-
.map_or_else(|_| String::new(), |s| format!(" `{s}`",)),
873+
rustc_hir_pretty::qpath_to_string(qpath),
877874
)
878875
.emit();
879876
}

compiler/rustc_typeck/src/check/pat.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
183183
PatKind::TupleStruct(ref qpath, subpats, ddpos) => {
184184
self.check_pat_tuple_struct(pat, qpath, subpats, ddpos, expected, def_bm, ti)
185185
}
186-
PatKind::Path(_) => self.check_pat_path(pat, path_res.unwrap(), expected, ti),
186+
PatKind::Path(ref qpath) => {
187+
self.check_pat_path(pat, qpath, path_res.unwrap(), expected, ti)
188+
}
187189
PatKind::Struct(ref qpath, fields, has_rest_pat) => {
188190
self.check_pat_struct(pat, qpath, fields, has_rest_pat, expected, def_bm, ti)
189191
}
@@ -800,6 +802,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
800802
fn check_pat_path<'b>(
801803
&self,
802804
pat: &Pat<'_>,
805+
qpath: &hir::QPath<'_>,
803806
path_resolution: (Res, Option<Ty<'tcx>>, &'b [hir::PathSegment<'b>]),
804807
expected: Ty<'tcx>,
805808
ti: TopInfo<'tcx>,
@@ -814,7 +817,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
814817
return tcx.ty_error();
815818
}
816819
Res::Def(DefKind::AssocFn | DefKind::Ctor(_, CtorKind::Fictive | CtorKind::Fn), _) => {
817-
report_unexpected_variant_res(tcx, res, pat.span);
820+
report_unexpected_variant_res(tcx, res, qpath, pat.span);
818821
return tcx.ty_error();
819822
}
820823
Res::SelfCtor(..)

library/core/src/slice/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,7 @@ impl<T> [T] {
13401340
/// from the `remainder` function of the iterator.
13411341
///
13421342
/// Due to each chunk having exactly `chunk_size` elements, the compiler can often optimize the
1343-
/// resulting code better than in the case of [`chunks`].
1343+
/// resulting code better than in the case of [`rchunks`].
13441344
///
13451345
/// See [`rchunks`] for a variant of this iterator that also returns the remainder as a smaller
13461346
/// chunk, and [`chunks_exact`] for the same iterator but starting at the beginning of the

library/core/src/sync/atomic.rs

+35-30
Original file line numberDiff line numberDiff line change
@@ -581,8 +581,7 @@ impl AtomicBool {
581581
/// `failure` describes the required ordering for the load operation that takes place when
582582
/// the comparison fails. Using [`Acquire`] as success ordering makes the store part
583583
/// of this operation [`Relaxed`], and using [`Release`] makes the successful load
584-
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`]
585-
/// and must be equivalent to or weaker than the success ordering.
584+
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`].
586585
///
587586
/// **Note:** This method is only available on platforms that support atomic
588587
/// operations on `u8`.
@@ -640,8 +639,7 @@ impl AtomicBool {
640639
/// `failure` describes the required ordering for the load operation that takes place when
641640
/// the comparison fails. Using [`Acquire`] as success ordering makes the store part
642641
/// of this operation [`Relaxed`], and using [`Release`] makes the successful load
643-
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`]
644-
/// and must be equivalent to or weaker than the success ordering.
642+
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`].
645643
///
646644
/// **Note:** This method is only available on platforms that support atomic
647645
/// operations on `u8`.
@@ -941,8 +939,7 @@ impl AtomicBool {
941939
/// Using [`Acquire`] as success ordering makes the store part of this
942940
/// operation [`Relaxed`], and using [`Release`] makes the final successful
943941
/// load [`Relaxed`]. The (failed) load ordering can only be [`SeqCst`],
944-
/// [`Acquire`] or [`Relaxed`] and must be equivalent to or weaker than the
945-
/// success ordering.
942+
/// [`Acquire`] or [`Relaxed`].
946943
///
947944
/// **Note:** This method is only available on platforms that support atomic
948945
/// operations on `u8`.
@@ -1301,8 +1298,7 @@ impl<T> AtomicPtr<T> {
13011298
/// `failure` describes the required ordering for the load operation that takes place when
13021299
/// the comparison fails. Using [`Acquire`] as success ordering makes the store part
13031300
/// of this operation [`Relaxed`], and using [`Release`] makes the successful load
1304-
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`]
1305-
/// and must be equivalent to or weaker than the success ordering.
1301+
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`].
13061302
///
13071303
/// **Note:** This method is only available on platforms that support atomic
13081304
/// operations on pointers.
@@ -1347,8 +1343,7 @@ impl<T> AtomicPtr<T> {
13471343
/// `failure` describes the required ordering for the load operation that takes place when
13481344
/// the comparison fails. Using [`Acquire`] as success ordering makes the store part
13491345
/// of this operation [`Relaxed`], and using [`Release`] makes the successful load
1350-
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`]
1351-
/// and must be equivalent to or weaker than the success ordering.
1346+
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`].
13521347
///
13531348
/// **Note:** This method is only available on platforms that support atomic
13541349
/// operations on pointers.
@@ -1404,8 +1399,7 @@ impl<T> AtomicPtr<T> {
14041399
/// Using [`Acquire`] as success ordering makes the store part of this
14051400
/// operation [`Relaxed`], and using [`Release`] makes the final successful
14061401
/// load [`Relaxed`]. The (failed) load ordering can only be [`SeqCst`],
1407-
/// [`Acquire`] or [`Relaxed`] and must be equivalent to or weaker than the
1408-
/// success ordering.
1402+
/// [`Acquire`] or [`Relaxed`].
14091403
///
14101404
/// **Note:** This method is only available on platforms that support atomic
14111405
/// operations on pointers.
@@ -2227,8 +2221,7 @@ macro_rules! atomic_int {
22272221
/// `failure` describes the required ordering for the load operation that takes place when
22282222
/// the comparison fails. Using [`Acquire`] as success ordering makes the store part
22292223
/// of this operation [`Relaxed`], and using [`Release`] makes the successful load
2230-
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`]
2231-
/// and must be equivalent to or weaker than the success ordering.
2224+
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`].
22322225
///
22332226
/// **Note**: This method is only available on platforms that support atomic operations on
22342227
#[doc = concat!("[`", $s_int_type, "`].")]
@@ -2279,8 +2272,7 @@ macro_rules! atomic_int {
22792272
/// `failure` describes the required ordering for the load operation that takes place when
22802273
/// the comparison fails. Using [`Acquire`] as success ordering makes the store part
22812274
/// of this operation [`Relaxed`], and using [`Release`] makes the successful load
2282-
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`]
2283-
/// and must be equivalent to or weaker than the success ordering.
2275+
/// [`Relaxed`]. The failure ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`].
22842276
///
22852277
/// **Note**: This method is only available on platforms that support atomic operations on
22862278
#[doc = concat!("[`", $s_int_type, "`].")]
@@ -2517,8 +2509,7 @@ macro_rules! atomic_int {
25172509
///
25182510
/// Using [`Acquire`] as success ordering makes the store part
25192511
/// of this operation [`Relaxed`], and using [`Release`] makes the final successful load
2520-
/// [`Relaxed`]. The (failed) load ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`]
2521-
/// and must be equivalent to or weaker than the success ordering.
2512+
/// [`Relaxed`]. The (failed) load ordering can only be [`SeqCst`], [`Acquire`] or [`Relaxed`].
25222513
///
25232514
/// **Note**: This method is only available on platforms that support atomic operations on
25242515
#[doc = concat!("[`", $s_int_type, "`].")]
@@ -3035,22 +3026,29 @@ unsafe fn atomic_compare_exchange<T: Copy>(
30353026
let (val, ok) = unsafe {
30363027
match (success, failure) {
30373028
(Relaxed, Relaxed) => intrinsics::atomic_cxchg_relaxed_relaxed(dst, old, new),
3038-
//(Relaxed, Acquire) => intrinsics::atomic_cxchg_relaxed_acquire(dst, old, new),
3039-
//(Relaxed, SeqCst) => intrinsics::atomic_cxchg_relaxed_seqcst(dst, old, new),
3029+
#[cfg(not(bootstrap))]
3030+
(Relaxed, Acquire) => intrinsics::atomic_cxchg_relaxed_acquire(dst, old, new),
3031+
#[cfg(not(bootstrap))]
3032+
(Relaxed, SeqCst) => intrinsics::atomic_cxchg_relaxed_seqcst(dst, old, new),
30403033
(Acquire, Relaxed) => intrinsics::atomic_cxchg_acquire_relaxed(dst, old, new),
30413034
(Acquire, Acquire) => intrinsics::atomic_cxchg_acquire_acquire(dst, old, new),
3042-
//(Acquire, SeqCst) => intrinsics::atomic_cxchg_acquire_seqcst(dst, old, new),
3035+
#[cfg(not(bootstrap))]
3036+
(Acquire, SeqCst) => intrinsics::atomic_cxchg_acquire_seqcst(dst, old, new),
30433037
(Release, Relaxed) => intrinsics::atomic_cxchg_release_relaxed(dst, old, new),
3044-
//(Release, Acquire) => intrinsics::atomic_cxchg_release_acquire(dst, old, new),
3045-
//(Release, SeqCst) => intrinsics::atomic_cxchg_release_seqcst(dst, old, new),
3038+
#[cfg(not(bootstrap))]
3039+
(Release, Acquire) => intrinsics::atomic_cxchg_release_acquire(dst, old, new),
3040+
#[cfg(not(bootstrap))]
3041+
(Release, SeqCst) => intrinsics::atomic_cxchg_release_seqcst(dst, old, new),
30463042
(AcqRel, Relaxed) => intrinsics::atomic_cxchg_acqrel_relaxed(dst, old, new),
30473043
(AcqRel, Acquire) => intrinsics::atomic_cxchg_acqrel_acquire(dst, old, new),
3048-
//(AcqRel, SeqCst) => intrinsics::atomic_cxchg_acqrel_seqcst(dst, old, new),
3044+
#[cfg(not(bootstrap))]
3045+
(AcqRel, SeqCst) => intrinsics::atomic_cxchg_acqrel_seqcst(dst, old, new),
30493046
(SeqCst, Relaxed) => intrinsics::atomic_cxchg_seqcst_relaxed(dst, old, new),
30503047
(SeqCst, Acquire) => intrinsics::atomic_cxchg_seqcst_acquire(dst, old, new),
30513048
(SeqCst, SeqCst) => intrinsics::atomic_cxchg_seqcst_seqcst(dst, old, new),
30523049
(_, AcqRel) => panic!("there is no such thing as an acquire-release failure ordering"),
30533050
(_, Release) => panic!("there is no such thing as a release failure ordering"),
3051+
#[cfg(bootstrap)]
30543052
_ => panic!("a failure ordering can't be stronger than a success ordering"),
30553053
}
30563054
};
@@ -3070,22 +3068,29 @@ unsafe fn atomic_compare_exchange_weak<T: Copy>(
30703068
let (val, ok) = unsafe {
30713069
match (success, failure) {
30723070
(Relaxed, Relaxed) => intrinsics::atomic_cxchgweak_relaxed_relaxed(dst, old, new),
3073-
//(Relaxed, Acquire) => intrinsics::atomic_cxchgweak_relaxed_acquire(dst, old, new),
3074-
//(Relaxed, SeqCst) => intrinsics::atomic_cxchgweak_relaxed_seqcst(dst, old, new),
3071+
#[cfg(not(bootstrap))]
3072+
(Relaxed, Acquire) => intrinsics::atomic_cxchgweak_relaxed_acquire(dst, old, new),
3073+
#[cfg(not(bootstrap))]
3074+
(Relaxed, SeqCst) => intrinsics::atomic_cxchgweak_relaxed_seqcst(dst, old, new),
30753075
(Acquire, Relaxed) => intrinsics::atomic_cxchgweak_acquire_relaxed(dst, old, new),
30763076
(Acquire, Acquire) => intrinsics::atomic_cxchgweak_acquire_acquire(dst, old, new),
3077-
//(Acquire, SeqCst) => intrinsics::atomic_cxchgweak_acquire_seqcst(dst, old, new),
3077+
#[cfg(not(bootstrap))]
3078+
(Acquire, SeqCst) => intrinsics::atomic_cxchgweak_acquire_seqcst(dst, old, new),
30783079
(Release, Relaxed) => intrinsics::atomic_cxchgweak_release_relaxed(dst, old, new),
3079-
//(Release, Acquire) => intrinsics::atomic_cxchgweak_release_acquire(dst, old, new),
3080-
//(Release, SeqCst) => intrinsics::atomic_cxchgweak_release_seqcst(dst, old, new),
3080+
#[cfg(not(bootstrap))]
3081+
(Release, Acquire) => intrinsics::atomic_cxchgweak_release_acquire(dst, old, new),
3082+
#[cfg(not(bootstrap))]
3083+
(Release, SeqCst) => intrinsics::atomic_cxchgweak_release_seqcst(dst, old, new),
30813084
(AcqRel, Relaxed) => intrinsics::atomic_cxchgweak_acqrel_relaxed(dst, old, new),
30823085
(AcqRel, Acquire) => intrinsics::atomic_cxchgweak_acqrel_acquire(dst, old, new),
3083-
//(AcqRel, SeqCst) => intrinsics::atomic_cxchgweak_acqrel_seqcst(dst, old, new),
3086+
#[cfg(not(bootstrap))]
3087+
(AcqRel, SeqCst) => intrinsics::atomic_cxchgweak_acqrel_seqcst(dst, old, new),
30843088
(SeqCst, Relaxed) => intrinsics::atomic_cxchgweak_seqcst_relaxed(dst, old, new),
30853089
(SeqCst, Acquire) => intrinsics::atomic_cxchgweak_seqcst_acquire(dst, old, new),
30863090
(SeqCst, SeqCst) => intrinsics::atomic_cxchgweak_seqcst_seqcst(dst, old, new),
30873091
(_, AcqRel) => panic!("there is no such thing as an acquire-release failure ordering"),
30883092
(_, Release) => panic!("there is no such thing as a release failure ordering"),
3093+
#[cfg(bootstrap)]
30893094
_ => panic!("a failure ordering can't be stronger than a success ordering"),
30903095
}
30913096
};

0 commit comments

Comments
 (0)