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