Package soot.jimple.internal

Examples of soot.jimple.internal.JIdentityStmt


            for (Unit unit : defsOfAt) {
                if (unit instanceof JAssignStmt) {
                    JAssignStmt assign = (JAssignStmt) unit;
                    values.add(assign.getRightOp());
                } else if (unit instanceof JIdentityStmt) {
                    JIdentityStmt identity = (JIdentityStmt) unit;
                    values.add(identity.getRightOp());
                } else {
                    throw new RuntimeException(
                            "getReachingValues: unknown type "
                                    + unit.getClass() + " at \""
                                    + unit.toString() + "\" in "
View Full Code Here


            Value value;
            if (unit instanceof JAssignStmt) {
                JAssignStmt assign = (JAssignStmt) unit;
                value = assign.getRightOp();
            } else if (unit instanceof JIdentityStmt) {
                JIdentityStmt identity = (JIdentityStmt) unit;
                value = identity.getRightOp();
            } else {
                throw new RuntimeException(
                        "getConcreteReachingTypes: unknown type "
                                + unit.getClass() + " at \"" + unit.toString());
            }
View Full Code Here

TOP

Related Classes of soot.jimple.internal.JIdentityStmt

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.