sparreal_macros/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
extern crate proc_macro;
#[macro_use]
extern crate quote;
extern crate core;
extern crate proc_macro2;
#[macro_use]
extern crate syn;
mod api_trait;
use proc_macro::TokenStream;
use proc_macro2::Span;
use syn::{
parse, spanned::Spanned, FnArg, ImplItem, ItemFn, ItemImpl, ItemTrait, Pat, PathArguments,
TraitItem, Type, Visibility,
};
/// Attribute to declare the entry point of the program
///
/// **IMPORTANT**: This attribute must appear exactly *once* in the dependency graph. Also, if you
/// are using Rust 1.30 the attribute must be used on a reachable item (i.e. there must be no
/// private modules between the item and the root of the crate); if the item is in the root of the
/// crate you'll be fine. This reachability restriction doesn't apply to Rust 1.31 and newer releases.
///
/// The specified function will be called by the reset handler *after* RAM has been initialized.
/// If present, the FPU will also be enabled before the function is called.
///
/// The type of the specified function must be `[unsafe] fn() -> !` (never ending function)
///
/// # Properties
///
/// The entry point will be called by the reset handler. The program can't reference to the entry
/// point, much less invoke it.
///
/// # Examples
///
/// - Simple entry point
///
/// ``` no_run
/// # #![no_main]
/// # use sparreal_macros::entry;
/// #[entry]
/// fn main() -> ! {
/// loop {
/// /* .. */
/// }
/// }
/// ```
#[proc_macro_attribute]
pub fn entry(args: TokenStream, input: TokenStream) -> TokenStream {
let f = parse_macro_input!(input as ItemFn);
// check the function arguments
if f.sig.inputs.len() > 3 {
return parse::Error::new(
f.sig.inputs.last().unwrap().span(),
"`#[entry]` function has too many arguments",
)
.to_compile_error()
.into();
}
for arg in &f.sig.inputs {
match arg {
FnArg::Receiver(_) => {
return parse::Error::new(arg.span(), "invalid argument")
.to_compile_error()
.into();
}
FnArg::Typed(t) => {
if !is_simple_type(&t.ty, "usize") {
return parse::Error::new(t.ty.span(), "argument type must be usize")
.to_compile_error()
.into();
}
}
}
}
// check the function signature
let valid_signature = f.sig.constness.is_none()
&& f.sig.asyncness.is_none()
&& f.vis == Visibility::Inherited
&& f.sig.abi.is_none()
&& f.sig.generics.params.is_empty()
&& f.sig.generics.where_clause.is_none()
&& f.sig.variadic.is_none()
// && match f.sig.output {
// ReturnType::Default => false,
// ReturnType::Type(_, ref ty) => matches!(**ty, Type::Never(_)),
// }
;
if !valid_signature {
return parse::Error::new(
f.span(),
"`#[entry]` function must have signature `[unsafe] fn([arg0: usize, ...]) `",
)
.to_compile_error()
.into();
}
if !args.is_empty() {
return parse::Error::new(Span::call_site(), "This attribute accepts no arguments")
.to_compile_error()
.into();
}
// XXX should we blacklist other attributes?
let attrs = f.attrs;
let unsafety = f.sig.unsafety;
let args = f.sig.inputs;
let stmts = f.block.stmts;
quote!(
#[allow(non_snake_case)]
#[no_mangle]
#(#attrs)*
pub #unsafety extern "C" fn __sparreal_rt_main(#args) {
#(#stmts)*
}
)
.into()
}
#[allow(unused)]
fn is_simple_type(ty: &Type, name: &str) -> bool {
if let Type::Path(p) = ty {
if p.qself.is_none() && p.path.leading_colon.is_none() && p.path.segments.len() == 1 {
let segment = p.path.segments.first().unwrap();
if segment.ident == name && segment.arguments == PathArguments::None {
return true;
}
}
}
false
}
#[proc_macro_attribute]
pub fn api_trait(_args: TokenStream, input: TokenStream) -> TokenStream {
let f = parse_macro_input!(input as ItemTrait);
let mut funcs = Vec::new();
for item in &f.items {
if let TraitItem::Fn(func) = item {
let ident = func.sig.ident.clone();
let inputs = func.sig.inputs.clone();
let output = func.sig.output.clone();
let api_name = format_ident!("__sparreal_api_{}", ident);
let mut args = Vec::new();
for arg in &inputs {
if let FnArg::Typed(t) = arg {
if let Pat::Ident(i) = t.pat.as_ref() {
let ident = &i.ident;
args.push(quote! { #ident , });
}
}
}
funcs.push(quote! {
pub unsafe fn #ident (#inputs) #output{
extern "Rust" {
fn #api_name ( #inputs ) #output;
}
#api_name ( #(#args)* )
}
});
}
}
quote! {
#f
#(#funcs)*
}
.into()
}
#[proc_macro_attribute]
pub fn api_impl(_args: TokenStream, input: TokenStream) -> TokenStream {
let f = parse_macro_input!(input as ItemImpl);
let mut funcs = Vec::new();
let ty = f.self_ty.clone();
for item in &f.items {
if let ImplItem::Fn(func) = item {
let ident = func.sig.ident.clone();
let inputs = func.sig.inputs.clone();
let output = func.sig.output.clone();
let api_name = format_ident!("__sparreal_api_{}", ident);
let mut args = Vec::new();
for arg in &inputs {
if let FnArg::Typed(t) = arg {
if let Pat::Ident(i) = t.pat.as_ref() {
let ident = &i.ident;
args.push(quote! { #ident , });
}
}
}
funcs.push(quote! {
#[no_mangle]
unsafe fn #api_name (#inputs) #output{
#ty:: #ident ( #(#args)* )
}
});
}
}
quote! {
#f
#(#funcs)*
}
.into()
}