author | Mario de Sousa <msousa@fe.up.pt> |
Sun, 22 Dec 2013 09:50:02 +0000 | |
changeset 854 | 13d0b67de111 |
parent 810 | d9c48ad646f1 |
child 858 | c5f145364a4f |
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; |
|
726
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
55 |
symbol_c *current_basetype; |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
625
diff
changeset
|
56 |
static search_base_type_c *search_base_type_singleton; // Make this a singleton class! |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
625
diff
changeset
|
57 |
|
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
625
diff
changeset
|
58 |
private: |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
625
diff
changeset
|
59 |
static void create_singleton(void); |
181 | 60 |
|
61 |
public: |
|
62 |
search_base_type_c(void); |
|
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
625
diff
changeset
|
63 |
static symbol_c *get_basetype_decl (symbol_c *symbol); |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
625
diff
changeset
|
64 |
static symbol_c *get_basetype_id (symbol_c *symbol); |
181 | 65 |
|
66 |
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
|
67 |
/*************************/ |
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
|
68 |
/* 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
|
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 |
/*******************************************/ |
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 |
/* 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
|
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 |
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
|
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 |
|
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 |
/* 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
|
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 |
/******************************/ |
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 |
/* 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
|
81 |
/******************************/ |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
82 |
/* 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
|
83 |
* 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
|
84 |
* 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
|
85 |
* 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
|
86 |
* 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
|
87 |
* 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
|
88 |
*/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
89 |
void *visit(real_c *symbol); |
257 | 90 |
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
|
91 |
void *visit(integer_c *symbol); |
257 | 92 |
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
|
93 |
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
|
94 |
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
|
95 |
void *visit(hex_integer_c *symbol); |
257 | 96 |
void *visit(boolean_true_c *symbol); |
97 |
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
|
98 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
99 |
|
181 | 100 |
/***********************************/ |
101 |
/* B 1.3.1 - Elementary Data Types */ |
|
102 |
/***********************************/ |
|
103 |
void *visit(time_type_name_c *symbol); |
|
104 |
void *visit(bool_type_name_c *symbol); |
|
105 |
void *visit(sint_type_name_c *symbol); |
|
106 |
void *visit(int_type_name_c *symbol); |
|
107 |
void *visit(dint_type_name_c *symbol); |
|
108 |
void *visit(lint_type_name_c *symbol); |
|
109 |
void *visit(usint_type_name_c *symbol); |
|
110 |
void *visit(uint_type_name_c *symbol); |
|
111 |
void *visit(udint_type_name_c *symbol); |
|
112 |
void *visit(ulint_type_name_c *symbol); |
|
113 |
void *visit(real_type_name_c *symbol); |
|
114 |
void *visit(lreal_type_name_c *symbol); |
|
115 |
void *visit(date_type_name_c *symbol); |
|
116 |
void *visit(tod_type_name_c *symbol); |
|
706
31553c22f318
Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents:
625
diff
changeset
|
117 |
void *visit(dt_type_name_c *symbol); |
181 | 118 |
void *visit(byte_type_name_c *symbol); |
119 |
void *visit(word_type_name_c *symbol); |
|
120 |
void *visit(dword_type_name_c *symbol); |
|
121 |
void *visit(lword_type_name_c *symbol); |
|
122 |
void *visit(string_type_name_c *symbol); |
|
123 |
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
|
124 |
|
181 | 125 |
/******************************************************/ |
126 |
/* Extensions to the base standard as defined in */ |
|
127 |
/* "Safety Software Technical Specification, */ |
|
128 |
/* Part 1: Concepts and Function Blocks, */ |
|
129 |
/* Version 1.0 – Official Release" */ |
|
130 |
/* by PLCopen - Technical Committee 5 - 2006-01-31 */ |
|
131 |
/******************************************************/ |
|
257 | 132 |
void *visit(safetime_type_name_c *symbol); |
181 | 133 |
void *visit(safebool_type_name_c *symbol); |
257 | 134 |
void *visit(safesint_type_name_c *symbol); |
135 |
void *visit(safeint_type_name_c *symbol); |
|
136 |
void *visit(safedint_type_name_c *symbol); |
|
137 |
void *visit(safelint_type_name_c *symbol); |
|
138 |
void *visit(safeusint_type_name_c *symbol); |
|
139 |
void *visit(safeuint_type_name_c *symbol); |
|
140 |
void *visit(safeudint_type_name_c *symbol); |
|
141 |
void *visit(safeulint_type_name_c *symbol); |
|
142 |
void *visit(safereal_type_name_c *symbol); |
|
143 |
void *visit(safelreal_type_name_c *symbol); |
|
144 |
void *visit(safedate_type_name_c *symbol); |
|
145 |
void *visit(safetod_type_name_c *symbol); |
|
706
31553c22f318
Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents:
625
diff
changeset
|
146 |
void *visit(safedt_type_name_c *symbol); |
257 | 147 |
void *visit(safebyte_type_name_c *symbol); |
148 |
void *visit(safeword_type_name_c *symbol); |
|
149 |
void *visit(safedword_type_name_c *symbol); |
|
150 |
void *visit(safelword_type_name_c *symbol); |
|
151 |
void *visit(safestring_type_name_c *symbol); |
|
152 |
void *visit(safewstring_type_name_c *symbol); |
|
181 | 153 |
|
154 |
/********************************/ |
|
155 |
/* B 1.3.3 - Derived data types */ |
|
156 |
/********************************/ |
|
157 |
/* simple_type_name ':' simple_spec_init */ |
|
158 |
void *visit(simple_type_declaration_c *symbol); |
|
159 |
/* simple_specification ASSIGN constant */ |
|
160 |
void *visit(simple_spec_init_c *symbol); |
|
161 |
/* subrange_type_name ':' subrange_spec_init */ |
|
162 |
void *visit(subrange_type_declaration_c *symbol); |
|
163 |
/* subrange_specification ASSIGN signed_integer */ |
|
164 |
void *visit(subrange_spec_init_c *symbol); |
|
165 |
/* integer_type_name '(' subrange')' */ |
|
166 |
void *visit(subrange_specification_c *symbol); |
|
167 |
/* signed_integer DOTDOT signed_integer */ |
|
168 |
void *visit(subrange_c *symbol); |
|
169 |
||
170 |
/* enumerated_type_name ':' enumerated_spec_init */ |
|
171 |
void *visit(enumerated_type_declaration_c *symbol); |
|
172 |
/* enumerated_specification ASSIGN enumerated_value */ |
|
173 |
void *visit(enumerated_spec_init_c *symbol); |
|
174 |
/* helper symbol for enumerated_specification->enumerated_spec_init */ |
|
175 |
/* enumerated_value_list ',' enumerated_value */ |
|
176 |
void *visit(enumerated_value_list_c *symbol); |
|
177 |
/* enumerated_type_name '#' identifier */ |
|
178 |
// SYM_REF2(enumerated_value_c, type, value) |
|
179 |
void *visit(enumerated_value_c *symbol); |
|
180 |
/* identifier ':' array_spec_init */ |
|
181 |
void *visit(array_type_declaration_c *symbol); |
|
182 |
/* array_specification [ASSIGN array_initialization} */ |
|
183 |
/* array_initialization may be NULL ! */ |
|
184 |
void *visit(array_spec_init_c *symbol); |
|
185 |
/* ARRAY '[' array_subrange_list ']' OF non_generic_type_name */ |
|
186 |
void *visit(array_specification_c *symbol); |
|
187 |
/* helper symbol for array_specification */ |
|
188 |
/* array_subrange_list ',' subrange */ |
|
189 |
void *visit(array_subrange_list_c *symbol); |
|
190 |
/* array_initialization: '[' array_initial_elements_list ']' */ |
|
191 |
/* helper symbol for array_initialization */ |
|
192 |
/* array_initial_elements_list ',' array_initial_elements */ |
|
193 |
void *visit(array_initial_elements_list_c *symbol); |
|
194 |
/* integer '(' [array_initial_element] ')' */ |
|
195 |
/* array_initial_element may be NULL ! */ |
|
196 |
void *visit(array_initial_elements_c *symbol); |
|
197 |
/* structure_type_name ':' structure_specification */ |
|
198 |
/* NOTE: structure_specification will point to either a |
|
199 |
* initialized_structure_c |
|
200 |
* OR A |
|
201 |
* structure_element_declaration_list_c |
|
202 |
*/ |
|
203 |
void *visit(structure_type_declaration_c *symbol); |
|
412
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
204 |
/* var1_list ':' structure_type_name */ |
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
205 |
void *visit(structured_var_declaration_c *symbol); |
181 | 206 |
/* structure_type_name ASSIGN structure_initialization */ |
207 |
/* structure_initialization may be NULL ! */ |
|
208 |
void *visit(initialized_structure_c *symbol); |
|
209 |
/* helper symbol for structure_declaration */ |
|
210 |
/* structure_declaration: STRUCT structure_element_declaration_list END_STRUCT */ |
|
211 |
/* structure_element_declaration_list structure_element_declaration ';' */ |
|
212 |
void *visit(structure_element_declaration_list_c *symbol); |
|
213 |
/* structure_element_name ':' *_spec_init */ |
|
214 |
void *visit(structure_element_declaration_c *symbol); |
|
215 |
/* helper symbol for structure_initialization */ |
|
216 |
/* structure_initialization: '(' structure_element_initialization_list ')' */ |
|
217 |
/* structure_element_initialization_list ',' structure_element_initialization */ |
|
218 |
void *visit(structure_element_initialization_list_c *symbol); |
|
219 |
/* structure_element_name ASSIGN value */ |
|
220 |
void *visit(structure_element_initialization_c *symbol); |
|
221 |
/* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ |
|
222 |
/* |
|
706
31553c22f318
Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents:
625
diff
changeset
|
223 |
SYM_REF4(string_type_declaration_c, string_type_name, |
181 | 224 |
elementary_string_type_name, |
225 |
string_type_declaration_size, |
|
226 |
string_type_declaration_init) // may be == NULL! |
|
227 |
*/ |
|
228 |
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
|
229 |
|
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:
808
diff
changeset
|
230 |
/* function_block_type_name ASSIGN structure_initialization */ |
808
7a6b53d61ea3
Consider fb_name_decl_c a non base data type class!
Mario de Sousa <msousa@fe.up.pt>
parents:
793
diff
changeset
|
231 |
/* structure_initialization -> may be NULL ! */ |
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:
808
diff
changeset
|
232 |
void *visit(fb_spec_init_c *symbol); |
808
7a6b53d61ea3
Consider fb_name_decl_c a non base data type class!
Mario de Sousa <msousa@fe.up.pt>
parents:
793
diff
changeset
|
233 |
|
202
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 |
/* 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
|
236 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
237 |
/* 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
|
238 |
// 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
|
239 |
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
|
240 |
|
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
|
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 |
/* 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
|
243 |
/*********************************************/ |
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 |
/* 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
|
245 |
// 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
|
246 |
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
|
247 |
|
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 |
/* 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
|
249 |
// 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
|
250 |
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
|
251 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
252 |
|
181 | 253 |
}; // search_base_type_c |
254 |
||
255 |
||
256 |
||
257 |