|
JML | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.jmlspecs.jmlrac.qexpr.Translator
org.jmlspecs.jmlrac.qexpr.StaticAnalysis
org.jmlspecs.jmlrac.qexpr.StaticAnalysis.EnumerationBased
A concrete class for translating JML quantified expressions
into Java source code. The translation is based on an explicit
enumeration of all possible values for the quantified variable.
A quantified variable of boolean is implemented in
this way.
protected invariant quantiExp.quantifiedVarDecls()[0].getType() == JmlStdType.Boolean;
| Field Summary | |
protected RacContext |
context
current translation context |
protected static TokenReference |
NO_REF
|
protected JmlSpecQuantifiedExpression |
quantiExp
taget quantified expression to translate |
protected String |
resultVar
variable name to have the value of quantified expression in the translated code |
protected AbstractExpressionTranslator |
transExp
|
protected VarGenerator |
varGen
variable generator for generating unique local variables |
| Fields inherited from interface org.jmlspecs.jmlrac.RacConstants |
MN_CHECK_HC, MN_CHECK_INV, MN_CHECK_POST, MN_CHECK_PRE, MN_CHECK_XPOST, MN_EVAL_OLD, MN_GHOST, MN_INIT, MN_INTERNAL, MN_MODEL, MN_MODEL_PUBLIC, MN_RESTORE_FROM, MN_SAVE_TO, MN_SPEC, MN_SPEC_PUBLIC, TN_JMLCHECKABLE, TN_JMLSURROGATE, TN_JMLUNIT_TEST_POSTFIX, TN_JMLUNIT_TESTDATA_POSTFIX, TN_JMLVALUE, TN_SURROGATE, VN_ASSERTION, VN_CATCH_VAR, VN_CLASS_INIT, VN_CONSTRUCTED, VN_DELEGEE, VN_ERROR_SET, VN_EXCEPTION, VN_FREE_VAR, VN_INIT, VN_OLD_VAR, VN_POST_VAR, VN_PRE_VAR, VN_PRECOND, VN_RAC_COMPILED, VN_RAC_LEVEL, VN_RESULT, VN_STACK_VAR, VN_XRESULT |
| Constructor Summary | |
private |
StaticAnalysis.EnumerationBased(VarGenerator varGen,
RacContext ctx,
JmlSpecQuantifiedExpression expr,
String resultVar,
AbstractExpressionTranslator transExp)
Constructs a EnumerationBased object. |
| Method Summary | |
RacNode |
generateLoop(RacNode body)
Returns a loop code that evaluates the given body with the quantified variable bound to each possible value of the range. |
protected RacNode |
generateLoop(JVariableDefinition varDef,
JExpression qexpr,
String cond,
RacNode result)
Returns Java source code for evaluating quantified expressions using the QSet-based translation. |
static StaticAnalysis |
getInstance(VarGenerator varGen,
RacContext ctx,
JmlSpecQuantifiedExpression expr,
String resultVar,
AbstractExpressionTranslator transExp)
Returns an instance of StaticAnalysis, that
translates JML quantified expressions into Java source code. |
protected RacNode |
transExpression(JExpression expr,
String var)
Returns code for evaluating expression expr and
storing the result to the variable var. |
RacNode |
translate()
Translate a JML quantified expression into Java source code and return the result. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected static final TokenReference NO_REF
protected VarGenerator varGen
protected RacContext context
protected JmlSpecQuantifiedExpression quantiExp
protected String resultVar
protected AbstractExpressionTranslator transExp
| Constructor Detail |
private StaticAnalysis.EnumerationBased(VarGenerator varGen,
RacContext ctx,
JmlSpecQuantifiedExpression expr,
String resultVar,
AbstractExpressionTranslator transExp)
EnumerationBased object.
varGen - variable generator to be used in translation for
generating unique local variables.expr - quantified expression to be translated.resultVar - variable name to have the value of quantified
expression in the translated code.transExp - translator to use for translating subexpressions of
the quantified expression.
requires expr.quantifiedVarDecls()[0].getType() == JmlStdType.Boolean;
| Method Detail |
protected RacNode generateLoop(JVariableDefinition varDef,
JExpression qexpr,
String cond,
RacNode result)
throws NonExecutableQuantifierException
boolean[] v = { false, true };
for (int i = 0; [cond &&] i < v.length; i++) {
bool x = v[i];
result
}
where x is the quantified variable and
v and i are fresh variables.
varDef - quantified variableqexpr - target expression for interval calculation (i.e.,
normally, the predicate part of the quantified
expression)cond - additional condition to be conjoined (&&)
to the loop condition; null for no extra
condition.result - code for evaluating expression part (or inner loop)
NonExecutableQuantifierException - if not executable.
public static StaticAnalysis getInstance(VarGenerator varGen,
RacContext ctx,
JmlSpecQuantifiedExpression expr,
String resultVar,
AbstractExpressionTranslator transExp)
StaticAnalysis, that
translates JML quantified expressions into Java source code.
varGen - variable generator to be used in translation for
generating unique local variables.expr - quantified expression to be translated.resultVar - variable name to store the result value of quantified
expression in the translated code.transExp - translator to use for translating subexpressions.
public RacNode translate()
throws NonExecutableQuantifierException
NonExecutableQuantifierException - if not executable.
NonExecutableQuantifierException
public RacNode generateLoop(RacNode body)
throws NonExecutableQuantifierException
{
T l = 0;
T u = 0;
[[eval of l and u from predicate part]]
while (l < u) {
T x = l;
result
l = l + 1;
}
}
where x is the quantified variable.
body - code to be executed as the loop body
NonExecutableQuantifierException - if not executable.
protected RacNode transExpression(JExpression expr,
String var)
expr and
storing the result to the variable var.
As a special case, returns var = true;
if expr is null.
|
JML | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||