2015-12-01 09:07:15 -06:00
|
|
|
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// This module provides implementations for the thread-local encoding and
|
|
|
|
// decoding context traits in rustc::middle::cstore::tls.
|
|
|
|
|
2015-12-25 12:59:02 -06:00
|
|
|
use rbml::opaque::Encoder as OpaqueEncoder;
|
|
|
|
use rbml::opaque::Decoder as OpaqueDecoder;
|
2015-12-01 09:07:15 -06:00
|
|
|
use rustc::middle::cstore::tls;
|
|
|
|
use rustc::middle::def_id::DefId;
|
2016-03-22 09:21:46 -05:00
|
|
|
use rustc::middle::ty::subst::Substs;
|
2016-02-29 17:36:51 -06:00
|
|
|
use rustc::middle::ty::{self, TyCtxt};
|
2015-12-01 09:07:15 -06:00
|
|
|
|
|
|
|
use decoder::{self, Cmd};
|
|
|
|
use encoder;
|
|
|
|
use tydecode::TyDecoder;
|
|
|
|
use tyencode;
|
|
|
|
|
|
|
|
impl<'a, 'tcx: 'a> tls::EncodingContext<'tcx> for encoder::EncodeContext<'a, 'tcx> {
|
|
|
|
|
2016-02-29 17:36:51 -06:00
|
|
|
fn tcx<'s>(&'s self) -> &'s TyCtxt<'tcx> {
|
2015-12-01 09:07:15 -06:00
|
|
|
&self.tcx
|
|
|
|
}
|
|
|
|
|
2015-12-25 12:59:02 -06:00
|
|
|
fn encode_ty(&self, encoder: &mut OpaqueEncoder, t: ty::Ty<'tcx>) {
|
|
|
|
tyencode::enc_ty(encoder.cursor, &self.ty_str_ctxt(), t);
|
2015-12-01 09:07:15 -06:00
|
|
|
}
|
|
|
|
|
2015-12-25 12:59:02 -06:00
|
|
|
fn encode_substs(&self, encoder: &mut OpaqueEncoder, substs: &Substs<'tcx>) {
|
|
|
|
tyencode::enc_substs(encoder.cursor, &self.ty_str_ctxt(), substs);
|
2015-12-01 09:07:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct DecodingContext<'a, 'tcx: 'a> {
|
|
|
|
pub crate_metadata: Cmd<'a>,
|
2016-02-29 17:36:51 -06:00
|
|
|
pub tcx: &'a TyCtxt<'tcx>,
|
2015-12-01 09:07:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx: 'a> tls::DecodingContext<'tcx> for DecodingContext<'a, 'tcx> {
|
|
|
|
|
2016-02-29 17:36:51 -06:00
|
|
|
fn tcx<'s>(&'s self) -> &'s TyCtxt<'tcx> {
|
2015-12-01 09:07:15 -06:00
|
|
|
&self.tcx
|
|
|
|
}
|
|
|
|
|
2015-12-25 12:59:02 -06:00
|
|
|
fn decode_ty(&self, decoder: &mut OpaqueDecoder) -> ty::Ty<'tcx> {
|
2015-12-01 09:07:15 -06:00
|
|
|
let def_id_convert = &mut |did| {
|
|
|
|
decoder::translate_def_id(self.crate_metadata, did)
|
|
|
|
};
|
|
|
|
|
2015-12-25 12:59:02 -06:00
|
|
|
let starting_position = decoder.position();
|
2015-12-01 09:07:15 -06:00
|
|
|
|
|
|
|
let mut ty_decoder = TyDecoder::new(
|
|
|
|
self.crate_metadata.data.as_slice(),
|
|
|
|
self.crate_metadata.cnum,
|
|
|
|
starting_position,
|
|
|
|
self.tcx,
|
|
|
|
def_id_convert);
|
|
|
|
|
|
|
|
let ty = ty_decoder.parse_ty();
|
|
|
|
|
|
|
|
let end_position = ty_decoder.position();
|
|
|
|
|
|
|
|
// We can just reuse the tydecode implementation for parsing types, but
|
|
|
|
// we have to make sure to leave the rbml reader at the position just
|
|
|
|
// after the type.
|
2015-12-25 12:59:02 -06:00
|
|
|
decoder.advance(end_position - starting_position);
|
2015-12-01 09:07:15 -06:00
|
|
|
ty
|
|
|
|
}
|
|
|
|
|
2015-12-25 12:59:02 -06:00
|
|
|
fn decode_substs(&self, decoder: &mut OpaqueDecoder) -> Substs<'tcx> {
|
2015-12-01 09:07:15 -06:00
|
|
|
let def_id_convert = &mut |did| {
|
|
|
|
decoder::translate_def_id(self.crate_metadata, did)
|
|
|
|
};
|
|
|
|
|
2015-12-25 12:59:02 -06:00
|
|
|
let starting_position = decoder.position();
|
2015-12-01 09:07:15 -06:00
|
|
|
|
|
|
|
let mut ty_decoder = TyDecoder::new(
|
|
|
|
self.crate_metadata.data.as_slice(),
|
|
|
|
self.crate_metadata.cnum,
|
|
|
|
starting_position,
|
|
|
|
self.tcx,
|
|
|
|
def_id_convert);
|
|
|
|
|
|
|
|
let substs = ty_decoder.parse_substs();
|
|
|
|
|
|
|
|
let end_position = ty_decoder.position();
|
|
|
|
|
2015-12-25 12:59:02 -06:00
|
|
|
decoder.advance(end_position - starting_position);
|
2015-12-01 09:07:15 -06:00
|
|
|
substs
|
|
|
|
}
|
|
|
|
|
|
|
|
fn translate_def_id(&self, def_id: DefId) -> DefId {
|
|
|
|
decoder::translate_def_id(self.crate_metadata, def_id)
|
|
|
|
}
|
|
|
|
}
|