Skip to content

Commit

Permalink
Fix tests and address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewjasper committed Aug 14, 2020
1 parent a225ddd commit e46c58f
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 202 deletions.
4 changes: 2 additions & 2 deletions src/librustc_middle/middle/codegen_fn_attrs.rs
Expand Up @@ -3,7 +3,7 @@ use rustc_attr::{InlineAttr, OptimizeAttr};
use rustc_session::config::SanitizerSet;
use rustc_span::symbol::Symbol;

#[derive(Clone, Encodable, Decodable, HashStable)]
#[derive(Clone, TyEncodable, TyDecodable, HashStable)]
pub struct CodegenFnAttrs {
pub flags: CodegenFnAttrFlags,
/// Parsed representation of the `#[inline]` attribute
Expand Down Expand Up @@ -37,7 +37,7 @@ pub struct CodegenFnAttrs {
}

bitflags! {
#[derive(Encodable, Decodable, HashStable)]
#[derive(TyEncodable, TyDecodable, HashStable)]
pub struct CodegenFnAttrFlags: u32 {
/// `#[cold]`: a hint to LLVM that this function, when called, is never on
/// the hot path.
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_middle/middle/exported_symbols.rs
Expand Up @@ -8,7 +8,7 @@ use rustc_macros::HashStable;
/// kind of crate, including cdylibs which export very few things.
/// `Rust` will only be exported if the crate produced is a Rust
/// dylib.
#[derive(Eq, PartialEq, Debug, Copy, Clone, Encodable, Decodable, HashStable)]
#[derive(Eq, PartialEq, Debug, Copy, Clone, TyEncodable, TyDecodable, HashStable)]
pub enum SymbolExportLevel {
C,
Rust,
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_middle/mir/mono.rs
Expand Up @@ -242,7 +242,7 @@ pub struct CodegenUnit<'tcx> {
/// Specifies the linkage type for a `MonoItem`.
///
/// See https://llvm.org/docs/LangRef.html#linkage-types for more details about these variants.
#[derive(Copy, Clone, PartialEq, Debug, Encodable, Decodable, HashStable)]
#[derive(Copy, Clone, PartialEq, Debug, TyEncodable, TyDecodable, HashStable)]
pub enum Linkage {
External,
AvailableExternally,
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_middle/ty/mod.rs
Expand Up @@ -2098,7 +2098,7 @@ impl<'tcx> VariantDef {
}
}

#[derive(Copy, Clone, Debug, PartialEq, Eq, Encodable, Decodable, HashStable)]
#[derive(Copy, Clone, Debug, PartialEq, Eq, TyEncodable, TyDecodable, HashStable)]
pub enum VariantDiscr {
/// Explicit value for this variant, i.e., `X = 123`.
/// The `DefId` corresponds to the embedded constant.
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_middle/ty/sty.rs
Expand Up @@ -215,7 +215,7 @@ impl TyKind<'tcx> {
/// A type that is not publicly constructable. This prevents people from making `TyKind::Error`
/// except through `tcx.err*()`.
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, PartialOrd, Ord)]
#[derive(Encodable, Decodable, HashStable)]
#[derive(TyEncodable, TyDecodable, HashStable)]
pub struct DelaySpanBugEmitted(pub(super) ());

// `TyKind` is used a lot. Make sure it doesn't unintentionally get bigger.
Expand Down
233 changes: 39 additions & 194 deletions src/librustc_serialize/serialize.rs
Expand Up @@ -385,11 +385,11 @@ pub trait Decoder {
/// `MetadataEncodable` macros.
///
/// * `Encodable` should be used in crates that don't depend on
/// `librustc_middle`.
/// `rustc_middle`.
/// * `MetadataEncodable` is used in `rustc_metadata` for types that contain
/// `rustc_metadata::rmeta::Lazy`.
/// * `TyEncodable` should be used for types that are only serialized in crate
/// metadata or the incremental cache, except for simple enums.where
/// * `MetadataEncodable` is used in `rustc_metadata` for types that are only
/// serialized in crate metadata.
/// metadata or the incremental cache. This is most types in `rustc_middle`.
pub trait Encodable<S: Encoder> {
fn encode(&self, s: &mut S) -> Result<(), S::Error>;
}
Expand All @@ -400,61 +400,50 @@ pub trait Encodable<S: Encoder> {
/// `MetadataDecodable` macros.
///
/// * `Decodable` should be used in crates that don't depend on
/// `librustc_middle`.
/// `rustc_middle`.
/// * `MetadataDecodable` is used in `rustc_metadata` for types that contain
/// `rustc_metadata::rmeta::Lazy`.
/// * `TyDecodable` should be used for types that are only serialized in crate
/// metadata or the incremental cache, except for simple enums.where
/// * `MetadataDecodable` is used in `rustc_metadata` for types that are only
/// serialized in crate metadata.
/// metadata or the incremental cache. This is most types in `rustc_middle`.
pub trait Decodable<D: Decoder>: Sized {
fn decode(d: &mut D) -> Result<Self, D::Error>;
}

impl<S: Encoder> Encodable<S> for usize {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_usize(*self)
}
}

impl<D: Decoder> Decodable<D> for usize {
fn decode(d: &mut D) -> Result<usize, D::Error> {
d.read_usize()
}
}

impl<S: Encoder> Encodable<S> for u8 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_u8(*self)
}
}

impl<D: Decoder> Decodable<D> for u8 {
fn decode(d: &mut D) -> Result<u8, D::Error> {
d.read_u8()
}
}

impl<S: Encoder> Encodable<S> for u16 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_u16(*self)
}
}

