author | edouard |
Fri, 04 Dec 2009 15:11:16 +0100 | |
changeset 223 | a09ed6620a7d |
parent 221 | c6aed7e5f070 |
child 231 | b8527b0abe75 |
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" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
154 |
#define SET_LOCATED "__SET_LOCATED" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
155 |
|
70 | 156 |
|
157 |
/* Generate a name for a temporary variable. |
|
158 |
* Each new name generated is appended a different number, |
|
159 |
* starting off from 0. |
|
160 |
* After calling reset(), the names will start off again from 0. |
|
161 |
*/ |
|
162 |
#define VAR_LEADER "__" |
|
163 |
#define TEMP_VAR VAR_LEADER "TMP_" |
|
164 |
#define SOURCE_VAR VAR_LEADER "SRC_" |
|
165 |
||
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
166 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
167 |
/***********************************************************************/ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
168 |
/***********************************************************************/ |
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 |
#include "generate_c_base.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
172 |
#include "generate_c_typedecl.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
173 |
#include "generate_c_sfcdecl.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
174 |
#include "generate_c_vardecl.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
175 |
#include "generate_c_configbody.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
176 |
#include "generate_location_list.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
177 |
#include "generate_var_list.cc" |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
178 |
|
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 |
|
70 | 184 |
#include "generate_c_st.cc" |
185 |
#include "generate_c_il.cc" |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
186 |
#include "generate_c_inlinefcall.cc" |
70 | 187 |
|
188 |
#include "generate_c.hh" |
|
189 |
||
190 |
/***********************************************************************/ |
|
191 |
/***********************************************************************/ |
|
192 |
/***********************************************************************/ |
|
193 |
/***********************************************************************/ |
|
194 |
||
195 |
#define MILLISECOND 1000000 |
|
196 |
#define SECOND 1000 * MILLISECOND |
|
197 |
||
198 |
/* A helper class that knows how to generate code for both the IL and ST languages... */ |
|
199 |
class calculate_time_c: public iterator_visitor_c { |
|
200 |
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
|
201 |
unsigned long long time; |
70 | 202 |
float current_value; |
203 |
||
204 |
public: |
|
205 |
calculate_time_c(void){time = 0;}; |
|
206 |
||
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
|
207 |
unsigned long long get_time(void) {return time;}; |
70 | 208 |
|
209 |
void *get_integer_value(token_c *token) { |
|
210 |
std::string str = ""; |
|
211 |
for (unsigned int i = 0; i < strlen(token->value); i++) |
|
212 |
if (token->value[i] != '_') |
|
213 |
str += token->value[i]; |
|
214 |
current_value = atof(str.c_str()); |
|
215 |
return NULL; |
|
216 |
} |
|
217 |
||
218 |
void *get_float_value(token_c *token) { |
|
219 |
current_value = atof(token->value); |
|
220 |
return NULL; |
|
221 |
} |
|
222 |
||
223 |
/******************************/ |
|
224 |
/* B 1.2.1 - Numeric Literals */ |
|
225 |
/******************************/ |
|
226 |
||
227 |
void *visit(integer_c *symbol) {return get_integer_value(symbol);} |
|
228 |
||
229 |
/************************/ |
|
230 |
/* B 1.2.3.1 - Duration */ |
|
231 |
/************************/ |
|
232 |
||
233 |
/* SYM_REF2(duration_c, neg, interval) */ |
|
234 |
void *visit(duration_c *symbol) { |
|
235 |
if (symbol->neg != NULL) |
|
236 |
ERROR; |
|
237 |
symbol->interval->accept(*this); |
|
238 |
return NULL; |
|
239 |
} |
|
240 |
||
241 |
/* SYM_TOKEN(fixed_point_c) */ |
|
242 |
void *visit(fixed_point_c *symbol) {return get_float_value(symbol);} |
|
243 |
||
244 |
/* SYM_REF2(days_c, days, hours) */ |
|
245 |
void *visit(days_c *symbol) { |
|
246 |
if (symbol->hours) |
|
247 |
symbol->hours->accept(*this); |
|
248 |
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
|
249 |
time += (unsigned long long)(current_value * 24 * 3600 * SECOND); |
70 | 250 |
return NULL; |
251 |
} |
|
252 |
||
253 |
/* SYM_REF2(hours_c, hours, minutes) */ |
|
254 |
void *visit(hours_c *symbol) { |
|
255 |
if (symbol->minutes) |
|
256 |
symbol->minutes->accept(*this); |
|
257 |
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
|
258 |
time += (unsigned long long)(current_value * 3600 * SECOND); |
70 | 259 |
return NULL; |
260 |
} |
|
261 |
||
262 |
/* SYM_REF2(minutes_c, minutes, seconds) */ |
|
263 |
void *visit(minutes_c *symbol) { |
|
264 |
if (symbol->seconds) |
|
265 |
symbol->seconds->accept(*this); |
|
266 |
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
|
267 |
time += (unsigned long long)(current_value * 60 * SECOND); |
70 | 268 |
return NULL; |
269 |
} |
|
270 |
||
271 |
/* SYM_REF2(seconds_c, seconds, milliseconds) */ |
|
272 |
void *visit(seconds_c *symbol) { |
|
273 |
if (symbol->milliseconds) |
|
274 |
symbol->milliseconds->accept(*this); |
|
275 |
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
|
276 |
time += (unsigned long long)(current_value * SECOND); |
70 | 277 |
return NULL; |
278 |
} |
|
279 |
||
280 |
/* SYM_REF2(milliseconds_c, milliseconds, unused) */ |
|
281 |
void *visit(milliseconds_c *symbol) { |
|
282 |
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
|
283 |
time += (unsigned long long)(current_value * MILLISECOND); |
70 | 284 |
return NULL; |
285 |
} |
|
286 |
}; |
|
287 |
||
288 |
/***********************************************************************/ |
|
289 |
/***********************************************************************/ |
|
290 |
/***********************************************************************/ |
|
291 |
/***********************************************************************/ |
|
292 |
||
293 |
class calculate_common_ticktime_c: public iterator_visitor_c { |
|
294 |
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
|
295 |
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
|
296 |
unsigned long long least_common_ticktime; |
70 | 297 |
|
298 |
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
|
299 |
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
|
300 |
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
|
301 |
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
|
302 |
} |
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 |
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
|
305 |
unsigned long long c = a % b; |
70 | 306 |
if (c == 0) |
307 |
return b; |
|
308 |
else |
|
309 |
return euclide(b, c); |
|
310 |
} |
|
311 |
||
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
|
312 |
void update_ticktime(unsigned long long time) { |
70 | 313 |
if (common_ticktime == 0) |
314 |
common_ticktime = time; |
|
315 |
else if (time > common_ticktime) |
|
316 |
common_ticktime = euclide(time, common_ticktime); |
|
317 |
else |
|
318 |
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
|
319 |
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
|
320 |
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
|
321 |
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
|
322 |
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
|
323 |
} |
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 |
unsigned long long get_common_ticktime(void) { |
70 | 326 |
return common_ticktime; |
327 |
} |
|
328 |
||
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
|
329 |
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
|
330 |
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
|
331 |
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
|
332 |
ERROR; |
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 |
return (unsigned long)(~(((unsigned long)-2) % (unsigned long)least_common_tick) + 1); |
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
|
334 |
} |
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 |
|
70 | 336 |
/* TASK task_name task_initialization */ |
337 |
//SYM_REF2(task_configuration_c, task_name, task_initialization) |
|
338 |
void *visit(task_initialization_c *symbol) { |
|
339 |
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
|
340 |
unsigned long long time = 0; |
70 | 341 |
if (symbol->interval_data_source != NULL) { |
342 |
symbol->interval_data_source->accept(calculate_time); |
|
343 |
time = calculate_time.get_time(); |
|
344 |
} |
|
345 |
if (time > 0) |
|
346 |
update_ticktime(time); |
|
347 |
return NULL; |
|
348 |
} |
|
349 |
}; |
|
350 |
||
351 |
/***********************************************************************/ |
|
352 |
/***********************************************************************/ |
|
353 |
/***********************************************************************/ |
|
354 |
/***********************************************************************/ |
|
355 |
||
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
356 |
/* A helper class that knows how to generate code for the SFC, IL and ST languages... */ |
70 | 357 |
class generate_c_SFC_IL_ST_c: public null_visitor_c { |
358 |
private: |
|
359 |
stage4out_c *s4o_ptr; |
|
360 |
symbol_c *scope; |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
361 |
symbol_c *fbname; |
70 | 362 |
const char *variable_prefix; |
363 |
||
364 |
public: |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
365 |
generate_c_SFC_IL_ST_c(stage4out_c *s4o_ptr, symbol_c *name, symbol_c *scope, const char *variable_prefix = NULL); |
70 | 366 |
/*********************************************/ |
367 |
/* B.1.6 Sequential function chart elements */ |
|
368 |
/*********************************************/ |
|
369 |
||
370 |
/*| sequential_function_chart sfc_network*/ |
|
371 |
void *visit(sequential_function_chart_c * symbol); |
|
372 |
||
373 |
/****************************************/ |
|
374 |
/* B.2 - Language IL (Instruction List) */ |
|
375 |
/****************************************/ |
|
376 |
||
377 |
/***********************************/ |
|
378 |
/* B 2.1 Instructions and Operands */ |
|
379 |
/***********************************/ |
|
380 |
/*| instruction_list il_instruction */ |
|
381 |
void *visit(instruction_list_c *symbol); |
|
382 |
||
383 |
/* Remainder implemented in generate_c_il_c... */ |
|
384 |
||
385 |
/***************************************/ |
|
386 |
/* B.3 - Language ST (Structured Text) */ |
|
387 |
/***************************************/ |
|
388 |
/***********************/ |
|
389 |
/* B 3.1 - Expressions */ |
|
390 |
/***********************/ |
|
391 |
/* Implemented in generate_c_st_c */ |
|
392 |
||
393 |
/********************/ |
|
394 |
/* B 3.2 Statements */ |
|
395 |
/********************/ |
|
396 |
void *visit(statement_list_c *symbol); |
|
397 |
||
398 |
/* Remainder implemented in generate_c_st_c... */ |
|
399 |
}; |
|
400 |
||
401 |
#include "generate_c_sfc.cc" |
|
402 |
||
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
403 |
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 | 404 |
if (NULL == scope) ERROR; |
405 |
this->s4o_ptr = s4o_ptr; |
|
406 |
this->scope = scope; |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
407 |
this->fbname = name; |
70 | 408 |
this->variable_prefix = variable_prefix; |
409 |
} |
|
410 |
||
411 |
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
|
412 |
generate_c_sfc_c generate_c_sfc(s4o_ptr, fbname, scope, variable_prefix); |
70 | 413 |
generate_c_sfc.generate(symbol); |
414 |
return NULL; |
|
415 |
} |
|
416 |
||
417 |
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
|
418 |
generate_c_il_c generate_c_il(s4o_ptr, fbname, scope, variable_prefix); |
70 | 419 |
generate_c_il.generate(symbol); |
420 |
return NULL; |
|
421 |
} |
|
422 |
||
423 |
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
|
424 |
generate_c_st_c generate_c_st(s4o_ptr, fbname, scope, variable_prefix); |
70 | 425 |
generate_c_st.generate(symbol); |
426 |
return NULL; |
|
427 |
} |
|
428 |
||
429 |
||
430 |
||
431 |
||
432 |
/***********************************************************************/ |
|
433 |
/***********************************************************************/ |
|
434 |
/***********************************************************************/ |
|
435 |
/***********************************************************************/ |
|
436 |
/***********************************************************************/ |
|
437 |
||
438 |
||
439 |
class generate_c_pous_c: public generate_c_typedecl_c { |
|
440 |
||
441 |
public: |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
442 |
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
|
443 |
: generate_c_typedecl_c(s4o_ptr, s4o_incl_ptr) {}; |
70 | 444 |
virtual ~generate_c_pous_c(void) {} |
445 |
||
446 |
||
447 |
public: |
|
448 |
||
449 |
/*************************/ |
|
450 |
/* B.1 - Common elements */ |
|
451 |
/*************************/ |
|
452 |
/*******************************************/ |
|
453 |
/* B 1.1 - Letters, digits and identifiers */ |
|
454 |
/*******************************************/ |
|
455 |
/* done in base class(es) */ |
|
456 |
||
457 |
/*********************/ |
|
458 |
/* B 1.2 - Constants */ |
|
459 |
/*********************/ |
|
460 |
/* originally empty... */ |
|
461 |
||
462 |
/******************************/ |
|
463 |
/* B 1.2.1 - Numeric Literals */ |
|
464 |
/******************************/ |
|
465 |
/* done in base class(es) */ |
|
466 |
||
467 |
/*******************************/ |
|
468 |
/* B.1.2.2 Character Strings */ |
|
469 |
/*******************************/ |
|
470 |
/* done in base class(es) */ |
|
471 |
||
472 |
/***************************/ |
|
473 |
/* B 1.2.3 - Time Literals */ |
|
474 |
/***************************/ |
|
475 |
/************************/ |
|
476 |
/* B 1.2.3.1 - Duration */ |
|
477 |
/************************/ |
|
478 |
/* done in base class(es) */ |
|
479 |
||
480 |
/************************************/ |
|
481 |
/* B 1.2.3.2 - Time of day and Date */ |
|
482 |
/************************************/ |
|
483 |
/* done in base class(es) */ |
|
484 |
||
485 |
/**********************/ |
|
486 |
/* B.1.3 - Data types */ |
|
487 |
/**********************/ |
|
488 |
/***********************************/ |
|
489 |
/* B 1.3.1 - Elementary Data Types */ |
|
490 |
/***********************************/ |
|
491 |
/* done in base class(es) */ |
|
492 |
||
493 |
/********************************/ |
|
494 |
/* B.1.3.2 - Generic data types */ |
|
495 |
/********************************/ |
|
496 |
/* originally empty... */ |
|
497 |
||
498 |
/********************************/ |
|
499 |
/* B 1.3.3 - Derived data types */ |
|
500 |
/********************************/ |
|
501 |
/* done in base class(es) */ |
|
502 |
||
503 |
/*********************/ |
|
504 |
/* B 1.4 - Variables */ |
|
505 |
/*********************/ |
|
506 |
/* done in base class(es) */ |
|
507 |
||
508 |
/********************************************/ |
|
509 |
/* B.1.4.1 Directly Represented Variables */ |
|
510 |
/********************************************/ |
|
511 |
/* done in base class(es) */ |
|
512 |
||
513 |
/*************************************/ |
|
514 |
/* B.1.4.2 Multi-element Variables */ |
|
515 |
/*************************************/ |
|
516 |
/* done in base class(es) */ |
|
517 |
||
518 |
/******************************************/ |
|
519 |
/* B 1.4.3 - Declaration & Initialisation */ |
|
520 |
/******************************************/ |
|
521 |
/* done in base class(es) */ |
|
522 |
||
523 |
/**************************************/ |
|
524 |
/* B.1.5 - Program organization units */ |
|
525 |
/**************************************/ |
|
526 |
/***********************/ |
|
527 |
/* B 1.5.1 - Functions */ |
|
528 |
/***********************/ |
|
529 |
||
530 |
public: |
|
531 |
/* FUNCTION derived_function_name ':' elementary_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
|
532 |
/* | FUNCTION derived_function_name ':' derived_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
|
533 |
void *visit(function_declaration_c *symbol) { |
|
534 |
generate_c_vardecl_c *vardecl; |
|
535 |
TRACE("function_declaration_c"); |
|
536 |
||
537 |
/* (A) Function declaration... */ |
|
538 |
/* (A.1) Function return type */ |
|
539 |
s4o.print("// FUNCTION\n"); |
|
540 |
symbol->type_name->accept(*this); /* return type */ |
|
541 |
s4o.print(" "); |
|
542 |
/* (A.2) Function name */ |
|
543 |
symbol->derived_function_name->accept(*this); |
|
544 |
s4o.print("("); |
|
545 |
||
546 |
/* (A.3) Function parameters */ |
|
547 |
s4o.indent_right(); |
|
548 |
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
|
549 |
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
|
550 |
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
|
551 |
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
|
552 |
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
|
553 |
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
|
554 |
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
|
555 |
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
|
556 |
delete vardecl; |
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
557 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
558 |
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
|
559 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
560 |
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
|
561 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
562 |
/* (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
|
563 |
/* (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
|
564 |
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
|
565 |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
566 |
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
|
567 |
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
|
568 |
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
|
569 |
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
|
570 |
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
|
571 |
generate_c_vardecl_c::eno_vt); |
70 | 572 |
vardecl->print(symbol->var_declarations_list); |
573 |
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
|
574 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
575 |
/* (B.2) Temporary variable for function's return value */ |
70 | 576 |
/* It will have the same name as the function itself! */ |
577 |
s4o.print(s4o.indent_spaces); |
|
578 |
symbol->type_name->accept(*this); /* return type */ |
|
579 |
s4o.print(" "); |
|
580 |
symbol->derived_function_name->accept(*this); |
|
581 |
s4o.print(" = "); |
|
582 |
{ |
|
583 |
/* get the default value of this variable's type */ |
|
584 |
symbol_c *default_value = (symbol_c *)symbol->type_name->accept(*type_initial_value_c::instance()); |
|
585 |
if (default_value == NULL) ERROR; |
|
586 |
default_value->accept(*this); |
|
587 |
} |
|
588 |
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
|
589 |
|
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
590 |
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
|
591 |
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
|
592 |
s4o.indent_right(); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
593 |
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
|
594 |
s4o.indent_right(); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
595 |
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
|
596 |
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
|
597 |
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
|
598 |
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
|
599 |
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
|
600 |
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
|
601 |
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
|
602 |
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
|
603 |
|
70 | 604 |
/* (C) Function body */ |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
605 |
generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->derived_function_name, symbol); |
70 | 606 |
symbol->function_body->accept(generate_c_code); |
145 | 607 |
|
608 |
vardecl = new generate_c_vardecl_c(&s4o, |
|
609 |
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
|
610 |
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
|
611 |
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
|
612 |
generate_c_vardecl_c::eno_vt); |
145 | 613 |
vardecl->print(symbol->var_declarations_list); |
614 |
delete vardecl; |
|
615 |
||
70 | 616 |
s4o.print(s4o.indent_spaces + "return "); |
617 |
symbol->derived_function_name->accept(*this); |
|
618 |
s4o.print(";\n"); |
|
619 |
s4o.indent_left(); |
|
620 |
s4o.print(s4o.indent_spaces + "}\n\n\n"); |
|
621 |
||
622 |
return NULL; |
|
623 |
} |
|
624 |
||
625 |
||
626 |
/* The remaining var_declarations_list_c, function_var_decls_c |
|
627 |
* and var2_init_decl_list_c are handled in the generate_c_vardecl_c class |
|
628 |
*/ |
|
629 |
||
630 |
||
631 |
/*****************************/ |
|
632 |
/* B 1.5.2 - Function Blocks */ |
|
633 |
/*****************************/ |
|
634 |
public: |
|
635 |
/* FUNCTION_BLOCK derived_function_block_name io_OR_other_var_declarations function_block_body END_FUNCTION_BLOCK */ |
|
636 |
//SYM_REF4(function_block_declaration_c, fblock_name, var_declarations, fblock_body, unused) |
|
637 |
void *visit(function_block_declaration_c *symbol) { |
|
638 |
generate_c_vardecl_c *vardecl; |
|
639 |
generate_c_sfcdecl_c *sfcdecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
640 |
generate_c_typedecl_c *typedecl; |
70 | 641 |
TRACE("function_block_declaration_c"); |
642 |
||
643 |
/* (A) Function Block data structure declaration... */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
644 |
typedecl = new generate_c_typedecl_c(&s4o_incl); |
70 | 645 |
/* (A.1) Data structure declaration */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
646 |
s4o_incl.print("// FUNCTION_BLOCK "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
647 |
symbol->fblock_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
648 |
s4o_incl.print("\n// Data part\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
649 |
s4o_incl.print("typedef struct {\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
650 |
s4o_incl.indent_right(); |
70 | 651 |
/* (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
|
652 |
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
|
653 |
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
|
654 |
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
|
655 |
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
|
656 |
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
|
657 |
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
|
658 |
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
|
659 |
generate_c_vardecl_c::eno_vt); |
70 | 660 |
vardecl->print(symbol->var_declarations); |
661 |
delete vardecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
662 |
s4o_incl.print("\n"); |
70 | 663 |
/* (A.3) Private internal variables */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
664 |
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
|
665 |
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
|
666 |
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
|
667 |
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
|
668 |
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
|
669 |
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
|
670 |
generate_c_vardecl_c::external_vt); |
70 | 671 |
vardecl->print(symbol->var_declarations); |
672 |
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
|
673 |
|
70 | 674 |
/* (A.4) Generate private internal variables for SFC */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
675 |
sfcdecl = new generate_c_sfcdecl_c(&s4o_incl, generate_c_sfcdecl_c::sfcdecl_sd); |
70 | 676 |
sfcdecl->print(symbol->fblock_body); |
677 |
delete sfcdecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
678 |
s4o_incl.print("\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
679 |
|
70 | 680 |
/* (A.5) Function Block data structure type name. */ |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
681 |
s4o_incl.indent_left(); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
682 |
s4o_incl.print("} "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
683 |
symbol->fblock_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
684 |
s4o_incl.print(";\n\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
685 |
delete typedecl; |
70 | 686 |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
687 |
/* (A.6) Function Block inline function declaration for function invocation */ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
688 |
generate_c_inlinefcall_c inline_decl(&s4o, symbol->fblock_name, symbol, FB_FUNCTION_PARAM"->"); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
689 |
symbol->fblock_body->accept(inline_decl); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
690 |
|
70 | 691 |
/* (B) Constructor */ |
692 |
/* (B.1) Constructor name... */ |
|
693 |
s4o.print(s4o.indent_spaces + "void "); |
|
694 |
symbol->fblock_name->accept(*this); |
|
695 |
s4o.print(FB_INIT_SUFFIX); |
|
696 |
s4o.print("("); |
|
697 |
||
698 |
/* first and only parameter is a pointer to the data */ |
|
699 |
symbol->fblock_name->accept(*this); |
|
700 |
s4o.print(" *"); |
|
701 |
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
|
702 |
s4o.print(", BOOL retain) {\n"); |
70 | 703 |
s4o.indent_right(); |
704 |
||
705 |
/* (B.2) Member initializations... */ |
|
706 |
s4o.print(s4o.indent_spaces); |
|
707 |
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
|
708 |
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
|
709 |
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
|
710 |
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
|
711 |
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
|
712 |
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
|
713 |
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
|
714 |
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
|
715 |
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
|
716 |
generate_c_vardecl_c::eno_vt); |
70 | 717 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
718 |
delete vardecl; |
|
719 |
s4o.print("\n"); |
|
720 |
/* (B.3) Generate private internal variables for SFC */ |
|
721 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, generate_c_sfcdecl_c::sfcinit_sd); |
|
722 |
sfcdecl->print(symbol->fblock_body, FB_FUNCTION_PARAM"->"); |
|
723 |
delete sfcdecl; |
|
724 |
s4o.indent_left(); |
|
725 |
s4o.print(s4o.indent_spaces + "}\n\n"); |
|
726 |
||
727 |
||
728 |
/* (C) Function with FB body */ |
|
729 |
/* (C.1) Step definitions */ |
|
730 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, generate_c_sfcdecl_c::stepdef_sd); |
|
731 |
sfcdecl->print(symbol->fblock_body); |
|
732 |
delete sfcdecl; |
|
733 |
||
734 |
/* (C.2) Action definitions */ |
|
735 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, generate_c_sfcdecl_c::actiondef_sd); |
|
736 |
sfcdecl->print(symbol->fblock_body); |
|
737 |
delete sfcdecl; |
|
738 |
||
739 |
/* (C.3) Function declaration */ |
|
740 |
s4o.print("// Code part\n"); |
|
741 |
/* function interface */ |
|
742 |
s4o.print("void "); |
|
743 |
symbol->fblock_name->accept(*this); |
|
744 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
745 |
s4o.print("("); |
|
746 |
/* first and only parameter is a pointer to the data */ |
|
747 |
symbol->fblock_name->accept(*this); |
|
748 |
s4o.print(" *"); |
|
749 |
s4o.print(FB_FUNCTION_PARAM); |
|
750 |
s4o.print(") {\n"); |
|
751 |
s4o.indent_right(); |
|
752 |
||
146
eef5e62048c7
Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents:
145
diff
changeset
|
753 |
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
|
754 |
s4o.print(s4o.indent_spaces + "if (!"); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
755 |
s4o.print(GET_VAR); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
756 |
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
|
757 |
s4o.print(FB_FUNCTION_PARAM); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
758 |
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
|
759 |
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
|
760 |
s4o.print(s4o.indent_spaces); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
761 |
s4o.print(SET_VAR); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
762 |
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
|
763 |
s4o.print(FB_FUNCTION_PARAM); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
764 |
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
|
765 |
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
|
766 |
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
|
767 |
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
|
768 |
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
|
769 |
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
|
770 |
s4o.print(s4o.indent_spaces); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
771 |
s4o.print(SET_VAR); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
772 |
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
|
773 |
s4o.print(FB_FUNCTION_PARAM); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
774 |
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
|
775 |
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
|
776 |
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
|
777 |
|
70 | 778 |
/* (C.4) Initialize TEMP variables */ |
779 |
/* function body */ |
|
780 |
s4o.print(s4o.indent_spaces + "// Initialise TEMP variables\n"); |
|
781 |
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
|
782 |
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
|
783 |
generate_c_vardecl_c::temp_vt); |
70 | 784 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
785 |
delete vardecl; |
|
786 |
s4o.print("\n"); |
|
787 |
||
788 |
/* (C.5) Function code */ |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
789 |
generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->fblock_name, symbol, FB_FUNCTION_PARAM"->"); |
70 | 790 |
symbol->fblock_body->accept(generate_c_code); |
791 |
s4o.indent_left(); |
|
792 |
s4o.print(s4o.indent_spaces + "} // "); |
|
793 |
symbol->fblock_name->accept(*this); |
|
794 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
795 |
s4o.print(s4o.indent_spaces + "() \n\n"); |
|
796 |
||
797 |
/* (C.6) Step undefinitions */ |
|
798 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, generate_c_sfcdecl_c::stepundef_sd); |
|
799 |
sfcdecl->print(symbol->fblock_body); |
|
800 |
delete sfcdecl; |
|
801 |
||
802 |
/* (C.7) Action undefinitions */ |
|
803 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, generate_c_sfcdecl_c::actionundef_sd); |
|
804 |
sfcdecl->print(symbol->fblock_body); |
|
805 |
delete sfcdecl; |
|
806 |
||
807 |
s4o.indent_left(); |
|
808 |
s4o.print("\n\n\n\n"); |
|
809 |
||
810 |
return NULL; |
|
811 |
} |
|
812 |
||
813 |
||
814 |
/* The remaining temp_var_decls_c, temp_var_decls_list_c |
|
815 |
* and non_retentive_var_decls_c are handled in the generate_c_vardecl_c class |
|
816 |
*/ |
|
817 |
||
818 |
||
819 |
/**********************/ |
|
820 |
/* B 1.5.3 - Programs */ |
|
821 |
/**********************/ |
|
822 |
||
823 |
||
824 |
||
825 |
public: |
|
826 |
/* PROGRAM program_type_name program_var_declarations_list function_block_body END_PROGRAM */ |
|
827 |
//SYM_REF4(program_declaration_c, program_type_name, var_declarations, function_block_body, unused) |
|
828 |
void *visit(program_declaration_c *symbol) { |
|
829 |
generate_c_vardecl_c *vardecl; |
|
830 |
generate_c_sfcdecl_c *sfcdecl; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
831 |
generate_c_typedecl_c *typedecl; |
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; |
|
863 |
/* (A.4) Generate private internal variables for SFC */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
864 |
sfcdecl = new generate_c_sfcdecl_c(&s4o_incl, generate_c_sfcdecl_c::sfcdecl_sd); |
70 | 865 |
sfcdecl->print(symbol->function_block_body); |
866 |
delete sfcdecl; |
|
867 |
||
868 |
/* (A.5) Program data structure type name. */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
869 |
s4o_incl.indent_left(); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
870 |
s4o_incl.print("} "); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
871 |
symbol->program_type_name->accept(*typedecl); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
872 |
s4o_incl.print(";\n\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
873 |
delete typedecl; |
70 | 874 |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
875 |
/* (A.6) Function Block inline function declaration for function invocation */ |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
876 |
generate_c_inlinefcall_c inline_decl(&s4o, symbol->program_type_name, symbol, FB_FUNCTION_PARAM"->"); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
877 |
symbol->function_block_body->accept(inline_decl); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
878 |
|
70 | 879 |
/* (B) Constructor */ |
880 |
/* (B.1) Constructor name... */ |
|
881 |
s4o.print(s4o.indent_spaces + "void "); |
|
882 |
symbol->program_type_name->accept(*this); |
|
883 |
s4o.print(FB_INIT_SUFFIX); |
|
884 |
s4o.print("("); |
|
885 |
||
886 |
/* first and only parameter is a pointer to the data */ |
|
887 |
symbol->program_type_name->accept(*this); |
|
888 |
s4o.print(" *"); |
|
889 |
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
|
890 |
s4o.print(", BOOL retain) {\n"); |
70 | 891 |
s4o.indent_right(); |
892 |
||
893 |
/* (B.2) Member initializations... */ |
|
894 |
s4o.print(s4o.indent_spaces); |
|
895 |
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
|
896 |
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
|
897 |
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
|
898 |
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
|
899 |
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
|
900 |
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
|
901 |
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
|
902 |
generate_c_vardecl_c::external_vt); |
70 | 903 |
vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->"); |
904 |
delete vardecl; |
|
905 |
s4o.print("\n"); |
|
906 |
/* (B.3) Generate private internal variables for SFC */ |
|
907 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, generate_c_sfcdecl_c::sfcinit_sd); |
|
908 |
sfcdecl->print(symbol->function_block_body,FB_FUNCTION_PARAM"->"); |
|
909 |
delete sfcdecl; |
|
910 |
||
911 |
s4o.indent_left(); |
|
912 |
s4o.print(s4o.indent_spaces + "}\n\n"); |
|
913 |
||
914 |
/* (C) Function with PROGRAM body */ |
|
915 |
/* (C.1) Step definitions */ |
|
916 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, generate_c_sfcdecl_c::stepdef_sd); |
|
917 |
sfcdecl->print(symbol->function_block_body); |
|
918 |
delete sfcdecl; |
|
919 |
||
920 |
/* (C.2) Action definitions */ |
|
921 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, generate_c_sfcdecl_c::actiondef_sd); |
|
922 |
sfcdecl->print(symbol->function_block_body); |
|
923 |
delete sfcdecl; |
|
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 */ |
|
959 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, generate_c_sfcdecl_c::stepundef_sd); |
|
960 |
sfcdecl->print(symbol->function_block_body); |
|
961 |
delete sfcdecl; |
|
962 |
||
963 |
/* (C.7) Action undefinitions */ |
|
964 |
sfcdecl = new generate_c_sfcdecl_c(&s4o, generate_c_sfcdecl_c::actionundef_sd); |
|
965 |
sfcdecl->print(symbol->function_block_body); |
|
966 |
delete sfcdecl; |
|
967 |
||
968 |
s4o.indent_left(); |
|
969 |
s4o.print("\n\n\n\n"); |
|
970 |
||
971 |
return NULL; |
|
972 |
} |
|
973 |
||
974 |
}; /* generate_c_pous_c */ |
|
975 |
||
976 |
/***********************************************************************/ |
|
977 |
/***********************************************************************/ |
|
978 |
/***********************************************************************/ |
|
979 |
/***********************************************************************/ |
|
980 |
/***********************************************************************/ |
|
981 |
/***********************************************************************/ |
|
982 |
/***********************************************************************/ |
|
983 |
/***********************************************************************/ |
|
984 |
||
985 |
class generate_c_config_c: public generate_c_typedecl_c { |
|
986 |
||
987 |
public: |
|
988 |
generate_c_config_c(stage4out_c *s4o_ptr) |
|
989 |
: generate_c_typedecl_c(s4o_ptr) {}; |
|
990 |
virtual ~generate_c_config_c(void) {} |
|
991 |
||
992 |
typedef enum { |
|
993 |
initprotos_dt, |
|
994 |
initdeclare_dt, |
|
995 |
runprotos_dt, |
|
996 |
rundeclare_dt |
|
997 |
} declaretype_t; |
|
998 |
||
999 |
declaretype_t wanted_declaretype; |
|
1000 |
||
1001 |
/********************************/ |
|
1002 |
/* B 1.7 Configuration elements */ |
|
1003 |
/********************************/ |
|
1004 |
||
1005 |
||
1006 |
public: |
|
1007 |
/* |
|
1008 |
CONFIGURATION configuration_name |
|
1009 |
optional_global_var_declarations |
|
1010 |
(resource_declaration_list | single_resource_declaration) |
|
1011 |
optional_access_declarations |
|
1012 |
optional_instance_specific_initializations |
|
1013 |
END_CONFIGURATION |
|
1014 |
*/ |
|
1015 |
/* |
|
1016 |
SYM_REF6(configuration_declaration_c, configuration_name, global_var_declarations, resource_declarations, access_declarations, instance_specific_initializations, unused) |
|
1017 |
*/ |
|
1018 |
void *visit(configuration_declaration_c *symbol) { |
|
1019 |
generate_c_vardecl_c *vardecl; |
|
1020 |
||
1021 |
/* Insert the header... */ |
|
1022 |
s4o.print("/*******************************************/\n"); |
|
1023 |
s4o.print("/* FILE GENERATED BY iec2c */\n"); |
|
1024 |
s4o.print("/* Editing this file is not recommended... */\n"); |
|
1025 |
s4o.print("/*******************************************/\n\n"); |
|
1026 |
s4o.print("#include \"iec_std_lib.h\"\n\n"); |
|
1027 |
||
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(); |
|
1053 |
||
1054 |
/* (B.3) Global variables initializations... */ |
|
1055 |
s4o.print(s4o.indent_spaces); |
|
1056 |
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
|
1057 |
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
|
1058 |
generate_c_vardecl_c::global_vt); |
70 | 1059 |
vardecl->print(symbol); |
1060 |
delete vardecl; |
|
1061 |
s4o.print("\n"); |
|
1062 |
||
1063 |
/* (B.3) Resources initializations... */ |
|
1064 |
wanted_declaretype = initdeclare_dt; |
|
1065 |
symbol->resource_declarations->accept(*this); |
|
1066 |
||
1067 |
s4o.indent_left(); |
|
1068 |
s4o.print(s4o.indent_spaces + "}\n\n"); |
|
1069 |
||
1070 |
||
1071 |
/* (C) Run Function*/ |
|
1072 |
/* (C.1) Resources run functions protos... */ |
|
1073 |
wanted_declaretype = runprotos_dt; |
|
1074 |
symbol->resource_declarations->accept(*this); |
|
1075 |
s4o.print("\n"); |
|
1076 |
||
1077 |
/* (C.2) Run function name... */ |
|
1078 |
s4o.print(s4o.indent_spaces + "void config"); |
|
1079 |
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
|
1080 |
s4o.print("(unsigned long tick) {\n"); |
70 | 1081 |
s4o.indent_right(); |
1082 |
||
1083 |
/* (C.3) Resources initializations... */ |
|
1084 |
wanted_declaretype = rundeclare_dt; |
|
1085 |
symbol->resource_declarations->accept(*this); |
|
1086 |
||
1087 |
/* (C.3) Close Public Function body */ |
|
1088 |
s4o.indent_left(); |
|
1089 |
s4o.print(s4o.indent_spaces + "}\n"); |
|
1090 |
||
1091 |
return NULL; |
|
1092 |
} |
|
1093 |
||
1094 |
void *visit(resource_declaration_c *symbol) { |
|
1095 |
if (wanted_declaretype == initprotos_dt || wanted_declaretype == runprotos_dt) { |
|
1096 |
s4o.print(s4o.indent_spaces + "void "); |
|
1097 |
symbol->resource_name->accept(*this); |
|
1098 |
if (wanted_declaretype == initprotos_dt) { |
|
1099 |
s4o.print(FB_INIT_SUFFIX); |
|
1100 |
s4o.print("(void);\n"); |
|
1101 |
} |
|
1102 |
else { |
|
1103 |
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
|
1104 |
s4o.print("(unsigned long tick);\n"); |
70 | 1105 |
} |
1106 |
} |
|
1107 |
if (wanted_declaretype == initdeclare_dt || wanted_declaretype == rundeclare_dt) { |
|
1108 |
s4o.print(s4o.indent_spaces); |
|
1109 |
symbol->resource_name->accept(*this); |
|
1110 |
if (wanted_declaretype == initdeclare_dt) { |
|
1111 |
s4o.print(FB_INIT_SUFFIX); |
|
1112 |
s4o.print("();\n"); |
|
1113 |
} |
|
1114 |
else { |
|
1115 |
s4o.print(FB_RUN_SUFFIX); |
|
1116 |
s4o.print("(tick);\n"); |
|
1117 |
} |
|
1118 |
} |
|
1119 |
return NULL; |
|
1120 |
} |
|
1121 |
||
1122 |
void *visit(single_resource_declaration_c *symbol) { |
|
1123 |
if (wanted_declaretype == initprotos_dt || wanted_declaretype == runprotos_dt) { |
|
1124 |
s4o.print(s4o.indent_spaces + "void RESOURCE"); |
|
1125 |
if (wanted_declaretype == initprotos_dt) { |
|
1126 |
s4o.print(FB_INIT_SUFFIX); |
|
1127 |
s4o.print("(void);\n"); |
|
1128 |
} |
|
1129 |
else { |
|
1130 |
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
|
1131 |
s4o.print("(unsigned long tick);\n"); |
70 | 1132 |
} |
1133 |
} |
|
1134 |
if (wanted_declaretype == initdeclare_dt || wanted_declaretype == rundeclare_dt) { |
|
1135 |
s4o.print(s4o.indent_spaces + "RESOURCE"); |
|
1136 |
if (wanted_declaretype == initdeclare_dt) { |
|
1137 |
s4o.print(FB_INIT_SUFFIX); |
|
1138 |
s4o.print("();\n"); |
|
1139 |
} |
|
1140 |
else { |
|
1141 |
s4o.print(FB_RUN_SUFFIX); |
|
1142 |
s4o.print("(tick);\n"); |
|
1143 |
} |
|
1144 |
} |
|
1145 |
return NULL; |
|
1146 |
} |
|
1147 |
||
1148 |
}; |
|
1149 |
||
1150 |
/***********************************************************************/ |
|
1151 |
/***********************************************************************/ |
|
1152 |
/***********************************************************************/ |
|
1153 |
/***********************************************************************/ |
|
1154 |
/***********************************************************************/ |
|
1155 |
/***********************************************************************/ |
|
1156 |
/***********************************************************************/ |
|
1157 |
/***********************************************************************/ |
|
1158 |
||
1159 |
||
1160 |
class generate_c_resources_c: public generate_c_typedecl_c { |
|
1161 |
||
1162 |
search_var_instance_decl_c *search_config_instance; |
|
1163 |
search_var_instance_decl_c *search_resource_instance; |
|
1164 |
||
1165 |
private: |
|
1166 |
/* The name of the resource curretnly being processed... */ |
|
1167 |
symbol_c *current_resource_name; |
|
184 | 1168 |
symbol_c *current_task_name; |
70 | 1169 |
symbol_c *current_global_vars; |
1170 |
||
1171 |
public: |
|
1172 |
generate_c_resources_c(stage4out_c *s4o_ptr, symbol_c *config_scope, symbol_c *resource_scope, unsigned long time) |
|
1173 |
: 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
|
1174 |
search_config_instance = new search_var_instance_decl_c(config_scope); |
70 | 1175 |
search_resource_instance = new search_var_instance_decl_c(resource_scope); |
1176 |
common_ticktime = time; |
|
1177 |
current_resource_name = NULL; |
|
184 | 1178 |
current_task_name = NULL; |
70 | 1179 |
current_global_vars = NULL; |
1180 |
}; |
|
1181 |
virtual ~generate_c_resources_c(void) { |
|
1182 |
delete search_config_instance; |
|
1183 |
delete search_resource_instance; |
|
1184 |
} |
|
1185 |
||
1186 |
typedef enum { |
|
1187 |
declare_dt, |
|
1188 |
init_dt, |
|
1189 |
run_dt |
|
1190 |
} declaretype_t; |
|
1191 |
||
1192 |
declaretype_t wanted_declaretype; |
|
1193 |
||
1194 |
unsigned long common_ticktime; |
|
1195 |
||
1196 |
const char *current_program_name; |
|
1197 |
||
1198 |
typedef enum { |
|
1199 |
assign_at, |
|
1200 |
send_at |
|
1201 |
} assigntype_t; |
|
1202 |
||
1203 |
assigntype_t wanted_assigntype; |
|
1204 |
||
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
|
1205 |
/* 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
|
1206 |
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
|
1207 |
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
|
1208 |
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
|
1209 |
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
|
1210 |
|
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 |
/* 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
|
1212 |
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
|
1213 |
|
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 |
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
|
1215 |
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
|
1216 |
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
|
1217 |
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
|
1218 |
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
|
1219 |
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
|
1220 |
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
|
1221 |
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
|
1222 |
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
|
1223 |
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
|
1224 |
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
|
1225 |
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
|
1226 |
} |
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 |
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
|
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 |
|
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 |
/* 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
|
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 |
|
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 |
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
|
1235 |
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
|
1236 |
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
|
1237 |
} |
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 |
|
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 |
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
|
1240 |
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
|
1241 |
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
|
1242 |
} |
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 |
|
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 |
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
|
1245 |
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
|
1246 |
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
|
1247 |
} |
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 |
|
70 | 1249 |
/********************************/ |
1250 |
/* B 1.7 Configuration elements */ |
|
1251 |
/********************************/ |
|
1252 |
||
1253 |
/* |
|
1254 |
RESOURCE resource_name ON resource_type_name |
|
1255 |
optional_global_var_declarations |
|
1256 |
single_resource_declaration |
|
1257 |
END_RESOURCE |
|
1258 |
*/ |
|
1259 |
// SYM_REF4(resource_declaration_c, resource_name, resource_type_name, global_var_declarations, resource_declaration) |
|
1260 |
void *visit(resource_declaration_c *symbol) { |
|
1261 |
current_resource_name = symbol->resource_name; |
|
1262 |
current_global_vars = symbol->global_var_declarations; |
|
1263 |
||
1264 |
symbol->resource_declaration->accept(*this); |
|
1265 |
||
1266 |
current_resource_name = NULL; |
|
1267 |
current_global_vars = NULL; |
|
1268 |
return NULL; |
|
1269 |
} |
|
1270 |
||
1271 |
/* task_configuration_list program_configuration_list */ |
|
1272 |
// SYM_REF2(single_resource_declaration_c, task_configuration_list, program_configuration_list) |
|
1273 |
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
|
1274 |
bool single_resource = current_resource_name == NULL; |
70 | 1275 |
if (single_resource) |
1276 |
current_resource_name = new identifier_c("RESOURCE"); |
|
1277 |
generate_c_vardecl_c *vardecl; |
|
1278 |
||
1279 |
/* Insert the header... */ |
|
1280 |
s4o.print("/*******************************************/\n"); |
|
1281 |
s4o.print("/* FILE GENERATED BY iec2c */\n"); |
|
1282 |
s4o.print("/* Editing this file is not recommended... */\n"); |
|
1283 |
s4o.print("/*******************************************/\n\n"); |
|
1284 |
s4o.print("#include \"iec_std_lib.h\"\n\n"); |
|
1285 |
||
1286 |
/* (A) resource declaration... */ |
|
1287 |
/* (A.1) resource name in comment */ |
|
1288 |
s4o.print("// RESOURCE "); |
|
1289 |
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
|
1290 |
s4o.print("\n\n"); |
74640e3c7f53
Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents:
112
diff
changeset
|
1291 |
|
74640e3c7f53
Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents:
112
diff
changeset
|
1292 |
s4o.print("extern int common_ticktime__;\n\n"); |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1293 |
|
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1294 |
s4o.print("#include \"accessor.h\"\n\n"); |
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1295 |
|
70 | 1296 |
/* (A.2) Global variables... */ |
1297 |
if (current_global_vars != NULL) { |
|
1298 |
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
|
1299 |
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
|
1300 |
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
|
1301 |
current_resource_name); |
70 | 1302 |
vardecl->print(current_global_vars); |
1303 |
delete vardecl; |
|
120
74640e3c7f53
Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents:
112
diff
changeset
|
1304 |
s4o.print("\n"); |
70 | 1305 |
} |
1306 |
||
1307 |
/* (A.3) POUs inclusion */ |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1308 |
s4o.print("#include \"POUS.h\"\n\n"); |
70 | 1309 |
s4o.print("#include \"POUS.c\"\n\n"); |
1310 |
||
184 | 1311 |
wanted_declaretype = declare_dt; |
1312 |
||
70 | 1313 |
/* (A.4) Resource programs declaration... */ |
184 | 1314 |
symbol->task_configuration_list->accept(*this); |
1315 |
||
1316 |
/* (A.5) Resource programs declaration... */ |
|
70 | 1317 |
symbol->program_configuration_list->accept(*this); |
184 | 1318 |
|
70 | 1319 |
s4o.print("\n"); |
1320 |
||
1321 |
/* (B) resource initialisation function... */ |
|
1322 |
/* (B.1) initialisation function name... */ |
|
1323 |
s4o.print("void "); |
|
1324 |
current_resource_name->accept(*this); |
|
1325 |
s4o.print(FB_INIT_SUFFIX); |
|
1326 |
s4o.print("(void) {\n"); |
|
1327 |
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
|
1328 |
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
|
1329 |
s4o.print("BOOL retain = 0;\n"); |
70 | 1330 |
|
1331 |
/* (B.2) Global variables initialisations... */ |
|
1332 |
if (current_global_vars != NULL) { |
|
1333 |
s4o.print(s4o.indent_spaces); |
|
1334 |
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
|
1335 |
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
|
1336 |
generate_c_vardecl_c::global_vt); |
70 | 1337 |
vardecl->print(current_global_vars); |
1338 |
delete vardecl; |
|
1339 |
} |
|
1340 |
s4o.print("\n"); |
|
1341 |
||
1342 |
wanted_declaretype = init_dt; |
|
184 | 1343 |
|
1344 |
/* (B.3) Tasks initialisations... */ |
|
1345 |
symbol->task_configuration_list->accept(*this); |
|
1346 |
||
1347 |
/* (B.4) Resource programs initialisations... */ |
|
70 | 1348 |
symbol->program_configuration_list->accept(*this); |
1349 |
||
1350 |
s4o.indent_left(); |
|
1351 |
s4o.print("}\n\n"); |
|
1352 |
||
1353 |
/* (C) Resource run function... */ |
|
1354 |
/* (C.1) Run function name... */ |
|
1355 |
s4o.print("void "); |
|
1356 |
current_resource_name->accept(*this); |
|
1357 |
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
|
1358 |
s4o.print("(unsigned long tick) {\n"); |
70 | 1359 |
s4o.indent_right(); |
1360 |
||
184 | 1361 |
wanted_declaretype = run_dt; |
1362 |
||
70 | 1363 |
/* (C.2) Task management... */ |
1364 |
symbol->task_configuration_list->accept(*this); |
|
1365 |
||
1366 |
/* (C.3) Program run declaration... */ |
|
1367 |
symbol->program_configuration_list->accept(*this); |
|
1368 |
||
1369 |
s4o.indent_left(); |
|
1370 |
s4o.print("}\n\n"); |
|
1371 |
||
1372 |
if (single_resource) { |
|
1373 |
delete current_resource_name; |
|
1374 |
current_resource_name = NULL; |
|
1375 |
} |
|
1376 |
return NULL; |
|
1377 |
} |
|
1378 |
||
1379 |
/* PROGRAM [RETAIN | NON_RETAIN] program_name [WITH task_name] ':' program_type_name ['(' prog_conf_elements ')'] */ |
|
1380 |
//SYM_REF6(program_configuration_c, retain_option, program_name, task_name, program_type_name, prog_conf_elements, unused) |
|
1381 |
void *visit(program_configuration_c *symbol) { |
|
184 | 1382 |
switch (wanted_declaretype) { |
1383 |
case declare_dt: |
|
70 | 1384 |
s4o.print(s4o.indent_spaces); |
184 | 1385 |
symbol->program_type_name->accept(*this); |
1386 |
s4o.print(" "); |
|
1387 |
current_resource_name->accept(*this); |
|
1388 |
s4o.print("__"); |
|
1389 |
symbol->program_name->accept(*this); |
|
1390 |
s4o.print(";\n#define "); |
|
1391 |
symbol->program_name->accept(*this); |
|
1392 |
s4o.print(" "); |
|
1393 |
current_resource_name->accept(*this); |
|
1394 |
s4o.print("__"); |
|
1395 |
symbol->program_name->accept(*this); |
|
1396 |
s4o.print("\n"); |
|
1397 |
break; |
|
1398 |
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
|
1399 |
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
|
1400 |
symbol->retain_option->accept(*this); |
184 | 1401 |
s4o.print(s4o.indent_spaces); |
1402 |
symbol->program_type_name->accept(*this); |
|
1403 |
s4o.print(FB_INIT_SUFFIX); |
|
1404 |
s4o.print("(&"); |
|
1405 |
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
|
1406 |
print_retain(); |
184 | 1407 |
s4o.print(");\n"); |
1408 |
break; |
|
1409 |
case run_dt: |
|
1410 |
current_program_name = ((identifier_c*)(symbol->program_name))->value; |
|
1411 |
if (symbol->task_name != NULL) { |
|
1412 |
s4o.print(s4o.indent_spaces); |
|
1413 |
s4o.print("if ("); |
|
1414 |
symbol->task_name->accept(*this); |
|
1415 |
s4o.print(") {\n"); |
|
1416 |
s4o.indent_right(); |
|
1417 |
} |
|
70 | 1418 |
|
184 | 1419 |
wanted_assigntype = assign_at; |
1420 |
if (symbol->prog_conf_elements != NULL) |
|
1421 |
symbol->prog_conf_elements->accept(*this); |
|
1422 |
||
1423 |
s4o.print(s4o.indent_spaces); |
|
1424 |
symbol->program_type_name->accept(*this); |
|
1425 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
1426 |
s4o.print("(&"); |
|
1427 |
symbol->program_name->accept(*this); |
|
1428 |
s4o.print(");\n"); |
|
1429 |
||
1430 |
wanted_assigntype = send_at; |
|
1431 |
if (symbol->prog_conf_elements != NULL) |
|
1432 |
symbol->prog_conf_elements->accept(*this); |
|
1433 |
||
1434 |
if (symbol->task_name != NULL) { |
|
1435 |
s4o.indent_left(); |
|
1436 |
s4o.print(s4o.indent_spaces + "}\n"); |
|
1437 |
} |
|
1438 |
break; |
|
1439 |
default: |
|
1440 |
break; |
|
70 | 1441 |
} |
1442 |
return NULL; |
|
1443 |
} |
|
1444 |
||
1445 |
/* TASK task_name task_initialization */ |
|
1446 |
//SYM_REF2(task_configuration_c, task_name, task_initialization) |
|
1447 |
void *visit(task_configuration_c *symbol) { |
|
184 | 1448 |
current_task_name = symbol->task_name; |
1449 |
switch (wanted_declaretype) { |
|
1450 |
case declare_dt: |
|
1451 |
s4o.print(s4o.indent_spaces + "BOOL "); |
|
1452 |
current_task_name->accept(*this); |
|
1453 |
s4o.print(";\n"); |
|
1454 |
symbol->task_initialization->accept(*this); |
|
1455 |
break; |
|
1456 |
case init_dt: |
|
1457 |
s4o.print(s4o.indent_spaces); |
|
1458 |
current_task_name->accept(*this); |
|
1459 |
s4o.print(" = __BOOL_LITERAL(FALSE);\n"); |
|
1460 |
symbol->task_initialization->accept(*this); |
|
1461 |
break; |
|
1462 |
case run_dt: |
|
1463 |
symbol->task_initialization->accept(*this); |
|
1464 |
break; |
|
1465 |
default: |
|
1466 |
break; |
|
1467 |
} |
|
1468 |
current_task_name = NULL; |
|
70 | 1469 |
return NULL; |
1470 |
} |
|
1471 |
||
1472 |
/* '(' [SINGLE ASSIGN data_source ','] [INTERVAL ASSIGN data_source ','] PRIORITY ASSIGN integer ')' */ |
|
1473 |
//SYM_REF4(task_initialization_c, single_data_source, interval_data_source, priority_data_source, unused) |
|
1474 |
void *visit(task_initialization_c *symbol) { |
|
184 | 1475 |
switch (wanted_declaretype) { |
1476 |
case declare_dt: |
|
1477 |
if (symbol->single_data_source != NULL) { |
|
1478 |
s4o.print(s4o.indent_spaces + "R_TRIG "); |
|
1479 |
current_task_name->accept(*this); |
|
1480 |
s4o.print("_R_TRIG;\n"); |
|
1481 |
} |
|
1482 |
break; |
|
1483 |
case init_dt: |
|
1484 |
if (symbol->single_data_source != NULL) { |
|
1485 |
s4o.print(s4o.indent_spaces + "R_TRIG"); |
|
1486 |
s4o.print(FB_INIT_SUFFIX); |
|
1487 |
s4o.print("(&"); |
|
1488 |
current_task_name->accept(*this); |
|
1489 |
s4o.print("_R_TRIG);\n"); |
|
1490 |
} |
|
1491 |
break; |
|
1492 |
case run_dt: |
|
1493 |
if (symbol->single_data_source != NULL) { |
|
1494 |
symbol_c *config_var_decl = NULL; |
|
1495 |
symbol_c *res_var_decl = NULL; |
|
1496 |
symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->single_data_source))->global_var_name; |
|
1497 |
res_var_decl = search_resource_instance->get_decl(current_var_reference); |
|
1498 |
if (res_var_decl == NULL) { |
|
1499 |
config_var_decl = search_config_instance->get_decl(current_var_reference); |
|
1500 |
if (config_var_decl == NULL) |
|
1501 |
ERROR; |
|
1502 |
s4o.print(s4o.indent_spaces + "{extern "); |
|
1503 |
config_var_decl->accept(*this); |
|
1504 |
s4o.print(" *"); |
|
1505 |
symbol->single_data_source->accept(*this); |
|
1506 |
s4o.print("; "); |
|
1507 |
} |
|
1508 |
else |
|
1509 |
s4o.print(s4o.indent_spaces); |
|
1510 |
current_task_name->accept(*this); |
|
1511 |
s4o.print("_R_TRIG.CLK = *"); |
|
1512 |
symbol->single_data_source->accept(*this); |
|
1513 |
s4o.print(";"); |
|
1514 |
if (config_var_decl != NULL) |
|
1515 |
s4o.print("}"); |
|
1516 |
s4o.print("\n"); |
|
1517 |
s4o.print(s4o.indent_spaces + "R_TRIG"); |
|
1518 |
s4o.print(FB_FUNCTION_SUFFIX); |
|
1519 |
s4o.print("(&"); |
|
1520 |
current_task_name->accept(*this); |
|
1521 |
s4o.print("_R_TRIG);\n"); |
|
1522 |
s4o.print(s4o.indent_spaces); |
|
1523 |
current_task_name->accept(*this); |
|
1524 |
s4o.print(" = "); |
|
1525 |
current_task_name->accept(*this); |
|
1526 |
s4o.print("_R_TRIG.Q"); |
|
1527 |
} |
|
1528 |
else { |
|
1529 |
s4o.print(s4o.indent_spaces); |
|
1530 |
current_task_name->accept(*this); |
|
1531 |
s4o.print(" = "); |
|
1532 |
if (symbol->interval_data_source != NULL) { |
|
1533 |
calculate_time_c calculate_time; |
|
1534 |
symbol->interval_data_source->accept(calculate_time); |
|
1535 |
unsigned long time = calculate_time.get_time(); |
|
1536 |
if (time != 0) { |
|
1537 |
s4o.print("!(tick % "); |
|
1538 |
s4o.print_integer((int)(time / common_ticktime)); |
|
1539 |
s4o.print(")"); |
|
1540 |
} |
|
1541 |
else |
|
1542 |
s4o.print("1"); |
|
1543 |
} |
|
1544 |
else |
|
1545 |
s4o.print("1"); |
|
1546 |
} |
|
1547 |
s4o.print(";\n"); |
|
1548 |
break; |
|
1549 |
default: |
|
1550 |
break; |
|
70 | 1551 |
} |
1552 |
return NULL; |
|
1553 |
} |
|
1554 |
||
1555 |
/* any_symbolic_variable ASSIGN prog_data_source */ |
|
1556 |
//SYM_REF2(prog_cnxn_assign_c, symbolic_variable, prog_data_source) |
|
1557 |
void *visit(prog_cnxn_assign_c *symbol) { |
|
1558 |
if (wanted_assigntype == assign_at) { |
|
1559 |
symbol_c *var_decl; |
|
1560 |
unsigned int vartype = 0; |
|
1561 |
symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->prog_data_source))->global_var_name; |
|
1562 |
var_decl = search_resource_instance->get_decl(current_var_reference); |
|
1563 |
if (var_decl == NULL) { |
|
1564 |
var_decl = search_config_instance->get_decl(current_var_reference); |
|
1565 |
if (var_decl == NULL) |
|
1566 |
ERROR; |
|
1567 |
else |
|
1568 |
vartype = search_config_instance->get_vartype(); |
|
1569 |
} |
|
1570 |
else |
|
1571 |
vartype = search_resource_instance->get_vartype(); |
|
1572 |
||
1573 |
s4o.print(s4o.indent_spaces + "{extern "); |
|
1574 |
var_decl->accept(*this); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1575 |
s4o.print(" *"); |
70 | 1576 |
symbol->prog_data_source->accept(*this); |
1577 |
s4o.print("; "); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1578 |
s4o.printupper(current_program_name); |
70 | 1579 |
s4o.print("."); |
1580 |
symbol->symbolic_variable->accept(*this); |
|
1581 |
s4o.print(" = "); |
|
1582 |
if (vartype || search_var_instance_decl_c::global_vt) |
|
1583 |
s4o.print("*"); |
|
1584 |
symbol->prog_data_source->accept(*this); |
|
1585 |
s4o.print(";}\n"); |
|
1586 |
} |
|
1587 |
return NULL; |
|
1588 |
} |
|
1589 |
||
1590 |
/* any_symbolic_variable SENDTO data_sink */ |
|
1591 |
//SYM_REF2(prog_cnxn_sendto_c, symbolic_variable, data_sink) |
|
1592 |
void *visit(prog_cnxn_sendto_c *symbol) { |
|
1593 |
if (wanted_assigntype == send_at) { |
|
1594 |
symbol_c *var_decl; |
|
1595 |
unsigned int vartype = 0; |
|
1596 |
symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->data_sink))->global_var_name; |
|
1597 |
var_decl = search_resource_instance->get_decl(current_var_reference); |
|
1598 |
if (var_decl == NULL) { |
|
1599 |
var_decl = search_config_instance->get_decl(current_var_reference); |
|
1600 |
if (var_decl == NULL) |
|
1601 |
ERROR; |
|
1602 |
else |
|
1603 |
vartype = search_config_instance->get_vartype(); |
|
1604 |
} |
|
1605 |
else |
|
1606 |
vartype = search_resource_instance->get_vartype(); |
|
1607 |
||
1608 |
s4o.print(s4o.indent_spaces + "{extern "); |
|
1609 |
var_decl->accept(*this); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1610 |
s4o.print(" *"); |
70 | 1611 |
symbol->data_sink->accept(*this); |
1612 |
s4o.print("; "); |
|
1613 |
if (vartype || search_var_instance_decl_c::global_vt) |
|
1614 |
s4o.print("*"); |
|
1615 |
symbol->data_sink->accept(*this); |
|
1616 |
s4o.print(" = "); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1617 |
s4o.printupper(current_program_name); |
70 | 1618 |
s4o.print("."); |
1619 |
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
|
1620 |
s4o.print(";};\n"); |
70 | 1621 |
} |
1622 |
return NULL; |
|
1623 |
} |
|
1624 |
||
1625 |
}; |
|
1626 |
||
1627 |
/***********************************************************************/ |
|
1628 |
/***********************************************************************/ |
|
1629 |
/***********************************************************************/ |
|
1630 |
/***********************************************************************/ |
|
1631 |
/***********************************************************************/ |
|
1632 |
/***********************************************************************/ |
|
1633 |
/***********************************************************************/ |
|
1634 |
/***********************************************************************/ |
|
1635 |
||
1636 |
class generate_c_c: public iterator_visitor_c { |
|
1637 |
protected: |
|
1638 |
stage4out_c &s4o; |
|
1639 |
stage4out_c pous_s4o; |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1640 |
stage4out_c pous_incl_s4o; |
70 | 1641 |
stage4out_c located_variables_s4o; |
111 | 1642 |
stage4out_c variables_s4o; |
70 | 1643 |
generate_c_pous_c generate_c_pous; |
111 | 1644 |
|
70 | 1645 |
symbol_c *current_configuration; |
1646 |
||
1647 |
const char *current_name; |
|
1648 |
const char *current_builddir; |
|
1649 |
||
1650 |
unsigned long common_ticktime; |
|
1651 |
||
1652 |
public: |
|
1653 |
generate_c_c(stage4out_c *s4o_ptr, const char *builddir): |
|
1654 |
s4o(*s4o_ptr), |
|
1655 |
pous_s4o(builddir, "POUS", "c"), |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1656 |
pous_incl_s4o(builddir, "POUS", "h"), |
70 | 1657 |
located_variables_s4o(builddir, "LOCATED_VARIABLES","h"), |
112 | 1658 |
variables_s4o(builddir, "VARIABLES","csv"), |
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1659 |
generate_c_pous(&pous_s4o, &pous_incl_s4o) { |
70 | 1660 |
current_builddir = builddir; |
1661 |
current_configuration = NULL; |
|
1662 |
} |
|
1663 |
||
1664 |
~generate_c_c(void) {} |
|
1665 |
||
1666 |
/***************************/ |
|
1667 |
/* B 0 - Programming Model */ |
|
1668 |
/***************************/ |
|
1669 |
void *visit(library_c *symbol) { |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
210
diff
changeset
|
1670 |
pous_incl_s4o.print("#ifndef __POUS_H\n#define __POUS_H\n\n#include \"accessor.h\"\n\n"); |
70 | 1671 |
for(int i = 0; i < symbol->n; i++) { |
1672 |
symbol->elements[i]->accept(*this); |
|
1673 |
} |
|
121
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1674 |
pous_incl_s4o.print("#endif //__POUS_H\n"); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1675 |
|
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1676 |
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
|
1677 |
generate_var_list.generate_programs(symbol); |
9e8ce092e169
Adding support for POU struct definition in POUS.h
lbessard
parents:
120
diff
changeset
|
1678 |
generate_var_list.generate_variables(symbol); |
111 | 1679 |
|
98 | 1680 |
generate_location_list_c generate_location_list(&located_variables_s4o); |
1681 |
symbol->accept(generate_location_list); |
|
70 | 1682 |
return NULL; |
1683 |
} |
|
1684 |
||
1685 |
/*************************/ |
|
1686 |
/* B.1 - Common elements */ |
|
1687 |
/*************************/ |
|
1688 |
/*******************************************/ |
|
1689 |
/* B 1.1 - Letters, digits and identifiers */ |
|
1690 |
/*******************************************/ |
|
1691 |
void *visit(identifier_c *symbol) { |
|
1692 |
current_name = symbol->value; |
|
1693 |
return NULL; |
|
1694 |
} |
|
1695 |
||
98 | 1696 |
/********************************/ |
1697 |
/* B 1.3.3 - Derived data types */ |
|
1698 |
/********************************/ |
|
1699 |
/* TYPE type_declaration_list END_TYPE */ |
|
1700 |
void *visit(data_type_declaration_c *symbol) { |
|
1701 |
symbol->accept(generate_c_pous); |
|
1702 |
return NULL; |
|
1703 |
} |
|
1704 |
||
70 | 1705 |
/**************************************/ |
1706 |
/* B.1.5 - Program organization units */ |
|
1707 |
/**************************************/ |
|
1708 |
/***********************/ |
|
1709 |
/* B 1.5.1 - Functions */ |
|
1710 |
/***********************/ |
|
1711 |
void *visit(function_declaration_c *symbol) { |
|
1712 |
symbol->accept(generate_c_pous); |
|
1713 |
return NULL; |
|
1714 |
} |
|
1715 |
||
1716 |
/*****************************/ |
|
1717 |
/* B 1.5.2 - Function Blocks */ |
|
1718 |
/*****************************/ |
|
1719 |
void *visit(function_block_declaration_c *symbol) { |
|
1720 |
symbol->accept(generate_c_pous); |
|
1721 |
return NULL; |
|
1722 |
} |
|
1723 |
||
1724 |
/**********************/ |
|
1725 |
/* B 1.5.3 - Programs */ |
|
1726 |
/**********************/ |
|
1727 |
void *visit(program_declaration_c *symbol) { |
|
1728 |
symbol->accept(generate_c_pous); |
|
1729 |
return NULL; |
|
1730 |
} |
|
1731 |
||
1732 |
||
1733 |
/********************************/ |
|
1734 |
/* B 1.7 Configuration elements */ |
|
1735 |
/********************************/ |
|
1736 |
void *visit(configuration_declaration_c *symbol) { |
|
1737 |
static int configuration_count = 0; |
|
1738 |
||
1739 |
if (configuration_count++) { |
|
1740 |
/* the first configuration is the one we will use!! */ |
|
1741 |
ERROR; |
|
1742 |
} |
|
1743 |
||
1744 |
current_configuration = symbol; |
|
1745 |
||
1746 |
calculate_common_ticktime_c calculate_common_ticktime; |
|
1747 |
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
|
1748 |
common_ticktime = calculate_common_ticktime.get_common_ticktime(); |
70 | 1749 |
|
1750 |
symbol->configuration_name->accept(*this); |
|
1751 |
stage4out_c config_s4o(current_builddir, current_name, "c"); |
|
1752 |
generate_c_config_c generate_c_config(&config_s4o); |
|
1753 |
symbol->accept(generate_c_config); |
|
1754 |
||
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
|
1755 |
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
|
1756 |
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
|
1757 |
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
|
1758 |
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
|
1759 |
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
|
1760 |
config_s4o.print("; /*tick*/\n"); |
70 | 1761 |
|
1762 |
symbol->resource_declarations->accept(*this); |
|
1763 |
||
1764 |
current_configuration = NULL; |
|
1765 |
||
1766 |
return NULL; |
|
1767 |
} |
|
1768 |
||
1769 |
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
|
1770 |
symbol->resource_name->accept(*this); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1771 |
stage4out_c resources_s4o(current_builddir, current_name, "c"); |
70 | 1772 |
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
|
1773 |
symbol->accept(generate_c_resources); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1774 |
return NULL; |
70 | 1775 |
} |
1776 |
||
1777 |
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
|
1778 |
stage4out_c resources_s4o(current_builddir, "RESOURCE", "c"); |
70 | 1779 |
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
|
1780 |
symbol->accept(generate_c_resources); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
189
diff
changeset
|
1781 |
return NULL; |
70 | 1782 |
} |
1783 |
||
1784 |
}; |
|
1785 |
||
1786 |
/***********************************************************************/ |
|
1787 |
/***********************************************************************/ |
|
1788 |
/***********************************************************************/ |
|
1789 |
/***********************************************************************/ |
|
1790 |
/***********************************************************************/ |
|
1791 |
/***********************************************************************/ |
|
1792 |
/***********************************************************************/ |
|
1793 |
/***********************************************************************/ |
|
1794 |
||
1795 |
||
1796 |
||
1797 |
||
1798 |
visitor_c *new_code_generator(stage4out_c *s4o, const char *builddir) {return new generate_c_c(s4o, builddir);} |
|
1799 |
void delete_code_generator(visitor_c *code_generator) {delete code_generator;} |
|
1800 |
||
1801 |