Displaying 3 results from an estimated 3 matches for "fdep".
Did you mean:
dep
2013 Aug 09
0
[LLVMdev] How to gather data dependences
...;\t' << **it << " anti dependence." <<
'\n';
}
} else if( dep->isConfused() == false ) {
errs() << "# full dependence." << '\n';
//if( FullDependence *FDep = cast<FullDependence>( dep
) ) {
// errs() << " full dep casted" << '\n';
//}
}
}
instructions.push_back(&*I);
}
}
}
Most likely i'm moving totally in wrong...
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
...it << " anti dependence." <<
'\n';
> }
> } else if( dep->isConfused() == false ) {
> errs() << "# full dependence." << '\n';
> //if( FullDependence *FDep = cast<FullDependence>(
dep ) ) {
> // errs() << " full dep casted" << '\n';
> //}
> }
> }
>
> instructions.push_back(&*I);
> }
> }
> }...