Skip to content

Commit 8b4b208

Browse files
committed
Auto merge of rust-lang#111848 - Dylan-DPC:rollup-7jqydzg, r=Dylan-DPC
Rollup of 6 pull requests Successful merges: - rust-lang#111501 (MIR drive-by cleanups) - rust-lang#111609 (Mark internal functions and traits unsafe to reflect preconditions) - rust-lang#111612 (Give better error when collecting into `&[T]`) - rust-lang#111756 (Rename `{drop,forget}_{copy,ref}` lints to more consistent naming) - rust-lang#111843 (move lcnr to only review types stuff) - rust-lang#111844 (Migrate GUI colors test to original CSS color format) r? `@ghost` `@rustbot` modify labels: rollup
2 parents cfcde24 + ec372a1 commit 8b4b208

File tree

98 files changed

+376
-372
lines changed

Some content is hidden

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

98 files changed

+376
-372
lines changed

compiler/rustc_lint/messages.ftl

+4-4
Original file line numberDiff line numberDiff line change
@@ -521,18 +521,18 @@ lint_opaque_hidden_inferred_bound = opaque type `{$ty}` does not satisfy its ass
521521
522522
lint_opaque_hidden_inferred_bound_sugg = add this bound
523523
524-
lint_drop_ref = calls to `std::mem::drop` with a reference instead of an owned value does nothing
524+
lint_dropping_references = calls to `std::mem::drop` with a reference instead of an owned value does nothing
525525
.label = argument has type `{$arg_ty}`
526526
.note = use `let _ = ...` to ignore the expression or result
527527
528-
lint_drop_copy = calls to `std::mem::drop` with a value that implements `Copy` does nothing
528+
lint_dropping_copy_types = calls to `std::mem::drop` with a value that implements `Copy` does nothing
529529
.label = argument has type `{$arg_ty}`
530530
.note = use `let _ = ...` to ignore the expression or result
531531
532-
lint_forget_ref = calls to `std::mem::forget` with a reference instead of an owned value does nothing
532+
lint_forgetting_references = calls to `std::mem::forget` with a reference instead of an owned value does nothing
533533
.label = argument has type `{$arg_ty}`
534534
.note = use `let _ = ...` to ignore the expression or result
535535
536-
lint_forget_copy = calls to `std::mem::forget` with a value that implements `Copy` does nothing
536+
lint_forgetting_copy_types = calls to `std::mem::forget` with a value that implements `Copy` does nothing
537537
.label = argument has type `{$arg_ty}`
538538
.note = use `let _ = ...` to ignore the expression or result

compiler/rustc_lint/src/drop_forget_useless.rs

+13-13
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use crate::{
77
};
88

