2019-06-13 23:56:59 +02:00
|
|
|
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};
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
use crate::{
|
|
|
|
analyze::Analysis,
|
|
|
|
check::Extra,
|
2021-07-06 22:47:48 +02:00
|
|
|
codegen::{local_resources_struct, module, shared_resources_struct},
|
2019-06-13 23:56:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/// 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
|
2019-06-13 23:56:59 +02:00
|
|
|
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![];
|
2019-06-13 23:56:59 +02:00
|
|
|
let mut root = vec![];
|
|
|
|
let mut user_tasks = vec![];
|
|
|
|
|
|
|
|
for (name, task) in &app.hardware_tasks {
|
2020-08-27 13:21:56 +02:00
|
|
|
let symbol = task.args.binds.clone();
|
2019-06-13 23:56:59 +02:00
|
|
|
let priority = task.args.priority;
|
2021-04-07 11:06:57 +02:00
|
|
|
let cfgs = &task.cfgs;
|
|
|
|
let attrs = &task.attrs;
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2020-10-01 18:17:15 +02:00
|
|
|
mod_app.push(quote!(
|
2019-06-13 23:56:59 +02:00
|
|
|
#[allow(non_snake_case)]
|
|
|
|
#[no_mangle]
|
2021-04-07 11:06:57 +02:00
|
|
|
#(#attrs)*
|
|
|
|
#(#cfgs)*
|
2019-06-13 23:56:59 +02:00
|
|
|
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(
|
2020-12-12 23:31:05 +01:00
|
|
|
#name::Context::new(&rtic::export::Priority::new(PRIORITY))
|
2019-06-13 23:56:59 +02:00
|
|
|
)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
));
|
|
|
|
|
2021-07-07 21:03:56 +02:00
|
|
|
let mut shared_needs_lt = false;
|
|
|
|
let mut local_needs_lt = false;
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2021-07-06 22:47:48 +02:00
|
|
|
// `${task}Locals`
|
|
|
|
if !task.args.local_resources.is_empty() {
|
2021-07-07 21:03:56 +02:00
|
|
|
let (item, constructor) = local_resources_struct::codegen(
|
|
|
|
Context::HardwareTask(name),
|
|
|
|
&mut local_needs_lt,
|
|
|
|
app,
|
|
|
|
);
|
2021-07-06 22:47:48 +02:00
|
|
|
|
|
|
|
root.push(item);
|
|
|
|
|
|
|
|
mod_app.push(constructor);
|
|
|
|
}
|
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
// `${task}Resources`
|
2021-07-05 21:40:01 +02:00
|
|
|
if !task.args.shared_resources.is_empty() {
|
2021-07-07 21:03:56 +02:00
|
|
|
let (item, constructor) = shared_resources_struct::codegen(
|
|
|
|
Context::HardwareTask(name),
|
|
|
|
&mut shared_needs_lt,
|
|
|
|
app,
|
|
|
|
);
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
root.push(item);
|
|
|
|
|
2020-10-01 18:17:15 +02:00
|
|
|
mod_app.push(constructor);
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
root.push(module::codegen(
|
|
|
|
Context::HardwareTask(name),
|
2021-07-07 21:03:56 +02:00
|
|
|
shared_needs_lt,
|
|
|
|
local_needs_lt,
|
2019-06-13 23:56:59 +02:00
|
|
|
app,
|
2020-10-05 21:57:44 +02:00
|
|
|
analysis,
|
2019-06-13 23:56:59 +02:00
|
|
|
extra,
|
|
|
|
));
|
|
|
|
|
2021-07-06 22:47:48 +02:00
|
|
|
if !task.is_extern {
|
2020-10-24 19:38:49 +02:00
|
|
|
let attrs = &task.attrs;
|
|
|
|
let context = &task.context;
|
|
|
|
let stmts = &task.stmts;
|
|
|
|
user_tasks.push(quote!(
|
|
|
|
#(#attrs)*
|
|
|
|
#[allow(non_snake_case)]
|
2021-07-06 22:47:48 +02:00
|
|
|
fn #name(#context: #name::Context) {
|
2020-10-24 19:38:49 +02:00
|
|
|
use rtic::Mutex as _;
|
2022-02-18 15:11:55 +01:00
|
|
|
use rtic::mutex::prelude::*;
|
2020-10-24 19:38:49 +02:00
|
|
|
|
|
|
|
#(#stmts)*
|
|
|
|
}
|
|
|
|
));
|
|
|
|
}
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:50:17 +02:00
|
|
|
(mod_app, root, user_tasks)
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|