author | laurent |
Sun, 27 Mar 2011 16:19:36 +0200 | |
changeset 253 | 18988de676ac |
parent 250 | 5d2927300e2c |
child 255 | 86ef2244aef1 |
child 258 | d7d92b2f87e9 |
permissions | -rwxr-xr-x |
70 | 1 |
/* |
2 |
* (c) 2003 Mario de Sousa |
|
3 |
* |
|
4 |
* Offered to the public under the terms of the GNU General Public License |
|
5 |
* as published by the Free Software Foundation; either version 2 of the |
|
6 |
* License, or (at your option) any later version. |
|
7 |
* |
|
8 |
* This program is distributed in the hope that it will be useful, but |
|
9 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
|
11 |
* Public License for more details. |
|
12 |
* |
|
13 |
* This code is made available on the understanding that it will not be |
|
14 |
* used in safety-critical situations without a full and competent review. |
|
15 |
*/ |
|
16 |
||
17 |
/* |
|
18 |
* An IEC 61131-3 IL and ST compiler. |
|
19 |
* |
|
20 |
* Based on the |
|
21 |
* FINAL DRAFT - IEC 61131-3, 2nd Ed. (2001-12-10) |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
||
26 |
/* |
|
27 |
* This is one of the versions available for the 4th stage. |
|
28 |
* |
|
29 |
* This 4th stage generates a c++ source program equivalent |
|
30 |
* to the IL and ST code. |
|
31 |
*/ |
|
32 |
||
33 |
||
34 |
||
35 |
||
36 |
||
37 |
||
38 |
// #include <stdio.h> /* required for NULL */ |
|
39 |
#include <string> |
|
40 |
#include <iostream> |
|
41 |
#include <sstream> |
|
42 |
#include <typeinfo> |
|
111 | 43 |
#include <list> |
139
668a54686827
added missing includes on some platform (gentoo/gcc-4.3.1)
etisserant
parents:
138
diff
changeset
|
44 |
#include <strings.h> |
70 | 45 |
|
46 |
#include "../../util/symtable.hh" |
|
47 |
#include "../../util/dsymtable.hh" |
|
48 |
#include "../../absyntax/visitor.hh" |
|
181
38d6eb056260
Moving absyntax utility files out from stage4/generate_c
mario
parents:
178
diff
changeset
|
49 |
#include "../../absyntax_utils/absyntax_utils.hh" |
70 | 50 |
|
51 |
#include "../stage4.hh" |
|
52 |
||
53 |
||
54 |
||
55 |
||
56 |
||
57 |
||
58 |
||
59 |
//#define DEBUG |
|
60 |
#ifdef DEBUG |
|
61 |
#define TRACE(classname) printf("\n____%s____\n",classname); |
|
62 |
#else |
|
63 |
#define TRACE(classname) |
|
64 |
#endif |
|
65 |
||
66 |
||
67 |
||
68 |
#define ERROR error_exit(__FILE__,__LINE__) |
|
69 |
/* function defined in main.cc */ |
|
70 |
extern void error_exit(const char *file_name, int line_no); |
|
71 |
||
72 |
||
73 |
||
74 |
||
75 |
/***********************************************************************/ |
|
76 |
/***********************************************************************/ |
|
77 |
/***********************************************************************/ |
|
78 |
/***********************************************************************/ |
|
79 |
||
80 |
/* Unlike Programs and Configurations which get mapped onto C++ classes, |
|
81 |
* Function Blocks are mapped onto a C structure containing the variables, and |
|
82 |
* a C function containing the code in the FB's body. This is to allow direct allocation |
|
83 |
* of a FB variable (which is really an instance of the C data structure) to |
|
84 |
* a member of a union variable (note that classes with constructors cannot |
|
85 |
* be mebers of a union), which is done in IL when loading a FB onto IL's |
|
86 |
* default variable. |
|
87 |
* |
|
88 |
* So as not to clash the names of the C data structure and the C function, |
|
89 |
* the C structure is given a name identical to that of the FB name, whereas |
|
90 |
* the name of the function is the FB name with a constant string appended. |
|
91 |
* The value of that constant string which is appended is defined in the following |
|
92 |
* constant. |
|
93 |
* In order not to clash with any variable in the IL and ST source codem the |
|
94 |
* following constant should contain a double underscore, which is not allowed |
|
95 |
* in IL and ST. |
|
96 |
* |
|
97 |
* e.g.: FUNTION_BLOCK TEST |
|
98 |
* is mapped onto a TEST data structure, and a TEST_body__ function. |
|
99 |
*/ |
|
100 |
||
101 |
#define FB_FUNCTION_SUFFIX "_body__" |
|
102 |
||
103 |
/* Idem as body, but for initializer FB function */ |
|
104 |
#define FB_INIT_SUFFIX "_init__" |
|
105 |
||
106 |
/* Idem as body, but for run CONFIG and RESOURCE function */ |
|
107 |
#define FB_RUN_SUFFIX "_run__" |
|
108 |
||
109 |
/* The FB body function is passed as the only parameter a pointer to the FB data |
|
110 |
* structure instance. The name of this parameter is given by the following constant. |
|
111 |
* In order not to clash with any variable in the IL and ST source codem the |
|
112 |
* following constant should contain a double underscore, which is not allowed |
|
113 |
* in IL and ST. |
|
114 |
* |
|
115 |
* e.g.: the body of FUNTION_BLOCK TEST |
|
116 |
* is mapped onto the C function |
|
117 |
* TEST_body__(TEST *data__) |
|
118 |
*/ |
|
119 |
||
120 |
#define FB_FUNCTION_PARAM "data__" |
|
121 |
||
122 |
||
123 |
#define SFC_STEP_ACTION_PREFIX "__SFC_" |
|
124 |
||
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
125 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
126 |
/* Variable declaration symbol for accessor macros */ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
127 |
#define DECLARE_VAR "__DECLARE_VAR" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
128 |
#define DECLARE_GLOBAL "__DECLARE_GLOBAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
129 |
#define DECLARE_GLOBAL_LOCATION "__DECLARE_GLOBAL_LOCATION" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
130 |
#define DECLARE_GLOBAL_LOCATED "__DECLARE_GLOBAL_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
131 |
#define DECLARE_EXTERNAL "__DECLARE_EXTERNAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
132 |
#define DECLARE_LOCATED "__DECLARE_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
133 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
134 |
/* Variable declaration symbol for accessor macros */ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
135 |
#define INIT_VAR "__INIT_VAR" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
136 |
#define INIT_GLOBAL "__INIT_GLOBAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
137 |
#define INIT_GLOBAL_LOCATED "__INIT_GLOBAL_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
138 |
#define INIT_EXTERNAL "__INIT_EXTERNAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
139 |
#define INIT_LOCATED "__INIT_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
140 |
#define INIT_LOCATED_VALUE "__INIT_LOCATED_VALUE" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
141 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
142 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
143 |
/* Variable getter symbol for accessor macros */ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
144 |
#define GET_VAR "__GET_VAR" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
145 |
#define GET_EXTERNAL "__GET_EXTERNAL" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
146 |
#define GET_LOCATED "__GET_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
147 |
#define GET_VAR_BY_REF "__GET_VAR_BY_REF" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
148 |
#define GET_EXTERNAL_BY_REF "__GET_EXTERNAL_BY_REF" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
149 |
#define GET_LOCATED_BY_REF "__GET_LOCATED_BY_REF" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
150 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
151 |
/* Variable setter symbol for accessor macros */ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
152 |
#define SET_VAR "__SET_VAR" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
153 |
#define SET_EXTERNAL "__SET_EXTERNAL" |
231
b8527b0abe75
Adding support for forcing global without perturbation from setting external
laurent
parents:
221
diff
changeset
|
154 |
#define SET_COMPLEX_EXTERNAL "__SET_COMPLEX_EXTERNAL" |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
155 |
#define SET_LOCATED "__SET_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
156 |
|
70 | 157 |
|
158 |
/* Generate a name for a temporary variable. |
|
159 |
* Each new name generated is appended a different number, |
|
160 |
* starting off from 0. |
|
161 |
* After calling reset(), the names will start off again from 0. |
|
162 |
*/ |
|
163 |
#define VAR_LEADER "__" |
|
164 |
#define TEMP_VAR VAR_LEADER "TMP_" |
|
165 |
#define SOURCE_VAR VAR_LEADER "SRC_" |
|
166 |
||
217
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 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
169 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
170 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
171 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
172 |
#include "generate_c_base.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
173 |
#include "generate_c_typedecl.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
174 |
#include "generate_c_sfcdecl.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
175 |
#include "generate_c_vardecl.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
176 |
#include "generate_c_configbody.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
177 |
#include "generate_location_list.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
178 |
#include "generate_var_list.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
179 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
180 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
181 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
182 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
183 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
184 |
|
70 | 185 |
#include "generate_c_st.cc" |
186 |
#include "generate_c_il.cc" |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
187 |
#include "generate_c_inlinefcall.cc" |
70 | 188 |
|
189 |
#include "generate_c.hh" |
|
190 |
||
191 |
/***********************************************************************/ |
|
192 |
/***********************************************************************/ |
|
193 |
/***********************************************************************/ |
|
194 |
/***********************************************************************/ |
|
195 |
||
196 |
#define MILLISECOND 1000000 |
|
197 |
#define SECOND 1000 * MILLISECOND |
|
198 |
||
199 |
/* A helper class that knows how to generate code for both the IL and ST languages... */ |
|
200 |
class calculate_time_c: public iterator_visitor_c { |
|
201 |
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
|
202 |
unsigned long long time; |
70 | 203 |
float current_value; |
204 |
||
205 |
public: |
|
206 |
calculate_time_c(void){time = 0;}; |
|
207 |
||
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
|
208 |
unsigned long long get_time(void) {return time;}; |
70 | 209 |
|
210 |
void *get_integer_value(token_c *token) { |
|
211 |
std::string str = ""; |
|
212 |
for (unsigned int i = 0; i < strlen(token->value); i++) |
|
213 |
if (token->value[i] != '_') |
|
214 |
str += token->value[i]; |
|
215 |
current_value = atof(str.c_str()); |
|
216 |
return NULL; |
|
217 |
} |
|
218 |
||
219 |
void *get_float_value(token_c *token) { |
|
220 |
current_value = atof(token->value); |
|
221 |
return NULL; |
|
222 |
} |
|
223 |
||
224 |
/******************************/ |
|
225 |
/* B 1.2.1 - Numeric Literals */ |
|
226 |
/******************************/ |
|
227 |
||
228 |
void *visit(integer_c *symbol) {return get_integer_value(symbol);} |
|
229 |
||
230 |
/************************/ |
|
231 |
/* B 1.2.3.1 - Duration */ |
|
232 |
/************************/ |
|
233 |
||
234 |
/* SYM_REF2(duration_c, neg, interval) */ |
|
235 |
void *visit(duration_c *symbol) { |
|
236 |
if (symbol->neg != NULL) |
|
237 |
ERROR; |
|
238 |
symbol->interval->accept(*this); |
|
239 |
return NULL; |
|
240 |
} |
|
241 |
||
242 |
/* SYM_TOKEN(fixed_point_c) */ |
|
243 |
void *visit(fixed_point_c *symbol) {return get_float_value(symbol);} |
|
244 |
||
245 |
/* SYM_REF2(days_c, days, hours) */ |
|
246 |
void *visit(days_c *symbol) { |
|
247 |
if (symbol->hours) |
|
248 |
symbol->hours->accept(*this); |
|
249 |
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
|
250 |
time += (unsigned long long)(current_value * 24 * 3600 * SECOND); |
70 | 251 |
return NULL; |
252 |
} |
|
253 |
||
254 |
/* SYM_REF2(hours_c, hours, minutes) */ |
|
255 |
void *visit(hours_c *symbol) { |
|
256 |
if (symbol->minutes) |
|
257 |
symbol->minutes->accept(*this); |
|
258 |
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
|
259 |
time += (unsigned long long)(current_value * 3600 * SECOND); |
70 | 260 |
return NULL; |
261 |
} |
|
262 |
||
263 |
/* SYM_REF2(minutes_c, minutes, seconds) */ |
|
264 |
void *visit(minutes_c *symbol) { |
|
265 |
if (symbol->seconds) |
|
266 |
symbol->seconds->accept(*this); |
|
267 |
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
|
268 |
time += (unsigned long long)(current_value * 60 * SECOND); |
70 | 269 |
return NULL; |
270 |
} |
|
271 |
||
272 |
/* SYM_REF2(seconds_c, seconds, milliseconds) */ |
|
273 |
void *visit(seconds_c *symbol) { |
|
274 |
if (symbol->milliseconds) |
|
275 |
symbol->milliseconds->accept(*this); |
|
276 |
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
|
277 |
time += (unsigned long long)(current_value * SECOND); |
70 | 278 |
return NULL; |
279 |
} |
|
280 |
||
281 |
/* SYM_REF2(milliseconds_c, milliseconds, unused) */ |
|
282 |
void *visit(milliseconds_c *symbol) { |
|
283 |
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
|
284 |
time += (unsigned long long)(current_value * MILLISECOND); |
70 | 285 |
return NULL; |
286 |
} |
|
287 |
}; |
|
288 |
||
289 |
/***********************************************************************/ |
|
290 |
/***********************************************************************/ |
|
291 |
/***********************************************************************/ |
|
292 |
/***********************************************************************/ |
|
293 |
||
294 |
class calculate_common_ticktime_c: public iterator_visitor_c { |
|
295 |
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
|
296 |
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
|
297 |
unsigned long long least_common_ticktime; |
70 | 298 |
|
299 |
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
|
300 |
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
|
301 |
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
|
302 |
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
|
303 |
} |
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
|
304 |
|
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
|
305 |
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
|
306 |
unsigned long long c = a % b; |
70 | 307 |
if (c == 0) |
308 |
return b; |
|
309 |
else |
|
310 |
return euclide(b, c); |
|
311 |
} |
|
312 |
||
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
|
313 |
void update_ticktime(unsigned long long time) { |
70 | 314 |
if (common_ticktime == 0) |
315 |
common_ticktime = time; |
|
316 |
else if (time > common_ticktime) |
|
317 |
common_ticktime = euclide(time, common_ticktime); |
|
318 |
else |
|
319 |
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
|
320 |
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
|
321 |
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
|
322 |
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
|
323 |
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
|
324 |
} |
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
|
325 |
|
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
|
326 |
unsigned long long get_common_ticktime(void) { |
70 | 327 |
return common_ticktime; |
328 |
} |
|
329 |
||
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
|
330 |
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
|
331 |
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
|
332 |
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
|
333 |
ERROR; |
237 | 334 |
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
|
335 |
} |
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
|
336 |
|
70 | 337 |
/* TASK task_name task_initialization */ |
338 |
//SYM_REF2(task_configuration_c, task_name, task_initialization) |
|
339 |
void *visit(task_initialization_c *symbol) { |
|
340 |
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
|
341 |
unsigned long long time = 0; |
70 | 342 |
if (symbol->interval_data_source != NULL) { |
343 |
symbol->interval_data_source->accept(calculate_time); |
|
344 |
time = calculate_time.get_time(); |
|
345 |
} |
|
346 |
if (time > 0) |
|
347 |
update_ticktime(time); |
|
348 |
return NULL; |
|
349 |
} |
|
350 |
}; |
|
351 |
||
352 |
/***********************************************************************/ |
|
353 |
/***********************************************************************/ |
|
354 |
/***********************************************************************/ |
|
355 |
/***********************************************************************/ |
|
356 |
||
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
357 |
/* A helper class that knows how to generate code for the SFC, IL and ST languages... */ |
70 | 358 |
class generate_c_SFC_IL_ST_c: public null_visitor_c { |
359 |
private: |
|
360 |
stage4out_c *s4o_ptr; |
|
361 |
symbol_c *scope; |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
362 |
symbol_c *fbname; |
70 | 363 |
const char *variable_prefix; |
364 |
||
365 |
public: |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
366 |
generate_c_SFC_IL_ST_c(stage4out_c *s4o_ptr, symbol_c *name, symbol_c *scope, const char *variable_prefix = NULL); |
70 | 367 |
/*********************************************/ |
368 |
/* B.1.6 Sequential function chart elements */ |
|
369 |
/*********************************************/ |
|
370 |
||
371 |
/*| sequential_function_chart sfc_network*/ |
|
372 |
void *visit(sequential_function_chart_c * symbol); |
|
373 |
||
374 |
/****************************************/ |
|
375 |
/* B.2 - Language IL (Instruction List) */ |
|
376 |
/****************************************/ |
|
377 |
||
378 |
/***********************************/ |
|
379 |
/* B 2.1 Instructions and Operands */ |
|
380 |
/***********************************/ |
|
381 |
/*| instruction_list il_instruction */ |
|
382 |
void *visit(instruction_list_c *symbol); |
|
383 |
||
384 |
/* Remainder implemented in generate_c_il_c... */ |
|
385 |
||
386 |
/***************************************/ |
|
387 |
/* B.3 - Language ST (Structured Text) */ |
|
388 |
/***************************************/ |
|
389 |
/***********************/ |
|
390 |
/* B 3.1 - Expressions */ |
|
391 |
/***********************/ |
|
392 |
/* Implemented in generate_c_st_c */ |
|
393 |
||
394 |
/********************/ |
|
395 |
/* B 3.2 Statements */ |
|
396 |
/********************/ |
|
397 |
void *visit(statement_list_c *symbol); |
|
398 |
||
399 |
/* Remainder implemented in generate_c_st_c... */ |
|
400 |
}; |
|
401 |
||
402 |
#include "generate_c_sfc.cc" |
|
403 |
||
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
404 |
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 | 405 |
if (NULL == scope) ERROR; |
406 |
this->s4o_ptr = s4o_ptr; |
|
407 |
this->scope = scope; |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
408 |
this->fbname = name; |
70 | 409 |
this->variable_prefix = variable_prefix; |
410 |
} |
|
411 |
||
412 |
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
|
413 |
generate_c_sfc_c generate_c_sfc(s4o_ptr, fbname, scope, variable_prefix); |
70 | 414 |
generate_c_sfc.generate(symbol); |
415 |
return NULL; |
|
416 |
} |
|
417 |
||
418 |
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
|
419 |
generate_c_il_c generate_c_il(s4o_ptr, fbname, scope, variable_prefix); |
70 | 420 |
generate_c_il.generate(symbol); |
421 |
return NULL; |
|
422 |
} |
|
423 |
||
424 |
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
|
425 |
generate_c_st_c generate_c_st(s4o_ptr, fbname, scope, variable_prefix); |
70 | 426 |
generate_c_st.generate(symbol); |
427 |
return NULL; |
|
428 |
} |
|
429 |
||
430 |
||
431 |
||
432 |
||
433 |
/***********************************************************************/ |
|
434 |
/***********************************************************************/ |
|
435 |
/***********************************************************************/ |
|
436 |
/***********************************************************************/ |
|
437 |
/***********************************************************************/ |
|
438 |
||
439 |
||
440 |
class generate_c_pous_c: public generate_c_typedecl_c { |
|
441 |
||
442 |
public: |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
443 |
generate_c_pous_c(stage4out_c *s4o_ptr, stage4out_c *s4o_incl_ptr) |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
444 |
: generate_c_typedecl_c(s4o_ptr, s4o_incl_ptr) {}; |
70 | 445 |
virtual ~generate_c_pous_c(void) {} |
446 |
||
447 |
||
448 |
public: |
|
449 |
||
450 |
/*************************/ |
|
451 |
/* B.1 - Common elements */ |
|
452 |
/*************************/ |
|
453 |
/*******************************************/ |
|
454 |
/* B 1.1 - Letters, digits and identifiers */ |
|
455 |
/*******************************************/ |
|
456 |
/* done in base class(es) */ |
|
457 |
||
458 |
/*********************/ |
|
459 |
/* B 1.2 - Constants */ |
|
460 |
/*********************/ |
|
461 |
/* originally empty... */ |
|
462 |
||
463 |
/******************************/ |
|
464 |
/* B 1.2.1 - Numeric Literals */ |
|
465 |
/******************************/ |
|
466 |
/* done in base class(es) */ |
|
467 |
||
468 |
/*******************************/ |
|
469 |
/* B.1.2.2 Character Strings */ |
|
470 |
/*******************************/ |
|
471 |
/* done in base class(es) */ |
|
472 |
||
473 |
/***************************/ |
|
474 |
/* B 1.2.3 - Time Literals */ |
|
475 |
/***************************/ |
|
476 |
/************************/ |
|
477 |
/* B 1.2.3.1 - Duration */ |
|
478 |
/************************/ |
|
479 |
/* done in base class(es) */ |
|
480 |
||
481 |
/************************************/ |
|
482 |
/* B 1.2.3.2 - Time of day and Date */ |
|
483 |
/************************************/ |
|
484 |
/* done in base class(es) */ |
|
485 |
||
486 |
/**********************/ |
|
487 |
/* B.1.3 - Data types */ |
|
488 |
/**********************/ |
|
489 |
/***********************************/ |
|
490 |
/* B 1.3.1 - Elementary Data Types */ |
|
491 |
/***********************************/ |
|
492 |
/* done in base class(es) */ |
|
493 |
||
494 |
/********************************/ |
|
495 |
/* B.1.3.2 - Generic data types */ |
|
496 |
/********************************/ |
|
497 |
/* originally empty... */ |
|
498 |
||
499 |
/********************************/ |
|
500 |
/* B 1.3.3 - Derived data types */ |
|
501 |
/********************************/ |
|
502 |
/* done in base class(es) */ |
|
503 |
||
504 |
/*********************/ |
|
505 |
/* B 1.4 - Variables */ |
|
506 |
/*********************/ |
|
507 |
/* done in base class(es) */ |
|
508 |
||
509 |
/********************************************/ |
|
510 |
/* B.1.4.1 Directly Represented Variables */ |
|
511 |
/********************************************/ |
|
512 |
/* done in base class(es) */ |
|
513 |
||
514 |
/*************************************/ |
|
515 |
/* B.1.4.2 Multi-element Variables */ |
|
516 |
/*************************************/ |
|
517 |
/* done in base class(es) */ |
|
518 |
||
519 |
/******************************************/ |
|
520 |
/* B 1.4.3 - Declaration & Initialisation */ |
|
521 |
/******************************************/ |
|
522 |
/* done in base class(es) */ |
|
523 |
||
524 |
/**************************************/ |
|
525 |
/* B.1.5 - Program organization units */ |
|
526 |
/**************************************/ |
|
527 |
/***********************/ |
|
528 |
/* B 1.5.1 - Functions */ |
|
529 |
/***********************/ |
|
530 |
||
531 |
public: |
|
532 |
/* FUNCTION derived_function_name ':' elementary_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
|
533 |
/* | FUNCTION derived_function_name ':' derived_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
|
534 |
void *visit(function_declaration_c *symbol) { |
|
535 |
generate_c_vardecl_c *vardecl; |
|
536 |
TRACE("function_declaration_c"); |
|
537 |
||
538 |
/* (A) Function declaration... */ |
|
539 |
/* (A.1) Function return type */ |
|
540 |
s4o.print("// FUNCTION\n"); |
|
541 |
symbol->type_name->accept(*this); /* return type */ |
|
542 |
s4o.print(" "); |
|
543 |
/* (A.2) Function name */ |
|
544 |
symbol->derived_function_name->accept(*this); |
|
545 |
s4o.print("("); |
|
546 |
||
547 |
/* (A.3) Function parameters */ |
|
548 |
s4o.indent_right(); |
|
549 |
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
|
550 |
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
|
551 |
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
|
552 |
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
|
553 |
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
|
554 |
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
|
555 |
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
|
556 |
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
|
557 |
delete vardecl; |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
558 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
559 |
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
|
560 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
561 |
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
|
562 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
563 |
/* (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
|
564 |
/* (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
|
565 |
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
|
566 |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
567 |
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
|
568 |
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
|
569 |
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
|
570 |
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
|
571 |
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
|
572 |
generate_c_vardecl_c::eno_vt); |
70 | 573 |
vardecl->print(symbol->var_declarations_list); |
574 |
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
|
575 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
576 |
/* (B.2) Temporary variable for function's return value */ |
70 | 577 |
/* It will have the same name as the function itself! */ |
578 |
s4o.print(s4o.indent_spaces); |
|
579 |
symbol->type_name->accept(*this); /* return type */ |
|
580 |
s4o.print(" "); |
|
581 |
symbol->derived_function_name->accept(*this); |
|
582 |
s4o.print(" = "); |
|
583 |
{ |
|
584 |
/* get the default value of this variable's type */ |
|
585 |
symbol_c *default_value = (symbol_c *)symbol->type_name->accept(*type_initial_value_c::instance()); |
|
586 |
if (default_value == NULL) ERROR; |
|
587 |
default_value->accept(*this); |
|
588 |
} |
|
589 |
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
|
590 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
591 |
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
|
592 |
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
|
593 |
s4o.indent_right(); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
594 |
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
|
595 |
s4o.indent_right(); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
596 |
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
|
597 |
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
|
598 |
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
|
599 |
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
|
600 |
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
|
601 |
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
|
602 |
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
|
603 |
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
|
604 |
|
70 | 605 |
/* (C) Function body */ |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
606 |
generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->derived_function_name, symbol); |
70 | 607 |
symbol->function_body->accept(generate_c_code); |
145 | 608 |
|
609 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
610 |
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
|
611 |
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
|
612 |
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
|
613 |
generate_c_vardecl_c::eno_vt); |
145 | 614 |
vardecl->print(symbol->var_declarations_list); |
615 |
delete vardecl; |
|
616 |
||
70 | 617 |
s4o.print(s4o.indent_spaces + "return "); |
618 |
symbol->derived_function_name->accept(*this); |
|
619 |
s4o.print(";\n"); |
|
620 |
s4o.indent_left(); |
|
621 |
s4o.print(s4o.indent_spaces + "}\n\n\n"); |
|
622 |
||
623 |
return NULL; |
|
624 |
} |
|
625 |
||
626 |
||
627 |
/* The remaining var_declarations_list_c, function_var_decls_c |
|
628 |
* and var2_init_decl_list_c are handled in the generate_c_vardecl_c class |
|
629 |
*/ |
|
630 |
||
631 |
||
632 |
/*****************************/ |
|
633 |
/* B 1.5.2 - Function Blocks */ |
|
634 |
/*****************************/ |
|
635 |
public: |
|
636 |
/* FUNCTION_BLOCK derived_function_block_name io_OR_other_var_declarations function_block_body END_FUNCTION_BLOCK */ |
|
637 |
//SYM_REF4(function_block_declaration_c, fblock_name, var_declarations, fblock_body, unused) |
|
638 |
void *visit(function_block_declaration_c *symbol) { |
|
639 |
generate_c_vardecl_c *vardecl; |
|
640 |
generate_c_sfcdecl_c *sfcdecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
641 |
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
|
642 |
generate_c_inlinefcall_c *inlinedecl; |
70 | 643 |
TRACE("function_block_declaration_c"); |
644 |
||
645 |
/* (A) Function Block data structure declaration... */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
646 |
typedecl = new generate_c_typedecl_c(&s4o_incl); |
70 | 647 |
/* (A.1) Data structure declaration */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
648 |
s4o_incl.print("// FUNCTION_BLOCK "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
649 |
symbol->fblock_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
650 |
s4o_incl.print("\n// Data part\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
651 |
s4o_incl.print("typedef struct {\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
652 |
s4o_incl.indent_right(); |
70 | 653 |
/* (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
|
654 |
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
|
655 |
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
|
656 |
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
|
657 |
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
|
658 |
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
|
659 |
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
|
660 |
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
|
661 |
generate_c_vardecl_c::eno_vt); |
70 | 662 |
vardecl->print(symbol->var_declarations); |
663 |
delete vardecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
664 |
s4o_incl.print("\n"); |
70 | 665 |
/* (A.3) Private internal variables */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
666 |
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
|
667 |
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
|
668 |
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
|
669 |
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
|
670 |
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
|
671 |
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
|
672 |
generate_c_vardecl_c::external_vt); |
70 | 673 |
vardecl->print(symbol->var_declarations); |
674 |
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
|
675 |
|
70 | 676 |
/* (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
|
677 |
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
|
678 |
sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::sfcdecl_sd); |
70 | 679 |
delete sfcdecl; |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
680 |
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
|
681 |
|
70 | 682 |
/* (A.5) Function Block data structure type name. */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
683 |
s4o_incl.indent_left(); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
684 |
s4o_incl.print("} "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
685 |
symbol->fblock_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
686 |
s4o_incl.print(";\n\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
687 |
delete typedecl; |
70 | 688 |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
689 |
/* (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
|
690 |
inlinedecl = new generate_c_inlinefcall_c(&s4o, symbol->fblock_name, symbol, FB_FUNCTION_PARAM"->"); |
e4d31cd0e6d8
Using function_call_iterator in generate_c_inlinefcall instead of creating a new visitor
laurent
parents:
231
diff
changeset
|
691 |
inlinedecl->print(symbol->fblock_body); |
e4d31cd0e6d8
Using function_call_iterator in generate_c_inlinefcall instead of creating a new visitor
laurent
parents:
231
diff
changeset
|
692 |
delete inlinedecl; |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
693 |
|
70 | 694 |
/* (B) Constructor */ |
695 |
/* (B.1) Constructor name... */ |
|
696 |
s4o.print(s4o.indent_spaces + "void "); |
|
697 |
symbol->fblock_name->accept(*this); |
|
698 |
s4o.print(FB_INIT_SUFFIX); |
|
699 |
s4o.print("("); |
|
700 |
||
701 |
/* first and only parameter is a pointer to the data */ |
|
702 |
symbol->fblock_name->accept(*this); |
|
703 |
s4o.print(" *"); |
|
704 |
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
|
705 |
s4o.print(", BOOL retain) {\n"); |
70 | 706 |
s4o.indent_right(); |
707 |
||
708 |
/* (B.2) Member initializations... */ |
|
709 |
s4o.print(s4o.indent_spaces); |
|
710 |
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
|
711 |
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
|
712 |
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
|
713 |
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
|
714 |
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
|
715 |
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
|
716 |
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
|
717 |
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
|
718 |
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
|
719 |
generate_c_vardecl_c::eno_vt); |
70 | 720 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
721 |
delete vardecl; |
|
722 |
s4o.print("\n"); |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
723 |
|
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
724 |
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
|
725 |
|
70 | 726 |
/* (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
|
727 |
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
|
728 |
|
70 | 729 |
s4o.indent_left(); |
730 |
s4o.print(s4o.indent_spaces + "}\n\n"); |
|
731 |
||
732 |
||
733 |
/* (C) Function with FB body */ |
|
734 |
/* (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
|
735 |
sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::stepdef_sd); |
70 | 736 |
|
737 |
/* (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
|
738 |
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
|
739 |
|
70 | 740 |
/* (C.3) Function declaration */ |
741 |
s4o.print("// Code part\n"); |
|
742 |
/* function interface */ |
|
743 |
s4o.print("void "); |
|
744 |
symbol->fblock_name->accept(*this); |
|
745 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
746 |
s4o.print("("); |
|
747 |
/* first and only parameter is a pointer to the data */ |
|
748 |
symbol->fblock_name->accept(*this); |
|
749 |
s4o.print(" *"); |
|
750 |
s4o.print(FB_FUNCTION_PARAM); |
|
751 |
s4o.print(") {\n"); |
|
752 |
s4o.indent_right(); |
|
753 |
||
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
754 |
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
|
755 |
s4o.print(s4o.indent_spaces + "if (!"); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
756 |
s4o.print(GET_VAR); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
757 |
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
|
758 |
s4o.print(FB_FUNCTION_PARAM); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
759 |
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
|
760 |
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
|
761 |
s4o.print(s4o.indent_spaces); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
762 |
s4o.print(SET_VAR); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
763 |
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
|
764 |
s4o.print(FB_FUNCTION_PARAM); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
765 |
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
|
766 |
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
|
767 |
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
|
768 |
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
|
769 |
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
|
770 |
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
|
771 |
s4o.print(s4o.indent_spaces); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
772 |
s4o.print(SET_VAR); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
773 |
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
|
774 |
s4o.print(FB_FUNCTION_PARAM); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
775 |
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
|
776 |
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
|
777 |
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
|
778 |
|
70 | 779 |
/* (C.4) Initialize TEMP variables */ |
780 |
/* function body */ |
|
781 |
s4o.print(s4o.indent_spaces + "// Initialise TEMP variables\n"); |
|
782 |
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
|
783 |
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
|
784 |
generate_c_vardecl_c::temp_vt); |
70 | 785 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
786 |
delete vardecl; |
|
787 |
s4o.print("\n"); |
|
788 |
||
789 |
/* (C.5) Function code */ |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
790 |
generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->fblock_name, symbol, FB_FUNCTION_PARAM"->"); |
70 | 791 |
symbol->fblock_body->accept(generate_c_code); |
792 |
s4o.indent_left(); |
|
793 |
s4o.print(s4o.indent_spaces + "} // "); |
|
794 |
symbol->fblock_name->accept(*this); |
|
795 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
796 |
s4o.print(s4o.indent_spaces + "() \n\n"); |
|
797 |
||
798 |
/* (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
|
799 |
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
|
800 |
|
70 | 801 |
/* (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
|
802 |
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
|
803 |
|
70 | 804 |
delete sfcdecl; |
805 |
||
806 |
s4o.indent_left(); |
|
807 |
s4o.print("\n\n\n\n"); |
|
808 |
||
809 |
return NULL; |
|
810 |
} |
|
811 |
||
812 |
||
813 |
/* The remaining temp_var_decls_c, temp_var_decls_list_c |
|
814 |
* and non_retentive_var_decls_c are handled in the generate_c_vardecl_c class |
|
815 |
*/ |
|
816 |
||
817 |
||
818 |
/**********************/ |
|
819 |
/* B 1.5.3 - Programs */ |
|
820 |
/**********************/ |
|
821 |
||
822 |
||
823 |
||
824 |
public: |
|
825 |
/* PROGRAM program_type_name program_var_declarations_list function_block_body END_PROGRAM */ |
|
826 |
//SYM_REF4(program_declaration_c, program_type_name, var_declarations, function_block_body, unused) |
|
827 |
void *visit(program_declaration_c *symbol) { |
|
828 |
generate_c_vardecl_c *vardecl; |
|
829 |
generate_c_sfcdecl_c *sfcdecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
830 |
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
|
831 |
generate_c_inlinefcall_c *inlinedecl; |
70 | 832 |
TRACE("program_declaration_c"); |
833 |
||
834 |
/* (A) Program data structure declaration... */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
835 |
typedecl = new generate_c_typedecl_c(&s4o_incl); |
70 | 836 |
/* (A.1) Data structure declaration */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
837 |
s4o_incl.print("// PROGRAM "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
838 |
symbol->program_type_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
839 |
s4o_incl.print("\n// Data part\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
840 |
s4o_incl.print("typedef struct {\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
841 |
s4o_incl.indent_right(); |
70 | 842 |
|
843 |
/* (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
|
844 |
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
|
845 |
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
|
846 |
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
|
847 |
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
|
848 |
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
|
849 |
generate_c_vardecl_c::inoutput_vt); |
70 | 850 |
vardecl->print(symbol->var_declarations); |
851 |
delete vardecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
852 |
s4o_incl.print("\n"); |
70 | 853 |
/* (A.3) Private internal variables */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
854 |
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
|
855 |
vardecl = new generate_c_vardecl_c(&s4o_incl, |
70 | 856 |
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
|
857 |
generate_c_vardecl_c::temp_vt | |
70 | 858 |
generate_c_vardecl_c::private_vt | |
859 |
generate_c_vardecl_c::located_vt | |
|
860 |
generate_c_vardecl_c::external_vt); |
|
861 |
vardecl->print(symbol->var_declarations); |
|
862 |
delete vardecl; |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
863 |
|
70 | 864 |
/* (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
|
865 |
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
|
866 |
sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::sfcdecl_sd); |
70 | 867 |
delete sfcdecl; |
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
868 |
s4o_incl.print("\n"); |
70 | 869 |
|
870 |
/* (A.5) Program data structure type name. */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
871 |
s4o_incl.indent_left(); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
872 |
s4o_incl.print("} "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
873 |
symbol->program_type_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
874 |
s4o_incl.print(";\n\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
875 |
delete typedecl; |
70 | 876 |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
877 |
/* (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
|
878 |
inlinedecl = new generate_c_inlinefcall_c(&s4o, symbol->program_type_name, symbol, FB_FUNCTION_PARAM"->"); |
e4d31cd0e6d8
Using function_call_iterator in generate_c_inlinefcall instead of creating a new visitor
laurent
parents:
231
diff
changeset
|
879 |
inlinedecl->print(symbol->function_block_body); |
e4d31cd0e6d8
Using function_call_iterator in generate_c_inlinefcall instead of creating a new visitor
laurent
parents:
231
diff
changeset
|
880 |
delete inlinedecl; |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
881 |
|
70 | 882 |
/* (B) Constructor */ |
883 |
/* (B.1) Constructor name... */ |
|
884 |
s4o.print(s4o.indent_spaces + "void "); |
|
885 |
symbol->program_type_name->accept(*this); |
|
886 |
s4o.print(FB_INIT_SUFFIX); |
|
887 |
s4o.print("("); |
|
888 |
||
889 |
/* first and only parameter is a pointer to the data */ |
|
890 |
symbol->program_type_name->accept(*this); |
|
891 |
s4o.print(" *"); |
|
892 |
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
|
893 |
s4o.print(", BOOL retain) {\n"); |
70 | 894 |
s4o.indent_right(); |
895 |
||
896 |
/* (B.2) Member initializations... */ |
|
897 |
s4o.print(s4o.indent_spaces); |
|
898 |
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
|
899 |
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
|
900 |
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
|
901 |
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
|
902 |
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
|
903 |
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
|
904 |
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
|
905 |
generate_c_vardecl_c::external_vt); |
70 | 906 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
907 |
delete vardecl; |
|
908 |
s4o.print("\n"); |
|
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
909 |
|
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
910 |
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
|
911 |
|
70 | 912 |
/* (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
|
913 |
sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::sfcinit_sd); |
70 | 914 |
|
915 |
s4o.indent_left(); |
|
916 |
s4o.print(s4o.indent_spaces + "}\n\n"); |
|
917 |
||
918 |
/* (C) Function with PROGRAM body */ |
|
919 |
/* (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
|
920 |
sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::stepdef_sd); |
70 | 921 |
|
922 |
/* (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
|
923 |
sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::actiondef_sd); |
70 | 924 |
|
925 |
/* (C.3) Function declaration */ |
|
926 |
s4o.print("// Code part\n"); |
|
927 |
/* function interface */ |
|
928 |
s4o.print("void "); |
|
929 |
symbol->program_type_name->accept(*this); |
|
930 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
931 |
s4o.print("("); |
|
932 |
/* first and only parameter is a pointer to the data */ |
|
933 |
symbol->program_type_name->accept(*this); |
|
934 |
s4o.print(" *"); |
|
935 |
s4o.print(FB_FUNCTION_PARAM); |
|
936 |
s4o.print(") {\n"); |
|
937 |
s4o.indent_right(); |
|
938 |
||
939 |
/* (C.4) Initialize TEMP variables */ |
|
940 |
/* function body */ |
|
941 |
s4o.print(s4o.indent_spaces + "// Initialise TEMP variables\n"); |
|
942 |
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
|
943 |
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
|
944 |
generate_c_vardecl_c::temp_vt); |
70 | 945 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
946 |
delete vardecl; |
|
947 |
s4o.print("\n"); |
|
948 |
||
949 |
/* (C.5) Function code */ |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
950 |
generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->program_type_name, symbol, FB_FUNCTION_PARAM"->"); |
70 | 951 |
symbol->function_block_body->accept(generate_c_code); |
952 |
s4o.indent_left(); |
|
953 |
s4o.print(s4o.indent_spaces + "} // "); |
|
954 |
symbol->program_type_name->accept(*this); |
|
955 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
956 |
s4o.print(s4o.indent_spaces + "() \n\n"); |
|
957 |
||
958 |
/* (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
|
959 |
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
|
960 |
|
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
961 |
/* (C.7) Action undefinitions */ |
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
962 |
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
|
963 |
|
70 | 964 |
delete sfcdecl; |
244
3a478229db8b
Adding support for generating code for variable in step action association instead of action
laurent
parents:
241
diff
changeset
|
965 |
|
70 | 966 |
s4o.indent_left(); |
967 |
s4o.print("\n\n\n\n"); |
|
968 |
||
969 |
return NULL; |
|
970 |
} |
|
971 |
||
972 |
}; /* generate_c_pous_c */ |
|
973 |
||
974 |
/***********************************************************************/ |
|
975 |
/***********************************************************************/ |
|
976 |
/***********************************************************************/ |
|
977 |
/***********************************************************************/ |
|
978 |
/***********************************************************************/ |
|
979 |
/***********************************************************************/ |
|
980 |
/***********************************************************************/ |
|
981 |
/***********************************************************************/ |
|
982 |
||
983 |
class generate_c_config_c: public generate_c_typedecl_c { |
|
984 |
||
985 |
public: |
|
986 |
generate_c_config_c(stage4out_c *s4o_ptr) |
|
987 |
: generate_c_typedecl_c(s4o_ptr) {}; |
|
988 |
virtual ~generate_c_config_c(void) {} |
|
989 |
||
990 |
typedef enum { |
|
991 |
initprotos_dt, |
|
992 |
initdeclare_dt, |
|
993 |
runprotos_dt, |
|
994 |
rundeclare_dt |
|
995 |
} declaretype_t; |
|
996 |
||
997 |
declaretype_t wanted_declaretype; |
|
998 |
||
999 |
/********************************/ |
|
1000 |
/* B 1.7 Configuration elements */ |
|
1001 |
/********************************/ |
|
1002 |
||
1003 |
||
1004 |
public: |
|
1005 |
/* |
|
1006 |
CONFIGURATION configuration_name |
|
1007 |
optional_global_var_declarations |
|
1008 |
(resource_declaration_list | single_resource_declaration) |
|
1009 |
optional_access_declarations |
|
1010 |
optional_instance_specific_initializations |
|
1011 |
END_CONFIGURATION |
|
1012 |
*/ |
|
1013 |
/* |
|
1014 |
SYM_REF6(configuration_declaration_c, configuration_name, global_var_declarations, resource_declarations, access_declarations, instance_specific_initializations, unused) |
|
1015 |
*/ |
|
1016 |
void *visit(configuration_declaration_c *symbol) { |
|
1017 |
generate_c_vardecl_c *vardecl; |
|
1018 |
||
1019 |
/* Insert the header... */ |
|
1020 |
s4o.print("/*******************************************/\n"); |
|
1021 |
s4o.print("/* FILE GENERATED BY iec2c */\n"); |
|
1022 |
s4o.print("/* Editing this file is not recommended... */\n"); |
|
1023 |
s4o.print("/*******************************************/\n\n"); |
|
1024 |
s4o.print("#include \"iec_std_lib.h\"\n\n"); |
|
1025 |
||
250
5d2927300e2c
Adding missing support for accessors and retain in configuration files (Bug and fix reported by Manuele Conti)
laurent
parents:
248
diff
changeset
|
1026 |
s4o.print("#include \"accessor.h\"\n\n"); |
5d2927300e2c
Adding missing support for accessors and retain in configuration files (Bug and fix reported by Manuele Conti)
laurent
parents:
248
diff
changeset
|
1027 |
|
70 | 1028 |
/* (A) configuration declaration... */ |
1029 |
/* (A.1) configuration name in comment */ |
|
1030 |
s4o.print("// CONFIGURATION "); |
|
1031 |
symbol->configuration_name->accept(*this); |
|
1032 |
s4o.print("\n"); |
|
1033 |
||
1034 |
/* (A.2) Global variables */ |
|
1035 |
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
|
1036 |
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
|
1037 |
generate_c_vardecl_c::global_vt); |
70 | 1038 |
vardecl->print(symbol); |
1039 |
delete vardecl; |
|
1040 |
s4o.print("\n"); |
|
1041 |
||
1042 |
/* (B) Initialisation Function */ |
|
1043 |
/* (B.1) Ressources initialisation protos... */ |
|
1044 |
wanted_declaretype = initprotos_dt; |
|
1045 |
symbol->resource_declarations->accept(*this); |
|
1046 |
s4o.print("\n"); |
|
1047 |
||
1048 |
/* (B.2) Initialisation function name... */ |
|
1049 |
s4o.print(s4o.indent_spaces + "void config"); |
|
1050 |
s4o.print(FB_INIT_SUFFIX); |
|
1051 |
s4o.print("(void) {\n"); |
|
1052 |
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
|
1053 |
s4o.print(s4o.indent_spaces); |
5d2927300e2c
Adding missing support for accessors and retain in configuration files (Bug and fix reported by Manuele Conti)
laurent
parents:
248
diff
changeset
|
1054 |
s4o.print("BOOL retain = 0;\n"); |
70 | 1055 |
|
1056 |
/* (B.3) Global variables initializations... */ |
|
1057 |
s4o.print(s4o.indent_spaces); |
|
1058 |
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
|
1059 |
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
|
1060 |
generate_c_vardecl_c::global_vt); |
70 | 1061 |
vardecl->print(symbol); |
1062 |
delete vardecl; |
|
1063 |
s4o.print("\n"); |
|
1064 |
||
1065 |
/* (B.3) Resources initializations... */ |
|
1066 |
wanted_declaretype = initdeclare_dt; |
|
1067 |
symbol->resource_declarations->accept(*this); |
|
1068 |
||
1069 |
s4o.indent_left(); |
|
1070 |
s4o.print(s4o.indent_spaces + "}\n\n"); |
|
1071 |
||
1072 |
||
1073 |
/* (C) Run Function*/ |
|
1074 |
/* (C.1) Resources run functions protos... */ |
|
1075 |
wanted_declaretype = runprotos_dt; |
|
1076 |
symbol->resource_declarations->accept(*this); |
|
1077 |
s4o.print("\n"); |
|
1078 |
||
1079 |
/* (C.2) Run function name... */ |
|
1080 |
s4o.print(s4o.indent_spaces + "void config"); |
|
1081 |
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
|
1082 |
s4o.print("(unsigned long tick) {\n"); |
70 | 1083 |
s4o.indent_right(); |
1084 |
||
1085 |
/* (C.3) Resources initializations... */ |
|
1086 |
wanted_declaretype = rundeclare_dt; |
|
1087 |
symbol->resource_declarations->accept(*this); |
|
1088 |
||
1089 |
/* (C.3) Close Public Function body */ |
|
1090 |
s4o.indent_left(); |
|
1091 |
s4o.print(s4o.indent_spaces + "}\n"); |
|
1092 |
||
1093 |
return NULL; |
|
1094 |
} |
|
1095 |
||
1096 |
void *visit(resource_declaration_c *symbol) { |
|
1097 |
if (wanted_declaretype == initprotos_dt || wanted_declaretype == runprotos_dt) { |
|
1098 |
s4o.print(s4o.indent_spaces + "void "); |
|
1099 |
symbol->resource_name->accept(*this); |
|
1100 |
if (wanted_declaretype == initprotos_dt) { |
|
1101 |
s4o.print(FB_INIT_SUFFIX); |
|
1102 |
s4o.print("(void);\n"); |
|
1103 |
} |
|
1104 |
else { |
|
1105 |
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
|
1106 |
s4o.print("(unsigned long tick);\n"); |
70 | 1107 |
} |
1108 |
} |
|
1109 |
if (wanted_declaretype == initdeclare_dt || wanted_declaretype == rundeclare_dt) { |
|
1110 |
s4o.print(s4o.indent_spaces); |
|
1111 |
symbol->resource_name->accept(*this); |
|
1112 |
if (wanted_declaretype == initdeclare_dt) { |
|
1113 |
s4o.print(FB_INIT_SUFFIX); |
|
1114 |
s4o.print("();\n"); |
|
1115 |
} |
|
1116 |
else { |
|
1117 |
s4o.print(FB_RUN_SUFFIX); |
|
1118 |
s4o.print("(tick);\n"); |
|
1119 |
} |
|
1120 |
} |
|
1121 |
return NULL; |
|
1122 |
} |
|
1123 |
||
1124 |
void *visit(single_resource_declaration_c *symbol) { |
|
1125 |
if (wanted_declaretype == initprotos_dt || wanted_declaretype == runprotos_dt) { |
|
1126 |
s4o.print(s4o.indent_spaces + "void RESOURCE"); |
|
1127 |
if (wanted_declaretype == initprotos_dt) { |
|
1128 |
s4o.print(FB_INIT_SUFFIX); |
|
1129 |
s4o.print("(void);\n"); |
|
1130 |
} |
|
1131 |
else { |
|
1132 |
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
|
1133 |
s4o.print("(unsigned long tick);\n"); |
70 | 1134 |
} |
1135 |
} |
|
1136 |
if (wanted_declaretype == initdeclare_dt || wanted_declaretype == rundeclare_dt) { |
|
1137 |
s4o.print(s4o.indent_spaces + "RESOURCE"); |
|
1138 |
if (wanted_declaretype == initdeclare_dt) { |
|
1139 |
s4o.print(FB_INIT_SUFFIX); |
|
1140 |
s4o.print("();\n"); |
|
1141 |
} |
|
1142 |
else { |
|
1143 |
s4o.print(FB_RUN_SUFFIX); |
|
1144 |
s4o.print("(tick);\n"); |
|
1145 |
} |
|
1146 |
} |
|
1147 |
return NULL; |
|
1148 |
} |
|
1149 |
||
1150 |
}; |
|
1151 |
||
1152 |
/***********************************************************************/ |
|
1153 |
/***********************************************************************/ |
|
1154 |
/***********************************************************************/ |
|
1155 |
/***********************************************************************/ |
|
1156 |
/***********************************************************************/ |
|
1157 |
/***********************************************************************/ |
|
1158 |
/***********************************************************************/ |
|
1159 |
/***********************************************************************/ |
|
1160 |
||
1161 |
||
1162 |
class generate_c_resources_c: public generate_c_typedecl_c { |
|
1163 |
||
1164 |
search_var_instance_decl_c *search_config_instance; |
|
1165 |
search_var_instance_decl_c *search_resource_instance; |
|
1166 |
||
1167 |
private: |
|
1168 |
/* The name of the resource curretnly being processed... */ |
|
1169 |
symbol_c *current_resource_name; |
|
184 | 1170 |
symbol_c *current_task_name; |
70 | 1171 |
symbol_c *current_global_vars; |
1172 |
||
1173 |
public: |
|
1174 |
generate_c_resources_c(stage4out_c *s4o_ptr, symbol_c *config_scope, symbol_c *resource_scope, unsigned long time) |
|
1175 |
: generate_c_typedecl_c(s4o_ptr) { |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1176 |
search_config_instance = new search_var_instance_decl_c(config_scope); |
70 | 1177 |
search_resource_instance = new search_var_instance_decl_c(resource_scope); |
1178 |
common_ticktime = time; |
|
1179 |
current_resource_name = NULL; |
|
184 | 1180 |
current_task_name = NULL; |
70 | 1181 |
current_global_vars = NULL; |
1182 |
}; |
|
1183 |
virtual ~generate_c_resources_c(void) { |
|
1184 |
delete search_config_instance; |
|
1185 |
delete search_resource_instance; |
|
1186 |
} |
|
1187 |
||
1188 |
typedef enum { |
|
1189 |
declare_dt, |
|
1190 |
init_dt, |
|
1191 |
run_dt |
|
1192 |
} declaretype_t; |
|
1193 |
||
1194 |
declaretype_t wanted_declaretype; |
|
1195 |
||
1196 |
unsigned long common_ticktime; |
|
1197 |
||
1198 |
const char *current_program_name; |
|
1199 |
||
1200 |
typedef enum { |
|
1201 |
assign_at, |
|
1202 |
send_at |
|
1203 |
} assigntype_t; |
|
1204 |
||
1205 |
assigntype_t wanted_assigntype; |
|
1206 |
||
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
|
1207 |
/* 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
|
1208 |
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
|
1209 |
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
|
1210 |
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
|
1211 |
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
|
1212 |
|
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
|
1213 |
/* 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
|
1214 |
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
|
1215 |
|
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
|
1216 |
void *print_retain(void) { |
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
|
1217 |
s4o.print(","); |
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
|
1218 |
switch (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
|
1219 |
case 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
|
1220 |
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
|
1221 |
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
|
1222 |
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
|
1223 |
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
|
1224 |
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
|
1225 |
default: |
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
|
1226 |
s4o.print("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
|
1227 |
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
|
1228 |
} |
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
|
1229 |
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
|
1230 |
} |
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
|
1231 |
|
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
|
1232 |
/******************************************/ |
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
|
1233 |
/* 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
|
1234 |
/******************************************/ |
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
|
1235 |
|
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
|
1236 |
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
|
1237 |
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
|
1238 |
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
|
1239 |
} |
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
|
1240 |
|
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
|
1241 |
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
|
1242 |
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
|
1243 |
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
|
1244 |
} |
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
|
1245 |
|
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
|
1246 |
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
|
1247 |
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
|
1248 |
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
|
1249 |
} |
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
|
1250 |
|
70 | 1251 |
/********************************/ |
1252 |
/* B 1.7 Configuration elements */ |
|
1253 |
/********************************/ |
|
1254 |
||
1255 |
/* |
|
1256 |
RESOURCE resource_name ON resource_type_name |
|
1257 |
optional_global_var_declarations |
|
1258 |
single_resource_declaration |
|
1259 |
END_RESOURCE |
|
1260 |
*/ |
|
1261 |
// SYM_REF4(resource_declaration_c, resource_name, resource_type_name, global_var_declarations, resource_declaration) |
|
1262 |
void *visit(resource_declaration_c *symbol) { |
|
1263 |
current_resource_name = symbol->resource_name; |
|
1264 |
current_global_vars = symbol->global_var_declarations; |
|
1265 |
||
1266 |
symbol->resource_declaration->accept(*this); |
|
1267 |
||
1268 |
current_resource_name = NULL; |
|
1269 |
current_global_vars = NULL; |
|
1270 |
return NULL; |
|
1271 |
} |
|
1272 |
||
1273 |
/* task_configuration_list program_configuration_list */ |
|
1274 |
// SYM_REF2(single_resource_declaration_c, task_configuration_list, program_configuration_list) |
|
1275 |
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
|
1276 |
bool single_resource = current_resource_name == NULL; |
70 | 1277 |
if (single_resource) |
1278 |
current_resource_name = new identifier_c("RESOURCE"); |
|
1279 |
generate_c_vardecl_c *vardecl; |
|
1280 |
||
1281 |
/* Insert the header... */ |
|
1282 |
s4o.print("/*******************************************/\n"); |
|
1283 |
s4o.print("/* FILE GENERATED BY iec2c */\n"); |
|
1284 |
s4o.print("/* Editing this file is not recommended... */\n"); |
|
1285 |
s4o.print("/*******************************************/\n\n"); |
|
1286 |
s4o.print("#include \"iec_std_lib.h\"\n\n"); |
|
1287 |
||
1288 |
/* (A) resource declaration... */ |
|
1289 |
/* (A.1) resource name in comment */ |
|
1290 |
s4o.print("// RESOURCE "); |
|
1291 |
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
|
1292 |
s4o.print("\n\n"); |
74640e3c7f53
Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents:
112
diff
changeset
|
1293 |
|
237 | 1294 |
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
|
1295 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1296 |
s4o.print("#include \"accessor.h\"\n\n"); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1297 |
|
70 | 1298 |
/* (A.2) Global variables... */ |
1299 |
if (current_global_vars != NULL) { |
|
1300 |
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
|
1301 |
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
|
1302 |
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
|
1303 |
current_resource_name); |
70 | 1304 |
vardecl->print(current_global_vars); |
1305 |
delete vardecl; |
|
120
74640e3c7f53
Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents:
112
diff
changeset
|
1306 |
s4o.print("\n"); |
70 | 1307 |
} |
1308 |
||
1309 |
/* (A.3) POUs inclusion */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1310 |
s4o.print("#include \"POUS.h\"\n\n"); |
70 | 1311 |
s4o.print("#include \"POUS.c\"\n\n"); |
1312 |
||
184 | 1313 |
wanted_declaretype = declare_dt; |
1314 |
||
70 | 1315 |
/* (A.4) Resource programs declaration... */ |
184 | 1316 |
symbol->task_configuration_list->accept(*this); |
1317 |
||
1318 |
/* (A.5) Resource programs declaration... */ |
|
70 | 1319 |
symbol->program_configuration_list->accept(*this); |
184 | 1320 |
|
70 | 1321 |
s4o.print("\n"); |
1322 |
||
1323 |
/* (B) resource initialisation function... */ |
|
1324 |
/* (B.1) initialisation function name... */ |
|
1325 |
s4o.print("void "); |
|
1326 |
current_resource_name->accept(*this); |
|
1327 |
s4o.print(FB_INIT_SUFFIX); |
|
1328 |
s4o.print("(void) {\n"); |
|
1329 |
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
|
1330 |
s4o.print(s4o.indent_spaces); |
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
|
1331 |
s4o.print("BOOL retain = 0;\n"); |
70 | 1332 |
|
1333 |
/* (B.2) Global variables initialisations... */ |
|
1334 |
if (current_global_vars != NULL) { |
|
1335 |
s4o.print(s4o.indent_spaces); |
|
1336 |
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
|
1337 |
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
|
1338 |
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
|
1339 |
current_resource_name); |
70 | 1340 |
vardecl->print(current_global_vars); |
1341 |
delete vardecl; |
|
1342 |
} |
|
1343 |
s4o.print("\n"); |
|
1344 |
||
1345 |
wanted_declaretype = init_dt; |
|
184 | 1346 |
|
1347 |
/* (B.3) Tasks initialisations... */ |
|
1348 |
symbol->task_configuration_list->accept(*this); |
|
1349 |
||
1350 |
/* (B.4) Resource programs initialisations... */ |
|
70 | 1351 |
symbol->program_configuration_list->accept(*this); |
1352 |
||
1353 |
s4o.indent_left(); |
|
1354 |
s4o.print("}\n\n"); |
|
1355 |
||
1356 |
/* (C) Resource run function... */ |
|
1357 |
/* (C.1) Run function name... */ |
|
1358 |
s4o.print("void "); |
|
1359 |
current_resource_name->accept(*this); |
|
1360 |
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
|
1361 |
s4o.print("(unsigned long tick) {\n"); |
70 | 1362 |
s4o.indent_right(); |
1363 |
||
184 | 1364 |
wanted_declaretype = run_dt; |
1365 |
||
70 | 1366 |
/* (C.2) Task management... */ |
1367 |
symbol->task_configuration_list->accept(*this); |
|
1368 |
||
1369 |
/* (C.3) Program run declaration... */ |
|
1370 |
symbol->program_configuration_list->accept(*this); |
|
1371 |
||
1372 |
s4o.indent_left(); |
|
1373 |
s4o.print("}\n\n"); |
|
1374 |
||
1375 |
if (single_resource) { |
|
1376 |
delete current_resource_name; |
|
1377 |
current_resource_name = NULL; |
|
1378 |
} |
|
1379 |
return NULL; |
|
1380 |
} |
|
1381 |
||
1382 |
/* PROGRAM [RETAIN | NON_RETAIN] program_name [WITH task_name] ':' program_type_name ['(' prog_conf_elements ')'] */ |
|
1383 |
//SYM_REF6(program_configuration_c, retain_option, program_name, task_name, program_type_name, prog_conf_elements, unused) |
|
1384 |
void *visit(program_configuration_c *symbol) { |
|
184 | 1385 |
switch (wanted_declaretype) { |
1386 |
case declare_dt: |
|
70 | 1387 |
s4o.print(s4o.indent_spaces); |
184 | 1388 |
symbol->program_type_name->accept(*this); |
1389 |
s4o.print(" "); |
|
1390 |
current_resource_name->accept(*this); |
|
1391 |
s4o.print("__"); |
|
1392 |
symbol->program_name->accept(*this); |
|
1393 |
s4o.print(";\n#define "); |
|
1394 |
symbol->program_name->accept(*this); |
|
1395 |
s4o.print(" "); |
|
1396 |
current_resource_name->accept(*this); |
|
1397 |
s4o.print("__"); |
|
1398 |
symbol->program_name->accept(*this); |
|
1399 |
s4o.print("\n"); |
|
1400 |
break; |
|
1401 |
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
|
1402 |
if (symbol->retain_option != 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
|
1403 |
symbol->retain_option->accept(*this); |
184 | 1404 |
s4o.print(s4o.indent_spaces); |
1405 |
symbol->program_type_name->accept(*this); |
|
1406 |
s4o.print(FB_INIT_SUFFIX); |
|
1407 |
s4o.print("(&"); |
|
1408 |
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
|
1409 |
print_retain(); |
184 | 1410 |
s4o.print(");\n"); |
1411 |
break; |
|
1412 |
case run_dt: |
|
1413 |
current_program_name = ((identifier_c*)(symbol->program_name))->value; |
|
1414 |
if (symbol->task_name != NULL) { |
|
1415 |
s4o.print(s4o.indent_spaces); |
|
1416 |
s4o.print("if ("); |
|
1417 |
symbol->task_name->accept(*this); |
|
1418 |
s4o.print(") {\n"); |
|
1419 |
s4o.indent_right(); |
|
1420 |
} |
|
70 | 1421 |
|
184 | 1422 |
wanted_assigntype = assign_at; |
1423 |
if (symbol->prog_conf_elements != NULL) |
|
1424 |
symbol->prog_conf_elements->accept(*this); |
|
1425 |
||
1426 |
s4o.print(s4o.indent_spaces); |
|
1427 |
symbol->program_type_name->accept(*this); |
|
1428 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
1429 |
s4o.print("(&"); |
|
1430 |
symbol->program_name->accept(*this); |
|
1431 |
s4o.print(");\n"); |
|
1432 |
||
1433 |
wanted_assigntype = send_at; |
|
1434 |
if (symbol->prog_conf_elements != NULL) |
|
1435 |
symbol->prog_conf_elements->accept(*this); |
|
1436 |
||
1437 |
if (symbol->task_name != NULL) { |
|
1438 |
s4o.indent_left(); |
|
1439 |
s4o.print(s4o.indent_spaces + "}\n"); |
|
1440 |
} |
|
1441 |
break; |
|
1442 |
default: |
|
1443 |
break; |
|
70 | 1444 |
} |
1445 |
return NULL; |
|
1446 |
} |
|
1447 |
||
1448 |
/* TASK task_name task_initialization */ |
|
1449 |
//SYM_REF2(task_configuration_c, task_name, task_initialization) |
|
1450 |
void *visit(task_configuration_c *symbol) { |
|
184 | 1451 |
current_task_name = symbol->task_name; |
1452 |
switch (wanted_declaretype) { |
|
1453 |
case declare_dt: |
|
1454 |
s4o.print(s4o.indent_spaces + "BOOL "); |
|
1455 |
current_task_name->accept(*this); |
|
1456 |
s4o.print(";\n"); |
|
1457 |
symbol->task_initialization->accept(*this); |
|
1458 |
break; |
|
1459 |
case init_dt: |
|
1460 |
s4o.print(s4o.indent_spaces); |
|
1461 |
current_task_name->accept(*this); |
|
1462 |
s4o.print(" = __BOOL_LITERAL(FALSE);\n"); |
|
1463 |
symbol->task_initialization->accept(*this); |
|
1464 |
break; |
|
1465 |
case run_dt: |
|
1466 |
symbol->task_initialization->accept(*this); |
|
1467 |
break; |
|
1468 |
default: |
|
1469 |
break; |
|
1470 |
} |
|
1471 |
current_task_name = NULL; |
|
70 | 1472 |
return NULL; |
1473 |
} |
|
1474 |
||
1475 |
/* '(' [SINGLE ASSIGN data_source ','] [INTERVAL ASSIGN data_source ','] PRIORITY ASSIGN integer ')' */ |
|
1476 |
//SYM_REF4(task_initialization_c, single_data_source, interval_data_source, priority_data_source, unused) |
|
1477 |
void *visit(task_initialization_c *symbol) { |
|
184 | 1478 |
switch (wanted_declaretype) { |
1479 |
case declare_dt: |
|
1480 |
if (symbol->single_data_source != NULL) { |
|
1481 |
s4o.print(s4o.indent_spaces + "R_TRIG "); |
|
1482 |
current_task_name->accept(*this); |
|
1483 |
s4o.print("_R_TRIG;\n"); |
|
1484 |
} |
|
1485 |
break; |
|
1486 |
case init_dt: |
|
1487 |
if (symbol->single_data_source != NULL) { |
|
1488 |
s4o.print(s4o.indent_spaces + "R_TRIG"); |
|
1489 |
s4o.print(FB_INIT_SUFFIX); |
|
1490 |
s4o.print("(&"); |
|
1491 |
current_task_name->accept(*this); |
|
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1492 |
s4o.print("_R_TRIG, retain);\n"); |
184 | 1493 |
} |
1494 |
break; |
|
1495 |
case run_dt: |
|
1496 |
if (symbol->single_data_source != NULL) { |
|
1497 |
symbol_c *config_var_decl = NULL; |
|
1498 |
symbol_c *res_var_decl = NULL; |
|
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1499 |
unsigned int vartype; |
184 | 1500 |
symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->single_data_source))->global_var_name; |
1501 |
res_var_decl = search_resource_instance->get_decl(current_var_reference); |
|
1502 |
if (res_var_decl == NULL) { |
|
1503 |
config_var_decl = search_config_instance->get_decl(current_var_reference); |
|
1504 |
if (config_var_decl == NULL) |
|
1505 |
ERROR; |
|
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1506 |
vartype = search_config_instance->get_vartype(); |
184 | 1507 |
s4o.print(s4o.indent_spaces + "{extern "); |
1508 |
config_var_decl->accept(*this); |
|
1509 |
s4o.print(" *"); |
|
1510 |
symbol->single_data_source->accept(*this); |
|
1511 |
s4o.print("; "); |
|
1512 |
} |
|
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1513 |
else { |
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1514 |
vartype = search_resource_instance->get_vartype(); |
184 | 1515 |
s4o.print(s4o.indent_spaces); |
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1516 |
} |
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1517 |
s4o.print(SET_VAR); |
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1518 |
s4o.print("("); |
184 | 1519 |
current_task_name->accept(*this); |
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1520 |
s4o.print("_R_TRIG.CLK, *__GET_GLOBAL_"); |
184 | 1521 |
symbol->single_data_source->accept(*this); |
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1522 |
s4o.print("());"); |
184 | 1523 |
if (config_var_decl != NULL) |
1524 |
s4o.print("}"); |
|
1525 |
s4o.print("\n"); |
|
1526 |
s4o.print(s4o.indent_spaces + "R_TRIG"); |
|
1527 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
1528 |
s4o.print("(&"); |
|
1529 |
current_task_name->accept(*this); |
|
1530 |
s4o.print("_R_TRIG);\n"); |
|
1531 |
s4o.print(s4o.indent_spaces); |
|
1532 |
current_task_name->accept(*this); |
|
1533 |
s4o.print(" = "); |
|
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1534 |
s4o.print(GET_VAR); |
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1535 |
s4o.print("("); |
184 | 1536 |
current_task_name->accept(*this); |
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1537 |
s4o.print("_R_TRIG.Q)"); |
184 | 1538 |
} |
1539 |
else { |
|
1540 |
s4o.print(s4o.indent_spaces); |
|
1541 |
current_task_name->accept(*this); |
|
1542 |
s4o.print(" = "); |
|
1543 |
if (symbol->interval_data_source != NULL) { |
|
1544 |
calculate_time_c calculate_time; |
|
1545 |
symbol->interval_data_source->accept(calculate_time); |
|
1546 |
unsigned long time = calculate_time.get_time(); |
|
1547 |
if (time != 0) { |
|
1548 |
s4o.print("!(tick % "); |
|
1549 |
s4o.print_integer((int)(time / common_ticktime)); |
|
1550 |
s4o.print(")"); |
|
1551 |
} |
|
1552 |
else |
|
1553 |
s4o.print("1"); |
|
1554 |
} |
|
1555 |
else |
|
1556 |
s4o.print("1"); |
|
1557 |
} |
|
1558 |
s4o.print(";\n"); |
|
1559 |
break; |
|
1560 |
default: |
|
1561 |
break; |
|
70 | 1562 |
} |
1563 |
return NULL; |
|
1564 |
} |
|
1565 |
||
1566 |
/* any_symbolic_variable ASSIGN prog_data_source */ |
|
1567 |
//SYM_REF2(prog_cnxn_assign_c, symbolic_variable, prog_data_source) |
|
1568 |
void *visit(prog_cnxn_assign_c *symbol) { |
|
1569 |
if (wanted_assigntype == assign_at) { |
|
1570 |
symbol_c *var_decl; |
|
1571 |
unsigned int vartype = 0; |
|
1572 |
symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->prog_data_source))->global_var_name; |
|
1573 |
var_decl = search_resource_instance->get_decl(current_var_reference); |
|
1574 |
if (var_decl == NULL) { |
|
1575 |
var_decl = search_config_instance->get_decl(current_var_reference); |
|
1576 |
if (var_decl == NULL) |
|
1577 |
ERROR; |
|
1578 |
else |
|
1579 |
vartype = search_config_instance->get_vartype(); |
|
1580 |
} |
|
1581 |
else |
|
1582 |
vartype = search_resource_instance->get_vartype(); |
|
1583 |
||
1584 |
s4o.print(s4o.indent_spaces + "{extern "); |
|
1585 |
var_decl->accept(*this); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1586 |
s4o.print(" *"); |
70 | 1587 |
symbol->prog_data_source->accept(*this); |
1588 |
s4o.print("; "); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1589 |
s4o.printupper(current_program_name); |
70 | 1590 |
s4o.print("."); |
1591 |
symbol->symbolic_variable->accept(*this); |
|
1592 |
s4o.print(" = "); |
|
1593 |
if (vartype || search_var_instance_decl_c::global_vt) |
|
1594 |
s4o.print("*"); |
|
1595 |
symbol->prog_data_source->accept(*this); |
|
1596 |
s4o.print(";}\n"); |
|
1597 |
} |
|
1598 |
return NULL; |
|
1599 |
} |
|
1600 |
||
1601 |
/* any_symbolic_variable SENDTO data_sink */ |
|
1602 |
//SYM_REF2(prog_cnxn_sendto_c, symbolic_variable, data_sink) |
|
1603 |
void *visit(prog_cnxn_sendto_c *symbol) { |
|
1604 |
if (wanted_assigntype == send_at) { |
|
1605 |
symbol_c *var_decl; |
|
1606 |
unsigned int vartype = 0; |
|
1607 |
symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->data_sink))->global_var_name; |
|
1608 |
var_decl = search_resource_instance->get_decl(current_var_reference); |
|
1609 |
if (var_decl == NULL) { |
|
1610 |
var_decl = search_config_instance->get_decl(current_var_reference); |
|
1611 |
if (var_decl == NULL) |
|
1612 |
ERROR; |
|
1613 |
else |
|
1614 |
vartype = search_config_instance->get_vartype(); |
|
1615 |
} |
|
1616 |
else |
|
1617 |
vartype = search_resource_instance->get_vartype(); |
|
1618 |
||
1619 |
s4o.print(s4o.indent_spaces + "{extern "); |
|
1620 |
var_decl->accept(*this); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1621 |
s4o.print(" *"); |
70 | 1622 |
symbol->data_sink->accept(*this); |
1623 |
s4o.print("; "); |
|
1624 |
if (vartype || search_var_instance_decl_c::global_vt) |
|
1625 |
s4o.print("*"); |
|
1626 |
symbol->data_sink->accept(*this); |
|
1627 |
s4o.print(" = "); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1628 |
s4o.printupper(current_program_name); |
70 | 1629 |
s4o.print("."); |
1630 |
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
|
1631 |
s4o.print(";};\n"); |
70 | 1632 |
} |
1633 |
return NULL; |
|
1634 |
} |
|
1635 |
||
1636 |
}; |
|
1637 |
||
1638 |
/***********************************************************************/ |
|
1639 |
/***********************************************************************/ |
|
1640 |
/***********************************************************************/ |
|
1641 |
/***********************************************************************/ |
|
1642 |
/***********************************************************************/ |
|
1643 |
/***********************************************************************/ |
|
1644 |
/***********************************************************************/ |
|
1645 |
/***********************************************************************/ |
|
1646 |
||
1647 |
class generate_c_c: public iterator_visitor_c { |
|
1648 |
protected: |
|
1649 |
stage4out_c &s4o; |
|
1650 |
stage4out_c pous_s4o; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1651 |
stage4out_c pous_incl_s4o; |
70 | 1652 |
stage4out_c located_variables_s4o; |
111 | 1653 |
stage4out_c variables_s4o; |
70 | 1654 |
generate_c_pous_c generate_c_pous; |
111 | 1655 |
|
70 | 1656 |
symbol_c *current_configuration; |
1657 |
||
1658 |
const char *current_name; |
|
1659 |
const char *current_builddir; |
|
1660 |
||
237 | 1661 |
unsigned long long common_ticktime; |
70 | 1662 |
|
1663 |
public: |
|
1664 |
generate_c_c(stage4out_c *s4o_ptr, const char *builddir): |
|
1665 |
s4o(*s4o_ptr), |
|
1666 |
pous_s4o(builddir, "POUS", "c"), |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1667 |
pous_incl_s4o(builddir, "POUS", "h"), |
70 | 1668 |
located_variables_s4o(builddir, "LOCATED_VARIABLES","h"), |
112 | 1669 |
variables_s4o(builddir, "VARIABLES","csv"), |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1670 |
generate_c_pous(&pous_s4o, &pous_incl_s4o) { |
70 | 1671 |
current_builddir = builddir; |
1672 |
current_configuration = NULL; |
|
1673 |
} |
|
1674 |
||
1675 |
~generate_c_c(void) {} |
|
1676 |
||
1677 |
/***************************/ |
|
1678 |
/* B 0 - Programming Model */ |
|
1679 |
/***************************/ |
|
1680 |
void *visit(library_c *symbol) { |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1681 |
pous_incl_s4o.print("#ifndef __POUS_H\n#define __POUS_H\n\n#include \"accessor.h\"\n\n"); |
70 | 1682 |
for(int i = 0; i < symbol->n; i++) { |
1683 |
symbol->elements[i]->accept(*this); |
|
1684 |
} |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1685 |
pous_incl_s4o.print("#endif //__POUS_H\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1686 |
|
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1687 |
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
|
1688 |
generate_var_list.generate_programs(symbol); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1689 |
generate_var_list.generate_variables(symbol); |
111 | 1690 |
|
98 | 1691 |
generate_location_list_c generate_location_list(&located_variables_s4o); |
1692 |
symbol->accept(generate_location_list); |
|
70 | 1693 |
return NULL; |
1694 |
} |
|
1695 |
||
1696 |
/*************************/ |
|
1697 |
/* B.1 - Common elements */ |
|
1698 |
/*************************/ |
|
1699 |
/*******************************************/ |
|
1700 |
/* B 1.1 - Letters, digits and identifiers */ |
|
1701 |
/*******************************************/ |
|
1702 |
void *visit(identifier_c *symbol) { |
|
1703 |
current_name = symbol->value; |
|
1704 |
return NULL; |
|
1705 |
} |
|
1706 |
||
98 | 1707 |
/********************************/ |
1708 |
/* B 1.3.3 - Derived data types */ |
|
1709 |
/********************************/ |
|
1710 |
/* TYPE type_declaration_list END_TYPE */ |
|
1711 |
void *visit(data_type_declaration_c *symbol) { |
|
1712 |
symbol->accept(generate_c_pous); |
|
1713 |
return NULL; |
|
1714 |
} |
|
1715 |
||
70 | 1716 |
/**************************************/ |
1717 |
/* B.1.5 - Program organization units */ |
|
1718 |
/**************************************/ |
|
1719 |
/***********************/ |
|
1720 |
/* B 1.5.1 - Functions */ |
|
1721 |
/***********************/ |
|
1722 |
void *visit(function_declaration_c *symbol) { |
|
1723 |
symbol->accept(generate_c_pous); |
|
1724 |
return NULL; |
|
1725 |
} |
|
1726 |
||
1727 |
/*****************************/ |
|
1728 |
/* B 1.5.2 - Function Blocks */ |
|
1729 |
/*****************************/ |
|
1730 |
void *visit(function_block_declaration_c *symbol) { |
|
1731 |
symbol->accept(generate_c_pous); |
|
1732 |
return NULL; |
|
1733 |
} |
|
1734 |
||
1735 |
/**********************/ |
|
1736 |
/* B 1.5.3 - Programs */ |
|
1737 |
/**********************/ |
|
1738 |
void *visit(program_declaration_c *symbol) { |
|
1739 |
symbol->accept(generate_c_pous); |
|
1740 |
return NULL; |
|
1741 |
} |
|
1742 |
||
1743 |
||
1744 |
/********************************/ |
|
1745 |
/* B 1.7 Configuration elements */ |
|
1746 |
/********************************/ |
|
1747 |
void *visit(configuration_declaration_c *symbol) { |
|
1748 |
static int configuration_count = 0; |
|
1749 |
||
1750 |
if (configuration_count++) { |
|
1751 |
/* the first configuration is the one we will use!! */ |
|
1752 |
ERROR; |
|
1753 |
} |
|
1754 |
||
1755 |
current_configuration = symbol; |
|
1756 |
||
1757 |
calculate_common_ticktime_c calculate_common_ticktime; |
|
1758 |
symbol->accept(calculate_common_ticktime); |
|
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
|
1759 |
common_ticktime = calculate_common_ticktime.get_common_ticktime(); |
248
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1760 |
if (common_ticktime == 0) { |
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1761 |
fprintf(stderr, "\nYou must at least define a periodic task to set cycle period!"); |
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1762 |
ERROR; |
9cb18ec14fa2
Task single parameter code generation broken after addition of accessors fixed.
laurent
parents:
244
diff
changeset
|
1763 |
} |
70 | 1764 |
|
1765 |
symbol->configuration_name->accept(*this); |
|
1766 |
stage4out_c config_s4o(current_builddir, current_name, "c"); |
|
1767 |
generate_c_config_c generate_c_config(&config_s4o); |
|
1768 |
symbol->accept(generate_c_config); |
|
1769 |
||
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
|
1770 |
config_s4o.print("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
|
1771 |
config_s4o.print_long_long_integer(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
|
1772 |
config_s4o.print("; /*ns*/\n"); |
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
|
1773 |
config_s4o.print("unsigned long greatest_tick_count__ = "); |
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
|
1774 |
config_s4o.print_long_integer(calculate_common_ticktime.get_greatest_tick_count()); |
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
|
1775 |
config_s4o.print("; /*tick*/\n"); |
70 | 1776 |
|
1777 |
symbol->resource_declarations->accept(*this); |
|
1778 |
||
1779 |
current_configuration = NULL; |
|
1780 |
||
1781 |
return NULL; |
|
1782 |
} |
|
1783 |
||
1784 |
void *visit(resource_declaration_c *symbol) { |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1785 |
symbol->resource_name->accept(*this); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1786 |
stage4out_c resources_s4o(current_builddir, current_name, "c"); |
70 | 1787 |
generate_c_resources_c generate_c_resources(&resources_s4o, current_configuration, symbol, common_ticktime); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1788 |
symbol->accept(generate_c_resources); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1789 |
return NULL; |
70 | 1790 |
} |
1791 |
||
1792 |
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
|
1793 |
stage4out_c resources_s4o(current_builddir, "RESOURCE", "c"); |
70 | 1794 |
generate_c_resources_c generate_c_resources(&resources_s4o, current_configuration, symbol, common_ticktime); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1795 |
symbol->accept(generate_c_resources); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1796 |
return NULL; |
70 | 1797 |
} |
1798 |
||
1799 |
}; |
|
1800 |
||
1801 |
/***********************************************************************/ |
|
1802 |
/***********************************************************************/ |
|
1803 |
/***********************************************************************/ |
|
1804 |
/***********************************************************************/ |
|
1805 |
/***********************************************************************/ |
|
1806 |
/***********************************************************************/ |
|
1807 |
/***********************************************************************/ |
|
1808 |
/***********************************************************************/ |
|
1809 |
||
1810 |
||
1811 |
||
1812 |
||
1813 |
visitor_c *new_code_generator(stage4out_c *s4o, const char *builddir) {return new generate_c_c(s4o, builddir);} |
|
1814 |
void delete_code_generator(visitor_c *code_generator) {delete code_generator;} |
|
1815 |
||
1816 |