Displaying 1 result from an estimated 1 matches for "dependencegraph".
2002 Dec 08
0
[LLVMdev] New analysis passes
...computes flow-insensitive context-sensitive
interprocedural Mod/Ref information for a program. It uses DS Graphs
to track mod/ref info for distinct data structures.
2. MemoryDepAnalysis (analyze -memdep):
This is a Module pass (but will eventually be a Function pass) that
computes a DependenceGraph for all data-dependences on memory locations
within each function (i.e., the nodes are Instructions; the edges are
data dependences). This pass uses the IPModRef pass to find dependences
on Call instructions. It does NOT do any non-trivial array dependence
analysis yet.
3. PgmDepende...