]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_metadata/src/rmeta/def_path_hash_map.rs
New upstream version 1.60.0+dfsg1
[rustc.git] / compiler / rustc_metadata / src / rmeta / def_path_hash_map.rs
CommitLineData
c295e0f8
XL
1use crate::rmeta::DecodeContext;
2use crate::rmeta::EncodeContext;
3use crate::rmeta::MetadataBlob;
4use rustc_data_structures::owning_ref::OwningRef;
5use rustc_hir::def_path_hash_map::{Config as HashMapConfig, DefPathHashMap};
6use rustc_serialize::{opaque, Decodable, Decoder, Encodable, Encoder};
7use rustc_span::def_id::{DefIndex, DefPathHash};
8
9crate enum DefPathHashMapRef<'tcx> {
10 OwnedFromMetadata(odht::HashTable<HashMapConfig, OwningRef<MetadataBlob, [u8]>>),
11 BorrowedFromTcx(&'tcx DefPathHashMap),
12}
13
a2a8927a 14impl DefPathHashMapRef<'_> {
c295e0f8
XL
15 #[inline]
16 pub fn def_path_hash_to_def_index(&self, def_path_hash: &DefPathHash) -> DefIndex {
17 match *self {
18 DefPathHashMapRef::OwnedFromMetadata(ref map) => map.get(def_path_hash).unwrap(),
19 DefPathHashMapRef::BorrowedFromTcx(_) => {
20 panic!("DefPathHashMap::BorrowedFromTcx variant only exists for serialization")
21 }
22 }
23 }
24}
25
26impl<'a, 'tcx> Encodable<EncodeContext<'a, 'tcx>> for DefPathHashMapRef<'tcx> {
27 fn encode(&self, e: &mut EncodeContext<'a, 'tcx>) -> opaque::EncodeResult {
28 match *self {
29 DefPathHashMapRef::BorrowedFromTcx(def_path_hash_map) => {
30 let bytes = def_path_hash_map.raw_bytes();
31 e.emit_usize(bytes.len())?;
32 e.emit_raw_bytes(bytes)
33 }
34 DefPathHashMapRef::OwnedFromMetadata(_) => {
35 panic!("DefPathHashMap::OwnedFromMetadata variant only exists for deserialization")
36 }
37 }
38 }
39}
40
41impl<'a, 'tcx> Decodable<DecodeContext<'a, 'tcx>> for DefPathHashMapRef<'static> {
5099ac24 42 fn decode(d: &mut DecodeContext<'a, 'tcx>) -> DefPathHashMapRef<'static> {
c295e0f8
XL
43 // Import TyDecoder so we can access the DecodeContext::position() method
44 use crate::rustc_middle::ty::codec::TyDecoder;
45
5099ac24 46 let len = d.read_usize();
c295e0f8
XL
47 let pos = d.position();
48 let o = OwningRef::new(d.blob().clone()).map(|x| &x[pos..pos + len]);
49
50 // Although we already have the data we need via the OwningRef, we still need
51 // to advance the DecodeContext's position so it's in a valid state after
52 // the method. We use read_raw_bytes() for that.
53 let _ = d.read_raw_bytes(len);
54
5099ac24
FG
55 let inner = odht::HashTable::from_raw_bytes(o).unwrap_or_else(|e| {
56 panic!("decode error: {}", e);
57 });
58 DefPathHashMapRef::OwnedFromMetadata(inner)
c295e0f8
XL
59 }
60}