impl<D: Decoder> Decodable<D> for u16 {
fn decode(d: &mut D) -> Result<u16, D::Error> {
d.read_u16()
}
}
macro_rules! direct_serialize_impls {
($($ty:ident $emit_method:ident $read_method:ident),*) => {
$(
impl<S: Encoder> Encodable<S> for $ty {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.$emit_method(*self)
}
}

impl<S: Encoder> Encodable<S> for u32 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_u32(*self)
impl<D: Decoder> Decodable<D> for $ty {
fn decode(d: &mut D) -> Result<$ty, D::Error> {
d.$read_method()
}
}
)*
}
}

impl<D: Decoder> Decodable<D> for u32 {
fn decode(d: &mut D) -> Result<u32, D::Error> {
d.read_u32()
}
direct_serialize_impls! {
usize emit_usize read_usize,
u8 emit_u8 read_u8,
u16 emit_u16 read_u16,
u32 emit_u32 read_u32,
u64 emit_u64 read_u64,
u128 emit_u128 read_u128,
isize emit_isize read_isize,
i8 emit_i8 read_i8,
i16 emit_i16 read_i16,
i32 emit_i32 read_i32,
i64 emit_i64 read_i64,
i128 emit_i128 read_i128,
f32 emit_f32 read_f32,
f64 emit_f64 read_f64,
bool emit_bool read_bool,
char emit_char read_char
}

impl<S: Encoder> Encodable<S> for ::std::num::NonZeroU32 {
Expand All @@ -469,102 +458,6 @@ impl<D: Decoder> Decodable<D> for ::std::num::NonZeroU32 {
}
}

impl<S: Encoder> Encodable<S> for u64 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_u64(*self)
}
}

impl<D: Decoder> Decodable<D> for u64 {
fn decode(d: &mut D) -> Result<u64, D::Error> {
d.read_u64()
}
}

impl<S: Encoder> Encodable<S> for u128 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_u128(*self)
}
}

impl<D: Decoder> Decodable<D> for u128 {
fn decode(d: &mut D) -> Result<u128, D::Error> {
d.read_u128()
}
}

impl<S: Encoder> Encodable<S> for isize {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_isize(*self)
}
}

impl<D: Decoder> Decodable<D> for isize {
fn decode(d: &mut D) -> Result<isize, D::Error> {
d.read_isize()
}
}

impl<S: Encoder> Encodable<S> for i8 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_i8(*self)
}
}

impl<D: Decoder> Decodable<D> for i8 {
fn decode(d: &mut D) -> Result<i8, D::Error> {
d.read_i8()
}
}

impl<S: Encoder> Encodable<S> for i16 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_i16(*self)
}
}

impl<D: Decoder> Decodable<D> for i16 {
fn decode(d: &mut D) -> Result<i16, D::Error> {
d.read_i16()
}
}

impl<S: Encoder> Encodable<S> for i32 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_i32(*self)
}
}

impl<D: Decoder> Decodable<D> for i32 {
fn decode(d: &mut D) -> Result<i32, D::Error> {
d.read_i32()
}
}

impl<S: Encoder> Encodable<S> for i64 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_i64(*self)
}
}

impl<D: Decoder> Decodable<D> for i64 {
fn decode(d: &mut D) -> Result<i64, D::Error> {
d.read_i64()
}
}

impl<S: Encoder> Encodable<S> for i128 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_i128(*self)
}
}

impl<D: Decoder> Decodable<D> for i128 {
fn decode(d: &mut D) -> Result<i128, D::Error> {
d.read_i128()
}
}

impl<S: Encoder> Encodable<S> for str {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_str(self)
Expand All @@ -589,54 +482,6 @@ impl<D: Decoder> Decodable<D> for String {
}
}

