Skip to content

Commit cf226e9

Browse files
committed
Auto merge of rust-lang#117172 - matthiaskrgr:rollup-s56bm2f, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - rust-lang#116801 (Add test for 113326) - rust-lang#117133 (Merge `impl_wf_inference` (`check_mod_impl_wf`) check into coherence checking) - rust-lang#117136 (Intern `LocalDefId` list from `opaque_types_defined_by` query) - rust-lang#117150 (Update cargo) - rust-lang#117158 (Update THIR unused_unsafe lint) - rust-lang#117160 (Fix typo in test comment) - rust-lang#117168 (Fix some coroutine sentences that don't make sense anymore.) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 964ff01 + a7d05a6 commit cf226e9

27 files changed

+1821
-417
lines changed

compiler/rustc_hir_analysis/src/lib.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -181,14 +181,11 @@ pub fn check_crate(tcx: TyCtxt<'_>) -> Result<(), ErrorGuaranteed> {
181181
})?;
182182
}
183183

184-
tcx.sess.track_errors(|| {
185-
tcx.sess.time("impl_wf_inference", || {
186-
tcx.hir().for_each_module(|module| tcx.ensure().check_mod_impl_wf(module))
187-
});
188-
})?;
189-
190184
tcx.sess.track_errors(|| {
191185
tcx.sess.time("coherence_checking", || {
186+
// Check impls constrain their parameters
187+
tcx.hir().for_each_module(|module| tcx.ensure().check_mod_impl_wf(module));
188+
192189
for &trait_def_id in tcx.all_local_trait_impls(()).keys() {
193190
tcx.ensure().coherent_trait(trait_def_id);
194191
}

compiler/rustc_middle/src/query/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ rustc_queries! {
341341

342342
query opaque_types_defined_by(
343343
key: LocalDefId
344-
) -> &'tcx [LocalDefId] {
344+
) -> &'tcx ty::List<LocalDefId> {
345345
desc {
346346
|tcx| "computing the opaque types defined by `{}`",
347347
tcx.def_path_str(key.to_def_id())

compiler/rustc_middle/src/ty/context.rs

+10
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ pub struct CtxtInterners<'tcx> {
161161
external_constraints: InternedSet<'tcx, ExternalConstraintsData<'tcx>>,
162162
predefined_opaques_in_body: InternedSet<'tcx, PredefinedOpaquesData<'tcx>>,
163163
fields: InternedSet<'tcx, List<FieldIdx>>,
164+
local_def_ids: InternedSet<'tcx, List<LocalDefId>>,
164165
}
165166

166167
impl<'tcx> CtxtInterners<'tcx> {
@@ -186,6 +187,7 @@ impl<'tcx> CtxtInterners<'tcx> {
186187
external_constraints: Default::default(),
187188
predefined_opaques_in_body: Default::default(),
188189
fields: Default::default(),
190+
local_def_ids: Default::default(),
189191
}
190192
}
191193

@@ -1572,6 +1574,7 @@ slice_interners!(
15721574
place_elems: pub mk_place_elems(PlaceElem<'tcx>),
15731575
bound_variable_kinds: pub mk_bound_variable_kinds(ty::BoundVariableKind),
15741576
fields: pub mk_fields(FieldIdx),
1577+
local_def_ids: intern_local_def_ids(LocalDefId),
15751578
);
15761579

15771580
impl<'tcx> TyCtxt<'tcx> {
@@ -1801,6 +1804,13 @@ impl<'tcx> TyCtxt<'tcx> {
18011804
self.intern_clauses(clauses)
18021805
}
18031806

1807+
pub fn mk_local_def_ids(self, clauses: &[LocalDefId]) -> &'tcx List<LocalDefId> {
1808+
// FIXME consider asking the input slice to be sorted to avoid
1809+
// re-interning permutations, in which case that would be asserted
1810+
// here.
1811+
self.intern_local_def_ids(clauses)
1812+
}
1813+
18041814
pub fn mk_const_list_from_iter<I, T>(self, iter: I) -> T::Output
18051815
where
18061816
I: Iterator<Item = T>,

compiler/rustc_mir_build/messages.ftl

-1
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,5 @@ mir_build_unused_unsafe = unnecessary `unsafe` block
379379
.label = unnecessary `unsafe` block
380380
381381
mir_build_unused_unsafe_enclosing_block_label = because it's nested under this `unsafe` block
382-
mir_build_unused_unsafe_enclosing_fn_label = because it's nested under this `unsafe` fn
383382
384383
mir_build_variant_defined_here = not covered

compiler/rustc_mir_build/src/check_unsafety.rs

+85-67
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use rustc_span::def_id::{DefId, LocalDefId};
1313
use rustc_span::symbol::Symbol;
1414
use rustc_span::Span;
1515

16+
use std::mem;
1617
use std::ops::Bound;
1718

1819
struct UnsafetyVisitor<'a, 'tcx> {
@@ -24,7 +25,6 @@ struct UnsafetyVisitor<'a, 'tcx> {
2425
/// The current "safety context". This notably tracks whether we are in an
2526
/// `unsafe` block, and whether it has been used.
2627
safety_context: SafetyContext,
27-
body_unsafety: BodyUnsafety,
2828
/// The `#[target_feature]` attributes of the body. Used for checking
2929
/// calls to functions with `#[target_feature]` (RFC 2396).
3030
body_target_features: &'tcx [Symbol],
@@ -34,43 +34,50 @@ struct UnsafetyVisitor<'a, 'tcx> {
3434
in_union_destructure: bool,
3535
param_env: ParamEnv<'tcx>,
3636
inside_adt: bool,
37+
warnings: &'a mut Vec<UnusedUnsafeWarning>,
3738
}
3839

3940
impl<'tcx> UnsafetyVisitor<'_, 'tcx> {
4041
fn in_safety_context(&mut self, safety_context: SafetyContext, f: impl FnOnce(&mut Self)) {
41-
if let (
42-
SafetyContext::UnsafeBlock { span: enclosing_span, .. },
43-
SafetyContext::UnsafeBlock { span: block_span, hir_id, .. },
44-
) = (self.safety_context, safety_context)
42+
let prev_context = mem::replace(&mut self.safety_context, safety_context);
43+
44+
f(self);
45+
46+
let safety_context = mem::replace(&mut self.safety_context, prev_context);
47+
if let SafetyContext::UnsafeBlock { used, span, hir_id, nested_used_blocks } =
48+
safety_context
4549
{
46-
self.warn_unused_unsafe(
47-
hir_id,
48-
block_span,
49-
Some(UnusedUnsafeEnclosing::Block {
50-
span: self.tcx.sess.source_map().guess_head_span(enclosing_span),
51-
}),
52-
);
53-
f(self);
54-
} else {
55-
let prev_context = self.safety_context;
56-
self.safety_context = safety_context;
50+
if !used {
51+
self.warn_unused_unsafe(hir_id, span, None);
5752

58-
f(self);
53+
if let SafetyContext::UnsafeBlock {
54+
nested_used_blocks: ref mut prev_nested_used_blocks,
55+
..
56+
} = self.safety_context
57+
{
58+
prev_nested_used_blocks.extend(nested_used_blocks);
59+
}
60+
} else {
61+
for block in nested_used_blocks {
62+
self.warn_unused_unsafe(
63+
block.hir_id,
64+
block.span,
65+
Some(UnusedUnsafeEnclosing::Block {
66+
span: self.tcx.sess.source_map().guess_head_span(span),
67+
}),
68+
);
69+
}
5970

60-
if let SafetyContext::UnsafeBlock { used: false, span, hir_id } = self.safety_context {
61-
self.warn_unused_unsafe(
62-
hir_id,
63-
span,
64-
if self.unsafe_op_in_unsafe_fn_allowed() {
65-
self.body_unsafety
66-
.unsafe_fn_sig_span()
67-
.map(|span| UnusedUnsafeEnclosing::Function { span })
68-
} else {
69-
None
70-
},
71-
);
71+
match self.safety_context {
72+
SafetyContext::UnsafeBlock {
73+
nested_used_blocks: ref mut prev_nested_used_blocks,
74+
..
75+
} => {
76+
prev_nested_used_blocks.push(NestedUsedBlock { hir_id, span });
77+
}
78+
_ => (),
79+
}
7280
}
73-
self.safety_context = prev_context;
7481
}
7582
}
7683

@@ -102,18 +109,12 @@ impl<'tcx> UnsafetyVisitor<'_, 'tcx> {
102109
}
103110

104111
fn warn_unused_unsafe(
105-
&self,
112+
&mut self,
106113
hir_id: hir::HirId,
107114
block_span: Span,
108115
enclosing_unsafe: Option<UnusedUnsafeEnclosing>,
109116
) {
110-
let block_span = self.tcx.sess.source_map().guess_head_span(block_span);
111-
self.tcx.emit_spanned_lint(
112-
UNUSED_UNSAFE,
113-
hir_id,
114-
block_span,
115-
UnusedUnsafe { span: block_span, enclosing: enclosing_unsafe },
116-
);
117+
self.warnings.push(UnusedUnsafeWarning { hir_id, block_span, enclosing_unsafe });
117118
}
118119

119120
/// Whether the `unsafe_op_in_unsafe_fn` lint is `allow`ed at the current HIR node.
@@ -128,7 +129,14 @@ impl<'tcx> UnsafetyVisitor<'_, 'tcx> {
128129
self.tcx.ensure_with_value().mir_built(def);
129130
let inner_thir = &inner_thir.steal();
130131
let hir_context = self.tcx.hir().local_def_id_to_hir_id(def);
131-
let mut inner_visitor = UnsafetyVisitor { thir: inner_thir, hir_context, ..*self };
132+
let safety_context = mem::replace(&mut self.safety_context, SafetyContext::Safe);
133+
let mut inner_visitor = UnsafetyVisitor {
134+
thir: inner_thir,
135+
hir_context,
136+
safety_context,
137+
warnings: self.warnings,
138+
..*self
139+
};
132140
inner_visitor.visit_expr(&inner_thir[expr]);
133141
// Unsafe blocks can be used in the inner body, make sure to take it into account
134142
self.safety_context = inner_visitor.safety_context;
@@ -195,8 +203,15 @@ impl<'a, 'tcx> Visitor<'a, 'tcx> for UnsafetyVisitor<'a, 'tcx> {
195203
});
196204
}
197205
BlockSafety::ExplicitUnsafe(hir_id) => {
206+
let used =
207+
matches!(self.tcx.lint_level_at_node(UNUSED_UNSAFE, hir_id), (Level::Allow, _));
198208
self.in_safety_context(
199-
SafetyContext::UnsafeBlock { span: block.span, hir_id, used: false },
209+
SafetyContext::UnsafeBlock {
210+
span: block.span,
211+
hir_id,
212+
used,
213+
nested_used_blocks: Vec::new(),
214+
},
200215
|this| visit::walk_block(this, block),
201216
);
202217
}
@@ -481,36 +496,29 @@ impl<'a, 'tcx> Visitor<'a, 'tcx> for UnsafetyVisitor<'a, 'tcx> {
481496
}
482497
}
483498

484-
#[derive(Clone, Copy)]
499+
#[derive(Clone)]
485500
enum SafetyContext {
486501
Safe,
487502
BuiltinUnsafeBlock,
488503
UnsafeFn,
489-
UnsafeBlock { span: Span, hir_id: hir::HirId, used: bool },
504+
UnsafeBlock {
505+
span: Span,
506+
hir_id: hir::HirId,
507+
used: bool,
508+
nested_used_blocks: Vec<NestedUsedBlock>,
509+
},
490510
}
491511

492512
#[derive(Clone, Copy)]
493-
enum BodyUnsafety {
494-
/// The body is not unsafe.
495-
Safe,
496-
/// The body is an unsafe function. The span points to
497-
/// the signature of the function.
498-
Unsafe(Span),
513+
struct NestedUsedBlock {
514+
hir_id: hir::HirId,
515+
span: Span,
499516
}
500517

501-
impl BodyUnsafety {
502-
/// Returns whether the body is unsafe.
503-
fn is_unsafe(&self) -> bool {
504-
matches!(self, BodyUnsafety::Unsafe(_))
505-
}
506-
507-
/// If the body is unsafe, returns the `Span` of its signature.
508-
fn unsafe_fn_sig_span(self) -> Option<Span> {
509-
match self {
510-
BodyUnsafety::Unsafe(span) => Some(span),
511-
BodyUnsafety::Safe => None,
512-
}
513-
}
518+
struct UnusedUnsafeWarning {
519+
hir_id: hir::HirId,
520+
block_span: Span,
521+
enclosing_unsafe: Option<UnusedUnsafeEnclosing>,
514522
}
515523

516524
#[derive(Clone, Copy, PartialEq)]
@@ -803,27 +811,37 @@ pub fn thir_check_unsafety(tcx: TyCtxt<'_>, def: LocalDefId) {
803811
}
804812

805813
let hir_id = tcx.hir().local_def_id_to_hir_id(def);
806-
let body_unsafety = tcx.hir().fn_sig_by_hir_id(hir_id).map_or(BodyUnsafety::Safe, |fn_sig| {
814+
let safety_context = tcx.hir().fn_sig_by_hir_id(hir_id).map_or(SafetyContext::Safe, |fn_sig| {
807815
if fn_sig.header.unsafety == hir::Unsafety::Unsafe {
808-
BodyUnsafety::Unsafe(fn_sig.span)
816+
SafetyContext::UnsafeFn
809817
} else {
810-
BodyUnsafety::Safe
818+
SafetyContext::Safe
811819
}
812820
});
813821
let body_target_features = &tcx.body_codegen_attrs(def.to_def_id()).target_features;
814-
let safety_context =
815-
if body_unsafety.is_unsafe() { SafetyContext::UnsafeFn } else { SafetyContext::Safe };
822+
let mut warnings = Vec::new();
816823
let mut visitor = UnsafetyVisitor {
817824
tcx,
818825
thir,
819826
safety_context,
820827
hir_context: hir_id,
821-
body_unsafety,
822828
body_target_features,
823829
assignment_info: None,
824830
in_union_destructure: false,
825831
param_env: tcx.param_env(def),
826832
inside_adt: false,
833+
warnings: &mut warnings,
827834
};
828835
visitor.visit_expr(&thir[expr]);
836+
837+
warnings.sort_by_key(|w| w.block_span);
838+
for UnusedUnsafeWarning { hir_id, block_span, enclosing_unsafe } in warnings {
839+
let block_span = tcx.sess.source_map().guess_head_span(block_span);
840+
tcx.emit_spanned_lint(
841+
UNUSED_UNSAFE,
842+
hir_id,
843+
block_span,
844+
UnusedUnsafe { span: block_span, enclosing: enclosing_unsafe },
845+
);
846+
}
829847
}

compiler/rustc_mir_build/src/errors.rs

-5
Original file line numberDiff line numberDiff line change
@@ -392,11 +392,6 @@ pub enum UnusedUnsafeEnclosing {
392392
#[primary_span]
393393
span: Span,
394394
},
395-
#[label(mir_build_unused_unsafe_enclosing_fn_label)]
396-
Function {
397-
#[primary_span]
398-
span: Span,
399-
},
400395
}
401396

402397
pub(crate) struct NonExhaustivePatternsTypeNotEmpty<'p, 'tcx, 'm> {

compiler/rustc_mir_build/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ mod build;
2020
mod check_unsafety;
2121
mod errors;
2222
pub mod lints;
23-
pub mod thir;
23+
mod thir;
2424

2525
use rustc_middle::query::Providers;
2626

compiler/rustc_ty_utils/src/opaque_types.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,10 @@ impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for OpaqueTypeCollector<'tcx> {
264264
}
265265
}
266266

267-
fn opaque_types_defined_by<'tcx>(tcx: TyCtxt<'tcx>, item: LocalDefId) -> &'tcx [LocalDefId] {
267+
fn opaque_types_defined_by<'tcx>(
268+
tcx: TyCtxt<'tcx>,
269+
item: LocalDefId,
270+
) -> &'tcx ty::List<LocalDefId> {
268271
let kind = tcx.def_kind(item);
269272
trace!(?kind);
270273
let mut collector = OpaqueTypeCollector::new(tcx, item);
@@ -306,7 +309,7 @@ fn opaque_types_defined_by<'tcx>(tcx: TyCtxt<'tcx>, item: LocalDefId) -> &'tcx [
306309
collector.opaques.extend(tcx.opaque_types_defined_by(tcx.local_parent(item)));
307310
}
308311
}
309-
tcx.arena.alloc_from_iter(collector.opaques)
312+
tcx.mk_local_def_ids(&collector.opaques)
310313
}
311314

312315
pub(super) fn provide(providers: &mut Providers) {

library/core/src/ops/coroutine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub enum CoroutineState<Y, R> {
2929

3030
/// The trait implemented by builtin coroutine types.
3131
///
32-
/// Coroutines, also commonly referred to as coroutines, are currently an
32+
/// Coroutines are currently an
3333
/// experimental language feature in Rust. Added in [RFC 2033] coroutines are
3434
/// currently intended to primarily provide a building block for async/await
3535
/// syntax but will likely extend to also providing an ergonomic definition for

src/doc/unstable-book/src/language-features/coroutines.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Coroutines are an extra-unstable feature in the compiler right now. Added in
1818
[RFC 2033] they're mostly intended right now as a information/constraint
1919
gathering phase. The intent is that experimentation can happen on the nightly
2020
compiler before actual stabilization. A further RFC will be required to
21-
stabilize coroutines/coroutines and will likely contain at least a few small
21+
stabilize coroutines and will likely contain at least a few small
2222
tweaks to the overall design.
2323

2424
[RFC 2033]: https://github.com/rust-lang/rfcs/pull/2033

0 commit comments

Comments
 (0)