author | Mario de Sousa <msousa@fe.up.pt> |
Fri, 04 Nov 2011 19:16:29 +0000 | |
changeset 413 | a9d377c4987a |
parent 377 | 60b012b7793f |
child 412 | aad38592bdde |
child 417 | d48f53715f77 |
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 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
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:
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 |
/* Determine the data type on which another data type is based on. |
|
34 |
* If a new default initial value is given, we DO NOT consider it a |
|
35 |
* new base class, and continue looking further! |
|
36 |
* |
|
37 |
* E.g. TYPE new_int_t : INT; END_TYPE; |
|
38 |
* TYPE new_int2_t : INT = 2; END_TYPE; |
|
39 |
* TYPE new_subr_t : INT (4..5); END_TYPE; |
|
40 |
* |
|
41 |
* new_int_t is really an INT!! |
|
42 |
* new_int2_t is also really an INT!! |
|
43 |
* 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
|
44 |
* |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
45 |
* 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
|
46 |
* we may have FB instances declared of a specific FB type. |
181 | 47 |
*/ |
48 |
#include "absyntax_utils.hh" |
|
49 |
||
50 |
#define ERROR error_exit(__FILE__,__LINE__) |
|
51 |
/* function defined in main.cc */ |
|
52 |
extern void error_exit(const char *file_name, int line_no); |
|
53 |
||
54 |
||
55 |
||
56 |
search_base_type_c::search_base_type_c(void) {current_type_name = NULL;} |
|
57 |
||
58 |
void *search_base_type_c::visit(identifier_c *type_name) { |
|
59 |
this->current_type_name = type_name; |
|
60 |
/* look up the type declaration... */ |
|
61 |
symbol_c *type_decl = type_symtable.find_value(type_name); |
|
62 |
if (type_decl == type_symtable.end_value()) |
|
63 |
/* Type declaration not found!! */ |
|
64 |
ERROR; |
|
65 |
||
66 |
return type_decl->accept(*this); |
|
67 |
} |
|
68 |
||
69 |
bool search_base_type_c::type_is_subrange(symbol_c* type_decl) { |
|
70 |
this->is_subrange = false; |
|
71 |
type_decl->accept(*this); |
|
72 |
return this->is_subrange; |
|
73 |
} |
|
74 |
||
75 |
bool search_base_type_c::type_is_enumerated(symbol_c* type_decl) { |
|
76 |
this->is_enumerated = false; |
|
77 |
type_decl->accept(*this); |
|
78 |
return this->is_enumerated; |
|
79 |
} |
|
80 |
||
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
81 |
/*********************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
82 |
/* B 1.2 - Constants */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
83 |
/*********************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
84 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
85 |
/******************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
86 |
/* B 1.2.1 - Numeric Literals */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
87 |
/******************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
88 |
/* 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
|
89 |
* 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
|
90 |
* 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
|
91 |
* 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
|
92 |
* 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
|
93 |
* 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
|
94 |
*/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
95 |
void *search_base_type_c::visit(real_c *symbol) {return (void *)symbol;} |
257 | 96 |
void *search_base_type_c::visit(neg_real_c *symbol) {return (void *)symbol;} |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
97 |
void *search_base_type_c::visit(integer_c *symbol) {return (void *)symbol;} |
257 | 98 |
void *search_base_type_c::visit(neg_integer_c *symbol) {return (void *)symbol;} |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
99 |
void *search_base_type_c::visit(binary_integer_c *symbol) {return (void *)symbol;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
100 |
void *search_base_type_c::visit(octal_integer_c *symbol) {return (void *)symbol;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
101 |
void *search_base_type_c::visit(hex_integer_c *symbol) {return (void *)symbol;} |
257 | 102 |
void *search_base_type_c::visit(boolean_true_c *symbol) {return (void *)symbol;} |
103 |
void *search_base_type_c::visit(boolean_false_c *symbol) {return (void *)symbol;} |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
104 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
105 |
|
181 | 106 |
/***********************************/ |
107 |
/* B 1.3.1 - Elementary Data Types */ |
|
108 |
/***********************************/ |
|
109 |
void *search_base_type_c::visit(time_type_name_c *symbol) {return (void *)symbol;} |
|
110 |
void *search_base_type_c::visit(bool_type_name_c *symbol) {return (void *)symbol;} |
|
111 |
void *search_base_type_c::visit(sint_type_name_c *symbol) {return (void *)symbol;} |
|
112 |
void *search_base_type_c::visit(int_type_name_c *symbol) {return (void *)symbol;} |
|
113 |
void *search_base_type_c::visit(dint_type_name_c *symbol) {return (void *)symbol;} |
|
114 |
void *search_base_type_c::visit(lint_type_name_c *symbol) {return (void *)symbol;} |
|
115 |
void *search_base_type_c::visit(usint_type_name_c *symbol) {return (void *)symbol;} |
|
116 |
void *search_base_type_c::visit(uint_type_name_c *symbol) {return (void *)symbol;} |
|
117 |
void *search_base_type_c::visit(udint_type_name_c *symbol) {return (void *)symbol;} |
|
118 |
void *search_base_type_c::visit(ulint_type_name_c *symbol) {return (void *)symbol;} |
|
119 |
void *search_base_type_c::visit(real_type_name_c *symbol) {return (void *)symbol;} |
|
120 |
void *search_base_type_c::visit(lreal_type_name_c *symbol) {return (void *)symbol;} |
|
121 |
void *search_base_type_c::visit(date_type_name_c *symbol) {return (void *)symbol;} |
|
122 |
void *search_base_type_c::visit(tod_type_name_c *symbol) {return (void *)symbol;} |
|
123 |
void *search_base_type_c::visit(dt_type_name_c *symbol) {return (void *)symbol;} |
|
124 |
void *search_base_type_c::visit(byte_type_name_c *symbol) {return (void *)symbol;} |
|
125 |
void *search_base_type_c::visit(word_type_name_c *symbol) {return (void *)symbol;} |
|
126 |
void *search_base_type_c::visit(dword_type_name_c *symbol) {return (void *)symbol;} |
|
127 |
void *search_base_type_c::visit(lword_type_name_c *symbol) {return (void *)symbol;} |
|
128 |
void *search_base_type_c::visit(string_type_name_c *symbol) {return (void *)symbol;} |
|
129 |
void *search_base_type_c::visit(wstring_type_name_c *symbol) {return (void *)symbol;} |
|
257 | 130 |
|
131 |
||
181 | 132 |
/******************************************************/ |
133 |
/* Extensions to the base standard as defined in */ |
|
134 |
/* "Safety Software Technical Specification, */ |
|
135 |
/* Part 1: Concepts and Function Blocks, */ |
|
136 |
/* Version 1.0 – Official Release" */ |
|
137 |
/* by PLCopen - Technical Committee 5 - 2006-01-31 */ |
|
138 |
/******************************************************/ |
|
257 | 139 |
|
140 |
void *search_base_type_c::visit(safetime_type_name_c *symbol) {return (void *)symbol;} |
|
141 |
void *search_base_type_c::visit(safebool_type_name_c *symbol) {return (void *)symbol;} |
|
142 |
void *search_base_type_c::visit(safesint_type_name_c *symbol) {return (void *)symbol;} |
|
143 |
void *search_base_type_c::visit(safeint_type_name_c *symbol) {return (void *)symbol;} |
|
144 |
void *search_base_type_c::visit(safedint_type_name_c *symbol) {return (void *)symbol;} |
|
145 |
void *search_base_type_c::visit(safelint_type_name_c *symbol) {return (void *)symbol;} |
|
146 |
void *search_base_type_c::visit(safeusint_type_name_c *symbol) {return (void *)symbol;} |
|
147 |
void *search_base_type_c::visit(safeuint_type_name_c *symbol) {return (void *)symbol;} |
|
148 |
void *search_base_type_c::visit(safeudint_type_name_c *symbol) {return (void *)symbol;} |
|
149 |
void *search_base_type_c::visit(safeulint_type_name_c *symbol) {return (void *)symbol;} |
|
150 |
void *search_base_type_c::visit(safereal_type_name_c *symbol) {return (void *)symbol;} |
|
151 |
void *search_base_type_c::visit(safelreal_type_name_c *symbol) {return (void *)symbol;} |
|
152 |
void *search_base_type_c::visit(safedate_type_name_c *symbol) {return (void *)symbol;} |
|
153 |
void *search_base_type_c::visit(safetod_type_name_c *symbol) {return (void *)symbol;} |
|
154 |
void *search_base_type_c::visit(safedt_type_name_c *symbol) {return (void *)symbol;} |
|
155 |
void *search_base_type_c::visit(safebyte_type_name_c *symbol) {return (void *)symbol;} |
|
156 |
void *search_base_type_c::visit(safeword_type_name_c *symbol) {return (void *)symbol;} |
|
157 |
void *search_base_type_c::visit(safedword_type_name_c *symbol) {return (void *)symbol;} |
|
158 |
void *search_base_type_c::visit(safelword_type_name_c *symbol) {return (void *)symbol;} |
|
159 |
void *search_base_type_c::visit(safestring_type_name_c *symbol) {return (void *)symbol;} |
|
160 |
void *search_base_type_c::visit(safewstring_type_name_c *symbol) {return (void *)symbol;} |
|
181 | 161 |
|
162 |
/********************************/ |
|
163 |
/* B 1.3.3 - Derived data types */ |
|
164 |
/********************************/ |
|
165 |
/* simple_type_name ':' simple_spec_init */ |
|
166 |
void *search_base_type_c::visit(simple_type_declaration_c *symbol) { |
|
167 |
return symbol->simple_spec_init->accept(*this); |
|
168 |
} |
|
169 |
/* simple_specification ASSIGN constant */ |
|
170 |
void *search_base_type_c::visit(simple_spec_init_c *symbol) { |
|
171 |
return symbol->simple_specification->accept(*this); |
|
172 |
} |
|
173 |
||
174 |
/* subrange_type_name ':' subrange_spec_init */ |
|
175 |
void *search_base_type_c::visit(subrange_type_declaration_c *symbol) { |
|
176 |
return symbol->subrange_spec_init->accept(*this); |
|
177 |
} |
|
178 |
||
179 |
/* subrange_specification ASSIGN signed_integer */ |
|
180 |
void *search_base_type_c::visit(subrange_spec_init_c *symbol) { |
|
181 |
this->is_subrange = true; |
|
182 |
return symbol->subrange_specification->accept(*this); |
|
183 |
} |
|
184 |
||
185 |
/* integer_type_name '(' subrange')' */ |
|
186 |
void *search_base_type_c::visit(subrange_specification_c *symbol) { |
|
187 |
return symbol->integer_type_name->accept(*this); |
|
188 |
} |
|
189 |
||
190 |
/* signed_integer DOTDOT signed_integer */ |
|
191 |
void *search_base_type_c::visit(subrange_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
|
192 |
||
193 |
/* enumerated_type_name ':' enumerated_spec_init */ |
|
194 |
void *search_base_type_c::visit(enumerated_type_declaration_c *symbol) { |
|
195 |
this->current_type_name = symbol->enumerated_type_name; |
|
196 |
return symbol->enumerated_spec_init->accept(*this); |
|
197 |
} |
|
198 |
||
199 |
/* enumerated_specification ASSIGN enumerated_value */ |
|
200 |
void *search_base_type_c::visit(enumerated_spec_init_c *symbol) { |
|
201 |
this->is_enumerated = true; |
|
202 |
return symbol->enumerated_specification->accept(*this); |
|
203 |
} |
|
204 |
||
205 |
/* helper symbol for enumerated_specification->enumerated_spec_init */ |
|
206 |
/* enumerated_value_list ',' enumerated_value */ |
|
207 |
void *search_base_type_c::visit(enumerated_value_list_c *symbol) { |
|
208 |
if (NULL == this->current_type_name) ERROR; |
|
209 |
return (void *)this->current_type_name; |
|
210 |
} |
|
211 |
||
212 |
/* enumerated_type_name '#' identifier */ |
|
213 |
// SYM_REF2(enumerated_value_c, type, value) |
|
214 |
void *search_base_type_c::visit(enumerated_value_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
|
215 |
||
216 |
/* identifier ':' array_spec_init */ |
|
217 |
void *search_base_type_c::visit(array_type_declaration_c *symbol) { |
|
218 |
this->current_type_name = symbol->identifier; |
|
219 |
return symbol->array_spec_init->accept(*this); |
|
220 |
} |
|
221 |
||
222 |
/* array_specification [ASSIGN array_initialization} */ |
|
223 |
/* array_initialization may be NULL ! */ |
|
224 |
void *search_base_type_c::visit(array_spec_init_c *symbol) { |
|
225 |
return symbol->array_specification->accept(*this); |
|
226 |
} |
|
227 |
||
228 |
/* ARRAY '[' array_subrange_list ']' OF non_generic_type_name */ |
|
229 |
void *search_base_type_c::visit(array_specification_c *symbol) { |
|
377
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
320
diff
changeset
|
230 |
if (NULL == this->current_type_name) |
60b012b7793f
Adding support for compiling direct array specification inside variable declaration
laurent
parents:
320
diff
changeset
|
231 |
this->current_type_name = symbol->non_generic_type_name; |
181 | 232 |
return symbol->non_generic_type_name->accept(*this); |
233 |
} |
|
234 |
||
235 |
/* helper symbol for array_specification */ |
|
236 |
/* array_subrange_list ',' subrange */ |
|
237 |
void *search_base_type_c::visit(array_subrange_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
|
238 |
||
239 |
/* array_initialization: '[' array_initial_elements_list ']' */ |
|
240 |
/* helper symbol for array_initialization */ |
|
241 |
/* array_initial_elements_list ',' array_initial_elements */ |
|
242 |
void *search_base_type_c::visit(array_initial_elements_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
|
243 |
||
244 |
/* integer '(' [array_initial_element] ')' */ |
|
245 |
/* array_initial_element may be NULL ! */ |
|
246 |
void *search_base_type_c::visit(array_initial_elements_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
|
247 |
||
248 |
/* structure_type_name ':' structure_specification */ |
|
249 |
/* NOTE: structure_specification will point to either a |
|
250 |
* initialized_structure_c |
|
251 |
* OR A |
|
252 |
* structure_element_declaration_list_c |
|
253 |
*/ |
|
254 |
void *search_base_type_c::visit(structure_type_declaration_c *symbol) { |
|
255 |
this->current_type_name = symbol->structure_type_name; |
|
256 |
return symbol->structure_specification->accept(*this); |
|
257 |
} |
|
258 |
||
259 |
/* structure_type_name ASSIGN structure_initialization */ |
|
260 |
/* structure_initialization may be NULL ! */ |
|
261 |
void *search_base_type_c::visit(initialized_structure_c *symbol) { |
|
262 |
return symbol->structure_type_name->accept(*this); |
|
263 |
} |
|
264 |
||
265 |
/* helper symbol for structure_declaration */ |
|
266 |
/* structure_declaration: STRUCT structure_element_declaration_list END_STRUCT */ |
|
267 |
/* structure_element_declaration_list structure_element_declaration ';' */ |
|
268 |
void *search_base_type_c::visit(structure_element_declaration_list_c *symbol) { |
|
269 |
return (void *)symbol; |
|
270 |
} |
|
271 |
||
272 |
/* structure_element_name ':' *_spec_init */ |
|
273 |
void *search_base_type_c::visit(structure_element_declaration_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
|
274 |
||
275 |
/* helper symbol for structure_initialization */ |
|
276 |
/* structure_initialization: '(' structure_element_initialization_list ')' */ |
|
277 |
/* structure_element_initialization_list ',' structure_element_initialization */ |
|
278 |
void *search_base_type_c::visit(structure_element_initialization_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
|
279 |
||
280 |
/* structure_element_name ASSIGN value */ |
|
281 |
void *search_base_type_c::visit(structure_element_initialization_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
|
282 |
||
283 |
/* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ |
|
284 |
/* |
|
285 |
SYM_REF4(string_type_declaration_c, string_type_name, |
|
286 |
elementary_string_type_name, |
|
287 |
string_type_declaration_size, |
|
288 |
string_type_declaration_init) // may be == NULL! |
|
289 |
*/ |
|
290 |
void *search_base_type_c::visit(string_type_declaration_c *symbol) {return symbol;} |
|
291 |
||
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
292 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
293 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
294 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
295 |
/* 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
|
296 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
297 |
/* 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
|
298 |
// 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
|
299 |
void *search_base_type_c::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
|
300 |
return symbol; |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
301 |
} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
302 |