impl<S: Encoder> Encodable<S> for f32 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_f32(*self)
}
}

impl<D: Decoder> Decodable<D> for f32 {
fn decode(d: &mut D) -> Result<f32, D::Error> {
d.read_f32()
}
}

impl<S: Encoder> Encodable<S> for f64 {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_f64(*self)
}
}

impl<D: Decoder> Decodable<D> for f64 {
fn decode(d: &mut D) -> Result<f64, D::Error> {
d.read_f64()
}
}

impl<S: Encoder> Encodable<S> for bool {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_bool(*self)
}
}

impl<D: Decoder> Decodable<D> for bool {
fn decode(d: &mut D) -> Result<bool, D::Error> {
d.read_bool()
}
}

impl<S: Encoder> Encodable<S> for char {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_char(*self)
}
}

impl<D: Decoder> Decodable<D> for char {
fn decode(d: &mut D) -> Result<char, D::Error> {
d.read_char()
}
}

impl<S: Encoder> Encodable<S> for () {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_unit()
Expand Down
2 changes: 1 addition & 1 deletion src/test/ui/ast-json/ast-json-noexpand-output.stdout
@@ -1 +1 @@
{"module":{"inner":{"lo":0,"hi":0},"items":[{"attrs":[],"id":0,"span":{"lo":0,"hi":0},"vis":{"node":"Inherited","span":{"lo":0,"hi":0}},"ident":{"name":"core","span":{"lo":0,"hi":0}},"kind":{"variant":"ExternCrate","fields":[null]},"tokens":null}],"inline":true},"attrs":[{"kind":{"variant":"Normal","fields":[{"path":{"span":{"lo":0,"hi":0},"segments":[{"ident":{"name":"crate_type","span":{"lo":0,"hi":0}},"id":0,"args":null}]},"args":{"variant":"Eq","fields":[{"lo":0,"hi":0},{"_field0":[[{"variant":"Token","fields":[{"kind":{"variant":"Literal","fields":[{"kind":"Str","symbol":"lib","suffix":null}]},"span":{"lo":0,"hi":0}}]},"NonJoint"]]}]}}]},"id":null,"style":"Inner","span":{"lo":0,"hi":0}}],"span":{"lo":0,"hi":0},"proc_macros":[]}
{"module":{"inner":{"lo":0,"hi":0},"items":[{"attrs":[],"id":0,"span":{"lo":0,"hi":0},"vis":{"node":"Inherited","span":{"lo":0,"hi":0}},"ident":{"name":"core","span":{"lo":0,"hi":0}},"kind":{"variant":"ExternCrate","fields":[null]},"tokens":null}],"inline":true},"attrs":[{"kind":{"variant":"Normal","fields":[{"path":{"span":{"lo":0,"hi":0},"segments":[{"ident":{"name":"crate_type","span":{"lo":0,"hi":0}},"id":0,"args":null}]},"args":{"variant":"Eq","fields":[{"lo":0,"hi":0},{"0":[[{"variant":"Token","fields":[{"kind":{"variant":"Literal","fields":[{"kind":"Str","symbol":"lib","suffix":null}]},"span":{"lo":0,"hi":0}}]},"NonJoint"]]}]}}]},"id":null,"style":"Inner","span":{"lo":0,"hi":0}}],"span":{"lo":0,"hi":0},"proc_macros":[]}
2 changes: 1 addition & 1 deletion src/test/ui/ast-json/ast-json-output.stdout
@@ -1 +1 @@
{"module":{"inner":{"lo":0,"hi":0},"items":[{"attrs":[{"kind":{"variant":"Normal","fields":[{"path":{"span":{"lo":0,"hi":0},"segments":[{"ident":{"name":"prelude_import","span":{"lo":0,"hi":0}},"id":0,"args":null}]},"args":"Empty"}]},"id":null,"style":"Outer","span":{"lo":0,"hi":0}}],"id":0,"span":{"lo":0,"hi":0},"vis":{"node":"Inherited","span":{"lo":0,"hi":0}},"ident":{"name":"","span":{"lo":0,"hi":0}},"kind":{"variant":"Use","fields":[{"prefix":{"span":{"lo":0,"hi":0},"segments":[{"ident":{"name":"{{root}}","span":{"lo":0,"hi":0}},"id":0,"args":null},{"ident":{"name":"std","span":{"lo":0,"hi":0}},"id":0,"args":null},{"ident":{"name":"prelude","span":{"lo":0,"hi":0}},"id":0,"args":null},{"ident":{"name":"v1","span":{"lo":0,"hi":0}},"id":0,"args":null}]},"kind":"Glob","span":{"lo":0,"hi":0}}]},"tokens":null},{"attrs":[{"kind":{"variant":"Normal","fields":[{"path":{"span":{"lo":0,"hi":0},"segments":[{"ident":{"name":"macro_use","span":{"lo":0,"hi":0}},"id":0,"args":null}]},"args":"Empty"}]},"id":null,"style":"Outer","span":{"lo":0,"hi":0}}],"id":0,"span":{"lo":0,"hi":0},"vis":{"node":"Inherited","span":{"lo":0,"hi":0}},"ident":{"name":"std","span":{"lo":0,"hi":0}},"kind":{"variant":"ExternCrate","fields":[null]},"tokens":null},{"attrs":[],"id":0,"span":{"lo":0,"hi":0},"vis":{"node":"Inherited","span":{"lo":0,"hi":0}},"ident":{"name":"core","span":{"lo":0,"hi":0}},"kind":{"variant":"ExternCrate","fields":[null]},"tokens":null}],"inline":true},"attrs":[{"kind":{"variant":"Normal","fields":[{"path":{"span":{"lo":0,"hi":0},"segments":[{"ident":{"name":"crate_type","span":{"lo":0,"hi":0}},"id":0,"args":null}]},"args":{"variant":"Eq","fields":[{"lo":0,"hi":0},{"_field0":[[{"variant":"Token","fields":[{"kind":{"variant":"Literal","fields":[{"kind":"Str","symbol":"lib","suffix":null}]},"span":{"lo":0,"hi":0}}]},"NonJoint"]]}]}}]},"id":null,"style":"Inner","span":{"lo":0,"hi":0}}],"span":{"lo":0,"hi":0},"proc_macros":[]}
{"module":{"inner":{"lo":0,"hi":0},"items":[{"attrs":[{"kind":{"variant":"Normal","fields":[{"path":{"span":{"lo":0,"hi":0},"segments":[{"ident":{"name":"prelude_import","span":{"lo":0,"hi":0}},"id":0,"args":null}]},"args":"Empty"}]},"id":null,"style":"Outer","span":{"lo":0,"hi":0}}],"id":0,"span":{"lo":0,"hi":0},"vis":{"node":"Inherited","span":{"lo":0,"hi":0}},"ident":{"name":"","span":{"lo":0,"hi":0}},"kind":{"variant":"Use","fields":[{"prefix":{"span":{"lo":0,"hi":0},"segments":[{"ident":{"name":"{{root}}","span":{"lo":0,"hi":0}},"id":0,"args":null},{"ident":{"name":"std","span":{"lo":0,"hi":0}},"id":0,"args":null},{"ident":{"name":"prelude","span":{"lo":0,"hi":0}},"id":0,"args":null},{"ident":{"name":"v1","span":{"lo":0,"hi":0}},"id":0,"args":null}]},"kind":"Glob","span":{"lo":0,"hi":0}}]},"tokens":null},{"attrs":[{"kind":{"variant":"Normal","fields":[{"path":{"span":{"lo":0,"hi":0},"segments":[{"ident":{"name":"macro_use","span":{"lo":0,"hi":0}},"id":0,"args":null}]},"args":"Empty"}]},"id":null,"style":"Outer","span":{"lo":0,"hi":0}}],"id":0,"span":{"lo":0,"hi":0},"vis":{"node":"Inherited","span":{"lo":0,"hi":0}},"ident":{"name":"std","span":{"lo":0,"hi":0}},"kind":{"variant":"ExternCrate","fields":[null]},"tokens":null},{"attrs":[],"id":0,"span":{"lo":0,"hi":0},"vis":{"node":"Inherited","span":{"lo":0,"hi":0}},"ident":{"name":"core","span":{"lo":0,"hi":0}},"kind":{"variant":"ExternCrate","fields":[null]},"tokens":null}],"inline":true},"attrs":[{"kind":{"variant":"Normal","fields":[{"path":{"span":{"lo":0,"hi":0},"segments":[{"ident":{"name":"crate_type","span":{"lo":0,"hi":0}},"id":0,"args":null}]},"args":{"variant":"Eq","fields":[{"lo":0,"hi":0},{"0":[[{"variant":"Token","fields":[{"kind":{"variant":"Literal","fields":[{"kind":"Str","symbol":"lib","suffix":null}]},"span":{"lo":0,"hi":0}}]},"NonJoint"]]}]}}]},"id":null,"style":"Inner","span":{"lo":0,"hi":0}}],"span":{"lo":0,"hi":0},"proc_macros":[]}

0 comments on commit e46c58f

Please sign in to comment.