Displaying 2 results from an estimated 2 matches for "e81dd71a".
2013 Aug 08
0
[LLVMdev] [Pass] How to gather data dependencies
Take a look to this page:
https://sites.google.com/site/parallelizationforllvm/
On Wed, Aug 7, 2013 at 10:52 PM, Valmico <valmico88 at gmail.com> wrote:
> Hello,
>
> 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
2013 Aug 07
2
[LLVMdev] [Pass] How to gather data dependencies
Hello,
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 combination in function to check if they are
dependent on any