[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to deal with implicit call in Spark?



This is also specifically dealt with by the new CallGraph and an update
to Spark in the development version of Soot.

Ondrej

On Wed, May 21, 2003 at 04:04:46PM -0400, CHEN FU wrote:
> 
> I'm using spark to do points to analysis on a whole program based on
> jdk1.3
> 
> Object AccessController.doPrivileged(PrivilegedExceptionAction action)
> 
> The above is a native method which calls 
> 
> Object PrivilegedExceptionAction.run()
> 
> implicitly. The problem here is that some object in method action.run()
> may flow back to the caller of the AccessController.doPrivileged via
> method returns. It seems that spark does not process this dataflow by
> default.
>