Skip to content
Snippets Groups Projects
Commit d9046f51 authored by Russel Arbore's avatar Russel Arbore
Browse files

Refactor arc clones into their own block

parent 74df0c63
No related branches found
No related tags found
1 merge request!193Fix parallel code gen in RT backend
Pipeline #201787 passed
...@@ -138,6 +138,7 @@ struct RTContext<'a> { ...@@ -138,6 +138,7 @@ struct RTContext<'a> {
#[derive(Debug, Clone, Default)] #[derive(Debug, Clone, Default)]
struct RustBlock { struct RustBlock {
prologue: String, prologue: String,
arc_clones: String,
data: String, data: String,
phi_tmp_assignments: String, phi_tmp_assignments: String,
phi_assignments: String, phi_assignments: String,
...@@ -268,8 +269,9 @@ impl<'a> RTContext<'a> { ...@@ -268,8 +269,9 @@ impl<'a> RTContext<'a> {
} else { } else {
write!( write!(
w, w,
"{}{}{}{}{}", "{}{}{}{}{}{}",
block.prologue, block.prologue,
block.arc_clones,
block.data, block.data,
block.phi_tmp_assignments, block.phi_tmp_assignments,
block.phi_assignments, block.phi_assignments,
...@@ -566,12 +568,14 @@ impl<'a> RTContext<'a> { ...@@ -566,12 +568,14 @@ impl<'a> RTContext<'a> {
assert_eq!(control, bb); assert_eq!(control, bb);
// The device backends ensure that device functions have the // The device backends ensure that device functions have the
// same interface as AsyncRust functions. // same interface as AsyncRust functions.
let block = &mut blocks.get_mut(&bb).unwrap().data; let block = &mut blocks.get_mut(&bb).unwrap();
let arc_clones = &mut block.arc_clones;
let block = &mut block.data;
let is_async = func.schedules[id.idx()].contains(&Schedule::AsyncCall); let is_async = func.schedules[id.idx()].contains(&Schedule::AsyncCall);
if is_async { if is_async {
for arg in args { for arg in args {
if let Some(arc) = self.clone_arc(*arg) { if let Some(arc) = self.clone_arc(*arg) {
write!(block, "{}", arc)?; write!(arc_clones, "{}", arc)?;
} }
} }
} }
...@@ -580,11 +584,13 @@ impl<'a> RTContext<'a> { ...@@ -580,11 +584,13 @@ impl<'a> RTContext<'a> {
(Device::AsyncRust, false) | (_, false) => { (Device::AsyncRust, false) | (_, false) => {
format!("{} = ", self.get_value(id, bb, true)) format!("{} = ", self.get_value(id, bb, true))
} }
(_, true) => format!( (_, true) => {
"{}*async_call_{}.lock().await = Some(::async_std::task::spawn(async move {{ ", write!(arc_clones, "{}", self.clone_arc(id).unwrap())?;
self.clone_arc(id).unwrap(), format!(
id.idx(), "*async_call_{}.lock().await = Some(::async_std::task::spawn(async move {{ ",
), id.idx(),
)
}
}; };
let postfix = match (device, is_async) { let postfix = match (device, is_async) {
(Device::AsyncRust, false) => ".await", (Device::AsyncRust, false) => ".await",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment