<div dir="ltr"><div>Hey Nicolai,</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Oct 21, 2020 at 12:57 PM Nicolai Hähnle via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi all,<br>
<br>
I'm moving a discussion from <a href="https://reviews.llvm.org/D83088" rel="noreferrer" target="_blank">https://reviews.llvm.org/D83088</a> here,<br>
where it's arguably more appropriate.<br>
<br>
For context, I proposed in early July a mechanism that allows writing<br>
program analyses that are generic over the type of IR using dynamic<br>
dispatch (virtual methods). The first mail of the llvm-dev thread is<br>
here: <a href="http://lists.llvm.org/pipermail/llvm-dev/2020-July/143039.html" rel="noreferrer" target="_blank">http://lists.llvm.org/pipermail/llvm-dev/2020-July/143039.html</a><br>
<br>
The change was more than three months in review, including some very<br>
long stretches of radio silence. The change was accepted on Friday<br>
and, after waiting a few more days, I pushed it yesterday. Now some<br>
concerns are being raised on the review.<br>
<br>
I don't necessarily want to discuss the dysfunctions of our review<br>
process here. I also don't want to steamroll those concerns because I<br>
don't want us to follow a misguided notion of "progress at all cost",<br>
but I do think progress is important.<br></blockquote><div><br>Sure enough - and apologies for the delays.<br> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">So I propose that we discuss perceived shortcomings of the design<br>
here. If folks here can provide a sense of changes to the design<br>
they'd actually be happy with, then I'm happy to spin up the required<br>
patches to improve the design.</blockquote><div><br>I'm still fairly concerned this isn't a matter of fixing it in-tree & not especially happy with the inversion that's occurred here (now it's "this goes ahead unless I can justify why it shouldn't", whereas previously it was "this doesn't go ahead unless you can justify why it should" - that's a pretty significant change) which is why I'd like to revert the patch first, and discuss second.<br><br>This is generally the bar for LLVM reviews - if there are outstanding concerns, patches don't move forward. This doesn't mean arbitrary hold-up, and there's admittedly some problems with how to resolve irreconcilable differences, usually by escalating to other, more senior community members to make a determination. Ultimately, given the fairly large surface area/intended use of this abstraction, I think it might rise to the level of using the proposed "contentious decision" process discussed here: <a href="https://github.com/llvm/llvm-www/blob/master/proposals/LP0001-LLVMDecisionMaking.md">https://github.com/llvm/llvm-www/blob/master/proposals/LP0001-LLVMDecisionMaking.md</a><br><br>Other folks weighing in would be great & certainly there's a line at which my opinion isn't the gatekeeper here if other folks are in favor.<br> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">[0] With that in mind, let me "import"<br>
the last comment on the Phabricator review:<br>
<br>
<br>
> > > Ah, I see, the "append" functions are accessors, of a sort. Returning a container might be more clear than using an out parameter - alternatively, a functor parameter (ala std::for_each) that is called for each element, that can then be used to populate an existing container if desired, or to do immediate processing without the need for an intermediate container.<br>
> ><br>
> > The code is trying to strike a balance here in terms of performance. Since dynamic polymorphism is used, a functor-based traversal can't be inlined and so the number of indirect function calls increases quite a bit. There are a number of use cases where you really do want to just append successors or predecessors to a vectors, like during a graph traversal. An example graph traversal is here: <a href="https://github.com/nhaehnle/llvm-project/blob/controlflow-wip-v7/llvm/lib/Analysis/GenericConvergenceUtils.cpp#L329" rel="noreferrer" target="_blank">https://github.com/nhaehnle/llvm-project/blob/controlflow-wip-v7/llvm/lib/Analysis/GenericConvergenceUtils.cpp#L329</a><br>
><br>
> One way to simplify the dynamic polymorphism overhead of iteration would be to invert/limit the API - such as having a "node.forEachEdge([](const Edge& E) { ... });" or the like.<br>
<br>
I assume you're not talking about runtime overhead here? If we're<br>
talking about that, I'd expect that variant to often be slower,<br>
although I obviously don't have numbers.<br></blockquote><div><br></div><div>I think I was referring to runtime overhead - you mentioned the increase in indirect calls. A callback-like API can reduce the number of such calls. (rather than one virtual call per increment, inequality test, and dereference - there would be only one polmorphic call per iteration)</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">If it's the code style you're concerned about, yeah, I'm happy to<br>
prepare a patch that extends the interface with forEachSuccessor /<br>
forEachPredecessor methods like `void forEachSuccessor(CfgBlockRef,<br>
std::function<void (CfgBlockRef)>)`.<br>
<br>
<br>
> > [discussion on printBlockName and similar methods]<br>
> I'm generally worried about the genericity of these abstractions - whether or not a generic abstraction over printing is required/pulling its weight. Are there common abstractions over printing you have in mind using this abstraction?<br>
<br>
It's mostly a matter of debuggability of the algorithms that are being<br>
written. Pragmatism is the key.<br>
<br>
Example: The current in-tree DivergenceAnalysis leaves debug messages like:<br>
<br>
  LLVM_DEBUG(dbgs() << "propBranchDiv " << Term.getParent()->getName() << "\n");<br>
