Skip to content

Commit 4863522

Browse files
committedJul 10, 2019
Remove MacroKind::ProcMacroStub
It's internal to resolve and always results in `Res::Err` outside of resolve. Instead put `DefKind::Fn`s themselves into the macro namespace, it's ok. Proc macro stubs are items placed into macro namespase for functions that define proc macros. rust-lang#52383 The rustdoc test is changed because the old test didn't actually reproduce the ICE it was supposed to reproduce.
1 parent c6a9e76 commit 4863522

File tree

10 files changed

+35
-53
lines changed

10 files changed

+35
-53
lines changed
 

‎src/librustc/ich/impls_syntax.rs

-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ impl_stable_hash_for!(enum ::syntax::ext::base::MacroKind {
8989
Bang,
9090
Attr,
9191
Derive,
92-
ProcMacroStub,
9392
});
9493

9594

‎src/librustc_resolve/build_reduced_graph.rs

+17-19
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use syntax::attr;
2929

3030
use syntax::ast::{self, Block, ForeignItem, ForeignItemKind, Item, ItemKind, NodeId};
3131
use syntax::ast::{MetaItemKind, StmtKind, TraitItem, TraitItemKind, Variant};
32-
use syntax::ext::base::{MacroKind, SyntaxExtension};
32+
use syntax::ext::base::SyntaxExtension;
3333
use syntax::ext::base::Determinacy::Undetermined;
3434
use syntax::ext::hygiene::Mark;
3535
use syntax::ext::tt::macro_rules;
@@ -46,6 +46,20 @@ use log::debug;
4646

4747
type Res = def::Res<NodeId>;
4848

