search for: sometask

Displaying 2 results from an estimated 2 matches for "sometask".

Did you mean: some_task
2016 Jun 20
2
Intended behavior of CGSCC pass manager.
...ner sees a callee to say D1::vCall which is already simplified. However, in real applications, what I see is the following pattern (for instances LLVM's Pass ) Caller() { Base *B = Factory::create(...); Stash (B); // store the object in some container to be retrieved later ... } SomeTask() { Base *B = findObject(...); B->vCall(); // do the work } Driver() { Caller(); // create objects ... SomeTask(); } Set aside the fact that it is usually much harder to do de-viritualization in this case, assuming the virtual call in SomeTask can be devritualized. What w...
2016 Jun 17
3
Intended behavior of CGSCC pass manager.
On Fri, Jun 17, 2016 at 12:27 AM, Sean Silva <chisophugis at gmail.com> wrote: > > > On Fri, Jun 17, 2016 at 12:10 AM, Xinliang David Li <davidxl at google.com> > wrote: > >> >> >> On Thu, Jun 16, 2016 at 11:51 PM, Sean Silva <chisophugis at gmail.com> >> wrote: >> >>> >>> >>> On Thu, Jun 16, 2016 at 11:07