Skip to content

Commit 58268ff

Browse files
committed
Auto merge of rust-lang#89854 - cuviper:beta-next, r=Mark-Simulacrum
[beta] backports - 2229: Consume IfLet expr rust-lang#89282 - Wrapper for -Z gcc-ld=lld to invoke rust-lld with the correct flavor rust-lang#89288 - Fix unsound optimization with explicit variant discriminants rust-lang#89489 - Fix stabilization version for bindings_after_at rust-lang#89605 - Turn vtable_allocation() into a query rust-lang#89619 - Revert "Stabilize Iterator::intersperse()" rust-lang#89638 - Ignore type of projections for upvar capturing rust-lang#89648 - ~~Add Poll::ready and~~ revert stabilization of task::ready! rust-lang#89651 - CI: Use mirror for libisl downloads for more docker dist builds rust-lang#89661 - Use correct edition for panic in [debug_]assert!(). rust-lang#89622 - Switch to our own mirror of libisl plus ct-ng oldconfig fixes rust-lang#89599 - Emit item no type error even if type inference fails rust-lang#89585 - Revert enum discriminants rust-lang#89884
2 parents e6e620e + 673a223 commit 58268ff

File tree

79 files changed

+932
-199
lines changed

Some content is hidden

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

79 files changed

+932
-199
lines changed

Cargo.lock

+4
Original file line numberDiff line numberDiff line change
@@ -1966,6 +1966,10 @@ dependencies = [
19661966
"walkdir",
19671967
]
19681968

1969+
[[package]]
1970+
name = "lld-wrapper"
1971+
version = "0.1.0"
1972+
19691973
[[package]]
19701974
name = "lock_api"
19711975
version = "0.4.1"

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ members = [
3535
"src/tools/expand-yaml-anchors",
3636
"src/tools/jsondocck",
3737
"src/tools/html-checker",
38+
"src/tools/lld-wrapper",
3839
]
3940

4041
exclude = [

compiler/rustc_ast_passes/src/feature_gate.rs

+62-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
use rustc_ast as ast;
22
use rustc_ast::visit::{self, AssocCtxt, FnCtxt, FnKind, Visitor};
33
use rustc_ast::{AssocTyConstraint, AssocTyConstraintKind, NodeId};
4-
use rustc_ast::{PatKind, RangeEnd};
4+
use rustc_ast::{PatKind, RangeEnd, VariantData};
55
use rustc_errors::struct_span_err;
66
use rustc_feature::{AttributeGate, BUILTIN_ATTRIBUTE_MAP};
77
use rustc_feature::{Features, GateIssue};
8-
use rustc_session::parse::feature_err_issue;
8+
use rustc_session::parse::{feature_err, feature_err_issue};
99
use rustc_session::Session;
1010
use rustc_span::source_map::Spanned;
1111
use rustc_span::symbol::sym;
@@ -218,6 +218,46 @@ impl<'a> PostExpansionVisitor<'a> {
218218
}
219219
}
220220

221+
fn maybe_report_invalid_custom_discriminants(&self, variants: &[ast::Variant]) {
222+
let has_fields = variants.iter().any(|variant| match variant.data {
223+
VariantData::Tuple(..) | VariantData::Struct(..) => true,
224+
VariantData::Unit(..) => false,
225+
});
226+
227+
let discriminant_spans = variants
228+
.iter()
229+
.filter(|variant| match variant.data {
230+
VariantData::Tuple(..) | VariantData::Struct(..) => false,
231+
VariantData::Unit(..) => true,
232+
})
233+
.filter_map(|variant| variant.disr_expr.as_ref().map(|c| c.value.span))
234+
.collect::<Vec<_>>();
235+
236+
if !discriminant_spans.is_empty() && has_fields {
237+
let mut err = feature_err(
238+
&self.sess.parse_sess,
239+
sym::arbitrary_enum_discriminant,
240+
discriminant_spans.clone(),
241+
"custom discriminant values are not allowed in enums with tuple or struct variants",
242+
);
243+
for sp in discriminant_spans {
244+
err.span_label(sp, "disallowed custom discriminant");
245+
}
246+
for variant in variants.iter() {
247+
match &variant.data {
248+
VariantData::Struct(..) => {
249+
err.span_label(variant.span, "struct variant defined here");
250+
}
251+
VariantData::Tuple(..) => {
252+
err.span_label(variant.span, "tuple variant defined here");
253+
}
254+
VariantData::Unit(..) => {}
255+
}
256+
}
257+
err.emit();
258+
}
259+
}
260+
221261
fn check_gat(&self, generics: &ast::Generics, span: Span) {
222262
if !generics.params.is_empty() {
223263
gate_feature_post!(
@@ -362,6 +402,26 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
362402
}
363403
}
364404

405+
ast::ItemKind::Enum(ast::EnumDef { ref variants, .. }, ..) => {
406+
for variant in variants {
407+
match (&variant.data, &variant.disr_expr) {
408+
(ast::VariantData::Unit(..), _) => {}
409+
(_, Some(disr_expr)) => gate_feature_post!(
410+
&self,
411+
arbitrary_enum_discriminant,
412+
disr_expr.value.span,
413+
"discriminants on non-unit variants are experimental"
414+
),
415+
_ => {}
416+
}
417+
}
418+
419+
let has_feature = self.features.arbitrary_enum_discriminant;
420+
if !has_feature && !i.span.allows_unstable(sym::arbitrary_enum_discriminant) {
421+
self.maybe_report_invalid_custom_discriminants(&variants);
422+
}
423+
}
424+
365425
ast::ItemKind::Impl(box ast::ImplKind {
366426
polarity, defaultness, ref of_trait, ..
367427
}) => {

compiler/rustc_builtin_macros/src/assert.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
use rustc_errors::{Applicability, DiagnosticBuilder};
2-
1+
use crate::panic::use_panic_2021;
32
use rustc_ast::ptr::P;
43
use rustc_ast::token;
54
use rustc_ast::tokenstream::{DelimSpan, TokenStream};
65
use rustc_ast::{self as ast, *};
76
use rustc_ast_pretty::pprust;
7+
use rustc_errors::{Applicability, DiagnosticBuilder};
88
use rustc_expand::base::*;
99
use rustc_parse::parser::Parser;
1010
use rustc_span::symbol::{sym, Ident, Symbol};
@@ -28,7 +28,7 @@ pub fn expand_assert<'cx>(
2828
let sp = cx.with_call_site_ctxt(span);
2929

3030
let panic_call = if let Some(tokens) = custom_message {
31-
let path = if span.rust_2021() {
31+
let path = if use_panic_2021(span) {
3232
// On edition 2021, we always call `$crate::panic::panic_2021!()`.
3333
Path {
3434
span: sp,

compiler/rustc_builtin_macros/src/panic.rs

+18-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ use rustc_ast::ptr::P;
22
use rustc_ast::tokenstream::{DelimSpan, TokenStream};
33
use rustc_ast::*;
44
use rustc_expand::base::*;
5+
use rustc_span::edition::Edition;
56
use rustc_span::symbol::sym;
67
use rustc_span::Span;
78

@@ -19,7 +20,7 @@ pub fn expand_panic<'cx>(
1920
sp: Span,
2021
tts: TokenStream,
2122
) -> Box<dyn MacResult + 'cx> {
22-
let panic = if sp.rust_2021() { sym::panic_2021 } else { sym::panic_2015 };
23+
let panic = if use_panic_2021(sp) { sym::panic_2021 } else { sym::panic_2015 };
2324

2425
let sp = cx.with_call_site_ctxt(sp);
2526

@@ -46,3 +47,19 @@ pub fn expand_panic<'cx>(
4647
),
4748
)
4849
}
50+
51+
pub fn use_panic_2021(mut span: Span) -> bool {
52+
// To determine the editon, we check the first span up the expansion
53+
// stack that does not have #[allow_internal_unstable(edition_panic)].
54+
// (To avoid using the edition of e.g. the assert!() or debug_assert!() definition.)
55+
loop {
56+
let expn = span.ctxt().outer_expn_data();
57+
if let Some(features) = expn.allow_internal_unstable {
58+
if features.iter().any(|&f| f == sym::edition_panic) {
59+
span = expn.call_site;
60+
continue;
61+
}
62+
}
63+
break expn.edition >= Edition::Edition2021;
64+
}
65+
}

compiler/rustc_codegen_cranelift/src/vtable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ pub(crate) fn get_vtable<'tcx>(
6868
ty: Ty<'tcx>,
6969
trait_ref: Option<ty::PolyExistentialTraitRef<'tcx>>,
7070
) -> Value {
71-
let alloc_id = fx.tcx.vtable_allocation(ty, trait_ref);
71+
let alloc_id = fx.tcx.vtable_allocation((ty, trait_ref));
7272
let data_id =
7373
data_id_for_alloc_id(&mut fx.constants_cx, &mut *fx.module, alloc_id, Mutability::Not);
7474
let local_data_id = fx.module.declare_data_in_func(data_id, &mut fx.bcx.func);

compiler/rustc_codegen_ssa/src/meth.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub fn get_vtable<'tcx, Cx: CodegenMethods<'tcx>>(
7272
return val;
7373
}
7474

75-
let vtable_alloc_id = tcx.vtable_allocation(ty, trait_ref);
75+
let vtable_alloc_id = tcx.vtable_allocation((ty, trait_ref));
7676
let vtable_allocation = tcx.global_alloc(vtable_alloc_id).unwrap_memory();
7777
let vtable_const = cx.const_data_from_alloc(vtable_allocation);
7878
let align = cx.data_layout().pointer_align.abi;

compiler/rustc_error_codes/src/error_codes/E0732.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ An `enum` with a discriminant must specify a `#[repr(inttype)]`.
33
Erroneous code example:
44

55
```compile_fail,E0732
6+
#![feature(arbitrary_enum_discriminant)]
7+
68
enum Enum { // error!
79
Unit = 1,
810
Tuple() = 2,
@@ -18,6 +20,8 @@ is a well-defined way to extract a variant's discriminant from a value;
1820
for instance:
1921

2022
```
23+
#![feature(arbitrary_enum_discriminant)]
24+
2125
#[repr(u8)]
2226
enum Enum {
2327
Unit = 3,

compiler/rustc_feature/src/accepted.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,11 @@ declare_features! (
289289
(accepted, member_constraints, "1.54.0", Some(61997), None),
290290
/// Allows bindings in the subpattern of a binding pattern.
291291
/// For example, you can write `x @ Some(y)`.
292-
(accepted, bindings_after_at, "1.54.0", Some(65490), None),
292+
(accepted, bindings_after_at, "1.56.0", Some(65490), None),
293293
/// Allows calling `transmute` in const fn
294294
(accepted, const_fn_transmute, "1.56.0", Some(53605), None),
295295
/// Allows accessing fields of unions inside `const` functions.
296296
(accepted, const_fn_union, "1.56.0", Some(51909), None),
297-
/// Allows explicit discriminants on non-unit enum variants.
298-
(accepted, arbitrary_enum_discriminant, "1.56.0", Some(60553), None),
299297

300298
// -------------------------------------------------------------------------
301299
// feature-group-end: accepted features

compiler/rustc_feature/src/active.rs

+3
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,9 @@ declare_features! (
468468
/// Allows #[repr(transparent)] on unions (RFC 2645).
469469
(active, transparent_unions, "1.37.0", Some(60405), None),
470470

471+
/// Allows explicit discriminants on non-unit enum variants.
472+
(active, arbitrary_enum_discriminant, "1.37.0", Some(60553), None),
473+
471474
/// Allows `async || body` closures.
472475
(active, async_closure, "1.37.0", Some(62290), None),
473476

compiler/rustc_middle/src/query/mod.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,13 @@ rustc_queries! {
10061006
key.1, key.0 }
10071007
}
10081008

1009+
query vtable_allocation(key: (Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>)) -> mir::interpret::AllocId {
1010+
desc { |tcx| "vtable const allocation for <{} as {}>",
1011+
key.0,
1012+
key.1.map(|trait_ref| format!("{}", trait_ref)).unwrap_or("_".to_owned())
1013+
}
1014+
}
1015+
10091016
query codegen_fulfill_obligation(
10101017
key: (ty::ParamEnv<'tcx>, ty::PolyTraitRef<'tcx>)
10111018
) -> Result<ImplSource<'tcx, ()>, ErrorReported> {

compiler/rustc_middle/src/ty/context.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use crate::middle;
1010
use crate::middle::cstore::EncodedMetadata;
1111
use crate::middle::resolve_lifetime::{self, LifetimeScopeForPath, ObjectLifetimeDefault};
1212
use crate::middle::stability;
13-
use crate::mir::interpret::{self, AllocId, Allocation, ConstValue, Scalar};
13+
use crate::mir::interpret::{self, Allocation, ConstValue, Scalar};
1414
use crate::mir::{Body, Field, Local, Place, PlaceElem, ProjectionKind, Promoted};
1515
use crate::thir::Thir;
1616
use crate::traits;
@@ -1062,9 +1062,6 @@ pub struct GlobalCtxt<'tcx> {
10621062
layout_interner: ShardedHashMap<&'tcx Layout, ()>,
10631063

10641064
output_filenames: Arc<OutputFilenames>,
1065-
1066-
pub(super) vtables_cache:
1067-
Lock<FxHashMap<(Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>), AllocId>>,
10681065
}
10691066

10701067
impl<'tcx> TyCtxt<'tcx> {
@@ -1212,7 +1209,6 @@ impl<'tcx> TyCtxt<'tcx> {
12121209
const_stability_interner: Default::default(),
12131210
alloc_map: Lock::new(interpret::AllocMap::new()),
12141211
output_filenames: Arc::new(output_filenames),
1215-
vtables_cache: Default::default(),
12161212
}
12171213
}
12181214

compiler/rustc_middle/src/ty/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2046,6 +2046,7 @@ pub fn provide(providers: &mut ty::query::Providers) {
20462046
trait_impls_of: trait_def::trait_impls_of_provider,
20472047
type_uninhabited_from: inhabitedness::type_uninhabited_from,
20482048
const_param_default: consts::const_param_default,
2049+
vtable_allocation: vtable::vtable_allocation_provider,
20492050
..*providers
20502051
};
20512052
}

compiler/rustc_middle/src/ty/print/pretty.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2177,6 +2177,7 @@ forward_display_to_print! {
21772177
// because `for<'tcx>` isn't possible yet.
21782178
ty::Binder<'tcx, ty::ExistentialPredicate<'tcx>>,
21792179
ty::Binder<'tcx, ty::TraitRef<'tcx>>,
2180+
ty::Binder<'tcx, ty::ExistentialTraitRef<'tcx>>,
21802181
ty::Binder<'tcx, TraitRefPrintOnlyTraitPath<'tcx>>,
21812182
ty::Binder<'tcx, ty::FnSig<'tcx>>,
21822183
ty::Binder<'tcx, ty::TraitPredicate<'tcx>>,

0 commit comments

Comments
 (0)