rtic/macros/src/codegen/dispatchers.rs

144 lines
4.5 KiB
Rust
Raw Normal View History

use proc_macro2::TokenStream as TokenStream2;
use quote::quote;
2020-06-11 19:18:29 +02:00
use rtic_syntax::ast::App;
use crate::{analyze::Analysis, check::Extra, codegen::util};
/// Generates task dispatchers
2020-12-10 20:33:13 +01:00
pub fn codegen(app: &App, analysis: &Analysis, _extra: &Extra) -> Vec<TokenStream2> {
let mut items = vec![];
2020-08-27 13:21:56 +02:00
let interrupts = &analysis.interrupts;
for (&level, channel) in &analysis.channels {
let mut stmts = vec![];
let variants = channel
.tasks
.iter()
.map(|name| {
let cfgs = &app.software_tasks[name].cfgs;
quote!(
#(#cfgs)*
#name
)
})
.collect::<Vec<_>>();
let doc = format!(
"Software tasks to be dispatched at priority level {}",
level,
);
let t = util::spawn_t_ident(level);
items.push(quote!(
#[allow(non_camel_case_types)]
#[derive(Clone, Copy)]
#[doc = #doc]
2020-10-05 21:57:44 +02:00
pub enum #t {
2020-08-27 13:21:56 +02:00
#(#variants,)*
}
));
let n = util::capacity_typenum(channel.capacity, true);
let rq = util::rq_ident(level);
2020-09-01 19:04:55 +02:00
let (rq_ty, rq_expr) = {
2020-08-27 13:21:56 +02:00
(
quote!(rtic::export::SCRQ<#t, #n>),
quote!(rtic::export::Queue(unsafe {
rtic::export::iQueue::u8_sc()
})),
)
};
let doc = format!(
"Queue of tasks ready to be dispatched at priority level {}",
level
);
items.push(quote!(
#[doc = #doc]
2020-10-21 20:20:26 +02:00
static mut #rq: #rq_ty = #rq_expr;
2020-08-27 13:21:56 +02:00
));
let arms = channel
.tasks
.iter()
.map(|name| {
let task = &app.software_tasks[name];
let cfgs = &task.cfgs;
let fq = util::fq_ident(name);
let inputs = util::inputs_ident(name);
let (_, tupled, pats, _) = util::regroup_inputs(&task.inputs);
2020-12-08 20:49:13 +01:00
// TODO: Fix for new monotonics
// let (let_instant, instant) = if extra.monotonic.is_some() {
// let instants = util::instants_ident(name);
2020-12-08 20:49:13 +01:00
// (
// quote!(
// let instant =
// #instants.get_unchecked(usize::from(index)).as_ptr().read();
// ),
// quote!(, instant),
// )
// } else {
// (quote!(), quote!())
// };
let (let_instant, instant) = (quote!(), quote!());
2020-08-27 13:21:56 +02:00
let locals_new = if task.locals.is_empty() {
quote!()
} else {
quote!(#name::Locals::new(),)
};
2020-10-15 18:50:17 +02:00
let app_name = &app.name;
let app_path = quote! {crate::#app_name};
2020-08-27 13:21:56 +02:00
quote!(
#(#cfgs)*
#t::#name => {
let #tupled =
#inputs.get_unchecked(usize::from(index)).as_ptr().read();
#let_instant
#fq.split().0.enqueue_unchecked(index);
let priority = &rtic::export::Priority::new(PRIORITY);
2020-10-15 18:50:17 +02:00
#app_path::#name(
2020-08-27 13:21:56 +02:00
#locals_new
#name::Context::new(priority #instant)
#(,#pats)*
)
}
2020-08-27 13:21:56 +02:00
)
})
.collect::<Vec<_>>();
stmts.push(quote!(
while let Some((task, index)) = #rq.split().1.dequeue() {
match task {
#(#arms)*
}
2020-08-27 13:21:56 +02:00
}
));
let doc = format!("Interrupt handler to dispatch tasks at priority {}", level);
2020-10-23 10:35:56 +02:00
let interrupt = util::suffixed(&interrupts[&level].0.to_string());
let attribute = &interrupts[&level].1.attrs;
2020-08-27 13:21:56 +02:00
items.push(quote!(
#[allow(non_snake_case)]
#[doc = #doc]
#[no_mangle]
2020-10-23 10:35:56 +02:00
#(#attribute)*
2020-08-27 13:21:56 +02:00
unsafe fn #interrupt() {
/// The priority of this interrupt handler
const PRIORITY: u8 = #level;
rtic::export::run(PRIORITY, || {
#(#stmts)*
});
}
));
}
items
}