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