search for: node0x100aebf90

Displaying 2 results from an estimated 2 matches for "node0x100aebf90".

Did you mean: node0x100ae1fc0
2002 Nov 21
2
[LLVMdev] get TopDown DSGraph
Dear LLVM, I was wondering if this is the right way to get TopDown DSGraph? TDDataStructures &TD = getAnalysis<TDDataStructures>(); F is some function DSGraph &dsg = TD.getDSGraph(F); I found out the DSGraph I got using this method is actually bottom up DSGraph, can you let me know why? Thanks, xiaodong
2002 Nov 21
1
[LLVMdev] get TopDown DSGraph
...e0x100ae0b30; Node0x100ae1e00:g2 -> Node0x100ae1d20; Node0x100ae0b30 [shape=record,shape=Mrecord,label="{ void: HI\n}"]; Node0x100ae1d20 [shape=record,shape=Mrecord,label="{ void: HI\n}"]; Node0x100ae1fc0 [shape=record,shape=Mrecord,label="{ void: HI\n}"]; Node0x100aebf90[ plaintext=circle, label =" %my"]; Node0x100aebf90 -> Node0x100ae1c40[arrowtail=tee,color=gray63]; If you look at it, you'll see each node has the InComplete Bit on. But when I use 'analyze -tddatastructure file.bc' I got the graph in which all the nodes don't have t...