99
declare_lint! {
10-
/// The `drop_ref` lint checks for calls to `std::mem::drop` with a reference
10+
/// The `dropping_references` lint checks for calls to `std::mem::drop` with a reference
1111
/// instead of an owned value.
1212
///
1313
/// ### Example
@@ -29,13 +29,13 @@ declare_lint! {
2929
/// reference itself, which is a no-op. It will not call the `drop` method (from
3030
/// the `Drop` trait implementation) on the underlying referenced value, which
3131
/// is likely what was intended.
32-
pub DROP_REF,
32+
pub DROPPING_REFERENCES,
3333
Warn,
3434
"calls to `std::mem::drop` with a reference instead of an owned value"
3535
}
3636

3737
declare_lint! {
38-
/// The `forget_ref` lint checks for calls to `std::mem::forget` with a reference
38+
/// The `forgetting_references` lint checks for calls to `std::mem::forget` with a reference
3939
/// instead of an owned value.
4040
///
4141
/// ### Example
@@ -52,13 +52,13 @@ declare_lint! {
5252
/// Calling `forget` on a reference will only forget the
5353
/// reference itself, which is a no-op. It will not forget the underlying
5454
/// referenced value, which is likely what was intended.
55-
pub FORGET_REF,
55+
pub FORGETTING_REFERENCES,
5656
Warn,
5757
"calls to `std::mem::forget` with a reference instead of an owned value"
5858
}
5959

6060
declare_lint! {
61-
/// The `drop_copy` lint checks for calls to `std::mem::drop` with a value
61+
/// The `dropping_copy_types` lint checks for calls to `std::mem::drop` with a value
6262
/// that derives the Copy trait.
6363
///
6464
/// ### Example
@@ -76,13 +76,13 @@ declare_lint! {
7676
/// Calling `std::mem::drop` [does nothing for types that
7777
/// implement Copy](https://doc.rust-lang.org/std/mem/fn.drop.html), since the
7878
/// value will be copied and moved into the function on invocation.
79-
pub DROP_COPY,
79+
pub DROPPING_COPY_TYPES,
8080
Warn,
8181
"calls to `std::mem::drop` with a value that implements Copy"
8282
}
8383

8484
declare_lint! {
85-
/// The `forget_copy` lint checks for calls to `std::mem::forget` with a value
85+
/// The `forgetting_copy_types` lint checks for calls to `std::mem::forget` with a value
8686
/// that derives the Copy trait.
8787
///
8888
/// ### Example
@@ -104,12 +104,12 @@ declare_lint! {
104104
/// An alternative, but also valid, explanation is that Copy types do not
105105
/// implement the Drop trait, which means they have no destructors. Without a
106106
/// destructor, there is nothing for `std::mem::forget` to ignore.
107-
pub FORGET_COPY,
107+
pub FORGETTING_COPY_TYPES,
108108
Warn,
109109
"calls to `std::mem::forget` with a value that implements Copy"
110110
}
111111

112-
declare_lint_pass!(DropForgetUseless => [DROP_REF, FORGET_REF, DROP_COPY, FORGET_COPY]);
112+
declare_lint_pass!(DropForgetUseless => [DROPPING_REFERENCES, FORGETTING_REFERENCES, DROPPING_COPY_TYPES, FORGETTING_COPY_TYPES]);
113113

114114
impl<'tcx> LateLintPass<'tcx> for DropForgetUseless {
115115
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) {
@@ -123,16 +123,16 @@ impl<'tcx> LateLintPass<'tcx> for DropForgetUseless {
123123
let drop_is_single_call_in_arm = is_single_call_in_arm(cx, arg, expr);
124124
match fn_name {
125125
sym::mem_drop if arg_ty.is_ref() && !drop_is_single_call_in_arm => {
126-
cx.emit_spanned_lint(DROP_REF, expr.span, DropRefDiag { arg_ty, label: arg.span });
126+
cx.emit_spanned_lint(DROPPING_REFERENCES, expr.span, DropRefDiag { arg_ty, label: arg.span });
127127
},
128128
sym::mem_forget if arg_ty.is_ref() => {
129-
cx.emit_spanned_lint(FORGET_REF, expr.span, ForgetRefDiag { arg_ty, label: arg.span });
129+
cx.emit_spanned_lint(FORGETTING_REFERENCES, expr.span, ForgetRefDiag { arg_ty, label: arg.span });
130130
},
131131
sym::mem_drop if is_copy && !drop_is_single_call_in_arm => {
132-
cx.emit_spanned_lint(DROP_COPY, expr.span, DropCopyDiag { arg_ty, label: arg.span });
132+
cx.emit_spanned_lint(DROPPING_COPY_TYPES, expr.span, DropCopyDiag { arg_ty, label: arg.span });
133133
}
134134
sym::mem_forget if is_copy => {
135-
cx.emit_spanned_lint(FORGET_COPY, expr.span, ForgetCopyDiag { arg_ty, label: arg.span });
135+
cx.emit_spanned_lint(FORGETTING_COPY_TYPES, expr.span, ForgetCopyDiag { arg_ty, label: arg.span });
136136
}
137137
_ => return,
138138
};

compiler/rustc_lint/src/lints.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -662,9 +662,9 @@ pub struct ForLoopsOverFalliblesSuggestion<'a> {
662662
pub end_span: Span,
663663
}
664664

665-
// drop_ref.rs
665+
// drop_forget_useless.rs
666666
#[derive(LintDiagnostic)]
667-
#[diag(lint_drop_ref)]
667+
#[diag(lint_dropping_references)]
668668
#[note]
669669
pub struct DropRefDiag<'a> {
670670
pub arg_ty: Ty<'a>,
@@ -673,7 +673,7 @@ pub struct DropRefDiag<'a> {
673673
}
674674

675675
#[derive(LintDiagnostic)]
676-
#[diag(lint_drop_copy)]
676+
#[diag(lint_dropping_copy_types)]
677677
#[note]
678678
pub struct DropCopyDiag<'a> {
679679
pub arg_ty: Ty<'a>,
@@ -682,7 +682,7 @@ pub struct DropCopyDiag<'a> {
682682
}
683683

684684
#[derive(LintDiagnostic)]
685-
#[diag(lint_forget_ref)]
685+
#[diag(lint_forgetting_references)]
686686
#[note]
687687
pub struct ForgetRefDiag<'a> {
688688
pub arg_ty: Ty<'a>,
@@ -691,7 +691,7 @@ pub struct ForgetRefDiag<'a> {
691691
}
692692

693693
#[derive(LintDiagnostic)]
694-
#[diag(lint_forget_copy)]
694+
#[diag(lint_forgetting_copy_types)]
695695
#[note]
696696
pub struct ForgetCopyDiag<'a> {
697697
pub arg_ty: Ty<'a>,

compiler/rustc_middle/src/mir/syntax.rs

+23
Original file line numberDiff line numberDiff line change
@@ -749,6 +749,29 @@ pub enum TerminatorKind<'tcx> {
749749
},
750750
}
751751

752+
impl TerminatorKind<'_> {
753+
/// Returns a simple string representation of a `TerminatorKind` variant, independent of any
754+
/// values it might hold (e.g. `TerminatorKind::Call` always returns `"Call"`).
755+
pub const fn name(&self) -> &'static str {
756+
match self {
757+
TerminatorKind::Goto { .. } => "Goto",
758+
TerminatorKind::SwitchInt { .. } => "SwitchInt",
759+
TerminatorKind::Resume => "Resume",
760+
TerminatorKind::Terminate => "Terminate",
761+
TerminatorKind::Return => "Return",
762+
TerminatorKind::Unreachable => "Unreachable",
763+
TerminatorKind::Drop { .. } => "Drop",
764+
TerminatorKind::Call { .. } => "Call",
765+
TerminatorKind::Assert { .. } => "Assert",
766+
TerminatorKind::Yield { .. } => "Yield",
767+
TerminatorKind::GeneratorDrop => "GeneratorDrop",
768+
TerminatorKind::FalseEdge { .. } => "FalseEdge",
769+
TerminatorKind::FalseUnwind { .. } => "FalseUnwind",
770+
TerminatorKind::InlineAsm { .. } => "InlineAsm",
771+
}
772+
}
773+
}
774+
752775
/// Action to be taken when a stack unwind happens.
753776
#[derive(Copy, Clone, Debug, PartialEq, Eq, TyEncodable, TyDecodable, Hash, HashStable)]
754777
#[derive(TypeFoldable, TypeVisitable)]

compiler/rustc_mir_build/src/build/scope.rs

+15-12
Original file line numberDiff line numberDiff line change
@@ -644,24 +644,27 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
644644
}
645645
};
646646

