mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 04:32:52 +01:00
Merge #635
635: Masks take 3 r=AfoHT a=korken89 This solves the `MASKS` generation issue by having `rtic::export` do the feature gating. Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
This commit is contained in:
commit
d1aa20643d
4 changed files with 101 additions and 18 deletions
|
@ -7,6 +7,14 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Generation of masks for the source masking scheduling for thumbv6
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
## [v1.1.1] - 2022-04-13
|
## [v1.1.1] - 2022-04-13
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
|
use crate::{analyze::Analysis, check::Extra, codegen::util};
|
||||||
use proc_macro2::TokenStream as TokenStream2;
|
use proc_macro2::TokenStream as TokenStream2;
|
||||||
use quote::quote;
|
use quote::quote;
|
||||||
use rtic_syntax::{analyze::Ownership, ast::App};
|
use rtic_syntax::{analyze::Ownership, ast::App};
|
||||||
|
use std::collections::HashMap;
|
||||||
use crate::{analyze::Analysis, check::Extra, codegen::util};
|
|
||||||
|
|
||||||
/// Generates `static` variables and shared resource proxies
|
/// Generates `static` variables and shared resource proxies
|
||||||
pub fn codegen(
|
pub fn codegen(
|
||||||
|
@ -108,35 +108,71 @@ pub fn codegen(
|
||||||
// Computing mapping of used interrupts to masks
|
// Computing mapping of used interrupts to masks
|
||||||
let interrupt_ids = analysis.interrupts.iter().map(|(p, (id, _))| (p, id));
|
let interrupt_ids = analysis.interrupts.iter().map(|(p, (id, _))| (p, id));
|
||||||
|
|
||||||
use std::collections::HashMap;
|
let mut prio_to_masks = HashMap::new();
|
||||||
let mut masks: HashMap<u8, _> = std::collections::HashMap::new();
|
|
||||||
let device = &extra.device;
|
let device = &extra.device;
|
||||||
|
let mut uses_exceptions_with_resources = false;
|
||||||
for p in 0..3 {
|
|
||||||
masks.insert(p, quote!(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
for (&priority, name) in interrupt_ids.chain(app.hardware_tasks.values().flat_map(|task| {
|
for (&priority, name) in interrupt_ids.chain(app.hardware_tasks.values().flat_map(|task| {
|
||||||
if !util::is_exception(&task.args.binds) {
|
if !util::is_exception(&task.args.binds) {
|
||||||
Some((&task.args.priority, &task.args.binds))
|
Some((&task.args.priority, &task.args.binds))
|
||||||
} else {
|
} else {
|
||||||
// TODO: exceptions not implemented
|
// 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);
|
||||||
|
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
})) {
|
})) {
|
||||||
let name = quote!(#device::Interrupt::#name as u32);
|
let v = prio_to_masks.entry(priority - 1).or_insert(Vec::new());
|
||||||
if let Some(v) = masks.get_mut(&(priority - 1)) {
|
v.push(quote!(#device::Interrupt::#name as u32));
|
||||||
*v = quote!(#v | 1 << #name);
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut mask_arr: Vec<(_, _)> = masks.iter().collect();
|
// Call rtic::export::create_mask([u32; N]), where the array is the list of shifts
|
||||||
mask_arr.sort_by_key(|(k, _v)| *k);
|
|
||||||
let mask_arr: Vec<_> = mask_arr.iter().map(|(_, v)| v).collect();
|
|
||||||
|
|
||||||
mod_app.push(quote!(
|
let mut mask_arr = Vec::new();
|
||||||
const MASKS: [u32; 3] = [#(#mask_arr),*];
|
// 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),*])
|
||||||
));
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
let masks_name = util::priority_masks_ident();
|
||||||
|
mod_app.push(quote!(
|
||||||
|
#[doc(hidden)]
|
||||||
|
#[allow(non_camel_case_types)]
|
||||||
|
const #masks_name: [u32; 3] = [#(#mask_arr),*];
|
||||||
|
));
|
||||||
|
|
||||||
|
if uses_exceptions_with_resources {
|
||||||
|
mod_app.push(quote!(
|
||||||
|
#[doc(hidden)]
|
||||||
|
#[allow(non_camel_case_types)]
|
||||||
|
const __rtic_internal_V6_ERROR: () = rtic::export::v6_panic();
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
(mod_app, mod_resources)
|
(mod_app, mod_resources)
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,6 +36,7 @@ pub fn impl_mutex(
|
||||||
};
|
};
|
||||||
|
|
||||||
let device = &extra.device;
|
let device = &extra.device;
|
||||||
|
let masks_name = priority_masks_ident();
|
||||||
quote!(
|
quote!(
|
||||||
#(#cfgs)*
|
#(#cfgs)*
|
||||||
impl<'a> rtic::Mutex for #path<'a> {
|
impl<'a> rtic::Mutex for #path<'a> {
|
||||||
|
@ -52,7 +53,7 @@ pub fn impl_mutex(
|
||||||
#priority,
|
#priority,
|
||||||
CEILING,
|
CEILING,
|
||||||
#device::NVIC_PRIO_BITS,
|
#device::NVIC_PRIO_BITS,
|
||||||
&MASKS,
|
&#masks_name,
|
||||||
f,
|
f,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -252,6 +253,10 @@ pub fn static_shared_resource_ident(name: &Ident) -> Ident {
|
||||||
mark_internal_name(&format!("shared_resource_{}", name))
|
mark_internal_name(&format!("shared_resource_{}", name))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn priority_masks_ident() -> Ident {
|
||||||
|
mark_internal_name("MASKS")
|
||||||
|
}
|
||||||
|
|
||||||
pub fn static_local_resource_ident(name: &Ident) -> Ident {
|
pub fn static_local_resource_ident(name: &Ident) -> Ident {
|
||||||
mark_internal_name(&format!("local_resource_{}", name))
|
mark_internal_name(&format!("local_resource_{}", name))
|
||||||
}
|
}
|
||||||
|
|
|
@ -315,3 +315,37 @@ unsafe fn clear_enable_mask(mask: u32) {
|
||||||
pub fn logical2hw(logical: u8, nvic_prio_bits: u8) -> u8 {
|
pub fn logical2hw(logical: u8, nvic_prio_bits: u8) -> u8 {
|
||||||
((1 << nvic_prio_bits) - logical) << (8 - nvic_prio_bits)
|
((1 << nvic_prio_bits) - logical) << (8 - nvic_prio_bits)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(not(armv6m))]
|
||||||
|
pub const fn create_mask<const N: usize>(_: [u32; N]) -> u32 {
|
||||||
|
0
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(armv6m)]
|
||||||
|
pub const fn create_mask<const N: usize>(list_of_shifts: [u32; N]) -> u32 {
|
||||||
|
let mut mask = 0;
|
||||||
|
let mut i = 0;
|
||||||
|
|
||||||
|
while i < N {
|
||||||
|
let shift = list_of_shifts[i];
|
||||||
|
i += 1;
|
||||||
|
|
||||||
|
if shift > 31 {
|
||||||
|
panic!("Generating masks for thumbv6 failed! Are you compiling for thumbv6 on an thumbv7 MCU?");
|
||||||
|
}
|
||||||
|
|
||||||
|
mask |= 1 << shift;
|
||||||
|
}
|
||||||
|
|
||||||
|
mask
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(not(armv6m))]
|
||||||
|
pub const fn v6_panic() {
|
||||||
|
// For non-v6 all is fine
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(armv6m)]
|
||||||
|
pub const fn v6_panic() {
|
||||||
|
panic!("Exceptions with shared resources are not allowed when compiling for thumbv6. Use local resources or `#[lock_free]` shared resources");
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue