Displaying 1 result from an estimated 1 matches for "finalizefunctionpassmanag".
Did you mean:
finalizefunctionpassmanager
2019 Oct 04
4
Exposing the New Pass Manager in the LLVM C API
...exposing the new PM
through this API. We can think of 3 possibilities for now:
1) Just replace the API to expose the new PM instead of the legacy one.
I imagine we wouldn't want to do this since it would be a pretty sudden
change and there wouldn't be new PM equivalents for the
Initialize/FinalizeFunctionPassManager functions.
2) Add a new interface that exposes the new PM while still keeping the
current one.
The interface would probably be similar to the current one but just not
have the corresponding Initialize/FinalizeFunctionPassManager functions. I
think with this method we could also slowly roll out...