author | Laurent Bessard |
Tue, 23 Oct 2012 11:32:49 +0200 | |
changeset 638 | 049748e9410a |
parent 625 | c0bda77b37a0 |
child 706 | 31553c22f318 |
child 718 | a9f8cc778444 |
permissions | -rwxr-xr-x |
181 | 1 |
/* |
265
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
2 |
* matiec - a compiler for the programming languages defined in IEC 61131-3 |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
3 |
* |
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:
377
diff
changeset
|
4 |
* Copyright (C) 2003-2012 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:
265
diff
changeset
|
5 |
* Copyright (C) 2007-2011 Laurent Bessard and Edouard Tisserant |
265
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
6 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
7 |
* This program is free software: you can redistribute it and/or modify |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
8 |
* it under the terms of the GNU General Public License as published by |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
9 |
* the Free Software Foundation, either version 3 of the License, or |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
10 |
* (at your option) any later version. |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
11 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
12 |
* This program is distributed in the hope that it will be useful, |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
15 |
* GNU General Public License for more details. |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
16 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
18 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
19 |
* |
181 | 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 |
/* |
|
265
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
26 |
* An IEC 61131-3 compiler. |
181 | 27 |
* |
28 |
* Based on the |
|
29 |
* FINAL DRAFT - IEC 61131-3, 2nd Ed. (2001-12-10) |
|
30 |
* |
|
31 |
*/ |
|
32 |
||
33 |
||
34 |
/* Determine the data type on which another data type is based on. |
|
35 |
* If a new default initial value is given, we DO NOT consider it a |
|
36 |
* new base class, and continue looking further! |
|
37 |
* |
|
38 |
* E.g. TYPE new_int_t : INT; END_TYPE; |
|
39 |
* TYPE new_int2_t : INT = 2; END_TYPE; |
|
40 |
* TYPE new_subr_t : INT (4..5); END_TYPE; |
|
41 |
* |
|
42 |
* new_int_t is really an INT!! |
|
43 |
* new_int2_t is also really an INT!! |
|
44 |
* new_subr_t is also really an INT!! |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
45 |
* |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
46 |
* Note that a FB declaration is also considered a base type, as |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
47 |
* we may have FB instances declared of a specific FB type. |
181 | 48 |
*/ |
49 |
||
50 |
||
51 |
class search_base_type_c: public null_visitor_c { |
|
52 |
||
53 |
private: |
|
54 |
symbol_c *current_type_name; |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
279
diff
changeset
|
55 |
bool is_array; |
181 | 56 |
bool is_subrange; |
57 |
bool is_enumerated; |
|
58 |
||
59 |
public: |
|
60 |
search_base_type_c(void); |
|
61 |
||
62 |
public: |
|
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:
377
diff
changeset
|
63 |
symbol_c *get_basetype_decl(symbol_c *symbol); |
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:
377
diff
changeset
|
64 |
symbol_c *get_basetype_id (symbol_c *symbol); |
181 | 65 |
bool type_is_subrange(symbol_c* type_decl); |
66 |
bool type_is_enumerated(symbol_c* type_decl); |
|
67 |
||
68 |
public: |
|
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:
377
diff
changeset
|
69 |
/*************************/ |
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:
377
diff
changeset
|
70 |
/* B.1 - Common elements */ |
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:
377
diff
changeset
|
71 |
/*************************/ |
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:
377
diff
changeset
|
72 |
/*******************************************/ |
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:
377
diff
changeset
|
73 |
/* B 1.1 - Letters, digits and identifiers */ |
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:
377
diff
changeset
|
74 |
/*******************************************/ |
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:
377
diff
changeset
|
75 |
void *visit(identifier_c *type_name); |
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:
377
diff
changeset
|
76 |
|
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:
377
diff
changeset
|
77 |
|
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:
377
diff
changeset
|
78 |
/*********************/ |
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:
377
diff
changeset
|
79 |
/* B 1.2 - Constants */ |
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:
377
diff
changeset
|
80 |
/*********************/ |
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:
377
diff
changeset
|
81 |
/******************************/ |
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:
377
diff
changeset
|
82 |
/* B 1.2.1 - Numeric Literals */ |
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:
377
diff
changeset
|
83 |
/******************************/ |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
84 |
/* Numeric literals without any explicit type cast have unknown data type, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
85 |
* so we continue considering them as their own basic data types until |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
86 |
* they can be resolved (for example, when using '30+x' where 'x' is a LINT variable, the |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
87 |
* numeric literal '30' must then be considered a LINT so the ADD function may be called |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
88 |
* with all inputs of the same data type. |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
89 |
* If 'x' were a SINT, then the '30' would have to be a SINT too! |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
90 |
*/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
91 |
void *visit(real_c *symbol); |
257 | 92 |
void *visit(neg_real_c *symbol); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
93 |
void *visit(integer_c *symbol); |
257 | 94 |
void *visit(neg_integer_c *symbol); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
95 |
void *visit(binary_integer_c *symbol); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
96 |
void *visit(octal_integer_c *symbol); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
97 |
void *visit(hex_integer_c *symbol); |
257 | 98 |
void *visit(boolean_true_c *symbol); |
99 |
void *visit(boolean_false_c *symbol); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
100 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
101 |
|
181 | 102 |
/***********************************/ |
103 |
/* B 1.3.1 - Elementary Data Types */ |
|
104 |
/***********************************/ |
|
105 |
void *visit(time_type_name_c *symbol); |
|
106 |
void *visit(bool_type_name_c *symbol); |
|
107 |
void *visit(sint_type_name_c *symbol); |
|
108 |
void *visit(int_type_name_c *symbol); |
|
109 |
void *visit(dint_type_name_c *symbol); |
|
110 |
void *visit(lint_type_name_c *symbol); |
|
111 |
void *visit(usint_type_name_c *symbol); |
|
112 |
void *visit(uint_type_name_c *symbol); |
|
113 |
void *visit(udint_type_name_c *symbol); |
|
114 |
void *visit(ulint_type_name_c *symbol); |
|
115 |
void *visit(real_type_name_c *symbol); |
|
116 |
void *visit(lreal_type_name_c *symbol); |
|
117 |
void *visit(date_type_name_c *symbol); |
|
118 |
void *visit(tod_type_name_c *symbol); |
|
119 |
void *visit(dt_type_name_c *symbol) ; |
|
120 |
void *visit(byte_type_name_c *symbol); |
|
121 |
void *visit(word_type_name_c *symbol); |
|
122 |
void *visit(dword_type_name_c *symbol); |
|
123 |
void *visit(lword_type_name_c *symbol); |
|
124 |
void *visit(string_type_name_c *symbol); |
|
125 |
void *visit(wstring_type_name_c *symbol); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
126 |
|
181 | 127 |
/******************************************************/ |
128 |
/* Extensions to the base standard as defined in */ |
|
129 |
/* "Safety Software Technical Specification, */ |
|
130 |
/* Part 1: Concepts and Function Blocks, */ |
|
131 |
/* Version 1.0 – Official Release" */ |
|
132 |
/* by PLCopen - Technical Committee 5 - 2006-01-31 */ |
|
133 |
/******************************************************/ |
|
257 | 134 |
void *visit(safetime_type_name_c *symbol); |
181 | 135 |
void *visit(safebool_type_name_c *symbol); |
257 | 136 |
void *visit(safesint_type_name_c *symbol); |
137 |
void *visit(safeint_type_name_c *symbol); |
|
138 |
void *visit(safedint_type_name_c *symbol); |
|
139 |
void *visit(safelint_type_name_c *symbol); |
|
140 |
void *visit(safeusint_type_name_c *symbol); |
|
141 |
void *visit(safeuint_type_name_c *symbol); |
|
142 |
void *visit(safeudint_type_name_c *symbol); |
|
143 |
void *visit(safeulint_type_name_c *symbol); |
|
144 |
void *visit(safereal_type_name_c *symbol); |
|
145 |
void *visit(safelreal_type_name_c *symbol); |
|
146 |
void *visit(safedate_type_name_c *symbol); |
|
147 |
void *visit(safetod_type_name_c *symbol); |
|
148 |
void *visit(safedt_type_name_c *symbol) ; |
|
149 |
void *visit(safebyte_type_name_c *symbol); |
|
150 |
void *visit(safeword_type_name_c *symbol); |
|
151 |
void *visit(safedword_type_name_c *symbol); |
|
152 |
void *visit(safelword_type_name_c *symbol); |
|
153 |
void *visit(safestring_type_name_c *symbol); |
|
154 |
void *visit(safewstring_type_name_c *symbol); |
|
181 | 155 |
|
156 |
/********************************/ |
|
157 |
/* B 1.3.3 - Derived data types */ |
|
158 |
/********************************/ |
|
159 |
/* simple_type_name ':' simple_spec_init */ |
|
160 |
void *visit(simple_type_declaration_c *symbol); |
|
161 |
/* simple_specification ASSIGN constant */ |
|
162 |
void *visit(simple_spec_init_c *symbol); |
|
163 |
/* subrange_type_name ':' subrange_spec_init */ |
|
164 |
void *visit(subrange_type_declaration_c *symbol); |
|
165 |
/* subrange_specification ASSIGN signed_integer */ |
|
166 |
void *visit(subrange_spec_init_c *symbol); |
|
167 |
/* integer_type_name '(' subrange')' */ |
|
168 |
void *visit(subrange_specification_c *symbol); |
|
169 |
/* signed_integer DOTDOT signed_integer */ |
|
170 |
void *visit(subrange_c *symbol); |
|
171 |
||
172 |
/* enumerated_type_name ':' enumerated_spec_init */ |
|
173 |
void *visit(enumerated_type_declaration_c *symbol); |
|
174 |
/* enumerated_specification ASSIGN enumerated_value */ |
|
175 |
void *visit(enumerated_spec_init_c *symbol); |
|
176 |
/* helper symbol for enumerated_specification->enumerated_spec_init */ |
|
177 |
/* enumerated_value_list ',' enumerated_value */ |
|
178 |
void *visit(enumerated_value_list_c *symbol); |
|
179 |
/* enumerated_type_name '#' identifier */ |
|
180 |
// SYM_REF2(enumerated_value_c, type, value) |
|
181 |
void *visit(enumerated_value_c *symbol); |
|
182 |
/* identifier ':' array_spec_init */ |
|
183 |
void *visit(array_type_declaration_c *symbol); |
|
184 |
/* array_specification [ASSIGN array_initialization} */ |
|
185 |
/* array_initialization may be NULL ! */ |
|
186 |
void *visit(array_spec_init_c *symbol); |
|
187 |
/* ARRAY '[' array_subrange_list ']' OF non_generic_type_name */ |
|
188 |
void *visit(array_specification_c *symbol); |
|
189 |
/* helper symbol for array_specification */ |
|
190 |
/* array_subrange_list ',' subrange */ |
|
191 |
void *visit(array_subrange_list_c *symbol); |
|
192 |
/* array_initialization: '[' array_initial_elements_list ']' */ |
|
193 |
/* helper symbol for array_initialization */ |
|
194 |
/* array_initial_elements_list ',' array_initial_elements */ |
|
195 |
void *visit(array_initial_elements_list_c *symbol); |
|
196 |
/* integer '(' [array_initial_element] ')' */ |
|
197 |
/* array_initial_element may be NULL ! */ |
|
198 |
void *visit(array_initial_elements_c *symbol); |
|
199 |
/* structure_type_name ':' structure_specification */ |
|
200 |
/* NOTE: structure_specification will point to either a |
|
201 |
* initialized_structure_c |
|
202 |
* OR A |
|
203 |
* structure_element_declaration_list_c |
|
204 |
*/ |
|
205 |
void *visit(structure_type_declaration_c *symbol); |
|
412
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
206 |
/* var1_list ':' structure_type_name */ |
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
207 |
void *visit(structured_var_declaration_c *symbol); |
181 | 208 |
/* structure_type_name ASSIGN structure_initialization */ |
209 |
/* structure_initialization may be NULL ! */ |
|
210 |
void *visit(initialized_structure_c *symbol); |
|
211 |
/* helper symbol for structure_declaration */ |
|
212 |
/* structure_declaration: STRUCT structure_element_declaration_list END_STRUCT */ |
|
213 |
/* structure_element_declaration_list structure_element_declaration ';' */ |
|
214 |
void *visit(structure_element_declaration_list_c *symbol); |
|
215 |
/* structure_element_name ':' *_spec_init */ |
|
216 |
void *visit(structure_element_declaration_c *symbol); |
|
217 |
/* helper symbol for structure_initialization */ |
|
218 |
/* structure_initialization: '(' structure_element_initialization_list ')' */ |
|
219 |
/* structure_element_initialization_list ',' structure_element_initialization */ |
|
220 |
void *visit(structure_element_initialization_list_c *symbol); |
|
221 |
/* structure_element_name ASSIGN value */ |
|
222 |
void *visit(structure_element_initialization_c *symbol); |
|
223 |
/* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ |
|
224 |
/* |
|
225 |
SYM_REF4(string_type_declaration_c, string_type_name, |
|
226 |
elementary_string_type_name, |
|
227 |
string_type_declaration_size, |
|
228 |
string_type_declaration_init) // may be == NULL! |
|
229 |
*/ |
|
230 |
void *visit(string_type_declaration_c *symbol); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
231 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
232 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
233 |
/* B 1.5.2 - Function Blocks */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
234 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
235 |
/* FUNCTION_BLOCK derived_function_block_name io_OR_other_var_declarations function_block_body END_FUNCTION_BLOCK */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
236 |
// SYM_REF3(function_block_declaration_c, fblock_name, var_declarations, fblock_body) |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
237 |
void *visit(function_block_declaration_c *symbol); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
238 |
|
619
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
239 |
/*********************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
240 |
/* B.1.6 Sequential function chart elements */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
241 |
/*********************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
242 |
/* INITIAL_STEP step_name ':' action_association_list END_STEP */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
243 |
// SYM_REF2(initial_step_c, step_name, action_association_list) |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
244 |
void *visit(initial_step_c *symbol); |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
245 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
246 |
/* STEP step_name ':' action_association_list END_STEP */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
247 |
// SYM_REF2(step_c, step_name, action_association_list) |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
248 |
void *visit(step_c *symbol); |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
249 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
250 |
|
181 | 251 |
}; // search_base_type_c |
252 |
||
253 |
||
254 |
||
255 |