mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 04:27:38 +00:00

This commit is aimed at making compiler generated entry functions (Basically just C `main` right now) more generic so other targets can do similar things for custom entry. This was initially implemented as part of https://github.com/rust-lang/rust/pull/100316. Currently, this moves the entry function name and Call convention to the target spec. Signed-off-by: Ayush Singh <ayushsingh1325@gmail.com>
117 lines
2.8 KiB
Rust
117 lines
2.8 KiB
Rust
use std::borrow::Cow;
|
|
use std::collections::BTreeMap;
|
|
|
|
pub use serde_json::Value as Json;
|
|
use serde_json::{Map, Number};
|
|
|
|
pub trait ToJson {
|
|
fn to_json(&self) -> Json;
|
|
}
|
|
|
|
impl ToJson for Json {
|
|
fn to_json(&self) -> Json {
|
|
self.clone()
|
|
}
|
|
}
|
|
|
|
macro_rules! to_json_impl_num {
|
|
($($t:ty), +) => (
|
|
$(impl ToJson for $t {
|
|
fn to_json(&self) -> Json {
|
|
Json::Number(Number::from(*self))
|
|
}
|
|
})+
|
|
)
|
|
}
|
|
|
|
to_json_impl_num! { isize, i8, i16, i32, i64, usize, u8, u16, u32, u64 }
|
|
|
|
impl ToJson for bool {
|
|
fn to_json(&self) -> Json {
|
|
Json::Bool(*self)
|
|
}
|
|
}
|
|
|
|
impl ToJson for str {
|
|
fn to_json(&self) -> Json {
|
|
Json::String(self.to_owned())
|
|
}
|
|
}
|
|
|
|
impl ToJson for String {
|
|
fn to_json(&self) -> Json {
|
|
Json::String(self.to_owned())
|
|
}
|
|
}
|
|
|
|
impl<'a> ToJson for Cow<'a, str> {
|
|
fn to_json(&self) -> Json {
|
|
Json::String(self.to_string())
|
|
}
|
|
}
|
|
|
|
impl<A: ToJson> ToJson for [A] {
|
|
fn to_json(&self) -> Json {
|
|
Json::Array(self.iter().map(|elt| elt.to_json()).collect())
|
|
}
|
|
}
|
|
|
|
impl<A: ToJson> ToJson for Vec<A> {
|
|
fn to_json(&self) -> Json {
|
|
Json::Array(self.iter().map(|elt| elt.to_json()).collect())
|
|
}
|
|
}
|
|
|
|
impl<'a, A: ToJson> ToJson for Cow<'a, [A]>
|
|
where
|
|
[A]: ToOwned,
|
|
{
|
|
fn to_json(&self) -> Json {
|
|
Json::Array(self.iter().map(|elt| elt.to_json()).collect())
|
|
}
|
|
}
|
|
|
|
impl<T: ToString, A: ToJson> ToJson for BTreeMap<T, A> {
|
|
fn to_json(&self) -> Json {
|
|
let mut d = Map::new();
|
|
for (key, value) in self {
|
|
d.insert(key.to_string(), value.to_json());
|
|
}
|
|
Json::Object(d)
|
|
}
|
|
}
|
|
|
|
impl<A: ToJson> ToJson for Option<A> {
|
|
fn to_json(&self) -> Json {
|
|
match *self {
|
|
None => Json::Null,
|
|
Some(ref value) => value.to_json(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ToJson for crate::abi::call::Conv {
|
|
fn to_json(&self) -> Json {
|
|
let s = match self {
|
|
Self::C => "C",
|
|
Self::Rust => "Rust",
|
|
Self::RustCold => "RustCold",
|
|
Self::ArmAapcs => "ArmAapcs",
|
|
Self::CCmseNonSecureCall => "CCmseNonSecureCall",
|
|
Self::Msp430Intr => "Msp430Intr",
|
|
Self::PtxKernel => "PtxKernel",
|
|
Self::X86Fastcall => "X86Fastcall",
|
|
Self::X86Intr => "X86Intr",
|
|
Self::X86Stdcall => "X86Stdcall",
|
|
Self::X86ThisCall => "X86ThisCall",
|
|
Self::X86VectorCall => "X86VectorCall",
|
|
Self::X86_64SysV => "X86_64SysV",
|
|
Self::X86_64Win64 => "X86_64Win64",
|
|
Self::AmdGpuKernel => "AmdGpuKernel",
|
|
Self::AvrInterrupt => "AvrInterrupt",
|
|
Self::AvrNonBlockingInterrupt => "AvrNonBlockingInterrupt",
|
|
};
|
|
Json::String(s.to_owned())
|
|
}
|
|
}
|