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