Skip to content

Commit eae41d3

Browse files
author
Ariel Ben-Yehuda
committed
unify the 2 impl indexes
1 parent 55d35f1 commit eae41d3

File tree

4 files changed

+39
-76
lines changed

4 files changed

+39
-76
lines changed

src/librustc/metadata/common.rs

+7-13
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,7 @@ enum_from_u32! {
133133
tag_table_method_map = 0x5f,
134134
// GAP 0x60
135135
tag_table_adjustments = 0x61,
136-
// GAP 0x62, 0x63
137-
// GAP 0x64, 0x65
136+
// GAP 0x62, 0x63, 0x64, 0x65
138137
tag_table_upvar_capture_map = 0x66,
139138
// GAP 0x67, 0x68
140139
tag_table_const_qualif = 0x69,
@@ -163,22 +162,17 @@ pub const tag_lang_items_missing: usize = 0x76;
163162

164163
pub const tag_item_unnamed_field: usize = 0x77;
165164
pub const tag_items_data_item_visibility: usize = 0x78;
166-
167-
// GAP 0x79, 0x7a
168-
165+
pub const tag_items_data_item_inherent_impl: usize = 0x79;
166+
// GAP 0x7a
169167
pub const tag_mod_child: usize = 0x7b;
170168
pub const tag_misc_info: usize = 0x108; // top-level only
171169
pub const tag_misc_info_crate_items: usize = 0x7c;
172170

173-
// GAP 0x7d
174-
// GAP 0x7e
175-
176171
pub const tag_impls: usize = 0x109; // top-level only
177-
pub const tag_impls_impl: usize = 0x7f;
178-
pub const tag_impls_impl_trait_def_id: usize = 0x8d;
172+
pub const tag_impls_trait: usize = 0x7d;
173+
pub const tag_impls_trait_impl: usize = 0x7e;
179174

180-
pub const tag_items_data_item_inherent_impl: usize = 0x80;
181-
pub const tag_items_data_item_extension_impl: usize = 0x81;
175+
// GAP 0x7f, 0x80, 0x81
182176

183177
pub const tag_native_libraries: usize = 0x10a; // top-level only
184178
pub const tag_native_libraries_lib: usize = 0x82;
@@ -208,7 +202,7 @@ pub const tag_struct_field: usize = 0x8a;
208202

209203
pub const tag_items_data_item_struct_ctor: usize = 0x8b;
210204
pub const tag_attribute_is_sugared_doc: usize = 0x8c;
211-
205+
// GAP 0x8d
212206
pub const tag_items_data_region: usize = 0x8e;
213207

214208
pub const tag_region_param_def: usize = 0x8f;

src/librustc/metadata/decoder.rs

+7-12
Original file line numberDiff line numberDiff line change
@@ -1284,24 +1284,19 @@ pub fn each_implementation_for_trait<F>(cdata: Cmd,
12841284
mut callback: F) where
12851285
F: FnMut(DefId),
12861286
{
1287-
if cdata.cnum == def_id.krate {
1288-
let item_doc = cdata.lookup_item(def_id.index);
1289-
for impl_doc in reader::tagged_docs(item_doc, tag_items_data_item_extension_impl) {
1290-
callback(item_def_id(impl_doc, cdata));
1291-
}
1292-
return;
1293-
}
1294-
12951287
// Do a reverse lookup beforehand to avoid touching the crate_num
12961288
// hash map in the loop below.
12971289
if let Some(crate_local_did) = reverse_translate_def_id(cdata, def_id) {
12981290
let def_id_u64 = def_to_u64(crate_local_did);
12991291

13001292
let impls_doc = reader::get_doc(rbml::Doc::new(cdata.data()), tag_impls);
1301-
for impl_doc in reader::tagged_docs(impls_doc, tag_impls_impl) {
1302-
let impl_trait = reader::get_doc(impl_doc, tag_impls_impl_trait_def_id);
1303-
if reader::doc_as_u64(impl_trait) == def_id_u64 {
1304-
callback(item_def_id(impl_doc, cdata));
1293+
for trait_doc in reader::tagged_docs(impls_doc, tag_impls_trait) {
1294+
let trait_def_id = reader::get_doc(trait_doc, tag_def_id);
1295+
if reader::doc_as_u64(trait_def_id) != def_id_u64 {
1296+
continue;
1297+
}
1298+
for impl_doc in reader::tagged_docs(trait_doc, tag_impls_trait_impl) {
1299+
callback(translated_def_id(cdata, impl_doc));
13051300
}
13061301
}
13071302
}

src/librustc/metadata/encoder.rs

+24-50
Original file line numberDiff line numberDiff line change
@@ -865,20 +865,6 @@ fn encode_inherent_implementations(ecx: &EncodeContext,
865865
}
866866
}
867867

868-
// Encodes the implementations of a trait defined in this crate.
869-
fn encode_extension_implementations(ecx: &EncodeContext,
870-
rbml_w: &mut Encoder,
871-
trait_def_id: DefId) {
872-
assert!(trait_def_id.is_local());
873-
let def = ecx.tcx.lookup_trait_def(trait_def_id);
874-
875-
def.for_each_impl(ecx.tcx, |impl_def_id| {
876-
rbml_w.start_tag(tag_items_data_item_extension_impl);
877-
encode_def_id(rbml_w, impl_def_id);
878-
rbml_w.end_tag();
879-
});
880-
}
881-
882868
fn encode_stability(rbml_w: &mut Encoder, stab_opt: Option<&attr::Stability>) {
883869
stab_opt.map(|stab| {
884870
rbml_w.start_tag(tag_items_data_item_stability);
@@ -1256,9 +1242,6 @@ fn encode_info_for_item<'a, 'tcx>(ecx: &EncodeContext<'a, 'tcx>,
12561242
}
12571243
encode_path(rbml_w, path.clone());
12581244

1259-
// Encode the implementations of this trait.
1260-
encode_extension_implementations(ecx, rbml_w, def_id);
1261-
12621245
// Encode inherent implementations for this trait.
12631246
encode_inherent_implementations(ecx, rbml_w, def_id);
12641247

@@ -1763,53 +1746,44 @@ fn encode_struct_field_attrs(ecx: &EncodeContext,
17631746

17641747

17651748

1766-
struct ImplVisitor<'a, 'b:'a, 'c:'a, 'tcx:'b> {
1767-
ecx: &'a EncodeContext<'b, 'tcx>,
1768-
rbml_w: &'a mut Encoder<'c>,
1749+
struct ImplVisitor<'a, 'tcx:'a> {
1750+
tcx: &'a ty::ctxt<'tcx>,
1751+
impls: FnvHashMap<DefId, Vec<DefId>>
17691752
}
17701753

1771-
impl<'a, 'b, 'c, 'tcx, 'v> Visitor<'v> for ImplVisitor<'a, 'b, 'c, 'tcx> {
1754+
impl<'a, 'tcx, 'v> Visitor<'v> for ImplVisitor<'a, 'tcx> {
17721755
fn visit_item(&mut self, item: &hir::Item) {
1773-
if let hir::ItemImpl(_, _, _, Some(ref trait_ref), _, _) = item.node {
1774-
let def_id = self.ecx.tcx.def_map.borrow().get(&trait_ref.ref_id).unwrap().def_id();
1775-
1776-
// Load eagerly if this is an implementation of the Drop trait
1777-
// or if the trait is not defined in this crate.
1778-
if Some(def_id) == self.ecx.tcx.lang_items.drop_trait() ||
1779-
def_id.krate != LOCAL_CRATE {
1780-
self.rbml_w.start_tag(tag_impls_impl);
1781-
encode_def_id(self.rbml_w, self.ecx.tcx.map.local_def_id(item.id));
1782-
self.rbml_w.wr_tagged_u64(tag_impls_impl_trait_def_id, def_to_u64(def_id));
1783-
self.rbml_w.end_tag();
1756+
if let hir::ItemImpl(..) = item.node {
1757+
let impl_id = self.tcx.map.local_def_id(item.id);
1758+
if let Some(trait_ref) = self.tcx.impl_trait_ref(impl_id) {
1759+
self.impls.entry(trait_ref.def_id)
1760+
.or_insert(vec![])
1761+
.push(impl_id);
17841762
}
17851763
}
17861764
visit::walk_item(self, item);
17871765
}
17881766
}
17891767

1790-
/// Encodes implementations that are eagerly loaded.
1791-
///
1792-
/// None of this is necessary in theory; we can load all implementations
1793-
/// lazily. However, in two cases the optimizations to lazily load
1794-
/// implementations are not yet implemented. These two cases, which require us
1795-
/// to load implementations eagerly, are:
1796-
///
1797-
/// * Destructors (implementations of the Drop trait).
1798-
///
1799-
/// * Implementations of traits not defined in this crate.
1768+
/// Encodes an index, mapping each trait to its (local) implementations.
18001769
fn encode_impls<'a>(ecx: &'a EncodeContext,
18011770
krate: &hir::Crate,
18021771
rbml_w: &'a mut Encoder) {
1803-
rbml_w.start_tag(tag_impls);
1772+
let mut visitor = ImplVisitor {
1773+
tcx: ecx.tcx,
1774+
impls: FnvHashMap()
1775+
};
1776+
visit::walk_crate(&mut visitor, krate);
18041777

1805-
{
1806-
let mut visitor = ImplVisitor {
1807-
ecx: ecx,
1808-
rbml_w: rbml_w,
1809-
};
1810-
visit::walk_crate(&mut visitor, krate);
1778+
rbml_w.start_tag(tag_impls);
1779+
for (trait_, trait_impls) in visitor.impls {
1780+
rbml_w.start_tag(tag_impls_trait);
1781+
encode_def_id(rbml_w, trait_);
1782+
for impl_ in trait_impls {
1783+
rbml_w.wr_tagged_u64(tag_impls_trait_impl, def_to_u64(impl_));
1784+
}
1785+
rbml_w.end_tag();
18111786
}
1812-
18131787
rbml_w.end_tag();
18141788
}
18151789

src/librustc/middle/astencode.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1319,7 +1319,7 @@ fn copy_item_types(dcx: &DecodeContext, ii: &InlinedItem, orig_did: DefId) {
13191319
if let Some(ctor_id) = def.ctor_id {
13201320
let ctor_did = dcx.tcx.lookup_adt_def(orig_did)
13211321
.struct_variant().ctor_id;
1322-
println!("copying ctor {:?}", ctor_did);
1322+
debug!("copying ctor {:?}", ctor_did);
13231323
copy_item_type(dcx, ctor_id, ctor_did);
13241324
}
13251325
}

0 commit comments

Comments
 (0)