author | laurent |
Wed, 02 Sep 2009 17:35:56 +0200 | |
changeset 207 | 56ee922d0112 |
parent 202 | da1a8186f86f |
child 217 | f5dfadf5de54 |
permissions | -rw-r--r-- |
181 | 1 |
/* |
2 |
* (c) 2003 Mario de Sousa |
|
3 |
* |
|
4 |
* Offered to the public under the terms of the GNU General Public License |
|
5 |
* as published by the Free Software Foundation; either version 2 of the |
|
6 |
* License, or (at your option) any later version. |
|
7 |
* |
|
8 |
* This program is distributed in the hope that it will be useful, but |
|
9 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
|
11 |
* Public License for more details. |
|
12 |
* |
|
13 |
* This code is made available on the understanding that it will not be |
|
14 |
* used in safety-critical situations without a full and competent review. |
|
15 |
*/ |
|
16 |
||
17 |
/* |
|
18 |
* An IEC 61131-3 IL and ST compiler. |
|
19 |
* |
|
20 |
* Based on the |
|
21 |
* FINAL DRAFT - IEC 61131-3, 2nd Ed. (2001-12-10) |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
||
26 |
/* Determine the data type of a specific variable instance, including |
|
27 |
* function block instances. |
|
28 |
* A reference to the relevant variable declaration is returned. |
|
29 |
* The variable instance may NOT be a member of a structure of a memeber |
|
30 |
* of a structure of an element of an array of ... |
|
31 |
* |
|
32 |
* example: |
|
33 |
* window.points[1].coordinate.x |
|
34 |
* window.points[1].colour |
|
35 |
* etc... ARE NOT ALLOWED! |
|
36 |
* |
|
37 |
* This class must only be passed the name of the variable that will appear |
|
38 |
* in the variable declaration. In the above examples, this would be |
|
39 |
* 'window' !! |
|
40 |
* |
|
41 |
* |
|
42 |
* If you need to pass a complete name of a variable instance (such as |
|
43 |
* 'window.points[1].coordinate.x') use the search_varfb_instance_type_c instead! |
|
44 |
*/ |
|
45 |
/* Note that current_type_decl that this class returns may reference the |
|
46 |
* name of a type, or the type declaration itself! |
|
47 |
* For an example of the first, consider a variable declared as ... |
|
48 |
* x : AAA; |
|
49 |
* where the AAA type is previously declared as whatever. |
|
50 |
* For an example of the second, consider a variable declared as ... |
|
51 |
* x : array of int [10]; ----> is allowed |
|
52 |
* |
|
53 |
* If it is the first, we will return a reference to the name, if the second |
|
54 |
* we return a reference to the declaration!! |
|
55 |
*/ |
|
56 |
||
57 |
||
58 |
class search_var_instance_decl_c: public search_visitor_c { |
|
59 |
||
60 |
private: |
|
61 |
symbol_c *search_scope; |
|
62 |
symbol_c *search_name; |
|
63 |
symbol_c *current_type_decl; |
|
64 |
||
65 |
/* variable used to store the type of variable currently being processed... */ |
|
66 |
/* Will contain a single value of generate_c_vardecl_c::XXXX_vt */ |
|
67 |
unsigned int current_vartype; |
|
68 |
||
69 |
public: |
|
70 |
search_var_instance_decl_c(symbol_c *search_scope); |
|
71 |
symbol_c *get_decl(symbol_c *variable_instance_name); |
|
72 |
unsigned int get_vartype(); |
|
73 |
||
74 |
public: |
|
75 |
||
76 |
/* the types of variables that need to be processed... */ |
|
77 |
static const unsigned int none_vt = 0x0000; |
|
78 |
static const unsigned int input_vt = 0x0001; // VAR_INPUT |
|
79 |
static const unsigned int output_vt = 0x0002; // VAR_OUTPUT |
|
80 |
static const unsigned int inoutput_vt = 0x0004; // VAR_IN_OUT |
|
81 |
static const unsigned int private_vt = 0x0008; // VAR |
|
82 |
static const unsigned int temp_vt = 0x0010; // VAR_TEMP |
|
83 |
static const unsigned int external_vt = 0x0020; // VAR_EXTERNAL |
|
84 |
static const unsigned int global_vt = 0x0040; // VAR_GLOBAL |
|
85 |
static const unsigned int located_vt = 0x0080; // VAR <var_name> AT <location> |
|
86 |
||
87 |
private: |
|
88 |
/***************************/ |
|
89 |
/* B 0 - Programming Model */ |
|
90 |
/***************************/ |
|
91 |
void *visit(library_c *symbol); |
|
92 |
||
93 |
/******************************************/ |
|
94 |
/* B 1.4.3 - Declaration & Initialisation */ |
|
95 |
/******************************************/ |
|
96 |
/* edge -> The F_EDGE or R_EDGE directive */ |
|
97 |
// SYM_REF2(edge_declaration_c, edge, var1_list) |
|
98 |
// TODO |
|
99 |
void *visit(input_declarations_c *symbol); |
|
100 |
/* VAR_OUTPUT [RETAIN | NON_RETAIN] var_init_decl_list END_VAR */ |
|
101 |
/* option -> may be NULL ! */ |
|
102 |
void *visit(output_declarations_c *symbol); |
|
103 |
/* VAR_IN_OUT var_declaration_list END_VAR */ |
|
104 |
void *visit(input_output_declarations_c *symbol); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
105 |
/* ENO : BOOL */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
106 |
void *visit(eno_param_declaration_c *symbol); |
181 | 107 |
/* VAR [CONSTANT] var_init_decl_list END_VAR */ |
108 |
/* option -> may be NULL ! */ |
|
109 |
/* helper symbol for input_declarations */ |
|
110 |
void *visit(var_declarations_c *symbol); |
|
111 |
/* VAR RETAIN var_init_decl_list END_VAR */ |
|
112 |
void *visit(retentive_var_declarations_c *symbol); |
|
113 |
/* VAR [CONSTANT|RETAIN|NON_RETAIN] located_var_decl_list END_VAR */ |
|
114 |
/* option -> may be NULL ! */ |
|
115 |
//SYM_REF2(located_var_declarations_c, option, located_var_decl_list) |
|
116 |
void *visit(located_var_declarations_c *symbol); |
|
117 |
/*| VAR_EXTERNAL [CONSTANT] external_declaration_list END_VAR */ |
|
118 |
/* option -> may be NULL ! */ |
|
119 |
//SYM_REF2(external_var_declarations_c, option, external_declaration_list) |
|
120 |
void *visit(external_var_declarations_c *symbol); |
|
121 |
/*| VAR_GLOBAL [CONSTANT|RETAIN] global_var_decl_list END_VAR */ |
|
122 |
/* option -> may be NULL ! */ |
|
123 |
//SYM_REF2(global_var_declarations_c, option, global_var_decl_list) |
|
124 |
void *visit(global_var_declarations_c *symbol); |
|
125 |
/* var1_list is one of the following... |
|
126 |
* simple_spec_init_c * |
|
127 |
* subrange_spec_init_c * |
|
128 |
* enumerated_spec_init_c * |
|
129 |
*/ |
|
130 |
// SYM_REF2(var1_init_decl_c, var1_list, spec_init) |
|
131 |
void *visit(var1_init_decl_c *symbol); |
|
132 |
/* var1_list ',' variable_name */ |
|
133 |
// SYM_LIST(var1_list_c) |
|
134 |
void *visit(var1_list_c *symbol); |
|
135 |
/* name_list ':' function_block_type_name ASSIGN structure_initialization */ |
|
136 |
/* structure_initialization -> may be NULL ! */ |
|
137 |
void *visit(fb_name_decl_c *symbol); |
|
138 |
/* name_list ',' fb_name */ |
|
139 |
void *visit(fb_name_list_c *symbol); |
|
140 |
/* var1_list ':' array_spec_init */ |
|
141 |
// SYM_REF2(array_var_init_decl_c, var1_list, array_spec_init) |
|
142 |
void *visit(array_var_init_decl_c *symbol); |
|
143 |
/* var1_list ':' initialized_structure */ |
|
144 |
// SYM_REF2(structured_var_init_decl_c, var1_list, initialized_structure) |
|
145 |
void *visit(structured_var_init_decl_c *symbol); |
|
146 |
/* var1_list ':' array_specification */ |
|
147 |
// SYM_REF2(array_var_declaration_c, var1_list, array_specification) |
|
148 |
void *visit(array_var_declaration_c *symbol); |
|
149 |
/* var1_list ':' structure_type_name */ |
|
150 |
// SYM_REF2(structured_var_declaration_c, var1_list, structure_type_name) |
|
151 |
void *visit(structured_var_declaration_c *symbol); |
|
152 |
/* [variable_name] location ':' located_var_spec_init */ |
|
153 |
/* variable_name -> may be NULL ! */ |
|
154 |
// SYM_REF4(located_var_decl_c, variable_name, location, located_var_spec_init, unused) |
|
155 |
// TODO!! |
|
156 |
||
157 |
/* global_var_name ':' (simple_specification|subrange_specification|enumerated_specification|array_specification|prev_declared_structure_type_name|function_block_type_name */ |
|
158 |
// SYM_REF2(external_declaration_c, global_var_name, specification) |
|
159 |
void *visit(external_declaration_c *symbol); |
|
160 |
/*| global_var_spec ':' [located_var_spec_init|function_block_type_name] */ |
|
161 |
/* type_specification ->may be NULL ! */ |
|
162 |
// SYM_REF2(global_var_decl_c, global_var_spec, type_specification) |
|
163 |
void *visit(global_var_decl_c *symbol); |
|
164 |
/*| global_var_name location */ |
|
165 |
//SYM_REF2(global_var_spec_c, global_var_name, location) |
|
166 |
void *visit(global_var_spec_c *symbol); |
|
167 |
/*| global_var_list ',' global_var_name */ |
|
168 |
//SYM_LIST(global_var_list_c) |
|
169 |
void *visit(global_var_list_c *symbol); |
|
170 |
/* [variable_name] location ':' located_var_spec_init */ |
|
171 |
/* variable_name -> may be NULL ! */ |
|
172 |
//SYM_REF4(located_var_decl_c, variable_name, location, located_var_spec_init, unused) |
|
173 |
void *visit(located_var_decl_c *symbol); |
|
174 |
/*| global_var_spec ':' [located_var_spec_init|function_block_type_name] */ |
|
175 |
/* type_specification ->may be NULL ! */ |
|
176 |
// SYM_REF2(global_var_decl_c, global_var_spec, type_specification) |
|
177 |
// TODO!! |
|
178 |
/* AT direct_variable */ |
|
179 |
// SYM_REF2(location_c, direct_variable, unused) |
|
180 |
void *visit(location_c *symbol); |
|
181 |
/*| global_var_list ',' global_var_name */ |
|
182 |
// SYM_LIST(global_var_list_c) |
|
183 |
// TODO!! |
|
184 |
/* var1_list ':' single_byte_string_spec */ |
|
185 |
// SYM_REF2(single_byte_string_var_declaration_c, var1_list, single_byte_string_spec) |
|
186 |
void *visit(single_byte_string_var_declaration_c *symbol); |
|
187 |
/* STRING ['[' integer ']'] [ASSIGN single_byte_character_string] */ |
|
188 |
/* integer ->may be NULL ! */ |
|
189 |
/* single_byte_character_string ->may be NULL ! */ |
|
190 |
// SYM_REF2(single_byte_string_spec_c, integer, single_byte_character_string) |
|
191 |
// TODO!! |
|
192 |
||
193 |
/* var1_list ':' double_byte_string_spec */ |
|
194 |
// SYM_REF2(double_byte_string_var_declaration_c, var1_list, double_byte_string_spec) |
|
195 |
void *visit(double_byte_string_var_declaration_c *symbol); |
|
196 |
/* WSTRING ['[' integer ']'] [ASSIGN double_byte_character_string] */ |
|
197 |
/* integer ->may be NULL ! */ |
|
198 |
/* double_byte_character_string ->may be NULL ! */ |
|
199 |
// SYM_REF2(double_byte_string_spec_c, integer, double_byte_character_string) |
|
200 |
// TODO!! |
|
201 |
||
202 |
/* variable_name incompl_location ':' var_spec */ |
|
203 |
// SYM_REF4(incompl_located_var_decl_c, variable_name, incompl_location, var_spec, unused) |
|
204 |
// TODO!! |
|
205 |
||
206 |
/* AT incompl_location_token */ |
|
207 |
// SYM_TOKEN(incompl_location_c) |
|
208 |
// TODO!! |
|
209 |
||
210 |
||
211 |
/**************************************/ |
|
212 |
/* B.1.5 - Program organization units */ |
|
213 |
/**************************************/ |
|
214 |
/***********************/ |
|
215 |
/* B 1.5.1 - Functions */ |
|
216 |
/***********************/ |
|
217 |
// SYM_REF4(function_declaration_c, derived_function_name, type_name, var_declarations_list, function_body) |
|
218 |
void *visit(function_declaration_c *symbol); |
|
219 |
||
220 |
/*****************************/ |
|
221 |
/* B 1.5.2 - Function Blocks */ |
|
222 |
/*****************************/ |
|
223 |
void *visit(function_block_declaration_c *symbol); |
|
224 |
||
225 |
/**********************/ |
|
226 |
/* B 1.5.3 - Programs */ |
|
227 |
/**********************/ |
|
228 |
void *visit(program_declaration_c *symbol); |
|
229 |
||
230 |
/********************************/ |
|
231 |
/* B 1.7 Configuration elements */ |
|
232 |
/********************************/ |
|
233 |
||
234 |
/* |
|
235 |
CONFIGURATION configuration_name |
|
236 |
optional_global_var_declarations |
|
237 |
(resource_declaration_list | single_resource_declaration) |
|
238 |
optional_access_declarations |
|
239 |
optional_instance_specific_initializations |
|
240 |
END_CONFIGURATION |
|
241 |
*/ |
|
242 |
/* |
|
243 |
SYM_REF6(configuration_declaration_c, configuration_name, global_var_declarations, resource_declarations, access_declarations, instance_specific_initializations, unused) |
|
244 |
*/ |
|
245 |
void *visit(configuration_declaration_c *symbol); |
|
246 |
/* |
|
247 |
RESOURCE resource_name ON resource_type_name |
|
248 |
optional_global_var_declarations |
|
249 |
single_resource_declaration |
|
250 |
END_RESOURCE |
|
251 |
*/ |
|
252 |
// SYM_REF4(resource_declaration_c, resource_name, resource_type_name, global_var_declarations, resource_declaration) |
|
253 |
void *visit(resource_declaration_c *symbol); |
|
254 |
||
255 |
/* task_configuration_list program_configuration_list */ |
|
256 |
// SYM_REF2(single_resource_declaration_c, task_configuration_list, program_configuration_list) |
|
257 |
void *visit(single_resource_declaration_c *symbol); |
|
258 |
||
259 |
#if 0 |
|
260 |
/*********************/ |
|
261 |
/* B 1.4 - Variables */ |
|
262 |
/*********************/ |
|
263 |
SYM_REF2(symbolic_variable_c, var_name, unused) |
|
264 |
||
265 |
/********************************************/ |
|
266 |
/* B.1.4.1 Directly Represented Variables */ |
|
267 |
/********************************************/ |
|
268 |
SYM_TOKEN(direct_variable_c) |
|
269 |
||
270 |
/*************************************/ |
|
271 |
/* B.1.4.2 Multi-element Variables */ |
|
272 |
/*************************************/ |
|
273 |
/* subscripted_variable '[' subscript_list ']' */ |
|
274 |
SYM_REF2(array_variable_c, subscripted_variable, subscript_list) |
|
275 |
||
276 |
/* subscript_list ',' subscript */ |
|
277 |
SYM_LIST(subscript_list_c) |
|
278 |
||
279 |
/* record_variable '.' field_selector */ |
|
280 |
/* WARNING: input and/or output variables of function blocks |
|
281 |
* may be accessed as fields of a tructured variable! |
|
282 |
* Code handling a structured_variable_c must take |
|
283 |
* this into account! |
|
284 |
*/ |
|
285 |
SYM_REF2(structured_variable_c, record_variable, field_selector) |
|
286 |
#endif |
|
287 |
||
288 |
}; // search_var_instance_decl_c |
|
289 |