rtic/macros/src/codegen/hardware_tasks.rs

109 lines
3 KiB
Rust
Raw Normal View History

use proc_macro2::TokenStream as TokenStream2;
2020-10-15 18:50:17 +02:00
use quote::quote;
2020-06-11 19:18:29 +02:00
use rtic_syntax::{ast::App, Context};
use crate::{
analyze::Analysis,
check::Extra,
2020-09-01 19:04:55 +02:00
codegen::{locals, module, resources_struct},
};
/// Generate support code for hardware tasks (`#[exception]`s and `#[interrupt]`s)
pub fn codegen(
app: &App,
analysis: &Analysis,
extra: &Extra,
) -> (
2020-10-01 18:17:15 +02:00
// mod_app_hardware_tasks -- interrupt handlers and `${task}Resources` constructors
Vec<TokenStream2>,
// root_hardware_tasks -- items that must be placed in the root of the crate:
// - `${task}Locals` structs
// - `${task}Resources` structs
// - `${task}` modules
Vec<TokenStream2>,
// user_hardware_tasks -- the `#[task]` functions written by the user
Vec<TokenStream2>,
) {
2020-10-01 18:17:15 +02:00
let mut mod_app = vec![];
let mut root = vec![];
let mut user_tasks = vec![];
for (name, task) in &app.hardware_tasks {
2021-07-05 21:40:01 +02:00
let locals_new = if task.args.local_resources.is_empty() {
quote!()
} else {
quote!(#name::Locals::new(),)
};
2020-08-27 13:21:56 +02:00
let symbol = task.args.binds.clone();
let priority = task.args.priority;
let cfgs = &task.cfgs;
let attrs = &task.attrs;
2020-10-01 18:17:15 +02:00
mod_app.push(quote!(
#[allow(non_snake_case)]
#[no_mangle]
#(#attrs)*
#(#cfgs)*
unsafe fn #symbol() {
const PRIORITY: u8 = #priority;
2020-06-11 19:18:29 +02:00
rtic::export::run(PRIORITY, || {
2021-05-06 19:40:37 +02:00
#name(
#locals_new
2020-12-12 23:31:05 +01:00
#name::Context::new(&rtic::export::Priority::new(PRIORITY))
)
});
}
));
let mut needs_lt = false;
// `${task}Resources`
2021-07-05 21:40:01 +02:00
if !task.args.shared_resources.is_empty() {
let (item, constructor) =
resources_struct::codegen(Context::HardwareTask(name), &mut needs_lt, app);
root.push(item);
2020-10-01 18:17:15 +02:00
mod_app.push(constructor);
}
root.push(module::codegen(
Context::HardwareTask(name),
needs_lt,
app,
2020-10-05 21:57:44 +02:00
analysis,
extra,
));
// `${task}Locals`
let mut locals_pat = None;
if !task.locals.is_empty() {
2020-09-01 16:39:05 +02:00
let (struct_, pat) = locals::codegen(Context::HardwareTask(name), &task.locals, app);
root.push(struct_);
locals_pat = Some(pat);
}
2020-10-24 19:38:49 +02:00
if !&task.is_extern {
let attrs = &task.attrs;
let context = &task.context;
let stmts = &task.stmts;
let locals_pat = locals_pat.iter();
user_tasks.push(quote!(
#(#attrs)*
#[allow(non_snake_case)]
fn #name(#(#locals_pat,)* #context: #name::Context) {
use rtic::Mutex as _;
2020-11-14 16:02:36 +01:00
use rtic::mutex_prelude::*;
2020-10-24 19:38:49 +02:00
#(#stmts)*
}
));
}
}
2020-10-15 18:50:17 +02:00
(mod_app, root, user_tasks)
}