com.fujitsu.vdmj.po.statements.POAssignmentStatement Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
*
* Copyright (c) 2016 Fujitsu Services Ltd.
*
* Author: Nick Battle
*
* This file is part of VDMJ.
*
* VDMJ is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* VDMJ is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with VDMJ. If not, see .
* SPDX-License-Identifier: GPL-3.0-or-later
*
******************************************************************************/
package com.fujitsu.vdmj.po.statements;
import com.fujitsu.vdmj.lex.LexLocation;
import com.fujitsu.vdmj.po.definitions.POClassDefinition;
import com.fujitsu.vdmj.po.definitions.POStateDefinition;
import com.fujitsu.vdmj.po.expressions.POExpression;
import com.fujitsu.vdmj.po.statements.visitors.POStatementVisitor;
import com.fujitsu.vdmj.pog.POContextStack;
import com.fujitsu.vdmj.pog.ProofObligationList;
import com.fujitsu.vdmj.pog.StateInvariantObligation;
import com.fujitsu.vdmj.pog.SubTypeObligation;
import com.fujitsu.vdmj.tc.types.TCType;
import com.fujitsu.vdmj.typechecker.Environment;
import com.fujitsu.vdmj.typechecker.TypeComparator;
public class POAssignmentStatement extends POStatement
{
private static final long serialVersionUID = 1L;
public final POExpression exp;
public final POStateDesignator target;
public final TCType targetType;
public final TCType expType;
public final POClassDefinition classDefinition;
public final POStateDefinition stateDefinition;
public final boolean inConstructor;
public POAssignmentStatement(LexLocation location, POStateDesignator target, POExpression exp,
TCType targetType, TCType expType, POClassDefinition classDefinition,
POStateDefinition stateDefinition, boolean inConstructor)
{
super(location);
this.exp = exp;
this.target = target;
this.targetType = targetType;
this.expType = expType;
this.classDefinition = classDefinition;
this.stateDefinition = stateDefinition;
this.inConstructor = inConstructor;
}
@Override
public String toString()
{
return target + " := " + exp;
}
@Override
public ProofObligationList getProofObligations(POContextStack ctxt, Environment env)
{
ProofObligationList obligations = new ProofObligationList();
if (!inConstructor &&
(classDefinition != null && classDefinition.invariant != null) ||
(stateDefinition != null && stateDefinition.invExpression != null))
{
obligations.add(new StateInvariantObligation(this, ctxt));
}
obligations.addAll(target.getProofObligations(ctxt));
obligations.addAll(exp.getProofObligations(ctxt, env));
if (!TypeComparator.isSubType(ctxt.checkType(exp, expType), targetType))
{
obligations.add(
new SubTypeObligation(exp, targetType, expType, ctxt));
}
return obligations;
}
@Override
public R apply(POStatementVisitor visitor, S arg)
{
return visitor.caseAssignmentStatement(this, arg);
}
}