You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If an array object does not escape the current method, my guess is that we can allocate it on the stack -- the array object is just a single reference and destroying it doesn't remove the contained objects (if they escape, they will still be accessible from the reference that made them escape).
For the second question, will the following work?
if (t instanceof RefType) {
SootClass c = ((RefType) t).getSootClass();
Should new array statements be tracked for their escape status or shall we just discard them as objects that escape?
The text was updated successfully, but these errors were encountered: