Displaying 5 results from an estimated 5 matches for "dumpexampledependence".
2013 Dec 27
3
[LLVMdev] Using DependenceAnalysis::depends
...w
which pairs are RAW/WAR/WAW. It seems related to the approach outlined here
:
https://sites.google.com/site/parallelizationforllvm/building-the-dependence-graph
Is there any existing implementation I can take a look at?
It seems that the only the DependenceAnalysis::depends is only called in
the dumpExampleDependence() function (checked using cscope). Is there no
other module which uses this class?
Thanks,
Snehasish
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131227/fb9a96a4/attachment.html>
2013 Dec 27
4
[LLVMdev] Using DependenceAnalysis::depends
...e approach outlined here
>> :
>> https://sites.google.com/site/parallelizationforllvm/building-the-dependence-graph
>>
>> Is there any existing implementation I can take a look at?
>> It seems that the only the DependenceAnalysis::depends is only called in
>> the dumpExampleDependence() function (checked using cscope). Is there no
>> other module which uses this class?
>>
>> Thanks,
>> Snehasish
>>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/201312...
2013 Aug 09
0
[LLVMdev] How to gather data dependences
2013/8/8 Preston Briggs <preston.briggs at gmail.com>
>
> Hi,
>
> The DependenceAnalysis pass isn't reliable yet; it has several errors that
> need to be corrected. These manifest by the analysis claiming there's no
> dependence when one in fact exists.
>
> Your proposed scheme of testing every pair of instructions is
> asymptotically expensive, requiring
2013 Aug 09
2
[LLVMdev] How to gather data dependences
...LVM stud to do a cleaner job, but your code looks plausible.
I'll note that anything you do for a confused dependence makes sense for a
full dependence.
So you can test for input, output, flow, etc.
If you look at the code in lib/Analysis/DependenceAnalysis.cpp
you can see how I exercise DA (in dumpExampleDependence)
and how I print the info associated with a dependence (in Dependence::dump)
Preston
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130809/bab0d8c7/attachment.html>
2013 Aug 08
2
[LLVMdev] How to gather data dependences
Valmico <valmico88 at gmail.com> wrote:
> I'm currently trying to develop new LLVM Pass that will generate
> simple data dependencies graph. For now I'm trying to get familiar
> with DependenceAnalysis.
> My general idea is to traverse each function (runOnFunction)
> top to bottom Instruction by Instruction, using DA.depends( I, I2, ...)
> on every Instructions