AAResults should not invalidate AAManager.
Update tests.
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
This looks right to me. Some suggestions on comment wording only.
lib/Analysis/AliasAnalysis.cpp | ||
---|---|---|
82–83 ↗ | (On Diff #195898) | One nit about wording "Do not invalidate it here." -> "No need to check whether it has been preserved explicitly." You should also update the comments on AAManager to explain this, and further add the (largely already in place) restriction that the registration functions must not be called once the AAManager is run. I would also, merge this into the comment below as a single bit of prose. Could just continue after this comment with: "However, we still need to check if any of the dependencies end up being invalidated, and invalidate ourselves in that case." |
You should also update the comments on AAManager to explain this, and further add the (largely already in place) restriction that the registration functions must not be called once the AAManager is run.
Could you please elaborate on this? How/where is this restriction enforced?
It's not enforced at all, that's why we should document it.... We could add enforcement too, but it is a difficult mistake to make, and so I'm not worried about it. (Explained in person the nature of the "issue".)
LGTM
include/llvm/Analysis/AliasAnalysis.h | ||
---|---|---|
1100–1102 ↗ | (On Diff #196103) | This would be a bit easier for me to read as: The result of this analysis are only invalidated if one of the particular aggregated AA results end up being invalidated. This removes the need to explicitly preserve the results of `AAManager`. Note that analyses should no longer be registered once the `AAManager` is run. |