Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Mark MergedLoadStoreMotion as not preserving MemDep results #102

Merged
merged 1 commit into from
Jan 25, 2018

Conversation

dotdash
Copy link

@dotdash dotdash commented Jan 25, 2018

MemDep caches results that signify that a dependence is non-local, and
there is currently no way to invalidate such cache entries.
Unfortunately, when MLSM sinks a store that can result in a non-local
dependence becoming a local one, and then MemDep gives wrong answers.
The easiest way out here is to just say that MLSM does indeed not
preserve MemDep results.

MemDep caches results that signify that a dependence is non-local, and
there is currently no way to invalidate such cache entries.
Unfortunately, when MLSM sinks a store that can result in a non-local
dependence becoming a local one, and then MemDep gives wrong answers.
The easiest way out here is to just say that MLSM does indeed not
preserve MemDep results.
@alexcrichton
Copy link
Member

Thanks! We're currently on the verge of upgrading to LLVM 5/6 though and these sorts of patches are sort of hard to carry across versions. Do we think that by the time we upgrade though LLVM will have an upstream fix to backport?

@nikomatsakis
Copy link

According to @nagisa, this would be relatively easy to port over to LLVM 6. This is fixing a segfault, so it's fairly important to have in general. (And I don't think the problem is fixed by LLVM 6, right?)

@nagisa
Copy link
Member

nagisa commented Jan 25, 2018

This issue is not yet fixed in LLVM 6 and should be fairly straightforward to port over.

@alexcrichton alexcrichton merged commit bc344d5 into rust-lang:rust-llvm-release-4-0-1 Jan 25, 2018
@dotdash
Copy link
Author

dotdash commented Jan 25, 2018

I hope that this gets fixed upstream rather sooner than later. I could also strip this patch down to just remove just the part that marks MemDep as preserved, which would be super trivial (remove 1 line, changed another). The MemDep cache invalidations are just completely useless then.

@alexcrichton
Copy link
Member

Ok, let's go with it then. I'm just slightly worried b/c it's a segfault introduced by our earlier patch, but if it's easy to port it's easy to port!

@dotdash
Copy link
Author

dotdash commented Jan 25, 2018

@alexcrichton that other patch didn't really introduce a bug, it just made us hit an existing one. As far as I'm concerned, we've just been lucky before.

@alexcrichton
Copy link
Member

@dotdash ok thanks for the info! If you've got the time this sounds like an excellent candidate to upstream!

@dotdash
Copy link
Author

dotdash commented Jan 25, 2018

@alexcrichton I'm basically waiting on feedback on the bug report I filed for this -- https://bugs.llvm.org//show_bug.cgi?id=36063 -- because I'm not sure if that's the "right" solution. Because the caching seems more deeply broken to me than just MLSM. The invalid results are only thrown away after a pass has finished, so a pass that sinks instructions like MLSM but also queries MemDep could still see bogus answers, because the cache entries become stale while the pass is still running.

@alexcrichton
Copy link
Member

Ok awesome, thanks for the info!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants