2022-04-20 10:46:03 +02:00
|
|
|
use crate::{analyze::Analysis, check::Extra, codegen::util};
|
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};
|
2022-04-20 10:46:03 +02:00
|
|
|
use std::collections::HashMap;
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2021-07-05 21:40:01 +02:00
|
|
|
/// Generates `static` variables and shared resource proxies
|
2019-06-13 23:56:59 +02:00
|
|
|
pub fn codegen(
|
|
|
|
app: &App,
|
|
|
|
analysis: &Analysis,
|
|
|
|
extra: &Extra,
|
|
|
|
) -> (
|
2021-04-08 18:25:09 +02:00
|
|
|
// mod_app -- the `static` variables behind the proxies
|
2019-06-13 23:56:59 +02:00
|
|
|
Vec<TokenStream2>,
|
|
|
|
// mod_resources -- the `resources` module
|
|
|
|
TokenStream2,
|
|
|
|
) {
|
2020-10-01 18:17:15 +02:00
|
|
|
let mut mod_app = vec![];
|
2019-06-13 23:56:59 +02:00
|
|
|
let mut mod_resources = vec![];
|
|
|
|
|
2021-07-06 22:47:48 +02:00
|
|
|
for (name, res) in &app.shared_resources {
|
2019-06-13 23:56:59 +02:00
|
|
|
let cfgs = &res.cfgs;
|
|
|
|
let ty = &res.ty;
|
2021-12-25 13:17:16 +01:00
|
|
|
let mangled_name = &util::static_shared_resource_ident(name);
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2021-07-06 22:47:48 +02:00
|
|
|
// late resources in `util::link_section_uninit`
|
2021-07-08 23:18:44 +02:00
|
|
|
let section = util::link_section_uninit();
|
2021-07-06 22:47:48 +02:00
|
|
|
let attrs = &res.attrs;
|
2021-04-08 18:25:09 +02:00
|
|
|
|
2021-07-06 22:47:48 +02:00
|
|
|
// For future use
|
|
|
|
// let doc = format!(" RTIC internal: {}:{}", file!(), line!());
|
|
|
|
mod_app.push(quote!(
|
2021-08-19 08:21:18 +02:00
|
|
|
#[allow(non_camel_case_types)]
|
2021-07-06 22:47:48 +02:00
|
|
|
#[allow(non_upper_case_globals)]
|
|
|
|
// #[doc = #doc]
|
|
|
|
#[doc(hidden)]
|
|
|
|
#(#attrs)*
|
|
|
|
#(#cfgs)*
|
|
|
|
#section
|
|
|
|
static #mangled_name: rtic::RacyCell<core::mem::MaybeUninit<#ty>> = rtic::RacyCell::new(core::mem::MaybeUninit::uninit());
|
|
|
|
));
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2021-04-22 18:38:42 +02:00
|
|
|
// For future use
|
2021-04-08 18:25:09 +02:00
|
|
|
// let doc = format!(" RTIC internal: {}:{}", file!(), line!());
|
|
|
|
|
2021-11-11 14:22:47 +01:00
|
|
|
let shared_name = util::need_to_lock_ident(name);
|
|
|
|
|
2021-07-06 22:47:48 +02:00
|
|
|
if !res.properties.lock_free {
|
2019-07-10 22:42:44 +02:00
|
|
|
mod_resources.push(quote!(
|
2021-04-08 18:25:09 +02:00
|
|
|
// #[doc = #doc]
|
|
|
|
#[doc(hidden)]
|
2019-07-10 22:42:44 +02:00
|
|
|
#[allow(non_camel_case_types)]
|
|
|
|
#(#cfgs)*
|
2021-11-11 14:22:47 +01:00
|
|
|
pub struct #shared_name<'a> {
|
2019-07-10 22:42:44 +02:00
|
|
|
priority: &'a Priority,
|
|
|
|
}
|
|
|
|
|
|
|
|
#(#cfgs)*
|
2021-11-11 14:22:47 +01:00
|
|
|
impl<'a> #shared_name<'a> {
|
2019-07-10 22:42:44 +02:00
|
|
|
#[inline(always)]
|
|
|
|
pub unsafe fn new(priority: &'a Priority) -> Self {
|
2021-11-11 14:22:47 +01:00
|
|
|
#shared_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
|
|
|
}
|
|
|
|
));
|
|
|
|
|
2021-07-06 22:47:48 +02:00
|
|
|
let ptr = quote!(
|
|
|
|
#(#cfgs)*
|
2021-11-03 08:27:05 +01:00
|
|
|
#mangled_name.get_mut() as *mut _
|
2021-07-06 22:47:48 +02:00
|
|
|
);
|
2019-07-10 22:42:44 +02:00
|
|
|
|
2020-10-22 21:36:32 +02:00
|
|
|
let ceiling = match analysis.ownerships.get(name) {
|
2022-02-18 19:38:48 +01:00
|
|
|
Some(Ownership::Owned { priority } | Ownership::CoOwned { priority }) => *priority,
|
2020-10-22 21:36:32 +02:00
|
|
|
Some(Ownership::Contended { ceiling }) => *ceiling,
|
|
|
|
None => 0,
|
|
|
|
};
|
|
|
|
|
2021-04-22 18:38:42 +02:00
|
|
|
// For future use
|
2021-04-08 18:25:09 +02:00
|
|
|
// let doc = format!(" RTIC internal ({} resource): {}:{}", doc, file!(), line!());
|
|
|
|
|
2020-10-01 18:17:15 +02:00
|
|
|
mod_app.push(util::impl_mutex(
|
2019-07-10 22:42:44 +02:00
|
|
|
extra,
|
|
|
|
cfgs,
|
|
|
|
true,
|
2021-11-11 14:22:47 +01:00
|
|
|
&shared_name,
|
2022-02-18 19:38:48 +01:00
|
|
|
"e!(#ty),
|
2020-10-22 21:36:32 +02:00
|
|
|
ceiling,
|
2022-02-18 19:38:48 +01:00
|
|
|
&ptr,
|
2019-07-10 22:42:44 +02:00
|
|
|
));
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mod_resources = if mod_resources.is_empty() {
|
|
|
|
quote!()
|
|
|
|
} else {
|
2021-07-06 22:47:48 +02:00
|
|
|
quote!(mod shared_resources {
|
2020-06-11 19:18:29 +02:00
|
|
|
use rtic::export::Priority;
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
#(#mod_resources)*
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
2022-01-21 21:49:45 +01:00
|
|
|
// Computing mapping of used interrupts to masks
|
|
|
|
let interrupt_ids = analysis.interrupts.iter().map(|(p, (id, _))| (p, id));
|
|
|
|
|
2022-04-20 10:46:03 +02:00
|
|
|
let mut prio_to_masks = HashMap::new();
|
2022-01-21 21:49:45 +01:00
|
|
|
let device = &extra.device;
|
2022-04-20 13:02:55 +02:00
|
|
|
let mut uses_exceptions_with_resources = false;
|
2022-01-21 21:49:45 +01:00
|
|
|
|
|
|
|
for (&priority, name) in interrupt_ids.chain(app.hardware_tasks.values().flat_map(|task| {
|
|
|
|
if !util::is_exception(&task.args.binds) {
|
|
|
|
Some((&task.args.priority, &task.args.binds))
|
|
|
|
} else {
|
2022-04-20 13:02:55 +02:00
|
|
|
// If any resource to the exception uses non-lock-free or non-local resources this is
|
|
|
|
// not allwed on thumbv6.
|
|
|
|
uses_exceptions_with_resources = uses_exceptions_with_resources
|
|
|
|
|| task
|
|
|
|
.args
|
|
|
|
.shared_resources
|
|
|
|
.iter()
|
|
|
|
.map(|(ident, access)| {
|
|
|
|
if access.is_exclusive() {
|
|
|
|
if let Some(r) = app.shared_resources.get(ident) {
|
|
|
|
!r.properties.lock_free
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.any(|v| v);
|
|
|
|
|
2022-01-21 21:49:45 +01:00
|
|
|
None
|
|
|
|
}
|
|
|
|
})) {
|
2022-04-20 10:46:03 +02:00
|
|
|
let v = prio_to_masks.entry(priority - 1).or_insert(Vec::new());
|
|
|
|
v.push(quote!(#device::Interrupt::#name as u32));
|
2022-01-21 21:49:45 +01:00
|
|
|
}
|
|
|
|
|
2022-04-20 10:46:03 +02:00
|
|
|
// Call rtic::export::create_mask([u32; N]), where the array is the list of shifts
|
|
|
|
|
|
|
|
let mut mask_arr = Vec::new();
|
|
|
|
// NOTE: 0..3 assumes max 4 priority levels according to M0 spec
|
|
|
|
for i in 0..3 {
|
|
|
|
let v = if let Some(v) = prio_to_masks.get(&i) {
|
|
|
|
v.clone()
|
|
|
|
} else {
|
|
|
|
Vec::new()
|
|
|
|
};
|
|
|
|
|
|
|
|
mask_arr.push(quote!(
|
|
|
|
rtic::export::create_mask([#(#v),*])
|
|
|
|
));
|
|
|
|
}
|
2022-01-21 21:49:45 +01:00
|
|
|
|
2022-04-20 10:46:03 +02:00
|
|
|
let masks_name = util::priority_masks_ident();
|
2022-01-21 21:49:45 +01:00
|
|
|
mod_app.push(quote!(
|
2022-04-20 10:46:03 +02:00
|
|
|
#[doc(hidden)]
|
2022-05-10 13:38:23 +02:00
|
|
|
#[allow(non_upper_case_globals)]
|
2022-04-20 10:46:03 +02:00
|
|
|
const #masks_name: [u32; 3] = [#(#mask_arr),*];
|
2022-01-21 21:49:45 +01:00
|
|
|
));
|
|
|
|
|
2022-04-20 13:02:55 +02:00
|
|
|
if uses_exceptions_with_resources {
|
|
|
|
mod_app.push(quote!(
|
|
|
|
#[doc(hidden)]
|
2022-05-10 13:38:23 +02:00
|
|
|
#[allow(non_upper_case_globals)]
|
2022-04-20 13:02:55 +02:00
|
|
|
const __rtic_internal_V6_ERROR: () = rtic::export::v6_panic();
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2020-10-21 20:20:26 +02:00
|
|
|
(mod_app, mod_resources)
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|