Displaying 2 results from an estimated 2 matches for "earlyleg".
Did you mean:
carlyle
2017 Jan 23
2
Early legalization pass ? Doing early legalization in an existing pass ?
...up on
it. I was looking around but it didn't seemed like there was a good place
to add this transformation.
Other examples of legalization that may benefit from the optimizer are
splitting of large integral that the backend do not support into multiple
operations on smaller integrals.
Would a EarlyLegalization pass be worth it ? It could use infos from the
backend and do various transformations that the backend would have to do
anyway, which will expose optimization opportunities. Or is there a place
that is appropriate to insert theses ?
-------------- next part --------------
An HTML attachmen...
2017 Jan 24
3
Early legalization pass ? Doing early legalization in an existing pass ?
...ed like there was a good
> place to add this transformation.
> >
> > Other examples of legalization that may benefit from the optimizer are
> splitting of large integral that the backend do not support into multiple
> operations on smaller integrals.
> >
> > Would a EarlyLegalization pass be worth it ? It could use infos from the
> backend and do various transformations that the backend would have to do
> anyway, which will expose optimization opportunities. Or is there a place
> that is appropriate to insert theses ?
>
> At least in theory, SelectionDAG...