generate resource proxies only when needed

only `static mut` resources need proxies
This commit is contained in:
Jorge Aparicio 2019-05-09 18:25:34 +02:00
parent bc024f1979
commit 36073a6342

View file

@ -234,40 +234,43 @@ fn resources(
));
}
if let Some(Ownership::Shared { ceiling }) = analysis.ownerships.get(name) {
let ptr = if res.expr.is_none() {
quote!(#name.as_mut_ptr())
} else {
quote!(&mut #name)
};
// generate a resource proxy when needed
if res.mutability.is_some() {
if let Some(Ownership::Shared { ceiling }) = analysis.ownerships.get(name) {
let ptr = if res.expr.is_none() {
quote!(#name.as_mut_ptr())
} else {
quote!(&mut #name)
};
mod_resources.push(quote!(
pub struct #name<'a> {
priority: &'a Priority,
}
impl<'a> #name<'a> {
#[inline(always)]
pub unsafe fn new(priority: &'a Priority) -> Self {
#name { priority }
mod_resources.push(quote!(
pub struct #name<'a> {
priority: &'a Priority,
}
#[inline(always)]
pub unsafe fn priority(&self) -> &Priority {
self.priority
}
}
));
impl<'a> #name<'a> {
#[inline(always)]
pub unsafe fn new(priority: &'a Priority) -> Self {
#name { priority }
}
const_app.push(impl_mutex(
app,
cfgs,
true,
name,
quote!(#ty),
*ceiling,
ptr,
));
#[inline(always)]
pub unsafe fn priority(&self) -> &Priority {
self.priority
}
}
));
const_app.push(impl_mutex(
app,
cfgs,
true,
name,
quote!(#ty),
*ceiling,
ptr,
));
}
}
}