Search in sources :

Example 1 with UnaryOperationNode

use of org.checkerframework.dataflow.cfg.node.UnaryOperationNode in project checker-framework by typetools.

the class JavaExpression method fromNode.

/**
 * We ignore operations such as widening and narrowing when computing the internal representation.
 *
 * @param receiverNode a node to convert to a JavaExpression
 * @return the internal representation of the given node. Might contain {@link Unknown}.
 */
public static JavaExpression fromNode(Node receiverNode) {
    JavaExpression result = null;
    if (receiverNode instanceof FieldAccessNode) {
        result = fromNodeFieldAccess((FieldAccessNode) receiverNode);
    } else if (receiverNode instanceof ExplicitThisNode) {
        result = new ThisReference(receiverNode.getType());
    } else if (receiverNode instanceof ThisNode) {
        result = new ThisReference(receiverNode.getType());
    } else if (receiverNode instanceof SuperNode) {
        result = new ThisReference(receiverNode.getType());
    } else if (receiverNode instanceof LocalVariableNode) {
        LocalVariableNode lv = (LocalVariableNode) receiverNode;
        result = new LocalVariable(lv);
    } else if (receiverNode instanceof ArrayAccessNode) {
        ArrayAccessNode a = (ArrayAccessNode) receiverNode;
        result = fromArrayAccess(a);
    } else if (receiverNode instanceof StringConversionNode) {
        // ignore string conversion
        return fromNode(((StringConversionNode) receiverNode).getOperand());
    } else if (receiverNode instanceof WideningConversionNode) {
        // ignore widening
        return fromNode(((WideningConversionNode) receiverNode).getOperand());
    } else if (receiverNode instanceof NarrowingConversionNode) {
        // ignore narrowing
        return fromNode(((NarrowingConversionNode) receiverNode).getOperand());
    } else if (receiverNode instanceof UnaryOperationNode) {
        UnaryOperationNode uopn = (UnaryOperationNode) receiverNode;
        return new UnaryOperation(uopn, fromNode(uopn.getOperand()));
    } else if (receiverNode instanceof BinaryOperationNode) {
        BinaryOperationNode bopn = (BinaryOperationNode) receiverNode;
        return new BinaryOperation(bopn, fromNode(bopn.getLeftOperand()), fromNode(bopn.getRightOperand()));
    } else if (receiverNode instanceof ClassNameNode) {
        ClassNameNode cn = (ClassNameNode) receiverNode;
        result = new ClassName(cn.getType());
    } else if (receiverNode instanceof ValueLiteralNode) {
        ValueLiteralNode vn = (ValueLiteralNode) receiverNode;
        result = new ValueLiteral(vn.getType(), vn);
    } else if (receiverNode instanceof ArrayCreationNode) {
        ArrayCreationNode an = (ArrayCreationNode) receiverNode;
        List<@Nullable JavaExpression> dimensions = CollectionsPlume.mapList(JavaExpression::fromNode, an.getDimensions());
        List<JavaExpression> initializers = CollectionsPlume.mapList(JavaExpression::fromNode, an.getInitializers());
        result = new ArrayCreation(an.getType(), dimensions, initializers);
    } else if (receiverNode instanceof MethodInvocationNode) {
        MethodInvocationNode mn = (MethodInvocationNode) receiverNode;
        MethodInvocationTree t = mn.getTree();
        if (t == null) {
            throw new BugInCF("Unexpected null tree for node: " + mn);
        }
        assert TreeUtils.isUseOfElement(t) : "@AssumeAssertion(nullness): tree kind";
        ExecutableElement invokedMethod = TreeUtils.elementFromUse(t);
        // Note that the method might be nondeterministic.
        List<JavaExpression> parameters = CollectionsPlume.mapList(JavaExpression::fromNode, mn.getArguments());
        JavaExpression methodReceiver;
        if (ElementUtils.isStatic(invokedMethod)) {
            methodReceiver = new ClassName(mn.getTarget().getReceiver().getType());
        } else {
            methodReceiver = fromNode(mn.getTarget().getReceiver());
        }
        result = new MethodCall(mn.getType(), invokedMethod, methodReceiver, parameters);
    }
    if (result == null) {
        result = new Unknown(receiverNode);
    }
    return result;
}
Also used : ExecutableElement(javax.lang.model.element.ExecutableElement) ClassNameNode(org.checkerframework.dataflow.cfg.node.ClassNameNode) StringConversionNode(org.checkerframework.dataflow.cfg.node.StringConversionNode) ExplicitThisNode(org.checkerframework.dataflow.cfg.node.ExplicitThisNode) ArrayCreationNode(org.checkerframework.dataflow.cfg.node.ArrayCreationNode) WideningConversionNode(org.checkerframework.dataflow.cfg.node.WideningConversionNode) BinaryOperationNode(org.checkerframework.dataflow.cfg.node.BinaryOperationNode) NarrowingConversionNode(org.checkerframework.dataflow.cfg.node.NarrowingConversionNode) MethodInvocationTree(com.sun.source.tree.MethodInvocationTree) List(java.util.List) ArrayList(java.util.ArrayList) MethodInvocationNode(org.checkerframework.dataflow.cfg.node.MethodInvocationNode) SuperNode(org.checkerframework.dataflow.cfg.node.SuperNode) ArrayAccessNode(org.checkerframework.dataflow.cfg.node.ArrayAccessNode) BugInCF(org.checkerframework.javacutil.BugInCF) FieldAccessNode(org.checkerframework.dataflow.cfg.node.FieldAccessNode) LocalVariableNode(org.checkerframework.dataflow.cfg.node.LocalVariableNode) UnaryOperationNode(org.checkerframework.dataflow.cfg.node.UnaryOperationNode) ValueLiteralNode(org.checkerframework.dataflow.cfg.node.ValueLiteralNode) ThisNode(org.checkerframework.dataflow.cfg.node.ThisNode) ExplicitThisNode(org.checkerframework.dataflow.cfg.node.ExplicitThisNode) Nullable(org.checkerframework.checker.nullness.qual.Nullable)

