I've realized that the dependence graph is over LLVM bitcode rather than the original source code lines (though they appear to be referenced as labelURL in some nodes at the dot dependency graph). Is there any simple way to "transform" the dependency graph so I can have the links between original source lines?
If there isn't, a reference of the lines in the bitcode will do as well
currently, there is no way how to get the dependence graph for the original C. But yes, you can get the references to lines from debugging information and create a graph from that.
Hello
I've realized that the dependence graph is over LLVM bitcode rather than the original source code lines (though they appear to be referenced as labelURL in some nodes at the dot dependency graph). Is there any simple way to "transform" the dependency graph so I can have the links between original source lines?
If there isn't, a reference of the lines in the bitcode will do as well
Cheers
Ivan.-