Rollup merge of #72707 - matthewjasper:rustc_min_spec, r=oli-obk
Use min_specialization in the remaining rustc crates This adds a lot of `transmute` calls to replace the unsound uses of specialization. It's ugly, but at least it's honest about what's going on. cc #71420, @RalfJung
This commit is contained in:
commit
eef9356e39
@ -602,7 +602,7 @@ macro_rules! which_arena_for_type {
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! declare_arena {
|
||||
([], [$($a:tt $name:ident: $ty:ty,)*], $tcx:lifetime) => {
|
||||
([], [$($a:tt $name:ident: $ty:ty, $gen_ty:ty;)*], $tcx:lifetime) => {
|
||||
#[derive(Default)]
|
||||
pub struct Arena<$tcx> {
|
||||
pub dropless: $crate::DroplessArena,
|
||||
@ -611,17 +611,17 @@ macro_rules! declare_arena {
|
||||
}
|
||||
|
||||
#[marker]
|
||||
pub trait ArenaAllocatable {}
|
||||
pub trait ArenaAllocatable<'tcx> {}
|
||||
|
||||
impl<T: Copy> ArenaAllocatable for T {}
|
||||
impl<'tcx, T: Copy> ArenaAllocatable<'tcx> for T {}
|
||||
|
||||
unsafe trait ArenaField<'tcx>: Sized {
|
||||
unsafe trait ArenaField<'tcx>: Sized + ArenaAllocatable<'tcx> {
|
||||
/// Returns a specific arena to allocate from.
|
||||
/// If `None` is returned, the `DropArena` will be used.
|
||||
fn arena<'a>(arena: &'a Arena<'tcx>) -> Option<&'a $crate::TypedArena<Self>>;
|
||||
}
|
||||
|
||||
unsafe impl<'tcx, T> ArenaField<'tcx> for T {
|
||||
unsafe impl<'tcx, T: ArenaAllocatable<'tcx>> ArenaField<'tcx> for T {
|
||||
#[inline]
|
||||
default fn arena<'a>(_: &'a Arena<'tcx>) -> Option<&'a $crate::TypedArena<Self>> {
|
||||
panic!()
|
||||
@ -630,18 +630,27 @@ macro_rules! declare_arena {
|
||||
|
||||
$(
|
||||
#[allow(unused_lifetimes)]
|
||||
impl<$tcx> ArenaAllocatable for $ty {}
|
||||
unsafe impl<$tcx> ArenaField<$tcx> for $ty {
|
||||
impl<$tcx> ArenaAllocatable<$tcx> for $ty {}
|
||||
unsafe impl<$tcx, '_x, '_y, '_z, '_w> ArenaField<$tcx> for $gen_ty where Self: ArenaAllocatable<$tcx> {
|
||||
#[inline]
|
||||
fn arena<'a>(_arena: &'a Arena<$tcx>) -> Option<&'a $crate::TypedArena<Self>> {
|
||||
$crate::which_arena_for_type!($a[&_arena.$name])
|
||||
// SAFETY: We only implement `ArenaAllocatable<$tcx>` for
|
||||
// `$ty`, so `$ty` and Self are the same type
|
||||
unsafe {
|
||||
::std::mem::transmute::<
|
||||
Option<&'a $crate::TypedArena<$ty>>,
|
||||
Option<&'a $crate::TypedArena<Self>>,
|
||||
>(
|
||||
$crate::which_arena_for_type!($a[&_arena.$name])
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
)*
|
||||
|
||||
impl<'tcx> Arena<'tcx> {
|
||||
#[inline]
|
||||
pub fn alloc<T: ArenaAllocatable>(&self, value: T) -> &mut T {
|
||||
pub fn alloc<T: ArenaAllocatable<'tcx>>(&self, value: T) -> &mut T {
|
||||
if !::std::mem::needs_drop::<T>() {
|
||||
return self.dropless.alloc(value);
|
||||
}
|
||||
@ -659,7 +668,7 @@ macro_rules! declare_arena {
|
||||
self.dropless.alloc_slice(value)
|
||||
}
|
||||
|
||||
pub fn alloc_from_iter<'a, T: ArenaAllocatable>(
|
||||
pub fn alloc_from_iter<'a, T: ArenaAllocatable<'tcx>>(
|
||||
&'a self,
|
||||
iter: impl ::std::iter::IntoIterator<Item = T>,
|
||||
) -> &'a mut [T] {
|
||||
|
@ -33,7 +33,7 @@
|
||||
#![feature(array_value_iter)]
|
||||
#![feature(crate_visibility_modifier)]
|
||||
#![feature(marker_trait_attr)]
|
||||
#![feature(specialization)] // FIXME: min_specialization does not work
|
||||
#![feature(min_specialization)]
|
||||
#![feature(or_patterns)]
|
||||
#![recursion_limit = "256"]
|
||||
|
||||
|
@ -12,41 +12,41 @@ macro_rules! arena_types {
|
||||
($macro:path, $args:tt, $tcx:lifetime) => (
|
||||
$macro!($args, [
|
||||
// HIR types
|
||||
[few] hir_krate: rustc_hir::Crate<$tcx>,
|
||||
[] arm: rustc_hir::Arm<$tcx>,
|
||||
[] asm_operand: rustc_hir::InlineAsmOperand<$tcx>,
|
||||
[] asm_template: rustc_ast::ast::InlineAsmTemplatePiece,
|
||||
[] attribute: rustc_ast::ast::Attribute,
|
||||
[] block: rustc_hir::Block<$tcx>,
|
||||
[] bare_fn_ty: rustc_hir::BareFnTy<$tcx>,
|
||||
[few] global_asm: rustc_hir::GlobalAsm,
|
||||
[] generic_arg: rustc_hir::GenericArg<$tcx>,
|
||||
[] generic_args: rustc_hir::GenericArgs<$tcx>,
|
||||
[] generic_bound: rustc_hir::GenericBound<$tcx>,
|
||||
[] generic_param: rustc_hir::GenericParam<$tcx>,
|
||||
[] expr: rustc_hir::Expr<$tcx>,
|
||||
[] field: rustc_hir::Field<$tcx>,
|
||||
[] field_pat: rustc_hir::FieldPat<$tcx>,
|
||||
[] fn_decl: rustc_hir::FnDecl<$tcx>,
|
||||
[] foreign_item: rustc_hir::ForeignItem<$tcx>,
|
||||
[] impl_item_ref: rustc_hir::ImplItemRef<$tcx>,
|
||||
[few] inline_asm: rustc_hir::InlineAsm<$tcx>,
|
||||
[few] llvm_inline_asm: rustc_hir::LlvmInlineAsm<$tcx>,
|
||||
[] local: rustc_hir::Local<$tcx>,
|
||||
[few] macro_def: rustc_hir::MacroDef<$tcx>,
|
||||
[] param: rustc_hir::Param<$tcx>,
|
||||
[] pat: rustc_hir::Pat<$tcx>,
|
||||
[] path: rustc_hir::Path<$tcx>,
|
||||
[] path_segment: rustc_hir::PathSegment<$tcx>,
|
||||
[] poly_trait_ref: rustc_hir::PolyTraitRef<$tcx>,
|
||||
[] qpath: rustc_hir::QPath<$tcx>,
|
||||
[] stmt: rustc_hir::Stmt<$tcx>,
|
||||
[] struct_field: rustc_hir::StructField<$tcx>,
|
||||
[] trait_item_ref: rustc_hir::TraitItemRef,
|
||||
[] ty: rustc_hir::Ty<$tcx>,
|
||||
[] type_binding: rustc_hir::TypeBinding<$tcx>,
|
||||
[] variant: rustc_hir::Variant<$tcx>,
|
||||
[] where_predicate: rustc_hir::WherePredicate<$tcx>,
|
||||
[few] hir_krate: rustc_hir::Crate<$tcx>, rustc_hir::Crate<'_x>;
|
||||
[] arm: rustc_hir::Arm<$tcx>, rustc_hir::Arm<'_x>;
|
||||
[] asm_operand: rustc_hir::InlineAsmOperand<$tcx>, rustc_hir::InlineAsmOperand<'_x>;
|
||||
[] asm_template: rustc_ast::ast::InlineAsmTemplatePiece, rustc_ast::ast::InlineAsmTemplatePiece;
|
||||
[] attribute: rustc_ast::ast::Attribute, rustc_ast::ast::Attribute;
|
||||
[] block: rustc_hir::Block<$tcx>, rustc_hir::Block<'_x>;
|
||||
[] bare_fn_ty: rustc_hir::BareFnTy<$tcx>, rustc_hir::BareFnTy<'_x>;
|
||||
[few] global_asm: rustc_hir::GlobalAsm, rustc_hir::GlobalAsm;
|
||||
[] generic_arg: rustc_hir::GenericArg<$tcx>, rustc_hir::GenericArg<'_x>;
|
||||
[] generic_args: rustc_hir::GenericArgs<$tcx>, rustc_hir::GenericArgs<'_x>;
|
||||
[] generic_bound: rustc_hir::GenericBound<$tcx>, rustc_hir::GenericBound<'_x>;
|
||||
[] generic_param: rustc_hir::GenericParam<$tcx>, rustc_hir::GenericParam<'_x>;
|
||||
[] expr: rustc_hir::Expr<$tcx>, rustc_hir::Expr<'_x>;
|
||||
[] field: rustc_hir::Field<$tcx>, rustc_hir::Field<'_x>;
|
||||
[] field_pat: rustc_hir::FieldPat<$tcx>, rustc_hir::FieldPat<'_x>;
|
||||
[] fn_decl: rustc_hir::FnDecl<$tcx>, rustc_hir::FnDecl<'_x>;
|
||||
[] foreign_item: rustc_hir::ForeignItem<$tcx>, rustc_hir::ForeignItem<'_x>;
|
||||
[] impl_item_ref: rustc_hir::ImplItemRef<$tcx>, rustc_hir::ImplItemRef<'_x>;
|
||||
[few] inline_asm: rustc_hir::InlineAsm<$tcx>, rustc_hir::InlineAsm<'_x>;
|
||||
[few] llvm_inline_asm: rustc_hir::LlvmInlineAsm<$tcx>, rustc_hir::LlvmInlineAsm<'_x>;
|
||||
[] local: rustc_hir::Local<$tcx>, rustc_hir::Local<'_x>;
|
||||
[few] macro_def: rustc_hir::MacroDef<$tcx>, rustc_hir::MacroDef<'_x>;
|
||||
[] param: rustc_hir::Param<$tcx>, rustc_hir::Param<'_x>;
|
||||
[] pat: rustc_hir::Pat<$tcx>, rustc_hir::Pat<'_x>;
|
||||
[] path: rustc_hir::Path<$tcx>, rustc_hir::Path<'_x>;
|
||||
[] path_segment: rustc_hir::PathSegment<$tcx>, rustc_hir::PathSegment<'_x>;
|
||||
[] poly_trait_ref: rustc_hir::PolyTraitRef<$tcx>, rustc_hir::PolyTraitRef<'_x>;
|
||||
[] qpath: rustc_hir::QPath<$tcx>, rustc_hir::QPath<'_x>;
|
||||
[] stmt: rustc_hir::Stmt<$tcx>, rustc_hir::Stmt<'_x>;
|
||||
[] struct_field: rustc_hir::StructField<$tcx>, rustc_hir::StructField<'_x>;
|
||||
[] trait_item_ref: rustc_hir::TraitItemRef, rustc_hir::TraitItemRef;
|
||||
[] ty: rustc_hir::Ty<$tcx>, rustc_hir::Ty<'_x>;
|
||||
[] type_binding: rustc_hir::TypeBinding<$tcx>, rustc_hir::TypeBinding<'_x>;
|
||||
[] variant: rustc_hir::Variant<$tcx>, rustc_hir::Variant<'_x>;
|
||||
[] where_predicate: rustc_hir::WherePredicate<$tcx>, rustc_hir::WherePredicate<'_x>;
|
||||
], $tcx);
|
||||
)
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ impl<'cx, 'tcx> InferCtxt<'cx, 'tcx> {
|
||||
) -> Fallible<CanonicalizedQueryResponse<'tcx, T>>
|
||||
where
|
||||
T: Debug + TypeFoldable<'tcx>,
|
||||
Canonical<'tcx, QueryResponse<'tcx, T>>: ArenaAllocatable,
|
||||
Canonical<'tcx, QueryResponse<'tcx, T>>: ArenaAllocatable<'tcx>,
|
||||
{
|
||||
let query_response = self.make_query_response(inference_vars, answer, fulfill_cx)?;
|
||||
let canonical_result = self.canonicalize_response(&query_response);
|
||||
|
@ -433,7 +433,7 @@ pub fn rustc_queries(input: TokenStream) -> TokenStream {
|
||||
|
||||
try_load_from_on_disk_cache_stream.extend(quote! {
|
||||
::rustc_middle::dep_graph::DepKind::#name => {
|
||||
if <#arg as DepNodeParams<TyCtxt<'_>>>::CAN_RECONSTRUCT_QUERY_KEY {
|
||||
if <#arg as DepNodeParams<TyCtxt<'_>>>::can_reconstruct_query_key() {
|
||||
debug_assert!($tcx.dep_graph
|
||||
.node_color($dep_node)
|
||||
.map(|c| c.is_green())
|
||||
@ -490,7 +490,7 @@ pub fn rustc_queries(input: TokenStream) -> TokenStream {
|
||||
// Add a match arm to force the query given the dep node
|
||||
dep_node_force_stream.extend(quote! {
|
||||
::rustc_middle::dep_graph::DepKind::#name => {
|
||||
if <#arg as DepNodeParams<TyCtxt<'_>>>::CAN_RECONSTRUCT_QUERY_KEY {
|
||||
if <#arg as DepNodeParams<TyCtxt<'_>>>::can_reconstruct_query_key() {
|
||||
if let Some(key) = <#arg as DepNodeParams<TyCtxt<'_>>>::recover($tcx, $dep_node) {
|
||||
force_query::<crate::ty::query::queries::#name<'_>, _>(
|
||||
$tcx,
|
||||
|
@ -7,7 +7,7 @@
|
||||
#![feature(nll)]
|
||||
#![feature(or_patterns)]
|
||||
#![feature(proc_macro_internals)]
|
||||
#![feature(specialization)] // FIXME: min_specialization ICEs
|
||||
#![feature(min_specialization)]
|
||||
#![feature(stmt_expr_attributes)]
|
||||
#![recursion_limit = "256"]
|
||||
|
||||
|
@ -30,7 +30,7 @@ use rustc_middle::mir::{self, interpret, Body, Promoted};
|
||||
use rustc_middle::ty::codec::TyDecoder;
|
||||
use rustc_middle::ty::{self, Ty, TyCtxt};
|
||||
use rustc_middle::util::common::record_time;
|
||||
use rustc_serialize::{opaque, Decodable, Decoder, SpecializedDecoder};
|
||||
use rustc_serialize::{opaque, Decodable, Decoder, SpecializedDecoder, UseSpecializedDecodable};
|
||||
use rustc_session::Session;
|
||||
use rustc_span::source_map::{respan, Spanned};
|
||||
use rustc_span::symbol::{sym, Ident, Symbol};
|
||||
@ -218,7 +218,7 @@ impl<'a, 'tcx> Metadata<'a, 'tcx> for (&'a CrateMetadataRef<'a>, TyCtxt<'tcx>) {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx, T: Decodable> Lazy<T> {
|
||||
impl<'a, 'tcx, T: Decodable> Lazy<T, ()> {
|
||||
fn decode<M: Metadata<'a, 'tcx>>(self, metadata: M) -> T {
|
||||
let mut dcx = metadata.decoder(self.position.get());
|
||||
dcx.lazy_state = LazyState::NodeStart(self.position);
|
||||
@ -226,7 +226,7 @@ impl<'a, 'tcx, T: Decodable> Lazy<T> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a: 'x, 'tcx: 'x, 'x, T: Decodable> Lazy<[T]> {
|
||||
impl<'a: 'x, 'tcx: 'x, 'x, T: Decodable> Lazy<[T], usize> {
|
||||
fn decode<M: Metadata<'a, 'tcx>>(
|
||||
self,
|
||||
metadata: M,
|
||||
@ -321,20 +321,20 @@ impl<'a, 'tcx> TyDecoder<'tcx> for DecodeContext<'a, 'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx, T> SpecializedDecoder<Lazy<T>> for DecodeContext<'a, 'tcx> {
|
||||
impl<'a, 'tcx, T> SpecializedDecoder<Lazy<T, ()>> for DecodeContext<'a, 'tcx> {
|
||||
fn specialized_decode(&mut self) -> Result<Lazy<T>, Self::Error> {
|
||||
self.read_lazy_with_meta(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx, T> SpecializedDecoder<Lazy<[T]>> for DecodeContext<'a, 'tcx> {
|
||||
impl<'a, 'tcx, T> SpecializedDecoder<Lazy<[T], usize>> for DecodeContext<'a, 'tcx> {
|
||||
fn specialized_decode(&mut self) -> Result<Lazy<[T]>, Self::Error> {
|
||||
let len = self.read_usize()?;
|
||||
if len == 0 { Ok(Lazy::empty()) } else { self.read_lazy_with_meta(len) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx, I: Idx, T> SpecializedDecoder<Lazy<Table<I, T>>> for DecodeContext<'a, 'tcx>
|
||||
impl<'a, 'tcx, I: Idx, T> SpecializedDecoder<Lazy<Table<I, T>, usize>> for DecodeContext<'a, 'tcx>
|
||||
where
|
||||
Option<T>: FixedSizeEncoding,
|
||||
{
|
||||
@ -515,8 +515,9 @@ impl<'a, 'tcx> SpecializedDecoder<Fingerprint> for DecodeContext<'a, 'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx, T: Decodable> SpecializedDecoder<mir::ClearCrossCrate<T>>
|
||||
for DecodeContext<'a, 'tcx>
|
||||
impl<'a, 'tcx, T> SpecializedDecoder<mir::ClearCrossCrate<T>> for DecodeContext<'a, 'tcx>
|
||||
where
|
||||
mir::ClearCrossCrate<T>: UseSpecializedDecodable,
|
||||
{
|
||||
#[inline]
|
||||
fn specialized_decode(&mut self) -> Result<mir::ClearCrossCrate<T>, Self::Error> {
|
||||
|
@ -27,7 +27,7 @@ use rustc_middle::mir::{self, interpret};
|
||||
use rustc_middle::traits::specialization_graph;
|
||||
use rustc_middle::ty::codec::{self as ty_codec, TyEncoder};
|
||||
use rustc_middle::ty::{self, SymbolName, Ty, TyCtxt};
|
||||
use rustc_serialize::{opaque, Encodable, Encoder, SpecializedEncoder};
|
||||
use rustc_serialize::{opaque, Encodable, Encoder, SpecializedEncoder, UseSpecializedEncodable};
|
||||
use rustc_session::config::CrateType;
|
||||
use rustc_span::source_map::Spanned;
|
||||
use rustc_span::symbol::{kw, sym, Ident, Symbol};
|
||||
@ -93,13 +93,13 @@ impl<'tcx> Encoder for EncodeContext<'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'tcx, T> SpecializedEncoder<Lazy<T>> for EncodeContext<'tcx> {
|
||||
impl<'tcx, T> SpecializedEncoder<Lazy<T, ()>> for EncodeContext<'tcx> {
|
||||
fn specialized_encode(&mut self, lazy: &Lazy<T>) -> Result<(), Self::Error> {
|
||||
self.emit_lazy_distance(*lazy)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'tcx, T> SpecializedEncoder<Lazy<[T]>> for EncodeContext<'tcx> {
|
||||
impl<'tcx, T> SpecializedEncoder<Lazy<[T], usize>> for EncodeContext<'tcx> {
|
||||
fn specialized_encode(&mut self, lazy: &Lazy<[T]>) -> Result<(), Self::Error> {
|
||||
self.emit_usize(lazy.meta)?;
|
||||
if lazy.meta == 0 {
|
||||
@ -109,7 +109,7 @@ impl<'tcx, T> SpecializedEncoder<Lazy<[T]>> for EncodeContext<'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'tcx, I: Idx, T> SpecializedEncoder<Lazy<Table<I, T>>> for EncodeContext<'tcx>
|
||||
impl<'tcx, I: Idx, T> SpecializedEncoder<Lazy<Table<I, T>, usize>> for EncodeContext<'tcx>
|
||||
where
|
||||
Option<T>: FixedSizeEncoding,
|
||||
{
|
||||
@ -228,8 +228,13 @@ impl<'tcx> SpecializedEncoder<LocalDefId> for EncodeContext<'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'tcx> SpecializedEncoder<Ty<'tcx>> for EncodeContext<'tcx> {
|
||||
fn specialized_encode(&mut self, ty: &Ty<'tcx>) -> Result<(), Self::Error> {
|
||||
impl<'a, 'b, 'tcx> SpecializedEncoder<&'a ty::TyS<'b>> for EncodeContext<'tcx>
|
||||
where
|
||||
&'a ty::TyS<'b>: UseSpecializedEncodable,
|
||||
{
|
||||
fn specialized_encode(&mut self, ty: &&'a ty::TyS<'b>) -> Result<(), Self::Error> {
|
||||
debug_assert!(self.tcx.lift(ty).is_some());
|
||||
let ty = unsafe { std::mem::transmute::<&&'a ty::TyS<'b>, &&'tcx ty::TyS<'tcx>>(ty) };
|
||||
ty_codec::encode_with_shorthand(self, ty, |ecx| &mut ecx.type_shorthands)
|
||||
}
|
||||
}
|
||||
@ -251,12 +256,19 @@ impl<'tcx> SpecializedEncoder<interpret::AllocId> for EncodeContext<'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'tcx> SpecializedEncoder<&'tcx [(ty::Predicate<'tcx>, Span)]> for EncodeContext<'tcx> {
|
||||
impl<'a, 'b, 'tcx> SpecializedEncoder<&'a [(ty::Predicate<'b>, Span)]> for EncodeContext<'tcx> {
|
||||
fn specialized_encode(
|
||||
&mut self,
|
||||
predicates: &&'tcx [(ty::Predicate<'tcx>, Span)],
|
||||
predicates: &&'a [(ty::Predicate<'b>, Span)],
|
||||
) -> Result<(), Self::Error> {
|
||||
ty_codec::encode_spanned_predicates(self, predicates, |ecx| &mut ecx.predicate_shorthands)
|
||||
debug_assert!(self.tcx.lift(*predicates).is_some());
|
||||
let predicates = unsafe {
|
||||
std::mem::transmute::<
|
||||
&&'a [(ty::Predicate<'b>, Span)],
|
||||
&&'tcx [(ty::Predicate<'tcx>, Span)],
|
||||
>(predicates)
|
||||
};
|
||||
ty_codec::encode_spanned_predicates(self, &predicates, |ecx| &mut ecx.predicate_shorthands)
|
||||
}
|
||||
}
|
||||
|
||||
@ -266,7 +278,10 @@ impl<'tcx> SpecializedEncoder<Fingerprint> for EncodeContext<'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'tcx, T: Encodable> SpecializedEncoder<mir::ClearCrossCrate<T>> for EncodeContext<'tcx> {
|
||||
impl<'tcx, T> SpecializedEncoder<mir::ClearCrossCrate<T>> for EncodeContext<'tcx>
|
||||
where
|
||||
mir::ClearCrossCrate<T>: UseSpecializedEncodable,
|
||||
{
|
||||
fn specialized_encode(&mut self, _: &mir::ClearCrossCrate<T>) -> Result<(), Self::Error> {
|
||||
Ok(())
|
||||
}
|
||||
|
@ -11,79 +11,109 @@
|
||||
macro_rules! arena_types {
|
||||
($macro:path, $args:tt, $tcx:lifetime) => (
|
||||
$macro!($args, [
|
||||
[] layouts: rustc_target::abi::Layout,
|
||||
[] layouts: rustc_target::abi::Layout, rustc_target::abi::Layout;
|
||||
// AdtDef are interned and compared by address
|
||||
[] adt_def: rustc_middle::ty::AdtDef,
|
||||
[decode] tables: rustc_middle::ty::TypeckTables<$tcx>,
|
||||
[] const_allocs: rustc_middle::mir::interpret::Allocation,
|
||||
[] adt_def: rustc_middle::ty::AdtDef, rustc_middle::ty::AdtDef;
|
||||
[decode] tables: rustc_middle::ty::TypeckTables<$tcx>, rustc_middle::ty::TypeckTables<'_x>;
|
||||
[] const_allocs: rustc_middle::mir::interpret::Allocation, rustc_middle::mir::interpret::Allocation;
|
||||
// Required for the incremental on-disk cache
|
||||
[few, decode] mir_keys: rustc_hir::def_id::DefIdSet,
|
||||
[] region_scope_tree: rustc_middle::middle::region::ScopeTree,
|
||||
[few, decode] mir_keys: rustc_hir::def_id::DefIdSet, rustc_hir::def_id::DefIdSet;
|
||||
[] region_scope_tree: rustc_middle::middle::region::ScopeTree, rustc_middle::middle::region::ScopeTree;
|
||||
[] dropck_outlives:
|
||||
rustc_middle::infer::canonical::Canonical<'tcx,
|
||||
rustc_middle::infer::canonical::QueryResponse<'tcx,
|
||||
rustc_middle::traits::query::DropckOutlivesResult<'tcx>
|
||||
>
|
||||
>,
|
||||
rustc_middle::infer::canonical::Canonical<'_x,
|
||||
rustc_middle::infer::canonical::QueryResponse<'_y,
|
||||
rustc_middle::traits::query::DropckOutlivesResult<'_z>
|
||||
>
|
||||
>;
|
||||
[] normalize_projection_ty:
|
||||
rustc_middle::infer::canonical::Canonical<'tcx,
|
||||
rustc_middle::infer::canonical::QueryResponse<'tcx,
|
||||
rustc_middle::traits::query::NormalizationResult<'tcx>
|
||||
>
|
||||
>,
|
||||
rustc_middle::infer::canonical::Canonical<'_x,
|
||||
rustc_middle::infer::canonical::QueryResponse<'_y,
|
||||
rustc_middle::traits::query::NormalizationResult<'_z>
|
||||
>
|
||||
>;
|
||||
[] implied_outlives_bounds:
|
||||
rustc_middle::infer::canonical::Canonical<'tcx,
|
||||
rustc_middle::infer::canonical::QueryResponse<'tcx,
|
||||
Vec<rustc_middle::traits::query::OutlivesBound<'tcx>>
|
||||
>
|
||||
>,
|
||||
rustc_middle::infer::canonical::Canonical<'_x,
|
||||
rustc_middle::infer::canonical::QueryResponse<'_y,
|
||||
Vec<rustc_middle::traits::query::OutlivesBound<'_z>>
|
||||
>
|
||||
>;
|
||||
[] type_op_subtype:
|
||||
rustc_middle::infer::canonical::Canonical<'tcx,
|
||||
rustc_middle::infer::canonical::QueryResponse<'tcx, ()>
|
||||
>,
|
||||
rustc_middle::infer::canonical::Canonical<'_x,
|
||||
rustc_middle::infer::canonical::QueryResponse<'_y, ()>
|
||||
>;
|
||||
[] type_op_normalize_poly_fn_sig:
|
||||
rustc_middle::infer::canonical::Canonical<'tcx,
|
||||
rustc_middle::infer::canonical::QueryResponse<'tcx, rustc_middle::ty::PolyFnSig<'tcx>>
|
||||
>,
|
||||
rustc_middle::infer::canonical::Canonical<'_x,
|
||||
rustc_middle::infer::canonical::QueryResponse<'_y, rustc_middle::ty::PolyFnSig<'_z>>
|
||||
>;
|
||||
[] type_op_normalize_fn_sig:
|
||||
rustc_middle::infer::canonical::Canonical<'tcx,
|
||||
rustc_middle::infer::canonical::QueryResponse<'tcx, rustc_middle::ty::FnSig<'tcx>>
|
||||
>,
|
||||
rustc_middle::infer::canonical::Canonical<'_x,
|
||||
rustc_middle::infer::canonical::QueryResponse<'_y, rustc_middle::ty::FnSig<'_z>>
|
||||
>;
|
||||
[] type_op_normalize_predicate:
|
||||
rustc_middle::infer::canonical::Canonical<'tcx,
|
||||
rustc_middle::infer::canonical::QueryResponse<'tcx, rustc_middle::ty::Predicate<'tcx>>
|
||||
>,
|
||||
rustc_middle::infer::canonical::Canonical<'_x,
|
||||
rustc_middle::infer::canonical::QueryResponse<'_y, rustc_middle::ty::Predicate<'_z>>
|
||||
>;
|
||||
[] type_op_normalize_ty:
|
||||
rustc_middle::infer::canonical::Canonical<'tcx,
|
||||
rustc_middle::infer::canonical::QueryResponse<'tcx, rustc_middle::ty::Ty<'tcx>>
|
||||
>,
|
||||
[few] all_traits: Vec<rustc_hir::def_id::DefId>,
|
||||
[few] privacy_access_levels: rustc_middle::middle::privacy::AccessLevels,
|
||||
[few] foreign_module: rustc_middle::middle::cstore::ForeignModule,
|
||||
[few] foreign_modules: Vec<rustc_middle::middle::cstore::ForeignModule>,
|
||||
[] upvars_mentioned: rustc_data_structures::fx::FxIndexMap<rustc_hir::HirId, rustc_hir::Upvar>,
|
||||
[] object_safety_violations: rustc_middle::traits::ObjectSafetyViolation,
|
||||
[] codegen_unit: rustc_middle::mir::mono::CodegenUnit<$tcx>,
|
||||
[] attribute: rustc_ast::ast::Attribute,
|
||||
[] name_set: rustc_data_structures::fx::FxHashSet<rustc_span::symbol::Symbol>,
|
||||
[] hir_id_set: rustc_hir::HirIdSet,
|
||||
rustc_middle::infer::canonical::Canonical<'_x,
|
||||
rustc_middle::infer::canonical::QueryResponse<'_y, &'_z rustc_middle::ty::TyS<'_w>>
|
||||
>;
|
||||
[few] all_traits: Vec<rustc_hir::def_id::DefId>, Vec<rustc_hir::def_id::DefId>;
|
||||
[few] privacy_access_levels: rustc_middle::middle::privacy::AccessLevels, rustc_middle::middle::privacy::AccessLevels;
|
||||
[few] foreign_module: rustc_middle::middle::cstore::ForeignModule, rustc_middle::middle::cstore::ForeignModule;
|
||||
[few] foreign_modules: Vec<rustc_middle::middle::cstore::ForeignModule>, Vec<rustc_middle::middle::cstore::ForeignModule>;
|
||||
[] upvars_mentioned: rustc_data_structures::fx::FxIndexMap<rustc_hir::HirId, rustc_hir::Upvar>, rustc_data_structures::fx::FxIndexMap<rustc_hir::HirId, rustc_hir::Upvar>;
|
||||
[] object_safety_violations: rustc_middle::traits::ObjectSafetyViolation, rustc_middle::traits::ObjectSafetyViolation;
|
||||
[] codegen_unit: rustc_middle::mir::mono::CodegenUnit<$tcx>, rustc_middle::mir::mono::CodegenUnit<'_x>;
|
||||
[] attribute: rustc_ast::ast::Attribute, rustc_ast::ast::Attribute;
|
||||
[] name_set: rustc_data_structures::fx::FxHashSet<rustc_span::symbol::Symbol>, rustc_data_structures::fx::FxHashSet<rustc_span::symbol::Symbol>;
|
||||
[] hir_id_set: rustc_hir::HirIdSet, rustc_hir::HirIdSet;
|
||||
|
||||
// Interned types
|
||||
[] tys: rustc_middle::ty::TyS<$tcx>,
|
||||
[] tys: rustc_middle::ty::TyS<$tcx>, rustc_middle::ty::TyS<'_x>;
|
||||
|
||||
// HIR query types
|
||||
[few] indexed_hir: rustc_middle::hir::map::IndexedHir<$tcx>,
|
||||
[few] hir_definitions: rustc_hir::definitions::Definitions,
|
||||
[] hir_owner: rustc_middle::hir::Owner<$tcx>,
|
||||
[] hir_owner_nodes: rustc_middle::hir::OwnerNodes<$tcx>,
|
||||
[few] indexed_hir: rustc_middle::hir::map::IndexedHir<$tcx>, rustc_middle::hir::map::IndexedHir<'_x>;
|
||||
[few] hir_definitions: rustc_hir::definitions::Definitions, rustc_hir::definitions::Definitions;
|
||||
[] hir_owner: rustc_middle::hir::Owner<$tcx>, rustc_middle::hir::Owner<'_x>;
|
||||
[] hir_owner_nodes: rustc_middle::hir::OwnerNodes<$tcx>, rustc_middle::hir::OwnerNodes<'_x>;
|
||||
|
||||
// Note that this deliberately duplicates items in the `rustc_hir::arena`,
|
||||
// since we need to allocate this type on both the `rustc_hir` arena
|
||||
// (during lowering) and the `librustc_middle` arena (for decoding MIR)
|
||||
[decode] asm_template: rustc_ast::ast::InlineAsmTemplatePiece,
|
||||
[decode] asm_template: rustc_ast::ast::InlineAsmTemplatePiece, rustc_ast::ast::InlineAsmTemplatePiece;
|
||||
|
||||
// This is used to decode the &'tcx [Span] for InlineAsm's line_spans.
|
||||
[decode] span: rustc_span::Span,
|
||||
[decode] span: rustc_span::Span, rustc_span::Span;
|
||||
], $tcx);
|
||||
)
|
||||
}
|
||||
|
@ -128,7 +128,7 @@ macro_rules! define_dep_nodes {
|
||||
// tuple args
|
||||
$({
|
||||
return <$tuple_arg_ty as DepNodeParams<TyCtxt<'_>>>
|
||||
::CAN_RECONSTRUCT_QUERY_KEY;
|
||||
::can_reconstruct_query_key();
|
||||
})*
|
||||
|
||||
true
|
||||
@ -304,7 +304,10 @@ rustc_dep_node_append!([define_dep_nodes!][ <'tcx>
|
||||
]);
|
||||
|
||||
impl<'tcx> DepNodeParams<TyCtxt<'tcx>> for DefId {
|
||||
const CAN_RECONSTRUCT_QUERY_KEY: bool = true;
|
||||
#[inline]
|
||||
fn can_reconstruct_query_key() -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
fn to_fingerprint(&self, tcx: TyCtxt<'tcx>) -> Fingerprint {
|
||||
tcx.def_path_hash(*self).0
|
||||
@ -320,7 +323,10 @@ impl<'tcx> DepNodeParams<TyCtxt<'tcx>> for DefId {
|
||||
}
|
||||
|
||||
impl<'tcx> DepNodeParams<TyCtxt<'tcx>> for LocalDefId {
|
||||
const CAN_RECONSTRUCT_QUERY_KEY: bool = true;
|
||||
#[inline]
|
||||
fn can_reconstruct_query_key() -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
fn to_fingerprint(&self, tcx: TyCtxt<'tcx>) -> Fingerprint {
|
||||
self.to_def_id().to_fingerprint(tcx)
|
||||
@ -336,7 +342,10 @@ impl<'tcx> DepNodeParams<TyCtxt<'tcx>> for LocalDefId {
|
||||
}
|
||||
|
||||
impl<'tcx> DepNodeParams<TyCtxt<'tcx>> for CrateNum {
|
||||
const CAN_RECONSTRUCT_QUERY_KEY: bool = true;
|
||||
#[inline]
|
||||
fn can_reconstruct_query_key() -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
fn to_fingerprint(&self, tcx: TyCtxt<'tcx>) -> Fingerprint {
|
||||
let def_id = DefId { krate: *self, index: CRATE_DEF_INDEX };
|
||||
@ -353,7 +362,10 @@ impl<'tcx> DepNodeParams<TyCtxt<'tcx>> for CrateNum {
|
||||
}
|
||||
|
||||
impl<'tcx> DepNodeParams<TyCtxt<'tcx>> for (DefId, DefId) {
|
||||
const CAN_RECONSTRUCT_QUERY_KEY: bool = false;
|
||||
#[inline]
|
||||
fn can_reconstruct_query_key() -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
// We actually would not need to specialize the implementation of this
|
||||
// method but it's faster to combine the hashes than to instantiate a full
|
||||
@ -375,7 +387,10 @@ impl<'tcx> DepNodeParams<TyCtxt<'tcx>> for (DefId, DefId) {
|
||||
}
|
||||
|
||||
impl<'tcx> DepNodeParams<TyCtxt<'tcx>> for HirId {
|
||||
const CAN_RECONSTRUCT_QUERY_KEY: bool = false;
|
||||
#[inline]
|
||||
fn can_reconstruct_query_key() -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
// We actually would not need to specialize the implementation of this
|
||||
// method but it's faster to combine the hashes than to instantiate a full
|
||||
|
@ -42,7 +42,7 @@
|
||||
#![feature(option_expect_none)]
|
||||
#![feature(or_patterns)]
|
||||
#![feature(range_is_empty)]
|
||||
#![feature(specialization)] // FIXME: min_specialization does not work
|
||||
#![feature(min_specialization)]
|
||||
#![feature(track_caller)]
|
||||
#![feature(trusted_len)]
|
||||
#![feature(vec_remove_item)]
|
||||
|
@ -457,8 +457,39 @@ impl<T> ClearCrossCrate<T> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<T: Encodable> rustc_serialize::UseSpecializedEncodable for ClearCrossCrate<T> {}
|
||||
impl<T: Decodable> rustc_serialize::UseSpecializedDecodable for ClearCrossCrate<T> {}
|
||||
const TAG_CLEAR_CROSS_CRATE_CLEAR: u8 = 0;
|
||||
const TAG_CLEAR_CROSS_CRATE_SET: u8 = 1;
|
||||
|
||||
impl<T: Encodable> rustc_serialize::UseSpecializedEncodable for ClearCrossCrate<T> {
|
||||
#[inline]
|
||||
fn default_encode<E: rustc_serialize::Encoder>(&self, e: &mut E) -> Result<(), E::Error> {
|
||||
match *self {
|
||||
ClearCrossCrate::Clear => TAG_CLEAR_CROSS_CRATE_CLEAR.encode(e),
|
||||
ClearCrossCrate::Set(ref val) => {
|
||||
TAG_CLEAR_CROSS_CRATE_SET.encode(e)?;
|
||||
val.encode(e)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
impl<T: Decodable> rustc_serialize::UseSpecializedDecodable for ClearCrossCrate<T> {
|
||||
#[inline]
|
||||
fn default_decode<D>(d: &mut D) -> Result<ClearCrossCrate<T>, D::Error>
|
||||
where
|
||||
D: rustc_serialize::Decoder,
|
||||
{
|
||||
let discr = u8::decode(d)?;
|
||||
|
||||
match discr {
|
||||
TAG_CLEAR_CROSS_CRATE_CLEAR => Ok(ClearCrossCrate::Clear),
|
||||
TAG_CLEAR_CROSS_CRATE_SET => {
|
||||
let val = T::decode(d)?;
|
||||
Ok(ClearCrossCrate::Set(val))
|
||||
}
|
||||
_ => unreachable!(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Grouped information about the source code origin of a MIR entity.
|
||||
/// Intended to be inspected by diagnostics and debuginfo.
|
||||
@ -1957,8 +1988,6 @@ impl<V, T> ProjectionElem<V, T> {
|
||||
/// and the index is a local.
|
||||
pub type PlaceElem<'tcx> = ProjectionElem<Local, Ty<'tcx>>;
|
||||
|
||||
impl<'tcx> Copy for PlaceElem<'tcx> {}
|
||||
|
||||
// At least on 64 bit systems, `PlaceElem` should not be larger than two pointers.
|
||||
#[cfg(target_arch = "x86_64")]
|
||||
static_assert_size!(PlaceElem<'_>, 16);
|
||||
|
@ -97,7 +97,7 @@ where
|
||||
|
||||
pub fn encode_spanned_predicates<'tcx, E, C>(
|
||||
encoder: &mut E,
|
||||
predicates: &'tcx [(ty::Predicate<'tcx>, Span)],
|
||||
predicates: &[(ty::Predicate<'tcx>, Span)],
|
||||
cache: C,
|
||||
) -> Result<(), E::Error>
|
||||
where
|
||||
@ -139,7 +139,7 @@ pub trait TyDecoder<'tcx>: Decoder {
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn decode_arena_allocable<D, T: ArenaAllocatable + Decodable>(
|
||||
pub fn decode_arena_allocable<'tcx, D, T: ArenaAllocatable<'tcx> + Decodable>(
|
||||
decoder: &mut D,
|
||||
) -> Result<&'tcx T, D::Error>
|
||||
where
|
||||
@ -149,7 +149,7 @@ where
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn decode_arena_allocable_slice<D, T: ArenaAllocatable + Decodable>(
|
||||
pub fn decode_arena_allocable_slice<'tcx, D, T: ArenaAllocatable<'tcx> + Decodable>(
|
||||
decoder: &mut D,
|
||||
) -> Result<&'tcx [T], D::Error>
|
||||
where
|
||||
@ -318,18 +318,38 @@ macro_rules! __impl_decoder_methods {
|
||||
macro_rules! impl_arena_allocatable_decoder {
|
||||
([]$args:tt) => {};
|
||||
([decode $(, $attrs:ident)*]
|
||||
[[$DecoderName:ident [$($typaram:tt),*]], [$name:ident: $ty:ty], $tcx:lifetime]) => {
|
||||
impl<$($typaram),*> SpecializedDecoder<&$tcx $ty> for $DecoderName<$($typaram),*> {
|
||||
[[$DecoderName:ident [$($typaram:tt),*]], [$name:ident: $ty:ty, $gen_ty:ty], $tcx:lifetime]) => {
|
||||
// FIXME(#36588): These impls are horribly unsound as they allow
|
||||
// the caller to pick any lifetime for `'tcx`, including `'static`.
|
||||
#[allow(unused_lifetimes)]
|
||||
impl<'_x, '_y, '_z, '_w, '_a, $($typaram),*> SpecializedDecoder<&'_a $gen_ty>
|
||||
for $DecoderName<$($typaram),*>
|
||||
where &'_a $gen_ty: UseSpecializedDecodable
|
||||
{
|
||||
#[inline]
|
||||
fn specialized_decode(&mut self) -> Result<&$tcx $ty, Self::Error> {
|
||||
decode_arena_allocable(self)
|
||||
fn specialized_decode(&mut self) -> Result<&'_a $gen_ty, Self::Error> {
|
||||
unsafe {
|
||||
std::mem::transmute::<
|
||||
Result<&$tcx $ty, Self::Error>,
|
||||
Result<&'_a $gen_ty, Self::Error>,
|
||||
>(decode_arena_allocable(self))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<&$tcx [$ty]> for $DecoderName<$($typaram),*> {
|
||||
#[allow(unused_lifetimes)]
|
||||
impl<'_x, '_y, '_z, '_w, '_a, $($typaram),*> SpecializedDecoder<&'_a [$gen_ty]>
|
||||
for $DecoderName<$($typaram),*>
|
||||
where &'_a [$gen_ty]: UseSpecializedDecodable
|
||||
{
|
||||
#[inline]
|
||||
fn specialized_decode(&mut self) -> Result<&$tcx [$ty], Self::Error> {
|
||||
decode_arena_allocable_slice(self)
|
||||
fn specialized_decode(&mut self) -> Result<&'_a [$gen_ty], Self::Error> {
|
||||
unsafe {
|
||||
std::mem::transmute::<
|
||||
Result<&$tcx [$ty], Self::Error>,
|
||||
Result<&'_a [$gen_ty], Self::Error>,
|
||||
>(decode_arena_allocable_slice(self))
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
@ -340,9 +360,9 @@ macro_rules! impl_arena_allocatable_decoder {
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! impl_arena_allocatable_decoders {
|
||||
($args:tt, [$($a:tt $name:ident: $ty:ty,)*], $tcx:lifetime) => {
|
||||
($args:tt, [$($a:tt $name:ident: $ty:ty, $gen_ty:ty;)*], $tcx:lifetime) => {
|
||||
$(
|
||||
impl_arena_allocatable_decoder!($a [$args, [$name: $ty], $tcx]);
|
||||
impl_arena_allocatable_decoder!($a [$args, [$name: $ty, $gen_ty], $tcx]);
|
||||
)*
|
||||
}
|
||||
}
|
||||
@ -352,14 +372,15 @@ macro_rules! implement_ty_decoder {
|
||||
($DecoderName:ident <$($typaram:tt),*>) => {
|
||||
mod __ty_decoder_impl {
|
||||
use std::borrow::Cow;
|
||||
use std::mem::transmute;
|
||||
|
||||
use rustc_serialize::{Decoder, SpecializedDecoder};
|
||||
use rustc_serialize::{Decoder, SpecializedDecoder, UseSpecializedDecodable};
|
||||
|
||||
use $crate::infer::canonical::CanonicalVarInfos;
|
||||
use $crate::ty;
|
||||
use $crate::ty::codec::*;
|
||||
use $crate::ty::subst::SubstsRef;
|
||||
use rustc_hir::def_id::{CrateNum};
|
||||
use $crate::ty::subst::InternalSubsts;
|
||||
use rustc_hir::def_id::CrateNum;
|
||||
|
||||
use rustc_span::Span;
|
||||
|
||||
@ -398,8 +419,7 @@ macro_rules! implement_ty_decoder {
|
||||
}
|
||||
|
||||
// FIXME(#36588): These impls are horribly unsound as they allow
|
||||
// the caller to pick any lifetime for `'tcx`, including `'static`,
|
||||
// by using the unspecialized proxies to them.
|
||||
// the caller to pick any lifetime for `'tcx`, including `'static`.
|
||||
|
||||
rustc_hir::arena_types!(impl_arena_allocatable_decoders, [$DecoderName [$($typaram),*]], 'tcx);
|
||||
arena_types!(impl_arena_allocatable_decoders, [$DecoderName [$($typaram),*]], 'tcx);
|
||||
@ -411,90 +431,98 @@ macro_rules! implement_ty_decoder {
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<ty::Ty<'tcx>>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
fn specialized_decode(&mut self) -> Result<ty::Ty<'tcx>, Self::Error> {
|
||||
decode_ty(self)
|
||||
impl<'_x, '_y, $($typaram),*> SpecializedDecoder<&'_x ty::TyS<'_y>>
|
||||
for $DecoderName<$($typaram),*>
|
||||
where &'_x ty::TyS<'_y>: UseSpecializedDecodable
|
||||
{
|
||||
fn specialized_decode(&mut self) -> Result<&'_x ty::TyS<'_y>, Self::Error> {
|
||||
unsafe { transmute::<Result<ty::Ty<'tcx>, Self::Error>, Result<&'_x ty::TyS<'_y>, Self::Error>>(decode_ty(self)) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<&'tcx [(ty::Predicate<'tcx>, Span)]>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
impl<'_x, '_y, $($typaram),*> SpecializedDecoder<&'_x [(ty::Predicate<'_y>, Span)]>
|
||||
for $DecoderName<$($typaram),*>
|
||||
where &'_x [(ty::Predicate<'_y>, Span)]: UseSpecializedDecodable {
|
||||
fn specialized_decode(&mut self)
|
||||
-> Result<&'tcx [(ty::Predicate<'tcx>, Span)], Self::Error> {
|
||||
decode_spanned_predicates(self)
|
||||
-> Result<&'_x [(ty::Predicate<'_y>, Span)], Self::Error>
|
||||
{
|
||||
unsafe { transmute(decode_spanned_predicates(self)) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<SubstsRef<'tcx>>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
fn specialized_decode(&mut self) -> Result<SubstsRef<'tcx>, Self::Error> {
|
||||
decode_substs(self)
|
||||
impl<'_x, '_y, $($typaram),*> SpecializedDecoder<&'_x InternalSubsts<'_y>>
|
||||
for $DecoderName<$($typaram),*>
|
||||
where &'_x InternalSubsts<'_y>: UseSpecializedDecodable {
|
||||
fn specialized_decode(&mut self) -> Result<&'_x InternalSubsts<'_y>, Self::Error> {
|
||||
unsafe { transmute(decode_substs(self)) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<$crate::mir::Place<'tcx>>
|
||||
impl<'_x, $($typaram),*> SpecializedDecoder<$crate::mir::Place<'_x>>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
fn specialized_decode(
|
||||
&mut self
|
||||
) -> Result<$crate::mir::Place<'tcx>, Self::Error> {
|
||||
decode_place(self)
|
||||
) -> Result<$crate::mir::Place<'_x>, Self::Error> {
|
||||
unsafe { transmute(decode_place(self)) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<ty::Region<'tcx>>
|
||||
impl<'_x, $($typaram),*> SpecializedDecoder<ty::Region<'_x>>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
fn specialized_decode(&mut self) -> Result<ty::Region<'tcx>, Self::Error> {
|
||||
decode_region(self)
|
||||
fn specialized_decode(&mut self) -> Result<ty::Region<'_x>, Self::Error> {
|
||||
unsafe { transmute(decode_region(self)) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<&'tcx ty::List<ty::Ty<'tcx>>>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
impl<'_x, '_y, '_z, $($typaram),*> SpecializedDecoder<&'_x ty::List<&'_y ty::TyS<'_z>>>
|
||||
for $DecoderName<$($typaram),*>
|
||||
where &'_x ty::List<&'_y ty::TyS<'_z>>: UseSpecializedDecodable {
|
||||
fn specialized_decode(&mut self)
|
||||
-> Result<&'tcx ty::List<ty::Ty<'tcx>>, Self::Error> {
|
||||
decode_ty_slice(self)
|
||||
-> Result<&'_x ty::List<&'_y ty::TyS<'_z>>, Self::Error> {
|
||||
unsafe { transmute(decode_ty_slice(self)) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<&'tcx ty::AdtDef>
|
||||
impl<'_x, $($typaram),*> SpecializedDecoder<&'_x ty::AdtDef>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
fn specialized_decode(&mut self) -> Result<&'tcx ty::AdtDef, Self::Error> {
|
||||
decode_adt_def(self)
|
||||
fn specialized_decode(&mut self) -> Result<&'_x ty::AdtDef, Self::Error> {
|
||||
unsafe { transmute(decode_adt_def(self)) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<&'tcx ty::List<ty::ExistentialPredicate<'tcx>>>
|
||||
impl<'_x, '_y, $($typaram),*> SpecializedDecoder<&'_x ty::List<ty::ExistentialPredicate<'_y>>>
|
||||
for $DecoderName<$($typaram),*>
|
||||
where &'_x ty::List<ty::ExistentialPredicate<'_y>>: UseSpecializedDecodable {
|
||||
fn specialized_decode(&mut self)
|
||||
-> Result<&'_x ty::List<ty::ExistentialPredicate<'_y>>, Self::Error> {
|
||||
unsafe { transmute(decode_existential_predicate_slice(self)) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<'_x, $($typaram),*> SpecializedDecoder<CanonicalVarInfos<'_x>>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
fn specialized_decode(&mut self)
|
||||
-> Result<&'tcx ty::List<ty::ExistentialPredicate<'tcx>>, Self::Error> {
|
||||
decode_existential_predicate_slice(self)
|
||||
-> Result<CanonicalVarInfos<'_x>, Self::Error> {
|
||||
unsafe { transmute(decode_canonical_var_infos(self)) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<CanonicalVarInfos<'tcx>>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
fn specialized_decode(&mut self)
|
||||
-> Result<CanonicalVarInfos<'tcx>, Self::Error> {
|
||||
decode_canonical_var_infos(self)
|
||||
impl<'_x, '_y, $($typaram),*> SpecializedDecoder<&'_x $crate::ty::Const<'_y>>
|
||||
for $DecoderName<$($typaram),*>
|
||||
where &'_x $crate::ty::Const<'_y>: UseSpecializedDecodable {
|
||||
fn specialized_decode(&mut self) -> Result<&'_x ty::Const<'_y>, Self::Error> {
|
||||
unsafe { transmute(decode_const(self)) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<&'tcx $crate::ty::Const<'tcx>>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
fn specialized_decode(&mut self) -> Result<&'tcx ty::Const<'tcx>, Self::Error> {
|
||||
decode_const(self)
|
||||
}
|
||||
}
|
||||
|
||||
impl<$($typaram),*> SpecializedDecoder<&'tcx $crate::mir::interpret::Allocation>
|
||||
impl<'_x, $($typaram),*> SpecializedDecoder<&'_x $crate::mir::interpret::Allocation>
|
||||
for $DecoderName<$($typaram),*> {
|
||||
fn specialized_decode(
|
||||
&mut self
|
||||
) -> Result<&'tcx $crate::mir::interpret::Allocation, Self::Error> {
|
||||
decode_allocation(self)
|
||||
) -> Result<&'_x $crate::mir::interpret::Allocation, Self::Error> {
|
||||
unsafe { transmute(decode_allocation(self)) }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
use crate::dep_graph::{DepNodeIndex, SerializedDepNodeIndex};
|
||||
use crate::mir::interpret;
|
||||
use crate::mir::interpret::{AllocDecodingSession, AllocDecodingState};
|
||||
use crate::mir::{self, interpret};
|
||||
use crate::ty::codec::{self as ty_codec, TyDecoder, TyEncoder};
|
||||
use crate::ty::context::TyCtxt;
|
||||
use crate::ty::{self, Ty};
|
||||
@ -26,9 +26,6 @@ use std::mem;
|
||||
|
||||
const TAG_FILE_FOOTER: u128 = 0xC0FFEE_C0FFEE_C0FFEE_C0FFEE_C0FFEE;
|
||||
|
||||
const TAG_CLEAR_CROSS_CRATE_CLEAR: u8 = 0;
|
||||
const TAG_CLEAR_CROSS_CRATE_SET: u8 = 1;
|
||||
|
||||
const TAG_NO_EXPN_DATA: u8 = 0;
|
||||
const TAG_EXPN_DATA_SHORTHAND: u8 = 1;
|
||||
const TAG_EXPN_DATA_INLINE: u8 = 2;
|
||||
@ -667,24 +664,6 @@ impl<'a, 'tcx> SpecializedDecoder<Fingerprint> for CacheDecoder<'a, 'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx, T: Decodable> SpecializedDecoder<mir::ClearCrossCrate<T>>
|
||||
for CacheDecoder<'a, 'tcx>
|
||||
{
|
||||
#[inline]
|
||||
fn specialized_decode(&mut self) -> Result<mir::ClearCrossCrate<T>, Self::Error> {
|
||||
let discr = u8::decode(self)?;
|
||||
|
||||
match discr {
|
||||
TAG_CLEAR_CROSS_CRATE_CLEAR => Ok(mir::ClearCrossCrate::Clear),
|
||||
TAG_CLEAR_CROSS_CRATE_SET => {
|
||||
let val = T::decode(self)?;
|
||||
Ok(mir::ClearCrossCrate::Set(val))
|
||||
}
|
||||
_ => unreachable!(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//- ENCODING -------------------------------------------------------------------
|
||||
|
||||
/// An encoder that can write the incr. comp. cache.
|
||||
@ -828,17 +807,20 @@ where
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx, E> SpecializedEncoder<Ty<'tcx>> for CacheEncoder<'a, 'tcx, E>
|
||||
impl<'a, 'b, 'c, 'tcx, E> SpecializedEncoder<&'b ty::TyS<'c>> for CacheEncoder<'a, 'tcx, E>
|
||||
where
|
||||
E: 'a + TyEncoder,
|
||||
&'b ty::TyS<'c>: UseSpecializedEncodable,
|
||||
{
|
||||
#[inline]
|
||||
fn specialized_encode(&mut self, ty: &Ty<'tcx>) -> Result<(), Self::Error> {
|
||||
fn specialized_encode(&mut self, ty: &&'b ty::TyS<'c>) -> Result<(), Self::Error> {
|
||||
debug_assert!(self.tcx.lift(ty).is_some());
|
||||
let ty = unsafe { std::mem::transmute::<&&'b ty::TyS<'c>, &&'tcx ty::TyS<'tcx>>(ty) };
|
||||
ty_codec::encode_with_shorthand(self, ty, |encoder| &mut encoder.type_shorthands)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx, E> SpecializedEncoder<&'tcx [(ty::Predicate<'tcx>, Span)]>
|
||||
impl<'a, 'b, 'c, 'tcx, E> SpecializedEncoder<&'b [(ty::Predicate<'c>, Span)]>
|
||||
for CacheEncoder<'a, 'tcx, E>
|
||||
where
|
||||
E: 'a + TyEncoder,
|
||||
@ -846,8 +828,15 @@ where
|
||||
#[inline]
|
||||
fn specialized_encode(
|
||||
&mut self,
|
||||
predicates: &&'tcx [(ty::Predicate<'tcx>, Span)],
|
||||
predicates: &&'b [(ty::Predicate<'c>, Span)],
|
||||
) -> Result<(), Self::Error> {
|
||||
debug_assert!(self.tcx.lift(*predicates).is_some());
|
||||
let predicates = unsafe {
|
||||
std::mem::transmute::<
|
||||
&&'b [(ty::Predicate<'c>, Span)],
|
||||
&&'tcx [(ty::Predicate<'tcx>, Span)],
|
||||
>(predicates)
|
||||
};
|
||||
ty_codec::encode_spanned_predicates(self, predicates, |encoder| {
|
||||
&mut encoder.predicate_shorthands
|
||||
})
|
||||
@ -890,23 +879,6 @@ impl<'a, 'tcx> SpecializedEncoder<Fingerprint> for CacheEncoder<'a, 'tcx, opaque
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'tcx, E, T> SpecializedEncoder<mir::ClearCrossCrate<T>> for CacheEncoder<'a, 'tcx, E>
|
||||
where
|
||||
E: 'a + TyEncoder,
|
||||
T: Encodable,
|
||||
{
|
||||
#[inline]
|
||||
fn specialized_encode(&mut self, val: &mir::ClearCrossCrate<T>) -> Result<(), Self::Error> {
|
||||
match *val {
|
||||
mir::ClearCrossCrate::Clear => TAG_CLEAR_CROSS_CRATE_CLEAR.encode(self),
|
||||
mir::ClearCrossCrate::Set(ref val) => {
|
||||
TAG_CLEAR_CROSS_CRATE_SET.encode(self)?;
|
||||
val.encode(self)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
macro_rules! encoder_methods {
|
||||
($($name:ident($ty:ty);)*) => {
|
||||
#[inline]
|
||||
@ -995,7 +967,7 @@ fn encode_query_results<'a, 'tcx, Q, E>(
|
||||
query_result_index: &mut EncodedQueryResultIndex,
|
||||
) -> Result<(), E::Error>
|
||||
where
|
||||
Q: super::QueryDescription<TyCtxt<'tcx>>,
|
||||
Q: super::QueryDescription<TyCtxt<'tcx>> + super::QueryAccessors<TyCtxt<'tcx>>,
|
||||
Q::Value: Encodable,
|
||||
E: 'a + TyEncoder,
|
||||
{
|
||||
|
@ -112,30 +112,53 @@ impl<T: Debug> IntoSelfProfilingString for T {
|
||||
}
|
||||
}
|
||||
|
||||
impl IntoSelfProfilingString for DefId {
|
||||
impl<T: SpecIntoSelfProfilingString> IntoSelfProfilingString for T {
|
||||
fn to_self_profile_string(&self, builder: &mut QueryKeyStringBuilder<'_, '_, '_>) -> StringId {
|
||||
self.spec_to_self_profile_string(builder)
|
||||
}
|
||||
}
|
||||
|
||||
#[rustc_specialization_trait]
|
||||
pub trait SpecIntoSelfProfilingString: Debug {
|
||||
fn spec_to_self_profile_string(
|
||||
&self,
|
||||
builder: &mut QueryKeyStringBuilder<'_, '_, '_>,
|
||||
) -> StringId;
|
||||
}
|
||||
|
||||
impl SpecIntoSelfProfilingString for DefId {
|
||||
fn spec_to_self_profile_string(
|
||||
&self,
|
||||
builder: &mut QueryKeyStringBuilder<'_, '_, '_>,
|
||||
) -> StringId {
|
||||
builder.def_id_to_string_id(*self)
|
||||
}
|
||||
}
|
||||
|
||||
impl IntoSelfProfilingString for CrateNum {
|
||||
fn to_self_profile_string(&self, builder: &mut QueryKeyStringBuilder<'_, '_, '_>) -> StringId {
|
||||
impl SpecIntoSelfProfilingString for CrateNum {
|
||||
fn spec_to_self_profile_string(
|
||||
&self,
|
||||
builder: &mut QueryKeyStringBuilder<'_, '_, '_>,
|
||||
) -> StringId {
|
||||
builder.def_id_to_string_id(DefId { krate: *self, index: CRATE_DEF_INDEX })
|
||||
}
|
||||
}
|
||||
|
||||
impl IntoSelfProfilingString for DefIndex {
|
||||
fn to_self_profile_string(&self, builder: &mut QueryKeyStringBuilder<'_, '_, '_>) -> StringId {
|
||||
impl SpecIntoSelfProfilingString for DefIndex {
|
||||
fn spec_to_self_profile_string(
|
||||
&self,
|
||||
builder: &mut QueryKeyStringBuilder<'_, '_, '_>,
|
||||
) -> StringId {
|
||||
builder.def_id_to_string_id(DefId { krate: LOCAL_CRATE, index: *self })
|
||||
}
|
||||
}
|
||||
|
||||
impl<T0, T1> IntoSelfProfilingString for (T0, T1)
|
||||
impl<T0, T1> SpecIntoSelfProfilingString for (T0, T1)
|
||||
where
|
||||
T0: IntoSelfProfilingString + Debug,
|
||||
T1: IntoSelfProfilingString + Debug,
|
||||
T0: SpecIntoSelfProfilingString,
|
||||
T1: SpecIntoSelfProfilingString,
|
||||
{
|
||||
default fn to_self_profile_string(
|
||||
fn spec_to_self_profile_string(
|
||||
&self,
|
||||
builder: &mut QueryKeyStringBuilder<'_, '_, '_>,
|
||||
) -> StringId {
|
||||
|
@ -1,4 +1,4 @@
|
||||
use crate::ty::{self, AdtSizedConstraint, Ty, TyCtxt};
|
||||
use crate::ty::{self, AdtSizedConstraint, Ty, TyCtxt, TyS};
|
||||
|
||||
use rustc_span::symbol::Symbol;
|
||||
|
||||
@ -13,9 +13,11 @@ impl<'tcx, T> Value<'tcx> for T {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'tcx> Value<'tcx> for Ty<'tcx> {
|
||||
fn from_cycle_error(tcx: TyCtxt<'tcx>) -> Ty<'tcx> {
|
||||
tcx.types.err
|
||||
impl<'tcx> Value<'tcx> for &'_ TyS<'_> {
|
||||
fn from_cycle_error(tcx: TyCtxt<'tcx>) -> Self {
|
||||
// SAFETY: This is never called when `Self` is not `Ty<'tcx>`.
|
||||
// FIXME: Represent the above fact in the trait system somehow.
|
||||
unsafe { std::mem::transmute::<Ty<'tcx>, Ty<'_>>(tcx.types.err) }
|
||||
}
|
||||
}
|
||||
|
||||
@ -25,8 +27,14 @@ impl<'tcx> Value<'tcx> for ty::SymbolName {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'tcx> Value<'tcx> for AdtSizedConstraint<'tcx> {
|
||||
impl<'tcx> Value<'tcx> for AdtSizedConstraint<'_> {
|
||||
fn from_cycle_error(tcx: TyCtxt<'tcx>) -> Self {
|
||||
AdtSizedConstraint(tcx.intern_type_list(&[tcx.types.err]))
|
||||
// SAFETY: This is never called when `Self` is not `AdtSizedConstraint<'tcx>`.
|
||||
// FIXME: Represent the above fact in the trait system somehow.
|
||||
unsafe {
|
||||
std::mem::transmute::<AdtSizedConstraint<'tcx>, AdtSizedConstraint<'_>>(
|
||||
AdtSizedConstraint(tcx.intern_type_list(&[tcx.types.err])),
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2409,8 +2409,6 @@ impl<'tcx> Const<'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'tcx> rustc_serialize::UseSpecializedDecodable for &'tcx Const<'tcx> {}
|
||||
|
||||
/// Represents a constant in Rust.
|
||||
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord, RustcEncodable, RustcDecodable, Hash)]
|
||||
#[derive(HashStable)]
|
||||
|
@ -91,7 +91,7 @@ impl<K: DepKind> fmt::Debug for DepNode<K> {
|
||||
}
|
||||
|
||||
pub trait DepNodeParams<Ctxt: DepContext>: fmt::Debug + Sized {
|
||||
const CAN_RECONSTRUCT_QUERY_KEY: bool;
|
||||
fn can_reconstruct_query_key() -> bool;
|
||||
|
||||
/// This method turns the parameters of a DepNodeConstructor into an opaque
|
||||
/// Fingerprint to be used in DepNode.
|
||||
@ -108,7 +108,7 @@ pub trait DepNodeParams<Ctxt: DepContext>: fmt::Debug + Sized {
|
||||
/// This method tries to recover the query key from the given `DepNode`,
|
||||
/// something which is needed when forcing `DepNode`s during red-green
|
||||
/// evaluation. The query system will only call this method if
|
||||
/// `CAN_RECONSTRUCT_QUERY_KEY` is `true`.
|
||||
/// `can_reconstruct_query_key()` is `true`.
|
||||
/// It is always valid to return `None` here, in which case incremental
|
||||
/// compilation will treat the query as having changed instead of forcing it.
|
||||
fn recover(tcx: Ctxt, dep_node: &DepNode<Ctxt::DepKind>) -> Option<Self>;
|
||||
@ -118,7 +118,10 @@ impl<Ctxt: DepContext, T> DepNodeParams<Ctxt> for T
|
||||
where
|
||||
T: HashStable<Ctxt::StableHashingContext> + fmt::Debug,
|
||||
{
|
||||
default const CAN_RECONSTRUCT_QUERY_KEY: bool = false;
|
||||
#[inline]
|
||||
default fn can_reconstruct_query_key() -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
default fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint {
|
||||
let mut hcx = tcx.create_stable_hashing_context();
|
||||
|
@ -4,7 +4,7 @@
|
||||
#![feature(const_panic)]
|
||||
#![feature(core_intrinsics)]
|
||||
#![feature(hash_raw_entry)]
|
||||
#![feature(specialization)] // FIXME: min_specialization rejects `default const`
|
||||
#![feature(min_specialization)]
|
||||
#![feature(stmt_expr_attributes)]
|
||||
#![feature(vec_remove_item)]
|
||||
|
||||
|
@ -10,7 +10,7 @@ Core encoding and decoding interfaces.
|
||||
test(attr(allow(unused_variables), deny(warnings)))
|
||||
)]
|
||||
#![feature(box_syntax)]
|
||||
#![feature(specialization)] // FIXME: min_specialization does not work
|
||||
#![feature(min_specialization)]
|
||||
#![feature(never_type)]
|
||||
#![feature(nll)]
|
||||
#![feature(associated_type_bounds)]
|
||||
|
@ -635,24 +635,6 @@ impl<T> Decodable for PhantomData<T> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, T: ?Sized + Encodable> Encodable for &'a T {
|
||||
fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
|
||||
(**self).encode(s)
|
||||
}
|
||||
}
|
||||
|
||||
impl<T: ?Sized + Encodable> Encodable for Box<T> {
|
||||
fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
|
||||
(**self).encode(s)
|
||||
}
|
||||
}
|
||||
|
||||
impl<T: Decodable> Decodable for Box<T> {
|
||||
fn decode<D: Decoder>(d: &mut D) -> Result<Box<T>, D::Error> {
|
||||
Ok(box Decodable::decode(d)?)
|
||||
}
|
||||
}
|
||||
|
||||
impl<T: Decodable> Decodable for Box<[T]> {
|
||||
fn decode<D: Decoder>(d: &mut D) -> Result<Box<[T]>, D::Error> {
|
||||
let v: Vec<T> = Decodable::decode(d)?;
|
||||
@ -1008,8 +990,20 @@ impl<T: UseSpecializedDecodable> Decodable for T {
|
||||
// for this exact reason.
|
||||
// May be fixable in a simpler fashion via the
|
||||
// more complex lattice model for specialization.
|
||||
impl<'a, T: ?Sized + Encodable> UseSpecializedEncodable for &'a T {}
|
||||
impl<T: ?Sized + Encodable> UseSpecializedEncodable for Box<T> {}
|
||||
impl<T: Decodable> UseSpecializedDecodable for Box<T> {}
|
||||
impl<'a, T: ?Sized + Encodable> UseSpecializedEncodable for &'a T {
|
||||
fn default_encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
|
||||
(**self).encode(s)
|
||||
}
|
||||
}
|
||||
impl<T: ?Sized + Encodable> UseSpecializedEncodable for Box<T> {
|
||||
fn default_encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
|
||||
(**self).encode(s)
|
||||
}
|
||||
}
|
||||
impl<T: Decodable> UseSpecializedDecodable for Box<T> {
|
||||
fn default_decode<D: Decoder>(d: &mut D) -> Result<Box<T>, D::Error> {
|
||||
Ok(box Decodable::decode(d)?)
|
||||
}
|
||||
}
|
||||
impl<'a, T: Decodable> UseSpecializedDecodable for &'a T {}
|
||||
impl<'a, T: Decodable> UseSpecializedDecodable for &'a [T] {}
|
||||
|
@ -90,7 +90,7 @@ pub trait InferCtxtBuilderExt<'tcx> {
|
||||
where
|
||||
K: TypeFoldable<'tcx>,
|
||||
R: Debug + TypeFoldable<'tcx>,
|
||||
Canonical<'tcx, QueryResponse<'tcx, R>>: ArenaAllocatable;
|
||||
Canonical<'tcx, QueryResponse<'tcx, R>>: ArenaAllocatable<'tcx>;
|
||||
}
|
||||
|
||||
impl<'tcx> InferCtxtBuilderExt<'tcx> for InferCtxtBuilder<'tcx> {
|
||||
@ -118,7 +118,7 @@ impl<'tcx> InferCtxtBuilderExt<'tcx> for InferCtxtBuilder<'tcx> {
|
||||
where
|
||||
K: TypeFoldable<'tcx>,
|
||||
R: Debug + TypeFoldable<'tcx>,
|
||||
Canonical<'tcx, QueryResponse<'tcx, R>>: ArenaAllocatable,
|
||||
Canonical<'tcx, QueryResponse<'tcx, R>>: ArenaAllocatable<'tcx>,
|
||||
{
|
||||
self.enter_with_canonical(
|
||||
DUMMY_SP,
|
||||
|
Loading…
Reference in New Issue
Block a user