49+
fn proc_macro_stub(item: &Item) -> Option<(Ident, Span)> {
50+
if attr::contains_name(&item.attrs, sym::proc_macro) ||
51+
attr::contains_name(&item.attrs, sym::proc_macro_attribute) {
52+
return Some((item.ident, item.span));
53+
} else if let Some(attr) = attr::find_by_name(&item.attrs, sym::proc_macro_derive) {
54+
if let Some(nested_meta) = attr.meta_item_list().and_then(|list| list.get(0).cloned()) {
55+
if let Some(ident) = nested_meta.ident() {
56+
return Some((ident, ident.span));
57+
}
58+
}
59+
}
60+
None
61+
}
62+
4963
impl<'a> ToNameBinding<'a> for (Module<'a>, ty::Visibility, Span, Mark) {
5064
fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
5165
arenas.alloc_name_binding(NameBinding {
@@ -456,22 +470,8 @@ impl<'a> Resolver<'a> {
456470

457471
// Functions introducing procedural macros reserve a slot
458472
// in the macro namespace as well (see #52225).
459-
if attr::contains_name(&item.attrs, sym::proc_macro) ||
460-
attr::contains_name(&item.attrs, sym::proc_macro_attribute) {
461-
let res = Res::Def(DefKind::Macro(MacroKind::ProcMacroStub), res.def_id());
462-
self.define(parent, ident, MacroNS, (res, vis, sp, expansion));
463-
}
464-
if let Some(attr) = attr::find_by_name(&item.attrs, sym::proc_macro_derive) {
465-
if let Some(trait_attr) =
466-
attr.meta_item_list().and_then(|list| list.get(0).cloned()) {
467-
if let Some(ident) = trait_attr.ident() {
468-
let res = Res::Def(
469-
DefKind::Macro(MacroKind::ProcMacroStub),
470-
res.def_id(),
471-
);
472-
self.define(parent, ident, MacroNS, (res, vis, ident.span, expansion));
473-
}
474-
}
473+
if let Some((ident, span)) = proc_macro_stub(item) {
474+
self.define(parent, ident, MacroNS, (res, vis, span, expansion));
475475
}
476476
}
477477

@@ -778,8 +778,6 @@ impl<'a> Resolver<'a> {
778778

779779
crate fn opt_get_macro(&mut self, res: Res) -> Option<Lrc<SyntaxExtension>> {
780780
let def_id = match res {
781-
Res::Def(DefKind::Macro(MacroKind::ProcMacroStub), _) =>
782-
return Some(self.non_macro_attr(true)), // some dummy extension
783781
Res::Def(DefKind::Macro(..), def_id) => def_id,
784782
Res::NonMacroAttr(attr_kind) =>
785783
return Some(self.non_macro_attr(attr_kind == NonMacroAttrKind::Tool)),

‎src/librustc_resolve/macros.rs

+10-11
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,11 @@ fn sub_namespace_match(candidate: Option<MacroKind>, requirement: Option<MacroKi
102102
#[derive(PartialEq)]
103103
enum SubNS { Bang, AttrLike }
104104
let sub_ns = |kind| match kind {
105-
MacroKind::Bang => Some(SubNS::Bang),
106-
MacroKind::Attr | MacroKind::Derive => Some(SubNS::AttrLike),
107-
MacroKind::ProcMacroStub => None,
105+
MacroKind::Bang => SubNS::Bang,
106+
MacroKind::Attr | MacroKind::Derive => SubNS::AttrLike,
108107
};
109-
let requirement = requirement.and_then(|kind| sub_ns(kind));
110-
let candidate = candidate.and_then(|kind| sub_ns(kind));
108+
let candidate = candidate.map(sub_ns);
109+
let requirement = requirement.map(sub_ns);
111110
// "No specific sub-namespace" means "matches anything" for both requirements and candidates.
112111
candidate.is_none() || requirement.is_none() || candidate == requirement
113112
}
@@ -310,15 +309,15 @@ impl<'a> Resolver<'a> {
310309
let res = res?;
311310

312311
match res {
313-
Res::Def(DefKind::Macro(macro_kind), def_id) => {
312+
Res::Def(DefKind::Macro(_), def_id) => {
314313
if let Some(node_id) = self.definitions.as_local_node_id(def_id) {
315314
self.unused_macros.remove(&node_id);
316315
}
317-
if macro_kind == MacroKind::ProcMacroStub {
318-
let msg = "can't use a procedural macro from the same crate that defines it";
319-
self.session.span_err(path.span, msg);
320-
return Err(Determinacy::Determined);
321-
}
316+
}
317+
Res::Def(DefKind::Fn, _) => {
318+
let msg = "can't use a procedural macro from the same crate that defines it";
319+
self.session.span_err(path.span, msg);
320+
return Err(Determinacy::Determined);
322321
}
323322
Res::NonMacroAttr(attr_kind) => {
324323
if kind == MacroKind::Attr {

‎src/librustdoc/clean/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4199,7 +4199,6 @@ pub fn register_res(cx: &DocContext<'_>, res: Res) -> DefId {
41994199
MacroKind::Bang => (i, TypeKind::Macro),
42004200
MacroKind::Attr => (i, TypeKind::Attr),
42014201
MacroKind::Derive => (i, TypeKind::Derive),
4202-
MacroKind::ProcMacroStub => unreachable!(),
42034202
},
42044203
Res::Def(DefKind::TraitAlias, i) => (i, TypeKind::TraitAlias),
42054204
Res::SelfTy(Some(def_id), _) => (def_id, TypeKind::Trait),

‎src/librustdoc/html/item_type.rs

-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ impl<'a> From<&'a clean::Item> for ItemType {
9292
MacroKind::Bang => ItemType::Macro,
9393
MacroKind::Attr => ItemType::ProcAttribute,
9494
MacroKind::Derive => ItemType::ProcDerive,
95-
MacroKind::ProcMacroStub => unreachable!(),
9695
}
9796
clean::StrippedItem(..) => unreachable!(),
9897
}

‎src/librustdoc/html/render.rs

-2
Original file line numberDiff line numberDiff line change
@@ -2471,7 +2471,6 @@ impl<'a> fmt::Display for Item<'a> {
24712471
MacroKind::Bang => write!(fmt, "Macro ")?,
24722472
MacroKind::Attr => write!(fmt, "Attribute Macro ")?,
24732473
MacroKind::Derive => write!(fmt, "Derive Macro ")?,
2474-
MacroKind::ProcMacroStub => unreachable!(),
24752474
}
24762475
clean::PrimitiveItem(..) => write!(fmt, "Primitive Type ")?,
24772476
clean::StaticItem(..) | clean::ForeignStaticItem(..) => write!(fmt, "Static ")?,
@@ -5092,7 +5091,6 @@ fn item_proc_macro(w: &mut fmt::Formatter<'_>, cx: &Context, it: &clean::Item, m
50925091
}
50935092
write!(w, "</pre>")?;
50945093
}
5095-
_ => {}
50965094
}
50975095
document(w, cx, it)
50985096
}

‎src/librustdoc/passes/collect_intra_doc_links.rs

+5-9
Original file line numberDiff line numberDiff line change
@@ -429,15 +429,11 @@ fn macro_resolve(cx: &DocContext<'_>, path_str: &str) -> Option<Res> {
429429
let segment = ast::PathSegment::from_ident(Ident::from_str(path_str));
430430
let path = ast::Path { segments: vec![segment], span: DUMMY_SP };
431431
cx.enter_resolver(|resolver| {
432-
let parent_scope = resolver.dummy_parent_scope();
433-
if let Ok(res) = resolver.resolve_macro_to_res_inner(&path, MacroKind::Bang,
434-
&parent_scope, false, false) {
435-
if let Res::Def(DefKind::Macro(MacroKind::ProcMacroStub), _) = res {
436-
// skip proc-macro stubs, they'll cause `get_macro` to crash
437-
} else {
438-
if let SyntaxExtensionKind::LegacyBang(..) = resolver.get_macro(res).kind {
439-
return Some(res.map_id(|_| panic!("unexpected id")));
440-
}
432+
if let Ok(res @ Res::Def(DefKind::Macro(_), _)) = resolver.resolve_macro_to_res_inner(
433+
&path, MacroKind::Bang, &resolver.dummy_parent_scope(), false, false
434+
) {
435+
if let SyntaxExtensionKind::LegacyBang { .. } = resolver.get_macro(res).kind {
436+
return Some(res.map_id(|_| panic!("unexpected id")));
441437
}
442438
}
443439
if let Some(res) = resolver.all_macros.get(&Symbol::intern(path_str)) {

‎src/librustdoc/visit_ast.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -406,11 +406,8 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
406406

407407
// Struct and variant constructors and proc macro stubs always show up alongside
408408
// their definitions, we've already processed them so just discard these.
409-
match path.res {
410-
Res::Def(DefKind::Ctor(..), _)
411-
| Res::SelfCtor(..)
412-
| Res::Def(DefKind::Macro(MacroKind::ProcMacroStub), _) => return,
413-
_ => {}
409+
if let Res::Def(DefKind::Ctor(..), _) | Res::SelfCtor(..) = path.res {
410+
return;
414411
}
415412

416413
// If there was a private module in the current path then don't bother inlining

‎src/libsyntax/ext/base.rs

-3
Original file line numberDiff line numberDiff line change
@@ -527,8 +527,6 @@ pub enum MacroKind {
527527
Attr,
528528
/// A derive attribute macro - #[derive(Foo)]
529529
Derive,
530-
/// A view of a procedural macro from the same crate that defines it.
531-
ProcMacroStub,
532530
}
533531

534532
impl MacroKind {
@@ -537,7 +535,6 @@ impl MacroKind {
537535
MacroKind::Bang => "macro",
538536
MacroKind::Attr => "attribute macro",
539537
MacroKind::Derive => "derive macro",
540-
MacroKind::ProcMacroStub => "crate-local procedural macro",
541538
}
542539
}
543540

‎src/test/rustdoc/proc-macro.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// @has some_macros/index.html
88
// @has - '//a/[@href="attr.some_proc_attr.html"]' 'some_proc_attr'
99

10-
//! include a link to [some_proc_attr] to make sure it works.
10+
//! include a link to [some_proc_macro] to make sure it works.
1111
1212
extern crate proc_macro;
1313

0 commit comments

Comments
 (0)
Please sign in to comment.