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

another fix...

parent 0fd0b6e8
No related branches found
No related tags found
1 merge request!180Fix reduce cycles and nodes in fork joins
Pipeline #201669 passed
This commit is part of merge request !180. Comments created here will be created in the context of that merge request.
......@@ -177,7 +177,7 @@ pub fn nodes_in_fork_joins(
let mut set = HashSet::new();
set.insert(*fork);
// Iterate uses of fork.
// Iterate uses of the fork.
while let Some(item) = worklist.pop() {
for u in def_use.get_users(item) {
let terminate = *u == *join
......@@ -189,11 +189,15 @@ pub fn nodes_in_fork_joins(
worklist.push(*u);
}
set.insert(*u);
}
}
assert!(set.contains(join));
// Nodes in reduce cycles might not depend on the thread ID.
if terminate && let Some(cycle) = reduce_cycles.get(u) {
set.extend(cycle);
}
// Add all the nodes in the reduce cycle. Some of these nodes may not
// use thread IDs of the fork, so do this explicitly.
for u in def_use.get_users(*join) {
if let Some(cycle) = reduce_cycles.get(u) {
set.extend(cycle);
}
}
......
......@@ -292,7 +292,11 @@ impl<'a: 'b, 'b> FunctionEditor<'a> {
// gravestone.
for id in deleted_nodeids.iter() {
// Check that there are no users of deleted nodes.
assert!(editor.mut_def_use[id.idx()].is_empty());
assert!(
editor.mut_def_use[id.idx()].is_empty(),
"PANIC: Attempted to delete node {:?}, but there are still users of this node ({:?}).",
id, editor.mut_def_use[id.idx()]
);
editor.function.nodes[id.idx()] = Node::Start;
}
......
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