use alloc::vec::Vec;
use alloc::string::String;
use crate::rustc_data_structures::iter_ext::IterExt as _;
use crate::rustc_ast::visit::{self, AssocCtxt, FnKind, Visitor};
use crate::rustc_ast::{self as ast, AttrVec, GenericBound, NodeId, PatKind, attr, token};
use crate::rustc_attr_ir::{Attribute, AttributeKind};
use crate::rustc_attr_parsing::AttributeParser;
use crate::rustc_errors::msg;
use crate::rustc_feature::Features;
use crate::rustc_session::Session;
use crate::rustc_session::diagnostics::{feature_err, feature_warn};
use crate::rustc_span::{Span, Spanned, sym};
use crate::rustc_ast_passes::diagnostics;
macro_rules! gate {
($visitor:expr, $feature:ident, $span:expr, $explain:expr $(, $help:expr)?) => {{
if !$visitor.features.$feature() && !$span.allows_unstable(sym::$feature) {
feature_err($visitor.sess, sym::$feature, $span, $explain)
$(.with_help($help))?
.emit();
}
}};
}
macro_rules! gate_alt {
($visitor:expr, $has_feature:expr, $name:expr, $span:expr, $explain:expr $(, $notes:expr)?) => {{
if !$has_feature && !$span.allows_unstable($name) {
#[allow(unused_mut)]
let mut diag = feature_err($visitor.sess, $name, $span, $explain);
$(for ¬e in $notes { diag.note(note); })?
diag.emit();
}
}};
}
macro_rules! gate_multi {
($visitor:expr, $feature:ident, $spans:expr, $explain:expr) => {{
if !$visitor.features.$feature() {
let spans: Vec<_> =
$spans.filter(|span| !span.allows_unstable(sym::$feature)).collect();
if !spans.is_empty() {
feature_err($visitor.sess, sym::$feature, spans, $explain).emit();
}
}
}};
}
struct PostExpansionVisitor<'a> {
sess: &'a Session,
features: &'a Features,
}
impl<'a> PostExpansionVisitor<'a> {
fn check_impl_trait(&self, ty: &ast::Ty, in_associated_ty: bool) {
struct ImplTraitVisitor<'a> {
vis: &'a PostExpansionVisitor<'a>,
in_associated_ty: bool,
}
impl Visitor<'_> for ImplTraitVisitor<'_> {
type Result = ();
fn visit_ty(&mut self, ty: &ast::Ty) {
if let ast::TyKind::ImplTrait(..) = ty.kind {
if self.in_associated_ty {
gate!(
self.vis,
impl_trait_in_assoc_type,
ty.span,
"`impl Trait` in associated types is unstable"
);
} else {
gate!(
self.vis,
type_alias_impl_trait,
ty.span,
"`impl Trait` in type aliases is unstable"
);
}
}
visit::walk_ty(self, ty);
}
fn visit_anon_const(&mut self, _: &ast::AnonConst) -> Self::Result {
}
}
ImplTraitVisitor { vis: self, in_associated_ty }.visit_ty(ty);
}
fn check_late_bound_lifetime_defs(&self, params: &[ast::GenericParam]) {
let non_lt_param_spans = params.iter().filter_map(|param| match param.kind {
ast::GenericParamKind::Lifetime { .. } => None,
_ => Some(param.ident.span),
});
gate_multi!(
&self,
non_lifetime_binders,
non_lt_param_spans,
msg!("only lifetime parameters can be used in this context")
);
if self.features.non_lifetime_binders() {
let const_param_spans: Vec<_> = params
.iter()
.filter_map(|param| match param.kind {
ast::GenericParamKind::Const { .. } => Some(param.ident.span),
_ => None,
})
.collect();
if !const_param_spans.is_empty() {
self.sess.dcx().emit_err(diagnostics::ForbiddenConstParam { const_param_spans });
}
}
for param in params {
if !param.bounds.is_empty() {
let spans: Vec<_> = param.bounds.iter().map(|b| b.span()).collect();
if param.bounds.iter().any(|bound| matches!(bound, GenericBound::Trait(_))) {
self.sess.dcx().emit_fatal(diagnostics::ForbiddenBound { spans });
} else {
self.sess.dcx().emit_err(diagnostics::ForbiddenBound { spans });
}
}
}
}
}
impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
type Result = ();
fn visit_attribute(&mut self, attr: &'a ast::Attribute) {
visit::walk_attribute(self, attr)
}
fn visit_item(&mut self, i: &'a ast::Item) {
match &i.kind {
ast::ItemKind::ForeignMod(_foreign_module) => {
}
ast::ItemKind::Impl(ast::Impl { of_trait: Some(of_trait), .. }) => {
if let ast::ImplPolarity::Negative(span) = of_trait.polarity {
gate!(
self,
negative_impls,
span.to(of_trait.trait_ref.path.span),
"negative impls are experimental",
"use marker types for now"
);
}
if let ast::Defaultness::Default(_) = of_trait.defaultness {
gate!(self, specialization, i.span, "specialization is experimental");
}
}
ast::ItemKind::Trait(t) if matches!(**t, ast::Trait { is_auto: ast::IsAuto::Yes, .. }) => {
gate!(self, auto_traits, i.span, "auto traits are experimental and possibly buggy");
}
ast::ItemKind::TraitAlias(..) => {
gate!(self, trait_alias, i.span, "trait aliases are experimental");
}
ast::ItemKind::MacroDef(_, ast::MacroDef { macro_rules: false, .. }) => {
let msg = "`macro` is experimental";
gate!(self, decl_macro, i.span, msg);
}
ast::ItemKind::TyAlias(ta) if ta.ty.is_some() => {
if let Some(ty) = &ta.ty {
self.check_impl_trait(ty, false)
}
}
ast::ItemKind::Const(c)
if matches!(**c, ast::ConstItem { kind: ast::ConstItemKind::TypeConst, .. }) =>
{
gate!(self, min_generic_const_args, i.span, "top-level `type const` are unstable");
}
_ => {}
}
visit::walk_item(self, i);
}
fn visit_foreign_item(&mut self, i: &'a ast::ForeignItem) {
match i.kind {
ast::ForeignItemKind::Fn(..) | ast::ForeignItemKind::Static(..) => {
let link_name = attr::first_attr_value_str_by_name(&i.attrs, sym::link_name);
let links_to_llvm = link_name.is_some_and(|val| val.as_str().starts_with("llvm."));
if links_to_llvm {
gate!(
self,
link_llvm_intrinsics,
i.span,
"linking to LLVM intrinsics is experimental"
);
}
}
ast::ForeignItemKind::TyAlias(..) => {
gate!(self, extern_types, i.span, "extern types are experimental");
}
ast::ForeignItemKind::MacCall(..) => {}
}
visit::walk_item(self, i)
}
fn visit_ty(&mut self, ty: &'a ast::Ty) {
match &ty.kind {
ast::TyKind::FnPtr(fn_ptr_ty) => {
self.check_late_bound_lifetime_defs(&fn_ptr_ty.generic_params);
}
ast::TyKind::Pat(..) => {
gate!(self, pattern_types, ty.span, "pattern types are unstable");
}
ast::TyKind::View(..) => {
gate!(self, view_types, ty.span, "view types are unstable");
}
_ => {}
}
visit::walk_ty(self, ty)
}
fn visit_where_predicate_kind(&mut self, kind: &'a ast::WherePredicateKind) {
if let ast::WherePredicateKind::BoundPredicate(bound) = kind {
self.check_late_bound_lifetime_defs(&bound.bound_generic_params);
}
visit::walk_where_predicate_kind(self, kind);
}
fn visit_fn_ret_ty(&mut self, ret_ty: &'a ast::FnRetTy) {
if let ast::FnRetTy::Ty(output_ty) = ret_ty {
if let ast::TyKind::Never = output_ty.kind {
} else {
self.visit_ty(output_ty)
}
}
}
fn visit_generic_args(&mut self, args: &'a ast::GenericArgs) {
visit::walk_generic_args(self, args);
}
fn visit_expr(&mut self, e: &'a ast::Expr) {
match e.kind {
ast::ExprKind::TryBlock(_, None) => {
gate!(self, try_blocks, e.span, "`try` expression is experimental");
}
ast::ExprKind::TryBlock(_, Some(_)) => {
}
ast::ExprKind::Lit(token::Lit {
kind: token::LitKind::Float | token::LitKind::Integer,
suffix,
..
}) => match suffix {
Some(sym::f16) => {
gate!(self, f16, e.span, "the type `f16` is unstable")
}
Some(sym::f128) => {
gate!(self, f128, e.span, "the type `f128` is unstable")
}
_ => (),
},
_ => {}
}
visit::walk_expr(self, e)
}
fn visit_pat(&mut self, pattern: &'a ast::Pat) {
match &pattern.kind {
PatKind::Slice(pats) => {
for pat in pats {
let inner_pat = match &pat.kind {
PatKind::Ident(.., Some(pat)) => pat,
_ => pat,
};
if let PatKind::Range(Some(_), None, Spanned { .. }) = inner_pat.kind {
gate!(
self,
half_open_range_patterns_in_slices,
pat.span,
"`X..` patterns in slices are experimental"
);
}
}
}
_ => {}
}
visit::walk_pat(self, pattern)
}
fn visit_poly_trait_ref(&mut self, t: &'a ast::PolyTraitRef) {
self.check_late_bound_lifetime_defs(&t.bound_generic_params);
visit::walk_poly_trait_ref(self, t);
}
fn visit_fn(&mut self, fn_kind: FnKind<'a>, _: &AttrVec, _: Span, _: NodeId) {
if let Some(_header) = fn_kind.header() {
}
if let FnKind::Closure(ast::ClosureBinder::For { generic_params, .. }, ..) = fn_kind {
self.check_late_bound_lifetime_defs(generic_params);
}
visit::walk_fn(self, fn_kind)
}
fn visit_assoc_item(&mut self, i: &'a ast::AssocItem, ctxt: AssocCtxt) {
let is_fn = match &i.kind {
ast::AssocItemKind::Fn(_) => true,
ast::AssocItemKind::Type(ta) => {
let ast::TyAlias { ty, .. } = &**ta;
if let (Some(_), AssocCtxt::Trait) = (ty, ctxt) {
gate!(
self,
associated_type_defaults,
i.span,
"associated type defaults are unstable"
);
}
if let Some(ty) = ty {
self.check_impl_trait(ty, true);
}
false
}
ast::AssocItemKind::Const(c)
if matches!(**c, ast::ConstItem { kind: ast::ConstItemKind::TypeConst, .. }) =>
{
let body = &c.body;
gate!(self, min_generic_const_args, i.span, "associated `type const` are unstable");
if ctxt == AssocCtxt::Trait && body.is_some() {
gate!(
self,
associated_type_defaults,
i.span,
"associated type defaults are unstable"
);
}
false
}
_ => false,
};
if let ast::Defaultness::Default(_) = i.kind.defaultness() {
gate_alt!(
&self,
self.features.specialization() || (is_fn && self.features.min_specialization()),
sym::specialization,
i.span,
"specialization is experimental"
);
}
visit::walk_assoc_item(self, i, ctxt)
}
fn visit_test_binder_forall(&mut self, forall: &'a ast::TestBinderForall) {
self.check_late_bound_lifetime_defs(&forall.generics.params);
visit::walk_test_binder_forall(self, forall)
}
fn visit_test_binder_exists(&mut self, exists: &'a ast::TestBinderExists) {
self.check_late_bound_lifetime_defs(&exists.params);
visit::walk_test_binder_exists(self, exists)
}
}
pub fn check_crate(krate: &ast::Crate, sess: &Session, features: &Features) {
maybe_stage_features(sess, features, krate);
check_incompatible_features(sess, features);
check_dependent_features(sess, features);
warn_next_solver_and_gce(sess, features);
check_features_requiring_new_solver(sess, features);
let mut visitor = PostExpansionVisitor { sess, features };
let spans = sess.psess.gated_spans.spans.borrow();
macro_rules! gate_all {
($feature:ident, $explain:literal $(, $help:literal)?) => {
for &span in spans.get(&sym::$feature).into_iter().flatten() {
gate!(visitor, $feature, span, $explain $(, $help)?);
}
};
}
gate_all!(async_for_loop, "`for await` loops are experimental");
gate_all!(builtin_syntax, "`builtin #` syntax is unstable");
gate_all!(const_block_items, "const block items are experimental");
gate_all!(const_closures, "const closures are experimental");
gate_all!(const_trait_impl, "const trait impls are experimental");
gate_all!(contracts, "contracts are incomplete");
gate_all!(contracts_internals, "contract internal machinery is for internal use only");
gate_all!(coroutines, "coroutine syntax is experimental");
gate_all!(default_field_values, "default values on fields are experimental");
gate_all!(ergonomic_clones, "ergonomic clones are experimental");
gate_all!(explicit_tail_calls, "`become` expression is experimental");
gate_all!(final_associated_functions, "`final` on trait functions is experimental");
gate_all!(fn_delegation, "functions delegation is not yet fully implemented");
gate_all!(frontmatter, "frontmatters are experimental");
gate_all!(gen_blocks, "gen blocks are experimental");
gate_all!(generic_const_items, "generic const items are experimental");
gate_all!(global_registration, "global registration is experimental");
gate_all!(guard_patterns, "guard patterns are experimental", "consider using match arm guards");
gate_all!(impl_restriction, "`impl` restrictions are experimental");
gate_all!(min_generic_const_args, "unbraced const blocks as const args are experimental");
gate_all!(more_qualified_paths, "usage of qualified paths in this context is experimental");
gate_all!(move_expr, "`move(expr)` syntax is experimental");
gate_all!(mut_ref, "mutable by-reference bindings are experimental");
gate_all!(mut_restriction, "`mut` restrictions are experimental");
gate_all!(pin_ergonomics, "pinned reference syntax is experimental");
gate_all!(postfix_match, "postfix match is experimental");
gate_all!(return_type_notation, "return type notation is experimental");
gate_all!(
splat,
"`fn(#[rustc_splat] (a, ...))` is incomplete",
"call as func((a, ...)) instead"
);
gate_all!(super_let, "`super let` is experimental");
gate_all!(try_blocks_heterogeneous, "`try bikeshed` expression is experimental");
gate_all!(unnamed_enum_variants, "unnamed enum variants are experimental");
gate_all!(unsafe_binders, "unsafe binder types are experimental");
gate_all!(unsafe_fields, "`unsafe` fields are experimental");
gate_all!(view_types, "view types are experimental");
gate_all!(where_clause_attrs, "attributes in `where` clause are unstable");
gate_all!(yeet_expr, "`do yeet` expression is experimental");
gate_all!(
async_trait_bounds,
"`async` trait bounds are unstable",
"use the desugared name of the async trait, such as `AsyncFn`"
);
gate_all!(
closure_lifetime_binder,
"`for<...>` binders for closures are experimental",
"consider using a type annotation instead: \
`let closure: for<...> fn(...) -> ... = /* closure */;`"
);
gate_all!(
half_open_range_patterns_in_slices,
"half-open range patterns in slices are unstable"
);
gate_all!(
named_fn_trait_parameters,
"named parameters in parenthesized generic argument lists are experimental"
);
for &span in spans.get(&sym::associated_const_equality).into_iter().flatten() {
gate!(visitor, min_generic_const_args, span, "associated const equality is incomplete");
}
for &span in spans.get(&sym::mgca_type_const_syntax).into_iter().flatten() {
if visitor.features.min_generic_const_args()
|| visitor.features.mgca_type_const_syntax()
|| span.allows_unstable(sym::min_generic_const_args)
|| span.allows_unstable(sym::mgca_type_const_syntax)
{
continue;
}
feature_err(
visitor.sess,
sym::min_generic_const_args,
span,
"`type const` syntax is experimental",
)
.emit();
}
if !sess.opts.unstable_opts.internal_testing_features || !visitor.features.negative_bounds() {
for &span in spans.get(&sym::negative_bounds).into_iter().flatten() {
sess.dcx().emit_err(diagnostics::NegativeBoundUnsupported { span });
}
}
if !visitor.features.never_patterns() {
for &span in spans.get(&sym::never_patterns).into_iter().flatten() {
if span.allows_unstable(sym::never_patterns) {
continue;
}
if let Ok("!") = sess.source_map().span_to_snippet(span).as_deref() {
feature_err(sess, sym::never_patterns, span, "`!` patterns are experimental")
.emit();
} else {
let suggestion = span.shrink_to_hi();
sess.dcx().emit_err(diagnostics::MatchArmWithNoBody { span, suggestion });
}
}
}
for &span in spans.get(&sym::yield_expr).into_iter().flatten() {
if (!visitor.features.coroutines() && !span.allows_unstable(sym::coroutines))
&& (!visitor.features.gen_blocks() && !span.allows_unstable(sym::gen_blocks))
&& (!visitor.features.yield_expr() && !span.allows_unstable(sym::yield_expr))
{
feature_err(visitor.sess, sym::yield_expr, span, "yield syntax is experimental").emit();
}
}
macro_rules! soft_gate_all_legacy_dont_use {
($feature:ident, $explain:literal) => {
for &span in spans.get(&sym::$feature).into_iter().flatten() {
if !visitor.features.$feature() && !span.allows_unstable(sym::$feature) {
feature_warn(&visitor.sess, sym::$feature, span, $explain);
}
}
};
}
soft_gate_all_legacy_dont_use!(auto_traits, "`auto` traits are unstable");
soft_gate_all_legacy_dont_use!(decl_macro, "`macro` is experimental");
soft_gate_all_legacy_dont_use!(negative_impls, "negative impls are experimental");
soft_gate_all_legacy_dont_use!(specialization, "specialization is experimental");
soft_gate_all_legacy_dont_use!(trait_alias, "trait aliases are experimental");
soft_gate_all_legacy_dont_use!(try_blocks, "`try` blocks are unstable");
for &span in spans.get(&sym::min_specialization).into_iter().flatten() {
if !visitor.features.specialization()
&& !visitor.features.min_specialization()
&& !span.allows_unstable(sym::specialization)
&& !span.allows_unstable(sym::min_specialization)
{
feature_warn(visitor.sess, sym::specialization, span, "specialization is experimental");
}
}
visit::walk_crate(&mut visitor, krate);
}
fn maybe_stage_features(sess: &Session, features: &Features, krate: &ast::Crate) {
if sess.opts.unstable_features.is_nightly_build() {
return;
}
if features.enabled_features().is_empty() {
return;
}
let mut errored = false;
if let Some(Attribute::Parsed(AttributeKind::Feature(feature_idents, first_span))) =
AttributeParser::parse_limited_sym(sess, &krate.attrs, &[sym::feature])
{
let mut err = diagnostics::FeatureOnNonNightly {
span: first_span,
channel: option_env!("CFG_RELEASE_CHANNEL").unwrap_or("(unknown)"),
stable_features: vec![],
sugg: None,
};
let mut all_stable = true;
for ident in feature_idents {
let name = ident.name;
let stable_since = features
.enabled_lang_features()
.iter()
.find(|feat| feat.gate_name == name)
.map(|feat| feat.stable_since)
.flatten();
if let Some(since) = stable_since {
err.stable_features.push(diagnostics::StableFeature { name, since });
} else {
all_stable = false;
}
}
if all_stable {
err.sugg = Some(first_span);
}
sess.dcx().emit_err(err);
errored = true;
}
assert!(errored);
}
fn check_incompatible_features(sess: &Session, features: &Features) {
let enabled_features = features.enabled_features_iter_stable_order();
for (f1, f2) in crate::rustc_feature::INCOMPATIBLE_FEATURES
.iter()
.filter(|(f1, f2)| features.enabled(*f1) && features.enabled(*f2))
{
if let Some((f1_name, f1_span)) = enabled_features.clone().find(|(name, _)| name == f1)
&& let Some((f2_name, f2_span)) = enabled_features.clone().find(|(name, _)| name == f2)
{
let spans = vec![f1_span, f2_span];
sess.dcx().emit_err(diagnostics::IncompatibleFeatures {
spans,
f1: f1_name,
f2: f2_name,
});
}
}
}
fn check_dependent_features(sess: &Session, features: &Features) {
for &(parent, children) in
crate::rustc_feature::DEPENDENT_FEATURES.iter().filter(|(parent, _)| features.enabled(*parent))
{
if children.iter().any(|f| !features.enabled(*f)) {
let parent_span = features
.enabled_features_iter_stable_order()
.find_map(|(name, span)| (name == parent).then_some(span))
.unwrap();
let missing = children
.iter()
.filter(|f| !features.enabled(**f))
.map(|s| format!("`{}`", s.as_str()))
.separated_by(String::from(", "))
.collect();
sess.dcx().emit_err(diagnostics::MissingDependentFeatures {
parent_span,
parent,
missing,
});
}
}
}
fn warn_next_solver_and_gce(sess: &Session, features: &Features) {
if !sess.opts.unstable_opts.next_solver.globally {
return;
}
if let Some(gce_span) = features
.enabled_lang_features()
.iter()
.find(|feat| feat.gate_name == sym::generic_const_exprs)
.map(|feat| feat.attr_sp)
{
sess.dcx()
.emit_warn(diagnostics::NextSolverDisabledForGenericConstExprs { span: gce_span });
}
}
fn check_features_requiring_new_solver(sess: &Session, features: &Features) {
if sess.opts.unstable_opts.next_solver.globally {
return;
}
if let Some(gca_span) = features
.enabled_lang_features()
.iter()
.find(|feat| feat.gate_name == sym::generic_const_args)
.map(|feat| feat.attr_sp)
{ sess.dcx().emit_err(diagnostics::MissingDependentFeatures {
parent_span: gca_span,
parent: sym::generic_const_args,
missing: String::from("-Znext-solver=globally"),
});
}
}