[Soot-list] Regarding Interprocedural Analysis

John Chaitanya Kati johnkati at cse.iitb.ac.in
Wed May 16 07:54:04 EDT 2007


Hi,
    I want to implement interprocedural analysis using call string 
approach. The problem i am facing is, soot analyses one complete method 
(calling function) before it switches to the called function. But i dont 
want it this way.

if my main program is

main()
{
   s1;
   s2;
   call f;
   s3;
   s4;
}

and the called function is 
f()
{
   s5;
   s6;
}

i want it to be analysed in the seq

s1; s2; s5; s6; s3; s4

Can it be done ? please reply me back.

Thanks in advance for any help
John




More information about the Soot-list mailing list