[PATCH] D13418: [AA] Enhance the new AliasAnalysis infrastructure with an optional "external" AA wrapper pass.

Chandler Carruth via llvm-commits llvm-commits at lists.llvm.org
Sat Oct 3 19:19:13 PDT 2015


chandlerc created this revision.
chandlerc added reviewers: gottesmm, hfinkel.
chandlerc added a subscriber: llvm-commits.

This is a generic hook that can be used to thread custom code into the
primary AAResultsWrapperPass for the legacy pass manager in order to
allow it to merge external AA results into the AA results it is
building. It does this by threading in a raw callback and so it is
*very* powerful and should serve almost any use case I have come up with
for extending the set of alias analyses used. The only thing not well
supported here is using a *different order* of alias analyses. That form
of extension *is* supportable with the new pass manager, and I can make
the callback structure here more elaborate to support it in the legacy
pass manager if this is a critical use case that people are already
depending on, but the only use cases I have heard of thus far should be
reasonably satisfied by this simpler extension mechanism.

It is hard to test this using normal facilities (the built-in AAs don't
use this for obvious reasons) so I've written a fairly extensive set of
custom passes in the alias analysis unit test that should be an
excellent test case because it models the out-of-tree users: it adds
a totally custom AA to the system. This should also serve as
a reasonably good example and guide for out-of-tree users to follow in
order to rig up their existing alias analyses.

No support in opt for commandline control is provided here however. I'm
really unhappy with the kind of contortions that would be required to
support that. It would fully re-introduce the analysis group
self-recursion kind of patterns. =/

Hopefully this is sufficient for the existing out-of-tree users to be
unblocked and able to use the AA infrastructure after the removal of
analysis group functionality.

http://reviews.llvm.org/D13418

Files:
  include/llvm/Analysis/AliasAnalysis.h
  include/llvm/InitializePasses.h
  lib/Analysis/AliasAnalysis.cpp
  unittests/Analysis/AliasAnalysisTest.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13418.36454.patch
Type: text/x-patch
Size: 10294 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151004/f33023f7/attachment.bin>


More information about the llvm-commits mailing list