<div dir="ltr">I was wondering if it is possible to pass an instantiated object to soot to generate a call graph from?<div><br></div><div>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:</div><div><br></div><div>    public class X {</div><div>        public static void main(String[] args) {</div><div>             NewObject no = NewObject();</div><div>             no.startHere();</div><div>        }</div><div>    }</div><div><br></div><div>// run spark elsewhere</div><div><br></div><div>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.</div><div><br></div><div>Thanks!</div></div>