647-
if let Some(destination) = destination {
648-
if let Some(value) = value {
647+
match (destination, value) {
648+
(Some(destination), Some(value)) => {
649649
debug!("stmt_expr Break val block_context.push(SubExpr)");
650650
self.block_context.push(BlockFrame::SubExpr);
651651
unpack!(block = self.expr_into_dest(destination, block, value));
652652
self.block_context.pop();
653-
} else {
653+
}
654+
(Some(destination), None) => {
654655
self.cfg.push_assign_unit(block, source_info, destination, self.tcx)
655656
}
656-
} else {
657-
assert!(value.is_none(), "`return` and `break` should have a destination");
658-
if self.tcx.sess.instrument_coverage() {
657+
(None, Some(_)) => {
658+
panic!("`return`, `become` and `break` with value and must have a destination")
659+
}
660+
(None, None) if self.tcx.sess.instrument_coverage() => {
659661
// Unlike `break` and `return`, which push an `Assign` statement to MIR, from which
660662
// a Coverage code region can be generated, `continue` needs no `Assign`; but
661663
// without one, the `InstrumentCoverage` MIR pass cannot generate a code region for
662664
// `continue`. Coverage will be missing unless we add a dummy `Assign` to MIR.
663665
self.add_dummy_assignment(span, block, source_info);
664666
}
667+
(None, None) => {}
665668
}
666669

667670
let region_scope = self.scopes.breakable_scopes[break_index].region_scope;
@@ -671,12 +674,12 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
671674
} else {
672675
self.scopes.breakable_scopes[break_index].continue_drops.as_mut().unwrap()
673676
};
674-
let mut drop_idx = ROOT_NODE;
675-
for scope in &self.scopes.scopes[scope_index + 1..] {
676-
for drop in &scope.drops {
677-
drop_idx = drops.add_drop(*drop, drop_idx);
678-
}
679-
}
677+
678+
let drop_idx = self.scopes.scopes[scope_index + 1..]
679+
.iter()
680+
.flat_map(|scope| &scope.drops)
681+
.fold(ROOT_NODE, |drop_idx, &drop| drops.add_drop(drop, drop_idx));
682+
680683
drops.add_entry(block, drop_idx);
681684

682685
// `build_drop_trees` doesn't have access to our source_info, so we

compiler/rustc_mir_build/src/thir/cx/expr.rs

+1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ impl<'tcx> Cx<'tcx> {
130130
ExprKind::Pointer { cast: PointerCast::Unsize, source: self.thir.exprs.push(expr) }
131131
}
132132
Adjust::Pointer(cast) => ExprKind::Pointer { cast, source: self.thir.exprs.push(expr) },
133+
Adjust::NeverToAny if adjustment.target.is_never() => return expr,
133134
Adjust::NeverToAny => ExprKind::NeverToAny { source: self.thir.exprs.push(expr) },
134135
Adjust::Deref(None) => {
135136
adjust_span(&mut expr);

compiler/rustc_mir_transform/src/coverage/debug.rs

+3-24
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ use rustc_middle::mir::spanview::{self, SpanViewable};
118118

119119
use rustc_data_structures::fx::FxHashMap;
120120
use rustc_middle::mir::coverage::*;
121-
use rustc_middle::mir::{self, BasicBlock, TerminatorKind};
121+
use rustc_middle::mir::{self, BasicBlock};
122122
use rustc_middle::ty::TyCtxt;
123123
use rustc_span::Span;
124124

@@ -796,36 +796,15 @@ fn bcb_to_string_sections<'tcx>(
796796
}
797797
let non_term_blocks = bcb_data.basic_blocks[0..len - 1]
798798
.iter()
799-
.map(|&bb| format!("{:?}: {}", bb, term_type(&mir_body[bb].terminator().kind)))
799+
.map(|&bb| format!("{:?}: {}", bb, mir_body[bb].terminator().kind.name()))
800800
.collect::<Vec<_>>();
801801
if non_term_blocks.len() > 0 {
802802
sections.push(non_term_blocks.join("\n"));
803803
}
804804
sections.push(format!(
805805
"{:?}: {}",
806806
bcb_data.basic_blocks.last().unwrap(),
807-
term_type(&bcb_data.terminator(mir_body).kind)
807+
bcb_data.terminator(mir_body).kind.name(),
808808
));
809809
sections
810810
}
811-
812-
/// Returns a simple string representation of a `TerminatorKind` variant, independent of any
813-
/// values it might hold.
814-
pub(super) fn term_type(kind: &TerminatorKind<'_>) -> &'static str {
815-
match kind {
816-
TerminatorKind::Goto { .. } => "Goto",
817-
TerminatorKind::SwitchInt { .. } => "SwitchInt",
818-
TerminatorKind::Resume => "Resume",
819-
TerminatorKind::Terminate => "Terminate",
820-
TerminatorKind::Return => "Return",
821-
TerminatorKind::Unreachable => "Unreachable",
822-
TerminatorKind::Drop { .. } => "Drop",
823-
TerminatorKind::Call { .. } => "Call",
824-
TerminatorKind::Assert { .. } => "Assert",
825-
TerminatorKind::Yield { .. } => "Yield",
826-
TerminatorKind::GeneratorDrop => "GeneratorDrop",
827-
TerminatorKind::FalseEdge { .. } => "FalseEdge",
828-
TerminatorKind::FalseUnwind { .. } => "FalseUnwind",
829-
TerminatorKind::InlineAsm { .. } => "InlineAsm",
830-
}
831-
}

compiler/rustc_mir_transform/src/coverage/spans.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use super::debug::term_type;
21
use super::graph::{BasicCoverageBlock, BasicCoverageBlockData, CoverageGraph, START_BCB};
32

43
use itertools::Itertools;
@@ -40,7 +39,7 @@ impl CoverageStatement {
4039
"{}: @{}.{}: {:?}",
4140
source_range_no_file(tcx, span),
4241
bb.index(),
43-
term_type(&term.kind),
42+
term.kind.name(),
4443
term.kind
4544
)
4645
}

compiler/rustc_mir_transform/src/coverage/tests.rs

+5-6
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
//! to: `rustc_span::create_default_session_globals_then(|| { test_here(); })`.
2626
2727
use super::counters;
28-
use super::debug;
2928
use super::graph;
3029
use super::spans;
3130

@@ -188,12 +187,12 @@ fn debug_basic_blocks(mir_body: &Body<'_>) -> String {
188187
| TerminatorKind::Goto { target }
189188
| TerminatorKind::InlineAsm { destination: Some(target), .. }
190189
| TerminatorKind::Yield { resume: target, .. } => {
191-
format!("{}{:?}:{} -> {:?}", sp, bb, debug::term_type(kind), target)
190+
format!("{}{:?}:{} -> {:?}", sp, bb, kind.name(), target)
192191
}
193192
TerminatorKind::SwitchInt { targets, .. } => {
194-
format!("{}{:?}:{} -> {:?}", sp, bb, debug::term_type(kind), targets)
193+
format!("{}{:?}:{} -> {:?}", sp, bb, kind.name(), targets)
195194
}
196-
_ => format!("{}{:?}:{}", sp, bb, debug::term_type(kind)),
195+
_ => format!("{}{:?}:{}", sp, bb, kind.name()),
197196
}
198197
})
199198
.collect::<Vec<_>>()
@@ -215,7 +214,7 @@ fn print_mir_graphviz(name: &str, mir_body: &Body<'_>) {
215214
" {:?} [label=\"{:?}: {}\"];\n{}",
216215
bb,
217216
bb,
218-
debug::term_type(&data.terminator().kind),
217+
data.terminator().kind.name(),
219218
mir_body
220219
.basic_blocks
221220
.successors(bb)
@@ -244,7 +243,7 @@ fn print_coverage_graphviz(
244243
" {:?} [label=\"{:?}: {}\"];\n{}",
245244
bcb,
246245
bcb,
247-
debug::term_type(&bcb_data.terminator(mir_body).kind),
246+
bcb_data.terminator(mir_body).kind.name(),
248247
basic_coverage_blocks
249248
.successors(bcb)
250249
.map(|successor| { format!(" {:?} -> {:?};", bcb, successor) })

compiler/rustc_trait_selection/src/traits/error_reporting/on_unimplemented.rs

+8
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,14 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
306306
}
307307
}
308308
}
309+
310+
// `&[{integral}]` - `FromIterator` needs that.
311+
if let ty::Ref(_, ref_ty, rustc_ast::Mutability::Not) = self_ty.kind()
312+
&& let ty::Slice(sty) = ref_ty.kind()
313+
&& sty.is_integral()
314+
{
315+
flags.push((sym::_Self, Some("&[{integral}]".to_owned())));
316+
}
309317
});
310318

311319
if let Ok(Some(command)) = OnUnimplementedDirective::of_item(self.tcx, def_id) {

0 commit comments

Comments
 (0)