Displaying 1 result from an estimated 1 matches for "moduletopostordercgsccpassadaptor".
2014 Jun 18
2
[LLVMdev] PM: High-level review of the new Pass Manager (so far)
...is a module transformation pass that
contains a FunctionPassManager (with some set of function passes).
- AnalysisManagers interoperate via proxies. E.g.,
FunctionAnalysisManagerModuleProxy is a module analysis pass that
forwards to a FunctionAnalysisManager.
- LazyCallGraph and ModuleToPostOrderCGSCCPassAdaptor collude to visit
SCCs in post-order, including API for updating the SCC-graph
on-the-fly without invalidating the traversal.
I think what's done generally looks great. In particular, the
declarative syntax is awesome and it's a huge step to have an
AnalysisManager that can reason...