User-agent: Mozilla Thunderbird 0.6 (X11/20040509)
Hi,
Soot does support interprocedural analysis. You can, for example, build
a callgraph, extend SceneTransformer, and iterate over the reachable
methods in some fashion using callGraph.getReachableMethods(), even
mixing this with an intraprocedural analysis.
If you mean something other than interprocedural analysis by
"inter-classes analysis", you'll need to clarify what it is exactly that
you want to do.
Cheers,
Chris
dkim wrote:
Hi,
I am studying data flow analysis.
I'd like to make java inter-classes analysis.
Does Soot Framework support this?
If it does, how to use Soot?
Is there any work like this already?