search for: isoutput

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

Did you mean: soutput
2013 Aug 09
0
[LLVMdev] How to gather data dependences
...; << '\n'; } else if( dep->isConfused() == true ) { if( dep->isInput() ) { errs() << '\t' << **it << " input dependence." << '\n'; } else if( dep->isOutput() ) { errs() << '\t' << **it << " output dependence." << '\n'; } else if( dep->isFlow() ) { errs() << '\t' << **it << " flow 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
...39;; > } else if( dep->isConfused() == true ) { > if( dep->isInput() ) { > errs() << '\t' << **it << " input dependence." << '\n'; > } else if( dep->isOutput() ) { > errs() << '\t' << **it << " output dependence." << '\n'; > } else if( dep->isFlow() ) { > errs() << '\t' << **it << " flow depende...