Package soot.util.queue

Examples of soot.util.queue.ChunkedQueue


    /** Create a new set of classes that contains all of the classes that are
     *  required to load the given set of initial classes.
     */
    public DependedClasses(Collection initialClasses) {
        _reachableClasses = new LinkedList();
        _unprocessedClasses = new ChunkedQueue();

        Iterator classes = _unprocessedClasses.reader();

        _addClasses(initialClasses);

View Full Code Here


@Pt.AcceptedRating Red (cxh)
*/
public class SideEffectAnalysis {
    public SideEffectAnalysis() {
        _methodToEffectFlow = new HashMap();
        _unprocessedMethods = new ChunkedQueue();

        Iterator methods = _unprocessedMethods.reader();

        CallGraph callGraph = Scene.v().getCallGraph();
        _reachables = new ReachableMethods(callGraph, EntryPoints.v()
View Full Code Here

TOP

Related Classes of soot.util.queue.ChunkedQueue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.