Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6f5d4b8

Browse files
committedJan 25, 2021
Box ast::ItemKind
This reduces the size of ast::Item from 296 to 96 bytes.
1 parent 7fba12b commit 6f5d4b8

Some content is hidden

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

53 files changed

+144
-133
lines changed
 

‎compiler/rustc_ast/src/ast.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -2581,7 +2581,7 @@ pub struct Item<K = ItemKind> {
25812581
/// It might be a dummy name in case of anonymous items.
25822582
pub ident: Ident,
25832583

2584-
pub kind: K,
2584+
pub kind: Box<K>,
25852585

25862586
/// Original tokens this item was parsed from. This isn't necessarily
25872587
/// available for all items, although over time more and more items should
@@ -2593,6 +2593,10 @@ pub struct Item<K = ItemKind> {
25932593
pub tokens: Option<LazyTokenStream>,
25942594
}
25952595

2596+
rustc_data_structures::static_assert_size!(Item<ItemKind>, 96);
2597+
rustc_data_structures::static_assert_size!(Item<AssocItemKind>, 96);
2598+
rustc_data_structures::static_assert_size!(Item<ForeignItemKind>, 96);
2599+
25962600
impl Item {
25972601
/// Return the span that encompasses the attributes.
25982602
pub fn span_with_attributes(&self) -> Span {
@@ -2603,7 +2607,7 @@ impl Item {
26032607
impl<K: Into<ItemKind>> Item<K> {
26042608
pub fn into_item(self) -> Item {
26052609
let Item { attrs, id, span, vis, ident, kind, tokens } = self;
2606-
Item { attrs, id, span, vis, ident, kind: kind.into(), tokens }
2610+
Item { attrs, id, span, vis, ident, kind: box (*kind).into(), tokens }
26072611
}
26082612
}
26092613

‎compiler/rustc_ast/src/mut_visit.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ pub fn noop_flat_map_assoc_item<T: MutVisitor>(
971971
visitor.visit_ident(ident);
972972
visitor.visit_vis(vis);
973973
visit_attrs(attrs, visitor);
974-
match kind {
974+
match &mut **kind {
975975
AssocItemKind::Const(_, ty, expr) => {
976976
visitor.visit_ty(ty);
977977
visit_opt(expr, |expr| visitor.visit_expr(expr));
@@ -1014,7 +1014,7 @@ pub fn noop_visit_crate<T: MutVisitor>(krate: &mut Crate, vis: &mut T) {
10141014
id: DUMMY_NODE_ID,
10151015
vis: item_vis,
10161016
span,
1017-
kind: ItemKind::Mod(module),
1017+
kind: box ItemKind::Mod(module),
10181018
tokens: None,
10191019
});
10201020
let items = vis.flat_map_item(item);
@@ -1025,7 +1025,7 @@ pub fn noop_visit_crate<T: MutVisitor>(krate: &mut Crate, vis: &mut T) {
10251025
Crate { module, attrs: vec![], span, proc_macros }
10261026
} else if len == 1 {
10271027
let Item { attrs, span, kind, .. } = items.into_iter().next().unwrap().into_inner();
1028-
match kind {
1028+
match *kind {
10291029
ItemKind::Mod(module) => Crate { module, attrs, span, proc_macros },
10301030
_ => panic!("visitor converted a module to not a module"),
10311031
}
@@ -1061,7 +1061,7 @@ pub fn noop_flat_map_foreign_item<T: MutVisitor>(
10611061
visitor.visit_ident(ident);
10621062
visitor.visit_vis(vis);
10631063
visit_attrs(attrs, visitor);
1064-
match kind {
1064+
match &mut **kind {
10651065
ForeignItemKind::Static(ty, _, expr) => {
10661066
visitor.visit_ty(ty);
10671067
visit_opt(expr, |expr| visitor.visit_expr(expr));

0 commit comments

Comments
 (0)
Please sign in to comment.