I'm trying to perform program analysis on the Java source file. Is there any predefined algorithm to perform variable type analysis and rapid type analysis?

link|improve this question

64% accept rate
1  
Please improve your accept rate. – aix Feb 20 at 14:17
1  
Please look to increase that (0%) accept rate. Your typing could do with some improvement as well. :( – Andrew Thompson Feb 20 at 14:20
thank you i was not aware of accept rate. i am newbie i will consider it further... – S.A.Rahman Feb 20 at 15:46
feedback

1 Answer

Soot is an analysis framework for java.

"The Soot framework for Java program analysis: a retrospective" says that the Spark module might be relevant to what you're doing:

Spark implements a number of different call graph construction methods, including Class Hierarchy Analysis and Rapid Type Analysis; however, we found that the most effective call graph construction method proceeds on-the-fly and builds the call graph at the same time as it computes points-to sets, starting with the CHA call graph as an initial approximation for the set of reachable methods.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.