2019-06-13 23:56:59 +02:00
|
|
|
use proc_macro2::TokenStream as TokenStream2;
|
|
|
|
use quote::quote;
|
2020-09-01 16:39:05 +02:00
|
|
|
use rtic_syntax::{analyze::Ownership, ast::App};
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
use crate::{analyze::Analysis, check::Extra, codegen::util};
|
|
|
|
|
|
|
|
/// Generates `static [mut]` variables and resource proxies
|
|
|
|
pub fn codegen(
|
|
|
|
app: &App,
|
|
|
|
analysis: &Analysis,
|
|
|
|
extra: &Extra,
|
|
|
|
) -> (
|
|
|
|
// const_app -- the `static [mut]` variables behind the proxies
|
|
|
|
Vec<TokenStream2>,
|
|
|
|
// mod_resources -- the `resources` module
|
|
|
|
TokenStream2,
|
2020-05-19 21:03:19 +02:00
|
|
|
// mod_resources_imports -- the `resources` module imports
|
|
|
|
Vec<TokenStream2>,
|
2019-06-13 23:56:59 +02:00
|
|
|
) {
|
|
|
|
let mut const_app = vec![];
|
|
|
|
let mut mod_resources = vec![];
|
2020-05-19 21:03:19 +02:00
|
|
|
let mut mod_resources_imports = vec![];
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2020-08-27 13:21:56 +02:00
|
|
|
for (name, res, expr, _) in app.resources(analysis) {
|
2019-06-13 23:56:59 +02:00
|
|
|
let cfgs = &res.cfgs;
|
|
|
|
let ty = &res.ty;
|
|
|
|
|
|
|
|
{
|
2020-08-27 13:21:56 +02:00
|
|
|
let section = if expr.is_none() {
|
2020-09-01 16:39:05 +02:00
|
|
|
util::link_section_uninit(true)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
let (ty, expr) = if let Some(expr) = expr {
|
|
|
|
(quote!(#ty), quote!(#expr))
|
|
|
|
} else {
|
|
|
|
(
|
|
|
|
quote!(core::mem::MaybeUninit<#ty>),
|
|
|
|
quote!(core::mem::MaybeUninit::uninit()),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
let attrs = &res.attrs;
|
|
|
|
const_app.push(quote!(
|
2019-07-10 22:42:44 +02:00
|
|
|
#[allow(non_upper_case_globals)]
|
2019-06-13 23:56:59 +02:00
|
|
|
#(#attrs)*
|
|
|
|
#(#cfgs)*
|
2019-06-29 09:11:42 +02:00
|
|
|
#section
|
2019-06-13 23:56:59 +02:00
|
|
|
static mut #name: #ty = #expr;
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2019-07-10 22:42:44 +02:00
|
|
|
if let Some(Ownership::Contended { ceiling }) = analysis.ownerships.get(name) {
|
|
|
|
mod_resources.push(quote!(
|
|
|
|
#[allow(non_camel_case_types)]
|
|
|
|
#(#cfgs)*
|
|
|
|
pub struct #name<'a> {
|
|
|
|
priority: &'a Priority,
|
|
|
|
}
|
|
|
|
|
|
|
|
#(#cfgs)*
|
|
|
|
impl<'a> #name<'a> {
|
|
|
|
#[inline(always)]
|
|
|
|
pub unsafe fn new(priority: &'a Priority) -> Self {
|
|
|
|
#name { priority }
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|
|
|
|
|
2019-07-10 22:42:44 +02:00
|
|
|
#[inline(always)]
|
|
|
|
pub unsafe fn priority(&self) -> &Priority {
|
|
|
|
self.priority
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|
2019-07-10 22:42:44 +02:00
|
|
|
}
|
|
|
|
));
|
|
|
|
|
|
|
|
let ptr = if expr.is_none() {
|
2020-04-08 16:43:47 +02:00
|
|
|
quote!(
|
|
|
|
#(#cfgs)*
|
|
|
|
#name.as_mut_ptr()
|
|
|
|
)
|
2019-07-10 22:42:44 +02:00
|
|
|
} else {
|
2020-04-08 16:43:47 +02:00
|
|
|
quote!(
|
|
|
|
#(#cfgs)*
|
|
|
|
&mut #name
|
|
|
|
)
|
2019-07-10 22:42:44 +02:00
|
|
|
};
|
|
|
|
|
2020-05-19 21:03:19 +02:00
|
|
|
mod_resources_imports.push(quote!(
|
|
|
|
#[allow(non_camel_case_types)]
|
|
|
|
#(#cfgs)*
|
|
|
|
#cfg_core
|
|
|
|
use super::#name;
|
|
|
|
));
|
|
|
|
|
2019-07-10 22:42:44 +02:00
|
|
|
const_app.push(util::impl_mutex(
|
|
|
|
extra,
|
|
|
|
cfgs,
|
|
|
|
true,
|
|
|
|
name,
|
|
|
|
quote!(#ty),
|
|
|
|
*ceiling,
|
|
|
|
ptr,
|
|
|
|
));
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mod_resources = if mod_resources.is_empty() {
|
|
|
|
quote!()
|
|
|
|
} else {
|
|
|
|
quote!(mod resources {
|
2020-06-11 19:18:29 +02:00
|
|
|
use rtic::export::Priority;
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
#(#mod_resources)*
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
2020-05-19 21:03:19 +02:00
|
|
|
(const_app, mod_resources, mod_resources_imports)
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|