summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-05-22 07:40:35 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-05-22 07:40:35 (GMT)
commit1e66bfd04f864a040b1e4a68f0db0f55f15b91a3 (patch)
treec254dc899d79e0fc6962ef2d2d5dfc26de1a6766 /src
parentf9a620340ddce2a17fd775d1e210268cac13377b (diff)
downloaduscxml-1e66bfd04f864a040b1e4a68f0db0f55f15b91a3.zip
uscxml-1e66bfd04f864a040b1e4a68f0db0f55f15b91a3.tar.gz
uscxml-1e66bfd04f864a040b1e4a68f0db0f55f15b91a3.tar.bz2
Builds with MSVC again
Diffstat (limited to 'src')
-rw-r--r--src/uscxml/Factory.cpp4
-rw-r--r--src/uscxml/plugins/datamodel/promela/PromelaDataModel.cpp56
-rw-r--r--src/uscxml/plugins/datamodel/promela/PromelaParser.cpp68
-rw-r--r--src/uscxml/plugins/datamodel/promela/parser/promela.l68
-rw-r--r--src/uscxml/plugins/datamodel/promela/parser/promela.lex.yy.cpp1694
-rw-r--r--src/uscxml/plugins/datamodel/promela/parser/promela.tab.cpp2651
-rw-r--r--src/uscxml/plugins/datamodel/promela/parser/promela.tab.hpp144
-rw-r--r--src/uscxml/plugins/datamodel/promela/parser/promela.ypp196
-rw-r--r--src/uscxml/plugins/invoker/CMakeLists.txt25
-rw-r--r--src/uscxml/plugins/invoker/miles/MilesSessionInvoker.cpp2
-rw-r--r--src/uscxml/plugins/invoker/miles/MilesSessionInvoker.h2
-rw-r--r--src/uscxml/transform/ChartToFSM.cpp3
12 files changed, 2521 insertions, 2392 deletions
diff --git a/src/uscxml/Factory.cpp b/src/uscxml/Factory.cpp
index 289c2bb..2c663b2 100644
--- a/src/uscxml/Factory.cpp
+++ b/src/uscxml/Factory.cpp
@@ -49,7 +49,7 @@
//# include "uscxml/plugins/ioprocessor/modality/MMIHTTPIOProcessor.h"
#endif
-# ifdef UMUNDO_FOUND
+# if (defined UMUNDO_FOUND && defined PROTOBUF_FOUND)
# include "uscxml/plugins/invoker/umundo/UmundoInvoker.h"
//# include "uscxml/plugins/invoker/vxml/VoiceXMLInvoker.h"
#endif
@@ -165,7 +165,7 @@ Factory::Factory() {
}
#else
#if 1
-#ifdef UMUNDO_FOUND
+# if (defined UMUNDO_FOUND && defined PROTOBUF_FOUND)
{
UmundoInvoker* invoker = new UmundoInvoker();
registerInvoker(invoker);
diff --git a/src/uscxml/plugins/datamodel/promela/PromelaDataModel.cpp b/src/uscxml/plugins/datamodel/promela/PromelaDataModel.cpp
index bf0cc11..8bfc39d 100644
--- a/src/uscxml/plugins/datamodel/promela/PromelaDataModel.cpp
+++ b/src/uscxml/plugins/datamodel/promela/PromelaDataModel.cpp
@@ -165,7 +165,7 @@ void PromelaDataModel::assign(const Element<std::string>& assignElem,
void PromelaDataModel::evaluateDecl(void* ast) {
PromelaParserNode* node = (PromelaParserNode*)ast;
if (false) {
- } else if (node->type == DECL) {
+ } else if (node->type == PML_DECL) {
std::list<PromelaParserNode*>::iterator opIter = node->operands.begin();
PromelaParserNode* vis = *opIter++;
PromelaParserNode* type = *opIter++;
@@ -179,7 +179,7 @@ void PromelaDataModel::evaluateDecl(void* ast) {
variable.compound["type"] = Data(type->value, Data::VERBATIM);
if (false) {
- } else if ((*nameIter)->type == NAME) {
+ } else if ((*nameIter)->type == PML_NAME) {
// plain variables without initial assignment
if (type->value == "mtype") {
@@ -189,7 +189,7 @@ void PromelaDataModel::evaluateDecl(void* ast) {
}
_variables.compound[(*nameIter)->value] = variable;
- } else if ((*nameIter)->type == ASGN) {
+ } else if ((*nameIter)->type == PML_ASGN) {
// initially assigned variables
std::list<PromelaParserNode*>::iterator opIterAsgn = (*nameIter)->operands.begin();
@@ -200,7 +200,7 @@ void PromelaDataModel::evaluateDecl(void* ast) {
assert(opIterAsgn == (*nameIter)->operands.end());
_variables.compound[name->value] = variable;
- } else if ((*nameIter)->type == VAR_ARRAY) {
+ } else if ((*nameIter)->type == PML_VAR_ARRAY) {
// variable arrays
std::list<PromelaParserNode*>::iterator opIterAsgn = (*nameIter)->operands.begin();
@@ -220,7 +220,7 @@ void PromelaDataModel::evaluateDecl(void* ast) {
}
}
assert(opIter == node->operands.end());
- } else if (node->type == DECLLIST) {
+ } else if (node->type == PML_DECLLIST) {
for (std::list<PromelaParserNode*>::iterator declIter = node->operands.begin();
declIter != node->operands.end();
declIter++) {
@@ -235,38 +235,38 @@ int PromelaDataModel::evaluateExpr(void* ast) {
PromelaParserNode* node = (PromelaParserNode*)ast;
std::list<PromelaParserNode*>::iterator opIter = node->operands.begin();
switch (node->type) {
- case CONST:
+ case PML_CONST:
return strTo<int>(node->value);
- case NAME:
- case VAR_ARRAY:
+ case PML_NAME:
+ case PML_VAR_ARRAY:
return getVariable(node);
- case PLUS:
+ case PML_PLUS:
return evaluateExpr(*opIter++) + evaluateExpr(*opIter++);
- case MINUS:
+ case PML_MINUS:
return evaluateExpr(*opIter++) - evaluateExpr(*opIter++);
- case DIVIDE:
+ case PML_DIVIDE:
return evaluateExpr(*opIter++) / evaluateExpr(*opIter++);
- case MODULO:
+ case PML_MODULO:
return evaluateExpr(*opIter++) % evaluateExpr(*opIter++);
- case EQ:
+ case PML_EQ:
return evaluateExpr(*opIter++) == evaluateExpr(*opIter++);
- case LT:
+ case PML_LT:
return evaluateExpr(*opIter++) < evaluateExpr(*opIter++);
- case LE:
+ case PML_LE:
return evaluateExpr(*opIter++) <= evaluateExpr(*opIter++);
- case GT:
+ case PML_GT:
return evaluateExpr(*opIter++) > evaluateExpr(*opIter++);
- case GE:
+ case PML_GE:
return evaluateExpr(*opIter++) >= evaluateExpr(*opIter++);
- case TIMES:
+ case PML_TIMES:
return evaluateExpr(*opIter++) * evaluateExpr(*opIter++);
- case LSHIFT:
+ case PML_LSHIFT:
return evaluateExpr(*opIter++) << evaluateExpr(*opIter++);
- case RSHIFT:
+ case PML_RSHIFT:
return evaluateExpr(*opIter++) >> evaluateExpr(*opIter++);
- case AND:
+ case PML_AND:
return evaluateExpr(*opIter++) != 0 && evaluateExpr(*opIter++) != 0;
- case OR:
+ case PML_OR:
return evaluateExpr(*opIter++) != 0 || evaluateExpr(*opIter++) != 0;
default:
throwErrorExecution("Support for " + PromelaParserNode::typeToDesc(node->type) + " expressions not implemented");
@@ -278,13 +278,13 @@ void PromelaDataModel::evaluateStmnt(void* ast) {
PromelaParserNode* node = (PromelaParserNode*)ast;
std::list<PromelaParserNode*>::iterator opIter = node->operands.begin();
switch (node->type) {
- case ASGN: {
+ case PML_ASGN: {
PromelaParserNode* name = *opIter++;
PromelaParserNode* expr = *opIter++;
setVariable(name, evaluateExpr(expr));
break;
}
- case STMNT: {
+ case PML_STMNT: {
while(opIter != node->operands.end()) {
evaluateStmnt(*opIter++);
}
@@ -300,7 +300,7 @@ void PromelaDataModel::setVariable(void* ast, int value) {
std::list<PromelaParserNode*>::iterator opIter = node->operands.begin();
switch (node->type) {
- case VAR_ARRAY: {
+ case PML_VAR_ARRAY: {
PromelaParserNode* name = *opIter++;
PromelaParserNode* expr = *opIter++;
int index = evaluateExpr(expr);
@@ -321,7 +321,7 @@ void PromelaDataModel::setVariable(void* ast, int value) {
break;
}
- case NAME:
+ case PML_NAME:
_variables.compound[node->value].compound["value"] = Data(value, Data::VERBATIM);
break;
default:
@@ -337,7 +337,7 @@ int PromelaDataModel::getVariable(void* ast) {
std::list<PromelaParserNode*>::iterator opIter = node->operands.begin();
switch(node->type) {
- case NAME:
+ case PML_NAME:
if (_variables.compound.find(node->value) == _variables.compound.end()) {
throwErrorExecution("No variable " + node->value + " was declared");
}
@@ -345,7 +345,7 @@ int PromelaDataModel::getVariable(void* ast) {
throwErrorExecution("Type error: Variable " + node->value + " is an array");
}
return strTo<int>(_variables[node->value]["value"].atom);
- case VAR_ARRAY: {
+ case PML_VAR_ARRAY: {
PromelaParserNode* name = *opIter++;
PromelaParserNode* expr = *opIter++;
int index = evaluateExpr(expr);
diff --git a/src/uscxml/plugins/datamodel/promela/PromelaParser.cpp b/src/uscxml/plugins/datamodel/promela/PromelaParser.cpp
index 0966396..a1edcae 100644
--- a/src/uscxml/plugins/datamodel/promela/PromelaParser.cpp
+++ b/src/uscxml/plugins/datamodel/promela/PromelaParser.cpp
@@ -171,73 +171,73 @@ void PromelaParserNode::dump(int indent) {
std::string PromelaParserNode::typeToDesc(int type) {
switch(type) {
- case PLUS:
+ case PML_PLUS:
return "PLUS";
- case MINUS:
+ case PML_MINUS:
return "MINUS";
- case TIMES:
+ case PML_TIMES:
return "TIMES";
- case DIVIDE:
+ case PML_DIVIDE:
return "DIVIDE";
- case MODULO:
+ case PML_MODULO:
return "MODULO";
- case BITAND:
+ case PML_BITAND:
return "BITAND";
- case BITXOR:
+ case PML_BITXOR:
return "BITXOR";
- case BITOR:
+ case PML_BITOR:
return "BITOR";
- case GT:
+ case PML_GT:
return "GT";
- case LT:
+ case PML_LT:
return "LT";
- case GE:
+ case PML_GE:
return "GE";
- case LE:
+ case PML_LE:
return "LE";
- case EQ:
+ case PML_EQ:
return "EQ";
- case NE:
+ case PML_NE:
return "NE";
- case AND:
+ case PML_AND:
return "AND";
- case OR:
+ case PML_OR:
return "OR";
- case LSHIFT:
+ case PML_LSHIFT:
return "LSHIFT";
- case RSHIFT:
+ case PML_RSHIFT:
return "RSHIFT";
- case NEG:
+ case PML_NEG:
return "NEG";
- case ASGN:
+ case PML_ASGN:
return "ASGN";
- case INCR:
+ case PML_INCR:
return "INCR";
- case DECR:
+ case PML_DECR:
return "DECR";
- case VAR_ARRAY:
+ case PML_VAR_ARRAY:
return "VAR_ARRAY";
- case DECL:
+ case PML_DECL:
return "DECL";
- case STMNT:
+ case PML_STMNT:
return "STMNT";
- case TYPE:
+ case PML_TYPE:
return "TYPE";
- case NAME:
+ case PML_NAME:
return "NAME";
- case CONST:
+ case PML_CONST:
return "CONST";
- case PRINT:
+ case PML_PRINT:
return "PRINT";
- case SHOW:
+ case PML_SHOW:
return "SHOW";
- case EXPR:
+ case PML_EXPR:
return "EXPR";
- case VARLIST:
+ case PML_VARLIST:
return "VARLIST";
- case DECLLIST:
+ case PML_DECLLIST:
return "DECLLIST";
- case NAMELIST:
+ case PML_NAMELIST:
return "NAMELIST";
default:
diff --git a/src/uscxml/plugins/datamodel/promela/parser/promela.l b/src/uscxml/plugins/datamodel/promela/parser/promela.l
index d82df4e..2aaef06 100644
--- a/src/uscxml/plugins/datamodel/promela/parser/promela.l
+++ b/src/uscxml/plugins/datamodel/promela/parser/promela.l
@@ -26,48 +26,48 @@ L [a-zA-Z_]
bit|bool|byte|int|mtype|short|unsigned {
yylval->value = strdup(yytext);
- return TYPE;
+ return PML_TYPE;
}
-len { return LEN; }
-false|skip|true { yylval->value = strdup(yytext); return CONST; }
-printf { return PRINT; }
-printm { return PRINTM; }
+len { return PML_LEN; }
+false|skip|true { yylval->value = strdup(yytext); return PML_CONST; }
+printf { return PML_PRINT; }
+printm { return PML_PRINTM; }
-"!" { return NEG; }
-"~" { return COMPL; }
-"++" { return INCR; }
-"--" { return DECR; }
+"!" { return PML_NEG; }
+"~" { return PML_COMPL; }
+"++" { return PML_INCR; }
+"--" { return PML_DECR; }
-"*" { return TIMES; }
-"/" { return DIVIDE; }
-"%" { return MODULO; }
+"*" { return PML_TIMES; }
+"/" { return PML_DIVIDE; }
+"%" { return PML_MODULO; }
-"+" { return PLUS; }
-"-" { return MINUS; }
+"+" { return PML_PLUS; }
+"-" { return PML_MINUS; }
-"<<" { return LSHIFT; }
-">>" { return RSHIFT; }
+"<<" { return PML_LSHIFT; }
+">>" { return PML_RSHIFT; }
-"<=" { return LE; }
-">=" { return GE; }
-"<" { return LT; }
-">" { return GT; }
+"<=" { return PML_LE; }
+">=" { return PML_GE; }
+"<" { return PML_LT; }
+">" { return PML_GT; }
-"!=" { return NE; }
-"==" { return EQ; }
+"!=" { return PML_NE; }
+"==" { return PML_EQ; }
-"&" { return BITAND; }
-"^" { return BITXOR; }
-"|" { return BITOR; }
+"&" { return PML_BITAND; }
+"^" { return PML_BITXOR; }
+"|" { return PML_BITOR; }
-"&&" { return AND; }
-"||" { return OR; }
+"&&" { return PML_AND; }
+"||" { return PML_OR; }
-"." { return DOT; }
-"," { return COMMA; }
-";" { return SEMI; }
+"." { return PML_DOT; }
+"," { return PML_COMMA; }
+";" { return PML_SEMI; }
"(" { return '('; }
")" { return ')'; }
@@ -78,12 +78,12 @@ printm { return PRINTM; }
"{" { return '{'; }
"}" { return '}'; }
-"=" { return ASGN; }
+"=" { return PML_ASGN; }
-L?\"(\\.|[^\\"])*\" { yylval->value = strdup(yytext); return(STRING); }
+L?\"(\\.|[^\\"])*\" { yylval->value = strdup(yytext); return(PML_STRING); }
-{DIGIT}+ { yylval->value = strdup(yytext); return CONST; }
-{ID} { yylval->value = strdup(yytext); return NAME; }
+{DIGIT}+ { yylval->value = strdup(yytext); return PML_CONST; }
+{ID} { yylval->value = strdup(yytext); return PML_NAME; }
\'(\\.|[^'])*\' { }
diff --git a/src/uscxml/plugins/datamodel/promela/parser/promela.lex.yy.cpp b/src/uscxml/plugins/datamodel/promela/parser/promela.lex.yy.cpp
index a170089..0f931fa 100644
--- a/src/uscxml/plugins/datamodel/promela/parser/promela.lex.yy.cpp
+++ b/src/uscxml/plugins/datamodel/promela/parser/promela.lex.yy.cpp
@@ -26,7 +26,7 @@
/* %endif */
/* %if-c-only */
-
+
/* %endif */
/* %if-c-only */
@@ -58,7 +58,7 @@
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
- * if you want the limit (max/min) macros for int types.
+ * if you want the limit (max/min) macros for int types.
*/
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
@@ -76,7 +76,7 @@ typedef uint64_t flex_uint64_t;
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
-typedef unsigned char flex_uint8_t;
+typedef unsigned char flex_uint8_t;
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
#endif /* ! C99 */
@@ -230,8 +230,8 @@ typedef size_t yy_size_t;
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
-#define YY_LESS_LINENO(n)
-
+ #define YY_LESS_LINENO(n)
+
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n) \
do \
@@ -250,13 +250,14 @@ typedef size_t yy_size_t;
#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
-struct yy_buffer_state {
- /* %if-c-only */
+struct yy_buffer_state
+ {
+/* %if-c-only */
FILE *yy_input_file;
- /* %endif */
+/* %endif */
- /* %if-c++-only */
- /* %endif */
+/* %if-c++-only */
+/* %endif */
char *yy_ch_buf; /* input buffer */
char *yy_buf_pos; /* current position in input buffer */
@@ -290,9 +291,9 @@ struct yy_buffer_state {
*/
int yy_at_bol;
- int yy_bs_lineno; /**< The line count. */
- int yy_bs_column; /**< The column count. */
-
+ int yy_bs_lineno; /**< The line count. */
+ int yy_bs_column; /**< The column count. */
+
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
@@ -314,7 +315,7 @@ struct yy_buffer_state {
*/
#define YY_BUFFER_EOF_PENDING 2
-};
+ };
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
/* %if-c-only Standard (non-C++) definition */
@@ -437,159 +438,160 @@ static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner );
#define YY_END_OF_BUFFER 45
/* This struct is not used in this scanner,
but its presence is necessary. */
-struct yy_trans_info {
+struct yy_trans_info
+ {
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
-};
-static yyconst flex_int16_t yy_accept[102] = {
- 0,
- 0, 0, 45, 43, 42, 42, 6, 43, 12, 23,
- 43, 31, 32, 10, 13, 29, 14, 28, 11, 39,
- 30, 19, 37, 20, 40, 40, 33, 34, 24, 40,
- 40, 40, 40, 40, 40, 40, 40, 40, 35, 25,
- 36, 7, 42, 21, 0, 38, 0, 26, 0, 41,
- 0, 8, 9, 39, 15, 17, 22, 18, 16, 40,
- 0, 40, 40, 40, 40, 40, 40, 40, 40, 40,
- 40, 40, 40, 27, 0, 41, 0, 1, 40, 40,
- 40, 2, 40, 40, 40, 40, 40, 40, 40, 40,
- 40, 40, 3, 40, 40, 40, 4, 5, 40, 40,
-
- 0
-} ;
-
-static yyconst flex_int32_t yy_ec[256] = {
- 0,
- 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 2, 4, 5, 1, 1, 6, 7, 8, 9,
- 10, 11, 12, 13, 14, 15, 16, 17, 17, 17,
- 17, 17, 17, 17, 17, 17, 17, 1, 18, 19,
- 20, 21, 1, 1, 22, 22, 22, 22, 22, 22,
- 22, 22, 22, 22, 22, 23, 22, 22, 22, 22,
- 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
- 24, 25, 26, 27, 22, 1, 28, 29, 22, 30,
-
- 31, 32, 33, 34, 35, 22, 36, 37, 38, 39,
- 40, 41, 22, 42, 43, 44, 45, 22, 22, 22,
- 46, 22, 47, 48, 49, 50, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1
-} ;
-
-static yyconst flex_int32_t yy_meta[51] = {
- 0,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 2, 1, 1, 1,
- 1, 2, 2, 1, 1, 1, 1, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 1, 1, 1, 1
-} ;
-
-static yyconst flex_int16_t yy_base[106] = {
- 0,
- 0, 0, 141, 142, 49, 51, 120, 50, 142, 132,
- 48, 142, 142, 142, 126, 142, 123, 142, 142, 119,
- 142, 38, 115, 39, 0, 129, 142, 142, 142, 26,
- 105, 93, 100, 86, 87, 28, 86, 88, 142, 78,
- 142, 142, 65, 142, 58, 142, 122, 142, 57, 142,
- 66, 142, 142, 107, 142, 142, 142, 142, 142, 0,
- 65, 79, 82, 77, 83, 75, 79, 71, 81, 75,
- 79, 68, 69, 142, 63, 68, 76, 0, 74, 79,
- 66, 0, 67, 61, 57, 57, 66, 61, 64, 63,
- 48, 45, 0, 54, 48, 46, 0, 0, 50, 48,
-
- 142, 101, 103, 75, 105
-} ;
-
-static yyconst flex_int16_t yy_def[106] = {
- 0,
- 101, 1, 101, 101, 101, 101, 101, 102, 101, 101,
- 103, 101, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101, 101, 101, 104, 104, 101, 101, 101, 104,
- 104, 104, 104, 104, 104, 104, 104, 104, 101, 101,
- 101, 101, 101, 101, 102, 101, 102, 101, 103, 101,
- 105, 101, 101, 101, 101, 101, 101, 101, 101, 104,
- 102, 104, 104, 104, 104, 104, 104, 104, 104, 104,
- 104, 104, 104, 101, 103, 103, 105, 104, 104, 104,
- 104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
- 104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
-
- 0, 101, 101, 101, 101
-} ;
-
-static yyconst flex_int16_t yy_nxt[193] = {
- 0,
- 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
- 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 26, 27, 4, 28, 29, 25, 30, 25,
- 25, 31, 25, 25, 32, 25, 33, 34, 25, 25,
- 35, 25, 36, 37, 38, 25, 39, 40, 41, 42,
- 43, 43, 43, 43, 46, 50, 55, 56, 58, 59,
- 62, 70, 46, 71, 50, 63, 43, 43, 49, 46,
- 50, 64, 51, 76, 47, 50, 60, 78, 49, 97,
- 100, 51, 47, 76, 99, 98, 96, 51, 78, 47,
- 77, 95, 51, 78, 93, 94, 93, 93, 92, 91,
-
- 77, 45, 45, 49, 49, 75, 75, 90, 89, 78,
- 78, 88, 87, 86, 85, 84, 83, 82, 78, 81,
- 80, 79, 78, 54, 101, 74, 73, 72, 69, 68,
- 67, 66, 65, 61, 57, 54, 53, 52, 48, 44,
- 101, 3, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101
-
-} ;
-
-static yyconst flex_int16_t yy_chk[193] = {
- 0,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 5, 5, 6, 6, 8, 11, 22, 22, 24, 24,
- 30, 36, 45, 36, 49, 30, 43, 43, 51, 61,
- 75, 30, 11, 51, 8, 76, 104, 100, 77, 95,
- 99, 49, 45, 77, 96, 95, 94, 75, 92, 61,
- 51, 91, 76, 90, 89, 88, 87, 86, 85, 84,
-
- 77, 102, 102, 103, 103, 105, 105, 83, 81, 80,
- 79, 73, 72, 71, 70, 69, 68, 67, 66, 65,
- 64, 63, 62, 54, 47, 40, 38, 37, 35, 34,
- 33, 32, 31, 26, 23, 20, 17, 15, 10, 7,
- 3, 101, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
- 101, 101
-
-} ;
-
-static yyconst flex_int16_t yy_rule_linenum[44] = {
- 0,
- 27, 32, 33, 34, 35, 37, 38, 39, 40, 42,
- 43, 44, 46, 47, 49, 50, 52, 53, 54, 55,
- 57, 58, 60, 61, 62, 65, 66, 68, 69, 70,
- 72, 73, 75, 76, 78, 79, 81, 83, 85, 86,
- 88, 90, 92
-} ;
+ };
+static yyconst flex_int16_t yy_accept[102] =
+ { 0,
+ 0, 0, 45, 43, 42, 42, 6, 43, 12, 23,
+ 43, 31, 32, 10, 13, 29, 14, 28, 11, 39,
+ 30, 19, 37, 20, 40, 40, 33, 34, 24, 40,
+ 40, 40, 40, 40, 40, 40, 40, 40, 35, 25,
+ 36, 7, 42, 21, 0, 38, 0, 26, 0, 41,
+ 0, 8, 9, 39, 15, 17, 22, 18, 16, 40,
+ 0, 40, 40, 40, 40, 40, 40, 40, 40, 40,
+ 40, 40, 40, 27, 0, 41, 0, 1, 40, 40,
+ 40, 2, 40, 40, 40, 40, 40, 40, 40, 40,
+ 40, 40, 3, 40, 40, 40, 4, 5, 40, 40,
+
+ 0
+ } ;
+
+static yyconst flex_int32_t yy_ec[256] =
+ { 0,
+ 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 2, 4, 5, 1, 1, 6, 7, 8, 9,
+ 10, 11, 12, 13, 14, 15, 16, 17, 17, 17,
+ 17, 17, 17, 17, 17, 17, 17, 1, 18, 19,
+ 20, 21, 1, 1, 22, 22, 22, 22, 22, 22,
+ 22, 22, 22, 22, 22, 23, 22, 22, 22, 22,
+ 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
+ 24, 25, 26, 27, 22, 1, 28, 29, 22, 30,
+
+ 31, 32, 33, 34, 35, 22, 36, 37, 38, 39,
+ 40, 41, 22, 42, 43, 44, 45, 22, 22, 22,
+ 46, 22, 47, 48, 49, 50, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1
+ } ;
+
+static yyconst flex_int32_t yy_meta[51] =
+ { 0,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 2, 1, 1, 1,
+ 1, 2, 2, 1, 1, 1, 1, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 1, 1, 1, 1
+ } ;
+
+static yyconst flex_int16_t yy_base[106] =
+ { 0,
+ 0, 0, 141, 142, 49, 51, 120, 50, 142, 132,
+ 48, 142, 142, 142, 126, 142, 123, 142, 142, 119,
+ 142, 38, 115, 39, 0, 129, 142, 142, 142, 26,
+ 105, 93, 100, 86, 87, 28, 86, 88, 142, 78,
+ 142, 142, 65, 142, 58, 142, 122, 142, 57, 142,
+ 66, 142, 142, 107, 142, 142, 142, 142, 142, 0,
+ 65, 79, 82, 77, 83, 75, 79, 71, 81, 75,
+ 79, 68, 69, 142, 63, 68, 76, 0, 74, 79,
+ 66, 0, 67, 61, 57, 57, 66, 61, 64, 63,
+ 48, 45, 0, 54, 48, 46, 0, 0, 50, 48,
+
+ 142, 101, 103, 75, 105
+ } ;
+
+static yyconst flex_int16_t yy_def[106] =
+ { 0,
+ 101, 1, 101, 101, 101, 101, 101, 102, 101, 101,
+ 103, 101, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101, 101, 101, 104, 104, 101, 101, 101, 104,
+ 104, 104, 104, 104, 104, 104, 104, 104, 101, 101,
+ 101, 101, 101, 101, 102, 101, 102, 101, 103, 101,
+ 105, 101, 101, 101, 101, 101, 101, 101, 101, 104,
+ 102, 104, 104, 104, 104, 104, 104, 104, 104, 104,
+ 104, 104, 104, 101, 103, 103, 105, 104, 104, 104,
+ 104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
+ 104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
+
+ 0, 101, 101, 101, 101
+ } ;
+
+static yyconst flex_int16_t yy_nxt[193] =
+ { 0,
+ 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
+ 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, 27, 4, 28, 29, 25, 30, 25,
+ 25, 31, 25, 25, 32, 25, 33, 34, 25, 25,
+ 35, 25, 36, 37, 38, 25, 39, 40, 41, 42,
+ 43, 43, 43, 43, 46, 50, 55, 56, 58, 59,
+ 62, 70, 46, 71, 50, 63, 43, 43, 49, 46,
+ 50, 64, 51, 76, 47, 50, 60, 78, 49, 97,
+ 100, 51, 47, 76, 99, 98, 96, 51, 78, 47,
+ 77, 95, 51, 78, 93, 94, 93, 93, 92, 91,
+
+ 77, 45, 45, 49, 49, 75, 75, 90, 89, 78,
+ 78, 88, 87, 86, 85, 84, 83, 82, 78, 81,
+ 80, 79, 78, 54, 101, 74, 73, 72, 69, 68,
+ 67, 66, 65, 61, 57, 54, 53, 52, 48, 44,
+ 101, 3, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101
+
+ } ;
+
+static yyconst flex_int16_t yy_chk[193] =
+ { 0,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 5, 5, 6, 6, 8, 11, 22, 22, 24, 24,
+ 30, 36, 45, 36, 49, 30, 43, 43, 51, 61,
+ 75, 30, 11, 51, 8, 76, 104, 100, 77, 95,
+ 99, 49, 45, 77, 96, 95, 94, 75, 92, 61,
+ 51, 91, 76, 90, 89, 88, 87, 86, 85, 84,
+
+ 77, 102, 102, 103, 103, 105, 105, 83, 81, 80,
+ 79, 73, 72, 71, 70, 69, 68, 67, 66, 65,
+ 64, 63, 62, 54, 47, 40, 38, 37, 35, 34,
+ 33, 32, 31, 26, 23, 20, 17, 15, 10, 7,
+ 3, 101, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 101
+
+ } ;
+
+static yyconst flex_int16_t yy_rule_linenum[44] =
+ { 0,
+ 27, 32, 33, 34, 35, 37, 38, 39, 40, 42,
+ 43, 44, 46, 47, 49, 50, 52, 53, 54, 55,
+ 57, 58, 60, 61, 62, 65, 66, 68, 69, 70,
+ 72, 73, 75, 76, 78, 79, 81, 83, 85, 86,
+ 88, 90, 92
+ } ;
/* The intent behind this definition is that it'll catch
* any uses of REJECT which flex missed.
@@ -603,7 +605,7 @@ static yyconst flex_int16_t yy_rule_linenum[44] = {
/* see: http://spinroot.com/spin/Man/operators.html */
#define YY_NO_UNISTD_H 1
#line 14 "promela.l"
-
+
#include "../PromelaParser.h"
#include "promela.tab.hpp"
#define YYSTYPE PROMELA_STYPE
@@ -632,39 +634,40 @@ static yyconst flex_int16_t yy_rule_linenum[44] = {
/* %if-reentrant */
/* Holds the entire state of the reentrant scanner. */
-struct yyguts_t {
-
- /* User-defined. Not touched by flex. */
- YY_EXTRA_TYPE yyextra_r;
-
- /* The rest are the same as the globals declared in the non-reentrant scanner. */
- FILE *yyin_r, *yyout_r;
- size_t yy_buffer_stack_top; /**< index of top of stack. */
- size_t yy_buffer_stack_max; /**< capacity of stack. */
- YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
- char yy_hold_char;
- yy_size_t yy_n_chars;
- yy_size_t yyleng_r;
- char *yy_c_buf_p;
- int yy_init;
- int yy_start;
- int yy_did_buffer_switch_on_eof;
- int yy_start_stack_ptr;
- int yy_start_stack_depth;
- int *yy_start_stack;
- yy_state_type yy_last_accepting_state;
- char* yy_last_accepting_cpos;
-
- int yylineno_r;
- int yy_flex_debug_r;
-
- char *yytext_r;
- int yy_more_flag;
- int yy_more_len;
-
- YYSTYPE * yylval_r;
-
-}; /* end struct yyguts_t */
+struct yyguts_t
+ {
+
+ /* User-defined. Not touched by flex. */
+ YY_EXTRA_TYPE yyextra_r;
+
+ /* The rest are the same as the globals declared in the non-reentrant scanner. */
+ FILE *yyin_r, *yyout_r;
+ size_t yy_buffer_stack_top; /**< index of top of stack. */
+ size_t yy_buffer_stack_max; /**< capacity of stack. */
+ YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
+ char yy_hold_char;
+ yy_size_t yy_n_chars;
+ yy_size_t yyleng_r;
+ char *yy_c_buf_p;
+ int yy_init;
+ int yy_start;
+ int yy_did_buffer_switch_on_eof;
+ int yy_start_stack_ptr;
+ int yy_start_stack_depth;
+ int *yy_start_stack;
+ yy_state_type yy_last_accepting_state;
+ char* yy_last_accepting_cpos;
+
+ int yylineno_r;
+ int yy_flex_debug_r;
+
+ char *yytext_r;
+ int yy_more_flag;
+ int yy_more_len;
+
+ YYSTYPE * yylval_r;
+
+ }; /* end struct yyguts_t */
/* %if-c-only */
@@ -674,10 +677,10 @@ static int yy_init_globals (yyscan_t yyscanner );
/* %if-reentrant */
-/* This must go here because YYSTYPE and YYLTYPE are included
- * from bison output in section 1.*/
-# define yylval yyg->yylval_r
-
+ /* This must go here because YYSTYPE and YYLTYPE are included
+ * from bison output in section 1.*/
+ # define yylval yyg->yylval_r
+
int promela_lex_init (yyscan_t* scanner);
int promela_lex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner);
@@ -737,8 +740,8 @@ extern int promela_wrap (yyscan_t yyscanner );
/* %not-for-header */
-static void yyunput (int c,char *buf_ptr ,yyscan_t yyscanner);
-
+ static void yyunput (int c,char *buf_ptr ,yyscan_t yyscanner);
+
/* %ok-for-header */
/* %endif */
@@ -868,7 +871,7 @@ static int input (yyscan_t yyscanner );
/* %if-c-only Standard (non-C++) definition */
extern int promela_lex \
-(YYSTYPE * yylval_param ,yyscan_t yyscanner);
+ (YYSTYPE * yylval_param ,yyscan_t yyscanner);
#define YY_DECL int promela_lex \
(YYSTYPE * yylval_param , yyscan_t yyscanner)
@@ -897,21 +900,23 @@ extern int promela_lex \
/** The main scanner function which does all the work.
*/
-YY_DECL {
+YY_DECL
+{
register yy_state_type yy_current_state;
register char *yy_cp, *yy_bp;
register int yy_act;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- /* %% [7.0] user's declarations go here */
+/* %% [7.0] user's declarations go here */
#line 25 "promela.l"
#line 915 "promela.lex.yy.cpp"
- yylval = yylval_param;
+ yylval = yylval_param;
- if ( !yyg->yy_init ) {
+ if ( !yyg->yy_init )
+ {
yyg->yy_init = 1;
#ifdef YY_USER_INIT
@@ -922,30 +927,31 @@ YY_DECL {
yyg->yy_start = 1; /* first start state */
if ( ! yyin )
- /* %if-c-only */
+/* %if-c-only */
yyin = stdin;
- /* %endif */
- /* %if-c++-only */
- /* %endif */
+/* %endif */
+/* %if-c++-only */
+/* %endif */
if ( ! yyout )
- /* %if-c-only */
+/* %if-c-only */
yyout = stdout;
- /* %endif */
- /* %if-c++-only */
- /* %endif */
+/* %endif */
+/* %if-c++-only */
+/* %endif */
if ( ! YY_CURRENT_BUFFER ) {
promela_ensure_buffer_stack (yyscanner);
YY_CURRENT_BUFFER_LVALUE =
- promela__create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
+ promela__create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
}
promela__load_buffer_state(yyscanner );
- }
+ }
- while ( 1 ) { /* loops until end-of-file is reached */
- /* %% [8.0] yymore()-related code goes here */
+ while ( 1 ) /* loops until end-of-file is reached */
+ {
+/* %% [8.0] yymore()-related code goes here */
yy_cp = yyg->yy_c_buf_p;
/* Support of yytext. */
@@ -956,38 +962,43 @@ YY_DECL {
*/
yy_bp = yy_cp;
- /* %% [9.0] code to set up and find next match goes here */
+/* %% [9.0] code to set up and find next match goes here */
yy_current_state = yyg->yy_start;
yy_match:
- do {
+ do
+ {
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
- if ( yy_accept[yy_current_state] ) {
+ if ( yy_accept[yy_current_state] )
+ {
yyg->yy_last_accepting_state = yy_current_state;
yyg->yy_last_accepting_cpos = yy_cp;
- }
- while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) {
+ }
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
+ {
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 102 )
yy_c = yy_meta[(unsigned int) yy_c];
- }
+ }
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
++yy_cp;
- } while ( yy_current_state != 101 );
+ }
+ while ( yy_current_state != 101 );
yy_cp = yyg->yy_last_accepting_cpos;
yy_current_state = yyg->yy_last_accepting_state;
yy_find_action:
- /* %% [10.0] code to find the action number goes here */
+/* %% [10.0] code to find the action number goes here */
yy_act = yy_accept[yy_current_state];
YY_DO_BEFORE_ACTION;
- /* %% [11.0] code for yylineno update goes here */
+/* %% [11.0] code for yylineno update goes here */
do_action: /* This label is used only to access EOF actions. */
- /* %% [12.0] debug code goes here */
- if ( yy_flex_debug ) {
+/* %% [12.0] debug code goes here */
+ if ( yy_flex_debug )
+ {
if ( yy_act == 0 )
fprintf( stderr, "--scanner backing up\n" );
else if ( yy_act < 44 )
@@ -1000,369 +1011,377 @@ do_action: /* This label is used only to access EOF actions. */
fprintf( stderr, "--(end of buffer or a NUL)\n" );
else
fprintf( stderr, "--EOF (start condition %d)\n", YY_START );
- }
+ }
- switch ( yy_act ) {
- /* beginning of action switch */
- /* %% [13.0] actions go here */
- case 0: /* must back up */
+ switch ( yy_act )
+ { /* beginning of action switch */
+/* %% [13.0] actions go here */
+ case 0: /* must back up */
/* undo the effects of YY_DO_BEFORE_ACTION */
*yy_cp = yyg->yy_hold_char;
yy_cp = yyg->yy_last_accepting_cpos;
yy_current_state = yyg->yy_last_accepting_state;
goto yy_find_action;
- case 1:
- YY_RULE_SETUP
+case 1:
+YY_RULE_SETUP
#line 27 "promela.l"
- {
- yylval->value = strdup(yytext);
- return TYPE;
- }
- YY_BREAK
- case 2:
- YY_RULE_SETUP
+{
+ yylval->value = strdup(yytext);
+ return PML_TYPE;
+}
+ YY_BREAK
+case 2:
+YY_RULE_SETUP
#line 32 "promela.l"
- { return LEN; }
- YY_BREAK
- case 3:
- YY_RULE_SETUP
+{ return PML_LEN; }
+ YY_BREAK
+case 3:
+YY_RULE_SETUP
#line 33 "promela.l"
- { yylval->value = strdup(yytext); return CONST; }
- YY_BREAK
- case 4:
- YY_RULE_SETUP
+{ yylval->value = strdup(yytext); return PML_CONST; }
+ YY_BREAK
+case 4:
+YY_RULE_SETUP
#line 34 "promela.l"
- { return PRINT; }
- YY_BREAK
- case 5:
- YY_RULE_SETUP
+{ return PML_PRINT; }
+ YY_BREAK
+case 5:
+YY_RULE_SETUP
#line 35 "promela.l"
- { return PRINTM; }
- YY_BREAK
- case 6:
- YY_RULE_SETUP
+{ return PML_PRINTM; }
+ YY_BREAK
+case 6:
+YY_RULE_SETUP
#line 37 "promela.l"
- { return NEG; }
- YY_BREAK
- case 7:
- YY_RULE_SETUP
+{ return PML_NEG; }
+ YY_BREAK
+case 7:
+YY_RULE_SETUP
#line 38 "promela.l"
- { return COMPL; }
- YY_BREAK
- case 8:
- YY_RULE_SETUP
+{ return PML_COMPL; }
+ YY_BREAK
+case 8:
+YY_RULE_SETUP
#line 39 "promela.l"
- { return INCR; }
- YY_BREAK
- case 9:
- YY_RULE_SETUP
+{ return PML_INCR; }
+ YY_BREAK
+case 9:
+YY_RULE_SETUP
#line 40 "promela.l"
- { return DECR; }
- YY_BREAK
- case 10:
- YY_RULE_SETUP
+{ return PML_DECR; }
+ YY_BREAK
+case 10:
+YY_RULE_SETUP
#line 42 "promela.l"
- { return TIMES; }
- YY_BREAK
- case 11:
- YY_RULE_SETUP
+{ return PML_TIMES; }
+ YY_BREAK
+case 11:
+YY_RULE_SETUP
#line 43 "promela.l"
- { return DIVIDE; }
- YY_BREAK
- case 12:
- YY_RULE_SETUP
+{ return PML_DIVIDE; }
+ YY_BREAK
+case 12:
+YY_RULE_SETUP
#line 44 "promela.l"
- { return MODULO; }
- YY_BREAK
- case 13:
- YY_RULE_SETUP
+{ return PML_MODULO; }
+ YY_BREAK
+case 13:
+YY_RULE_SETUP
#line 46 "promela.l"
- { return PLUS; }
- YY_BREAK
- case 14:
- YY_RULE_SETUP
+{ return PML_PLUS; }
+ YY_BREAK
+case 14:
+YY_RULE_SETUP
#line 47 "promela.l"
- { return MINUS; }
- YY_BREAK
- case 15:
- YY_RULE_SETUP
+{ return PML_MINUS; }
+ YY_BREAK
+case 15:
+YY_RULE_SETUP
#line 49 "promela.l"
- { return LSHIFT; }
- YY_BREAK
- case 16:
- YY_RULE_SETUP
+{ return PML_LSHIFT; }
+ YY_BREAK
+case 16:
+YY_RULE_SETUP
#line 50 "promela.l"
- { return RSHIFT; }
- YY_BREAK
- case 17:
- YY_RULE_SETUP
+{ return PML_RSHIFT; }
+ YY_BREAK
+case 17:
+YY_RULE_SETUP
#line 52 "promela.l"
- { return LE; }
- YY_BREAK
- case 18:
- YY_RULE_SETUP
+{ return PML_LE; }
+ YY_BREAK
+case 18:
+YY_RULE_SETUP
#line 53 "promela.l"
- { return GE; }
- YY_BREAK
- case 19:
- YY_RULE_SETUP
+{ return PML_GE; }
+ YY_BREAK
+case 19:
+YY_RULE_SETUP
#line 54 "promela.l"
- { return LT; }
- YY_BREAK
- case 20:
- YY_RULE_SETUP
+{ return PML_LT; }
+ YY_BREAK
+case 20:
+YY_RULE_SETUP
#line 55 "promela.l"
- { return GT; }
- YY_BREAK
- case 21:
- YY_RULE_SETUP
+{ return PML_GT; }
+ YY_BREAK
+case 21:
+YY_RULE_SETUP
#line 57 "promela.l"
- { return NE; }
- YY_BREAK
- case 22:
- YY_RULE_SETUP
+{ return PML_NE; }
+ YY_BREAK
+case 22:
+YY_RULE_SETUP
#line 58 "promela.l"
- { return EQ; }
- YY_BREAK
- case 23:
- YY_RULE_SETUP
+{ return PML_EQ; }
+ YY_BREAK
+case 23:
+YY_RULE_SETUP
#line 60 "promela.l"
- { return BITAND; }
- YY_BREAK
- case 24:
- YY_RULE_SETUP
+{ return PML_BITAND; }
+ YY_BREAK
+case 24:
+YY_RULE_SETUP
#line 61 "promela.l"
- { return BITXOR; }
- YY_BREAK
- case 25:
- YY_RULE_SETUP
+{ return PML_BITXOR; }
+ YY_BREAK
+case 25:
+YY_RULE_SETUP
#line 62 "promela.l"
- { return BITOR; }
- YY_BREAK
- case 26:
- YY_RULE_SETUP
+{ return PML_BITOR; }
+ YY_BREAK
+case 26:
+YY_RULE_SETUP
#line 65 "promela.l"
- { return AND; }
- YY_BREAK
- case 27:
- YY_RULE_SETUP
+{ return PML_AND; }
+ YY_BREAK
+case 27:
+YY_RULE_SETUP
#line 66 "promela.l"
- { return OR; }
- YY_BREAK
- case 28:
- YY_RULE_SETUP
+{ return PML_OR; }
+ YY_BREAK
+case 28:
+YY_RULE_SETUP
#line 68 "promela.l"
- { return DOT; }
- YY_BREAK
- case 29:
- YY_RULE_SETUP
+{ return PML_DOT; }
+ YY_BREAK
+case 29:
+YY_RULE_SETUP
#line 69 "promela.l"
- { return COMMA; }
- YY_BREAK
- case 30:
- YY_RULE_SETUP
+{ return PML_COMMA; }
+ YY_BREAK
+case 30:
+YY_RULE_SETUP
#line 70 "promela.l"
- { return SEMI; }
- YY_BREAK
- case 31:
- YY_RULE_SETUP
+{ return PML_SEMI; }
+ YY_BREAK
+case 31:
+YY_RULE_SETUP
#line 72 "promela.l"
- { return '('; }
- YY_BREAK
- case 32:
- YY_RULE_SETUP
+{ return '('; }
+ YY_BREAK
+case 32:
+YY_RULE_SETUP
#line 73 "promela.l"
- { return ')'; }
- YY_BREAK
- case 33:
- YY_RULE_SETUP
+{ return ')'; }
+ YY_BREAK
+case 33:
+YY_RULE_SETUP
#line 75 "promela.l"
- { return '['; }
- YY_BREAK
- case 34:
- YY_RULE_SETUP
+{ return '['; }
+ YY_BREAK
+case 34:
+YY_RULE_SETUP
#line 76 "promela.l"
- { return ']'; }
- YY_BREAK
- case 35:
- YY_RULE_SETUP
+{ return ']'; }
+ YY_BREAK
+case 35:
+YY_RULE_SETUP
#line 78 "promela.l"
- { return '{'; }
- YY_BREAK
- case 36:
- YY_RULE_SETUP
+{ return '{'; }
+ YY_BREAK
+case 36:
+YY_RULE_SETUP
#line 79 "promela.l"
- { return '}'; }
- YY_BREAK
- case 37:
- YY_RULE_SETUP
+{ return '}'; }
+ YY_BREAK
+case 37:
+YY_RULE_SETUP
#line 81 "promela.l"
- { return ASGN; }
- YY_BREAK
- case 38:
- /* rule 38 can match eol */
- YY_RULE_SETUP
+{ return PML_ASGN; }
+ YY_BREAK
+case 38:
+/* rule 38 can match eol */
+YY_RULE_SETUP
#line 83 "promela.l"
- { yylval->value = strdup(yytext); return(STRING); }
- YY_BREAK
- case 39:
- YY_RULE_SETUP
+{ yylval->value = strdup(yytext); return(PML_STRING); }
+ YY_BREAK
+case 39:
+YY_RULE_SETUP
#line 85 "promela.l"
- { yylval->value = strdup(yytext); return CONST; }
- YY_BREAK
- case 40:
- YY_RULE_SETUP
+{ yylval->value = strdup(yytext); return PML_CONST; }
+ YY_BREAK
+case 40:
+YY_RULE_SETUP
#line 86 "promela.l"
- { yylval->value = strdup(yytext); return NAME; }
- YY_BREAK
- case 41:
- /* rule 41 can match eol */
- YY_RULE_SETUP
+{ yylval->value = strdup(yytext); return PML_NAME; }
+ YY_BREAK
+case 41:
+/* rule 41 can match eol */
+YY_RULE_SETUP
#line 88 "promela.l"
- { }
- YY_BREAK
- case 42:
- /* rule 42 can match eol */
- YY_RULE_SETUP
+{ }
+ YY_BREAK
+case 42:
+/* rule 42 can match eol */
+YY_RULE_SETUP
#line 90 "promela.l"
- /* eat up whitespace */
- YY_BREAK
- case 43:
- YY_RULE_SETUP
+/* eat up whitespace */
+ YY_BREAK
+case 43:
+YY_RULE_SETUP
#line 92 "promela.l"
- { /*printf( "Unrecognized character: %s\n", yytext ); */ }
- YY_BREAK
- case 44:
- YY_RULE_SETUP
+{ /*printf( "Unrecognized character: %s\n", yytext ); */ }
+ YY_BREAK
+case 44:
+YY_RULE_SETUP
#line 93 "promela.l"
- ECHO;
- YY_BREAK
+ECHO;
+ YY_BREAK
#line 1253 "promela.lex.yy.cpp"
- case YY_STATE_EOF(INITIAL):
- yyterminate();
+case YY_STATE_EOF(INITIAL):
+ yyterminate();
- case YY_END_OF_BUFFER: {
- /* Amount of text matched not including the EOB char. */
- int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1;
+ case YY_END_OF_BUFFER:
+ {
+ /* Amount of text matched not including the EOB char. */
+ int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1;
- /* Undo the effects of YY_DO_BEFORE_ACTION. */
- *yy_cp = yyg->yy_hold_char;
- YY_RESTORE_YY_MORE_OFFSET
-
- if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) {
- /* We're scanning a new file or input source. It's
- * possible that this happened because the user
- * just pointed yyin at a new source and called
- * promela_lex(). If so, then we have to assure
- * consistency between YY_CURRENT_BUFFER and our
- * globals. Here is the right place to do so, because
- * this is the first action (other than possibly a
- * back-up) that will match for the new input source.
- */
- yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
- YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
- YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
- }
+ /* Undo the effects of YY_DO_BEFORE_ACTION. */
+ *yy_cp = yyg->yy_hold_char;
+ YY_RESTORE_YY_MORE_OFFSET
- /* Note that here we test for yy_c_buf_p "<=" to the position
- * of the first EOB in the buffer, since yy_c_buf_p will
- * already have been incremented past the NUL character
- * (since all states make transitions on EOB to the
- * end-of-buffer state). Contrast this with the test
- * in input().
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
+ {
+ /* We're scanning a new file or input source. It's
+ * possible that this happened because the user
+ * just pointed yyin at a new source and called
+ * promela_lex(). If so, then we have to assure
+ * consistency between YY_CURRENT_BUFFER and our
+ * globals. Here is the right place to do so, because
+ * this is the first action (other than possibly a
+ * back-up) that will match for the new input source.
*/
- if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) {
- /* This was really a NUL. */
- yy_state_type yy_next_state;
+ yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
+ YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
+ YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
+ }
+
+ /* Note that here we test for yy_c_buf_p "<=" to the position
+ * of the first EOB in the buffer, since yy_c_buf_p will
+ * already have been incremented past the NUL character
+ * (since all states make transitions on EOB to the
+ * end-of-buffer state). Contrast this with the test
+ * in input().
+ */
+ if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
+ { /* This was really a NUL. */
+ yy_state_type yy_next_state;
- yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text;
+ yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text;
- yy_current_state = yy_get_previous_state( yyscanner );
+ yy_current_state = yy_get_previous_state( yyscanner );
- /* Okay, we're now positioned to make the NUL
- * transition. We couldn't have
- * yy_get_previous_state() go ahead and do it
- * for us because it doesn't know how to deal
- * with the possibility of jamming (and we don't
- * want to build jamming into it because then it
- * will run more slowly).
- */
+ /* Okay, we're now positioned to make the NUL
+ * transition. We couldn't have
+ * yy_get_previous_state() go ahead and do it
+ * for us because it doesn't know how to deal
+ * with the possibility of jamming (and we don't
+ * want to build jamming into it because then it
+ * will run more slowly).
+ */
- yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner);
+ yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner);
- yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
+ yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
- if ( yy_next_state ) {
- /* Consume the NUL. */
- yy_cp = ++yyg->yy_c_buf_p;
- yy_current_state = yy_next_state;
- goto yy_match;
+ if ( yy_next_state )
+ {
+ /* Consume the NUL. */
+ yy_cp = ++yyg->yy_c_buf_p;
+ yy_current_state = yy_next_state;
+ goto yy_match;
}
- else {
- /* %% [14.0] code to do back-up for compressed tables and set up yy_cp goes here */
- yy_cp = yyg->yy_last_accepting_cpos;
- yy_current_state = yyg->yy_last_accepting_state;
- goto yy_find_action;
+ else
+ {
+/* %% [14.0] code to do back-up for compressed tables and set up yy_cp goes here */
+ yy_cp = yyg->yy_last_accepting_cpos;
+ yy_current_state = yyg->yy_last_accepting_state;
+ goto yy_find_action;
}
}
- else switch ( yy_get_next_buffer( yyscanner ) ) {
- case EOB_ACT_END_OF_FILE: {
- yyg->yy_did_buffer_switch_on_eof = 0;
-
- if ( promela_wrap(yyscanner ) ) {
- /* Note: because we've taken care in
- * yy_get_next_buffer() to have set up
- * yytext, we can now set up
- * yy_c_buf_p so that if some total
- * hoser (like flex itself) wants to
- * call the scanner after we return the
- * YY_NULL, it'll still work - another
- * YY_NULL will get returned.
- */
- yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ;
-
- yy_act = YY_STATE_EOF(YY_START);
- goto do_action;
+ else switch ( yy_get_next_buffer( yyscanner ) )
+ {
+ case EOB_ACT_END_OF_FILE:
+ {
+ yyg->yy_did_buffer_switch_on_eof = 0;
+
+ if ( promela_wrap(yyscanner ) )
+ {
+ /* Note: because we've taken care in
+ * yy_get_next_buffer() to have set up
+ * yytext, we can now set up
+ * yy_c_buf_p so that if some total
+ * hoser (like flex itself) wants to
+ * call the scanner after we return the
+ * YY_NULL, it'll still work - another
+ * YY_NULL will get returned.
+ */
+ yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ;
+
+ yy_act = YY_STATE_EOF(YY_START);
+ goto do_action;
}
- else {
- if ( ! yyg->yy_did_buffer_switch_on_eof )
- YY_NEW_FILE;
+ else
+ {
+ if ( ! yyg->yy_did_buffer_switch_on_eof )
+ YY_NEW_FILE;
}
- break;
+ break;
}
- case EOB_ACT_CONTINUE_SCAN:
- yyg->yy_c_buf_p =
- yyg->yytext_ptr + yy_amount_of_matched_text;
+ case EOB_ACT_CONTINUE_SCAN:
+ yyg->yy_c_buf_p =
+ yyg->yytext_ptr + yy_amount_of_matched_text;
- yy_current_state = yy_get_previous_state( yyscanner );
+ yy_current_state = yy_get_previous_state( yyscanner );
- yy_cp = yyg->yy_c_buf_p;
- yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
- goto yy_match;
+ yy_cp = yyg->yy_c_buf_p;
+ yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
+ goto yy_match;
- case EOB_ACT_LAST_MATCH:
- yyg->yy_c_buf_p =
- &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars];
+ case EOB_ACT_LAST_MATCH:
+ yyg->yy_c_buf_p =
+ &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars];
- yy_current_state = yy_get_previous_state( yyscanner );
+ yy_current_state = yy_get_previous_state( yyscanner );
- yy_cp = yyg->yy_c_buf_p;
- yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
- goto yy_find_action;
- }
- break;
+ yy_cp = yyg->yy_c_buf_p;
+ yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
+ goto yy_find_action;
+ }
+ break;
}
- default:
- YY_FATAL_ERROR(
- "fatal flex scanner internal error--no action found" );
- } /* end of action switch */
- } /* end of scanning one token */
+ default:
+ YY_FATAL_ERROR(
+ "fatal flex scanner internal error--no action found" );
+ } /* end of action switch */
+ } /* end of scanning one token */
} /* end of promela_lex */
/* %ok-for-header */
@@ -1386,7 +1405,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
/* %if-c++-only */
/* %endif */
{
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
register char *source = yyg->yytext_ptr;
register int number_to_move, i;
@@ -1394,24 +1413,26 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] )
YY_FATAL_ERROR(
- "fatal flex scanner internal error--end of buffer missed" );
+ "fatal flex scanner internal error--end of buffer missed" );
- if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) {
- /* Don't try to fill the buffer, so this is an EOF. */
- if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 ) {
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
+ { /* Don't try to fill the buffer, so this is an EOF. */
+ if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 )
+ {
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
- }
+ }
- else {
+ else
+ {
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
+ }
}
- }
/* Try to read more data. */
@@ -1427,20 +1448,22 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
*/
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0;
- else {
- yy_size_t num_to_read =
- YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
+ else
+ {
+ yy_size_t num_to_read =
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
- while ( num_to_read <= 0 ) {
- /* Not enough room in the buffer - grow it. */
+ while ( num_to_read <= 0 )
+ { /* Not enough room in the buffer - grow it. */
/* just a shorter name for the current buffer */
YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
int yy_c_buf_p_offset =
- (int) (yyg->yy_c_buf_p - b->yy_ch_buf);
+ (int) (yyg->yy_c_buf_p - b->yy_ch_buf);
- if ( b->yy_is_our_buffer ) {
+ if ( b->yy_is_our_buffer )
+ {
yy_size_t new_size = b->yy_buf_size * 2;
if ( new_size <= 0 )
@@ -1449,45 +1472,49 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
b->yy_buf_size *= 2;
b->yy_ch_buf = (char *)
- /* Include room in for 2 EOB chars. */
- promela_realloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner );
- } else
+ /* Include room in for 2 EOB chars. */
+ promela_realloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner );
+ }
+ else
/* Can't grow it, we don't own it. */
b->yy_ch_buf = 0;
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR(
- "fatal error - scanner input buffer overflow" );
+ "fatal error - scanner input buffer overflow" );
yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
- number_to_move - 1;
+ number_to_move - 1;
- }
+ }
if ( num_to_read > YY_READ_BUF_SIZE )
num_to_read = YY_READ_BUF_SIZE;
/* Read in more data. */
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
- yyg->yy_n_chars, num_to_read );
+ yyg->yy_n_chars, num_to_read );
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
- }
+ }
- if ( yyg->yy_n_chars == 0 ) {
- if ( number_to_move == YY_MORE_ADJ ) {
+ if ( yyg->yy_n_chars == 0 )
+ {
+ if ( number_to_move == YY_MORE_ADJ )
+ {
ret_val = EOB_ACT_END_OF_FILE;
promela_restart(yyin ,yyscanner);
- }
+ }
- else {
+ else
+ {
ret_val = EOB_ACT_LAST_MATCH;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
- YY_BUFFER_EOF_PENDING;
+ YY_BUFFER_EOF_PENDING;
+ }
}
- }
else
ret_val = EOB_ACT_CONTINUE_SCAN;
@@ -1514,32 +1541,35 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
/* %if-c-only */
/* %not-for-header */
-static yy_state_type yy_get_previous_state (yyscan_t yyscanner)
+ static yy_state_type yy_get_previous_state (yyscan_t yyscanner)
/* %endif */
/* %if-c++-only */
/* %endif */
{
register yy_state_type yy_current_state;
register char *yy_cp;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- /* %% [15.0] code to get the start state into yy_current_state goes here */
+/* %% [15.0] code to get the start state into yy_current_state goes here */
yy_current_state = yyg->yy_start;
- for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp ) {
- /* %% [16.0] code to find the next state goes here */
+ for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp )
+ {
+/* %% [16.0] code to find the next state goes here */
register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
- if ( yy_accept[yy_current_state] ) {
+ if ( yy_accept[yy_current_state] )
+ {
yyg->yy_last_accepting_state = yy_current_state;
yyg->yy_last_accepting_cpos = yy_cp;
- }
- while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) {
+ }
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
+ {
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 102 )
yy_c = yy_meta[(unsigned int) yy_c];
- }
+ }
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
- }
+ }
return yy_current_state;
}
@@ -1550,26 +1580,28 @@ static yy_state_type yy_get_previous_state (yyscan_t yyscanner)
* next_state = yy_try_NUL_trans( current_state );
*/
/* %if-c-only */
-static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner)
+ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner)
/* %endif */
/* %if-c++-only */
/* %endif */
{
register int yy_is_jam;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */
- /* %% [17.0] code to find the next state, and perhaps do backing up, goes here */
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */
+/* %% [17.0] code to find the next state, and perhaps do backing up, goes here */
register char *yy_cp = yyg->yy_c_buf_p;
register YY_CHAR yy_c = 1;
- if ( yy_accept[yy_current_state] ) {
+ if ( yy_accept[yy_current_state] )
+ {
yyg->yy_last_accepting_state = yy_current_state;
yyg->yy_last_accepting_cpos = yy_cp;
- }
- while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) {
+ }
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
+ {
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 102 )
yy_c = yy_meta[(unsigned int) yy_c];
- }
+ }
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
yy_is_jam = (yy_current_state == 101);
@@ -1578,27 +1610,27 @@ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_
/* %if-c-only */
-static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner)
+ static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner)
/* %endif */
/* %if-c++-only */
/* %endif */
{
register char *yy_cp;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yy_cp = yyg->yy_c_buf_p;
+ yy_cp = yyg->yy_c_buf_p;
/* undo effects of setting up yytext */
*yy_cp = yyg->yy_hold_char;
- if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) {
- /* need to shift things up to make room */
+ if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
+ { /* need to shift things up to make room */
/* +2 for EOB chars. */
register yy_size_t number_to_move = yyg->yy_n_chars + 2;
register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
- YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
register char *source =
- &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
+ &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
*--dest = *--source;
@@ -1606,15 +1638,15 @@ static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner)
yy_cp += (int) (dest - source);
yy_bp += (int) (dest - source);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
- yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
+ yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
YY_FATAL_ERROR( "flex scanner push-back overflow" );
- }
+ }
*--yy_cp = (char) c;
- /* %% [18.0] update yylineno here */
+/* %% [18.0] update yylineno here */
yyg->yytext_ptr = yy_bp;
yyg->yy_hold_char = *yy_cp;
@@ -1627,9 +1659,9 @@ static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner)
/* %if-c-only */
#ifndef YY_NO_INPUT
#ifdef __cplusplus
-static int yyinput (yyscan_t yyscanner)
+ static int yyinput (yyscan_t yyscanner)
#else
-static int input (yyscan_t yyscanner)
+ static int input (yyscan_t yyscanner)
#endif
/* %endif */
@@ -1637,11 +1669,12 @@ static int input (yyscan_t yyscanner)
/* %endif */
{
int c;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
*yyg->yy_c_buf_p = yyg->yy_hold_char;
- if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) {
+ if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
+ {
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
@@ -1650,53 +1683,55 @@ static int input (yyscan_t yyscanner)
/* This was really a NUL. */
*yyg->yy_c_buf_p = '\0';
- else {
- /* need more input */
+ else
+ { /* need more input */
yy_size_t offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
++yyg->yy_c_buf_p;
- switch ( yy_get_next_buffer( yyscanner ) ) {
- case EOB_ACT_LAST_MATCH:
- /* This happens because yy_g_n_b()
- * sees that we've accumulated a
- * token and flags that we need to
- * try matching the token before
- * proceeding. But for input(),
- * there's no matching to consider.
- * So convert the EOB_ACT_LAST_MATCH
- * to EOB_ACT_END_OF_FILE.
- */
-
- /* Reset buffer status. */
- promela_restart(yyin ,yyscanner);
-
- /*FALLTHROUGH*/
-
- case EOB_ACT_END_OF_FILE: {
- if ( promela_wrap(yyscanner ) )
- return 0;
-
- if ( ! yyg->yy_did_buffer_switch_on_eof )
- YY_NEW_FILE;
+ switch ( yy_get_next_buffer( yyscanner ) )
+ {
+ case EOB_ACT_LAST_MATCH:
+ /* This happens because yy_g_n_b()
+ * sees that we've accumulated a
+ * token and flags that we need to
+ * try matching the token before
+ * proceeding. But for input(),
+ * there's no matching to consider.
+ * So convert the EOB_ACT_LAST_MATCH
+ * to EOB_ACT_END_OF_FILE.
+ */
+
+ /* Reset buffer status. */
+ promela_restart(yyin ,yyscanner);
+
+ /*FALLTHROUGH*/
+
+ case EOB_ACT_END_OF_FILE:
+ {
+ if ( promela_wrap(yyscanner ) )
+ return 0;
+
+ if ( ! yyg->yy_did_buffer_switch_on_eof )
+ YY_NEW_FILE;
#ifdef __cplusplus
- return yyinput(yyscanner);
+ return yyinput(yyscanner);
#else
- return input(yyscanner);
+ return input(yyscanner);
#endif
- }
+ }
- case EOB_ACT_CONTINUE_SCAN:
- yyg->yy_c_buf_p = yyg->yytext_ptr + offset;
- break;
+ case EOB_ACT_CONTINUE_SCAN:
+ yyg->yy_c_buf_p = yyg->yytext_ptr + offset;
+ break;
+ }
}
}
- }
c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */
*yyg->yy_c_buf_p = '\0'; /* preserve yytext */
yyg->yy_hold_char = *++yyg->yy_c_buf_p;
- /* %% [19.0] update BOL and yylineno */
+/* %% [19.0] update BOL and yylineno */
return c;
}
@@ -1710,17 +1745,17 @@ static int input (yyscan_t yyscanner)
* @note This function does not reset the start condition to @c INITIAL .
*/
/* %if-c-only */
-void promela_restart (FILE * input_file , yyscan_t yyscanner)
+ void promela_restart (FILE * input_file , yyscan_t yyscanner)
/* %endif */
/* %if-c++-only */
/* %endif */
{
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- if ( ! YY_CURRENT_BUFFER ) {
- promela_ensure_buffer_stack (yyscanner);
+ if ( ! YY_CURRENT_BUFFER ){
+ promela_ensure_buffer_stack (yyscanner);
YY_CURRENT_BUFFER_LVALUE =
- promela__create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
+ promela__create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
}
promela__init_buffer(YY_CURRENT_BUFFER,input_file ,yyscanner);
@@ -1732,28 +1767,29 @@ void promela_restart (FILE * input_file , yyscan_t yyscanner)
* @param yyscanner The scanner object.
*/
/* %if-c-only */
-void promela__switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
+ void promela__switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
/* %endif */
/* %if-c++-only */
/* %endif */
{
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
/* TODO. We should be able to replace this entire function body
* with
* promela_pop_buffer_state();
* promela_push_buffer_state(new_buffer);
- */
+ */
promela_ensure_buffer_stack (yyscanner);
if ( YY_CURRENT_BUFFER == new_buffer )
return;
- if ( YY_CURRENT_BUFFER ) {
+ if ( YY_CURRENT_BUFFER )
+ {
/* Flush out information for old buffer. */
*yyg->yy_c_buf_p = yyg->yy_hold_char;
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
- }
+ }
YY_CURRENT_BUFFER_LVALUE = new_buffer;
promela__load_buffer_state(yyscanner );
@@ -1772,7 +1808,7 @@ static void promela__load_buffer_state (yyscan_t yyscanner)
/* %if-c++-only */
/* %endif */
{
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
@@ -1786,13 +1822,13 @@ static void promela__load_buffer_state (yyscan_t yyscanner)
* @return the allocated buffer state.
*/
/* %if-c-only */
-YY_BUFFER_STATE promela__create_buffer (FILE * file, int size , yyscan_t yyscanner)
+ YY_BUFFER_STATE promela__create_buffer (FILE * file, int size , yyscan_t yyscanner)
/* %endif */
/* %if-c++-only */
/* %endif */
{
YY_BUFFER_STATE b;
-
+
b = (YY_BUFFER_STATE) promela_alloc(sizeof( struct yy_buffer_state ) ,yyscanner );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in promela__create_buffer()" );
@@ -1818,12 +1854,12 @@ YY_BUFFER_STATE promela__create_buffer (FILE * file, int size , yyscan_t yysca
* @param yyscanner The scanner object.
*/
/* %if-c-only */
-void promela__delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
+ void promela__delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
/* %endif */
/* %if-c++-only */
/* %endif */
{
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if ( ! b )
return;
@@ -1849,36 +1885,36 @@ void promela__delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
* such as during a promela_restart() or at EOF.
*/
/* %if-c-only */
-static void promela__init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner)
+ static void promela__init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner)
/* %endif */
/* %if-c++-only */
/* %endif */
{
int oerrno = errno;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
promela__flush_buffer(b ,yyscanner);
b->yy_input_file = file;
b->yy_fill_buffer = 1;
- /* If b is the current buffer, then promela__init_buffer was _probably_
- * called from promela_restart() or through yy_get_next_buffer.
- * In that case, we don't want to reset the lineno or column.
- */
- if (b != YY_CURRENT_BUFFER) {
- b->yy_bs_lineno = 1;
- b->yy_bs_column = 0;
- }
-
- /* %if-c-only */
+ /* If b is the current buffer, then promela__init_buffer was _probably_
+ * called from promela_restart() or through yy_get_next_buffer.
+ * In that case, we don't want to reset the lineno or column.
+ */
+ if (b != YY_CURRENT_BUFFER){
+ b->yy_bs_lineno = 1;
+ b->yy_bs_column = 0;
+ }
- b->yy_is_interactive = 0;
+/* %if-c-only */
- /* %endif */
- /* %if-c++-only */
- /* %endif */
+ b->yy_is_interactive = 0;
+
+/* %endif */
+/* %if-c++-only */
+/* %endif */
errno = oerrno;
}
@@ -1887,12 +1923,12 @@ static void promela__init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yy
* @param yyscanner The scanner object.
*/
/* %if-c-only */
-void promela__flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
+ void promela__flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
/* %endif */
/* %if-c++-only */
/* %endif */
{
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if ( ! b )
return;
@@ -1927,19 +1963,20 @@ void promela_push_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
/* %if-c++-only */
/* %endif */
{
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if (new_buffer == NULL)
return;
promela_ensure_buffer_stack(yyscanner);
/* This block is copied from promela__switch_to_buffer. */
- if ( YY_CURRENT_BUFFER ) {
+ if ( YY_CURRENT_BUFFER )
+ {
/* Flush out information for old buffer. */
*yyg->yy_c_buf_p = yyg->yy_hold_char;
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
- }
+ }
/* Only push if top exists. Otherwise, replace top. */
if (YY_CURRENT_BUFFER)
@@ -1963,7 +2000,7 @@ void promela_pop_buffer_state (yyscan_t yyscanner)
/* %if-c++-only */
/* %endif */
{
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if (!YY_CURRENT_BUFFER)
return;
@@ -1990,38 +2027,38 @@ static void promela_ensure_buffer_stack (yyscan_t yyscanner)
/* %endif */
{
yy_size_t num_to_alloc;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if (!yyg->yy_buffer_stack) {
/* First allocation is just for 2 elements, since we don't know if this
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
- */
+ */
num_to_alloc = 1;
yyg->yy_buffer_stack = (struct yy_buffer_state**)promela_alloc
- (num_to_alloc * sizeof(struct yy_buffer_state*)
- , yyscanner);
+ (num_to_alloc * sizeof(struct yy_buffer_state*)
+ , yyscanner);
if ( ! yyg->yy_buffer_stack )
YY_FATAL_ERROR( "out of dynamic memory in promela_ensure_buffer_stack()" );
-
+
memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*));
-
+
yyg->yy_buffer_stack_max = num_to_alloc;
yyg->yy_buffer_stack_top = 0;
return;
}
- if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1) {
+ if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){
/* Increase the buffer to prepare for a possible push. */
int grow_size = 8 /* arbitrary grow size */;
num_to_alloc = yyg->yy_buffer_stack_max + grow_size;
yyg->yy_buffer_stack = (struct yy_buffer_state**)promela_realloc
- (yyg->yy_buffer_stack,
- num_to_alloc * sizeof(struct yy_buffer_state*)
- , yyscanner);
+ (yyg->yy_buffer_stack,
+ num_to_alloc * sizeof(struct yy_buffer_state*)
+ , yyscanner);
if ( ! yyg->yy_buffer_stack )
YY_FATAL_ERROR( "out of dynamic memory in promela_ensure_buffer_stack()" );
@@ -2037,14 +2074,15 @@ static void promela_ensure_buffer_stack (yyscan_t yyscanner)
* @param base the character buffer
* @param size the size in bytes of the character buffer
* @param yyscanner The scanner object.
- * @return the newly allocated buffer state object.
+ * @return the newly allocated buffer state object.
*/
-YY_BUFFER_STATE promela__scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) {
+YY_BUFFER_STATE promela__scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner)
+{
YY_BUFFER_STATE b;
-
+
if ( size < 2 ||
- base[size-2] != YY_END_OF_BUFFER_CHAR ||
- base[size-1] != YY_END_OF_BUFFER_CHAR )
+ base[size-2] != YY_END_OF_BUFFER_CHAR ||
+ base[size-1] != YY_END_OF_BUFFER_CHAR )
/* They forgot to leave room for the EOB's. */
return 0;
@@ -2077,8 +2115,9 @@ YY_BUFFER_STATE promela__scan_buffer (char * base, yy_size_t size , yyscan_t y
* @note If you want to scan bytes that may contain NUL values, then use
* promela__scan_bytes() instead.
*/
-YY_BUFFER_STATE promela__scan_string (yyconst char * yystr , yyscan_t yyscanner) {
-
+YY_BUFFER_STATE promela__scan_string (yyconst char * yystr , yyscan_t yyscanner)
+{
+
return promela__scan_bytes(yystr,strlen(yystr) ,yyscanner);
}
/* %endif */
@@ -2091,11 +2130,12 @@ YY_BUFFER_STATE promela__scan_string (yyconst char * yystr , yyscan_t yyscanner)
* @param yyscanner The scanner object.
* @return the newly allocated buffer state object.
*/
-YY_BUFFER_STATE promela__scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len , yyscan_t yyscanner) {
+YY_BUFFER_STATE promela__scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len , yyscan_t yyscanner)
+{
YY_BUFFER_STATE b;
char *buf;
yy_size_t n, i;
-
+
/* Get memory for full buffer, including space for trailing EOB's. */
n = _yybytes_len + 2;
buf = (char *) promela_alloc(n ,yyscanner );
@@ -2125,8 +2165,9 @@ YY_BUFFER_STATE promela__scan_bytes (yyconst char * yybytes, yy_size_t _yybyte
#endif
/* %if-c-only */
-static void yy_fatal_error (yyconst char* msg , yyscan_t yyscanner) {
- (void) fprintf( stderr, "%s\n", msg );
+static void yy_fatal_error (yyconst char* msg , yyscan_t yyscanner)
+{
+ (void) fprintf( stderr, "%s\n", msg );
exit( YY_EXIT_FAILURE );
}
/* %endif */
@@ -2158,9 +2199,10 @@ static void yy_fatal_error (yyconst char* msg , yyscan_t yyscanner) {
/** Get the user-defined data for this scanner.
* @param yyscanner The scanner object.
*/
-YY_EXTRA_TYPE promela_get_extra (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yyextra;
+YY_EXTRA_TYPE promela_get_extra (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ return yyextra;
}
/* %endif */
@@ -2168,58 +2210,64 @@ YY_EXTRA_TYPE promela_get_extra (yyscan_t yyscanner) {
/** Get the current line number.
* @param yyscanner The scanner object.
*/
-int promela_get_lineno (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
-
- if (! YY_CURRENT_BUFFER)
- return 0;
-
- return yylineno;
+int promela_get_lineno (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+
+ if (! YY_CURRENT_BUFFER)
+ return 0;
+
+ return yylineno;
}
/** Get the current column number.
* @param yyscanner The scanner object.
*/
-int promela_get_column (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
-
- if (! YY_CURRENT_BUFFER)
- return 0;
-
- return yycolumn;
+int promela_get_column (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+
+ if (! YY_CURRENT_BUFFER)
+ return 0;
+
+ return yycolumn;
}
/** Get the input stream.
* @param yyscanner The scanner object.
*/
-FILE *promela_get_in (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yyin;
+FILE *promela_get_in (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ return yyin;
}
/** Get the output stream.
* @param yyscanner The scanner object.
*/
-FILE *promela_get_out (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yyout;
+FILE *promela_get_out (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ return yyout;
}
/** Get the length of the current token.
* @param yyscanner The scanner object.
*/
-yy_size_t promela_get_leng (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yyleng;
+yy_size_t promela_get_leng (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ return yyleng;
}
/** Get the current token.
* @param yyscanner The scanner object.
*/
-char *promela_get_text (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yytext;
+char *promela_get_text (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ return yytext;
}
/* %if-reentrant */
@@ -2228,9 +2276,10 @@ char *promela_get_text (yyscan_t yyscanner) {
* @param user_defined The data to be associated with this scanner.
* @param yyscanner The scanner object.
*/
-void promela_set_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yyextra = user_defined ;
+void promela_set_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ yyextra = user_defined ;
}
/* %endif */
@@ -2239,28 +2288,30 @@ void promela_set_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) {
* @param line_number
* @param yyscanner The scanner object.
*/
-void promela_set_lineno (int line_number , yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
-
- /* lineno is only valid if an input buffer exists. */
- if (! YY_CURRENT_BUFFER )
- yy_fatal_error( "promela_set_lineno called with no buffer" , yyscanner);
+void promela_set_lineno (int line_number , yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yylineno = line_number;
+ /* lineno is only valid if an input buffer exists. */
+ if (! YY_CURRENT_BUFFER )
+ yy_fatal_error( "promela_set_lineno called with no buffer" , yyscanner);
+
+ yylineno = line_number;
}
/** Set the current column.
* @param line_number
* @param yyscanner The scanner object.
*/
-void promela_set_column (int column_no , yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
-
- /* column is only valid if an input buffer exists. */
- if (! YY_CURRENT_BUFFER )
- yy_fatal_error( "promela_set_column called with no buffer" , yyscanner);
+void promela_set_column (int column_no , yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yycolumn = column_no;
+ /* column is only valid if an input buffer exists. */
+ if (! YY_CURRENT_BUFFER )
+ yy_fatal_error( "promela_set_column called with no buffer" , yyscanner);
+
+ yycolumn = column_no;
}
/** Set the input stream. This does not discard the current
@@ -2269,24 +2320,28 @@ void promela_set_column (int column_no , yyscan_t yyscanner) {
* @param yyscanner The scanner object.
* @see promela__switch_to_buffer
*/
-void promela_set_in (FILE * in_str , yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yyin = in_str ;
+void promela_set_in (FILE * in_str , yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ yyin = in_str ;
}
-void promela_set_out (FILE * out_str , yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yyout = out_str ;
+void promela_set_out (FILE * out_str , yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ yyout = out_str ;
}
-int promela_get_debug (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yy_flex_debug;
+int promela_get_debug (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ return yy_flex_debug;
}
-void promela_set_debug (int bdebug , yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yy_flex_debug = bdebug ;
+void promela_set_debug (int bdebug , yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ yy_flex_debug = bdebug ;
}
/* %endif */
@@ -2296,14 +2351,16 @@ void promela_set_debug (int bdebug , yyscan_t yyscanner) {
/* %if-bison-bridge */
-YYSTYPE * promela_get_lval (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yylval;
+YYSTYPE * promela_get_lval (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ return yylval;
}
-void promela_set_lval (YYSTYPE * yylval_param , yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yylval = yylval_param;
+void promela_set_lval (YYSTYPE * yylval_param , yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ yylval = yylval_param;
}
/* %endif */
@@ -2318,22 +2375,22 @@ void promela_set_lval (YYSTYPE * yylval_param , yyscan_t yyscanner) {
int promela_lex_init(yyscan_t* ptr_yy_globals)
{
- if (ptr_yy_globals == NULL) {
- errno = EINVAL;
- return 1;
- }
+ if (ptr_yy_globals == NULL){
+ errno = EINVAL;
+ return 1;
+ }
- *ptr_yy_globals = (yyscan_t) promela_alloc ( sizeof( struct yyguts_t ), NULL );
+ *ptr_yy_globals = (yyscan_t) promela_alloc ( sizeof( struct yyguts_t ), NULL );
- if (*ptr_yy_globals == NULL) {
- errno = ENOMEM;
- return 1;
- }
+ if (*ptr_yy_globals == NULL){
+ errno = ENOMEM;
+ return 1;
+ }
- /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */
- memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
+ /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */
+ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
- return yy_init_globals ( *ptr_yy_globals );
+ return yy_init_globals ( *ptr_yy_globals );
}
/* promela_lex_init_extra has the same functionality as promela_lex_init, but follows the
@@ -2347,74 +2404,76 @@ int promela_lex_init(yyscan_t* ptr_yy_globals)
int promela_lex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_yy_globals )
{
- struct yyguts_t dummy_yyguts;
-
- promela_set_extra (yy_user_defined, &dummy_yyguts);
-
- if (ptr_yy_globals == NULL) {
- errno = EINVAL;
- return 1;
- }
-
- *ptr_yy_globals = (yyscan_t) promela_alloc ( sizeof( struct yyguts_t ), &dummy_yyguts );
-
- if (*ptr_yy_globals == NULL) {
- errno = ENOMEM;
- return 1;
- }
-
- /* By setting to 0xAA, we expose bugs in
- yy_init_globals. Leave at 0x00 for releases. */
- memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
-
- promela_set_extra (yy_user_defined, *ptr_yy_globals);
-
- return yy_init_globals ( *ptr_yy_globals );
+ struct yyguts_t dummy_yyguts;
+
+ promela_set_extra (yy_user_defined, &dummy_yyguts);
+
+ if (ptr_yy_globals == NULL){
+ errno = EINVAL;
+ return 1;
+ }
+
+ *ptr_yy_globals = (yyscan_t) promela_alloc ( sizeof( struct yyguts_t ), &dummy_yyguts );
+
+ if (*ptr_yy_globals == NULL){
+ errno = ENOMEM;
+ return 1;
+ }
+
+ /* By setting to 0xAA, we expose bugs in
+ yy_init_globals. Leave at 0x00 for releases. */
+ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
+
+ promela_set_extra (yy_user_defined, *ptr_yy_globals);
+
+ return yy_init_globals ( *ptr_yy_globals );
}
/* %endif if-c-only */
/* %if-c-only */
-static int yy_init_globals (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- /* Initialization is the same as for the non-reentrant scanner.
- * This function is called from promela_lex_destroy(), so don't allocate here.
- */
-
- yyg->yy_buffer_stack = 0;
- yyg->yy_buffer_stack_top = 0;
- yyg->yy_buffer_stack_max = 0;
- yyg->yy_c_buf_p = (char *) 0;
- yyg->yy_init = 0;
- yyg->yy_start = 0;
-
- yyg->yy_start_stack_ptr = 0;
- yyg->yy_start_stack_depth = 0;
- yyg->yy_start_stack = NULL;
-
- /* Defined in main.c */
+static int yy_init_globals (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+ /* Initialization is the same as for the non-reentrant scanner.
+ * This function is called from promela_lex_destroy(), so don't allocate here.
+ */
+
+ yyg->yy_buffer_stack = 0;
+ yyg->yy_buffer_stack_top = 0;
+ yyg->yy_buffer_stack_max = 0;
+ yyg->yy_c_buf_p = (char *) 0;
+ yyg->yy_init = 0;
+ yyg->yy_start = 0;
+
+ yyg->yy_start_stack_ptr = 0;
+ yyg->yy_start_stack_depth = 0;
+ yyg->yy_start_stack = NULL;
+
+/* Defined in main.c */
#ifdef YY_STDINIT
- yyin = stdin;
- yyout = stdout;
+ yyin = stdin;
+ yyout = stdout;
#else
- yyin = (FILE *) 0;
- yyout = (FILE *) 0;
+ yyin = (FILE *) 0;
+ yyout = (FILE *) 0;
#endif
- /* For future reference: Set errno on error, since we are called by
- * promela_lex_init()
- */
- return 0;
+ /* For future reference: Set errno on error, since we are called by
+ * promela_lex_init()
+ */
+ return 0;
}
/* %endif */
/* %if-c-only SNIP! this currently causes conflicts with the c++ scanner */
/* promela_lex_destroy is for both reentrant and non-reentrant scanners. */
-int promela_lex_destroy (yyscan_t yyscanner) {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
+int promela_lex_destroy (yyscan_t yyscanner)
+{
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- /* Pop the buffer stack, destroying each element. */
- while(YY_CURRENT_BUFFER) {
+ /* Pop the buffer stack, destroying each element. */
+ while(YY_CURRENT_BUFFER){
promela__delete_buffer(YY_CURRENT_BUFFER ,yyscanner );
YY_CURRENT_BUFFER_LVALUE = NULL;
promela_pop_buffer_state(yyscanner);
@@ -2424,20 +2483,20 @@ int promela_lex_destroy (yyscan_t yyscanner) {
promela_free(yyg->yy_buffer_stack ,yyscanner);
yyg->yy_buffer_stack = NULL;
- /* Destroy the start condition stack. */
- promela_free(yyg->yy_start_stack ,yyscanner );
- yyg->yy_start_stack = NULL;
+ /* Destroy the start condition stack. */
+ promela_free(yyg->yy_start_stack ,yyscanner );
+ yyg->yy_start_stack = NULL;
- /* Reset the globals. This is important in a non-reentrant scanner so the next time
- * promela_lex() is called, initialization will occur. */
- yy_init_globals( yyscanner);
+ /* Reset the globals. This is important in a non-reentrant scanner so the next time
+ * promela_lex() is called, initialization will occur. */
+ yy_init_globals( yyscanner);
- /* %if-reentrant */
- /* Destroy the main struct (reentrant only). */
- promela_free ( yyscanner , yyscanner );
- yyscanner = NULL;
- /* %endif */
- return 0;
+/* %if-reentrant */
+ /* Destroy the main struct (reentrant only). */
+ promela_free ( yyscanner , yyscanner );
+ yyscanner = NULL;
+/* %endif */
+ return 0;
}
/* %endif */
@@ -2446,7 +2505,8 @@ int promela_lex_destroy (yyscan_t yyscanner) {
*/
#ifndef yytext_ptr
-static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner) {
+static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner)
+{
register int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
@@ -2454,7 +2514,8 @@ static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yysca
#endif
#ifdef YY_NEED_STRLEN
-static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner) {
+static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner)
+{
register int n;
for ( n = 0; s[n]; ++n )
;
@@ -2463,11 +2524,13 @@ static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner) {
}
#endif
-void *promela_alloc (yy_size_t size , yyscan_t yyscanner) {
+void *promela_alloc (yy_size_t size , yyscan_t yyscanner)
+{
return (void *) malloc( size );
}
-void *promela_realloc (void * ptr, yy_size_t size , yyscan_t yyscanner) {
+void *promela_realloc (void * ptr, yy_size_t size , yyscan_t yyscanner)
+{
/* The cast to (char *) in the following accommodates both
* implementations that use char* generic pointers, and those
* that use void* generic pointers. It works with the latter
@@ -2478,7 +2541,8 @@ void *promela_realloc (void * ptr, yy_size_t size , yyscan_t yyscanner) {
return (void *) realloc( (char *) ptr, size );
}
-void promela_free (void * ptr , yyscan_t yyscanner) {
+void promela_free (void * ptr , yyscan_t yyscanner)
+{
free( (char *) ptr ); /* see promela_realloc() for (char *) cast */
}
diff --git a/src/uscxml/plugins/datamodel/promela/parser/promela.tab.cpp b/src/uscxml/plugins/datamodel/promela/parser/promela.tab.cpp
index 6e786cd..27fdf6c 100644
--- a/src/uscxml/plugins/datamodel/promela/parser/promela.tab.cpp
+++ b/src/uscxml/plugins/datamodel/promela/parser/promela.tab.cpp
@@ -1,19 +1,19 @@
/* A Bison parser, made by GNU Bison 2.7.12-4996. */
/* Bison implementation for Yacc-like parsers in C
-
+
Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
-
+
This program 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.
-
+
This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */
@@ -26,7 +26,7 @@
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
-
+
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
@@ -128,95 +128,96 @@ extern int promela_debug;
/* Tokens. */
#ifndef PROMELA_TOKENTYPE
# define PROMELA_TOKENTYPE
-/* Put the tokens into the symbol table, so that GDB and other debuggers
- know about them. */
-enum promela_tokentype {
- VAR_ARRAY = 258,
- VARLIST = 259,
- DECL = 260,
- DECLLIST = 261,
- STMNT = 262,
- COLON = 263,
- EXPR = 264,
- NAMELIST = 265,
- ASSERT = 266,
- PRINT = 267,
- PRINTM = 268,
- LEN = 269,
- STRING = 270,
- TYPEDEF = 271,
- MTYPE = 272,
- INLINE = 273,
- RETURN = 274,
- LABEL = 275,
- OF = 276,
- GOTO = 277,
- BREAK = 278,
- ELSE = 279,
- SEMI = 280,
- ARROW = 281,
- IF = 282,
- FI = 283,
- DO = 284,
- OD = 285,
- FOR = 286,
- SELECT = 287,
- IN = 288,
- SEP = 289,
- DOTDOT = 290,
- HIDDEN = 291,
- SHOW = 292,
- ISLOCAL = 293,
- CONST = 294,
- TYPE = 295,
- XU = 296,
- NAME = 297,
- UNAME = 298,
- PNAME = 299,
- INAME = 300,
- CLAIM = 301,
- TRACE = 302,
- INIT = 303,
- LTL = 304,
- COMMA = 305,
- ASGN = 306,
- AND = 307,
- OR = 308,
- BITAND = 309,
- BITXOR = 310,
- BITOR = 311,
- NE = 312,
- EQ = 313,
- LE = 314,
- GE = 315,
- LT = 316,
- GT = 317,
- RSHIFT = 318,
- LSHIFT = 319,
- MINUS = 320,
- PLUS = 321,
- MODULO = 322,
- DIVIDE = 323,
- TIMES = 324,
- DECR = 325,
- INCR = 326,
- COMPL = 327,
- NEG = 328,
- DOT = 329
-};
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
+ know about them. */
+ enum promela_tokentype {
+ PML_VAR_ARRAY = 258,
+ PML_VARLIST = 259,
+ PML_DECL = 260,
+ PML_DECLLIST = 261,
+ PML_STMNT = 262,
+ PML_COLON = 263,
+ PML_EXPR = 264,
+ PML_NAMELIST = 265,
+ PML_ASSERT = 266,
+ PML_PRINT = 267,
+ PML_PRINTM = 268,
+ PML_LEN = 269,
+ PML_STRING = 270,
+ PML_TYPEDEF = 271,
+ PML_MTYPE = 272,
+ PML_INLINE = 273,
+ PML_RETURN = 274,
+ PML_LABEL = 275,
+ PML_OF = 276,
+ PML_GOTO = 277,
+ PML_BREAK = 278,
+ PML_ELSE = 279,
+ PML_SEMI = 280,
+ PML_ARROW = 281,
+ PML_IF = 282,
+ PML_FI = 283,
+ PML_DO = 284,
+ PML_OD = 285,
+ PML_FOR = 286,
+ PML_SELECT = 287,
+ PML_IN = 288,
+ PML_SEP = 289,
+ PML_DOTDOT = 290,
+ PML_HIDDEN = 291,
+ PML_SHOW = 292,
+ PML_ISLOCAL = 293,
+ PML_CONST = 294,
+ PML_TYPE = 295,
+ PML_XU = 296,
+ PML_NAME = 297,
+ PML_UNAME = 298,
+ PML_PNAME = 299,
+ PML_INAME = 300,
+ PML_CLAIM = 301,
+ PML_TRACE = 302,
+ PML_INIT = 303,
+ PML_LTL = 304,
+ PML_COMMA = 305,
+ PML_ASGN = 306,
+ PML_AND = 307,
+ PML_OR = 308,
+ PML_BITAND = 309,
+ PML_BITXOR = 310,
+ PML_BITOR = 311,
+ PML_NE = 312,
+ PML_EQ = 313,
+ PML_LE = 314,
+ PML_GE = 315,
+ PML_LT = 316,
+ PML_GT = 317,
+ PML_RSHIFT = 318,
+ PML_LSHIFT = 319,
+ PML_MINUS = 320,
+ PML_PLUS = 321,
+ PML_MODULO = 322,
+ PML_DIVIDE = 323,
+ PML_TIMES = 324,
+ PML_DECR = 325,
+ PML_INCR = 326,
+ PML_COMPL = 327,
+ PML_NEG = 328,
+ PML_DOT = 329
+ };
#endif
#if ! defined PROMELA_STYPE && ! defined PROMELA_STYPE_IS_DECLARED
-typedef union PROMELA_STYPE {
- /* Line 387 of yacc.c */
+typedef union PROMELA_STYPE
+{
+/* Line 387 of yacc.c */
#line 38 "promela.ypp"
- uscxml::PromelaParserNode* node;
+ uscxml::PromelaParserNode* node;
char* value;
- /* Line 387 of yacc.c */
+/* Line 387 of yacc.c */
#line 222 "promela.tab.cpp"
} PROMELA_STYPE;
# define PROMELA_STYPE_IS_TRIVIAL 1
@@ -332,10 +333,10 @@ YYID (int yyi)
#else
static int
YYID (yyi)
-int yyi;
+ int yyi;
#endif
{
- return yyi;
+ return yyi;
}
#endif
@@ -359,7 +360,7 @@ int yyi;
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
-/* Use EXIT_SUCCESS as a witness for stdlib.h. */
+ /* Use EXIT_SUCCESS as a witness for stdlib.h. */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
@@ -369,13 +370,13 @@ int yyi;
# endif
# ifdef YYSTACK_ALLOC
-/* Pacify GCC's `empty if-body' warning. */
+ /* Pacify GCC's `empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
# ifndef YYSTACK_ALLOC_MAXIMUM
-/* The OS might guarantee only one guard page at the bottom of the stack,
- and a page size can be as small as 4096 bytes. So we cannot safely
- invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
- to allow for a few compiler-allocated temporary stack slots. */
+ /* The OS might guarantee only one guard page at the bottom of the stack,
+ and a page size can be as small as 4096 bytes. So we cannot safely
+ invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
+ to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
@@ -415,9 +416,10 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */
|| (defined PROMELA_STYPE_IS_TRIVIAL && PROMELA_STYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
-union yyalloc {
- yytype_int16 yyss_alloc;
- YYSTYPE yyvs_alloc;
+union yyalloc
+{
+ yytype_int16 yyss_alloc;
+ YYSTYPE yyvs_alloc;
};
/* The size of the maximum gap between one aligned stack and the next. */
@@ -491,257 +493,275 @@ union yyalloc {
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
-static const yytype_uint8 yytranslate[] = {
- 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 11, 12, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 13, 2, 14, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 15, 2, 16, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
- 5, 6, 7, 8, 9, 10, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
- 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
- 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
- 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
- 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
- 71, 72, 73, 74, 75, 76, 77, 78, 79, 80
+static const yytype_uint8 yytranslate[] =
+{
+ 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 11, 12, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 13, 2, 14, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 15, 2, 16, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
+ 5, 6, 7, 8, 9, 10, 17, 18, 19, 20,
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
+ 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
+ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
+ 71, 72, 73, 74, 75, 76, 77, 78, 79, 80
};
#if PROMELA_DEBUG
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
YYRHS. */
-static const yytype_uint16 yyprhs[] = {
- 0, 0, 3, 5, 7, 9, 11, 13, 18, 19,
- 23, 24, 27, 31, 35, 39, 43, 47, 51, 55,
- 59, 63, 67, 71, 75, 79, 83, 87, 91, 95,
- 99, 103, 106, 109, 114, 116, 118, 119, 121, 123,
- 125, 129, 133, 140, 142, 145, 149, 151, 155, 157,
- 161, 163, 167, 172, 174, 177, 181, 185, 189, 193,
- 197, 201, 203, 206, 209, 211, 214, 218, 220, 224,
- 227, 230, 236, 241, 246, 249, 251, 252, 261, 262,
- 264, 265, 268, 270
+static const yytype_uint16 yyprhs[] =
+{
+ 0, 0, 3, 5, 7, 9, 11, 13, 18, 19,
+ 23, 24, 27, 31, 35, 39, 43, 47, 51, 55,
+ 59, 63, 67, 71, 75, 79, 83, 87, 91, 95,
+ 99, 103, 106, 109, 114, 116, 118, 119, 121, 123,
+ 125, 129, 133, 140, 142, 145, 149, 151, 155, 157,
+ 161, 163, 167, 172, 174, 177, 181, 185, 189, 193,
+ 197, 201, 203, 206, 209, 211, 214, 218, 220, 224,
+ 227, 230, 236, 241, 246, 249, 251, 252, 261, 262,
+ 264, 265, 268, 270
};
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
-static const yytype_int8 yyrhs[] = {
- 82, 0, -1, 91, -1, 88, -1, 97, -1, 85,
- -1, 48, -1, 48, 13, 88, 14, -1, -1, 84,
- 86, 87, -1, -1, 80, 85, -1, 11, 88, 12,
- -1, 88, 72, 88, -1, 88, 71, 88, -1, 88,
- 75, 88, -1, 88, 74, 88, -1, 88, 73, 88,
- -1, 88, 60, 88, -1, 88, 61, 88, -1, 88,
- 62, 88, -1, 88, 68, 88, -1, 88, 67, 88,
- -1, 88, 66, 88, -1, 88, 65, 88, -1, 88,
- 64, 88, -1, 88, 63, 88, -1, 88, 58, 88,
- -1, 88, 59, 88, -1, 88, 70, 88, -1, 88,
- 69, 88, -1, 79, 88, -1, 71, 88, -1, 20,
- 11, 83, 12, -1, 83, -1, 45, -1, -1, 42,
- -1, 43, -1, 44, -1, 89, 46, 92, -1, 89,
- 49, 92, -1, 89, 46, 57, 15, 96, 16, -1,
- 90, -1, 90, 31, -1, 90, 31, 91, -1, 93,
- -1, 93, 56, 92, -1, 94, -1, 94, 57, 88,
- -1, 48, -1, 48, 8, 45, -1, 48, 13, 95,
- 14, -1, 45, -1, 71, 95, -1, 11, 95, 12,
- -1, 95, 72, 95, -1, 95, 71, 95, -1, 95,
- 75, 95, -1, 95, 74, 95, -1, 95, 73, 95,
- -1, 48, -1, 96, 48, -1, 96, 56, -1, 98,
- -1, 98, 31, -1, 98, 31, 97, -1, 99, -1,
- 83, 57, 88, -1, 83, 77, -1, 83, 76, -1,
- 18, 11, 21, 102, 12, -1, 19, 11, 83, 12,
- -1, 19, 11, 45, 12, -1, 17, 88, -1, 88,
- -1, -1, 83, 57, 51, 100, 11, 101, 12, 99,
- -1, -1, 103, -1, -1, 56, 103, -1, 88, -1,
- 88, 56, 103, -1
+static const yytype_int8 yyrhs[] =
+{
+ 82, 0, -1, 91, -1, 88, -1, 97, -1, 85,
+ -1, 48, -1, 48, 13, 88, 14, -1, -1, 84,
+ 86, 87, -1, -1, 80, 85, -1, 11, 88, 12,
+ -1, 88, 72, 88, -1, 88, 71, 88, -1, 88,
+ 75, 88, -1, 88, 74, 88, -1, 88, 73, 88,
+ -1, 88, 60, 88, -1, 88, 61, 88, -1, 88,
+ 62, 88, -1, 88, 68, 88, -1, 88, 67, 88,
+ -1, 88, 66, 88, -1, 88, 65, 88, -1, 88,
+ 64, 88, -1, 88, 63, 88, -1, 88, 58, 88,
+ -1, 88, 59, 88, -1, 88, 70, 88, -1, 88,
+ 69, 88, -1, 79, 88, -1, 71, 88, -1, 20,
+ 11, 83, 12, -1, 83, -1, 45, -1, -1, 42,
+ -1, 43, -1, 44, -1, 89, 46, 92, -1, 89,
+ 49, 92, -1, 89, 46, 57, 15, 96, 16, -1,
+ 90, -1, 90, 31, -1, 90, 31, 91, -1, 93,
+ -1, 93, 56, 92, -1, 94, -1, 94, 57, 88,
+ -1, 48, -1, 48, 8, 45, -1, 48, 13, 95,
+ 14, -1, 45, -1, 71, 95, -1, 11, 95, 12,
+ -1, 95, 72, 95, -1, 95, 71, 95, -1, 95,
+ 75, 95, -1, 95, 74, 95, -1, 95, 73, 95,
+ -1, 48, -1, 96, 48, -1, 96, 56, -1, 98,
+ -1, 98, 31, -1, 98, 31, 97, -1, 99, -1,
+ 83, 57, 88, -1, 83, 77, -1, 83, 76, -1,
+ 18, 11, 21, 102, 12, -1, 19, 11, 83, 12,
+ -1, 19, 11, 45, 12, -1, 17, 88, -1, 88,
+ -1, -1, 83, 57, 51, 100, 11, 101, 12, 99,
+ -1, -1, 103, -1, -1, 56, 103, -1, 88, -1,
+ 88, 56, 103, -1
};
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
-static const yytype_uint8 yyrline[] = {
- 0, 84, 84, 88, 92, 98, 101, 102, 105, 105,
- 109, 110, 120, 121, 122, 123, 124, 125, 126, 127,
- 128, 129, 130, 131, 132, 133, 134, 135, 136, 137,
- 138, 139, 140, 142, 143, 144, 148, 149, 150, 151,
- 154, 155, 156, 159, 160, 161, 171, 172, 175, 176,
- 179, 180, 181, 184, 185, 186, 187, 188, 189, 190,
- 191, 194, 195, 204, 207, 208, 209, 212, 215, 216,
- 217, 218, 219, 220, 221, 222, 223, 223, 226, 227,
- 230, 231, 234, 235
+static const yytype_uint8 yyrline[] =
+{
+ 0, 84, 84, 88, 92, 98, 101, 102, 105, 105,
+ 109, 110, 120, 121, 122, 123, 124, 125, 126, 127,
+ 128, 129, 130, 131, 132, 133, 134, 135, 136, 137,
+ 138, 139, 140, 142, 143, 144, 148, 149, 150, 151,
+ 154, 155, 156, 159, 160, 161, 171, 172, 175, 176,
+ 179, 180, 181, 184, 185, 186, 187, 188, 189, 190,
+ 191, 194, 195, 204, 207, 208, 209, 212, 215, 216,
+ 217, 218, 219, 220, 221, 222, 223, 223, 226, 227,
+ 230, 231, 234, 235
};
#endif
#if PROMELA_DEBUG || YYERROR_VERBOSE || 1
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
-static const char *const yytname[] = {
- "$end", "error", "$undefined", "VAR_ARRAY", "VARLIST", "DECL",
- "DECLLIST", "STMNT", "COLON", "EXPR", "NAMELIST", "'('", "')'", "'['",
- "']'", "'{'", "'}'", "ASSERT", "PRINT", "PRINTM", "LEN", "STRING",
- "TYPEDEF", "MTYPE", "INLINE", "RETURN", "LABEL", "OF", "GOTO", "BREAK",
- "ELSE", "SEMI", "ARROW", "IF", "FI", "DO", "OD", "FOR", "SELECT", "IN",
- "SEP", "DOTDOT", "HIDDEN", "SHOW", "ISLOCAL", "CONST", "TYPE", "XU",
- "NAME", "UNAME", "PNAME", "INAME", "CLAIM", "TRACE", "INIT", "LTL",
- "COMMA", "ASGN", "AND", "OR", "BITAND", "BITXOR", "BITOR", "NE", "EQ",
- "LE", "GE", "LT", "GT", "RSHIFT", "LSHIFT", "MINUS", "PLUS", "MODULO",
- "DIVIDE", "TIMES", "DECR", "INCR", "COMPL", "NEG", "DOT", "$accept",
- "program", "varref", "pfld", "cmpnd", "$@1", "sfld", "expr", "vis",
- "one_decl", "decl_lst", "var_list", "ivar", "vardcl", "const_expr",
- "nlst", "stmnt_lst", "stmnt", "Stmnt", "$@2", "args", "prargs", "arg", YY_NULL
+static const char *const yytname[] =
+{
+ "$end", "error", "$undefined", "PML_VAR_ARRAY", "PML_VARLIST",
+ "PML_DECL", "PML_DECLLIST", "PML_STMNT", "PML_COLON", "PML_EXPR",
+ "PML_NAMELIST", "'('", "')'", "'['", "']'", "'{'", "'}'", "PML_ASSERT",
+ "PML_PRINT", "PML_PRINTM", "PML_LEN", "PML_STRING", "PML_TYPEDEF",
+ "PML_MTYPE", "PML_INLINE", "PML_RETURN", "PML_LABEL", "PML_OF",
+ "PML_GOTO", "PML_BREAK", "PML_ELSE", "PML_SEMI", "PML_ARROW", "PML_IF",
+ "PML_FI", "PML_DO", "PML_OD", "PML_FOR", "PML_SELECT", "PML_IN",
+ "PML_SEP", "PML_DOTDOT", "PML_HIDDEN", "PML_SHOW", "PML_ISLOCAL",
+ "PML_CONST", "PML_TYPE", "PML_XU", "PML_NAME", "PML_UNAME", "PML_PNAME",
+ "PML_INAME", "PML_CLAIM", "PML_TRACE", "PML_INIT", "PML_LTL",
+ "PML_COMMA", "PML_ASGN", "PML_AND", "PML_OR", "PML_BITAND", "PML_BITXOR",
+ "PML_BITOR", "PML_NE", "PML_EQ", "PML_LE", "PML_GE", "PML_LT", "PML_GT",
+ "PML_RSHIFT", "PML_LSHIFT", "PML_MINUS", "PML_PLUS", "PML_MODULO",
+ "PML_DIVIDE", "PML_TIMES", "PML_DECR", "PML_INCR", "PML_COMPL",
+ "PML_NEG", "PML_DOT", "$accept", "program", "varref", "pfld", "cmpnd",
+ "$@1", "sfld", "expr", "vis", "one_decl", "decl_lst", "var_list", "ivar",
+ "vardcl", "const_expr", "nlst", "stmnt_lst", "stmnt", "Stmnt", "$@2",
+ "args", "prargs", "arg", YY_NULL
};
#endif
# ifdef YYPRINT
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
token YYLEX-NUM. */
-static const yytype_uint16 yytoknum[] = {
- 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
- 265, 40, 41, 91, 93, 123, 125, 266, 267, 268,
- 269, 270, 271, 272, 273, 274, 275, 276, 277, 278,
- 279, 280, 281, 282, 283, 284, 285, 286, 287, 288,
- 289, 290, 291, 292, 293, 294, 295, 296, 297, 298,
- 299, 300, 301, 302, 303, 304, 305, 306, 307, 308,
- 309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
- 319, 320, 321, 322, 323, 324, 325, 326, 327, 328,
- 329
+static const yytype_uint16 yytoknum[] =
+{
+ 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
+ 265, 40, 41, 91, 93, 123, 125, 266, 267, 268,
+ 269, 270, 271, 272, 273, 274, 275, 276, 277, 278,
+ 279, 280, 281, 282, 283, 284, 285, 286, 287, 288,
+ 289, 290, 291, 292, 293, 294, 295, 296, 297, 298,
+ 299, 300, 301, 302, 303, 304, 305, 306, 307, 308,
+ 309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
+ 319, 320, 321, 322, 323, 324, 325, 326, 327, 328,
+ 329
};
# endif
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
-static const yytype_uint8 yyr1[] = {
- 0, 81, 82, 82, 82, 83, 84, 84, 86, 85,
- 87, 87, 88, 88, 88, 88, 88, 88, 88, 88,
- 88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
- 88, 88, 88, 88, 88, 88, 89, 89, 89, 89,
- 90, 90, 90, 91, 91, 91, 92, 92, 93, 93,
- 94, 94, 94, 95, 95, 95, 95, 95, 95, 95,
- 95, 96, 96, 96, 97, 97, 97, 98, 99, 99,
- 99, 99, 99, 99, 99, 99, 100, 99, 101, 101,
- 102, 102, 103, 103
+static const yytype_uint8 yyr1[] =
+{
+ 0, 81, 82, 82, 82, 83, 84, 84, 86, 85,
+ 87, 87, 88, 88, 88, 88, 88, 88, 88, 88,
+ 88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
+ 88, 88, 88, 88, 88, 88, 89, 89, 89, 89,
+ 90, 90, 90, 91, 91, 91, 92, 92, 93, 93,
+ 94, 94, 94, 95, 95, 95, 95, 95, 95, 95,
+ 95, 96, 96, 96, 97, 97, 97, 98, 99, 99,
+ 99, 99, 99, 99, 99, 99, 100, 99, 101, 101,
+ 102, 102, 103, 103
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
-static const yytype_uint8 yyr2[] = {
- 0, 2, 1, 1, 1, 1, 1, 4, 0, 3,
- 0, 2, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 2, 2, 4, 1, 1, 0, 1, 1, 1,
- 3, 3, 6, 1, 2, 3, 1, 3, 1, 3,
- 1, 3, 4, 1, 2, 3, 3, 3, 3, 3,
- 3, 1, 2, 2, 1, 2, 3, 1, 3, 2,
- 2, 5, 4, 4, 2, 1, 0, 8, 0, 1,
- 0, 2, 1, 3
+static const yytype_uint8 yyr2[] =
+{
+ 0, 2, 1, 1, 1, 1, 1, 4, 0, 3,
+ 0, 2, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 2, 2, 4, 1, 1, 0, 1, 1, 1,
+ 3, 3, 6, 1, 2, 3, 1, 3, 1, 3,
+ 1, 3, 4, 1, 2, 3, 3, 3, 3, 3,
+ 3, 1, 2, 2, 1, 2, 3, 1, 3, 2,
+ 2, 5, 4, 4, 2, 1, 0, 8, 0, 1,
+ 0, 2, 1, 3
};
/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE doesn't specify something else to do. Zero
means the default is an error. */
-static const yytype_uint8 yydefact[] = {
- 36, 0, 0, 0, 0, 0, 37, 38, 39, 35,
- 6, 0, 0, 0, 34, 8, 5, 3, 0, 43,
- 2, 4, 64, 67, 34, 0, 74, 0, 0, 0,
- 0, 32, 31, 1, 0, 70, 69, 10, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 36, 65,
- 12, 80, 0, 0, 0, 0, 76, 68, 0, 9,
- 27, 28, 18, 19, 20, 26, 25, 24, 23, 22,
- 21, 30, 29, 14, 13, 17, 16, 15, 50, 0,
- 40, 46, 48, 41, 45, 75, 66, 0, 0, 73,
- 72, 33, 7, 0, 11, 0, 0, 0, 0, 0,
- 82, 81, 71, 78, 51, 0, 53, 0, 0, 61,
- 0, 47, 49, 0, 0, 79, 0, 54, 52, 0,
- 0, 0, 0, 0, 42, 62, 63, 83, 0, 55,
- 57, 56, 60, 59, 58, 77
+static const yytype_uint8 yydefact[] =
+{
+ 36, 0, 0, 0, 0, 0, 37, 38, 39, 35,
+ 6, 0, 0, 0, 34, 8, 5, 3, 0, 43,
+ 2, 4, 64, 67, 34, 0, 74, 0, 0, 0,
+ 0, 32, 31, 1, 0, 70, 69, 10, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 36, 65,
+ 12, 80, 0, 0, 0, 0, 76, 68, 0, 9,
+ 27, 28, 18, 19, 20, 26, 25, 24, 23, 22,
+ 21, 30, 29, 14, 13, 17, 16, 15, 50, 0,
+ 40, 46, 48, 41, 45, 75, 66, 0, 0, 73,
+ 72, 33, 7, 0, 11, 0, 0, 0, 0, 0,
+ 82, 81, 71, 78, 51, 0, 53, 0, 0, 61,
+ 0, 47, 49, 0, 0, 79, 0, 54, 52, 0,
+ 0, 0, 0, 0, 42, 62, 63, 83, 0, 55,
+ 57, 56, 60, 59, 58, 77
};
/* YYDEFGOTO[NTERM-NUM]. */
-static const yytype_int8 yydefgoto[] = {
- -1, 13, 24, 15, 16, 37, 69, 110, 18, 19,
- 20, 90, 91, 92, 118, 120, 21, 22, 23, 103,
- 124, 98, 111
+static const yytype_int8 yydefgoto[] =
+{
+ -1, 13, 24, 15, 16, 37, 69, 110, 18, 19,
+ 20, 90, 91, 92, 118, 120, 21, 22, 23, 103,
+ 124, 98, 111
};
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
#define YYPACT_NINF -109
-static const yytype_int16 yypact[] = {
- 46, 65, 65, -5, 7, 9, -109, -109, -109, -109,
- 8, 65, 65, 33, -53, -109, -109, 155, -36, 5,
- -109, -109, 6, -109, -109, 87, 193, 54, -29, 36,
- 65, -1, -109, -109, 60, -109, -109, 13, 65, 65,
- 65, 65, 65, 65, 65, 65, 65, 65, 65, 65,
- 65, 65, 65, 65, 65, 65, -40, 38, 35, 50,
- -109, 25, 71, 75, 84, 110, -109, 193, 36, -109,
- 209, 209, 222, 222, 222, 170, 170, 229, 229, 229,
- 229, -46, -46, -1, -1, -109, -109, -109, 1, 82,
- -109, 51, 49, -109, -109, 193, -109, 65, 100, -109,
- -109, -109, -109, 103, -109, 70, 11, 68, 38, 65,
- 136, -109, -109, 65, -109, 11, -109, 11, 116, -109,
- 44, -109, 193, 65, 106, -109, 92, 28, -109, 11,
- 11, 11, 11, 11, -109, -109, -109, -109, 50, -109,
- 28, 28, -109, -109, -109, -109
+static const yytype_int16 yypact[] =
+{
+ 46, 65, 65, -5, 7, 9, -109, -109, -109, -109,
+ 8, 65, 65, 33, -53, -109, -109, 155, -36, 5,
+ -109, -109, 6, -109, -109, 87, 193, 54, -29, 36,
+ 65, -1, -109, -109, 60, -109, -109, 13, 65, 65,
+ 65, 65, 65, 65, 65, 65, 65, 65, 65, 65,
+ 65, 65, 65, 65, 65, 65, -40, 38, 35, 50,
+ -109, 25, 71, 75, 84, 110, -109, 193, 36, -109,
+ 209, 209, 222, 222, 222, 170, 170, 229, 229, 229,
+ 229, -46, -46, -1, -1, -109, -109, -109, 1, 82,
+ -109, 51, 49, -109, -109, 193, -109, 65, 100, -109,
+ -109, -109, -109, 103, -109, 70, 11, 68, 38, 65,
+ 136, -109, -109, 65, -109, 11, -109, 11, 116, -109,
+ 44, -109, 193, 65, 106, -109, 92, 28, -109, 11,
+ 11, 11, 11, 11, -109, -109, -109, -109, 50, -109,
+ 28, 28, -109, -109, -109, -109
};
/* YYPGOTO[NTERM-NUM]. */
-static const yytype_int8 yypgoto[] = {
- -109, -109, 3, -109, 52, -109, -109, 0, -109, -109,
- 61, -50, -109, -109, 117, -109, 63, -109, -15, -109,
- -109, -109, -108
+static const yytype_int8 yypgoto[] =
+{
+ -109, -109, 3, -109, 52, -109, -109, 0, -109, -109,
+ 61, -50, -109, -109, 117, -109, 63, -109, -15, -109,
+ -109, -109, -108
};
/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule which
number is the opposite. If YYTABLE_NINF, syntax error. */
#define YYTABLE_NINF -76
-static const yytype_int16 yytable[] = {
- 17, 25, 26, 14, 34, 125, 27, 93, 88, 105,
- 56, 31, 32, 57, 106, 137, 62, 89, 28, 10,
- 29, 30, 115, 35, 36, 51, 52, 53, 54, 55,
- 65, 63, 64, 33, 67, -44, 58, 59, 70, 71,
- 72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
- 82, 83, 84, 85, 86, 87, 116, 1, 121, 95,
- 134, 1, 14, 2, 3, 4, 5, 2, 3, 4,
- 5, 1, 53, 54, 55, 61, 1, 6, 7, 8,
- 5, 97, 117, 99, 10, 5, 88, 100, 6, 7,
- 8, 9, 135, 68, 10, 9, 101, 107, 10, 60,
- 136, 131, 132, 133, 139, 9, 109, 108, 10, 122,
- 9, 66, 112, 10, 113, 114, 119, 11, 138, 94,
- 104, 11, 96, 145, 102, 12, 0, 0, 0, 12,
- 128, 11, 0, 0, 0, 0, 11, 0, 95, 12,
- 0, 14, 0, 0, 12, 38, 39, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
- 53, 54, 55, 129, 130, 131, 132, 133, 38, 39,
- 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
- 50, 51, 52, 53, 54, 55, -75, 129, 130, 131,
- 132, 133, 123, 0, 38, 39, 40, 41, 42, 43,
- 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
- 54, 55, 0, 38, 39, 40, 41, 42, 43, 44,
- 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
- 55, 0, 126, 0, 127, 45, 46, 47, 48, 49,
- 50, 51, 52, 53, 54, 55, 140, 141, 142, 143,
- 144, 38, 39, 40, 41, 42, 43, 44, 45, 46,
- 47, 48, 49, 50, 51, 52, 53, 54, 55, 40,
- 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
- 51, 52, 53, 54, 55, 43, 44, 45, 46, 47,
- 48, 49, 50, 51, 52, 53, 54, 55, 49, 50,
- 51, 52, 53, 54, 55
+static const yytype_int16 yytable[] =
+{
+ 17, 25, 26, 14, 34, 125, 27, 93, 88, 105,
+ 56, 31, 32, 57, 106, 137, 62, 89, 28, 10,
+ 29, 30, 115, 35, 36, 51, 52, 53, 54, 55,
+ 65, 63, 64, 33, 67, -44, 58, 59, 70, 71,
+ 72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
+ 82, 83, 84, 85, 86, 87, 116, 1, 121, 95,
+ 134, 1, 14, 2, 3, 4, 5, 2, 3, 4,
+ 5, 1, 53, 54, 55, 61, 1, 6, 7, 8,
+ 5, 97, 117, 99, 10, 5, 88, 100, 6, 7,
+ 8, 9, 135, 68, 10, 9, 101, 107, 10, 60,
+ 136, 131, 132, 133, 139, 9, 109, 108, 10, 122,
+ 9, 66, 112, 10, 113, 114, 119, 11, 138, 94,
+ 104, 11, 96, 145, 102, 12, 0, 0, 0, 12,
+ 128, 11, 0, 0, 0, 0, 11, 0, 95, 12,
+ 0, 14, 0, 0, 12, 38, 39, 40, 41, 42,
+ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
+ 53, 54, 55, 129, 130, 131, 132, 133, 38, 39,
+ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
+ 50, 51, 52, 53, 54, 55, -75, 129, 130, 131,
+ 132, 133, 123, 0, 38, 39, 40, 41, 42, 43,
+ 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
+ 54, 55, 0, 38, 39, 40, 41, 42, 43, 44,
+ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
+ 55, 0, 126, 0, 127, 45, 46, 47, 48, 49,
+ 50, 51, 52, 53, 54, 55, 140, 141, 142, 143,
+ 144, 38, 39, 40, 41, 42, 43, 44, 45, 46,
+ 47, 48, 49, 50, 51, 52, 53, 54, 55, 40,
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
+ 51, 52, 53, 54, 55, 43, 44, 45, 46, 47,
+ 48, 49, 50, 51, 52, 53, 54, 55, 49, 50,
+ 51, 52, 53, 54, 55
};
#define yypact_value_is_default(Yystate) \
@@ -750,58 +770,60 @@ static const yytype_int16 yytable[] = {
#define yytable_value_is_error(Yytable_value) \
YYID (0)
-static const yytype_int16 yycheck[] = {
- 0, 1, 2, 0, 57, 113, 11, 57, 48, 8,
- 46, 11, 12, 49, 13, 123, 45, 57, 11, 48,
- 11, 13, 11, 76, 77, 71, 72, 73, 74, 75,
- 30, 28, 29, 0, 34, 0, 31, 31, 38, 39,
- 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
- 50, 51, 52, 53, 54, 55, 45, 11, 108, 59,
- 16, 11, 59, 17, 18, 19, 20, 17, 18, 19,
- 20, 11, 73, 74, 75, 21, 11, 42, 43, 44,
- 20, 56, 71, 12, 48, 20, 48, 12, 42, 43,
- 44, 45, 48, 80, 48, 45, 12, 15, 48, 12,
- 56, 73, 74, 75, 12, 45, 57, 56, 48, 109,
- 45, 51, 12, 48, 11, 45, 48, 71, 12, 58,
- 68, 71, 59, 138, 14, 79, -1, -1, -1, 79,
- 14, 71, -1, -1, -1, -1, 71, -1, 138, 79,
- -1, 138, -1, -1, 79, 58, 59, 60, 61, 62,
- 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- 73, 74, 75, 71, 72, 73, 74, 75, 58, 59,
- 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
- 70, 71, 72, 73, 74, 75, 31, 71, 72, 73,
- 74, 75, 56, -1, 58, 59, 60, 61, 62, 63,
- 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
- 74, 75, -1, 58, 59, 60, 61, 62, 63, 64,
- 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
- 75, -1, 115, -1, 117, 65, 66, 67, 68, 69,
- 70, 71, 72, 73, 74, 75, 129, 130, 131, 132,
- 133, 58, 59, 60, 61, 62, 63, 64, 65, 66,
- 67, 68, 69, 70, 71, 72, 73, 74, 75, 60,
- 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
- 71, 72, 73, 74, 75, 63, 64, 65, 66, 67,
- 68, 69, 70, 71, 72, 73, 74, 75, 69, 70,
- 71, 72, 73, 74, 75
+static const yytype_int16 yycheck[] =
+{
+ 0, 1, 2, 0, 57, 113, 11, 57, 48, 8,
+ 46, 11, 12, 49, 13, 123, 45, 57, 11, 48,
+ 11, 13, 11, 76, 77, 71, 72, 73, 74, 75,
+ 30, 28, 29, 0, 34, 0, 31, 31, 38, 39,
+ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
+ 50, 51, 52, 53, 54, 55, 45, 11, 108, 59,
+ 16, 11, 59, 17, 18, 19, 20, 17, 18, 19,
+ 20, 11, 73, 74, 75, 21, 11, 42, 43, 44,
+ 20, 56, 71, 12, 48, 20, 48, 12, 42, 43,
+ 44, 45, 48, 80, 48, 45, 12, 15, 48, 12,
+ 56, 73, 74, 75, 12, 45, 57, 56, 48, 109,
+ 45, 51, 12, 48, 11, 45, 48, 71, 12, 58,
+ 68, 71, 59, 138, 14, 79, -1, -1, -1, 79,
+ 14, 71, -1, -1, -1, -1, 71, -1, 138, 79,
+ -1, 138, -1, -1, 79, 58, 59, 60, 61, 62,
+ 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
+ 73, 74, 75, 71, 72, 73, 74, 75, 58, 59,
+ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
+ 70, 71, 72, 73, 74, 75, 31, 71, 72, 73,
+ 74, 75, 56, -1, 58, 59, 60, 61, 62, 63,
+ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
+ 74, 75, -1, 58, 59, 60, 61, 62, 63, 64,
+ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
+ 75, -1, 115, -1, 117, 65, 66, 67, 68, 69,
+ 70, 71, 72, 73, 74, 75, 129, 130, 131, 132,
+ 133, 58, 59, 60, 61, 62, 63, 64, 65, 66,
+ 67, 68, 69, 70, 71, 72, 73, 74, 75, 60,
+ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
+ 71, 72, 73, 74, 75, 63, 64, 65, 66, 67,
+ 68, 69, 70, 71, 72, 73, 74, 75, 69, 70,
+ 71, 72, 73, 74, 75
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */
-static const yytype_uint8 yystos[] = {
- 0, 11, 17, 18, 19, 20, 42, 43, 44, 45,
- 48, 71, 79, 82, 83, 84, 85, 88, 89, 90,
- 91, 97, 98, 99, 83, 88, 88, 11, 11, 11,
- 13, 88, 88, 0, 57, 76, 77, 86, 58, 59,
- 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
- 70, 71, 72, 73, 74, 75, 46, 49, 31, 31,
- 12, 21, 45, 83, 83, 88, 51, 88, 80, 87,
- 88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
- 88, 88, 88, 88, 88, 88, 88, 88, 48, 57,
- 92, 93, 94, 92, 91, 88, 97, 56, 102, 12,
- 12, 12, 14, 100, 85, 8, 13, 15, 56, 57,
- 88, 103, 12, 11, 45, 11, 45, 71, 95, 48,
- 96, 92, 88, 56, 101, 103, 95, 95, 14, 71,
- 72, 73, 74, 75, 16, 48, 56, 103, 12, 12,
- 95, 95, 95, 95, 95, 99
+static const yytype_uint8 yystos[] =
+{
+ 0, 11, 17, 18, 19, 20, 42, 43, 44, 45,
+ 48, 71, 79, 82, 83, 84, 85, 88, 89, 90,
+ 91, 97, 98, 99, 83, 88, 88, 11, 11, 11,
+ 13, 88, 88, 0, 57, 76, 77, 86, 58, 59,
+ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
+ 70, 71, 72, 73, 74, 75, 46, 49, 31, 31,
+ 12, 21, 45, 83, 83, 88, 51, 88, 80, 87,
+ 88, 88, 88, 88, 88, 88, 88, 88, 88, 88,
+ 88, 88, 88, 88, 88, 88, 88, 88, 48, 57,
+ 92, 93, 94, 92, 91, 88, 97, 56, 102, 12,
+ 12, 12, 14, 100, 85, 8, 13, 15, 56, 57,
+ 88, 103, 12, 11, 45, 11, 45, 71, 95, 48,
+ 96, 92, 88, 56, 101, 103, 95, 95, 14, 71,
+ 72, 73, 74, 75, 16, 48, 56, 103, 12, 12,
+ 95, 95, 95, 95, 95, 99
};
#define yyerrok (yyerrstatus = 0)
@@ -823,10 +845,10 @@ static const yytype_uint8 yystos[] = {
#define YYFAIL goto yyerrlab
#if defined YYFAIL
-/* This is here to suppress warnings from the GCC cpp's
- -Wunused-macros. Normally we don't worry about that warning, but
- some users do, and we want to make it easy for users to remove
- YYFAIL uses, which will produce warnings from Bison 2.5. */
+ /* This is here to suppress warnings from the GCC cpp's
+ -Wunused-macros. Normally we don't worry about that warning, but
+ some users do, and we want to make it easy for users to remove
+ YYFAIL uses, which will produce warnings from Bison 2.5. */
#endif
#define YYRECOVERING() (!!yyerrstatus)
@@ -904,26 +926,26 @@ yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvalue
#else
static void
yy_symbol_value_print (yyoutput, yytype, yyvaluep, ctx, scanner)
-FILE *yyoutput;
-int yytype;
-YYSTYPE const * const yyvaluep;
-uscxml::PromelaParser* ctx;
-void * scanner;
+ FILE *yyoutput;
+ int yytype;
+ YYSTYPE const * const yyvaluep;
+ uscxml::PromelaParser* ctx;
+ void * scanner;
#endif
{
- FILE *yyo = yyoutput;
- YYUSE (yyo);
- if (!yyvaluep)
- return;
- YYUSE (ctx);
- YYUSE (scanner);
+ FILE *yyo = yyoutput;
+ YYUSE (yyo);
+ if (!yyvaluep)
+ return;
+ YYUSE (ctx);
+ YYUSE (scanner);
# ifdef YYPRINT
- if (yytype < YYNTOKENS)
- YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
+ if (yytype < YYNTOKENS)
+ YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
# else
- YYUSE (yyoutput);
+ YYUSE (yyoutput);
# endif
- YYUSE (yytype);
+ YYUSE (yytype);
}
@@ -938,20 +960,20 @@ yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, usc
#else
static void
yy_symbol_print (yyoutput, yytype, yyvaluep, ctx, scanner)
-FILE *yyoutput;
-int yytype;
-YYSTYPE const * const yyvaluep;
-uscxml::PromelaParser* ctx;
-void * scanner;
+ FILE *yyoutput;
+ int yytype;
+ YYSTYPE const * const yyvaluep;
+ uscxml::PromelaParser* ctx;
+ void * scanner;
#endif
{
- if (yytype < YYNTOKENS)
- YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
- else
- YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
+ if (yytype < YYNTOKENS)
+ YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
+ else
+ YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
- yy_symbol_value_print (yyoutput, yytype, yyvaluep, ctx, scanner);
- YYFPRINTF (yyoutput, ")");
+ yy_symbol_value_print (yyoutput, yytype, yyvaluep, ctx, scanner);
+ YYFPRINTF (yyoutput, ")");
}
/*------------------------------------------------------------------.
@@ -966,16 +988,17 @@ yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
#else
static void
yy_stack_print (yybottom, yytop)
-yytype_int16 *yybottom;
-yytype_int16 *yytop;
+ yytype_int16 *yybottom;
+ yytype_int16 *yytop;
#endif
{
- YYFPRINTF (stderr, "Stack now");
- for (; yybottom <= yytop; yybottom++) {
- int yybot = *yybottom;
- YYFPRINTF (stderr, " %d", yybot);
- }
- YYFPRINTF (stderr, "\n");
+ YYFPRINTF (stderr, "Stack now");
+ for (; yybottom <= yytop; yybottom++)
+ {
+ int yybot = *yybottom;
+ YYFPRINTF (stderr, " %d", yybot);
+ }
+ YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
@@ -996,25 +1019,26 @@ yy_reduce_print (YYSTYPE *yyvsp, int yyrule, uscxml::PromelaParser* ctx, void *
#else
static void
yy_reduce_print (yyvsp, yyrule, ctx, scanner)
-YYSTYPE *yyvsp;
-int yyrule;
-uscxml::PromelaParser* ctx;
-void * scanner;
+ YYSTYPE *yyvsp;
+ int yyrule;
+ uscxml::PromelaParser* ctx;
+ void * scanner;
#endif
{
- int yynrhs = yyr2[yyrule];
- int yyi;
- unsigned long int yylno = yyrline[yyrule];
- YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
- yyrule - 1, yylno);
- /* The symbols being reduced. */
- for (yyi = 0; yyi < yynrhs; yyi++) {
- YYFPRINTF (stderr, " $%d = ", yyi + 1);
- yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
- &(yyvsp[(yyi + 1) - (yynrhs)])
- , ctx, scanner);
- YYFPRINTF (stderr, "\n");
- }
+ int yynrhs = yyr2[yyrule];
+ int yyi;
+ unsigned long int yylno = yyrline[yyrule];
+ YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
+ yyrule - 1, yylno);
+ /* The symbols being reduced. */
+ for (yyi = 0; yyi < yynrhs; yyi++)
+ {
+ YYFPRINTF (stderr, " $%d = ", yyi + 1);
+ yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
+ &(yyvsp[(yyi + 1) - (yynrhs)])
+ , ctx, scanner);
+ YYFPRINTF (stderr, "\n");
+ }
}
# define YY_REDUCE_PRINT(Rule) \
@@ -1065,13 +1089,13 @@ yystrlen (const char *yystr)
#else
static YYSIZE_T
yystrlen (yystr)
-const char *yystr;
+ const char *yystr;
#endif
{
- YYSIZE_T yylen;
- for (yylen = 0; yystr[yylen]; yylen++)
- continue;
- return yylen;
+ YYSIZE_T yylen;
+ for (yylen = 0; yystr[yylen]; yylen++)
+ continue;
+ return yylen;
}
# endif
# endif
@@ -1089,17 +1113,17 @@ yystpcpy (char *yydest, const char *yysrc)
#else
static char *
yystpcpy (yydest, yysrc)
-char *yydest;
-const char *yysrc;
+ char *yydest;
+ const char *yysrc;
#endif
{
- char *yyd = yydest;
- const char *yys = yysrc;
+ char *yyd = yydest;
+ const char *yys = yysrc;
- while ((*yyd++ = *yys++) != '\0')
- continue;
+ while ((*yyd++ = *yys++) != '\0')
+ continue;
- return yyd - 1;
+ return yyd - 1;
}
# endif
# endif
@@ -1113,40 +1137,42 @@ const char *yysrc;
null, do not copy; instead, return the length of what the result
would have been. */
static YYSIZE_T
-yytnamerr (char *yyres, const char *yystr) {
- if (*yystr == '"') {
- YYSIZE_T yyn = 0;
- char const *yyp = yystr;
-
- for (;;)
- switch (*++yyp) {
- case '\'':
- case ',':
- goto do_not_strip_quotes;
-
- case '\\':
- if (*++yyp != '\\')
- goto do_not_strip_quotes;
- /* Fall through. */
- default:
- if (yyres)
- yyres[yyn] = *yyp;
- yyn++;
- break;
-
- case '"':
- if (yyres)
- yyres[yyn] = '\0';
- return yyn;
- }
-do_not_strip_quotes:
- ;
- }
-
- if (! yyres)
- return yystrlen (yystr);
-
- return yystpcpy (yyres, yystr) - yyres;
+yytnamerr (char *yyres, const char *yystr)
+{
+ if (*yystr == '"')
+ {
+ YYSIZE_T yyn = 0;
+ char const *yyp = yystr;
+
+ for (;;)
+ switch (*++yyp)
+ {
+ case '\'':
+ case ',':
+ goto do_not_strip_quotes;
+
+ case '\\':
+ if (*++yyp != '\\')
+ goto do_not_strip_quotes;
+ /* Fall through. */
+ default:
+ if (yyres)
+ yyres[yyn] = *yyp;
+ yyn++;
+ break;
+
+ case '"':
+ if (yyres)
+ yyres[yyn] = '\0';
+ return yyn;
+ }
+ do_not_strip_quotes: ;
+ }
+
+ if (! yyres)
+ return yystrlen (yystr);
+
+ return yystpcpy (yyres, yystr) - yyres;
}
# endif
@@ -1160,123 +1186,133 @@ do_not_strip_quotes:
required number of bytes is too large to store. */
static int
yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
- yytype_int16 *yyssp, int yytoken) {
- YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
- YYSIZE_T yysize = yysize0;
- enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
- /* Internationalized format string. */
- const char *yyformat = YY_NULL;
- /* Arguments of yyformat. */
- char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
- /* Number of reported tokens (one for the "unexpected", one per
- "expected"). */
- int yycount = 0;
-
- /* There are many possibilities here to consider:
- - Assume YYFAIL is not used. It's too flawed to consider. See
- <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
- for details. YYERROR is fine as it does not invoke this
- function.
- - If this state is a consistent state with a default action, then
- the only way this function was invoked is if the default action
- is an error action. In that case, don't check for expected
- tokens because there are none.
- - The only way there can be no lookahead present (in yychar) is if
- this state is a consistent state with a default action. Thus,
- detecting the absence of a lookahead is sufficient to determine
- that there is no unexpected or expected token to report. In that
- case, just report a simple "syntax error".
- - Don't assume there isn't a lookahead just because this state is a
- consistent state with a default action. There might have been a
- previous inconsistent state, consistent state with a non-default
- action, or user semantic action that manipulated yychar.
- - Of course, the expected token list depends on states to have
- correct lookahead information, and it depends on the parser not
- to perform extra reductions after fetching a lookahead from the
- scanner and before detecting a syntax error. Thus, state merging
- (from LALR or IELR) and default reductions corrupt the expected
- token list. However, the list is correct for canonical LR with
- one exception: it will still contain any token that will not be
- accepted due to an error action in a later state.
- */
- if (yytoken != YYEMPTY) {
- int yyn = yypact[*yyssp];
- yyarg[yycount++] = yytname[yytoken];
- if (!yypact_value_is_default (yyn)) {
- /* Start YYX at -YYN if negative to avoid negative indexes in
- YYCHECK. In other words, skip the first -YYN actions for
- this state because they are default actions. */
- int yyxbegin = yyn < 0 ? -yyn : 0;
- /* Stay within bounds of both yycheck and yytname. */
- int yychecklim = YYLAST - yyn + 1;
- int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
- int yyx;
-
- for (yyx = yyxbegin; yyx < yyxend; ++yyx)
- if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
- && !yytable_value_is_error (yytable[yyx + yyn])) {
- if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) {
- yycount = 1;
- yysize = yysize0;
- break;
- }
- yyarg[yycount++] = yytname[yyx];
- {
- YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
- if (! (yysize <= yysize1
- && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
- return 2;
- yysize = yysize1;
- }
- }
- }
- }
-
- switch (yycount) {
+ yytype_int16 *yyssp, int yytoken)
+{
+ YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
+ YYSIZE_T yysize = yysize0;
+ enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
+ /* Internationalized format string. */
+ const char *yyformat = YY_NULL;
+ /* Arguments of yyformat. */
+ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
+ /* Number of reported tokens (one for the "unexpected", one per
+ "expected"). */
+ int yycount = 0;
+
+ /* There are many possibilities here to consider:
+ - Assume YYFAIL is not used. It's too flawed to consider. See
+ <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
+ for details. YYERROR is fine as it does not invoke this
+ function.
+ - If this state is a consistent state with a default action, then
+ the only way this function was invoked is if the default action
+ is an error action. In that case, don't check for expected
+ tokens because there are none.
+ - The only way there can be no lookahead present (in yychar) is if
+ this state is a consistent state with a default action. Thus,
+ detecting the absence of a lookahead is sufficient to determine
+ that there is no unexpected or expected token to report. In that
+ case, just report a simple "syntax error".
+ - Don't assume there isn't a lookahead just because this state is a
+ consistent state with a default action. There might have been a
+ previous inconsistent state, consistent state with a non-default
+ action, or user semantic action that manipulated yychar.
+ - Of course, the expected token list depends on states to have
+ correct lookahead information, and it depends on the parser not
+ to perform extra reductions after fetching a lookahead from the
+ scanner and before detecting a syntax error. Thus, state merging
+ (from LALR or IELR) and default reductions corrupt the expected
+ token list. However, the list is correct for canonical LR with
+ one exception: it will still contain any token that will not be
+ accepted due to an error action in a later state.
+ */
+ if (yytoken != YYEMPTY)
+ {
+ int yyn = yypact[*yyssp];
+ yyarg[yycount++] = yytname[yytoken];
+ if (!yypact_value_is_default (yyn))
+ {
+ /* Start YYX at -YYN if negative to avoid negative indexes in
+ YYCHECK. In other words, skip the first -YYN actions for
+ this state because they are default actions. */
+ int yyxbegin = yyn < 0 ? -yyn : 0;
+ /* Stay within bounds of both yycheck and yytname. */
+ int yychecklim = YYLAST - yyn + 1;
+ int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
+ int yyx;
+
+ for (yyx = yyxbegin; yyx < yyxend; ++yyx)
+ if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
+ && !yytable_value_is_error (yytable[yyx + yyn]))
+ {
+ if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
+ {
+ yycount = 1;
+ yysize = yysize0;
+ break;
+ }
+ yyarg[yycount++] = yytname[yyx];
+ {
+ YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
+ if (! (yysize <= yysize1
+ && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
+ return 2;
+ yysize = yysize1;
+ }
+ }
+ }
+ }
+
+ switch (yycount)
+ {
# define YYCASE_(N, S) \
case N: \
yyformat = S; \
break
- YYCASE_(0, YY_("syntax error"));
- YYCASE_(1, YY_("syntax error, unexpected %s"));
- YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
- YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
- YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
- YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
+ YYCASE_(0, YY_("syntax error"));
+ YYCASE_(1, YY_("syntax error, unexpected %s"));
+ YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
+ YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
+ YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
+ YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
# undef YYCASE_
- }
-
- {
- YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
- if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
- return 2;
- yysize = yysize1;
- }
-
- if (*yymsg_alloc < yysize) {
- *yymsg_alloc = 2 * yysize;
- if (! (yysize <= *yymsg_alloc
- && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
- *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
- return 1;
- }
-
- /* Avoid sprintf, as that infringes on the user's name space.
- Don't have undefined behavior even if the translation
- produced a string with the wrong number of "%s"s. */
- {
- char *yyp = *yymsg;
- int yyi = 0;
- while ((*yyp = *yyformat) != '\0')
- if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) {
- yyp += yytnamerr (yyp, yyarg[yyi++]);
- yyformat += 2;
- } else {
- yyp++;
- yyformat++;
- }
- }
- return 0;
+ }
+
+ {
+ YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
+ if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
+ return 2;
+ yysize = yysize1;
+ }
+
+ if (*yymsg_alloc < yysize)
+ {
+ *yymsg_alloc = 2 * yysize;
+ if (! (yysize <= *yymsg_alloc
+ && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
+ *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
+ return 1;
+ }
+
+ /* Avoid sprintf, as that infringes on the user's name space.
+ Don't have undefined behavior even if the translation
+ produced a string with the wrong number of "%s"s. */
+ {
+ char *yyp = *yymsg;
+ int yyi = 0;
+ while ((*yyp = *yyformat) != '\0')
+ if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
+ {
+ yyp += yytnamerr (yyp, yyarg[yyi++]);
+ yyformat += 2;
+ }
+ else
+ {
+ yyp++;
+ yyformat++;
+ }
+ }
+ return 0;
}
#endif /* YYERROR_VERBOSE */
@@ -1292,22 +1328,22 @@ yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, uscxml::PromelaPar
#else
static void
yydestruct (yymsg, yytype, yyvaluep, ctx, scanner)
-const char *yymsg;
-int yytype;
-YYSTYPE *yyvaluep;
-uscxml::PromelaParser* ctx;
-void * scanner;
+ const char *yymsg;
+ int yytype;
+ YYSTYPE *yyvaluep;
+ uscxml::PromelaParser* ctx;
+ void * scanner;
#endif
{
- YYUSE (yyvaluep);
- YYUSE (ctx);
- YYUSE (scanner);
+ YYUSE (yyvaluep);
+ YYUSE (ctx);
+ YYUSE (scanner);
- if (!yymsg)
- yymsg = "Deleting";
- YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
+ if (!yymsg)
+ yymsg = "Deleting";
+ YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
- YYUSE (yytype);
+ YYUSE (yytype);
}
@@ -1325,7 +1361,7 @@ yyparse (void *YYPARSE_PARAM)
#else
int
yyparse (YYPARSE_PARAM)
-void *YYPARSE_PARAM;
+ void *YYPARSE_PARAM;
#endif
#else /* ! YYPARSE_PARAM */
#if (defined __STDC__ || defined __C99__FUNC__ \
@@ -1335,17 +1371,17 @@ yyparse (uscxml::PromelaParser* ctx, void * scanner)
#else
int
yyparse (ctx, scanner)
-uscxml::PromelaParser* ctx;
-void * scanner;
+ uscxml::PromelaParser* ctx;
+ void * scanner;
#endif
#endif
{
- /* The lookahead symbol. */
- int yychar;
+/* The lookahead symbol. */
+int yychar;
#if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
- /* Suppress an incorrect diagnostic about yylval being uninitialized. */
+/* Suppress an incorrect diagnostic about yylval being uninitialized. */
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
@@ -1353,9 +1389,9 @@ void * scanner;
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
- /* Default value used for initialization, for pacifying older GCCs
- or non-GCC compilers. */
- static YYSTYPE yyval_default;
+/* Default value used for initialization, for pacifying older GCCs
+ or non-GCC compilers. */
+static YYSTYPE yyval_default;
# define YY_INITIAL_VALUE(Value) = Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
@@ -1366,971 +1402,990 @@ void * scanner;
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
- /* The semantic value of the lookahead symbol. */
- YYSTYPE yylval YY_INITIAL_VALUE(yyval_default);
+/* The semantic value of the lookahead symbol. */
+YYSTYPE yylval YY_INITIAL_VALUE(yyval_default);
- /* Number of syntax errors so far. */
- int yynerrs;
+ /* Number of syntax errors so far. */
+ int yynerrs;
- int yystate;
- /* Number of tokens to shift before error messages enabled. */
- int yyerrstatus;
+ int yystate;
+ /* Number of tokens to shift before error messages enabled. */
+ int yyerrstatus;
- /* The stacks and their tools:
- `yyss': related to states.
- `yyvs': related to semantic values.
+ /* The stacks and their tools:
+ `yyss': related to states.
+ `yyvs': related to semantic values.
- Refer to the stacks through separate pointers, to allow yyoverflow
- to reallocate them elsewhere. */
+ Refer to the stacks through separate pointers, to allow yyoverflow
+ to reallocate them elsewhere. */
- /* The state stack. */
- yytype_int16 yyssa[YYINITDEPTH];
- yytype_int16 *yyss;
- yytype_int16 *yyssp;
+ /* The state stack. */
+ yytype_int16 yyssa[YYINITDEPTH];
+ yytype_int16 *yyss;
+ yytype_int16 *yyssp;
- /* The semantic value stack. */
- YYSTYPE yyvsa[YYINITDEPTH];
- YYSTYPE *yyvs;
- YYSTYPE *yyvsp;
+ /* The semantic value stack. */
+ YYSTYPE yyvsa[YYINITDEPTH];
+ YYSTYPE *yyvs;
+ YYSTYPE *yyvsp;
- YYSIZE_T yystacksize;
+ YYSIZE_T yystacksize;
- int yyn;
- int yyresult;
- /* Lookahead token as an internal (translated) token number. */
- int yytoken = 0;
- /* The variables used to return semantic value and location from the
- action routines. */
- YYSTYPE yyval;
+ int yyn;
+ int yyresult;
+ /* Lookahead token as an internal (translated) token number. */
+ int yytoken = 0;
+ /* The variables used to return semantic value and location from the
+ action routines. */
+ YYSTYPE yyval;
#if YYERROR_VERBOSE
- /* Buffer for error messages, and its allocated size. */
- char yymsgbuf[128];
- char *yymsg = yymsgbuf;
- YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
+ /* Buffer for error messages, and its allocated size. */
+ char yymsgbuf[128];
+ char *yymsg = yymsgbuf;
+ YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
#endif
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
- /* The number of symbols on the RHS of the reduced rule.
- Keep to zero when no symbol should be popped. */
- int yylen = 0;
+ /* The number of symbols on the RHS of the reduced rule.
+ Keep to zero when no symbol should be popped. */
+ int yylen = 0;
- yyssp = yyss = yyssa;
- yyvsp = yyvs = yyvsa;
- yystacksize = YYINITDEPTH;
+ yyssp = yyss = yyssa;
+ yyvsp = yyvs = yyvsa;
+ yystacksize = YYINITDEPTH;
- YYDPRINTF ((stderr, "Starting parse\n"));
+ YYDPRINTF ((stderr, "Starting parse\n"));
- yystate = 0;
- yyerrstatus = 0;
- yynerrs = 0;
- yychar = YYEMPTY; /* Cause a token to be read. */
- goto yysetstate;
+ yystate = 0;
+ yyerrstatus = 0;
+ yynerrs = 0;
+ yychar = YYEMPTY; /* Cause a token to be read. */
+ goto yysetstate;
- /*------------------------------------------------------------.
- | yynewstate -- Push a new state, which is found in yystate. |
- `------------------------------------------------------------*/
-yynewstate:
- /* In all cases, when you get here, the value and location stacks
- have just been pushed. So pushing a state here evens the stacks. */
- yyssp++;
+/*------------------------------------------------------------.
+| yynewstate -- Push a new state, which is found in yystate. |
+`------------------------------------------------------------*/
+ yynewstate:
+ /* In all cases, when you get here, the value and location stacks
+ have just been pushed. So pushing a state here evens the stacks. */
+ yyssp++;
-yysetstate:
- *yyssp = yystate;
+ yysetstate:
+ *yyssp = yystate;
- if (yyss + yystacksize - 1 <= yyssp) {
- /* Get the current used size of the three stacks, in elements. */
- YYSIZE_T yysize = yyssp - yyss + 1;
+ if (yyss + yystacksize - 1 <= yyssp)
+ {
+ /* Get the current used size of the three stacks, in elements. */
+ YYSIZE_T yysize = yyssp - yyss + 1;
#ifdef yyoverflow
- {
- /* Give user a chance to reallocate the stack. Use copies of
- these so that the &'s don't force the real ones into
- memory. */
- YYSTYPE *yyvs1 = yyvs;
- yytype_int16 *yyss1 = yyss;
-
- /* Each stack pointer address is followed by the size of the
- data in use in that stack, in bytes. This used to be a
- conditional around just the two extra args, but that might
- be undefined if yyoverflow is a macro. */
- yyoverflow (YY_("memory exhausted"),
- &yyss1, yysize * sizeof (*yyssp),
- &yyvs1, yysize * sizeof (*yyvsp),
- &yystacksize);
-
- yyss = yyss1;
- yyvs = yyvs1;
- }
+ {
+ /* Give user a chance to reallocate the stack. Use copies of
+ these so that the &'s don't force the real ones into
+ memory. */
+ YYSTYPE *yyvs1 = yyvs;
+ yytype_int16 *yyss1 = yyss;
+
+ /* Each stack pointer address is followed by the size of the
+ data in use in that stack, in bytes. This used to be a
+ conditional around just the two extra args, but that might
+ be undefined if yyoverflow is a macro. */
+ yyoverflow (YY_("memory exhausted"),
+ &yyss1, yysize * sizeof (*yyssp),
+ &yyvs1, yysize * sizeof (*yyvsp),
+ &yystacksize);
+
+ yyss = yyss1;
+ yyvs = yyvs1;
+ }
#else /* no yyoverflow */
# ifndef YYSTACK_RELOCATE
- goto yyexhaustedlab;
+ goto yyexhaustedlab;
# else
- /* Extend the stack our own way. */
- if (YYMAXDEPTH <= yystacksize)
- goto yyexhaustedlab;
- yystacksize *= 2;
- if (YYMAXDEPTH < yystacksize)
- yystacksize = YYMAXDEPTH;
-
- {
- yytype_int16 *yyss1 = yyss;
- union yyalloc *yyptr =
- (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
- if (! yyptr)
- goto yyexhaustedlab;
- YYSTACK_RELOCATE (yyss_alloc, yyss);
- YYSTACK_RELOCATE (yyvs_alloc, yyvs);
+ /* Extend the stack our own way. */
+ if (YYMAXDEPTH <= yystacksize)
+ goto yyexhaustedlab;
+ yystacksize *= 2;
+ if (YYMAXDEPTH < yystacksize)
+ yystacksize = YYMAXDEPTH;
+
+ {
+ yytype_int16 *yyss1 = yyss;
+ union yyalloc *yyptr =
+ (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
+ if (! yyptr)
+ goto yyexhaustedlab;
+ YYSTACK_RELOCATE (yyss_alloc, yyss);
+ YYSTACK_RELOCATE (yyvs_alloc, yyvs);
# undef YYSTACK_RELOCATE
- if (yyss1 != yyssa)
- YYSTACK_FREE (yyss1);
- }
+ if (yyss1 != yyssa)
+ YYSTACK_FREE (yyss1);
+ }
# endif
#endif /* no yyoverflow */
- yyssp = yyss + yysize - 1;
- yyvsp = yyvs + yysize - 1;
+ yyssp = yyss + yysize - 1;
+ yyvsp = yyvs + yysize - 1;
- YYDPRINTF ((stderr, "Stack size increased to %lu\n",
- (unsigned long int) yystacksize));
+ YYDPRINTF ((stderr, "Stack size increased to %lu\n",
+ (unsigned long int) yystacksize));
- if (yyss + yystacksize - 1 <= yyssp)
- YYABORT;
- }
+ if (yyss + yystacksize - 1 <= yyssp)
+ YYABORT;
+ }
- YYDPRINTF ((stderr, "Entering state %d\n", yystate));
+ YYDPRINTF ((stderr, "Entering state %d\n", yystate));
- if (yystate == YYFINAL)
- YYACCEPT;
+ if (yystate == YYFINAL)
+ YYACCEPT;
- goto yybackup;
+ goto yybackup;
- /*-----------.
- | yybackup. |
- `-----------*/
+/*-----------.
+| yybackup. |
+`-----------*/
yybackup:
- /* Do appropriate processing given the current state. Read a
- lookahead token if we need one and don't already have one. */
-
- /* First try to decide what to do without reference to lookahead token. */
- yyn = yypact[yystate];
- if (yypact_value_is_default (yyn))
- goto yydefault;
-
- /* Not known => get a lookahead token if don't already have one. */
-
- /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
- if (yychar == YYEMPTY) {
- YYDPRINTF ((stderr, "Reading a token: "));
- yychar = YYLEX;
- }
-
- if (yychar <= YYEOF) {
- yychar = yytoken = YYEOF;
- YYDPRINTF ((stderr, "Now at end of input.\n"));
- } else {
- yytoken = YYTRANSLATE (yychar);
- YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
- }
-
- /* If the proper action on seeing token YYTOKEN is to reduce or to
- detect an error, take that action. */
- yyn += yytoken;
- if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
- goto yydefault;
- yyn = yytable[yyn];
- if (yyn <= 0) {
- if (yytable_value_is_error (yyn))
- goto yyerrlab;
- yyn = -yyn;
- goto yyreduce;
- }
-
- /* Count tokens shifted since error; after three, turn off error
- status. */
- if (yyerrstatus)
- yyerrstatus--;
-
- /* Shift the lookahead token. */
- YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
-
- /* Discard the shifted token. */
- yychar = YYEMPTY;
-
- yystate = yyn;
- YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
- *++yyvsp = yylval;
- YY_IGNORE_MAYBE_UNINITIALIZED_END
-
- goto yynewstate;
-
-
- /*-----------------------------------------------------------.
- | yydefault -- do the default action for the current state. |
- `-----------------------------------------------------------*/
+ /* Do appropriate processing given the current state. Read a
+ lookahead token if we need one and don't already have one. */
+
+ /* First try to decide what to do without reference to lookahead token. */
+ yyn = yypact[yystate];
+ if (yypact_value_is_default (yyn))
+ goto yydefault;
+
+ /* Not known => get a lookahead token if don't already have one. */
+
+ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
+ if (yychar == YYEMPTY)
+ {
+ YYDPRINTF ((stderr, "Reading a token: "));
+ yychar = YYLEX;
+ }
+
+ if (yychar <= YYEOF)
+ {
+ yychar = yytoken = YYEOF;
+ YYDPRINTF ((stderr, "Now at end of input.\n"));
+ }
+ else
+ {
+ yytoken = YYTRANSLATE (yychar);
+ YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
+ }
+
+ /* If the proper action on seeing token YYTOKEN is to reduce or to
+ detect an error, take that action. */
+ yyn += yytoken;
+ if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
+ goto yydefault;
+ yyn = yytable[yyn];
+ if (yyn <= 0)
+ {
+ if (yytable_value_is_error (yyn))
+ goto yyerrlab;
+ yyn = -yyn;
+ goto yyreduce;
+ }
+
+ /* Count tokens shifted since error; after three, turn off error
+ status. */
+ if (yyerrstatus)
+ yyerrstatus--;
+
+ /* Shift the lookahead token. */
+ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
+
+ /* Discard the shifted token. */
+ yychar = YYEMPTY;
+
+ yystate = yyn;
+ YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
+ *++yyvsp = yylval;
+ YY_IGNORE_MAYBE_UNINITIALIZED_END
+
+ goto yynewstate;
+
+
+/*-----------------------------------------------------------.
+| yydefault -- do the default action for the current state. |
+`-----------------------------------------------------------*/
yydefault:
- yyn = yydefact[yystate];
- if (yyn == 0)
- goto yyerrlab;
- goto yyreduce;
+ yyn = yydefact[yystate];
+ if (yyn == 0)
+ goto yyerrlab;
+ goto yyreduce;
- /*-----------------------------.
- | yyreduce -- Do a reduction. |
- `-----------------------------*/
+/*-----------------------------.
+| yyreduce -- Do a reduction. |
+`-----------------------------*/
yyreduce:
- /* yyn is the number of a rule to reduce with. */
- yylen = yyr2[yyn];
+ /* yyn is the number of a rule to reduce with. */
+ yylen = yyr2[yyn];
- /* If YYLEN is nonzero, implement the default value of the action:
- `$$ = $1'.
+ /* If YYLEN is nonzero, implement the default value of the action:
+ `$$ = $1'.
- Otherwise, the following line sets YYVAL to garbage.
- This behavior is undocumented and Bison
- users should not rely upon it. Assigning to YYVAL
- unconditionally makes the parser a bit smaller, and it avoids a
- GCC warning that YYVAL may be used uninitialized. */
- yyval = yyvsp[1-yylen];
+ Otherwise, the following line sets YYVAL to garbage.
+ This behavior is undocumented and Bison
+ users should not rely upon it. Assigning to YYVAL
+ unconditionally makes the parser a bit smaller, and it avoids a
+ GCC warning that YYVAL may be used uninitialized. */
+ yyval = yyvsp[1-yylen];
- YY_REDUCE_PRINT (yyn);
- switch (yyn) {
- case 2:
- /* Line 1787 of yacc.c */
+ YY_REDUCE_PRINT (yyn);
+ switch (yyn)
+ {
+ case 2:
+/* Line 1787 of yacc.c */
#line 84 "promela.ypp"
- {
- ctx->ast = (yyvsp[(1) - (1)].node);
- ctx->type = PromelaParser::PROMELA_DECL;
- }
- break;
-
- case 3:
- /* Line 1787 of yacc.c */
+ {
+ ctx->ast = (yyvsp[(1) - (1)].node);
+ ctx->type = PromelaParser::PROMELA_DECL;
+ }
+ break;
+
+ case 3:
+/* Line 1787 of yacc.c */
#line 88 "promela.ypp"
- {
- ctx->ast = (yyvsp[(1) - (1)].node);
- ctx->type = PromelaParser::PROMELA_EXPR;
- }
- break;
-
- case 4:
- /* Line 1787 of yacc.c */
+ {
+ ctx->ast = (yyvsp[(1) - (1)].node);
+ ctx->type = PromelaParser::PROMELA_EXPR;
+ }
+ break;
+
+ case 4:
+/* Line 1787 of yacc.c */
#line 92 "promela.ypp"
- {
- ctx->ast = (yyvsp[(1) - (1)].node);
- ctx->type = PromelaParser::PROMELA_STMNT;
- }
- break;
-
- case 5:
- /* Line 1787 of yacc.c */
+ {
+ ctx->ast = (yyvsp[(1) - (1)].node);
+ ctx->type = PromelaParser::PROMELA_STMNT;
+ }
+ break;
+
+ case 5:
+/* Line 1787 of yacc.c */
#line 98 "promela.ypp"
- {}
- break;
+ {}
+ break;
- case 6:
- /* Line 1787 of yacc.c */
+ case 6:
+/* Line 1787 of yacc.c */
#line 101 "promela.ypp"
- { (yyval.node) = ctx->value(NAME, (yyvsp[(1) - (1)].value)); free((yyvsp[(1) - (1)].value)); }
- break;
+ { (yyval.node) = ctx->value(PML_NAME, (yyvsp[(1) - (1)].value)); free((yyvsp[(1) - (1)].value)); }
+ break;
- case 7:
- /* Line 1787 of yacc.c */
+ case 7:
+/* Line 1787 of yacc.c */
#line 102 "promela.ypp"
- { (yyval.node) = ctx->node(VAR_ARRAY, 2, ctx->value(NAME, (yyvsp[(1) - (4)].value)), (yyvsp[(3) - (4)].node)); free((yyvsp[(1) - (4)].value)); }
- break;
+ { (yyval.node) = ctx->node(PML_VAR_ARRAY, 2, ctx->value(PML_NAME, (yyvsp[(1) - (4)].value)), (yyvsp[(3) - (4)].node)); free((yyvsp[(1) - (4)].value)); }
+ break;
- case 8:
- /* Line 1787 of yacc.c */
+ case 8:
+/* Line 1787 of yacc.c */
#line 105 "promela.ypp"
- {}
- break;
+ {}
+ break;
- case 9:
- /* Line 1787 of yacc.c */
+ case 9:
+/* Line 1787 of yacc.c */
#line 106 "promela.ypp"
- {}
- break;
+ {}
+ break;
- case 10:
- /* Line 1787 of yacc.c */
+ case 10:
+/* Line 1787 of yacc.c */
#line 109 "promela.ypp"
- {}
- break;
+ {}
+ break;
- case 11:
- /* Line 1787 of yacc.c */
+ case 11:
+/* Line 1787 of yacc.c */
#line 110 "promela.ypp"
- {}
- break;
+ {}
+ break;
- case 12:
- /* Line 1787 of yacc.c */
+ case 12:
+/* Line 1787 of yacc.c */
#line 120 "promela.ypp"
- { (yyval.node) = (yyvsp[(2) - (3)].node); }
- break;
+ { (yyval.node) = (yyvsp[(2) - (3)].node); }
+ break;
- case 13:
- /* Line 1787 of yacc.c */
+ case 13:
+/* Line 1787 of yacc.c */
#line 121 "promela.ypp"
- { (yyval.node) = ctx->node(PLUS, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_PLUS, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 14:
- /* Line 1787 of yacc.c */
+ case 14:
+/* Line 1787 of yacc.c */
#line 122 "promela.ypp"
- { (yyval.node) = ctx->node(MINUS, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_MINUS, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 15:
- /* Line 1787 of yacc.c */
+ case 15:
+/* Line 1787 of yacc.c */
#line 123 "promela.ypp"
- { (yyval.node) = ctx->node(TIMES, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_TIMES, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 16:
- /* Line 1787 of yacc.c */
+ case 16:
+/* Line 1787 of yacc.c */
#line 124 "promela.ypp"
- { (yyval.node) = ctx->node(DIVIDE, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_DIVIDE, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 17:
- /* Line 1787 of yacc.c */
+ case 17:
+/* Line 1787 of yacc.c */
#line 125 "promela.ypp"
- { (yyval.node) = ctx->node(MODULO, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_MODULO, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 18:
- /* Line 1787 of yacc.c */
+ case 18:
+/* Line 1787 of yacc.c */
#line 126 "promela.ypp"
- { (yyval.node) = ctx->node(BITAND, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_BITAND, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 19:
- /* Line 1787 of yacc.c */
+ case 19:
+/* Line 1787 of yacc.c */
#line 127 "promela.ypp"
- { (yyval.node) = ctx->node(BITXOR, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_BITXOR, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 20:
- /* Line 1787 of yacc.c */
+ case 20:
+/* Line 1787 of yacc.c */
#line 128 "promela.ypp"
- { (yyval.node) = ctx->node(BITOR, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_BITOR, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 21:
- /* Line 1787 of yacc.c */
+ case 21:
+/* Line 1787 of yacc.c */
#line 129 "promela.ypp"
- { (yyval.node) = ctx->node(GT, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_GT, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 22:
- /* Line 1787 of yacc.c */
+ case 22:
+/* Line 1787 of yacc.c */
#line 130 "promela.ypp"
- { (yyval.node) = ctx->node(LT, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_LT, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 23:
- /* Line 1787 of yacc.c */
+ case 23:
+/* Line 1787 of yacc.c */
#line 131 "promela.ypp"
- { (yyval.node) = ctx->node(GE, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_GE, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 24:
- /* Line 1787 of yacc.c */
+ case 24:
+/* Line 1787 of yacc.c */
#line 132 "promela.ypp"
- { (yyval.node) = ctx->node(LE, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_LE, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 25:
- /* Line 1787 of yacc.c */
+ case 25:
+/* Line 1787 of yacc.c */
#line 133 "promela.ypp"
- { (yyval.node) = ctx->node(EQ, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_EQ, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 26:
- /* Line 1787 of yacc.c */
+ case 26:
+/* Line 1787 of yacc.c */
#line 134 "promela.ypp"
- { (yyval.node) = ctx->node(NE, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_NE, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 27:
- /* Line 1787 of yacc.c */
+ case 27:
+/* Line 1787 of yacc.c */
#line 135 "promela.ypp"
- { (yyval.node) = ctx->node(AND, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_AND, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 28:
- /* Line 1787 of yacc.c */
+ case 28:
+/* Line 1787 of yacc.c */
#line 136 "promela.ypp"
- { (yyval.node) = ctx->node(OR, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_OR, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 29:
- /* Line 1787 of yacc.c */
+ case 29:
+/* Line 1787 of yacc.c */
#line 137 "promela.ypp"
- { (yyval.node) = ctx->node(LSHIFT, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_LSHIFT, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 30:
- /* Line 1787 of yacc.c */
+ case 30:
+/* Line 1787 of yacc.c */
#line 138 "promela.ypp"
- { (yyval.node) = ctx->node(RSHIFT, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_RSHIFT, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 31:
- /* Line 1787 of yacc.c */
+ case 31:
+/* Line 1787 of yacc.c */
#line 139 "promela.ypp"
- { (yyval.node) = ctx->node(NEG, 1, (yyvsp[(2) - (2)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_NEG, 1, (yyvsp[(2) - (2)].node)); }
+ break;
- case 32:
- /* Line 1787 of yacc.c */
+ case 32:
+/* Line 1787 of yacc.c */
#line 140 "promela.ypp"
- { (yyval.node) = ctx->node(MINUS, 1, (yyvsp[(2) - (2)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_MINUS, 1, (yyvsp[(2) - (2)].node)); }
+ break;
- case 33:
- /* Line 1787 of yacc.c */
+ case 33:
+/* Line 1787 of yacc.c */
#line 142 "promela.ypp"
- { (yyval.node) = ctx->node(LEN, 1, (yyvsp[(3) - (4)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_LEN, 1, (yyvsp[(3) - (4)].node)); }
+ break;
- case 34:
- /* Line 1787 of yacc.c */
+ case 34:
+/* Line 1787 of yacc.c */
#line 143 "promela.ypp"
- { }
- break;
+ { }
+ break;
- case 35:
- /* Line 1787 of yacc.c */
+ case 35:
+/* Line 1787 of yacc.c */
#line 144 "promela.ypp"
- { (yyval.node) = ctx->value(CONST, (yyvsp[(1) - (1)].value)); free((yyvsp[(1) - (1)].value)); }
- break;
+ { (yyval.node) = ctx->value(PML_CONST, (yyvsp[(1) - (1)].value)); free((yyvsp[(1) - (1)].value)); }
+ break;
- case 36:
- /* Line 1787 of yacc.c */
+ case 36:
+/* Line 1787 of yacc.c */
#line 148 "promela.ypp"
- { (yyval.node) = ctx->node(SHOW, 0); }
- break;
+ { (yyval.node) = ctx->node(PML_SHOW, 0); }
+ break;
- case 37:
- /* Line 1787 of yacc.c */
+ case 37:
+/* Line 1787 of yacc.c */
#line 149 "promela.ypp"
- { (yyval.node) = ctx->node(HIDDEN, 0); }
- break;
+ { (yyval.node) = ctx->node(PML_HIDDEN, 0); }
+ break;
- case 38:
- /* Line 1787 of yacc.c */
+ case 38:
+/* Line 1787 of yacc.c */
#line 150 "promela.ypp"
- { (yyval.node) = ctx->node(SHOW, 0); }
- break;
+ { (yyval.node) = ctx->node(PML_SHOW, 0); }
+ break;
- case 39:
- /* Line 1787 of yacc.c */
+ case 39:
+/* Line 1787 of yacc.c */
#line 151 "promela.ypp"
- { (yyval.node) = ctx->node(ISLOCAL, 0); }
- break;
+ { (yyval.node) = ctx->node(PML_ISLOCAL, 0); }
+ break;
- case 40:
- /* Line 1787 of yacc.c */
+ case 40:
+/* Line 1787 of yacc.c */
#line 154 "promela.ypp"
- { (yyval.node) = ctx->node(DECL, 3, (yyvsp[(1) - (3)].node), ctx->value(TYPE, (yyvsp[(2) - (3)].value)), (yyvsp[(3) - (3)].node)); free((yyvsp[(2) - (3)].value)); }
- break;
+ { (yyval.node) = ctx->node(PML_DECL, 3, (yyvsp[(1) - (3)].node), ctx->value(PML_TYPE, (yyvsp[(2) - (3)].value)), (yyvsp[(3) - (3)].node)); free((yyvsp[(2) - (3)].value)); }
+ break;
- case 41:
- /* Line 1787 of yacc.c */
+ case 41:
+/* Line 1787 of yacc.c */
#line 155 "promela.ypp"
- { (yyval.node) = ctx->node(UNAME, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_UNAME, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 42:
- /* Line 1787 of yacc.c */
+ case 42:
+/* Line 1787 of yacc.c */
#line 156 "promela.ypp"
- { (yyval.node) = ctx->node(DECL, 3, (yyvsp[(1) - (6)].node), ctx->value(TYPE, (yyvsp[(2) - (6)].value)), (yyvsp[(5) - (6)].node)); free((yyvsp[(2) - (6)].value)); }
- break;
+ { (yyval.node) = ctx->node(PML_DECL, 3, (yyvsp[(1) - (6)].node), ctx->value(PML_TYPE, (yyvsp[(2) - (6)].value)), (yyvsp[(5) - (6)].node)); free((yyvsp[(2) - (6)].value)); }
+ break;
- case 43:
- /* Line 1787 of yacc.c */
+ case 43:
+/* Line 1787 of yacc.c */
#line 159 "promela.ypp"
- { (yyval.node) = (yyvsp[(1) - (1)].node); }
- break;
+ { (yyval.node) = (yyvsp[(1) - (1)].node); }
+ break;
- case 44:
- /* Line 1787 of yacc.c */
+ case 44:
+/* Line 1787 of yacc.c */
#line 160 "promela.ypp"
- { (yyval.node) = (yyvsp[(1) - (2)].node); }
- break;
+ { (yyval.node) = (yyvsp[(1) - (2)].node); }
+ break;
- case 45:
- /* Line 1787 of yacc.c */
+ case 45:
+/* Line 1787 of yacc.c */
#line 161 "promela.ypp"
- {
- (yyval.node) = ctx->node(DECLLIST, 1, (yyvsp[(1) - (3)].node));
- if((yyvsp[(3) - (3)].node)->type == DECLLIST) {
- (yyval.node)->merge((yyvsp[(3) - (3)].node));
- delete (yyvsp[(3) - (3)].node);
- } else {
- (yyval.node)->push((yyvsp[(3) - (3)].node));
- }
- }
- break;
-
- case 46:
- /* Line 1787 of yacc.c */
+ {
+ (yyval.node) = ctx->node(PML_DECLLIST, 1, (yyvsp[(1) - (3)].node));
+ if((yyvsp[(3) - (3)].node)->type == PML_DECLLIST) {
+ (yyval.node)->merge((yyvsp[(3) - (3)].node)); delete (yyvsp[(3) - (3)].node);
+ } else {
+ (yyval.node)->push((yyvsp[(3) - (3)].node));
+ }
+ }
+ break;
+
+ case 46:
+/* Line 1787 of yacc.c */
#line 171 "promela.ypp"
- { (yyval.node) = ctx->node(VARLIST, 1, (yyvsp[(1) - (1)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_VARLIST, 1, (yyvsp[(1) - (1)].node)); }
+ break;
- case 47:
- /* Line 1787 of yacc.c */
+ case 47:
+/* Line 1787 of yacc.c */
#line 172 "promela.ypp"
- { (yyval.node) = ctx->node(VARLIST, 1, (yyvsp[(1) - (3)].node)); (yyval.node)->merge((yyvsp[(3) - (3)].node)); delete (yyvsp[(3) - (3)].node); }
- break;
+ { (yyval.node) = ctx->node(PML_VARLIST, 1, (yyvsp[(1) - (3)].node)); (yyval.node)->merge((yyvsp[(3) - (3)].node)); delete (yyvsp[(3) - (3)].node); }
+ break;
- case 48:
- /* Line 1787 of yacc.c */
+ case 48:
+/* Line 1787 of yacc.c */
#line 175 "promela.ypp"
- { (yyval.node) = (yyvsp[(1) - (1)].node); }
- break;
+ { (yyval.node) = (yyvsp[(1) - (1)].node); }
+ break;
- case 49:
- /* Line 1787 of yacc.c */
+ case 49:
+/* Line 1787 of yacc.c */
#line 176 "promela.ypp"
- { (yyval.node) = ctx->node(ASGN, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_ASGN, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 50:
- /* Line 1787 of yacc.c */
+ case 50:
+/* Line 1787 of yacc.c */
#line 179 "promela.ypp"
- { (yyval.node) = ctx->value(NAME, (yyvsp[(1) - (1)].value)); free((yyvsp[(1) - (1)].value)); }
- break;
+ { (yyval.node) = ctx->value(PML_NAME, (yyvsp[(1) - (1)].value)); free((yyvsp[(1) - (1)].value)); }
+ break;
- case 51:
- /* Line 1787 of yacc.c */
+ case 51:
+/* Line 1787 of yacc.c */
#line 180 "promela.ypp"
- { (yyval.node) = ctx->node(COLON, 2, ctx->value(NAME, (yyvsp[(1) - (3)].value)), ctx->value(CONST, (yyvsp[(3) - (3)].value))); free((yyvsp[(1) - (3)].value)); free((yyvsp[(3) - (3)].value)); }
- break;
+ { (yyval.node) = ctx->node(PML_COLON, 2, ctx->value(PML_NAME, (yyvsp[(1) - (3)].value)), ctx->value(PML_CONST, (yyvsp[(3) - (3)].value))); free((yyvsp[(1) - (3)].value)); free((yyvsp[(3) - (3)].value)); }
+ break;
- case 52:
- /* Line 1787 of yacc.c */
+ case 52:
+/* Line 1787 of yacc.c */
#line 181 "promela.ypp"
- { (yyval.node) = ctx->node(VAR_ARRAY, 2, ctx->value(NAME, (yyvsp[(1) - (4)].value)), (yyvsp[(3) - (4)].node)); free((yyvsp[(1) - (4)].value)); }
- break;
+ { (yyval.node) = ctx->node(PML_VAR_ARRAY, 2, ctx->value(PML_NAME, (yyvsp[(1) - (4)].value)), (yyvsp[(3) - (4)].node)); free((yyvsp[(1) - (4)].value)); }
+ break;
- case 53:
- /* Line 1787 of yacc.c */
+ case 53:
+/* Line 1787 of yacc.c */
#line 184 "promela.ypp"
- { (yyval.node) = ctx->value(CONST, (yyvsp[(1) - (1)].value)); free((yyvsp[(1) - (1)].value)); }
- break;
+ { (yyval.node) = ctx->value(PML_CONST, (yyvsp[(1) - (1)].value)); free((yyvsp[(1) - (1)].value)); }
+ break;
- case 54:
- /* Line 1787 of yacc.c */
+ case 54:
+/* Line 1787 of yacc.c */
#line 185 "promela.ypp"
- { (yyval.node) = ctx->node(MINUS, 1, (yyvsp[(2) - (2)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_MINUS, 1, (yyvsp[(2) - (2)].node)); }
+ break;
- case 55:
- /* Line 1787 of yacc.c */
+ case 55:
+/* Line 1787 of yacc.c */
#line 186 "promela.ypp"
- { (yyval.node) = (yyvsp[(2) - (3)].node); }
- break;
+ { (yyval.node) = (yyvsp[(2) - (3)].node); }
+ break;
- case 56:
- /* Line 1787 of yacc.c */
+ case 56:
+/* Line 1787 of yacc.c */
#line 187 "promela.ypp"
- { (yyval.node) = ctx->node(PLUS, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_PLUS, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 57:
- /* Line 1787 of yacc.c */
+ case 57:
+/* Line 1787 of yacc.c */
#line 188 "promela.ypp"
- { (yyval.node) = ctx->node(MINUS, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_MINUS, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 58:
- /* Line 1787 of yacc.c */
+ case 58:
+/* Line 1787 of yacc.c */
#line 189 "promela.ypp"
- { (yyval.node) = ctx->node(TIMES, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_TIMES, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 59:
- /* Line 1787 of yacc.c */
+ case 59:
+/* Line 1787 of yacc.c */
#line 190 "promela.ypp"
- { (yyval.node) = ctx->node(DIVIDE, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_DIVIDE, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 60:
- /* Line 1787 of yacc.c */
+ case 60:
+/* Line 1787 of yacc.c */
#line 191 "promela.ypp"
- { (yyval.node) = ctx->node(MODULO, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_MODULO, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 61:
- /* Line 1787 of yacc.c */
+ case 61:
+/* Line 1787 of yacc.c */
#line 194 "promela.ypp"
- { (yyval.node) = ctx->value(NAME, (yyvsp[(1) - (1)].value)); free((yyvsp[(1) - (1)].value)); }
- break;
+ { (yyval.node) = ctx->value(PML_NAME, (yyvsp[(1) - (1)].value)); free((yyvsp[(1) - (1)].value)); }
+ break;
- case 62:
- /* Line 1787 of yacc.c */
+ case 62:
+/* Line 1787 of yacc.c */
#line 195 "promela.ypp"
- {
- if ((yyvsp[(1) - (2)].node)->type == NAME) {
- (yyval.node) = ctx->node(NAMELIST, 1, (yyvsp[(1) - (2)].node));
- (yyval.node)->push(ctx->value(NAME, (yyvsp[(2) - (2)].value)));
- } else {
- (yyvsp[(1) - (2)].node)->push(ctx->value(NAME, (yyvsp[(2) - (2)].value)));
- }
- free((yyvsp[(2) - (2)].value));
- }
- break;
-
- case 63:
- /* Line 1787 of yacc.c */
+ {
+ if ((yyvsp[(1) - (2)].node)->type == PML_NAME) {
+ (yyval.node) = ctx->node(PML_NAMELIST, 1, (yyvsp[(1) - (2)].node));
+ (yyval.node)->push(ctx->value(PML_NAME, (yyvsp[(2) - (2)].value)));
+ } else {
+ (yyvsp[(1) - (2)].node)->push(ctx->value(PML_NAME, (yyvsp[(2) - (2)].value)));
+ }
+ free((yyvsp[(2) - (2)].value));
+ }
+ break;
+
+ case 63:
+/* Line 1787 of yacc.c */
#line 204 "promela.ypp"
- { (yyval.node) = (yyvsp[(1) - (2)].node); }
- break;
+ { (yyval.node) = (yyvsp[(1) - (2)].node); }
+ break;
- case 64:
- /* Line 1787 of yacc.c */
+ case 64:
+/* Line 1787 of yacc.c */
#line 207 "promela.ypp"
- { (yyval.node) = (yyvsp[(1) - (1)].node); }
- break;
+ { (yyval.node) = (yyvsp[(1) - (1)].node); }
+ break;
- case 65:
- /* Line 1787 of yacc.c */
+ case 65:
+/* Line 1787 of yacc.c */
#line 208 "promela.ypp"
- { (yyval.node) = (yyvsp[(1) - (2)].node); }
- break;
+ { (yyval.node) = (yyvsp[(1) - (2)].node); }
+ break;
- case 66:
- /* Line 1787 of yacc.c */
+ case 66:
+/* Line 1787 of yacc.c */
#line 209 "promela.ypp"
- { (yyval.node) = ctx->node(STMNT, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_STMNT, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 67:
- /* Line 1787 of yacc.c */
+ case 67:
+/* Line 1787 of yacc.c */
#line 212 "promela.ypp"
- { (yyval.node) = (yyvsp[(1) - (1)].node); }
- break;
+ { (yyval.node) = (yyvsp[(1) - (1)].node); }
+ break;
- case 68:
- /* Line 1787 of yacc.c */
+ case 68:
+/* Line 1787 of yacc.c */
#line 215 "promela.ypp"
- { (yyval.node) = ctx->node(ASGN, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_ASGN, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
- case 69:
- /* Line 1787 of yacc.c */
+ case 69:
+/* Line 1787 of yacc.c */
#line 216 "promela.ypp"
- { (yyval.node) = ctx->node(INCR, 1, (yyvsp[(1) - (2)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_INCR, 1, (yyvsp[(1) - (2)].node)); }
+ break;
- case 70:
- /* Line 1787 of yacc.c */
+ case 70:
+/* Line 1787 of yacc.c */
#line 217 "promela.ypp"
- { (yyval.node) = ctx->node(DECR, 1, (yyvsp[(1) - (2)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_DECR, 1, (yyvsp[(1) - (2)].node)); }
+ break;
- case 71:
- /* Line 1787 of yacc.c */
+ case 71:
+/* Line 1787 of yacc.c */
#line 218 "promela.ypp"
- { (yyval.node) = ctx->node(PRINT, 2, ctx->value(STRING, (yyvsp[(3) - (5)].value)), (yyvsp[(4) - (5)].node)); free((yyvsp[(3) - (5)].value)); }
- break;
+ { (yyval.node) = ctx->node(PML_PRINT, 2, ctx->value(PML_STRING, (yyvsp[(3) - (5)].value)), (yyvsp[(4) - (5)].node)); free((yyvsp[(3) - (5)].value)); }
+ break;
- case 72:
- /* Line 1787 of yacc.c */
+ case 72:
+/* Line 1787 of yacc.c */
#line 219 "promela.ypp"
- { (yyval.node) = ctx->node(PRINTM, 1, (yyvsp[(3) - (4)].node)); }
- break;
+ { (yyval.node) = ctx->node(PML_PRINTM, 1, (yyvsp[(3) - (4)].node)); }
+ break;
- case 73:
- /* Line 1787 of yacc.c */
+ case 73:
+/* Line 1787 of yacc.c */
#line 220 "promela.ypp"
- { (yyval.node) = ctx->node(PRINTM, 1, ctx->value(CONST, (yyvsp[(3) - (4)].value))); free((yyvsp[(3) - (4)].value)); }
- break;
+ { (yyval.node) = ctx->node(PML_PRINTM, 1, ctx->value(PML_CONST, (yyvsp[(3) - (4)].value))); free((yyvsp[(3) - (4)].value)); }
+ break;
- case 74:
- /* Line 1787 of yacc.c */
+ case 74:
+/* Line 1787 of yacc.c */
#line 221 "promela.ypp"
- { }
- break;
+ { }
+ break;
- case 75:
- /* Line 1787 of yacc.c */
+ case 75:
+/* Line 1787 of yacc.c */
#line 222 "promela.ypp"
- { (yyval.node) = (yyvsp[(1) - (1)].node); }
- break;
+ { (yyval.node) = (yyvsp[(1) - (1)].node); }
+ break;
- case 76:
- /* Line 1787 of yacc.c */
+ case 76:
+/* Line 1787 of yacc.c */
#line 223 "promela.ypp"
- { }
- break;
+ { }
+ break;
- case 77:
- /* Line 1787 of yacc.c */
+ case 77:
+/* Line 1787 of yacc.c */
#line 223 "promela.ypp"
- { }
- break;
+ { }
+ break;
- case 78:
- /* Line 1787 of yacc.c */
+ case 78:
+/* Line 1787 of yacc.c */
#line 226 "promela.ypp"
- { }
- break;
+ { }
+ break;
- case 79:
- /* Line 1787 of yacc.c */
+ case 79:
+/* Line 1787 of yacc.c */
#line 227 "promela.ypp"
- { }
- break;
+ { }
+ break;
- case 80:
- /* Line 1787 of yacc.c */
+ case 80:
+/* Line 1787 of yacc.c */
#line 230 "promela.ypp"
- { (yyval.node) = ctx->value(0, ""); }
- break;
+ { (yyval.node) = ctx->value(0, ""); }
+ break;
- case 81:
- /* Line 1787 of yacc.c */
+ case 81:
+/* Line 1787 of yacc.c */
#line 231 "promela.ypp"
- { (yyval.node) = (yyvsp[(2) - (2)].node); }
- break;
+ { (yyval.node) = (yyvsp[(2) - (2)].node); }
+ break;
- case 82:
- /* Line 1787 of yacc.c */
+ case 82:
+/* Line 1787 of yacc.c */
#line 234 "promela.ypp"
- { (yyval.node) = (yyvsp[(1) - (1)].node); }
- break;
+ { (yyval.node) = (yyvsp[(1) - (1)].node); }
+ break;
- case 83:
- /* Line 1787 of yacc.c */
+ case 83:
+/* Line 1787 of yacc.c */
#line 235 "promela.ypp"
- { (yyval.node) = ctx->node(0, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
- break;
-
-
- /* Line 1787 of yacc.c */
-#line 2157 "promela.tab.cpp"
- default:
- break;
- }
- /* User semantic actions sometimes alter yychar, and that requires
- that yytoken be updated with the new translation. We take the
- approach of translating immediately before every use of yytoken.
- One alternative is translating here after every semantic action,
- but that translation would be missed if the semantic action invokes
- YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
- if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
- incorrect destructor might then be invoked immediately. In the
- case of YYERROR or YYBACKUP, subsequent parser actions might lead
- to an incorrect destructor call or verbose syntax error message
- before the lookahead is translated. */
- YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
-
- YYPOPSTACK (yylen);
- yylen = 0;
- YY_STACK_PRINT (yyss, yyssp);
-
- *++yyvsp = yyval;
-
- /* Now `shift' the result of the reduction. Determine what state
- that goes to, based on the state we popped back to and the rule
- number reduced by. */
-
- yyn = yyr1[yyn];
-
- yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
- if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
- yystate = yytable[yystate];
- else
- yystate = yydefgoto[yyn - YYNTOKENS];
-
- goto yynewstate;
-
-
- /*------------------------------------.
- | yyerrlab -- here on detecting error |
- `------------------------------------*/
+ { (yyval.node) = ctx->node(0, 2, (yyvsp[(1) - (3)].node), (yyvsp[(3) - (3)].node)); }
+ break;
+
+
+/* Line 1787 of yacc.c */
+#line 2162 "promela.tab.cpp"
+ default: break;
+ }
+ /* User semantic actions sometimes alter yychar, and that requires
+ that yytoken be updated with the new translation. We take the
+ approach of translating immediately before every use of yytoken.
+ One alternative is translating here after every semantic action,
+ but that translation would be missed if the semantic action invokes
+ YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
+ if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
+ incorrect destructor might then be invoked immediately. In the
+ case of YYERROR or YYBACKUP, subsequent parser actions might lead
+ to an incorrect destructor call or verbose syntax error message
+ before the lookahead is translated. */
+ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
+
+ YYPOPSTACK (yylen);
+ yylen = 0;
+ YY_STACK_PRINT (yyss, yyssp);
+
+ *++yyvsp = yyval;
+
+ /* Now `shift' the result of the reduction. Determine what state
+ that goes to, based on the state we popped back to and the rule
+ number reduced by. */
+
+ yyn = yyr1[yyn];
+
+ yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
+ if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
+ yystate = yytable[yystate];
+ else
+ yystate = yydefgoto[yyn - YYNTOKENS];
+
+ goto yynewstate;
+
+
+/*------------------------------------.
+| yyerrlab -- here on detecting error |
+`------------------------------------*/
yyerrlab:
- /* Make sure we have latest lookahead translation. See comments at
- user semantic actions for why this is necessary. */
- yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
-
- /* If not already recovering from an error, report this error. */
- if (!yyerrstatus) {
- ++yynerrs;
+ /* Make sure we have latest lookahead translation. See comments at
+ user semantic actions for why this is necessary. */
+ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
+
+ /* If not already recovering from an error, report this error. */
+ if (!yyerrstatus)
+ {
+ ++yynerrs;
#if ! YYERROR_VERBOSE
- yyerror (ctx, scanner, YY_("syntax error"));
+ yyerror (ctx, scanner, YY_("syntax error"));
#else
# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
yyssp, yytoken)
- {
- char const *yymsgp = YY_("syntax error");
- int yysyntax_error_status;
- yysyntax_error_status = YYSYNTAX_ERROR;
- if (yysyntax_error_status == 0)
- yymsgp = yymsg;
- else if (yysyntax_error_status == 1) {
- if (yymsg != yymsgbuf)
- YYSTACK_FREE (yymsg);
- yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
- if (!yymsg) {
- yymsg = yymsgbuf;
- yymsg_alloc = sizeof yymsgbuf;
- yysyntax_error_status = 2;
- } else {
- yysyntax_error_status = YYSYNTAX_ERROR;
- yymsgp = yymsg;
- }
- }
- yyerror (ctx, scanner, yymsgp);
- if (yysyntax_error_status == 2)
- goto yyexhaustedlab;
- }
+ {
+ char const *yymsgp = YY_("syntax error");
+ int yysyntax_error_status;
+ yysyntax_error_status = YYSYNTAX_ERROR;
+ if (yysyntax_error_status == 0)
+ yymsgp = yymsg;
+ else if (yysyntax_error_status == 1)
+ {
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+ yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
+ if (!yymsg)
+ {
+ yymsg = yymsgbuf;
+ yymsg_alloc = sizeof yymsgbuf;
+ yysyntax_error_status = 2;
+ }
+ else
+ {
+ yysyntax_error_status = YYSYNTAX_ERROR;
+ yymsgp = yymsg;
+ }
+ }
+ yyerror (ctx, scanner, yymsgp);
+ if (yysyntax_error_status == 2)
+ goto yyexhaustedlab;
+ }
# undef YYSYNTAX_ERROR
#endif
- }
+ }
- if (yyerrstatus == 3) {
- /* If just tried and failed to reuse lookahead token after an
- error, discard it. */
+ if (yyerrstatus == 3)
+ {
+ /* If just tried and failed to reuse lookahead token after an
+ error, discard it. */
- if (yychar <= YYEOF) {
- /* Return failure if at end of input. */
- if (yychar == YYEOF)
- YYABORT;
- } else {
- yydestruct ("Error: discarding",
- yytoken, &yylval, ctx, scanner);
- yychar = YYEMPTY;
- }
+ if (yychar <= YYEOF)
+ {
+ /* Return failure if at end of input. */
+ if (yychar == YYEOF)
+ YYABORT;
+ }
+ else
+ {
+ yydestruct ("Error: discarding",
+ yytoken, &yylval, ctx, scanner);
+ yychar = YYEMPTY;
}
+ }
- /* Else will try to reuse lookahead token after shifting the error
- token. */
- goto yyerrlab1;
+ /* Else will try to reuse lookahead token after shifting the error
+ token. */
+ goto yyerrlab1;
- /*---------------------------------------------------.
- | yyerrorlab -- error raised explicitly by YYERROR. |
- `---------------------------------------------------*/
+/*---------------------------------------------------.
+| yyerrorlab -- error raised explicitly by YYERROR. |
+`---------------------------------------------------*/
yyerrorlab:
- /* Pacify compilers like GCC when the user code never invokes
- YYERROR and the label yyerrorlab therefore never appears in user
- code. */
- if (/*CONSTCOND*/ 0)
- goto yyerrorlab;
+ /* Pacify compilers like GCC when the user code never invokes
+ YYERROR and the label yyerrorlab therefore never appears in user
+ code. */
+ if (/*CONSTCOND*/ 0)
+ goto yyerrorlab;
- /* Do not reclaim the symbols of the rule which action triggered
- this YYERROR. */
- YYPOPSTACK (yylen);
- yylen = 0;
- YY_STACK_PRINT (yyss, yyssp);
- yystate = *yyssp;
- goto yyerrlab1;
+ /* Do not reclaim the symbols of the rule which action triggered
+ this YYERROR. */
+ YYPOPSTACK (yylen);
+ yylen = 0;
+ YY_STACK_PRINT (yyss, yyssp);
+ yystate = *yyssp;
+ goto yyerrlab1;
- /*-------------------------------------------------------------.
- | yyerrlab1 -- common code for both syntax error and YYERROR. |
- `-------------------------------------------------------------*/
+/*-------------------------------------------------------------.
+| yyerrlab1 -- common code for both syntax error and YYERROR. |
+`-------------------------------------------------------------*/
yyerrlab1:
- yyerrstatus = 3; /* Each real token shifted decrements this. */
-
- for (;;) {
- yyn = yypact[yystate];
- if (!yypact_value_is_default (yyn)) {
- yyn += YYTERROR;
- if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) {
- yyn = yytable[yyn];
- if (0 < yyn)
- break;
- }
- }
-
- /* Pop the current state because it cannot handle the error token. */
- if (yyssp == yyss)
- YYABORT;
-
-
- yydestruct ("Error: popping",
- yystos[yystate], yyvsp, ctx, scanner);
- YYPOPSTACK (1);
- yystate = *yyssp;
- YY_STACK_PRINT (yyss, yyssp);
+ yyerrstatus = 3; /* Each real token shifted decrements this. */
+
+ for (;;)
+ {
+ yyn = yypact[yystate];
+ if (!yypact_value_is_default (yyn))
+ {
+ yyn += YYTERROR;
+ if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
+ {
+ yyn = yytable[yyn];
+ if (0 < yyn)
+ break;
+ }
}
- YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
- *++yyvsp = yylval;
- YY_IGNORE_MAYBE_UNINITIALIZED_END
+ /* Pop the current state because it cannot handle the error token. */
+ if (yyssp == yyss)
+ YYABORT;
- /* Shift the error token. */
- YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
+ yydestruct ("Error: popping",
+ yystos[yystate], yyvsp, ctx, scanner);
+ YYPOPSTACK (1);
+ yystate = *yyssp;
+ YY_STACK_PRINT (yyss, yyssp);
+ }
- yystate = yyn;
- goto yynewstate;
+ YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
+ *++yyvsp = yylval;
+ YY_IGNORE_MAYBE_UNINITIALIZED_END
- /*-------------------------------------.
- | yyacceptlab -- YYACCEPT comes here. |
- `-------------------------------------*/
+ /* Shift the error token. */
+ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
+
+ yystate = yyn;
+ goto yynewstate;
+
+
+/*-------------------------------------.
+| yyacceptlab -- YYACCEPT comes here. |
+`-------------------------------------*/
yyacceptlab:
- yyresult = 0;
- goto yyreturn;
+ yyresult = 0;
+ goto yyreturn;
- /*-----------------------------------.
- | yyabortlab -- YYABORT comes here. |
- `-----------------------------------*/
+/*-----------------------------------.
+| yyabortlab -- YYABORT comes here. |
+`-----------------------------------*/
yyabortlab:
- yyresult = 1;
- goto yyreturn;
+ yyresult = 1;
+ goto yyreturn;
#if !defined yyoverflow || YYERROR_VERBOSE
- /*-------------------------------------------------.
- | yyexhaustedlab -- memory exhaustion comes here. |
- `-------------------------------------------------*/
+/*-------------------------------------------------.
+| yyexhaustedlab -- memory exhaustion comes here. |
+`-------------------------------------------------*/
yyexhaustedlab:
- yyerror (ctx, scanner, YY_("memory exhausted"));
- yyresult = 2;
- /* Fall through. */
+ yyerror (ctx, scanner, YY_("memory exhausted"));
+ yyresult = 2;
+ /* Fall through. */
#endif
yyreturn:
- if (yychar != YYEMPTY) {
- /* Make sure we have latest lookahead translation. See comments at
- user semantic actions for why this is necessary. */
- yytoken = YYTRANSLATE (yychar);
- yydestruct ("Cleanup: discarding lookahead",
- yytoken, &yylval, ctx, scanner);
- }
- /* Do not reclaim the symbols of the rule which action triggered
- this YYABORT or YYACCEPT. */
- YYPOPSTACK (yylen);
- YY_STACK_PRINT (yyss, yyssp);
- while (yyssp != yyss) {
- yydestruct ("Cleanup: popping",
- yystos[*yyssp], yyvsp, ctx, scanner);
- YYPOPSTACK (1);
- }
+ if (yychar != YYEMPTY)
+ {
+ /* Make sure we have latest lookahead translation. See comments at
+ user semantic actions for why this is necessary. */
+ yytoken = YYTRANSLATE (yychar);
+ yydestruct ("Cleanup: discarding lookahead",
+ yytoken, &yylval, ctx, scanner);
+ }
+ /* Do not reclaim the symbols of the rule which action triggered
+ this YYABORT or YYACCEPT. */
+ YYPOPSTACK (yylen);
+ YY_STACK_PRINT (yyss, yyssp);
+ while (yyssp != yyss)
+ {
+ yydestruct ("Cleanup: popping",
+ yystos[*yyssp], yyvsp, ctx, scanner);
+ YYPOPSTACK (1);
+ }
#ifndef yyoverflow
- if (yyss != yyssa)
- YYSTACK_FREE (yyss);
+ if (yyss != yyssa)
+ YYSTACK_FREE (yyss);
#endif
#if YYERROR_VERBOSE
- if (yymsg != yymsgbuf)
- YYSTACK_FREE (yymsg);
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
#endif
- /* Make sure YYID is used. */
- return YYID (yyresult);
+ /* Make sure YYID is used. */
+ return YYID (yyresult);
}
diff --git a/src/uscxml/plugins/datamodel/promela/parser/promela.tab.hpp b/src/uscxml/plugins/datamodel/promela/parser/promela.tab.hpp
index 4d2aac2..b8381cf 100644
--- a/src/uscxml/plugins/datamodel/promela/parser/promela.tab.hpp
+++ b/src/uscxml/plugins/datamodel/promela/parser/promela.tab.hpp
@@ -54,78 +54,78 @@ extern int promela_debug;
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum promela_tokentype {
- VAR_ARRAY = 258,
- VARLIST = 259,
- DECL = 260,
- DECLLIST = 261,
- STMNT = 262,
- COLON = 263,
- EXPR = 264,
- NAMELIST = 265,
- ASSERT = 266,
- PRINT = 267,
- PRINTM = 268,
- LEN = 269,
- STRING = 270,
- TYPEDEF = 271,
- MTYPE = 272,
- INLINE = 273,
- RETURN = 274,
- LABEL = 275,
- OF = 276,
- GOTO = 277,
- BREAK = 278,
- ELSE = 279,
- SEMI = 280,
- ARROW = 281,
- IF = 282,
- FI = 283,
- DO = 284,
- OD = 285,
- FOR = 286,
- SELECT = 287,
- IN = 288,
- SEP = 289,
- DOTDOT = 290,
- HIDDEN = 291,
- SHOW = 292,
- ISLOCAL = 293,
- CONST = 294,
- TYPE = 295,
- XU = 296,
- NAME = 297,
- UNAME = 298,
- PNAME = 299,
- INAME = 300,
- CLAIM = 301,
- TRACE = 302,
- INIT = 303,
- LTL = 304,
- COMMA = 305,
- ASGN = 306,
- AND = 307,
- OR = 308,
- BITAND = 309,
- BITXOR = 310,
- BITOR = 311,
- NE = 312,
- EQ = 313,
- LE = 314,
- GE = 315,
- LT = 316,
- GT = 317,
- RSHIFT = 318,
- LSHIFT = 319,
- MINUS = 320,
- PLUS = 321,
- MODULO = 322,
- DIVIDE = 323,
- TIMES = 324,
- DECR = 325,
- INCR = 326,
- COMPL = 327,
- NEG = 328,
- DOT = 329
+ PML_VAR_ARRAY = 258,
+ PML_VARLIST = 259,
+ PML_DECL = 260,
+ PML_DECLLIST = 261,
+ PML_STMNT = 262,
+ PML_COLON = 263,
+ PML_EXPR = 264,
+ PML_NAMELIST = 265,
+ PML_ASSERT = 266,
+ PML_PRINT = 267,
+ PML_PRINTM = 268,
+ PML_LEN = 269,
+ PML_STRING = 270,
+ PML_TYPEDEF = 271,
+ PML_MTYPE = 272,
+ PML_INLINE = 273,
+ PML_RETURN = 274,
+ PML_LABEL = 275,
+ PML_OF = 276,
+ PML_GOTO = 277,
+ PML_BREAK = 278,
+ PML_ELSE = 279,
+ PML_SEMI = 280,
+ PML_ARROW = 281,
+ PML_IF = 282,
+ PML_FI = 283,
+ PML_DO = 284,
+ PML_OD = 285,
+ PML_FOR = 286,
+ PML_SELECT = 287,
+ PML_IN = 288,
+ PML_SEP = 289,
+ PML_DOTDOT = 290,
+ PML_HIDDEN = 291,
+ PML_SHOW = 292,
+ PML_ISLOCAL = 293,
+ PML_CONST = 294,
+ PML_TYPE = 295,
+ PML_XU = 296,
+ PML_NAME = 297,
+ PML_UNAME = 298,
+ PML_PNAME = 299,
+ PML_INAME = 300,
+ PML_CLAIM = 301,
+ PML_TRACE = 302,
+ PML_INIT = 303,
+ PML_LTL = 304,
+ PML_COMMA = 305,
+ PML_ASGN = 306,
+ PML_AND = 307,
+ PML_OR = 308,
+ PML_BITAND = 309,
+ PML_BITXOR = 310,
+ PML_BITOR = 311,
+ PML_NE = 312,
+ PML_EQ = 313,
+ PML_LE = 314,
+ PML_GE = 315,
+ PML_LT = 316,
+ PML_GT = 317,
+ PML_RSHIFT = 318,
+ PML_LSHIFT = 319,
+ PML_MINUS = 320,
+ PML_PLUS = 321,
+ PML_MODULO = 322,
+ PML_DIVIDE = 323,
+ PML_TIMES = 324,
+ PML_DECR = 325,
+ PML_INCR = 326,
+ PML_COMPL = 327,
+ PML_NEG = 328,
+ PML_DOT = 329
};
#endif
diff --git a/src/uscxml/plugins/datamodel/promela/parser/promela.ypp b/src/uscxml/plugins/datamodel/promela/parser/promela.ypp
index 5d45c71..cf8deea 100644
--- a/src/uscxml/plugins/datamodel/promela/parser/promela.ypp
+++ b/src/uscxml/plugins/datamodel/promela/parser/promela.ypp
@@ -46,34 +46,34 @@ using namespace uscxml;
%type <node> expr pfld varref decl_lst stmnt_lst vardcl ivar var_list one_decl prargs
%type <node> stmnt Stmnt const_expr nlst vis arg
-%token VAR_ARRAY VARLIST DECL DECLLIST STMNT COLON EXPR NAMELIST
+%token PML_VAR_ARRAY PML_VARLIST PML_DECL PML_DECLLIST PML_STMNT PML_COLON PML_EXPR PML_NAMELIST
%token '(' ')'
%token '[' ']'
%token '{' '}'
-%token ASSERT PRINT PRINTM
-%token <value> LEN STRING
-%token TYPEDEF MTYPE INLINE RETURN LABEL OF
-%token GOTO BREAK ELSE SEMI ARROW
-%token IF FI DO OD FOR SELECT IN SEP DOTDOT
-%token HIDDEN SHOW ISLOCAL
-%token <value> CONST TYPE XU /* val */
-%token <value> NAME UNAME PNAME INAME /* sym */
-%token CLAIM TRACE INIT LTL /* sym */
-%token COMMA
-
-%right ASGN
-%left OR AND
-%left BITOR BITXOR BITAND
-%left EQ NE
-%left GT LT GE LE
-%left LSHIFT RSHIFT
-%left PLUS MINUS
-%left TIMES DIVIDE MODULO
-%left INCR DECR
-%left COMPL
-%right NEG
-%left DOT
+%token PML_ASSERT PML_PRINT PML_PRINTM
+%token <value> PML_LEN PML_STRING
+%token PML_TYPEDEF PML_MTYPE PML_INLINE PML_RETURN PML_LABEL PML_OF
+%token PML_GOTO PML_BREAK PML_ELSE PML_SEMI PML_ARROW
+%token PML_IF PML_FI PML_DO PML_OD PML_FOR PML_SELECT PML_IN PML_SEP PML_DOTDOT
+%token PML_HIDDEN PML_SHOW PML_ISLOCAL
+%token <value> PML_CONST PML_TYPE PML_XU /* val */
+%token <value> PML_NAME PML_UNAME PML_PNAME PML_INAME /* sym */
+%token PML_CLAIM PML_TRACE PML_INIT PML_LTL /* sym */
+%token PML_COMMA
+
+%right PML_ASGN
+%left PML_OR PML_AND
+%left PML_BITOR PML_BITXOR PML_BITAND
+%left PML_EQ PML_NE
+%left PML_GT PML_LT PML_GE PML_LE
+%left PML_LSHIFT PML_RSHIFT
+%left PML_PLUS PML_MINUS
+%left PML_TIMES PML_DIVIDE PML_MODULO
+%left PML_INCR PML_DECR
+%left PML_COMPL
+%right PML_NEG
+%left PML_DOT
%%
@@ -98,8 +98,8 @@ program :
varref : cmpnd {}
;
-pfld : NAME { $$ = ctx->value(NAME, $1); free($1); }
- | NAME '[' expr ']' { $$ = ctx->node(VAR_ARRAY, 2, ctx->value(NAME, $1), $3); free($1); }
+pfld : PML_NAME { $$ = ctx->value(PML_NAME, $1); free($1); }
+ | PML_NAME '[' expr ']' { $$ = ctx->node(PML_VAR_ARRAY, 2, ctx->value(PML_NAME, $1), $3); free($1); }
;
cmpnd : pfld {}
@@ -107,60 +107,60 @@ cmpnd : pfld {}
;
sfld : /* empty */ {}
- | DOT cmpnd %prec DOT {}
+ | PML_DOT cmpnd %prec PML_DOT {}
;
/*
-expr_lst: expr { $$ = ctx->node(EXPR, 1, $1); }
- | expr SEMI { $$ = ctx->node(EXPR, 1, $1); }
- | expr SEMI expr_lst { $$ = ctx->node(EXPR, 2, $1, $3); }
+expr_lst: expr { $$ = ctx->node(PML_EXPR, 1, $1); }
+ | expr PML_SEMI { $$ = ctx->node(PML_EXPR, 1, $1); }
+ | expr PML_SEMI expr_lst { $$ = ctx->node(PML_EXPR, 2, $1, $3); }
;
*/
expr : '(' expr ')' { $$ = $2; }
- | expr PLUS expr { $$ = ctx->node(PLUS, 2, $1, $3); }
- | expr MINUS expr { $$ = ctx->node(MINUS, 2, $1, $3); }
- | expr TIMES expr { $$ = ctx->node(TIMES, 2, $1, $3); }
- | expr DIVIDE expr { $$ = ctx->node(DIVIDE, 2, $1, $3); }
- | expr MODULO expr { $$ = ctx->node(MODULO, 2, $1, $3); }
- | expr BITAND expr { $$ = ctx->node(BITAND, 2, $1, $3); }
- | expr BITXOR expr { $$ = ctx->node(BITXOR, 2, $1, $3); }
- | expr BITOR expr { $$ = ctx->node(BITOR, 2, $1, $3); }
- | expr GT expr { $$ = ctx->node(GT, 2, $1, $3); }
- | expr LT expr { $$ = ctx->node(LT, 2, $1, $3); }
- | expr GE expr { $$ = ctx->node(GE, 2, $1, $3); }
- | expr LE expr { $$ = ctx->node(LE, 2, $1, $3); }
- | expr EQ expr { $$ = ctx->node(EQ, 2, $1, $3); }
- | expr NE expr { $$ = ctx->node(NE, 2, $1, $3); }
- | expr AND expr { $$ = ctx->node(AND, 2, $1, $3); }
- | expr OR expr { $$ = ctx->node(OR, 2, $1, $3); }
- | expr LSHIFT expr { $$ = ctx->node(LSHIFT, 2, $1, $3); }
- | expr RSHIFT expr { $$ = ctx->node(RSHIFT, 2, $1, $3); }
- | NEG expr { $$ = ctx->node(NEG, 1, $2); }
- | MINUS expr %prec MINUS { $$ = ctx->node(MINUS, 1, $2); }
-
- | LEN '(' varref ')' { $$ = ctx->node(LEN, 1, $3); }
+ | expr PML_PLUS expr { $$ = ctx->node(PML_PLUS, 2, $1, $3); }
+ | expr PML_MINUS expr { $$ = ctx->node(PML_MINUS, 2, $1, $3); }
+ | expr PML_TIMES expr { $$ = ctx->node(PML_TIMES, 2, $1, $3); }
+ | expr PML_DIVIDE expr { $$ = ctx->node(PML_DIVIDE, 2, $1, $3); }
+ | expr PML_MODULO expr { $$ = ctx->node(PML_MODULO, 2, $1, $3); }
+ | expr PML_BITAND expr { $$ = ctx->node(PML_BITAND, 2, $1, $3); }
+ | expr PML_BITXOR expr { $$ = ctx->node(PML_BITXOR, 2, $1, $3); }
+ | expr PML_BITOR expr { $$ = ctx->node(PML_BITOR, 2, $1, $3); }
+ | expr PML_GT expr { $$ = ctx->node(PML_GT, 2, $1, $3); }
+ | expr PML_LT expr { $$ = ctx->node(PML_LT, 2, $1, $3); }
+ | expr PML_GE expr { $$ = ctx->node(PML_GE, 2, $1, $3); }
+ | expr PML_LE expr { $$ = ctx->node(PML_LE, 2, $1, $3); }
+ | expr PML_EQ expr { $$ = ctx->node(PML_EQ, 2, $1, $3); }
+ | expr PML_NE expr { $$ = ctx->node(PML_NE, 2, $1, $3); }
+ | expr PML_AND expr { $$ = ctx->node(PML_AND, 2, $1, $3); }
+ | expr PML_OR expr { $$ = ctx->node(PML_OR, 2, $1, $3); }
+ | expr PML_LSHIFT expr { $$ = ctx->node(PML_LSHIFT, 2, $1, $3); }
+ | expr PML_RSHIFT expr { $$ = ctx->node(PML_RSHIFT, 2, $1, $3); }
+ | PML_NEG expr { $$ = ctx->node(PML_NEG, 1, $2); }
+ | PML_MINUS expr %prec PML_MINUS { $$ = ctx->node(PML_MINUS, 1, $2); }
+
+ | PML_LEN '(' varref ')' { $$ = ctx->node(PML_LEN, 1, $3); }
| varref { }
- | CONST { $$ = ctx->value(CONST, $1); free($1); }
+ | PML_CONST { $$ = ctx->value(PML_CONST, $1); free($1); }
;
-vis : /* empty */ { $$ = ctx->node(SHOW, 0); }
- | HIDDEN { $$ = ctx->node(HIDDEN, 0); }
- | SHOW { $$ = ctx->node(SHOW, 0); }
- | ISLOCAL { $$ = ctx->node(ISLOCAL, 0); }
+vis : /* empty */ { $$ = ctx->node(PML_SHOW, 0); }
+ | PML_HIDDEN { $$ = ctx->node(PML_HIDDEN, 0); }
+ | PML_SHOW { $$ = ctx->node(PML_SHOW, 0); }
+ | PML_ISLOCAL { $$ = ctx->node(PML_ISLOCAL, 0); }
;
-one_decl: vis TYPE var_list { $$ = ctx->node(DECL, 3, $1, ctx->value(TYPE, $2), $3); free($2); }
- | vis UNAME var_list { $$ = ctx->node(UNAME, 2, $1, $3); }
- | vis TYPE ASGN '{' nlst '}' { $$ = ctx->node(DECL, 3, $1, ctx->value(TYPE, $2), $5); free($2); }
+one_decl: vis PML_TYPE var_list { $$ = ctx->node(PML_DECL, 3, $1, ctx->value(PML_TYPE, $2), $3); free($2); }
+ | vis PML_UNAME var_list { $$ = ctx->node(PML_UNAME, 2, $1, $3); }
+ | vis PML_TYPE PML_ASGN '{' nlst '}' { $$ = ctx->node(PML_DECL, 3, $1, ctx->value(PML_TYPE, $2), $5); free($2); }
;
decl_lst: one_decl { $$ = $1; }
- | one_decl SEMI { $$ = $1; }
- | one_decl SEMI decl_lst {
- $$ = ctx->node(DECLLIST, 1, $1);
- if($3->type == DECLLIST) {
+ | one_decl PML_SEMI { $$ = $1; }
+ | one_decl PML_SEMI decl_lst {
+ $$ = ctx->node(PML_DECLLIST, 1, $1);
+ if($3->type == PML_DECLLIST) {
$$->merge($3); delete $3;
} else {
$$->push($3);
@@ -168,59 +168,59 @@ decl_lst: one_decl { $$ = $1; }
}
;
-var_list: ivar { $$ = ctx->node(VARLIST, 1, $1); }
- | ivar COMMA var_list { $$ = ctx->node(VARLIST, 1, $1); $$->merge($3); delete $3; }
+var_list: ivar { $$ = ctx->node(PML_VARLIST, 1, $1); }
+ | ivar PML_COMMA var_list { $$ = ctx->node(PML_VARLIST, 1, $1); $$->merge($3); delete $3; }
;
ivar : vardcl { $$ = $1; }
- | vardcl ASGN expr { $$ = ctx->node(ASGN, 2, $1, $3); }
+ | vardcl PML_ASGN expr { $$ = ctx->node(PML_ASGN, 2, $1, $3); }
;
-vardcl : NAME { $$ = ctx->value(NAME, $1); free($1); }
- | NAME COLON CONST { $$ = ctx->node(COLON, 2, ctx->value(NAME, $1), ctx->value(CONST, $3)); free($1); free($3); }
- | NAME '[' const_expr ']' { $$ = ctx->node(VAR_ARRAY, 2, ctx->value(NAME, $1), $3); free($1); }
+vardcl : PML_NAME { $$ = ctx->value(PML_NAME, $1); free($1); }
+ | PML_NAME PML_COLON PML_CONST { $$ = ctx->node(PML_COLON, 2, ctx->value(PML_NAME, $1), ctx->value(PML_CONST, $3)); free($1); free($3); }
+ | PML_NAME '[' const_expr ']' { $$ = ctx->node(PML_VAR_ARRAY, 2, ctx->value(PML_NAME, $1), $3); free($1); }
;
-const_expr: CONST { $$ = ctx->value(CONST, $1); free($1); }
- | MINUS const_expr %prec MINUS { $$ = ctx->node(MINUS, 1, $2); }
+const_expr: PML_CONST { $$ = ctx->value(PML_CONST, $1); free($1); }
+ | PML_MINUS const_expr %prec PML_MINUS { $$ = ctx->node(PML_MINUS, 1, $2); }
| '(' const_expr ')' { $$ = $2; }
- | const_expr PLUS const_expr { $$ = ctx->node(PLUS, 2, $1, $3); }
- | const_expr MINUS const_expr { $$ = ctx->node(MINUS, 2, $1, $3); }
- | const_expr TIMES const_expr { $$ = ctx->node(TIMES, 2, $1, $3); }
- | const_expr DIVIDE const_expr { $$ = ctx->node(DIVIDE, 2, $1, $3); }
- | const_expr MODULO const_expr { $$ = ctx->node(MODULO, 2, $1, $3); }
- ;
-
-nlst : NAME { $$ = ctx->value(NAME, $1); free($1); }
- | nlst NAME {
- if ($1->type == NAME) {
- $$ = ctx->node(NAMELIST, 1, $1);
- $$->push(ctx->value(NAME, $2));
+ | const_expr PML_PLUS const_expr { $$ = ctx->node(PML_PLUS, 2, $1, $3); }
+ | const_expr PML_MINUS const_expr { $$ = ctx->node(PML_MINUS, 2, $1, $3); }
+ | const_expr PML_TIMES const_expr { $$ = ctx->node(PML_TIMES, 2, $1, $3); }
+ | const_expr PML_DIVIDE const_expr { $$ = ctx->node(PML_DIVIDE, 2, $1, $3); }
+ | const_expr PML_MODULO const_expr { $$ = ctx->node(PML_MODULO, 2, $1, $3); }
+ ;
+
+nlst : PML_NAME { $$ = ctx->value(PML_NAME, $1); free($1); }
+ | nlst PML_NAME {
+ if ($1->type == PML_NAME) {
+ $$ = ctx->node(PML_NAMELIST, 1, $1);
+ $$->push(ctx->value(PML_NAME, $2));
} else {
- $1->push(ctx->value(NAME, $2));
+ $1->push(ctx->value(PML_NAME, $2));
}
free($2);
}
- | nlst COMMA { $$ = $1; }
+ | nlst PML_COMMA { $$ = $1; }
;
stmnt_lst: stmnt { $$ = $1; }
- | stmnt SEMI { $$ = $1; }
- | stmnt SEMI stmnt_lst { $$ = ctx->node(STMNT, 2, $1, $3); }
+ | stmnt PML_SEMI { $$ = $1; }
+ | stmnt PML_SEMI stmnt_lst { $$ = ctx->node(PML_STMNT, 2, $1, $3); }
;
stmnt : Stmnt { $$ = $1; }
;
-Stmnt : varref ASGN expr { $$ = ctx->node(ASGN, 2, $1, $3); }
- | varref INCR { $$ = ctx->node(INCR, 1, $1); }
- | varref DECR { $$ = ctx->node(DECR, 1, $1); }
- | PRINT '(' STRING prargs ')' { $$ = ctx->node(PRINT, 2, ctx->value(STRING, $3), $4); free($3); }
- | PRINTM '(' varref ')' { $$ = ctx->node(PRINTM, 1, $3); }
- | PRINTM '(' CONST ')' { $$ = ctx->node(PRINTM, 1, ctx->value(CONST, $3)); free($3); }
- | ASSERT expr { }
+Stmnt : varref PML_ASGN expr { $$ = ctx->node(PML_ASGN, 2, $1, $3); }
+ | varref PML_INCR { $$ = ctx->node(PML_INCR, 1, $1); }
+ | varref PML_DECR { $$ = ctx->node(PML_DECR, 1, $1); }
+ | PML_PRINT '(' PML_STRING prargs ')' { $$ = ctx->node(PML_PRINT, 2, ctx->value(PML_STRING, $3), $4); free($3); }
+ | PML_PRINTM '(' varref ')' { $$ = ctx->node(PML_PRINTM, 1, $3); }
+ | PML_PRINTM '(' PML_CONST ')' { $$ = ctx->node(PML_PRINTM, 1, ctx->value(PML_CONST, $3)); free($3); }
+ | PML_ASSERT expr { }
| expr { $$ = $1; }
- | varref ASGN INAME { } '(' args ')' Stmnt { }
+ | varref PML_ASGN PML_INAME { } '(' args ')' Stmnt { }
;
args : /* empty */ { }
@@ -228,11 +228,11 @@ args : /* empty */ { }
;
prargs : /* empty */ { $$ = ctx->value(0, ""); }
- | COMMA arg { $$ = $2; }
+ | PML_COMMA arg { $$ = $2; }
;
arg : expr { $$ = $1; }
- | expr COMMA arg { $$ = ctx->node(0, 2, $1, $3); }
+ | expr PML_COMMA arg { $$ = ctx->node(0, 2, $1, $3); }
;
diff --git a/src/uscxml/plugins/invoker/CMakeLists.txt b/src/uscxml/plugins/invoker/CMakeLists.txt
index 9127155..8ae4516 100644
--- a/src/uscxml/plugins/invoker/CMakeLists.txt
+++ b/src/uscxml/plugins/invoker/CMakeLists.txt
@@ -274,12 +274,18 @@ endif()
# UMUNDO invoker
-if (UMUNDO_FOUND)
+if (UMUNDO_FOUND AND PROTOBUF_FOUND)
set(USCXML_INVOKERS "umundo ${USCXML_INVOKERS}")
- file(GLOB_RECURSE UMUNDO_INVOKER
- umundo/*.cpp
- umundo/*.cc
- umundo/*.h)
+ set(UMUNDO_INVOKER
+ ${CMAKE_CURRENT_SOURCE_DIR}/umundo/UmundoInvoker.cpp
+ ${CMAKE_CURRENT_SOURCE_DIR}/umundo/UmundoInvoker.h
+ )
+ if (PROTOBUF_FOUND)
+ list(APPEND UMUNDO_INVOKER
+ ${CMAKE_CURRENT_SOURCE_DIR}/umundo/JSON.pb.cc
+ ${CMAKE_CURRENT_SOURCE_DIR}/umundo/JSON.pb.h
+ )
+ endif()
if (BUILD_AS_PLUGINS)
source_group("" FILES ${UMUNDO_INVOKER})
# message(FATAL_ERROR "UMUNDO_LIBRARIES: ${UMUNDO_LIBRARIES}")
@@ -288,9 +294,12 @@ if (UMUNDO_FOUND)
${UMUNDO_INVOKER}
"../Plugins.cpp")
target_link_libraries(invoker_umundo uscxml
- optimized ${PROTOBUF_LIBRARY}
- debug ${PROTOBUF_LIBRARY_DEBUG}
- ${UMUNDO_LIBRARIES})
+ ${UMUNDO_LIBRARIES})
+ if (PROTOBUF_FOUND)
+ target_link_libraries(invoker_umundo
+ optimized ${PROTOBUF_LIBRARY}
+ debug ${PROTOBUF_LIBRARY_DEBUG})
+ endif()
set_target_properties(invoker_umundo PROPERTIES FOLDER "Plugin Invoker")
else()
list (APPEND USCXML_FILES ${UMUNDO_INVOKER})
diff --git a/src/uscxml/plugins/invoker/miles/MilesSessionInvoker.cpp b/src/uscxml/plugins/invoker/miles/MilesSessionInvoker.cpp
index a004a66..72ac06c 100644
--- a/src/uscxml/plugins/invoker/miles/MilesSessionInvoker.cpp
+++ b/src/uscxml/plugins/invoker/miles/MilesSessionInvoker.cpp
@@ -1034,7 +1034,7 @@ int MilesSessionInvoker::video_transmitter(struct miles_video_grabber_context *g
}
gettimeofday(&now, 0);
tbf = 100000 / grabber->frame_rate;
- if (elapsed_time(&last_time, &now) < tbf)
+ if (miles_elapsed_time(&last_time, &now) < tbf)
return 0;
last_time = now;
diff --git a/src/uscxml/plugins/invoker/miles/MilesSessionInvoker.h b/src/uscxml/plugins/invoker/miles/MilesSessionInvoker.h
index 63d3011..84bf280 100644
--- a/src/uscxml/plugins/invoker/miles/MilesSessionInvoker.h
+++ b/src/uscxml/plugins/invoker/miles/MilesSessionInvoker.h
@@ -34,7 +34,7 @@ extern "C" {
#include "miles/session.h"
#include "miles/image.h"
#include "miles/list.h"
- long elapsed_time(struct timeval *before, struct timeval *after);
+ long miles_elapsed_time(struct timeval *before, struct timeval *after);
}
#ifdef BUILD_AS_PLUGINS
#include "uscxml/plugins/Plugins.h"
diff --git a/src/uscxml/transform/ChartToFSM.cpp b/src/uscxml/transform/ChartToFSM.cpp
index 7f38397..49519dc 100644
--- a/src/uscxml/transform/ChartToFSM.cpp
+++ b/src/uscxml/transform/ChartToFSM.cpp
@@ -26,6 +26,7 @@
#include <math.h>
#include <string.h>
#include <algorithm>
+#undef max
#include <limits>
namespace uscxml {
@@ -499,7 +500,7 @@ void FlatteningInterpreter::explode() {
int order = strTo<int>(ATTR(transitions[i], "order"));
if (order < lowestOrder)
lowestOrder = order;
- prioPerLevel += pow(maxOrder, maxOrder - order);
+ prioPerLevel += pow(static_cast<double>(maxOrder), maxOrder - order);
}
transition->nrElemPerLevel.push_back(nrDepth);
transition->firstElemPerLevel.push_back(lowestOrder);