Fix tests and address review comments
This commit is contained in:
parent
a225dddc2e
commit
e46c58fa7e
@ -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
|
||||
@ -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.
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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>;
|
||||
}
|
||||
@ -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)
|
||||
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<D: Decoder> Decodable<D> for $ty {
|
||||
fn decode(d: &mut D) -> Result<$ty, D::Error> {
|
||||
d.$read_method()
|
||||
}
|
||||
}
|
||||
)*
|
||||
}
|
||||
}
|
||||
|
||||
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()
|
||||
}
|
||||
}
|
||||
|
||||
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 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 {
|
||||
@ -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)
|
||||
@ -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()
|
||||
|
@ -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":[]}
|
||||
|
@ -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":[]}
|
||||
|
Loading…
Reference in New Issue
Block a user