You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Defining various forms of visiting the IR tree exist: from just bottom-up visiting to extract information, to pre- and post-walkers that, also taking context into account, transform an IR tree.
When I now read those visitors, there is lots of C++ machinery around to make them work
and I don't understand why it must be so much machinery.
From CoSy experience, I didn't expect that and those were really powerful walkers.
So propose to revisit their design and interfaces and investigate what makes them so complicated.
Is it the IR structure itself that is the problem? Is it C++? Are the visitors over-designed?
The text was updated successfully, but these errors were encountered:
Defining various forms of visiting the IR tree exist: from just bottom-up visiting to extract information, to pre- and post-walkers that, also taking context into account, transform an IR tree.
When I now read those visitors, there is lots of C++ machinery around to make them work
and I don't understand why it must be so much machinery.
From CoSy experience, I didn't expect that and those were really powerful walkers.
So propose to revisit their design and interfaces and investigate what makes them so complicated.
Is it the IR structure itself that is the problem? Is it C++? Are the visitors over-designed?
The text was updated successfully, but these errors were encountered: