Displaying 2 results from an estimated 2 matches for "dsgs".
Did you mean:
dbgs
2005 Feb 21
2
[LLVMdev] DSG Visualization
Hello,
Is it possible to display the data structure graphs created by the Data Structure Analysis using a visualization tool?
Thanks
---------------------------------
Do you Yahoo!?
Yahoo! Search presents - Jib Jab's 'Second Term'
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2005 Feb 21
0
[LLVMdev] DSG Visualization
On Mon, 21 Feb 2005, xavier wrote:
> Hello,
>
> Is it possible to display the data structure graphs created by the Data Structure Analysis using a visualization tool?
yes. Just run one of these commands:
analyze -datastructure x.bc -- local DSGs
analyze -budatastructure x.bc -- BU DSGs
analyze -tddatastructure x.bc -- TD DSGs
These commands will output one "dot" file for each function in the program
and a globals graph. You can use the dot program (search for graphviz) to
render these in just about any format...