<br>
In the new CfgTraits-based divergence analysis I'm working on, a<br>
similar point in the algorithm has:<br>
<br>
  LLVM_DEBUG(dbgs() << "DIVERGENT TERMINATOR: "<br>
                    << printer().printableBlockName(divergentBlock) << '\n');<br>
<br>
At this point, divergentBlock is a CfgBlockRef, which is simply an<br>
opaque wrapper around a type-erased pointer. So the only other thing<br>
we could do here is print out the pointer value, which makes for an<br>
awful debugging experience.<br>
<br>
I'll point out again that existing template-based generic algorithms<br>
have leaky interfaces: some parts of the dominator tree machinery call<br>
the node type's `printAsOperand`.<br></blockquote><div><br>That isn't a necessary feature of template-based generic algorithms, and I agree that the traits-based API probably isn't the best one for something as complicated as a graph, especially as we've added more features to them. Something more like a container abstraction seems more suitable (especially since it would allow carrying more payload in a Graph object itself when writing a decorator - which currently can't be done so such a payload ends up being carried around in heavyweight node pointers/iterators which is awkward)<br> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
<br>
> > [broader discussion]<br>
> I don't mean to treat CfgGraph to be thought of like the template parameter to, say, std::vector - I meant thinking of CfgGraph as something like std::vector itself. Rather than using traits to access containers in the C++ standard library, the general concept of a container is used to abstract over a list, a vector, etc.<br>
><br>
> eg, if you want to print the elements of any C++ container, the code looks like:<br>
><br>
> template<typename Container><br>
> void print(const Container &C, std::ostream &out) {<br>
>  out << '{';<br>
>  bool first = true;<br>
>  for (const auto &E : C) {<br>
>    if (!first)<br>
>      out << ", ";<br>
>    first = false;<br>
>    out << E;<br>
>  }<br>
>  out << '}';<br>
> }<br>
><br>
> Which, yes, is much more legible than what one could imagine a GraphTraits-esque API over<br>
> containers might be:<br>
><br>
> template<typename Container, typename Traits = ContainerTraits<Container>><br>
> void print(const Container &C, std::ostream &out) {<br>
>   out << '{';<br>
>  bool first = true;<br>
>  for (const auto &E : Traits::children(C)) {<br>
>    if (!first)<br>
>      out << ", ";<br>
>    first = false;<br>
>    out << Traits::element(E);<br>
>  }<br>
>  out << '}';<br>
> }<br>
><br>
> Or something like that - and the features you'd gain from that would be the ability to sort of "decorate" your container without having to create an actual container decorator - instead implementing a custom trait type that, say, iterates container elements in reverse. But generally a thin decorator using the first non-traits API would be nicer (eg: llvm::reverse(container) which gives you a container decorator that reverses order).<br>
<br>
I agree that the first form is nicer. I'd raise two points.<br>
<br>
First, the first form works nicely if the concept of container is<br>
sufficiently well understood and all relevant containers really are<br>
sufficiently similar. </blockquote><div><br></div><div>I'm not sure how a dynamic interface is likely to be significantly different/better in this regard.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Neither is the case here. We're trying to cover<br>
different pre-existing IRs, and even though all of them are SSA IRs,<br>
the differences are substantial.</blockquote><div><br></div><div>I guess that's another thing that might benefit from further clarity: Currently we have generic graph traits, notionally that's for any graph (collection of nodes and edges). The proposed abstraction is for CFG graphs, but due to the added layers of abstraction complexity, dynamic and static APIs, etc, it's not been especially clear to me what makes this abstraction specific to/only for CFG graphs[1] (& then how that relates to IR I'm not sure either - control flow seems like it would be fairly independent of the values within that graph). </div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"> Currently, we only really care about<br>
LLVM IR and MachineIR in SSA form; their main differences is that the<br>
concept of "value" is a C++ object in LLVM IR, while in MIR-SSA it's a<br>
plain unsigned int (now wrapped in a Register). MLIR would add yet<br>
another way of thinking about values. The fact that we have to work<br>
with those pre-existing IRs means we have to compromise.<br></blockquote><div><br>Not sure I follow what compromises you're referring to - if we have a container abstraction, some containers are over ints, some over objects, etc - the container can specify via typedefs, for instance, what type its elements are.<br> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Second, none of this applies to dynamic polymorphism, which is really<br>
the main goal here at least for me.<br></blockquote><div><br>And one I'm trying to push back on - my hope is that a common set of abstractions (much like the container concepts in the STL) would be suitable here. To potentially subsume the existing GraphTraits (could have a "GraphTraits adapter" that gives a Graph-concept-implementing-container given GraphTraits) and potentially has layers to add on more expressive/narrower abstractions (whatever extra features are relevant to CFG graphs that aren't relevant to all graphs in general([1] above - not super sure what those are)) - much like generic C++ containers, to sequential containers, random access containers, etc - various refinements of the general concept of a container.<br><br>What I'm especially interested in is not having two distinct concepts of graphs and graph algorithms with no plan to merge/manage these together, since as you say, the algorithms are complicated enough already - having two distinct and potentially competing abstractions in LLVM seems harmful to the codebase.<br> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Not sure where that leaves us. We need something like CfgTraits to<br>
cover the substantial differences between the IRs, but perhaps we can<br>
work over time to reduce those differences? Over time, instead of<br>
relying on CfgTraits for _everything_ in CfgInterfaceImpl, we could<br>
instead use unified functionalities directly?<br>
<br>
Some of that could probably already be done today. For example, we<br>
could probably just use llvm::successors</blockquote><div><br>By way of example, I /think/ the future we'd probably all want for llvm::successors would be to move towards entities having their own successors() function rather than the non-member/ADL-based lookup. (the same way that it's far more common/readable/expected to use x.begin() rather than "using std::begin; begin(x);" construct, or wrapping that in some std::adl_begin(x) function)<br> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"> directly in<br>
CfgInterfaceImpl::appendSuccessors (and your proposed<br>
forEachSuccessor) instead of going via CfgTraits.<br>
<br>
<br>
> If you had a runtime polymorphic API over containers in C++, then it might look something<br>
> like this:<br>
><br>
> void print(const ContainerInterface& C, std::ostream& out) {<br>
>  out << '{';<br>
>  bool first = true;<br>
>  C.for_each([&](const auto &E) {<br>
>    if (!first)<br>
>      out << ", ";<br>
>    first = false;<br>
>    E.print(out);<br>
>  });<br>
>  out << '}';<br>
> }<br>
<br>
Yes, though it wouldn't quite work like that with the IRs we have in<br>
LLVM. Most of them go to great length to avoid embedding virtual<br>
methods in the IR classes themselves. That's why you'd more likely see<br>
something like the following:<br>
<br>
void print(const CfgInterface& iface, CfgBlockRef block, raw_ostream& out) {<br>
  out << "Successors of " << iface.printableName(block) << ':';<br>
  iface.forEachSuccessor(block, [&](CfgBlockRef succ) {<br>
    if (first)<br>
      out << ' ';<br>
    else<br>
      out << ", ";<br>
    first = false;<br>
    iface.printName(succ, out);<br>
  });<br>
  out << '\n';<br>
}<br>
<br>
The CfgBlockRef / CfgValueRef / etc. appear in the design to avoid<br>
having an abstract base class for the different IRs, and also to cover<br>
the difference between LLVM IR `Value *` and MIR-SSA `Register`.<br></blockquote><div><br></div><div>If a dynamically polymorphic API is needed/ends up being chosen, I'd /probably/ be inclined to try to add an abstract base class for blocks too (unclear about values) - but not wedded to it. In general I'm more pushing back on the dynamically polymorphic API in general than what it might look like if it exists. In part because of the complexities of having opaque handle objects that are passed out and back into APIs to model things, rather than being able to model them more directly. The APIs become a bit unwieldy because of that, in my opinion. (again, looking at GraphTraits awkwardness of load-bearing node pointers - though having the graph as a parameter ('this' parameter or otherwise) to the edge/successor/etc queries (rather than having the queries only based on the node) would go a long way to addressing that particular shortcoming if such a token/ref-passing API were needed)</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">> I'd really like to see examples like this ^ using the different abstractions under consideration here (classic GraphTraits, CfgTraits dynamic and static typed, perhaps what a static API would look like if it wasn't trying to be dynamic API compatible).<br>
<br>
I don't really care that much about what the static side of things<br>
looks like. CfgTraits is the way it is on purpose because I felt it<br>
would be useful to have a homogenous view of what generic aspects of<br>
IR will ultimately be exposed by the CfgInterface. In the absence of<br>
compiler-enforced concepts, that feels helpful to me. If you put<br>
yourself in the shoes of an author of an algorithm that is supposed to<br>
be generic over IRs, </blockquote><div><br>Perhaps that's part of my confusion - generic over IRs sounds like a far richer/more complicated API than generic over CFGs.<br> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">you'll realize that it's great to have some easy<br>
way of discovering which things really _are_ generic over IRs. </blockquote><div><br>Writing out the concept would be a good start, I think, same as the C++ standard does for containers. (not to the kind of C++ language-lawyerly level of detail, but the basic summary of the conceptual API - independent of any of the implementation choices so far considered - this is why I'd really like to see especially trivial/mock use cases, yeah, they won't be representative of the full complexity of the API in use, but give a sense of what the semantics of the API are so we can consider different syntactic/implementation choices)<br> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">The<br>
comparison with containers is slightly lacking because the potential<br>
surface area is so much larger. But perhaps we can iterate on the<br>
design and find a better way.<br></blockquote><div><br></div><div>Larger surface area somewhat concerns me and why I'd like to see more sort of example usage to get a better sense of what this is expected to abstract over now and in the future.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">This is kind of a restatement of what I wrote above: If we can get<br>
general agreement in the community that there is a desire that the<br>
different IRs in LLVM follow common concepts "directly", then we can<br>
iterate towards that over time. I'm personally convinced that unifying<br>
the various IRs is a worthy goal (the introduction of MLIR really was<br>
an unfortunate step backwards as far as that is concerned), it just<br>
feels like it'd be a thankless project because it would go through<br>
_many_ reviews that feel like the one that triggered this thread.</blockquote><div><br></div><div>Perhaps - though getting design review/directional buy-in first can go a long way to making incremental reviews much less contentious/easier to commit. And a design that can be implemented via incremental improvement can also mean smaller patches that are easier to review/commit.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"> Even<br>
without a dysfunctional review process it'd be a long refactoring, and<br>
some sort of trait class is unavoidable at least for now. At a<br>
minimum, something is needed to abstract over the large differences<br>
between SSA value representations.<br>
<br>
Cheers,<br>
Nicolai<br>
<br>
[0] What I'm _not_ going to do is write patches based on vague guesses<br>
of what other people might want. I don't want even more changes<br>
hanging in Phabricator limbo for months. Be explicit about what it is<br>
that you want, and we can make progress.<br>
<br>
-- <br>
Lerne, wie die Welt wirklich ist,<br>
aber vergiss niemals, wie sie sein sollte.<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div></div>