Displaying 3 results from an estimated 3 matches for "isflow".
Did you mean:
sflow
2013 Aug 09
0
[LLVMdev] How to gather data dependences
...lt;< **it << " input dependence." <<
'\n';
} else if( dep->isOutput() ) {
errs() << '\t' << **it << " output dependence." <<
'\n';
} else if( dep->isFlow() ) {
errs() << '\t' << **it << " flow dependence." <<
'\n';
} else if( dep->isAnti() ) {
errs() << '\t' << **it << " anti dependence." <&l...
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
2013 Aug 09
2
[LLVMdev] How to gather data dependences
...t;< " input dependence." <<
'\n';
> } else if( dep->isOutput() ) {
> errs() << '\t' << **it << " output dependence."
<< '\n';
> } else if( dep->isFlow() ) {
> errs() << '\t' << **it << " flow dependence." <<
'\n';
> } else if( dep->isAnti() ) {
> errs() << '\t' << **it << " anti dependenc...