Skip to content
Snippets Groups Projects
Commit d3a245b5 authored by rarbore2's avatar rarbore2
Browse files

Ignore anti-deps in GCM for now

parent 19c7dde3
No related branches found
No related tags found
1 merge request!87Ignore anti-deps in GCM for now
...@@ -73,14 +73,15 @@ pub fn gcm( ...@@ -73,14 +73,15 @@ pub fn gcm(
.as_ref() .as_ref()
.into_iter() .into_iter()
.map(|id| *id) .map(|id| *id)
// TODO: once anti-dependence analysis is fixed, use it in GCM.
// Include "uses" from anti-dependencies. // Include "uses" from anti-dependencies.
.chain( //.chain(
antideps_uses // antideps_uses
.get(&id) // .get(&id)
.unwrap_or(&vec![]) // .unwrap_or(&vec![])
.into_iter() // .into_iter()
.map(|id| *id), // .map(|id| *id),
) //)
.map(|id| schedule_early[id.idx()]) .map(|id| schedule_early[id.idx()])
.collect(); .collect();
if let Some(use_places) = use_places { if let Some(use_places) = use_places {
...@@ -127,19 +128,16 @@ pub fn gcm( ...@@ -127,19 +128,16 @@ pub fn gcm(
// For every user, consider where we need to be to directly dominate the // For every user, consider where we need to be to directly dominate the
// user. // user.
for user in def_use for user in def_use.get_users(id).as_ref().into_iter().map(|id| *id)
.get_users(id) // TODO: once anti-dependence analysis is fixed, use it in GCM.
.as_ref() // Include "users" from anti-dependencies.
.into_iter() //.chain(
.map(|id| *id) // antideps_users
// Include "users" from anti-dependencies. // .get(&id)
.chain( // .unwrap_or(&vec![])
antideps_users // .into_iter()
.get(&id) // .map(|id| *id),
.unwrap_or(&vec![]) //)
.into_iter()
.map(|id| *id),
)
{ {
if let Node::Phi { control, data } = &function.nodes[user.idx()] { if let Node::Phi { control, data } = &function.nodes[user.idx()] {
// For phis, we need to dominate the block jumping to the phi in // For phis, we need to dominate the block jumping to the phi in
......
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