[Soot-list] Extraction of the information from Spark

Antonina Khairova antonina.khairova at vxu.se
Thu Feb 5 15:30:55 EST 2009


I need some help. The example follows.
I have simple code as an input:
public class BB {

BB myA;//line2

int booka; //line 3

public static void main(String ... args) {

BB a = new BB(); // line 5

BB a2 = new BB(); // line 6

a.myA = new BB(); //line 8

a2.myA = a; //line 9

a2.myA = a.myA; // line 10

a=a2; //line 11

}

}



I need next output:

For the line 8 (assign statement):

=====[type BB(line 6), field: myA]====[ type BB from line 5] - this is done
in the way I put here befor, BUT!

I nee next:

For the line 10:

=====[type BB(line 6), field: myA]====[ type BB from line 8]

I can do it, but I just have to write my own analysis through the code.

Is there any method to do it easier? Maybe there is also a posibility to do it by using paddle, but still I need some information concerning the extration results from spark/paddle.

Thank you for help.

Antonina
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.cs.mcgill.ca/pipermail/soot-list/attachments/20090205/865053bf/attachment.html 


More information about the Soot-list mailing list