[Soot-list] Sending an instantiated object to soot for SPARK analysis

Jason Ott jott002 at ucr.edu
Mon May 4 20:02:16 EDT 2015


I was wondering if it is possible to pass an instantiated object to soot to
generate a call graph from?

My current approach is to create a toy program that contains an
instantiated entry point to the place I want to generate my callgraph from:

    public class X {
        public static void main(String[] args) {
             NewObject no = NewObject();
             no.startHere();
        }
    }

// run spark elsewhere

But I was wondering if I could actually just send no.startHere to SPARK.
Do note, that NewObject is not static.  I know to generate an accurate call
graph NewObject must be instantiated.

Thanks!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: https://mailman.CS.McGill.CA/pipermail/soot-list/attachments/20150504/154a1848/attachment.html 


More information about the Soot-list mailing list