Skip to content

Commit d0783e8

Browse files
author
The Miri Cronjob Bot
committed
Merge from rustc
2 parents c1cf0a3 + 2e7d9e9 commit d0783e8

File tree

339 files changed

+3196
-2377
lines changed

Some content is hidden

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

339 files changed

+3196
-2377
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -6332,9 +6332,9 @@ dependencies = [
63326332

63336333
[[package]]
63346334
name = "windows-bindgen"
6335-
version = "0.55.0"
6335+
version = "0.56.0"
63366336
source = "registry+https://github.com/rust-lang/crates.io-index"
6337-
checksum = "073ff8a486ebad239d557809d2cd5fe5e04ee1de29e09c6cd83fb0bae19b8a4c"
6337+
checksum = "a28e3ea6330cf17fdcdce8bf08d0549ce93769dca9bedc6c39c36c8c0e17db46"
63386338
dependencies = [
63396339
"proc-macro2",
63406340
"rayon",
@@ -6355,9 +6355,9 @@ dependencies = [
63556355

63566356
[[package]]
63576357
name = "windows-metadata"
6358-
version = "0.55.0"
6358+
version = "0.56.0"
63596359
source = "registry+https://github.com/rust-lang/crates.io-index"
6360-
checksum = "b602635050172a1fc57a35040d4d225baefc6098fefd97094919921d95961a7d"
6360+
checksum = "3993f7827fff10c454e3a24847075598c7c08108304b8b07943c2c73d78f3b34"
63616361

63626362
[[package]]
63636363
name = "windows-sys"

compiler/rustc_ast/src/ast.rs

+22-18
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ impl Pat {
568568
// In a type expression `_` is an inference variable.
569569
PatKind::Wild => TyKind::Infer,
570570
// An IDENT pattern with no binding mode would be valid as path to a type. E.g. `u32`.
571-
PatKind::Ident(BindingAnnotation::NONE, ident, None) => {
571+
PatKind::Ident(BindingMode::NONE, ident, None) => {
572572
TyKind::Path(None, Path::from_ident(*ident))
573573
}
574574
PatKind::Path(qself, path) => TyKind::Path(qself.clone(), path.clone()),
@@ -675,7 +675,7 @@ impl Pat {
675675
pub fn descr(&self) -> Option<String> {
676676
match &self.kind {
677677
PatKind::Wild => Some("_".to_string()),
678-
PatKind::Ident(BindingAnnotation::NONE, ident, None) => Some(format!("{ident}")),
678+
PatKind::Ident(BindingMode::NONE, ident, None) => Some(format!("{ident}")),
679679
PatKind::Ref(pat, mutbl) => pat.descr().map(|d| format!("&{}{d}", mutbl.prefix_str())),
680680
_ => None,
681681
}
@@ -707,14 +707,25 @@ pub enum ByRef {
707707
No,
708708
}
709709

710-
/// Explicit binding annotations given in the HIR for a binding. Note
711-
/// that this is not the final binding *mode* that we infer after type
712-
/// inference.
710+
impl ByRef {
711+
pub fn cap_ref_mutability(mut self, mutbl: Mutability) -> Self {
712+
if let ByRef::Yes(old_mutbl) = &mut self {
713+
*old_mutbl = cmp::min(*old_mutbl, mutbl);
714+
}
715+
self
716+
}
717+
}
718+
719+
/// The mode of a binding (`mut`, `ref mut`, etc).
720+
/// Used for both the explicit binding annotations given in the HIR for a binding
721+
/// and the final binding mode that we infer after type inference/match ergonomics.
722+
/// `.0` is the by-reference mode (`ref`, `ref mut`, or by value),
723+
/// `.1` is the mutability of the binding.
713724
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
714725
#[derive(Encodable, Decodable, HashStable_Generic)]
715-
pub struct BindingAnnotation(pub ByRef, pub Mutability);
726+
pub struct BindingMode(pub ByRef, pub Mutability);
716727

717-
impl BindingAnnotation {
728+
impl BindingMode {
718729
pub const NONE: Self = Self(ByRef::No, Mutability::Not);
719730
pub const REF: Self = Self(ByRef::Yes(Mutability::Not), Mutability::Not);
720731
pub const MUT: Self = Self(ByRef::No, Mutability::Mut);
@@ -732,13 +743,6 @@ impl BindingAnnotation {
732743
Self::MUT_REF_MUT => "mut ref mut ",
733744
}
734745
}
735-
736-
pub fn cap_ref_mutability(mut self, mutbl: Mutability) -> Self {
737-
if let ByRef::Yes(old_mutbl) = &mut self.0 {
738-
*old_mutbl = cmp::min(*old_mutbl, mutbl);
739-
}
740-
self
741-
}
742746
}
743747

744748
#[derive(Clone, Encodable, Decodable, Debug)]
@@ -769,7 +773,7 @@ pub enum PatKind {
769773
/// or a unit struct/variant pattern, or a const pattern (in the last two cases the third
770774
/// field must be `None`). Disambiguation cannot be done with parser alone, so it happens
771775
/// during name resolution.
772-
Ident(BindingAnnotation, Ident, Option<P<Pat>>),
776+
Ident(BindingMode, Ident, Option<P<Pat>>),
773777

774778
/// A struct or struct variant pattern (e.g., `Variant {x, y, ..}`).
775779
Struct(Option<P<QSelf>>, Path, ThinVec<PatField>, PatFieldsRest),
@@ -2382,7 +2386,7 @@ pub type ExplicitSelf = Spanned<SelfKind>;
23822386
impl Param {
23832387
/// Attempts to cast parameter to `ExplicitSelf`.
23842388
pub fn to_self(&self) -> Option<ExplicitSelf> {
2385-
if let PatKind::Ident(BindingAnnotation(ByRef::No, mutbl), ident, _) = self.pat.kind {
2389+
if let PatKind::Ident(BindingMode(ByRef::No, mutbl), ident, _) = self.pat.kind {
23862390
if ident.name == kw::SelfLower {
23872391
return match self.ty.kind {
23882392
TyKind::ImplicitSelf => Some(respan(self.pat.span, SelfKind::Value(mutbl))),
@@ -2434,7 +2438,7 @@ impl Param {
24342438
attrs,
24352439
pat: P(Pat {
24362440
id: DUMMY_NODE_ID,
2437-
kind: PatKind::Ident(BindingAnnotation(ByRef::No, mutbl), eself_ident, None),
2441+
kind: PatKind::Ident(BindingMode(ByRef::No, mutbl), eself_ident, None),
24382442
span,
24392443
tokens: None,
24402444
}),
@@ -3363,7 +3367,7 @@ impl TryFrom<ItemKind> for ForeignItemKind {
33633367
pub type ForeignItem = Item<ForeignItemKind>;
33643368

33653369
// Some nodes are used a lot. Make sure they don't unintentionally get bigger.
3366-
#[cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_pointer_width = "64"))]
3370+
#[cfg(target_pointer_width = "64")]
33673371
mod size_asserts {
33683372
use super::*;
33693373
use rustc_data_structures::static_assert_size;

compiler/rustc_ast/src/token.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ where
10231023
}
10241024

10251025
// Some types are used a lot. Make sure they don't unintentionally get bigger.
1026-
#[cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_pointer_width = "64"))]
1026+
#[cfg(target_pointer_width = "64")]
10271027
mod size_asserts {
10281028
use super::*;
10291029
use rustc_data_structures::static_assert_size;

compiler/rustc_ast/src/tokenstream.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ impl DelimSpacing {
768768
}
769769

770770
// Some types are used a lot. Make sure they don't unintentionally get bigger.
771-
#[cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_pointer_width = "64"))]
771+
#[cfg(target_pointer_width = "64")]
772772
mod size_asserts {
773773
use super::*;
774774
use rustc_data_structures::static_assert_size;

compiler/rustc_ast_lowering/src/delegation.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
178178
let pat_id = self.lower_node_id(pat_node_id);
179179
let pat = self.arena.alloc(hir::Pat {
180180
hir_id: pat_id,
181-
kind: hir::PatKind::Binding(hir::BindingAnnotation::NONE, pat_id, Ident::empty(), None),
181+
kind: hir::PatKind::Binding(hir::BindingMode::NONE, pat_id, Ident::empty(), None),
182182
span: ty.span,
183183
default_binding_modes: false,
184184
});

compiler/rustc_ast_lowering/src/expr.rs

+4-7
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
643643
let (pat, task_context_hid) = self.pat_ident_binding_mode(
644644
span,
645645
Ident::with_dummy_span(sym::_task_context),
646-
hir::BindingAnnotation::MUT,
646+
hir::BindingMode::MUT,
647647
);
648648
let param = hir::Param {
649649
hir_id: self.next_id(),
@@ -805,11 +805,8 @@ impl<'hir> LoweringContext<'_, 'hir> {
805805
// debuggers and debugger extensions expect it to be called `__awaitee`. They use
806806
// this name to identify what is being awaited by a suspended async functions.
807807
let awaitee_ident = Ident::with_dummy_span(sym::__awaitee);
808-
let (awaitee_pat, awaitee_pat_hid) = self.pat_ident_binding_mode(
809-
gen_future_span,
810-
awaitee_ident,
811-
hir::BindingAnnotation::MUT,
812-
);
808+
let (awaitee_pat, awaitee_pat_hid) =
809+
self.pat_ident_binding_mode(gen_future_span, awaitee_ident, hir::BindingMode::MUT);
813810

814811
let task_context_ident = Ident::with_dummy_span(sym::_task_context);
815812

@@ -1648,7 +1645,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
16481645
// `mut iter`
16491646
let iter = Ident::with_dummy_span(sym::iter);
16501647
let (iter_pat, iter_pat_nid) =
1651-
self.pat_ident_binding_mode(head_span, iter, hir::BindingAnnotation::MUT);
1648+
self.pat_ident_binding_mode(head_span, iter, hir::BindingMode::MUT);
16521649

16531650
let match_expr = {
16541651
let iter = self.expr_ident(head_span, iter, iter_pat_nid);

compiler/rustc_ast_lowering/src/item.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -1179,9 +1179,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
11791179
// Check if this is a binding pattern, if so, we can optimize and avoid adding a
11801180
// `let <pat> = __argN;` statement. In this case, we do not rename the parameter.
11811181
let (ident, is_simple_parameter) = match parameter.pat.kind {
1182-
hir::PatKind::Binding(hir::BindingAnnotation(ByRef::No, _), _, ident, _) => {
1183-
(ident, true)
1184-
}
1182+
hir::PatKind::Binding(hir::BindingMode(ByRef::No, _), _, ident, _) => (ident, true),
11851183
// For `ref mut` or wildcard arguments, we can't reuse the binding, but
11861184
// we can keep the same name for the parameter.
11871185
// This lets rustdoc render it correctly in documentation.
@@ -1244,7 +1242,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
12441242
// because the user may have specified a `ref mut` binding in the next
12451243
// statement.
12461244
let (move_pat, move_id) =
1247-
self.pat_ident_binding_mode(desugared_span, ident, hir::BindingAnnotation::MUT);
1245+
self.pat_ident_binding_mode(desugared_span, ident, hir::BindingMode::MUT);
12481246
let move_expr = self.expr_ident(desugared_span, ident, new_parameter_id);
12491247
let move_stmt = self.stmt_let_pat(
12501248
None,

compiler/rustc_ast_lowering/src/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1895,7 +1895,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
18951895
implicit_self: decl.inputs.get(0).map_or(hir::ImplicitSelfKind::None, |arg| {
18961896
let is_mutable_pat = matches!(
18971897
arg.pat.kind,
1898-
PatKind::Ident(hir::BindingAnnotation(_, Mutability::Mut), ..)
1898+
PatKind::Ident(hir::BindingMode(_, Mutability::Mut), ..)
18991899
);
19001900

19011901
match &arg.ty.kind {
@@ -2478,18 +2478,18 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
24782478
}
24792479

24802480
fn pat_ident(&mut self, span: Span, ident: Ident) -> (&'hir hir::Pat<'hir>, HirId) {
2481-
self.pat_ident_binding_mode(span, ident, hir::BindingAnnotation::NONE)
2481+
self.pat_ident_binding_mode(span, ident, hir::BindingMode::NONE)
24822482
}
24832483

24842484
fn pat_ident_mut(&mut self, span: Span, ident: Ident) -> (hir::Pat<'hir>, HirId) {
2485-
self.pat_ident_binding_mode_mut(span, ident, hir::BindingAnnotation::NONE)
2485+
self.pat_ident_binding_mode_mut(span, ident, hir::BindingMode::NONE)
24862486
}
24872487

24882488
fn pat_ident_binding_mode(
24892489
&mut self,
24902490
span: Span,
24912491
ident: Ident,
2492-
bm: hir::BindingAnnotation,
2492+
bm: hir::BindingMode,
24932493
) -> (&'hir hir::Pat<'hir>, HirId) {
24942494
let (pat, hir_id) = self.pat_ident_binding_mode_mut(span, ident, bm);
24952495
(self.arena.alloc(pat), hir_id)
@@ -2499,7 +2499,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
24992499
&mut self,
25002500
span: Span,
25012501
ident: Ident,
2502-
bm: hir::BindingAnnotation,
2502+
bm: hir::BindingMode,
25032503
) -> (hir::Pat<'hir>, HirId) {
25042504
let hir_id = self.next_id();
25052505

compiler/rustc_ast_lowering/src/pat.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
243243
fn lower_pat_ident(
244244
&mut self,
245245
p: &Pat,
246-
annotation: BindingAnnotation,
246+
annotation: BindingMode,
247247
ident: Ident,
248248
lower_sub: impl FnOnce(&mut Self) -> Option<&'hir hir::Pat<'hir>>,
249249
) -> hir::PatKind<'hir> {

compiler/rustc_ast_passes/src/ast_validation.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,8 @@ impl<'a> AstValidator<'a> {
276276
fn check_decl_no_pat(decl: &FnDecl, mut report_err: impl FnMut(Span, Option<Ident>, bool)) {
277277
for Param { pat, .. } in &decl.inputs {
278278
match pat.kind {
279-
PatKind::Ident(BindingAnnotation::NONE, _, None) | PatKind::Wild => {}
280-
PatKind::Ident(BindingAnnotation::MUT, ident, None) => {
279+
PatKind::Ident(BindingMode::NONE, _, None) | PatKind::Wild => {}
280+
PatKind::Ident(BindingMode::MUT, ident, None) => {
281281
report_err(pat.span, Some(ident), true)
282282
}
283283
_ => report_err(pat.span, None, false),

compiler/rustc_ast_pretty/src/pprust/state.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use rustc_ast::util::classify;
1717
use rustc_ast::util::comments::{Comment, CommentStyle};
1818
use rustc_ast::util::parser;
1919
use rustc_ast::{self as ast, AttrArgs, AttrArgsEq, BlockCheckMode, PatKind};
20-
use rustc_ast::{attr, BindingAnnotation, ByRef, DelimArgs, RangeEnd, RangeSyntax, Term};
20+
use rustc_ast::{attr, BindingMode, ByRef, DelimArgs, RangeEnd, RangeSyntax, Term};
2121
use rustc_ast::{GenericArg, GenericBound, SelfKind};
2222
use rustc_ast::{InlineAsmOperand, InlineAsmRegOrRegClass};
2323
use rustc_ast::{InlineAsmOptions, InlineAsmTemplatePiece};
@@ -1558,7 +1558,7 @@ impl<'a> State<'a> {
15581558
match &pat.kind {
15591559
PatKind::Wild => self.word("_"),
15601560
PatKind::Never => self.word("!"),
1561-
PatKind::Ident(BindingAnnotation(by_ref, mutbl), ident, sub) => {
1561+
PatKind::Ident(BindingMode(by_ref, mutbl), ident, sub) => {
15621562
if mutbl.is_mut() {
15631563
self.word_nbsp("mut");
15641564
}
@@ -1654,7 +1654,7 @@ impl<'a> State<'a> {
16541654
if mutbl.is_mut() {
16551655
self.word("mut ");
16561656
}
1657-
if let PatKind::Ident(ast::BindingAnnotation::MUT, ..) = inner.kind {
1657+
if let PatKind::Ident(ast::BindingMode::MUT, ..) = inner.kind {
16581658
self.popen();
16591659
self.print_pat(inner);
16601660
self.pclose();

compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
377377
if p.span == self.expr_span {
378378
self.pat = Some(p);
379379
}
380-
if let hir::PatKind::Binding(hir::BindingAnnotation::NONE, _, i, sub) = p.kind {
380+
if let hir::PatKind::Binding(hir::BindingMode::NONE, _, i, sub) = p.kind {
381381
if i.span == self.expr_span || p.span == self.expr_span {
382382
self.pat = Some(p);
383383
}

compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use core::ops::ControlFlow;
55
use hir::{ExprKind, Param};
66
use rustc_errors::{Applicability, Diag};
77
use rustc_hir::intravisit::Visitor;
8-
use rustc_hir::{self as hir, BindingAnnotation, ByRef, Node};
8+
use rustc_hir::{self as hir, BindingMode, ByRef, Node};
99
use rustc_infer::traits;
1010
use rustc_middle::mir::{Mutability, Place, PlaceRef, ProjectionElem};
1111
use rustc_middle::ty::{self, InstanceDef, ToPredicate, Ty, TyCtxt};
@@ -303,7 +303,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
303303
{
304304
match *decl.local_info() {
305305
LocalInfo::User(BindingForm::Var(mir::VarBindingForm {
306-
binding_mode: BindingAnnotation(ByRef::No, Mutability::Not),
306+
binding_mode: BindingMode(ByRef::No, Mutability::Not),
307307
opt_ty_info: Some(sp),
308308
opt_match_place: _,
309309
pat_span: _,
@@ -398,7 +398,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
398398
let upvar_hir_id = captured_place.get_root_variable();
399399

400400
if let Node::Pat(pat) = self.infcx.tcx.hir_node(upvar_hir_id)
401-
&& let hir::PatKind::Binding(hir::BindingAnnotation::NONE, _, upvar_ident, _) =
401+
&& let hir::PatKind::Binding(hir::BindingMode::NONE, _, upvar_ident, _) =
402402
pat.kind
403403
{
404404
if upvar_ident.name == kw::SelfLower {
@@ -729,7 +729,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
729729
debug!("local_decl: {:?}", local_decl);
730730
let pat_span = match *local_decl.local_info() {
731731
LocalInfo::User(BindingForm::Var(mir::VarBindingForm {
732-
binding_mode: BindingAnnotation(ByRef::No, Mutability::Not),
732+
binding_mode: BindingMode(ByRef::No, Mutability::Not),
733733
opt_ty_info: _,
734734
opt_match_place: _,
735735
pat_span,
@@ -1086,7 +1086,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
10861086
}
10871087

10881088
LocalInfo::User(mir::BindingForm::Var(mir::VarBindingForm {
1089-
binding_mode: BindingAnnotation(ByRef::No, _),
1089+
binding_mode: BindingMode(ByRef::No, _),
10901090
opt_ty_info,
10911091
..
10921092
})) => {
@@ -1154,7 +1154,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
11541154
}
11551155

11561156
LocalInfo::User(mir::BindingForm::Var(mir::VarBindingForm {
1157-
binding_mode: BindingAnnotation(ByRef::Yes(_), _),
1157+
binding_mode: BindingMode(ByRef::Yes(_), _),
11581158
..
11591159
})) => {
11601160
let pattern_span: Span = local_decl.source_info.span;
@@ -1356,7 +1356,7 @@ pub fn mut_borrow_of_mutable_ref(local_decl: &LocalDecl<'_>, local_name: Option<
13561356
match *local_decl.local_info() {
13571357
// Check if mutably borrowing a mutable reference.
13581358
LocalInfo::User(mir::BindingForm::Var(mir::VarBindingForm {
1359-
binding_mode: BindingAnnotation(ByRef::No, Mutability::Not),
1359+
binding_mode: BindingMode(ByRef::No, Mutability::Not),
13601360
..
13611361
})) => matches!(local_decl.ty.kind(), ty::Ref(_, _, hir::Mutability::Mut)),
13621362
LocalInfo::User(mir::BindingForm::ImplicitSelf(kind)) => {

compiler/rustc_builtin_macros/src/deriving/generic/mod.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub use SubstructureFields::*;
180180
use crate::{deriving, errors};
181181
use rustc_ast::ptr::P;
182182
use rustc_ast::{
183-
self as ast, BindingAnnotation, ByRef, EnumDef, Expr, GenericArg, GenericParamKind, Generics,
183+
self as ast, BindingMode, ByRef, EnumDef, Expr, GenericArg, GenericParamKind, Generics,
184184
Mutability, PatKind, TyKind, VariantData,
185185
};
186186
use rustc_attr as attr;
@@ -1479,11 +1479,7 @@ impl<'a> TraitDef<'a> {
14791479
struct_field.ident,
14801480
cx.pat(
14811481
path.span,
1482-
PatKind::Ident(
1483-
BindingAnnotation(by_ref, Mutability::Not),
1484-
path,
1485-
None,
1486-
),
1482+
PatKind::Ident(BindingMode(by_ref, Mutability::Not), path, None),
14871483
),
14881484
)
14891485
});

compiler/rustc_codegen_llvm/src/back/archive.rs

+1
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,7 @@ impl<'a> LlvmArchiveBuilder<'a> {
415415
members.as_ptr() as *const &_,
416416
true,
417417
kind,
418+
self.sess.target.arch == "arm64ec",
418419
);
419420
let ret = if r.into_result().is_err() {
420421
let err = llvm::LLVMRustGetLastError();

0 commit comments

Comments
 (0)