author | mjsousa <msousa@fe.up.pt> |
Wed, 09 May 2012 21:46:21 +0100 | |
changeset 542 | 8f5d9916820d |
parent 522 | f9cff11ae622 |
child 537 | 199bdfe36166 |
child 547 | dab341e80664 |
permissions | -rwxr-xr-x |
70 | 1 |
/* |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2 |
* matiec - a compiler for the programming languages defined in IEC 61131-3 |
70 | 3 |
* |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
4 |
* Copyright (C) 2003-2011 Mario de Sousa (msousa@fe.up.pt) |
279
c0453b7f99df
Re-generated std lib related code, with updated headers, updated all forgotten headers
Edouard Tisserant
parents:
272
diff
changeset
|
5 |
* Copyright (C) 2007-2011 Laurent Bessard and Edouard Tisserant |
70 | 6 |
* |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
7 |
* This program is free software: you can redistribute it and/or modify |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
8 |
* it under the terms of the GNU General Public License as published by |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
9 |
* the Free Software Foundation, either version 3 of the License, or |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
10 |
* (at your option) any later version. |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
11 |
* |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
12 |
* This program is distributed in the hope that it will be useful, |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
15 |
* GNU General Public License for more details. |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
16 |
* |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
18 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
19 |
* |
70 | 20 |
* |
21 |
* This code is made available on the understanding that it will not be |
|
22 |
* used in safety-critical situations without a full and competent review. |
|
23 |
*/ |
|
24 |
||
25 |
#include <string> |
|
26 |
#include <iostream> |
|
27 |
#include <sstream> |
|
28 |
#include <typeinfo> |
|
111 | 29 |
#include <list> |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
30 |
#include <map> |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
31 |
#include <sstream> |
139
668a54686827
added missing includes on some platform (gentoo/gcc-4.3.1)
etisserant
parents:
138
diff
changeset
|
32 |
#include <strings.h> |
70 | 33 |
|
34 |
#include "../../util/symtable.hh" |
|
35 |
#include "../../util/dsymtable.hh" |
|
36 |
#include "../../absyntax/visitor.hh" |
|
181
38d6eb056260
Moving absyntax utility files out from stage4/generate_c
mario
parents:
178
diff
changeset
|
37 |
#include "../../absyntax_utils/absyntax_utils.hh" |
70 | 38 |
|
39 |
#include "../stage4.hh" |
|
40 |
||
41 |
//#define DEBUG |
|
42 |
#ifdef DEBUG |
|
43 |
#define TRACE(classname) printf("\n____%s____\n",classname); |
|
44 |
#else |
|
45 |
#define TRACE(classname) |
|
46 |
#endif |
|
47 |
||
48 |
#define ERROR error_exit(__FILE__,__LINE__) |
|
49 |
/* function defined in main.cc */ |
|
50 |
extern void error_exit(const char *file_name, int line_no); |
|
51 |
||
522
f9cff11ae622
Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents:
506
diff
changeset
|
52 |
|
f9cff11ae622
Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents:
506
diff
changeset
|
53 |
#define STAGE4_ERROR(symbol1, symbol2, ...) {stage4err("while generating C code", symbol1, symbol2, __VA_ARGS__); exit(EXIT_FAILURE);} |
f9cff11ae622
Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents:
506
diff
changeset
|
54 |
|
f9cff11ae622
Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents:
506
diff
changeset
|
55 |
|
f9cff11ae622
Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents:
506
diff
changeset
|
56 |
|
70 | 57 |
/***********************************************************************/ |
58 |
||
59 |
/* Unlike Programs and Configurations which get mapped onto C++ classes, |
|
60 |
* Function Blocks are mapped onto a C structure containing the variables, and |
|
61 |
* a C function containing the code in the FB's body. This is to allow direct allocation |
|
62 |
* of a FB variable (which is really an instance of the C data structure) to |
|
63 |
* a member of a union variable (note that classes with constructors cannot |
|
64 |
* be mebers of a union), which is done in IL when loading a FB onto IL's |
|
65 |
* default variable. |
|
66 |
* |
|
67 |
* So as not to clash the names of the C data structure and the C function, |
|
68 |
* the C structure is given a name identical to that of the FB name, whereas |
|
69 |
* the name of the function is the FB name with a constant string appended. |
|
70 |
* The value of that constant string which is appended is defined in the following |
|
71 |
* constant. |
|
72 |
* In order not to clash with any variable in the IL and ST source codem the |
|
73 |
* following constant should contain a double underscore, which is not allowed |
|
74 |
* in IL and ST. |
|
75 |
* |
|
76 |
* e.g.: FUNTION_BLOCK TEST |
|
77 |
* is mapped onto a TEST data structure, and a TEST_body__ function. |
|
78 |
*/ |
|
79 |
||
80 |
#define FB_FUNCTION_SUFFIX "_body__" |
|
81 |
||
82 |
/* Idem as body, but for initializer FB function */ |
|
83 |
#define FB_INIT_SUFFIX "_init__" |
|
84 |
||
85 |
/* Idem as body, but for run CONFIG and RESOURCE function */ |
|
86 |
#define FB_RUN_SUFFIX "_run__" |
|
87 |
||
88 |
/* The FB body function is passed as the only parameter a pointer to the FB data |
|
89 |
* structure instance. The name of this parameter is given by the following constant. |
|
90 |
* In order not to clash with any variable in the IL and ST source codem the |
|
91 |
* following constant should contain a double underscore, which is not allowed |
|
92 |
* in IL and ST. |
|
93 |
* |
|
94 |
* e.g.: the body of FUNTION_BLOCK TEST |
|
95 |
* is mapped onto the C function |
|
96 |
* TEST_body__(TEST *data__) |
|
97 |
*/ |
|
98 |
||
99 |
#define FB_FUNCTION_PARAM "data__" |
|
100 |
||
101 |
||
102 |
#define SFC_STEP_ACTION_PREFIX "__SFC_" |
|
103 |
||
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
104 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
105 |
/* Variable declaration symbol for accessor macros */ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
106 |
#define DECLARE_VAR "__DECLARE_VAR" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
107 |
#define DECLARE_GLOBAL "__DECLARE_GLOBAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
108 |
#define DECLARE_GLOBAL_LOCATION "__DECLARE_GLOBAL_LOCATION" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
109 |
#define DECLARE_GLOBAL_LOCATED "__DECLARE_GLOBAL_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
110 |
#define DECLARE_EXTERNAL "__DECLARE_EXTERNAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
111 |
#define DECLARE_LOCATED "__DECLARE_LOCATED" |
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
112 |
#define DECLARE_GLOBAL_PROTOTYPE "__DECLARE_GLOBAL_PROTOTYPE" |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
113 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
114 |
/* Variable declaration symbol for accessor macros */ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
115 |
#define INIT_VAR "__INIT_VAR" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
116 |
#define INIT_GLOBAL "__INIT_GLOBAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
117 |
#define INIT_GLOBAL_LOCATED "__INIT_GLOBAL_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
118 |
#define INIT_EXTERNAL "__INIT_EXTERNAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
119 |
#define INIT_LOCATED "__INIT_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
120 |
#define INIT_LOCATED_VALUE "__INIT_LOCATED_VALUE" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
121 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
122 |
/* Variable getter symbol for accessor macros */ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
123 |
#define GET_VAR "__GET_VAR" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
124 |
#define GET_EXTERNAL "__GET_EXTERNAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
125 |
#define GET_LOCATED "__GET_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
126 |
#define GET_VAR_BY_REF "__GET_VAR_BY_REF" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
127 |
#define GET_EXTERNAL_BY_REF "__GET_EXTERNAL_BY_REF" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
128 |
#define GET_LOCATED_BY_REF "__GET_LOCATED_BY_REF" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
129 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
130 |
/* Variable setter symbol for accessor macros */ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
131 |
#define SET_VAR "__SET_VAR" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
132 |
#define SET_EXTERNAL "__SET_EXTERNAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
133 |
#define SET_LOCATED "__SET_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
134 |
|
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
135 |
/* Variable initial value symbol for accessor macros */ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
136 |
#define INITIAL_VALUE "__INITIAL_VALUE" |
70 | 137 |
|
138 |
/* Generate a name for a temporary variable. |
|
139 |
* Each new name generated is appended a different number, |
|
140 |
* starting off from 0. |
|
141 |
* After calling reset(), the names will start off again from 0. |
|
142 |
*/ |
|
143 |
#define VAR_LEADER "__" |
|
144 |
#define TEMP_VAR VAR_LEADER "TMP_" |
|
145 |
#define SOURCE_VAR VAR_LEADER "SRC_" |
|
146 |
||
283
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
147 |
/* please see the comment before the RET_operator_c visitor for details... */ |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
148 |
#define END_LABEL VAR_LEADER "end" |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
149 |
|
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
150 |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
151 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
152 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
153 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
154 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
155 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
156 |
#include "generate_c_base.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
157 |
#include "generate_c_typedecl.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
158 |
#include "generate_c_sfcdecl.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
159 |
#include "generate_c_vardecl.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
160 |
#include "generate_c_configbody.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
161 |
#include "generate_location_list.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
162 |
#include "generate_var_list.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
163 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
164 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
165 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
166 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
167 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
168 |
|
350
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
169 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
170 |
#include "generate_c.hh" |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
171 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
172 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
173 |
/***********************************************************************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
174 |
/***********************************************************************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
175 |
/***********************************************************************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
176 |
/***********************************************************************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
177 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
178 |
/* A helper class that prints out the identifiers for function calls to overloaded functions */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
179 |
/* Given a function declaration of the function being called, it |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
180 |
* will simply print out the returned data type, |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
181 |
* followed by the data types of all input, output, and in_out parameters. |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
182 |
* for e.g.; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
183 |
* SIN( REAL) : REAL -> prints out -> REAL__REAL |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
184 |
* LEN( STRING) : INT -> prints out -> INT__STRING |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
185 |
* MUL(TIME, INT) : TIME -> prints out -> TIME__TIME__INT |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
186 |
*/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
187 |
class print_function_parameter_data_types_c: public generate_c_base_c { |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
188 |
private: |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
189 |
symbol_c *current_type; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
190 |
bool_type_name_c tmp_bool; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
191 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
192 |
void print_list(symbol_c *var_list, symbol_c *data_type) { |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
193 |
if (data_type != NULL) { |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
194 |
/* print out the data type once for every variable! */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
195 |
list_c *list = dynamic_cast<list_c *>(var_list); |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
196 |
if (list == NULL) ERROR; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
197 |
for (int i=0; i < list->n; i++) { |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
198 |
s4o.print("__"); |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
199 |
data_type->accept(*this); |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
200 |
} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
201 |
} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
202 |
} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
203 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
204 |
public: |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
205 |
print_function_parameter_data_types_c(stage4out_c *s4o_ptr): |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
206 |
generate_c_base_c(s4o_ptr) |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
207 |
{current_type = NULL;} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
208 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
209 |
/**************************************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
210 |
/* B.1.5 - Program organization units */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
211 |
/**************************************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
212 |
/***********************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
213 |
/* B 1.5.1 - Functions */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
214 |
/***********************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
215 |
/* FUNCTION derived_function_name ':' elementary_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
216 |
/* | FUNCTION derived_function_name ':' derived_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
217 |
void *visit(function_declaration_c *symbol) { |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
218 |
symbol->type_name->accept(*this); /* return type */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
219 |
symbol->var_declarations_list->accept(*this); |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
220 |
return NULL; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
221 |
} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
222 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
223 |
/* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
224 |
//void *visit(var_declarations_list_c *symbol) {// iterate through list} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
225 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
226 |
/* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
227 |
//void *visit(input_declarations_c *symbol) {// iterate through list} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
228 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
229 |
/* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
230 |
//void *visit(input_declaration_list_c *symbol) {// iterate through list} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
231 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
232 |
void *visit(edge_declaration_c *symbol) { |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
233 |
current_type = &tmp_bool; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
234 |
symbol->var1_list->accept(*this); |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
235 |
current_type = NULL; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
236 |
return NULL; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
237 |
} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
238 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
239 |
/* We do NOT print out EN and ENO parameters! */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
240 |
void *visit(en_param_declaration_c *symbol) {return NULL;} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
241 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
242 |
/* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
243 |
//void *visit(output_declarations_c *symbol) {// iterate through list} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
244 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
245 |
/* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
246 |
//void *visit(var_init_decl_list_c *symbol) {// iterate through list} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
247 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
248 |
void *visit(simple_spec_init_c *symbol) { |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
249 |
/* return the data type */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
250 |
return symbol->simple_specification; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
251 |
} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
252 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
253 |
/* currently we do not support data types defined in the declaration itself */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
254 |
/* For now, sugest the user define a TYPE .. END_TYPE */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
255 |
/* NOTE: although this class may also sometimes point to a previously_declared_subrange_type_name |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
256 |
* we don't need this for now, so it is easier to just skip it allocation |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
257 |
*/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
258 |
void *visit(subrange_spec_init_c *symbol) {return NULL;} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
259 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
260 |
/* currently we do not support data types defined in the declaration itself */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
261 |
/* For now, sugest the user define a TYPE .. END_TYPE */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
262 |
/* NOTE: although this class may also sometimes point to a previously_declared_enumerated_type_name |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
263 |
* we don't need this for now, so it is easier to just skip it allocation |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
264 |
*/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
265 |
void *visit(enumerated_spec_init_c *symbol) {return NULL;} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
266 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
267 |
/* currently we do not support data types defined in the declaration itself */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
268 |
/* For now, sugest the user define a TYPE .. END_TYPE */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
269 |
/* NOTE: although this class may also sometimes point to a previously_declared_array_type_name |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
270 |
* we don't need this for now, so it is easier to just skip it allocation |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
271 |
*/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
272 |
void *visit(array_var_init_decl_c *symbol) {return NULL;} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
273 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
274 |
/* currently we do not support data types defined in the declaration itself */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
275 |
/* For now, sugest the user define a TYPE .. END_TYPE */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
276 |
/* NOTE: although this class may also sometimes point to a previously_declared_structured_type_name |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
277 |
* we don't need this for now, so it is easier to just skip it allocation |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
278 |
*/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
279 |
void *visit(structured_var_init_decl_c *symbol) {return NULL;} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
280 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
281 |
/* We do NOT print out EN and ENO parameters! */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
282 |
void *visit(eno_param_declaration_c *symbol) {return NULL;} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
283 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
284 |
/* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
285 |
//void *visit(input_output_declarations_c *symbol) {// iterate through list} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
286 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
287 |
/* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
288 |
//void *visit(var_declaration_list_c *symbol) {iterate through list} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
289 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
290 |
void *visit(fb_name_decl_c *symbol) { |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
291 |
print_list(symbol->fb_name_list, symbol->function_block_type_name); |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
292 |
return NULL; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
293 |
} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
294 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
295 |
void *visit(var1_init_decl_c *symbol) { |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
296 |
print_list(symbol->var1_list, (symbol_c *)symbol->spec_init->accept(*this)); |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
297 |
return NULL; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
298 |
} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
299 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
300 |
/* currently we do not support data types defined in the declaration itself */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
301 |
/* For now, sugest the user define a TYPE .. END_TYPE */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
302 |
void *visit(array_var_declaration_c *symbol) {return NULL;} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
303 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
304 |
void *visit(structured_var_declaration_c *symbol) { |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
305 |
current_type = symbol->structure_type_name; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
306 |
symbol->var1_list->accept(*this); |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
307 |
current_type = NULL; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
308 |
return NULL; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
309 |
} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
310 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
311 |
/* currently we do not support data types defined in the declaration itself */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
312 |
/* For now, sugest the user define a TYPE .. END_TYPE */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
313 |
/* Note that this class is used for fixed length strings... |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
314 |
* STRING [ 42 ] |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
315 |
*/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
316 |
void *visit(single_byte_string_var_declaration_c *symbol) {return NULL;} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
317 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
318 |
/* currently we do not support data types defined in the declaration itself */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
319 |
/* For now, sugest the user define a TYPE .. END_TYPE */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
320 |
/* Note that this class is used for fixed length strings... |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
321 |
* WSTRING [ 42 ] |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
322 |
*/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
323 |
void *visit(double_byte_string_var_declaration_c *symbol) {return NULL;} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
324 |
}; |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
325 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
326 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
327 |
/***********************************************************************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
328 |
/***********************************************************************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
329 |
/***********************************************************************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
330 |
/***********************************************************************/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
331 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
330
diff
changeset
|
332 |
|
70 | 333 |
#include "generate_c_st.cc" |
334 |
#include "generate_c_il.cc" |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
335 |
#include "generate_c_inlinefcall.cc" |
70 | 336 |
|
337 |
/***********************************************************************/ |
|
338 |
/***********************************************************************/ |
|
339 |
/***********************************************************************/ |
|
340 |
/***********************************************************************/ |
|
341 |
||
342 |
#define MILLISECOND 1000000 |
|
343 |
#define SECOND 1000 * MILLISECOND |
|
344 |
||
345 |
/* A helper class that knows how to generate code for both the IL and ST languages... */ |
|
346 |
class calculate_time_c: public iterator_visitor_c { |
|
347 |
private: |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
348 |
unsigned long long time; |
70 | 349 |
float current_value; |
350 |
||
351 |
public: |
|
352 |
calculate_time_c(void){time = 0;}; |
|
353 |
||
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
354 |
unsigned long long get_time(void) {return time;}; |
70 | 355 |
|
356 |
void *get_integer_value(token_c *token) { |
|
357 |
std::string str = ""; |
|
358 |
for (unsigned int i = 0; i < strlen(token->value); i++) |
|
359 |
if (token->value[i] != '_') |
|
360 |
str += token->value[i]; |
|
361 |
current_value = atof(str.c_str()); |
|
362 |
return NULL; |
|
363 |
} |
|
364 |
||
365 |
void *get_float_value(token_c *token) { |
|
366 |
current_value = atof(token->value); |
|
367 |
return NULL; |
|
368 |
} |
|
369 |
||
370 |
/******************************/ |
|
371 |
/* B 1.2.1 - Numeric Literals */ |
|
372 |
/******************************/ |
|
373 |
||
374 |
void *visit(integer_c *symbol) {return get_integer_value(symbol);} |
|
375 |
||
376 |
/************************/ |
|
377 |
/* B 1.2.3.1 - Duration */ |
|
378 |
/************************/ |
|
379 |
||
380 |
/* SYM_REF2(duration_c, neg, interval) */ |
|
381 |
void *visit(duration_c *symbol) { |
|
382 |
if (symbol->neg != NULL) |
|
522
f9cff11ae622
Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents:
506
diff
changeset
|
383 |
{STAGE4_ERROR(symbol, symbol, "Negative TIME literals are not currently supported"); ERROR;} |
70 | 384 |
symbol->interval->accept(*this); |
385 |
return NULL; |
|
386 |
} |
|
387 |
||
388 |
/* SYM_TOKEN(fixed_point_c) */ |
|
389 |
void *visit(fixed_point_c *symbol) {return get_float_value(symbol);} |
|
390 |
||
391 |
/* SYM_REF2(days_c, days, hours) */ |
|
392 |
void *visit(days_c *symbol) { |
|
393 |
if (symbol->hours) |
|
394 |
symbol->hours->accept(*this); |
|
395 |
symbol->days->accept(*this); |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
396 |
time += (unsigned long long)(current_value * 24 * 3600 * SECOND); |
70 | 397 |
return NULL; |
398 |
} |
|
399 |
||
400 |
/* SYM_REF2(hours_c, hours, minutes) */ |
|
401 |
void *visit(hours_c *symbol) { |
|
402 |
if (symbol->minutes) |
|
403 |
symbol->minutes->accept(*this); |
|
404 |
symbol->hours->accept(*this); |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
405 |
time += (unsigned long long)(current_value * 3600 * SECOND); |
70 | 406 |
return NULL; |
407 |
} |
|
408 |
||
409 |
/* SYM_REF2(minutes_c, minutes, seconds) */ |
|
410 |
void *visit(minutes_c *symbol) { |
|
411 |
if (symbol->seconds) |
|
412 |
symbol->seconds->accept(*this); |
|
413 |
symbol->minutes->accept(*this); |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
414 |
time += (unsigned long long)(current_value * 60 * SECOND); |
70 | 415 |
return NULL; |
416 |
} |
|
417 |
||
418 |
/* SYM_REF2(seconds_c, seconds, milliseconds) */ |
|
419 |
void *visit(seconds_c *symbol) { |
|
420 |
if (symbol->milliseconds) |
|
421 |
symbol->milliseconds->accept(*this); |
|
422 |
symbol->seconds->accept(*this); |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
423 |
time += (unsigned long long)(current_value * SECOND); |
70 | 424 |
return NULL; |
425 |
} |
|
426 |
||
427 |
/* SYM_REF2(milliseconds_c, milliseconds, unused) */ |
|
428 |
void *visit(milliseconds_c *symbol) { |
|
429 |
symbol->milliseconds->accept(*this); |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
430 |
time += (unsigned long long)(current_value * MILLISECOND); |
70 | 431 |
return NULL; |
432 |
} |
|
433 |
}; |
|
434 |
||
435 |
/***********************************************************************/ |
|
436 |
/***********************************************************************/ |
|
437 |
/***********************************************************************/ |
|
438 |
/***********************************************************************/ |
|
439 |
||
440 |
class calculate_common_ticktime_c: public iterator_visitor_c { |
|
441 |
private: |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
442 |
unsigned long long common_ticktime; |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
443 |
unsigned long long least_common_ticktime; |
70 | 444 |
|
445 |
public: |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
446 |
calculate_common_ticktime_c(void){ |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
447 |
common_ticktime = 0; |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
448 |
least_common_ticktime = 0; |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
449 |
} |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
450 |
|
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
451 |
unsigned long long euclide(unsigned long long a, unsigned long long b) { |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
452 |
unsigned long long c = a % b; |
70 | 453 |
if (c == 0) |
454 |
return b; |
|
455 |
else |
|
456 |
return euclide(b, c); |
|
457 |
} |
|
458 |
||
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
459 |
void update_ticktime(unsigned long long time) { |
70 | 460 |
if (common_ticktime == 0) |
461 |
common_ticktime = time; |
|
462 |
else if (time > common_ticktime) |
|
463 |
common_ticktime = euclide(time, common_ticktime); |
|
464 |
else |
|
465 |
common_ticktime = euclide(common_ticktime, time); |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
466 |
if (least_common_ticktime == 0) |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
467 |
least_common_ticktime = time; |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
468 |
else |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
469 |
least_common_ticktime = (least_common_ticktime * time) / common_ticktime; |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
470 |
} |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
471 |
|
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
472 |
unsigned long long get_common_ticktime(void) { |
70 | 473 |
return common_ticktime; |
474 |
} |
|
475 |
||
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
476 |
unsigned long get_greatest_tick_count(void) { |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
477 |
unsigned long long least_common_tick = least_common_ticktime / common_ticktime; |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
478 |
if (least_common_tick >> 32) |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
479 |
ERROR; |
237 | 480 |
return (unsigned long)(~(((unsigned long)-1) % (unsigned long)least_common_tick) + 1); |
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
481 |
} |
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
482 |
|
70 | 483 |
/* TASK task_name task_initialization */ |
484 |
//SYM_REF2(task_configuration_c, task_name, task_initialization) |
|
485 |
void *visit(task_initialization_c *symbol) { |
|
486 |
calculate_time_c calculate_time; |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
487 |
unsigned long long time = 0; |
70 | 488 |
if (symbol->interval_data_source != NULL) { |
489 |
symbol->interval_data_source->accept(calculate_time); |
|
490 |
time = calculate_time.get_time(); |
|
491 |
} |
|
492 |
if (time > 0) |
|
493 |
update_ticktime(time); |
|
494 |
return NULL; |
|
495 |
} |
|
496 |
}; |
|
497 |
||
498 |
/***********************************************************************/ |
|
499 |
/***********************************************************************/ |
|
500 |
/***********************************************************************/ |
|
501 |
/***********************************************************************/ |
|
502 |
||
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
503 |
/* A helper class that knows how to generate code for the SFC, IL and ST languages... */ |
70 | 504 |
class generate_c_SFC_IL_ST_c: public null_visitor_c { |
505 |
private: |
|
506 |
stage4out_c *s4o_ptr; |
|
507 |
symbol_c *scope; |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
508 |
symbol_c *fbname; |
70 | 509 |
const char *variable_prefix; |
510 |
||
511 |
public: |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
512 |
generate_c_SFC_IL_ST_c(stage4out_c *s4o_ptr, symbol_c *name, symbol_c *scope, const char *variable_prefix = NULL); |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
513 |
|
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
514 |
/********************/ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
515 |
/* 2.1.6 - Pragmas */ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
516 |
/********************/ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
517 |
void *visit(enable_code_generation_pragma_c * symbol) {s4o_ptr->enable_output(); return NULL;} |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
518 |
void *visit(disable_code_generation_pragma_c * symbol) {s4o_ptr->disable_output(); return NULL;} |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
519 |
|
70 | 520 |
/*********************************************/ |
521 |
/* B.1.6 Sequential function chart elements */ |
|
522 |
/*********************************************/ |
|
523 |
/*| sequential_function_chart sfc_network*/ |
|
524 |
void *visit(sequential_function_chart_c * symbol); |
|
525 |
||
526 |
/****************************************/ |
|
527 |
/* B.2 - Language IL (Instruction List) */ |
|
528 |
/****************************************/ |
|
529 |
||
530 |
/***********************************/ |
|
531 |
/* B 2.1 Instructions and Operands */ |
|
532 |
/***********************************/ |
|
533 |
/*| instruction_list il_instruction */ |
|
534 |
void *visit(instruction_list_c *symbol); |
|
535 |
||
536 |
/* Remainder implemented in generate_c_il_c... */ |
|
537 |
||
538 |
/***************************************/ |
|
539 |
/* B.3 - Language ST (Structured Text) */ |
|
540 |
/***************************************/ |
|
541 |
/***********************/ |
|
542 |
/* B 3.1 - Expressions */ |
|
543 |
/***********************/ |
|
544 |
/* Implemented in generate_c_st_c */ |
|
545 |
||
546 |
/********************/ |
|
547 |
/* B 3.2 Statements */ |
|
548 |
/********************/ |
|
549 |
void *visit(statement_list_c *symbol); |
|
550 |
||
551 |
/* Remainder implemented in generate_c_st_c... */ |
|
552 |
}; |
|
553 |
||
554 |
#include "generate_c_sfc.cc" |
|
555 |
||
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
556 |
generate_c_SFC_IL_ST_c::generate_c_SFC_IL_ST_c(stage4out_c *s4o_ptr, symbol_c *name, symbol_c *scope, const char *variable_prefix) { |
70 | 557 |
if (NULL == scope) ERROR; |
558 |
this->s4o_ptr = s4o_ptr; |
|
559 |
this->scope = scope; |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
560 |
this->fbname = name; |
70 | 561 |
this->variable_prefix = variable_prefix; |
562 |
} |
|
563 |
||
564 |
void *generate_c_SFC_IL_ST_c::visit(sequential_function_chart_c * symbol) { |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
565 |
generate_c_sfc_c generate_c_sfc(s4o_ptr, fbname, scope, variable_prefix); |
70 | 566 |
generate_c_sfc.generate(symbol); |
567 |
return NULL; |
|
568 |
} |
|
569 |
||
570 |
void *generate_c_SFC_IL_ST_c::visit(instruction_list_c *symbol) { |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
571 |
generate_c_il_c generate_c_il(s4o_ptr, fbname, scope, variable_prefix); |
70 | 572 |
generate_c_il.generate(symbol); |
573 |
return NULL; |
|
574 |
} |
|
575 |
||
576 |
void *generate_c_SFC_IL_ST_c::visit(statement_list_c *symbol) { |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
577 |
generate_c_st_c generate_c_st(s4o_ptr, fbname, scope, variable_prefix); |
70 | 578 |
generate_c_st.generate(symbol); |
579 |
return NULL; |
|
580 |
} |
|
581 |
||
582 |
||
583 |
||
584 |
||
585 |
/***********************************************************************/ |
|
586 |
/***********************************************************************/ |
|
587 |
/***********************************************************************/ |
|
588 |
/***********************************************************************/ |
|
589 |
/***********************************************************************/ |
|
590 |
||
591 |
||
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
592 |
class generate_c_datatypes_c: public generate_c_typedecl_c { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
593 |
public: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
594 |
typedef enum { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
595 |
none_im, |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
596 |
arrayname_im, |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
597 |
arraydeclaration_im, |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
598 |
} inlinearray_mode_t; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
599 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
600 |
private: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
601 |
stage4out_c *s4o_ptr; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
602 |
std::map<std::string, int> inline_array_defined; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
603 |
std::string current_array_name; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
604 |
inlinearray_mode_t current_mode; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
605 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
606 |
public: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
607 |
generate_c_datatypes_c(stage4out_c *s4o_ptr, stage4out_c *s4o_incl_ptr) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
608 |
: generate_c_typedecl_c(s4o_ptr, s4o_incl_ptr) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
609 |
generate_c_datatypes_c::s4o_ptr = s4o_ptr; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
610 |
current_mode = none_im; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
611 |
}; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
612 |
virtual ~generate_c_datatypes_c(void) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
613 |
while (!inline_array_defined.empty()) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
614 |
inline_array_defined.erase(inline_array_defined.begin()); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
615 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
616 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
617 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
618 |
/*************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
619 |
/* B.1 - Common elements */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
620 |
/*************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
621 |
/*******************************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
622 |
/* B 1.1 - Letters, digits and identifiers */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
623 |
/*******************************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
624 |
void *visit(identifier_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
625 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
626 |
case arrayname_im: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
627 |
current_array_name += symbol->value; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
628 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
629 |
case arraydeclaration_im: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
630 |
s4o_incl.print(symbol->value); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
631 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
632 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
633 |
return generate_c_base_c::visit(symbol); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
634 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
635 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
636 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
637 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
638 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
639 |
/**********************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
640 |
/* B.1.3 - Data types */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
641 |
/**********************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
642 |
/***********************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
643 |
/* B 1.3.1 - Elementary Data Types */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
644 |
/***********************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
645 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
646 |
#define HANDLE_ELEMENTARY_DATA_TYPE(datatype_symbol, datatype_name)\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
647 |
void *visit(datatype_symbol *symbol) {\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
648 |
switch (current_mode) {\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
649 |
case arrayname_im:\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
650 |
current_array_name += datatype_name;\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
651 |
break;\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
652 |
case arraydeclaration_im:\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
653 |
s4o_incl.print(datatype_name);\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
654 |
break;\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
655 |
default:\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
656 |
return generate_c_base_c::visit(symbol);\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
657 |
break;\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
658 |
}\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
659 |
return NULL;\ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
660 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
661 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
662 |
HANDLE_ELEMENTARY_DATA_TYPE(time_type_name_c, "TIME") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
663 |
HANDLE_ELEMENTARY_DATA_TYPE(bool_type_name_c, "BOOL") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
664 |
HANDLE_ELEMENTARY_DATA_TYPE(sint_type_name_c, "SINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
665 |
HANDLE_ELEMENTARY_DATA_TYPE(int_type_name_c, "INT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
666 |
HANDLE_ELEMENTARY_DATA_TYPE(dint_type_name_c, "DINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
667 |
HANDLE_ELEMENTARY_DATA_TYPE(lint_type_name_c, "LINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
668 |
HANDLE_ELEMENTARY_DATA_TYPE(usint_type_name_c, "USINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
669 |
HANDLE_ELEMENTARY_DATA_TYPE(uint_type_name_c, "UINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
670 |
HANDLE_ELEMENTARY_DATA_TYPE(udint_type_name_c, "UDINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
671 |
HANDLE_ELEMENTARY_DATA_TYPE(ulint_type_name_c, "ULINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
672 |
HANDLE_ELEMENTARY_DATA_TYPE(real_type_name_c, "REAL") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
673 |
HANDLE_ELEMENTARY_DATA_TYPE(lreal_type_name_c, "LREAL") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
674 |
HANDLE_ELEMENTARY_DATA_TYPE(date_type_name_c, "DATE") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
675 |
HANDLE_ELEMENTARY_DATA_TYPE(tod_type_name_c, "TOD") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
676 |
HANDLE_ELEMENTARY_DATA_TYPE(dt_type_name_c, "DT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
677 |
HANDLE_ELEMENTARY_DATA_TYPE(byte_type_name_c, "BYTE") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
678 |
HANDLE_ELEMENTARY_DATA_TYPE(word_type_name_c, "WORD") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
679 |
HANDLE_ELEMENTARY_DATA_TYPE(dword_type_name_c, "DWORD") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
680 |
HANDLE_ELEMENTARY_DATA_TYPE(lword_type_name_c, "LWORD") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
681 |
HANDLE_ELEMENTARY_DATA_TYPE(string_type_name_c, "STRING") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
682 |
HANDLE_ELEMENTARY_DATA_TYPE(wstring_type_name_c, "WSTRING") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
683 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
684 |
HANDLE_ELEMENTARY_DATA_TYPE(safetime_type_name_c, "TIME") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
685 |
HANDLE_ELEMENTARY_DATA_TYPE(safebool_type_name_c, "BOOL") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
686 |
HANDLE_ELEMENTARY_DATA_TYPE(safesint_type_name_c, "SINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
687 |
HANDLE_ELEMENTARY_DATA_TYPE(safeint_type_name_c, "INT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
688 |
HANDLE_ELEMENTARY_DATA_TYPE(safedint_type_name_c, "DINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
689 |
HANDLE_ELEMENTARY_DATA_TYPE(safelint_type_name_c, "LINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
690 |
HANDLE_ELEMENTARY_DATA_TYPE(safeusint_type_name_c, "USINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
691 |
HANDLE_ELEMENTARY_DATA_TYPE(safeuint_type_name_c, "UINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
692 |
HANDLE_ELEMENTARY_DATA_TYPE(safeudint_type_name_c, "UDINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
693 |
HANDLE_ELEMENTARY_DATA_TYPE(safeulint_type_name_c, "ULINT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
694 |
HANDLE_ELEMENTARY_DATA_TYPE(safereal_type_name_c, "REAL") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
695 |
HANDLE_ELEMENTARY_DATA_TYPE(safelreal_type_name_c, "LREAL") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
696 |
HANDLE_ELEMENTARY_DATA_TYPE(safedate_type_name_c, "DATE") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
697 |
HANDLE_ELEMENTARY_DATA_TYPE(safetod_type_name_c, "TOD") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
698 |
HANDLE_ELEMENTARY_DATA_TYPE(safedt_type_name_c, "DT") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
699 |
HANDLE_ELEMENTARY_DATA_TYPE(safebyte_type_name_c, "BYTE") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
700 |
HANDLE_ELEMENTARY_DATA_TYPE(safeword_type_name_c, "WORD") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
701 |
HANDLE_ELEMENTARY_DATA_TYPE(safedword_type_name_c, "DWORD") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
702 |
HANDLE_ELEMENTARY_DATA_TYPE(safelword_type_name_c, "LWORD") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
703 |
HANDLE_ELEMENTARY_DATA_TYPE(safestring_type_name_c, "STRING") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
704 |
HANDLE_ELEMENTARY_DATA_TYPE(safewstring_type_name_c, "WSTRING") |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
705 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
706 |
/******************************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
707 |
/* B 1.4.3 - Declaration & Initialization */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
708 |
/******************************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
709 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
710 |
void *visit(input_declarations_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
711 |
symbol->input_declaration_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
712 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
713 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
714 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
715 |
void *visit(edge_declaration_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
716 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
717 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
718 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
719 |
void *visit(en_param_declaration_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
720 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
721 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
722 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
723 |
void *visit(eno_param_declaration_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
724 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
725 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
726 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
727 |
void *visit(var1_init_decl_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
728 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
729 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
730 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
731 |
/* var1_list ':' array_spec_init */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
732 |
// SYM_REF2(array_var_init_decl_c, var1_list, array_spec_init) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
733 |
void *visit(array_var_init_decl_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
734 |
current_mode = arrayname_im; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
735 |
symbol->array_spec_init->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
736 |
current_mode = none_im; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
737 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
738 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
739 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
740 |
/* array_specification [ASSIGN array_initialization] */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
741 |
/* array_initialization may be NULL ! */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
742 |
void *visit(array_spec_init_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
743 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
744 |
case arrayname_im: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
745 |
{ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
746 |
array_specification_c *specification = dynamic_cast<array_specification_c*>(symbol->array_specification); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
747 |
if (specification != NULL) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
748 |
symbol->array_specification->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
749 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
750 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
751 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
752 |
return generate_c_typedecl_c::visit(symbol); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
753 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
754 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
755 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
756 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
757 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
758 |
/* ARRAY '[' array_subrange_list ']' OF non_generic_type_name */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
759 |
void *visit(array_specification_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
760 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
761 |
case arrayname_im: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
762 |
{ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
763 |
std::map<std::string,int>::iterator definition; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
764 |
current_array_name = "__"; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
765 |
symbol->non_generic_type_name->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
766 |
symbol->array_subrange_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
767 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
768 |
definition = inline_array_defined.find(current_array_name); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
769 |
if (definition == inline_array_defined.end()) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
770 |
current_mode = arraydeclaration_im; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
771 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
772 |
s4o_incl.print("__DECLARE_ARRAY_TYPE("); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
773 |
s4o_incl.print(current_array_name); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
774 |
s4o_incl.print(","); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
775 |
symbol->non_generic_type_name->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
776 |
s4o_incl.print(","); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
777 |
symbol->array_subrange_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
778 |
s4o_incl.print(")\n\n"); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
779 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
780 |
inline_array_defined[current_array_name] = 0; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
781 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
782 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
783 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
784 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
785 |
return generate_c_typedecl_c::visit(symbol); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
786 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
787 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
788 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
789 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
790 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
791 |
/* signed_integer DOTDOT signed_integer */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
792 |
//SYM_REF2(subrange_c, lower_limit, upper_limit) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
793 |
void *visit(subrange_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
794 |
int dimension = extract_integer(symbol->upper_limit) - extract_integer(symbol->lower_limit) + 1; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
795 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
796 |
case arrayname_im: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
797 |
current_array_name += "_"; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
798 |
{ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
799 |
std::stringstream ss; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
800 |
ss << dimension; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
801 |
current_array_name += ss.str(); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
802 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
803 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
804 |
case arraydeclaration_im: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
805 |
s4o_incl.print("["); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
806 |
s4o_incl.print_integer(dimension); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
807 |
s4o_incl.print("]"); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
808 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
809 |
generate_c_typedecl_c::visit(symbol); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
810 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
811 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
812 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
813 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
814 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
815 |
/* var1_list ':' initialized_structure */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
816 |
// SYM_REF2(structured_var_init_decl_c, var1_list, initialized_structure) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
817 |
void *visit(structured_var_init_decl_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
818 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
819 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
820 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
821 |
/* fb_name_list ':' function_block_type_name ASSIGN structure_initialization */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
822 |
/* structure_initialization -> may be NULL ! */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
823 |
void *visit(fb_name_decl_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
824 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
825 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
826 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
827 |
/* VAR_OUTPUT [RETAIN | NON_RETAIN] var_init_decl_list END_VAR */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
828 |
/* option -> may be NULL ! */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
829 |
void *visit(output_declarations_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
830 |
symbol->var_init_decl_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
831 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
832 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
833 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
834 |
/* VAR_IN_OUT var_declaration_list END_VAR */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
835 |
void *visit(input_output_declarations_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
836 |
symbol->var_declaration_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
837 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
838 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
839 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
840 |
/* var1_list ':' array_specification */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
841 |
//SYM_REF2(array_var_declaration_c, var1_list, array_specification) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
842 |
void *visit(array_var_declaration_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
843 |
array_specification_c *specification = dynamic_cast<array_specification_c*>(symbol->array_specification); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
844 |
if (specification != NULL) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
845 |
current_mode = arrayname_im; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
846 |
symbol->array_specification->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
847 |
current_mode = none_im; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
848 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
849 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
850 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
851 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
852 |
/* VAR [CONSTANT] var_init_decl_list END_VAR */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
853 |
/* option -> may be NULL ! */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
854 |
/* helper symbol for input_declarations */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
855 |
void *visit(var_declarations_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
856 |
symbol->var_init_decl_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
857 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
858 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
859 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
860 |
/* VAR RETAIN var_init_decl_list END_VAR */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
861 |
void *visit(retentive_var_declarations_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
862 |
symbol->var_init_decl_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
863 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
864 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
865 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
866 |
/* VAR [CONSTANT|RETAIN|NON_RETAIN] located_var_decl_list END_VAR */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
867 |
/* option -> may be NULL ! */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
868 |
//SYM_REF2(located_var_declarations_c, option, located_var_decl_list) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
869 |
void *visit(located_var_declarations_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
870 |
symbol->located_var_decl_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
871 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
872 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
873 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
874 |
/* [variable_name] location ':' located_var_spec_init */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
875 |
/* variable_name -> may be NULL ! */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
876 |
//SYM_REF4(located_var_decl_c, variable_name, location, located_var_spec_init, unused) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
877 |
void *visit(located_var_decl_c *symbol) { |
381
2fd934b91ffd
Fix bug in code generation of directly declared array variables that generate wrong code when using located variables in a program POU
laurent
parents:
377
diff
changeset
|
878 |
array_spec_init_c* array_spec_init = dynamic_cast<array_spec_init_c*>(symbol->located_var_spec_init); |
2fd934b91ffd
Fix bug in code generation of directly declared array variables that generate wrong code when using located variables in a program POU
laurent
parents:
377
diff
changeset
|
879 |
if (array_spec_init != NULL) { |
2fd934b91ffd
Fix bug in code generation of directly declared array variables that generate wrong code when using located variables in a program POU
laurent
parents:
377
diff
changeset
|
880 |
current_mode = arrayname_im; |
2fd934b91ffd
Fix bug in code generation of directly declared array variables that generate wrong code when using located variables in a program POU
laurent
parents:
377
diff
changeset
|
881 |
symbol->located_var_spec_init->accept(*this); |
2fd934b91ffd
Fix bug in code generation of directly declared array variables that generate wrong code when using located variables in a program POU
laurent
parents:
377
diff
changeset
|
882 |
current_mode = none_im; |
2fd934b91ffd
Fix bug in code generation of directly declared array variables that generate wrong code when using located variables in a program POU
laurent
parents:
377
diff
changeset
|
883 |
} |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
884 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
885 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
886 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
887 |
/*| VAR_EXTERNAL [CONSTANT] external_declaration_list END_VAR */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
888 |
/* option -> may be NULL ! */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
889 |
//SYM_REF2(external_var_declarations_c, option, external_declaration_list) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
890 |
void *visit(external_var_declarations_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
891 |
symbol->external_declaration_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
892 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
893 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
894 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
895 |
/* global_var_name ':' (simple_specification|subrange_specification|enumerated_specification|array_specification|prev_declared_structure_type_name|function_block_type_name */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
896 |
//SYM_REF2(external_declaration_c, global_var_name, specification) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
897 |
void *visit(external_declaration_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
898 |
array_specification_c* array_specification = dynamic_cast<array_specification_c*>(symbol->specification); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
899 |
if (array_specification != NULL) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
900 |
current_mode = arrayname_im; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
901 |
symbol->specification->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
902 |
current_mode = none_im; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
903 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
904 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
905 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
906 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
907 |
/*| VAR_GLOBAL [CONSTANT|RETAIN] global_var_decl_list END_VAR */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
908 |
/* option -> may be NULL ! */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
909 |
// SYM_REF2(global_var_declarations_c, option, global_var_decl_list) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
910 |
void *visit(global_var_declarations_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
911 |
symbol->global_var_decl_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
912 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
913 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
914 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
915 |
/*| global_var_spec ':' [located_var_spec_init|function_block_type_name] */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
916 |
/* type_specification ->may be NULL ! */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
917 |
// SYM_REF2(global_var_decl_c, global_var_spec, type_specification) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
918 |
void *visit(global_var_decl_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
919 |
array_spec_init_c* array_spec_init = dynamic_cast<array_spec_init_c*>(symbol->type_specification); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
920 |
if (array_spec_init != NULL) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
921 |
current_mode = arrayname_im; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
922 |
symbol->type_specification->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
923 |
current_mode = none_im; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
924 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
925 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
926 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
927 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
928 |
void *visit(function_var_decls_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
929 |
symbol->decl_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
930 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
931 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
932 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
933 |
/*****************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
934 |
/* B 1.5.2 - Function Blocks */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
935 |
/*****************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
936 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
937 |
/* VAR_TEMP temp_var_decl_list END_VAR */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
938 |
void *visit(temp_var_decls_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
939 |
symbol->var_decl_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
940 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
941 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
942 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
943 |
/* VAR NON_RETAIN var_init_decl_list END_VAR */ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
944 |
void *visit(non_retentive_var_decls_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
945 |
symbol->var_decl_list->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
946 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
947 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
948 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
949 |
}; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
950 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
951 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
952 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
953 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
954 |
/***********************************************************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
955 |
/***********************************************************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
956 |
/***********************************************************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
957 |
/***********************************************************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
958 |
/***********************************************************************/ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
959 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
960 |
|
70 | 961 |
class generate_c_pous_c: public generate_c_typedecl_c { |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
962 |
private: |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
963 |
stage4out_c *s4o_ptr; |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
964 |
|
70 | 965 |
public: |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
966 |
generate_c_pous_c(stage4out_c *s4o_ptr, stage4out_c *s4o_incl_ptr) |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
967 |
: generate_c_typedecl_c(s4o_ptr, s4o_incl_ptr) { |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
968 |
generate_c_pous_c::s4o_ptr = s4o_ptr; |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
969 |
}; |
70 | 970 |
virtual ~generate_c_pous_c(void) {} |
971 |
||
283
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
972 |
private: |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
973 |
void print_end_of_block_label(void) { |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
974 |
/* Print and __end label for return statements! |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
975 |
* If label is not used by at least one goto, compiler will generate a warning. |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
976 |
* To work around this we introduce the useless goto. |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
977 |
*/ |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
978 |
s4o.print("\n"); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
979 |
s4o.print(s4o.indent_spaces); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
980 |
s4o.print("/* to humour the compiler, we insert a goto */\n"); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
981 |
s4o.print(s4o.indent_spaces); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
982 |
s4o.print("goto "); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
983 |
s4o.print(END_LABEL); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
984 |
s4o.print(";\n"); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
985 |
s4o.indent_left(); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
986 |
|
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
987 |
/* write the label marking the end of the code block */ |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
988 |
/* please see the comment before the RET_operator_c visitor for details... */ |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
989 |
/* also needed for return_statement_c */ |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
990 |
s4o.print("\n"); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
991 |
s4o.print(s4o.indent_spaces); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
992 |
s4o.print(END_LABEL); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
993 |
s4o.print(":\n"); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
994 |
s4o.indent_right(); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
995 |
} |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
996 |
|
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
997 |
|
70 | 998 |
|
999 |
public: |
|
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1000 |
/********************/ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1001 |
/* 2.1.6 - Pragmas */ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1002 |
/********************/ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1003 |
void *visit(enable_code_generation_pragma_c * symbol) {s4o_ptr->enable_output(); return NULL;} |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1004 |
void *visit(disable_code_generation_pragma_c * symbol) {s4o_ptr->disable_output(); return NULL;} |
70 | 1005 |
|
1006 |
/*************************/ |
|
1007 |
/* B.1 - Common elements */ |
|
1008 |
/*************************/ |
|
1009 |
/*******************************************/ |
|
1010 |
/* B 1.1 - Letters, digits and identifiers */ |
|
1011 |
/*******************************************/ |
|
1012 |
/* done in base class(es) */ |
|
1013 |
||
1014 |
/*********************/ |
|
1015 |
/* B 1.2 - Constants */ |
|
1016 |
/*********************/ |
|
1017 |
/* originally empty... */ |
|
1018 |
||
1019 |
/******************************/ |
|
1020 |
/* B 1.2.1 - Numeric Literals */ |
|
1021 |
/******************************/ |
|
1022 |
/* done in base class(es) */ |
|
1023 |
||
1024 |
/*******************************/ |
|
1025 |
/* B.1.2.2 Character Strings */ |
|
1026 |
/*******************************/ |
|
1027 |
/* done in base class(es) */ |
|
1028 |
||
1029 |
/***************************/ |
|
1030 |
/* B 1.2.3 - Time Literals */ |
|
1031 |
/***************************/ |
|
1032 |
/************************/ |
|
1033 |
/* B 1.2.3.1 - Duration */ |
|
1034 |
/************************/ |
|
1035 |
/* done in base class(es) */ |
|
1036 |
||
1037 |
/************************************/ |
|
1038 |
/* B 1.2.3.2 - Time of day and Date */ |
|
1039 |
/************************************/ |
|
1040 |
/* done in base class(es) */ |
|
1041 |
||
1042 |
/**********************/ |
|
1043 |
/* B.1.3 - Data types */ |
|
1044 |
/**********************/ |
|
1045 |
/***********************************/ |
|
1046 |
/* B 1.3.1 - Elementary Data Types */ |
|
1047 |
/***********************************/ |
|
1048 |
/* done in base class(es) */ |
|
1049 |
||
1050 |
/********************************/ |
|
1051 |
/* B.1.3.2 - Generic data types */ |
|
1052 |
/********************************/ |
|
1053 |
/* originally empty... */ |
|
1054 |
||
1055 |
/********************************/ |
|
1056 |
/* B 1.3.3 - Derived data types */ |
|
1057 |
/********************************/ |
|
1058 |
/* done in base class(es) */ |
|
1059 |
||
1060 |
/*********************/ |
|
1061 |
/* B 1.4 - Variables */ |
|
1062 |
/*********************/ |
|
1063 |
/* done in base class(es) */ |
|
1064 |
||
1065 |
/********************************************/ |
|
1066 |
/* B.1.4.1 Directly Represented Variables */ |
|
1067 |
/********************************************/ |
|
1068 |
/* done in base class(es) */ |
|
1069 |
||
1070 |
/*************************************/ |
|
1071 |
/* B.1.4.2 Multi-element Variables */ |
|
1072 |
/*************************************/ |
|
1073 |
/* done in base class(es) */ |
|
1074 |
||
1075 |
/******************************************/ |
|
1076 |
/* B 1.4.3 - Declaration & Initialisation */ |
|
1077 |
/******************************************/ |
|
1078 |
/* done in base class(es) */ |
|
1079 |
||
1080 |
/**************************************/ |
|
1081 |
/* B.1.5 - Program organization units */ |
|
1082 |
/**************************************/ |
|
1083 |
/***********************/ |
|
1084 |
/* B 1.5.1 - Functions */ |
|
1085 |
/***********************/ |
|
1086 |
||
1087 |
public: |
|
1088 |
/* FUNCTION derived_function_name ':' elementary_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
|
1089 |
/* | FUNCTION derived_function_name ':' derived_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
|
1090 |
void *visit(function_declaration_c *symbol) { |
|
1091 |
generate_c_vardecl_c *vardecl; |
|
1092 |
TRACE("function_declaration_c"); |
|
1093 |
||
1094 |
/* (A) Function declaration... */ |
|
1095 |
/* (A.1) Function return type */ |
|
1096 |
s4o.print("// FUNCTION\n"); |
|
1097 |
symbol->type_name->accept(*this); /* return type */ |
|
1098 |
s4o.print(" "); |
|
1099 |
/* (A.2) Function name */ |
|
1100 |
symbol->derived_function_name->accept(*this); |
|
1101 |
s4o.print("("); |
|
1102 |
||
1103 |
/* (A.3) Function parameters */ |
|
1104 |
s4o.indent_right(); |
|
1105 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1106 |
generate_c_vardecl_c::finterface_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1107 |
generate_c_vardecl_c::input_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1108 |
generate_c_vardecl_c::output_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1109 |
generate_c_vardecl_c::inoutput_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1110 |
generate_c_vardecl_c::en_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1111 |
generate_c_vardecl_c::eno_vt); |
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1112 |
vardecl->print(symbol->var_declarations_list); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1113 |
delete vardecl; |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1114 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1115 |
s4o.indent_left(); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1116 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1117 |
s4o.print(")\n" + s4o.indent_spaces + "{\n"); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1118 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1119 |
/* (B) Function local variable declaration */ |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1120 |
/* (B.1) Variables declared in ST source code */ |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1121 |
s4o.indent_right(); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1122 |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1123 |
vardecl = new generate_c_vardecl_c(&s4o, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1124 |
generate_c_vardecl_c::localinit_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1125 |
generate_c_vardecl_c::output_vt | |
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1126 |
generate_c_vardecl_c::inoutput_vt | |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1127 |
generate_c_vardecl_c::private_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1128 |
generate_c_vardecl_c::eno_vt); |
70 | 1129 |
vardecl->print(symbol->var_declarations_list); |
1130 |
delete vardecl; |
|
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1131 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1132 |
/* (B.2) Temporary variable for function's return value */ |
70 | 1133 |
/* It will have the same name as the function itself! */ |
1134 |
s4o.print(s4o.indent_spaces); |
|
1135 |
symbol->type_name->accept(*this); /* return type */ |
|
1136 |
s4o.print(" "); |
|
1137 |
symbol->derived_function_name->accept(*this); |
|
1138 |
s4o.print(" = "); |
|
1139 |
{ |
|
1140 |
/* get the default value of this variable's type */ |
|
1141 |
symbol_c *default_value = (symbol_c *)symbol->type_name->accept(*type_initial_value_c::instance()); |
|
1142 |
if (default_value == NULL) ERROR; |
|
318
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1143 |
initialization_analyzer_c initialization_analyzer(default_value); |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1144 |
switch (initialization_analyzer.get_initialization_type()) { |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1145 |
case initialization_analyzer_c::struct_it: |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1146 |
{ |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1147 |
generate_c_structure_initialization_c *structure_initialization = new generate_c_structure_initialization_c(&s4o); |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1148 |
structure_initialization->init_structure_default(symbol->type_name); |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1149 |
structure_initialization->init_structure_values(default_value); |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1150 |
delete structure_initialization; |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1151 |
} |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1152 |
break; |
318
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1153 |
case initialization_analyzer_c::array_it: |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1154 |
{ |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1155 |
generate_c_array_initialization_c *array_initialization = new generate_c_array_initialization_c(&s4o); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1156 |
array_initialization->init_array_size(symbol->type_name); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1157 |
array_initialization->init_array_values(default_value); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1158 |
delete array_initialization; |
318
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1159 |
} |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1160 |
break; |
318
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1161 |
default: |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1162 |
default_value->accept(*this); |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1163 |
break; |
746a357b8747
Fix bug when generating initial value for function return type when it is a complex type
laurent
parents:
283
diff
changeset
|
1164 |
} |
70 | 1165 |
} |
1166 |
s4o.print(";\n\n"); |
|
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1167 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1168 |
s4o.print(s4o.indent_spaces + "// Control execution\n"); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1169 |
s4o.print(s4o.indent_spaces + "if (!EN) {\n"); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1170 |
s4o.indent_right(); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1171 |
s4o.print(s4o.indent_spaces + "if (__ENO != NULL) {\n"); |
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1172 |
s4o.indent_right(); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1173 |
s4o.print(s4o.indent_spaces + "*__ENO = __BOOL_LITERAL(FALSE);\n"); |
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1174 |
s4o.indent_left(); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1175 |
s4o.print(s4o.indent_spaces + "}\n"); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1176 |
s4o.print(s4o.indent_spaces + "return "); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1177 |
symbol->derived_function_name->accept(*this); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1178 |
s4o.print(";\n"); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1179 |
s4o.indent_left(); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1180 |
s4o.print(s4o.indent_spaces + "}\n"); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1181 |
|
70 | 1182 |
/* (C) Function body */ |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1183 |
generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->derived_function_name, symbol); |
70 | 1184 |
symbol->function_body->accept(generate_c_code); |
145 | 1185 |
|
283
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
1186 |
print_end_of_block_label(); |
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
1187 |
|
145 | 1188 |
vardecl = new generate_c_vardecl_c(&s4o, |
1189 |
generate_c_vardecl_c::foutputassign_vf, |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1190 |
generate_c_vardecl_c::output_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1191 |
generate_c_vardecl_c::inoutput_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1192 |
generate_c_vardecl_c::eno_vt); |
145 | 1193 |
vardecl->print(symbol->var_declarations_list); |
1194 |
delete vardecl; |
|
1195 |
||
70 | 1196 |
s4o.print(s4o.indent_spaces + "return "); |
1197 |
symbol->derived_function_name->accept(*this); |
|
1198 |
s4o.print(";\n"); |
|
1199 |
s4o.indent_left(); |
|
1200 |
s4o.print(s4o.indent_spaces + "}\n\n\n"); |
|
1201 |
||
1202 |
return NULL; |
|
1203 |
} |
|
1204 |
||
1205 |
||
1206 |
/* The remaining var_declarations_list_c, function_var_decls_c |
|
1207 |
* and var2_init_decl_list_c are handled in the generate_c_vardecl_c class |
|
1208 |
*/ |
|
1209 |
||
1210 |
||
1211 |
/*****************************/ |
|
1212 |
/* B 1.5.2 - Function Blocks */ |
|
1213 |
/*****************************/ |
|
1214 |
public: |
|
1215 |
/* FUNCTION_BLOCK derived_function_block_name io_OR_other_var_declarations function_block_body END_FUNCTION_BLOCK */ |
|
1216 |
//SYM_REF4(function_block_declaration_c, fblock_name, var_declarations, fblock_body, unused) |
|
1217 |
void *visit(function_block_declaration_c *symbol) { |
|
1218 |
generate_c_vardecl_c *vardecl; |
|
1219 |
generate_c_sfcdecl_c *sfcdecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1220 |
generate_c_typedecl_c *typedecl; |
234
e4d31cd0e6d8
Using function_call_iterator in generate_c_inlinefcall instead of creating a new visitor
laurent
parents:
231
diff
changeset
|
1221 |
generate_c_inlinefcall_c *inlinedecl; |
70 | 1222 |
TRACE("function_block_declaration_c"); |
1223 |
||
1224 |
/* (A) Function Block data structure declaration... */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1225 |
typedecl = new generate_c_typedecl_c(&s4o_incl); |
70 | 1226 |
/* (A.1) Data structure declaration */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1227 |
s4o_incl.print("// FUNCTION_BLOCK "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1228 |
symbol->fblock_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1229 |
s4o_incl.print("\n// Data part\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1230 |
s4o_incl.print("typedef struct {\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1231 |
s4o_incl.indent_right(); |
70 | 1232 |
/* (A.2) Public variables: i.e. the function parameters... */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1233 |
s4o_incl.print(s4o_incl.indent_spaces + "// FB Interface - IN, OUT, IN_OUT variables\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1234 |
vardecl = new generate_c_vardecl_c(&s4o_incl, |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1235 |
generate_c_vardecl_c::local_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1236 |
generate_c_vardecl_c::input_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1237 |
generate_c_vardecl_c::output_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1238 |
generate_c_vardecl_c::inoutput_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1239 |
generate_c_vardecl_c::en_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1240 |
generate_c_vardecl_c::eno_vt); |
70 | 1241 |
vardecl->print(symbol->var_declarations); |
1242 |
delete vardecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1243 |
s4o_incl.print("\n"); |
70 | 1244 |
/* (A.3) Private internal variables */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1245 |
s4o_incl.print(s4o_incl.indent_spaces + "// FB private variables - TEMP, private and located variables\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1246 |
vardecl = new generate_c_vardecl_c(&s4o_incl, |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1247 |
generate_c_vardecl_c::local_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1248 |
generate_c_vardecl_c::temp_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1249 |
generate_c_vardecl_c::private_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1250 |
generate_c_vardecl_c::located_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1251 |
generate_c_vardecl_c::external_vt); |
70 | 1252 |
vardecl->print(symbol->var_declarations); |
1253 |
delete vardecl; |
|
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1254 |
|
70 | 1255 |
/* (A.4) Generate private internal variables for SFC */ |
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1256 |
sfcdecl = new generate_c_sfcdecl_c(&s4o_incl, symbol); |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1257 |
sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::sfcdecl_sd); |
70 | 1258 |
delete sfcdecl; |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1259 |
s4o_incl.print("\n"); |
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1260 |
|
70 | 1261 |
/* (A.5) Function Block data structure type name. */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1262 |
s4o_incl.indent_left(); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1263 |
s4o_incl.print("} "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1264 |
symbol->fblock_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1265 |
s4o_incl.print(";\n\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1266 |
delete typedecl; |
70 | 1267 |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1268 |
/* (A.6) Function Block inline function declaration for function invocation */ |
234
e4d31cd0e6d8
Using function_call_iterator in generate_c_inlinefcall instead of creating a new visitor
laurent
parents:
231
diff
changeset
|
1269 |
inlinedecl = new generate_c_inlinefcall_c(&s4o, symbol->fblock_name, symbol, FB_FUNCTION_PARAM"->"); |
337
9a2262fb7994
Fix bug with inline function call in POU programmed in IL
laurent
parents:
330
diff
changeset
|
1270 |
symbol->fblock_body->accept(*inlinedecl); |
234
e4d31cd0e6d8
Using function_call_iterator in generate_c_inlinefcall instead of creating a new visitor
laurent
parents:
231
diff
changeset
|
1271 |
delete inlinedecl; |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1272 |
|
70 | 1273 |
/* (B) Constructor */ |
1274 |
/* (B.1) Constructor name... */ |
|
1275 |
s4o.print(s4o.indent_spaces + "void "); |
|
1276 |
symbol->fblock_name->accept(*this); |
|
1277 |
s4o.print(FB_INIT_SUFFIX); |
|
1278 |
s4o.print("("); |
|
1279 |
||
1280 |
/* first and only parameter is a pointer to the data */ |
|
1281 |
symbol->fblock_name->accept(*this); |
|
1282 |
s4o.print(" *"); |
|
1283 |
s4o.print(FB_FUNCTION_PARAM); |
|
221
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1284 |
s4o.print(", BOOL retain) {\n"); |
70 | 1285 |
s4o.indent_right(); |
1286 |
||
1287 |
/* (B.2) Member initializations... */ |
|
1288 |
s4o.print(s4o.indent_spaces); |
|
1289 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1290 |
generate_c_vardecl_c::constructorinit_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1291 |
generate_c_vardecl_c::input_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1292 |
generate_c_vardecl_c::output_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1293 |
generate_c_vardecl_c::inoutput_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1294 |
generate_c_vardecl_c::private_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1295 |
generate_c_vardecl_c::located_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1296 |
generate_c_vardecl_c::external_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1297 |
generate_c_vardecl_c::en_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1298 |
generate_c_vardecl_c::eno_vt); |
70 | 1299 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
1300 |
delete vardecl; |
|
1301 |
s4o.print("\n"); |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1302 |
|
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1303 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, symbol, FB_FUNCTION_PARAM"->"); |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1304 |
|
70 | 1305 |
/* (B.3) Generate private internal variables for SFC */ |
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1306 |
sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::sfcinit_sd); |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1307 |
|
70 | 1308 |
s4o.indent_left(); |
1309 |
s4o.print(s4o.indent_spaces + "}\n\n"); |
|
1310 |
||
1311 |
||
1312 |
/* (C) Function with FB body */ |
|
1313 |
/* (C.1) Step definitions */ |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1314 |
sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::stepdef_sd); |
70 | 1315 |
|
1316 |
/* (C.2) Action definitions */ |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1317 |
sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::actiondef_sd); |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1318 |
|
70 | 1319 |
/* (C.3) Function declaration */ |
1320 |
s4o.print("// Code part\n"); |
|
1321 |
/* function interface */ |
|
1322 |
s4o.print("void "); |
|
1323 |
symbol->fblock_name->accept(*this); |
|
1324 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
1325 |
s4o.print("("); |
|
1326 |
/* first and only parameter is a pointer to the data */ |
|
1327 |
symbol->fblock_name->accept(*this); |
|
1328 |
s4o.print(" *"); |
|
1329 |
s4o.print(FB_FUNCTION_PARAM); |
|
1330 |
s4o.print(") {\n"); |
|
1331 |
s4o.indent_right(); |
|
1332 |
||
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1333 |
s4o.print(s4o.indent_spaces + "// Control execution\n"); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1334 |
s4o.print(s4o.indent_spaces + "if (!"); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1335 |
s4o.print(GET_VAR); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1336 |
s4o.print("("); |
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1337 |
s4o.print(FB_FUNCTION_PARAM); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1338 |
s4o.print("->EN)) {\n"); |
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1339 |
s4o.indent_right(); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1340 |
s4o.print(s4o.indent_spaces); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1341 |
s4o.print(SET_VAR); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1342 |
s4o.print("("); |
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1343 |
s4o.print(FB_FUNCTION_PARAM); |
392
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
1344 |
s4o.print("->,ENO,__BOOL_LITERAL(FALSE));\n"); |
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1345 |
s4o.print(s4o.indent_spaces + "return;\n"); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1346 |
s4o.indent_left(); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1347 |
s4o.print(s4o.indent_spaces + "}\n"); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1348 |
s4o.print(s4o.indent_spaces + "else {\n"); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1349 |
s4o.indent_right(); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1350 |
s4o.print(s4o.indent_spaces); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1351 |
s4o.print(SET_VAR); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1352 |
s4o.print("("); |
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1353 |
s4o.print(FB_FUNCTION_PARAM); |
392
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
1354 |
s4o.print("->,ENO,__BOOL_LITERAL(TRUE));\n"); |
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1355 |
s4o.indent_left(); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1356 |
s4o.print(s4o.indent_spaces + "}\n"); |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
1357 |
|
70 | 1358 |
/* (C.4) Initialize TEMP variables */ |
1359 |
/* function body */ |
|
1360 |
s4o.print(s4o.indent_spaces + "// Initialise TEMP variables\n"); |
|
1361 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1362 |
generate_c_vardecl_c::init_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1363 |
generate_c_vardecl_c::temp_vt); |
70 | 1364 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
1365 |
delete vardecl; |
|
1366 |
s4o.print("\n"); |
|
1367 |
||
1368 |
/* (C.5) Function code */ |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1369 |
generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->fblock_name, symbol, FB_FUNCTION_PARAM"->"); |
70 | 1370 |
symbol->fblock_body->accept(generate_c_code); |
283
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
1371 |
print_end_of_block_label(); |
330
d2facfcf485a
Fix warning on nop statement at the end of function_block and program generated code
laurent
parents:
318
diff
changeset
|
1372 |
s4o.print(s4o.indent_spaces + "return;\n"); |
70 | 1373 |
s4o.indent_left(); |
1374 |
s4o.print(s4o.indent_spaces + "} // "); |
|
1375 |
symbol->fblock_name->accept(*this); |
|
1376 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
1377 |
s4o.print(s4o.indent_spaces + "() \n\n"); |
|
1378 |
||
1379 |
/* (C.6) Step undefinitions */ |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1380 |
sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::stepundef_sd); |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1381 |
|
70 | 1382 |
/* (C.7) Action undefinitions */ |
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1383 |
sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::actionundef_sd); |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1384 |
|
70 | 1385 |
delete sfcdecl; |
1386 |
||
1387 |
s4o.indent_left(); |
|
1388 |
s4o.print("\n\n\n\n"); |
|
1389 |
||
1390 |
return NULL; |
|
1391 |
} |
|
1392 |
||
1393 |
||
1394 |
/* The remaining temp_var_decls_c, temp_var_decls_list_c |
|
1395 |
* and non_retentive_var_decls_c are handled in the generate_c_vardecl_c class |
|
1396 |
*/ |
|
1397 |
||
1398 |
||
1399 |
/**********************/ |
|
1400 |
/* B 1.5.3 - Programs */ |
|
1401 |
/**********************/ |
|
1402 |
||
1403 |
||
1404 |
||
1405 |
public: |
|
1406 |
/* PROGRAM program_type_name program_var_declarations_list function_block_body END_PROGRAM */ |
|
1407 |
//SYM_REF4(program_declaration_c, program_type_name, var_declarations, function_block_body, unused) |
|
1408 |
void *visit(program_declaration_c *symbol) { |
|
1409 |
generate_c_vardecl_c *vardecl; |
|
1410 |
generate_c_sfcdecl_c *sfcdecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1411 |
generate_c_typedecl_c *typedecl; |
234
e4d31cd0e6d8
Using function_call_iterator in generate_c_inlinefcall instead of creating a new visitor
laurent
parents:
231
diff
changeset
|
1412 |
generate_c_inlinefcall_c *inlinedecl; |
70 | 1413 |
TRACE("program_declaration_c"); |
1414 |
||
1415 |
/* (A) Program data structure declaration... */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1416 |
typedecl = new generate_c_typedecl_c(&s4o_incl); |
70 | 1417 |
/* (A.1) Data structure declaration */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1418 |
s4o_incl.print("// PROGRAM "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1419 |
symbol->program_type_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1420 |
s4o_incl.print("\n// Data part\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1421 |
s4o_incl.print("typedef struct {\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1422 |
s4o_incl.indent_right(); |
70 | 1423 |
|
1424 |
/* (A.2) Public variables: i.e. the program parameters... */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1425 |
s4o_incl.print(s4o_incl.indent_spaces + "// PROGRAM Interface - IN, OUT, IN_OUT variables\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1426 |
vardecl = new generate_c_vardecl_c(&s4o_incl, |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1427 |
generate_c_vardecl_c::local_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1428 |
generate_c_vardecl_c::input_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1429 |
generate_c_vardecl_c::output_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1430 |
generate_c_vardecl_c::inoutput_vt); |
70 | 1431 |
vardecl->print(symbol->var_declarations); |
1432 |
delete vardecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1433 |
s4o_incl.print("\n"); |
70 | 1434 |
/* (A.3) Private internal variables */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1435 |
s4o_incl.print(s4o_incl.indent_spaces + "// PROGRAM private variables - TEMP, private and located variables\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1436 |
vardecl = new generate_c_vardecl_c(&s4o_incl, |
70 | 1437 |
generate_c_vardecl_c::local_vf, |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1438 |
generate_c_vardecl_c::temp_vt | |
70 | 1439 |
generate_c_vardecl_c::private_vt | |
1440 |
generate_c_vardecl_c::located_vt | |
|
1441 |
generate_c_vardecl_c::external_vt); |
|
1442 |
vardecl->print(symbol->var_declarations); |
|
1443 |
delete vardecl; |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1444 |
|
70 | 1445 |
/* (A.4) Generate private internal variables for SFC */ |
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1446 |
sfcdecl = new generate_c_sfcdecl_c(&s4o_incl, symbol); |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1447 |
sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::sfcdecl_sd); |
70 | 1448 |
delete sfcdecl; |
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1449 |
s4o_incl.print("\n"); |
70 | 1450 |
|
1451 |
/* (A.5) Program data structure type name. */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1452 |
s4o_incl.indent_left(); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1453 |
s4o_incl.print("} "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1454 |
symbol->program_type_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1455 |
s4o_incl.print(";\n\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1456 |
delete typedecl; |
70 | 1457 |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1458 |
/* (A.6) Function Block inline function declaration for function invocation */ |
234
e4d31cd0e6d8
Using function_call_iterator in generate_c_inlinefcall instead of creating a new visitor
laurent
parents:
231
diff
changeset
|
1459 |
inlinedecl = new generate_c_inlinefcall_c(&s4o, symbol->program_type_name, symbol, FB_FUNCTION_PARAM"->"); |
337
9a2262fb7994
Fix bug with inline function call in POU programmed in IL
laurent
parents:
330
diff
changeset
|
1460 |
symbol->function_block_body->accept(*inlinedecl); |
234
e4d31cd0e6d8
Using function_call_iterator in generate_c_inlinefcall instead of creating a new visitor
laurent
parents:
231
diff
changeset
|
1461 |
delete inlinedecl; |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1462 |
|
70 | 1463 |
/* (B) Constructor */ |
1464 |
/* (B.1) Constructor name... */ |
|
1465 |
s4o.print(s4o.indent_spaces + "void "); |
|
1466 |
symbol->program_type_name->accept(*this); |
|
1467 |
s4o.print(FB_INIT_SUFFIX); |
|
1468 |
s4o.print("("); |
|
1469 |
||
1470 |
/* first and only parameter is a pointer to the data */ |
|
1471 |
symbol->program_type_name->accept(*this); |
|
1472 |
s4o.print(" *"); |
|
1473 |
s4o.print(FB_FUNCTION_PARAM); |
|
221
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1474 |
s4o.print(", BOOL retain) {\n"); |
70 | 1475 |
s4o.indent_right(); |
1476 |
||
1477 |
/* (B.2) Member initializations... */ |
|
1478 |
s4o.print(s4o.indent_spaces); |
|
1479 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1480 |
generate_c_vardecl_c::constructorinit_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1481 |
generate_c_vardecl_c::input_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1482 |
generate_c_vardecl_c::output_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1483 |
generate_c_vardecl_c::inoutput_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1484 |
generate_c_vardecl_c::private_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1485 |
generate_c_vardecl_c::located_vt | |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1486 |
generate_c_vardecl_c::external_vt); |
70 | 1487 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
1488 |
delete vardecl; |
|
1489 |
s4o.print("\n"); |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1490 |
|
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1491 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, symbol, FB_FUNCTION_PARAM"->"); |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1492 |
|
70 | 1493 |
/* (B.3) Generate private internal variables for SFC */ |
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1494 |
sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::sfcinit_sd); |
70 | 1495 |
|
1496 |
s4o.indent_left(); |
|
1497 |
s4o.print(s4o.indent_spaces + "}\n\n"); |
|
1498 |
||
1499 |
/* (C) Function with PROGRAM body */ |
|
1500 |
/* (C.1) Step definitions */ |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1501 |
sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::stepdef_sd); |
70 | 1502 |
|
1503 |
/* (C.2) Action definitions */ |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1504 |
sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::actiondef_sd); |
70 | 1505 |
|
1506 |
/* (C.3) Function declaration */ |
|
1507 |
s4o.print("// Code part\n"); |
|
1508 |
/* function interface */ |
|
1509 |
s4o.print("void "); |
|
1510 |
symbol->program_type_name->accept(*this); |
|
1511 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
1512 |
s4o.print("("); |
|
1513 |
/* first and only parameter is a pointer to the data */ |
|
1514 |
symbol->program_type_name->accept(*this); |
|
1515 |
s4o.print(" *"); |
|
1516 |
s4o.print(FB_FUNCTION_PARAM); |
|
1517 |
s4o.print(") {\n"); |
|
1518 |
s4o.indent_right(); |
|
1519 |
||
1520 |
/* (C.4) Initialize TEMP variables */ |
|
1521 |
/* function body */ |
|
1522 |
s4o.print(s4o.indent_spaces + "// Initialise TEMP variables\n"); |
|
1523 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1524 |
generate_c_vardecl_c::init_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1525 |
generate_c_vardecl_c::temp_vt); |
70 | 1526 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
1527 |
delete vardecl; |
|
1528 |
s4o.print("\n"); |
|
1529 |
||
1530 |
/* (C.5) Function code */ |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1531 |
generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->program_type_name, symbol, FB_FUNCTION_PARAM"->"); |
70 | 1532 |
symbol->function_block_body->accept(generate_c_code); |
283
214d3fdee596
fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
1533 |
print_end_of_block_label(); |
330
d2facfcf485a
Fix warning on nop statement at the end of function_block and program generated code
laurent
parents:
318
diff
changeset
|
1534 |
s4o.print(s4o.indent_spaces + "return;\n"); |
70 | 1535 |
s4o.indent_left(); |
1536 |
s4o.print(s4o.indent_spaces + "} // "); |
|
1537 |
symbol->program_type_name->accept(*this); |
|
1538 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
1539 |
s4o.print(s4o.indent_spaces + "() \n\n"); |
|
1540 |
||
1541 |
/* (C.6) Step undefinitions */ |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1542 |
sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::stepundef_sd); |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1543 |
|
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1544 |
/* (C.7) Action undefinitions */ |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1545 |
sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::actionundef_sd); |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1546 |
|
70 | 1547 |
delete sfcdecl; |
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
1548 |
|
70 | 1549 |
s4o.indent_left(); |
1550 |
s4o.print("\n\n\n\n"); |
|
1551 |
||
1552 |
return NULL; |
|
1553 |
} |
|
1554 |
||
1555 |
}; /* generate_c_pous_c */ |
|
1556 |
||
1557 |
/***********************************************************************/ |
|
1558 |
/***********************************************************************/ |
|
1559 |
/***********************************************************************/ |
|
1560 |
/***********************************************************************/ |
|
1561 |
/***********************************************************************/ |
|
1562 |
/***********************************************************************/ |
|
1563 |
/***********************************************************************/ |
|
1564 |
/***********************************************************************/ |
|
1565 |
||
1566 |
class generate_c_config_c: public generate_c_typedecl_c { |
|
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1567 |
private: |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1568 |
stage4out_c *s4o_ptr; |
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1569 |
stage4out_c *s4o_incl_ptr; |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1570 |
|
70 | 1571 |
public: |
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1572 |
generate_c_config_c(stage4out_c *s4o_ptr, stage4out_c *s4o_incl_ptr) |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1573 |
: generate_c_typedecl_c(s4o_ptr, s4o_incl_ptr) { |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1574 |
generate_c_config_c::s4o_ptr = s4o_ptr; |
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1575 |
generate_c_config_c::s4o_incl_ptr = s4o_incl_ptr; |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1576 |
}; |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1577 |
|
70 | 1578 |
virtual ~generate_c_config_c(void) {} |
1579 |
||
1580 |
typedef enum { |
|
1581 |
initprotos_dt, |
|
1582 |
initdeclare_dt, |
|
1583 |
runprotos_dt, |
|
1584 |
rundeclare_dt |
|
1585 |
} declaretype_t; |
|
1586 |
||
1587 |
declaretype_t wanted_declaretype; |
|
1588 |
||
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1589 |
|
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1590 |
public: |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1591 |
/********************/ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1592 |
/* 2.1.6 - Pragmas */ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1593 |
/********************/ |
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1594 |
void *visit(enable_code_generation_pragma_c * symbol) { |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1595 |
s4o_ptr->enable_output(); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1596 |
s4o_incl_ptr->enable_output(); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1597 |
return NULL; |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1598 |
} |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1599 |
|
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1600 |
void *visit(disable_code_generation_pragma_c * symbol) { |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1601 |
s4o_ptr->disable_output(); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1602 |
s4o_incl_ptr->disable_output(); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1603 |
return NULL; |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1604 |
} |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1605 |
|
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1606 |
|
70 | 1607 |
/********************************/ |
1608 |
/* B 1.7 Configuration elements */ |
|
1609 |
/********************************/ |
|
1610 |
/* |
|
1611 |
CONFIGURATION configuration_name |
|
1612 |
optional_global_var_declarations |
|
1613 |
(resource_declaration_list | single_resource_declaration) |
|
1614 |
optional_access_declarations |
|
1615 |
optional_instance_specific_initializations |
|
1616 |
END_CONFIGURATION |
|
1617 |
*/ |
|
1618 |
/* |
|
1619 |
SYM_REF6(configuration_declaration_c, configuration_name, global_var_declarations, resource_declarations, access_declarations, instance_specific_initializations, unused) |
|
1620 |
*/ |
|
1621 |
void *visit(configuration_declaration_c *symbol) { |
|
1622 |
generate_c_vardecl_c *vardecl; |
|
1623 |
||
1624 |
/* Insert the header... */ |
|
1625 |
s4o.print("/*******************************************/\n"); |
|
1626 |
s4o.print("/* FILE GENERATED BY iec2c */\n"); |
|
1627 |
s4o.print("/* Editing this file is not recommended... */\n"); |
|
1628 |
s4o.print("/*******************************************/\n\n"); |
|
1629 |
s4o.print("#include \"iec_std_lib.h\"\n\n"); |
|
257 | 1630 |
s4o.print("#include \"accessor.h\"\n\n"); |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1631 |
s4o.print("#include \"POUS.h\"\n\n"); |
250
5d2927300e2c
Adding missing support for accessors and retain in configuration files (Bug and fix reported by Manuele Conti)
laurent
parents:
248
diff
changeset
|
1632 |
|
70 | 1633 |
/* (A) configuration declaration... */ |
1634 |
/* (A.1) configuration name in comment */ |
|
1635 |
s4o.print("// CONFIGURATION "); |
|
1636 |
symbol->configuration_name->accept(*this); |
|
1637 |
s4o.print("\n"); |
|
1638 |
||
1639 |
/* (A.2) Global variables */ |
|
1640 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1641 |
generate_c_vardecl_c::local_vf, |
392
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
1642 |
generate_c_vardecl_c::global_vt, |
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
1643 |
symbol->configuration_name); |
70 | 1644 |
vardecl->print(symbol); |
1645 |
delete vardecl; |
|
1646 |
s4o.print("\n"); |
|
1647 |
||
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1648 |
/* (A.3) Declare global prototypes in include file */ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1649 |
vardecl = new generate_c_vardecl_c(&s4o_incl, |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1650 |
generate_c_vardecl_c::globalprototype_vf, |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1651 |
generate_c_vardecl_c::global_vt, |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1652 |
symbol->configuration_name); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1653 |
vardecl->print(symbol); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1654 |
delete vardecl; |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1655 |
s4o_incl.print("\n"); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1656 |
|
70 | 1657 |
/* (B) Initialisation Function */ |
1658 |
/* (B.1) Ressources initialisation protos... */ |
|
1659 |
wanted_declaretype = initprotos_dt; |
|
1660 |
symbol->resource_declarations->accept(*this); |
|
1661 |
s4o.print("\n"); |
|
1662 |
||
1663 |
/* (B.2) Initialisation function name... */ |
|
1664 |
s4o.print(s4o.indent_spaces + "void config"); |
|
1665 |
s4o.print(FB_INIT_SUFFIX); |
|
1666 |
s4o.print("(void) {\n"); |
|
1667 |
s4o.indent_right(); |
|
250
5d2927300e2c
Adding missing support for accessors and retain in configuration files (Bug and fix reported by Manuele Conti)
laurent
parents:
248
diff
changeset
|
1668 |
s4o.print(s4o.indent_spaces); |
255
86ef2244aef1
Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents:
250
diff
changeset
|
1669 |
s4o.print("BOOL retain;\n"); |
86ef2244aef1
Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents:
250
diff
changeset
|
1670 |
s4o.print(s4o.indent_spaces); |
86ef2244aef1
Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents:
250
diff
changeset
|
1671 |
s4o.print("retain = 0;\n"); |
70 | 1672 |
|
1673 |
/* (B.3) Global variables initializations... */ |
|
1674 |
s4o.print(s4o.indent_spaces); |
|
1675 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1676 |
generate_c_vardecl_c::constructorinit_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1677 |
generate_c_vardecl_c::global_vt); |
70 | 1678 |
vardecl->print(symbol); |
1679 |
delete vardecl; |
|
1680 |
s4o.print("\n"); |
|
1681 |
||
1682 |
/* (B.3) Resources initializations... */ |
|
1683 |
wanted_declaretype = initdeclare_dt; |
|
1684 |
symbol->resource_declarations->accept(*this); |
|
1685 |
||
1686 |
s4o.indent_left(); |
|
1687 |
s4o.print(s4o.indent_spaces + "}\n\n"); |
|
1688 |
||
1689 |
||
1690 |
/* (C) Run Function*/ |
|
1691 |
/* (C.1) Resources run functions protos... */ |
|
1692 |
wanted_declaretype = runprotos_dt; |
|
1693 |
symbol->resource_declarations->accept(*this); |
|
1694 |
s4o.print("\n"); |
|
1695 |
||
1696 |
/* (C.2) Run function name... */ |
|
1697 |
s4o.print(s4o.indent_spaces + "void config"); |
|
1698 |
s4o.print(FB_RUN_SUFFIX); |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
1699 |
s4o.print("(unsigned long tick) {\n"); |
70 | 1700 |
s4o.indent_right(); |
1701 |
||
1702 |
/* (C.3) Resources initializations... */ |
|
1703 |
wanted_declaretype = rundeclare_dt; |
|
1704 |
symbol->resource_declarations->accept(*this); |
|
1705 |
||
1706 |
/* (C.3) Close Public Function body */ |
|
1707 |
s4o.indent_left(); |
|
1708 |
s4o.print(s4o.indent_spaces + "}\n"); |
|
1709 |
||
1710 |
return NULL; |
|
1711 |
} |
|
1712 |
||
1713 |
void *visit(resource_declaration_c *symbol) { |
|
1714 |
if (wanted_declaretype == initprotos_dt || wanted_declaretype == runprotos_dt) { |
|
1715 |
s4o.print(s4o.indent_spaces + "void "); |
|
1716 |
symbol->resource_name->accept(*this); |
|
1717 |
if (wanted_declaretype == initprotos_dt) { |
|
1718 |
s4o.print(FB_INIT_SUFFIX); |
|
1719 |
s4o.print("(void);\n"); |
|
1720 |
} |
|
1721 |
else { |
|
1722 |
s4o.print(FB_RUN_SUFFIX); |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
1723 |
s4o.print("(unsigned long tick);\n"); |
70 | 1724 |
} |
1725 |
} |
|
1726 |
if (wanted_declaretype == initdeclare_dt || wanted_declaretype == rundeclare_dt) { |
|
1727 |
s4o.print(s4o.indent_spaces); |
|
1728 |
symbol->resource_name->accept(*this); |
|
1729 |
if (wanted_declaretype == initdeclare_dt) { |
|
1730 |
s4o.print(FB_INIT_SUFFIX); |
|
1731 |
s4o.print("();\n"); |
|
1732 |
} |
|
1733 |
else { |
|
1734 |
s4o.print(FB_RUN_SUFFIX); |
|
1735 |
s4o.print("(tick);\n"); |
|
1736 |
} |
|
1737 |
} |
|
1738 |
return NULL; |
|
1739 |
} |
|
1740 |
||
1741 |
void *visit(single_resource_declaration_c *symbol) { |
|
1742 |
if (wanted_declaretype == initprotos_dt || wanted_declaretype == runprotos_dt) { |
|
1743 |
s4o.print(s4o.indent_spaces + "void RESOURCE"); |
|
1744 |
if (wanted_declaretype == initprotos_dt) { |
|
1745 |
s4o.print(FB_INIT_SUFFIX); |
|
1746 |
s4o.print("(void);\n"); |
|
1747 |
} |
|
1748 |
else { |
|
1749 |
s4o.print(FB_RUN_SUFFIX); |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
1750 |
s4o.print("(unsigned long tick);\n"); |
70 | 1751 |
} |
1752 |
} |
|
1753 |
if (wanted_declaretype == initdeclare_dt || wanted_declaretype == rundeclare_dt) { |
|
1754 |
s4o.print(s4o.indent_spaces + "RESOURCE"); |
|
1755 |
if (wanted_declaretype == initdeclare_dt) { |
|
1756 |
s4o.print(FB_INIT_SUFFIX); |
|
1757 |
s4o.print("();\n"); |
|
1758 |
} |
|
1759 |
else { |
|
1760 |
s4o.print(FB_RUN_SUFFIX); |
|
1761 |
s4o.print("(tick);\n"); |
|
1762 |
} |
|
1763 |
} |
|
1764 |
return NULL; |
|
1765 |
} |
|
1766 |
||
1767 |
}; |
|
1768 |
||
1769 |
/***********************************************************************/ |
|
1770 |
/***********************************************************************/ |
|
1771 |
/***********************************************************************/ |
|
1772 |
/***********************************************************************/ |
|
1773 |
/***********************************************************************/ |
|
1774 |
/***********************************************************************/ |
|
1775 |
/***********************************************************************/ |
|
1776 |
/***********************************************************************/ |
|
1777 |
||
1778 |
||
1779 |
class generate_c_resources_c: public generate_c_typedecl_c { |
|
1780 |
||
1781 |
search_var_instance_decl_c *search_config_instance; |
|
1782 |
search_var_instance_decl_c *search_resource_instance; |
|
1783 |
||
1784 |
private: |
|
1785 |
/* The name of the resource curretnly being processed... */ |
|
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1786 |
symbol_c *current_configuration; |
70 | 1787 |
symbol_c *current_resource_name; |
184 | 1788 |
symbol_c *current_task_name; |
70 | 1789 |
symbol_c *current_global_vars; |
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1790 |
bool configuration_name; |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1791 |
stage4out_c *s4o_ptr; |
70 | 1792 |
|
1793 |
public: |
|
1794 |
generate_c_resources_c(stage4out_c *s4o_ptr, symbol_c *config_scope, symbol_c *resource_scope, unsigned long time) |
|
1795 |
: generate_c_typedecl_c(s4o_ptr) { |
|
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1796 |
current_configuration = config_scope; |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1797 |
search_config_instance = new search_var_instance_decl_c(config_scope); |
70 | 1798 |
search_resource_instance = new search_var_instance_decl_c(resource_scope); |
1799 |
common_ticktime = time; |
|
1800 |
current_resource_name = NULL; |
|
184 | 1801 |
current_task_name = NULL; |
70 | 1802 |
current_global_vars = NULL; |
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1803 |
configuration_name = false; |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1804 |
generate_c_resources_c::s4o_ptr = s4o_ptr; |
70 | 1805 |
}; |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1806 |
|
70 | 1807 |
virtual ~generate_c_resources_c(void) { |
1808 |
delete search_config_instance; |
|
1809 |
delete search_resource_instance; |
|
1810 |
} |
|
1811 |
||
1812 |
typedef enum { |
|
1813 |
declare_dt, |
|
1814 |
init_dt, |
|
1815 |
run_dt |
|
1816 |
} declaretype_t; |
|
1817 |
||
1818 |
declaretype_t wanted_declaretype; |
|
1819 |
||
1820 |
unsigned long common_ticktime; |
|
1821 |
||
1822 |
const char *current_program_name; |
|
1823 |
||
1824 |
typedef enum { |
|
1825 |
assign_at, |
|
1826 |
send_at |
|
1827 |
} assigntype_t; |
|
1828 |
||
1829 |
assigntype_t wanted_assigntype; |
|
1830 |
||
221
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1831 |
/* the qualifier of variables that need to be processed... */ |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1832 |
static const unsigned int none_vq = 0x0000; |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1833 |
static const unsigned int constant_vq = 0x0001; // CONSTANT |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1834 |
static const unsigned int retain_vq = 0x0002; // RETAIN |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1835 |
static const unsigned int non_retain_vq = 0x0004; // NON_RETAIN |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1836 |
|
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1837 |
/* variable used to store the qualifier of program currently being processed... */ |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1838 |
unsigned int current_varqualifier; |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1839 |
|
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1840 |
void *print_retain(void) { |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1841 |
s4o.print(","); |
221
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1842 |
switch (current_varqualifier) { |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1843 |
case retain_vq: |
221
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1844 |
s4o.print("1"); |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1845 |
break; |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1846 |
case non_retain_vq: |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1847 |
s4o.print("0"); |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1848 |
break; |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1849 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1850 |
s4o.print("retain"); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
1851 |
break; |
221
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1852 |
} |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1853 |
return NULL; |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1854 |
} |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1855 |
|
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1856 |
/*************************/ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1857 |
/* B.1 - Common elements */ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1858 |
/*************************/ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1859 |
/*******************************************/ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1860 |
/* B 1.1 - Letters, digits and identifiers */ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1861 |
/*******************************************/ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1862 |
|
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1863 |
void *visit(identifier_c *symbol) { |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1864 |
if (configuration_name) |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1865 |
s4o.print(symbol->value); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1866 |
else |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1867 |
generate_c_base_c::visit(symbol); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1868 |
return NULL; |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1869 |
} |
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1870 |
|
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1871 |
/********************/ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1872 |
/* 2.1.6 - Pragmas */ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1873 |
/********************/ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1874 |
void *visit(enable_code_generation_pragma_c * symbol) {s4o_ptr->enable_output(); return NULL;} |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1875 |
void *visit(disable_code_generation_pragma_c * symbol) {s4o_ptr->disable_output(); return NULL;} |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1876 |
|
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
1877 |
|
221
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1878 |
/******************************************/ |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1879 |
/* B 1.4.3 - Declaration & Initialisation */ |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1880 |
/******************************************/ |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1881 |
|
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1882 |
void *visit(constant_option_c *symbol) { |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1883 |
current_varqualifier = constant_vq; |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1884 |
return NULL; |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1885 |
} |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1886 |
|
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1887 |
void *visit(retain_option_c *symbol) { |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1888 |
current_varqualifier = retain_vq; |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1889 |
return NULL; |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1890 |
} |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1891 |
|
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1892 |
void *visit(non_retain_option_c *symbol) { |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1893 |
current_varqualifier = non_retain_vq; |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1894 |
return NULL; |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1895 |
} |
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1896 |
|
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1897 |
/********************************/ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1898 |
/* B 1.7 Configuration elements */ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1899 |
/********************************/ |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1900 |
|
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1901 |
void *visit(configuration_declaration_c *symbol) { |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1902 |
return symbol->configuration_name->accept(*this); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1903 |
} |
70 | 1904 |
|
1905 |
/* |
|
1906 |
RESOURCE resource_name ON resource_type_name |
|
1907 |
optional_global_var_declarations |
|
1908 |
single_resource_declaration |
|
1909 |
END_RESOURCE |
|
1910 |
*/ |
|
1911 |
// SYM_REF4(resource_declaration_c, resource_name, resource_type_name, global_var_declarations, resource_declaration) |
|
1912 |
void *visit(resource_declaration_c *symbol) { |
|
1913 |
current_resource_name = symbol->resource_name; |
|
1914 |
current_global_vars = symbol->global_var_declarations; |
|
1915 |
||
1916 |
symbol->resource_declaration->accept(*this); |
|
1917 |
||
1918 |
current_resource_name = NULL; |
|
1919 |
current_global_vars = NULL; |
|
1920 |
return NULL; |
|
1921 |
} |
|
1922 |
||
1923 |
/* task_configuration_list program_configuration_list */ |
|
1924 |
// SYM_REF2(single_resource_declaration_c, task_configuration_list, program_configuration_list) |
|
1925 |
void *visit(single_resource_declaration_c *symbol) { |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1926 |
bool single_resource = current_resource_name == NULL; |
70 | 1927 |
if (single_resource) |
1928 |
current_resource_name = new identifier_c("RESOURCE"); |
|
1929 |
generate_c_vardecl_c *vardecl; |
|
1930 |
||
1931 |
/* Insert the header... */ |
|
1932 |
s4o.print("/*******************************************/\n"); |
|
1933 |
s4o.print("/* FILE GENERATED BY iec2c */\n"); |
|
1934 |
s4o.print("/* Editing this file is not recommended... */\n"); |
|
1935 |
s4o.print("/*******************************************/\n\n"); |
|
1936 |
s4o.print("#include \"iec_std_lib.h\"\n\n"); |
|
1937 |
||
1938 |
/* (A) resource declaration... */ |
|
1939 |
/* (A.1) resource name in comment */ |
|
1940 |
s4o.print("// RESOURCE "); |
|
1941 |
current_resource_name->accept(*this); |
|
120
74640e3c7f53
Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents:
112
diff
changeset
|
1942 |
s4o.print("\n\n"); |
74640e3c7f53
Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents:
112
diff
changeset
|
1943 |
|
237 | 1944 |
s4o.print("extern unsigned long long common_ticktime__;\n\n"); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1945 |
|
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1946 |
s4o.print("#include \"accessor.h\"\n"); |
397
85151b2f35ca
Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents:
396
diff
changeset
|
1947 |
s4o.print("#include \"POUS.h\"\n\n"); |
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1948 |
s4o.print("#include \""); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1949 |
configuration_name = true; |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1950 |
current_configuration->accept(*this); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1951 |
configuration_name = false; |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
1952 |
s4o.print(".h\"\n"); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1953 |
|
70 | 1954 |
/* (A.2) Global variables... */ |
1955 |
if (current_global_vars != NULL) { |
|
1956 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1957 |
generate_c_vardecl_c::local_vf, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1958 |
generate_c_vardecl_c::global_vt, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1959 |
current_resource_name); |
70 | 1960 |
vardecl->print(current_global_vars); |
1961 |
delete vardecl; |
|
120
74640e3c7f53
Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents:
112
diff
changeset
|
1962 |
s4o.print("\n"); |
70 | 1963 |
} |
1964 |
||
1965 |
/* (A.3) POUs inclusion */ |
|
1966 |
s4o.print("#include \"POUS.c\"\n\n"); |
|
1967 |
||
184 | 1968 |
wanted_declaretype = declare_dt; |
1969 |
||
70 | 1970 |
/* (A.4) Resource programs declaration... */ |
184 | 1971 |
symbol->task_configuration_list->accept(*this); |
1972 |
||
1973 |
/* (A.5) Resource programs declaration... */ |
|
70 | 1974 |
symbol->program_configuration_list->accept(*this); |
184 | 1975 |
|
70 | 1976 |
s4o.print("\n"); |
1977 |
||
1978 |
/* (B) resource initialisation function... */ |
|
1979 |
/* (B.1) initialisation function name... */ |
|
1980 |
s4o.print("void "); |
|
1981 |
current_resource_name->accept(*this); |
|
1982 |
s4o.print(FB_INIT_SUFFIX); |
|
1983 |
s4o.print("(void) {\n"); |
|
1984 |
s4o.indent_right(); |
|
221
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
1985 |
s4o.print(s4o.indent_spaces); |
255
86ef2244aef1
Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents:
250
diff
changeset
|
1986 |
s4o.print("BOOL retain;\n"); |
86ef2244aef1
Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents:
250
diff
changeset
|
1987 |
s4o.print(s4o.indent_spaces); |
86ef2244aef1
Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents:
250
diff
changeset
|
1988 |
s4o.print("retain = 0;\n"); |
70 | 1989 |
|
1990 |
/* (B.2) Global variables initialisations... */ |
|
1991 |
if (current_global_vars != NULL) { |
|
1992 |
s4o.print(s4o.indent_spaces); |
|
1993 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1994 |
generate_c_vardecl_c::constructorinit_vf, |
241
0ba6d614573e
Bug with code generation of global located variables in resource fixed thanks to Mario
laurent
parents:
237
diff
changeset
|
1995 |
generate_c_vardecl_c::global_vt, |
0ba6d614573e
Bug with code generation of global located variables in resource fixed thanks to Mario
laurent
parents:
237
diff
changeset
|
1996 |
current_resource_name); |
70 | 1997 |
vardecl->print(current_global_vars); |
1998 |
delete vardecl; |
|
1999 |
} |
|
2000 |
s4o.print("\n"); |
|
2001 |
||
2002 |
wanted_declaretype = init_dt; |
|
184 | 2003 |
|
2004 |
/* (B.3) Tasks initialisations... */ |
|
2005 |
symbol->task_configuration_list->accept(*this); |
|
2006 |
||
2007 |
/* (B.4) Resource programs initialisations... */ |
|
70 | 2008 |
symbol->program_configuration_list->accept(*this); |
2009 |
||
2010 |
s4o.indent_left(); |
|
2011 |
s4o.print("}\n\n"); |
|
2012 |
||
2013 |
/* (C) Resource run function... */ |
|
2014 |
/* (C.1) Run function name... */ |
|
2015 |
s4o.print("void "); |
|
2016 |
current_resource_name->accept(*this); |
|
2017 |
s4o.print(FB_RUN_SUFFIX); |
|
210
8387cac2aba6
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents:
202
diff
changeset
|
2018 |
s4o.print("(unsigned long tick) {\n"); |
70 | 2019 |
s4o.indent_right(); |
2020 |
||
184 | 2021 |
wanted_declaretype = run_dt; |
2022 |
||
70 | 2023 |
/* (C.2) Task management... */ |
2024 |
symbol->task_configuration_list->accept(*this); |
|
2025 |
||
2026 |
/* (C.3) Program run declaration... */ |
|
2027 |
symbol->program_configuration_list->accept(*this); |
|
2028 |
||
2029 |
s4o.indent_left(); |
|
2030 |
s4o.print("}\n\n"); |
|
2031 |
||
2032 |
if (single_resource) { |
|
2033 |
delete current_resource_name; |
|
2034 |
current_resource_name = NULL; |
|
2035 |
} |
|
2036 |
return NULL; |
|
2037 |
} |
|
2038 |
||
2039 |
/* PROGRAM [RETAIN | NON_RETAIN] program_name [WITH task_name] ':' program_type_name ['(' prog_conf_elements ')'] */ |
|
2040 |
//SYM_REF6(program_configuration_c, retain_option, program_name, task_name, program_type_name, prog_conf_elements, unused) |
|
2041 |
void *visit(program_configuration_c *symbol) { |
|
184 | 2042 |
switch (wanted_declaretype) { |
2043 |
case declare_dt: |
|
70 | 2044 |
s4o.print(s4o.indent_spaces); |
184 | 2045 |
symbol->program_type_name->accept(*this); |
2046 |
s4o.print(" "); |
|
2047 |
current_resource_name->accept(*this); |
|
2048 |
s4o.print("__"); |
|
2049 |
symbol->program_name->accept(*this); |
|
2050 |
s4o.print(";\n#define "); |
|
2051 |
symbol->program_name->accept(*this); |
|
2052 |
s4o.print(" "); |
|
2053 |
current_resource_name->accept(*this); |
|
2054 |
s4o.print("__"); |
|
2055 |
symbol->program_name->accept(*this); |
|
2056 |
s4o.print("\n"); |
|
2057 |
break; |
|
2058 |
case init_dt: |
|
221
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
2059 |
if (symbol->retain_option != NULL) |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2060 |
symbol->retain_option->accept(*this); |
184 | 2061 |
s4o.print(s4o.indent_spaces); |
2062 |
symbol->program_type_name->accept(*this); |
|
2063 |
s4o.print(FB_INIT_SUFFIX); |
|
2064 |
s4o.print("(&"); |
|
2065 |
symbol->program_name->accept(*this); |
|
221
c6aed7e5f070
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents:
217
diff
changeset
|
2066 |
print_retain(); |
184 | 2067 |
s4o.print(");\n"); |
2068 |
break; |
|
2069 |
case run_dt: |
|
2070 |
current_program_name = ((identifier_c*)(symbol->program_name))->value; |
|
2071 |
if (symbol->task_name != NULL) { |
|
2072 |
s4o.print(s4o.indent_spaces); |
|
2073 |
s4o.print("if ("); |
|
2074 |
symbol->task_name->accept(*this); |
|
2075 |
s4o.print(") {\n"); |
|
2076 |
s4o.indent_right(); |
|
2077 |
} |
|
70 | 2078 |
|
184 | 2079 |
wanted_assigntype = assign_at; |
2080 |
if (symbol->prog_conf_elements != NULL) |
|
2081 |
symbol->prog_conf_elements->accept(*this); |
|
2082 |
||
2083 |
s4o.print(s4o.indent_spaces); |
|
2084 |
symbol->program_type_name->accept(*this); |
|
2085 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
2086 |
s4o.print("(&"); |
|
2087 |
symbol->program_name->accept(*this); |
|
2088 |
s4o.print(");\n"); |
|
2089 |
||
2090 |
wanted_assigntype = send_at; |
|
2091 |
if (symbol->prog_conf_elements != NULL) |
|
2092 |
symbol->prog_conf_elements->accept(*this); |
|
2093 |
||
2094 |
if (symbol->task_name != NULL) { |
|
2095 |
s4o.indent_left(); |
|
2096 |
s4o.print(s4o.indent_spaces + "}\n"); |
|
2097 |
} |
|
2098 |
break; |
|
2099 |
default: |
|
2100 |
break; |
|
70 | 2101 |
} |
2102 |
return NULL; |
|
2103 |
} |
|
2104 |
||
2105 |
/* TASK task_name task_initialization */ |
|
2106 |
//SYM_REF2(task_configuration_c, task_name, task_initialization) |
|
2107 |
void *visit(task_configuration_c *symbol) { |
|
184 | 2108 |
current_task_name = symbol->task_name; |
2109 |
switch (wanted_declaretype) { |
|
2110 |
case declare_dt: |
|
2111 |
s4o.print(s4o.indent_spaces + "BOOL "); |
|
2112 |
current_task_name->accept(*this); |
|
2113 |
s4o.print(";\n"); |
|
2114 |
symbol->task_initialization->accept(*this); |
|
2115 |
break; |
|
2116 |
case init_dt: |
|
2117 |
s4o.print(s4o.indent_spaces); |
|
2118 |
current_task_name->accept(*this); |
|
2119 |
s4o.print(" = __BOOL_LITERAL(FALSE);\n"); |
|
2120 |
symbol->task_initialization->accept(*this); |
|
2121 |
break; |
|
2122 |
case run_dt: |
|
2123 |
symbol->task_initialization->accept(*this); |
|
2124 |
break; |
|
2125 |
default: |
|
2126 |
break; |
|
2127 |
} |
|
2128 |
current_task_name = NULL; |
|
70 | 2129 |
return NULL; |
2130 |
} |
|
2131 |
||
2132 |
/* '(' [SINGLE ASSIGN data_source ','] [INTERVAL ASSIGN data_source ','] PRIORITY ASSIGN integer ')' */ |
|
2133 |
//SYM_REF4(task_initialization_c, single_data_source, interval_data_source, priority_data_source, unused) |
|
2134 |
void *visit(task_initialization_c *symbol) { |
|
184 | 2135 |
switch (wanted_declaretype) { |
2136 |
case declare_dt: |
|
2137 |
if (symbol->single_data_source != NULL) { |
|
2138 |
s4o.print(s4o.indent_spaces + "R_TRIG "); |
|
2139 |
current_task_name->accept(*this); |
|
2140 |
s4o.print("_R_TRIG;\n"); |
|
2141 |
} |
|
2142 |
break; |
|
2143 |
case init_dt: |
|
2144 |
if (symbol->single_data_source != NULL) { |
|
2145 |
s4o.print(s4o.indent_spaces + "R_TRIG"); |
|
2146 |
s4o.print(FB_INIT_SUFFIX); |
|
2147 |
s4o.print("(&"); |
|
2148 |
current_task_name->accept(*this); |
|
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
2149 |
s4o.print("_R_TRIG, retain);\n"); |
184 | 2150 |
} |
2151 |
break; |
|
2152 |
case run_dt: |
|
2153 |
if (symbol->single_data_source != NULL) { |
|
2154 |
symbol_c *config_var_decl = NULL; |
|
2155 |
symbol_c *res_var_decl = NULL; |
|
392
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
2156 |
s4o.print(s4o.indent_spaces + "{"); |
184 | 2157 |
symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->single_data_source))->global_var_name; |
2158 |
res_var_decl = search_resource_instance->get_decl(current_var_reference); |
|
2159 |
if (res_var_decl == NULL) { |
|
2160 |
config_var_decl = search_config_instance->get_decl(current_var_reference); |
|
2161 |
if (config_var_decl == NULL) |
|
2162 |
ERROR; |
|
2163 |
config_var_decl->accept(*this); |
|
2164 |
} |
|
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
2165 |
else { |
392
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
2166 |
res_var_decl->accept(*this); |
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
2167 |
} |
392
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
2168 |
s4o.print("* "); |
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
2169 |
symbol->single_data_source->accept(*this); |
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
2170 |
s4o.print(" = __GET_GLOBAL_"); |
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
2171 |
symbol->single_data_source->accept(*this); |
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
2172 |
s4o.print("();"); |
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
2173 |
s4o.print(SET_VAR); |
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
2174 |
s4o.print("("); |
184 | 2175 |
current_task_name->accept(*this); |
392
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
2176 |
s4o.print("_R_TRIG.,CLK, *"); |
184 | 2177 |
symbol->single_data_source->accept(*this); |
392
9b88b8b6bccd
Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents:
381
diff
changeset
|
2178 |
s4o.print(");}\n"); |
184 | 2179 |
s4o.print(s4o.indent_spaces + "R_TRIG"); |
2180 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
2181 |
s4o.print("(&"); |
|
2182 |
current_task_name->accept(*this); |
|
2183 |
s4o.print("_R_TRIG);\n"); |
|
2184 |
s4o.print(s4o.indent_spaces); |
|
2185 |
current_task_name->accept(*this); |
|
2186 |
s4o.print(" = "); |
|
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
2187 |
s4o.print(GET_VAR); |
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
2188 |
s4o.print("("); |
184 | 2189 |
current_task_name->accept(*this); |
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
2190 |
s4o.print("_R_TRIG.Q)"); |
184 | 2191 |
} |
2192 |
else { |
|
2193 |
s4o.print(s4o.indent_spaces); |
|
2194 |
current_task_name->accept(*this); |
|
2195 |
s4o.print(" = "); |
|
2196 |
if (symbol->interval_data_source != NULL) { |
|
2197 |
calculate_time_c calculate_time; |
|
2198 |
symbol->interval_data_source->accept(calculate_time); |
|
2199 |
unsigned long time = calculate_time.get_time(); |
|
2200 |
if (time != 0) { |
|
2201 |
s4o.print("!(tick % "); |
|
2202 |
s4o.print_integer((int)(time / common_ticktime)); |
|
2203 |
s4o.print(")"); |
|
2204 |
} |
|
2205 |
else |
|
2206 |
s4o.print("1"); |
|
2207 |
} |
|
2208 |
else |
|
2209 |
s4o.print("1"); |
|
2210 |
} |
|
2211 |
s4o.print(";\n"); |
|
2212 |
break; |
|
2213 |
default: |
|
2214 |
break; |
|
70 | 2215 |
} |
2216 |
return NULL; |
|
2217 |
} |
|
2218 |
||
2219 |
/* any_symbolic_variable ASSIGN prog_data_source */ |
|
2220 |
//SYM_REF2(prog_cnxn_assign_c, symbolic_variable, prog_data_source) |
|
2221 |
void *visit(prog_cnxn_assign_c *symbol) { |
|
2222 |
if (wanted_assigntype == assign_at) { |
|
2223 |
symbol_c *var_decl; |
|
2224 |
unsigned int vartype = 0; |
|
2225 |
symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->prog_data_source))->global_var_name; |
|
2226 |
var_decl = search_resource_instance->get_decl(current_var_reference); |
|
2227 |
if (var_decl == NULL) { |
|
2228 |
var_decl = search_config_instance->get_decl(current_var_reference); |
|
2229 |
if (var_decl == NULL) |
|
2230 |
ERROR; |
|
2231 |
else |
|
417
d48f53715f77
Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents:
397
diff
changeset
|
2232 |
vartype = search_config_instance->get_vartype(current_var_reference); |
70 | 2233 |
} |
2234 |
else |
|
417
d48f53715f77
Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents:
397
diff
changeset
|
2235 |
vartype = search_resource_instance->get_vartype(current_var_reference); |
70 | 2236 |
|
2237 |
s4o.print(s4o.indent_spaces + "{extern "); |
|
2238 |
var_decl->accept(*this); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
2239 |
s4o.print(" *"); |
70 | 2240 |
symbol->prog_data_source->accept(*this); |
2241 |
s4o.print("; "); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
2242 |
s4o.printupper(current_program_name); |
70 | 2243 |
s4o.print("."); |
2244 |
symbol->symbolic_variable->accept(*this); |
|
2245 |
s4o.print(" = "); |
|
506
2b4e69c7ff8b
Fix typo in comparison expression.
Mario de Sousa <msousa@fe.up.pt>
parents:
498
diff
changeset
|
2246 |
if (vartype == search_var_instance_decl_c::global_vt) |
70 | 2247 |
s4o.print("*"); |
2248 |
symbol->prog_data_source->accept(*this); |
|
2249 |
s4o.print(";}\n"); |
|
2250 |
} |
|
2251 |
return NULL; |
|
2252 |
} |
|
2253 |
||
2254 |
/* any_symbolic_variable SENDTO data_sink */ |
|
2255 |
//SYM_REF2(prog_cnxn_sendto_c, symbolic_variable, data_sink) |
|
2256 |
void *visit(prog_cnxn_sendto_c *symbol) { |
|
2257 |
if (wanted_assigntype == send_at) { |
|
2258 |
symbol_c *var_decl; |
|
2259 |
unsigned int vartype = 0; |
|
2260 |
symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->data_sink))->global_var_name; |
|
2261 |
var_decl = search_resource_instance->get_decl(current_var_reference); |
|
2262 |
if (var_decl == NULL) { |
|
2263 |
var_decl = search_config_instance->get_decl(current_var_reference); |
|
2264 |
if (var_decl == NULL) |
|
2265 |
ERROR; |
|
2266 |
else |
|
417
d48f53715f77
Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents:
397
diff
changeset
|
2267 |
vartype = search_config_instance->get_vartype(current_var_reference); |
70 | 2268 |
} |
2269 |
else |
|
417
d48f53715f77
Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents:
397
diff
changeset
|
2270 |
vartype = search_resource_instance->get_vartype(current_var_reference); |
70 | 2271 |
|
2272 |
s4o.print(s4o.indent_spaces + "{extern "); |
|
2273 |
var_decl->accept(*this); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
2274 |
s4o.print(" *"); |
70 | 2275 |
symbol->data_sink->accept(*this); |
2276 |
s4o.print("; "); |
|
506
2b4e69c7ff8b
Fix typo in comparison expression.
Mario de Sousa <msousa@fe.up.pt>
parents:
498
diff
changeset
|
2277 |
if (vartype == search_var_instance_decl_c::global_vt) |
70 | 2278 |
s4o.print("*"); |
2279 |
symbol->data_sink->accept(*this); |
|
2280 |
s4o.print(" = "); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
2281 |
s4o.printupper(current_program_name); |
70 | 2282 |
s4o.print("."); |
2283 |
symbol->symbolic_variable->accept(*this); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
2284 |
s4o.print(";};\n"); |
70 | 2285 |
} |
2286 |
return NULL; |
|
2287 |
} |
|
2288 |
||
2289 |
}; |
|
2290 |
||
2291 |
/***********************************************************************/ |
|
2292 |
/***********************************************************************/ |
|
2293 |
/***********************************************************************/ |
|
2294 |
/***********************************************************************/ |
|
2295 |
/***********************************************************************/ |
|
2296 |
/***********************************************************************/ |
|
2297 |
/***********************************************************************/ |
|
2298 |
/***********************************************************************/ |
|
2299 |
||
2300 |
class generate_c_c: public iterator_visitor_c { |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2301 |
public: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2302 |
typedef enum { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2303 |
none_gm, |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2304 |
datatypes_gm, |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2305 |
pous_gm, |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2306 |
} generate_mode_t; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2307 |
|
70 | 2308 |
protected: |
2309 |
stage4out_c &s4o; |
|
2310 |
stage4out_c pous_s4o; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
2311 |
stage4out_c pous_incl_s4o; |
70 | 2312 |
stage4out_c located_variables_s4o; |
111 | 2313 |
stage4out_c variables_s4o; |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2314 |
generate_c_datatypes_c generate_c_datatypes; |
70 | 2315 |
generate_c_pous_c generate_c_pous; |
111 | 2316 |
|
70 | 2317 |
symbol_c *current_configuration; |
2318 |
||
2319 |
const char *current_name; |
|
2320 |
const char *current_builddir; |
|
2321 |
||
237 | 2322 |
unsigned long long common_ticktime; |
70 | 2323 |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2324 |
generate_mode_t current_mode; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2325 |
|
70 | 2326 |
public: |
2327 |
generate_c_c(stage4out_c *s4o_ptr, const char *builddir): |
|
2328 |
s4o(*s4o_ptr), |
|
2329 |
pous_s4o(builddir, "POUS", "c"), |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
2330 |
pous_incl_s4o(builddir, "POUS", "h"), |
70 | 2331 |
located_variables_s4o(builddir, "LOCATED_VARIABLES","h"), |
112 | 2332 |
variables_s4o(builddir, "VARIABLES","csv"), |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2333 |
generate_c_datatypes(&pous_s4o, &pous_incl_s4o), |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
2334 |
generate_c_pous(&pous_s4o, &pous_incl_s4o) { |
70 | 2335 |
current_builddir = builddir; |
2336 |
current_configuration = NULL; |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2337 |
current_mode = none_gm; |
70 | 2338 |
} |
2339 |
||
2340 |
~generate_c_c(void) {} |
|
2341 |
||
267
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2342 |
|
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2343 |
|
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2344 |
/********************/ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2345 |
/* 2.1.6 - Pragmas */ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2346 |
/********************/ |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2347 |
void *visit(enable_code_generation_pragma_c * symbol) { |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2348 |
s4o .enable_output(); |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2349 |
pous_s4o .enable_output(); |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2350 |
pous_incl_s4o .enable_output(); |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2351 |
located_variables_s4o.enable_output(); |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2352 |
variables_s4o .enable_output(); |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2353 |
return NULL; |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2354 |
} |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2355 |
|
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2356 |
void *visit(disable_code_generation_pragma_c * symbol) { |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2357 |
s4o .disable_output(); |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2358 |
pous_s4o .disable_output(); |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2359 |
pous_incl_s4o .disable_output(); |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2360 |
located_variables_s4o.disable_output(); |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2361 |
variables_s4o .disable_output(); |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2362 |
return NULL; |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2363 |
} |
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2364 |
|
0a1204bcc9af
starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents:
262
diff
changeset
|
2365 |
|
70 | 2366 |
/***************************/ |
2367 |
/* B 0 - Programming Model */ |
|
2368 |
/***************************/ |
|
2369 |
void *visit(library_c *symbol) { |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
2370 |
pous_incl_s4o.print("#ifndef __POUS_H\n#define __POUS_H\n\n#include \"accessor.h\"\n\n"); |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2371 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2372 |
current_mode = datatypes_gm; |
70 | 2373 |
for(int i = 0; i < symbol->n; i++) { |
2374 |
symbol->elements[i]->accept(*this); |
|
2375 |
} |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2376 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2377 |
current_mode = pous_gm; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2378 |
for(int i = 0; i < symbol->n; i++) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2379 |
symbol->elements[i]->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2380 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2381 |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
2382 |
pous_incl_s4o.print("#endif //__POUS_H\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
2383 |
|
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
2384 |
generate_var_list_c generate_var_list(&variables_s4o, symbol); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
2385 |
generate_var_list.generate_programs(symbol); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
2386 |
generate_var_list.generate_variables(symbol); |
397
85151b2f35ca
Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents:
396
diff
changeset
|
2387 |
variables_s4o.print("\n// Ticktime\n"); |
85151b2f35ca
Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents:
396
diff
changeset
|
2388 |
variables_s4o.print_long_long_integer(common_ticktime, false); |
85151b2f35ca
Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents:
396
diff
changeset
|
2389 |
variables_s4o.print("\n"); |
85151b2f35ca
Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents:
396
diff
changeset
|
2390 |
|
98 | 2391 |
generate_location_list_c generate_location_list(&located_variables_s4o); |
2392 |
symbol->accept(generate_location_list); |
|
70 | 2393 |
return NULL; |
2394 |
} |
|
2395 |
||
2396 |
/*************************/ |
|
2397 |
/* B.1 - Common elements */ |
|
2398 |
/*************************/ |
|
2399 |
/*******************************************/ |
|
2400 |
/* B 1.1 - Letters, digits and identifiers */ |
|
2401 |
/*******************************************/ |
|
2402 |
void *visit(identifier_c *symbol) { |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2403 |
current_name = symbol->value; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2404 |
return NULL; |
70 | 2405 |
} |
2406 |
||
98 | 2407 |
/********************************/ |
2408 |
/* B 1.3.3 - Derived data types */ |
|
2409 |
/********************************/ |
|
2410 |
/* TYPE type_declaration_list END_TYPE */ |
|
2411 |
void *visit(data_type_declaration_c *symbol) { |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2412 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2413 |
case datatypes_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2414 |
symbol->accept(generate_c_datatypes); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2415 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2416 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2417 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2418 |
} |
98 | 2419 |
return NULL; |
2420 |
} |
|
2421 |
||
70 | 2422 |
/**************************************/ |
2423 |
/* B.1.5 - Program organization units */ |
|
2424 |
/**************************************/ |
|
2425 |
/***********************/ |
|
2426 |
/* B 1.5.1 - Functions */ |
|
2427 |
/***********************/ |
|
2428 |
void *visit(function_declaration_c *symbol) { |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2429 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2430 |
case datatypes_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2431 |
symbol->var_declarations_list->accept(generate_c_datatypes); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2432 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2433 |
case pous_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2434 |
symbol->accept(generate_c_pous); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2435 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2436 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2437 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2438 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2439 |
return NULL; |
70 | 2440 |
} |
2441 |
||
2442 |
/*****************************/ |
|
2443 |
/* B 1.5.2 - Function Blocks */ |
|
2444 |
/*****************************/ |
|
2445 |
void *visit(function_block_declaration_c *symbol) { |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2446 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2447 |
case datatypes_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2448 |
symbol->var_declarations->accept(generate_c_datatypes); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2449 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2450 |
case pous_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2451 |
symbol->accept(generate_c_pous); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2452 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2453 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2454 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2455 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2456 |
return NULL; |
70 | 2457 |
} |
2458 |
||
2459 |
/**********************/ |
|
2460 |
/* B 1.5.3 - Programs */ |
|
2461 |
/**********************/ |
|
2462 |
void *visit(program_declaration_c *symbol) { |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2463 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2464 |
case datatypes_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2465 |
symbol->var_declarations->accept(generate_c_datatypes); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2466 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2467 |
case pous_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2468 |
symbol->accept(generate_c_pous); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2469 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2470 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2471 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2472 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2473 |
return NULL; |
70 | 2474 |
} |
2475 |
||
2476 |
||
2477 |
/********************************/ |
|
2478 |
/* B 1.7 Configuration elements */ |
|
2479 |
/********************************/ |
|
2480 |
void *visit(configuration_declaration_c *symbol) { |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2481 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2482 |
case datatypes_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2483 |
if (symbol->global_var_declarations != NULL) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2484 |
symbol->global_var_declarations->accept(generate_c_datatypes); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2485 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2486 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2487 |
case pous_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2488 |
static int configuration_count = 0; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2489 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2490 |
if (configuration_count++) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2491 |
/* the first configuration is the one we will use!! */ |
522
f9cff11ae622
Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents:
506
diff
changeset
|
2492 |
STAGE4_ERROR(symbol, symbol, "A previous CONFIGURATION has already been declared (C code generation currently only allows a single configuration)."); |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2493 |
ERROR; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2494 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2495 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2496 |
current_configuration = symbol; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2497 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2498 |
{ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2499 |
calculate_common_ticktime_c calculate_common_ticktime; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2500 |
symbol->accept(calculate_common_ticktime); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2501 |
common_ticktime = calculate_common_ticktime.get_common_ticktime(); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2502 |
if (common_ticktime == 0) { |
522
f9cff11ae622
Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents:
506
diff
changeset
|
2503 |
STAGE4_ERROR(symbol, symbol, "You must define at least one periodic task (to set cycle period)!"); |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2504 |
ERROR; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2505 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2506 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2507 |
symbol->configuration_name->accept(*this); |
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
2508 |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2509 |
stage4out_c config_s4o(current_builddir, current_name, "c"); |
396
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
2510 |
stage4out_c config_incl_s4o(current_builddir, current_name, "h"); |
155560bfe837
Fixing bug with external variables refering to global variables defined in configurations
laurent
parents:
392
diff
changeset
|
2511 |
generate_c_config_c generate_c_config(&config_s4o, &config_incl_s4o); |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2512 |
symbol->accept(generate_c_config); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2513 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2514 |
config_s4o.print("unsigned long long common_ticktime__ = "); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2515 |
config_s4o.print_long_long_integer(common_ticktime); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2516 |
config_s4o.print("; /*ns*/\n"); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2517 |
config_s4o.print("unsigned long greatest_tick_count__ = "); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2518 |
config_s4o.print_long_integer(calculate_common_ticktime.get_greatest_tick_count()); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2519 |
config_s4o.print("; /*tick*/\n"); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2520 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2521 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2522 |
symbol->resource_declarations->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2523 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2524 |
current_configuration = NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2525 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2526 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2527 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2528 |
break; |
70 | 2529 |
} |
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2530 |
return NULL; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2531 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2532 |
|
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2533 |
void *visit(resource_declaration_c *symbol) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2534 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2535 |
case datatypes_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2536 |
if (symbol->global_var_declarations != NULL) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2537 |
symbol->global_var_declarations->accept(generate_c_datatypes); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2538 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2539 |
case pous_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2540 |
symbol->resource_name->accept(*this); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2541 |
{ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2542 |
stage4out_c resources_s4o(current_builddir, current_name, "c"); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2543 |
generate_c_resources_c generate_c_resources(&resources_s4o, current_configuration, symbol, common_ticktime); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2544 |
symbol->accept(generate_c_resources); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2545 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2546 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2547 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2548 |
break; |
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
2549 |
} |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
2550 |
return NULL; |
70 | 2551 |
} |
2552 |
||
2553 |
void *visit(single_resource_declaration_c *symbol) { |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2554 |
switch (current_mode) { |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2555 |
case pous_gm: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2556 |
{ |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2557 |
stage4out_c resources_s4o(current_builddir, "RESOURCE", "c"); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2558 |
generate_c_resources_c generate_c_resources(&resources_s4o, current_configuration, symbol, common_ticktime); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2559 |
symbol->accept(generate_c_resources); |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2560 |
} |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2561 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2562 |
default: |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2563 |
break; |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
355
diff
changeset
|
2564 |
} |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
2565 |
return NULL; |
70 | 2566 |
} |
2567 |
||
2568 |
}; |
|
2569 |
||
2570 |
/***********************************************************************/ |
|
2571 |
/***********************************************************************/ |
|
2572 |
/***********************************************************************/ |
|
2573 |
/***********************************************************************/ |
|
2574 |
/***********************************************************************/ |
|
2575 |
/***********************************************************************/ |
|
2576 |
/***********************************************************************/ |
|
2577 |
/***********************************************************************/ |
|
2578 |
||
2579 |
||
2580 |
||
2581 |
||
2582 |
visitor_c *new_code_generator(stage4out_c *s4o, const char *builddir) {return new generate_c_c(s4o, builddir);} |
|
2583 |
void delete_code_generator(visitor_c *code_generator) {delete code_generator;} |
|
2584 |
||
2585 |