search for: isanti

Displaying 3 results from an estimated 3 matches for "isanti".

Did you mean: santi
2013 Aug 09
0
[LLVMdev] How to gather data dependences
...; << **it << " output dependence." << '\n'; } else if( dep->isFlow() ) { errs() << '\t' << **it << " flow dependence." << '\n'; } else if( dep->isAnti() ) { errs() << '\t' << **it << " anti dependence." << '\n'; } } else if( dep->isConfused() == false ) { errs() << "# full dependence." << '...
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
...<< " output dependence." << '\n'; > } else if( dep->isFlow() ) { > errs() << '\t' << **it << " flow dependence." << '\n'; > } else if( dep->isAnti() ) { > errs() << '\t' << **it << " anti dependence." << '\n'; > } > } else if( dep->isConfused() == false ) { > errs() << "# full dependence.&...