Example 2 with UnaryOperationNode

use of org.checkerframework.dataflow.cfg.node.UnaryOperationNode in project checker-framework by typetools.

the class LiveVarStore method addUseInExpression.

/**
 * Add the information of live variables in an expression to the live variable set.
 *
 * @param expression a node
 */
public void addUseInExpression(Node expression) {
    // TODO Do we need a AbstractNodeScanner to do the following job?
    if (expression instanceof LocalVariableNode || expression instanceof FieldAccessNode) {
        LiveVarValue liveVarValue = new LiveVarValue(expression);
        putLiveVar(liveVarValue);
    } else if (expression instanceof UnaryOperationNode) {
        UnaryOperationNode unaryNode = (UnaryOperationNode) expression;
        addUseInExpression(unaryNode.getOperand());
    } else if (expression instanceof TernaryExpressionNode) {
        TernaryExpressionNode ternaryNode = (TernaryExpressionNode) expression;
        addUseInExpression(ternaryNode.getConditionOperand());
        addUseInExpression(ternaryNode.getThenOperand());
        addUseInExpression(ternaryNode.getElseOperand());
    } else if (expression instanceof TypeCastNode) {
        TypeCastNode typeCastNode = (TypeCastNode) expression;
        addUseInExpression(typeCastNode.getOperand());
    } else if (expression instanceof InstanceOfNode) {
        InstanceOfNode instanceOfNode = (InstanceOfNode) expression;
        addUseInExpression(instanceOfNode.getOperand());
    } else if (expression instanceof BinaryOperationNode) {
        BinaryOperationNode binaryNode = (BinaryOperationNode) expression;
        addUseInExpression(binaryNode.getLeftOperand());
        addUseInExpression(binaryNode.getRightOperand());
    }
}
Also used : TernaryExpressionNode(org.checkerframework.dataflow.cfg.node.TernaryExpressionNode) FieldAccessNode(org.checkerframework.dataflow.cfg.node.FieldAccessNode) LocalVariableNode(org.checkerframework.dataflow.cfg.node.LocalVariableNode) UnaryOperationNode(org.checkerframework.dataflow.cfg.node.UnaryOperationNode) InstanceOfNode(org.checkerframework.dataflow.cfg.node.InstanceOfNode) TypeCastNode(org.checkerframework.dataflow.cfg.node.TypeCastNode) BinaryOperationNode(org.checkerframework.dataflow.cfg.node.BinaryOperationNode)

Aggregations

BinaryOperationNode (org.checkerframework.dataflow.cfg.node.BinaryOperationNode)2 FieldAccessNode (org.checkerframework.dataflow.cfg.node.FieldAccessNode)2 LocalVariableNode (org.checkerframework.dataflow.cfg.node.LocalVariableNode)2 UnaryOperationNode (org.checkerframework.dataflow.cfg.node.UnaryOperationNode)2 MethodInvocationTree (com.sun.source.tree.MethodInvocationTree)1 ArrayList (java.util.ArrayList)1 List (java.util.List)1 ExecutableElement (javax.lang.model.element.ExecutableElement)1 Nullable (org.checkerframework.checker.nullness.qual.Nullable)1 ArrayAccessNode (org.checkerframework.dataflow.cfg.node.ArrayAccessNode)1 ArrayCreationNode (org.checkerframework.dataflow.cfg.node.ArrayCreationNode)1 ClassNameNode (org.checkerframework.dataflow.cfg.node.ClassNameNode)1 ExplicitThisNode (org.checkerframework.dataflow.cfg.node.ExplicitThisNode)1 InstanceOfNode (org.checkerframework.dataflow.cfg.node.InstanceOfNode)1 MethodInvocationNode (org.checkerframework.dataflow.cfg.node.MethodInvocationNode)1 NarrowingConversionNode (org.checkerframework.dataflow.cfg.node.NarrowingConversionNode)1 StringConversionNode (org.checkerframework.dataflow.cfg.node.StringConversionNode)1 SuperNode (org.checkerframework.dataflow.cfg.node.SuperNode)1 TernaryExpressionNode (org.checkerframework.dataflow.cfg.node.TernaryExpressionNode)1 ThisNode (org.checkerframework.dataflow.cfg.node.ThisNode)1