Displaying 6 results from an estimated 6 matches for "nwhen".
Did you mean:
when
2016 Jun 17
2
Intended behavior of CGSCC pass manager.
...A -> B; B -> A; // SCC {A,B}
>>> > S -> T; T -> S; // SCC {S,T}
>>> > X -> Y; Y -> X; // SCC {X,Y}
>>> >
>>> > B -> X;
>>> > B -> S;
>>> > T -> Y [label="Ref edge that is devirtualized\nwhen visiting SCC
>>> > {S,T}",constraint=false,style=dashed]
>>> > }
>>> >
>>> > (can visualize conveniently at http://www.webgraphviz.com/ or I have
>>> put an
>>> > image at http://reviews.llvm.org/F2073104)
>>> >
&...
2016 Jun 17
2
Intended behavior of CGSCC pass manager.
...>> > S -> T; T -> S; // SCC {S,T}
>>>>> > X -> Y; Y -> X; // SCC {X,Y}
>>>>> >
>>>>> > B -> X;
>>>>> > B -> S;
>>>>> > T -> Y [label="Ref edge that is devirtualized\nwhen visiting SCC
>>>>> > {S,T}",constraint=false,style=dashed]
>>>>> > }
>>>>> >
>>>>> > (can visualize conveniently at http://www.webgraphviz.com/ or I
>>>>> have put an
>>>>> > image at http:...
2016 Jun 17
5
Intended behavior of CGSCC pass manager.
...aph:
> >
> > digraph G {
> > A -> B; B -> A; // SCC {A,B}
> > S -> T; T -> S; // SCC {S,T}
> > X -> Y; Y -> X; // SCC {X,Y}
> >
> > B -> X;
> > B -> S;
> > T -> Y [label="Ref edge that is devirtualized\nwhen visiting SCC
> > {S,T}",constraint=false,style=dashed]
> > }
> >
> > (can visualize conveniently at http://www.webgraphviz.com/ or I have
> put an
> > image at http://reviews.llvm.org/F2073104)
> >
> > If we do not consider the ref graph, then it is...
2016 Jun 16
5
Intended behavior of CGSCC pass manager.
...ef edge) that will point at an SCC that has
not yet been visited.
E.g. consider this graph:
digraph G {
A -> B; B -> A; // SCC {A,B}
S -> T; T -> S; // SCC {S,T}
X -> Y; Y -> X; // SCC {X,Y}
B -> X;
B -> S;
T -> Y [label="Ref edge that is devirtualized\nwhen visiting SCC
{S,T}",constraint=false,style=dashed]
}
(can visualize conveniently at http://www.webgraphviz.com/ or I have put an
image at http://reviews.llvm.org/F2073104)
If we do not consider the ref graph, then it is possible for SCC {S,T} to
be visited before SCC {X,Y}. So after devirtua...
2016 Jun 17
3
Intended behavior of CGSCC pass manager.
...SCC {S,T}
>>>>>>> > X -> Y; Y -> X; // SCC {X,Y}
>>>>>>> >
>>>>>>> > B -> X;
>>>>>>> > B -> S;
>>>>>>> > T -> Y [label="Ref edge that is devirtualized\nwhen visiting SCC
>>>>>>> > {S,T}",constraint=false,style=dashed]
>>>>>>> > }
>>>>>>> >
>>>>>>> > (can visualize conveniently at http://www.webgraphviz.com/ or I
>>>>>>> have put an...
2016 Jun 09
2
Intended behavior of CGSCC pass manager.
On Wed, Jun 8, 2016 at 8:14 PM, Xinliang David Li <davidxl at google.com>
wrote:
>
>
> On Wed, Jun 8, 2016 at 4:38 PM, Sean Silva <chisophugis at gmail.com> wrote:
>
>>
>>
>> On Wed, Jun 8, 2016 at 12:31 PM, Xinliang David Li <davidxl at google.com>
>> wrote:
>>
>>>
>>>
>>> On Wed, Jun 8, 2016 at 4:19 AM, Sean