author | Mario de Sousa <msousa@fe.up.pt> |
Wed, 18 Jul 2012 17:04:34 +0100 | |
changeset 605 | 06caf4782e51 |
parent 433 | 1355adcdad58 |
child 762 | a3d917474ae4 |
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 |
||
34 |
/* |
|
35 |
* Determine the default initial value of a type declaration. |
|
36 |
* |
|
37 |
* This is part of the 4th stage that generates |
|
38 |
* a c++ source program equivalent to the IL and ST |
|
39 |
* code. |
|
40 |
*/ |
|
41 |
||
42 |
/* Given a type definition declration, determine its default |
|
43 |
* initial value. Note that types based on other types |
|
44 |
* may have to iterate through each type it is based on |
|
45 |
* to determine the initial value. |
|
46 |
* E.g. |
|
47 |
* TYPE |
|
48 |
* A_t : INT := 10; |
|
49 |
* B_t : A_t := 20; |
|
50 |
* C_t : B_t; |
|
51 |
* D_t : C_t := 40; |
|
52 |
* END_TYPE |
|
53 |
* Where the default initial value for C_t is 20! |
|
54 |
*/ |
|
55 |
/* NOTE: The main program only needs one instance of |
|
56 |
* this class of object. This class |
|
57 |
* is therefore a singleton. |
|
58 |
*/ |
|
59 |
||
60 |
class type_initial_value_c : public null_visitor_c { |
|
61 |
||
62 |
private: |
|
63 |
static type_initial_value_c *_instance; |
|
64 |
/* constants for the default values of elementary data types... */ |
|
65 |
static real_c *real_0; |
|
66 |
static integer_c *integer_0, *integer_1; |
|
67 |
static boolean_literal_c *bool_0; |
|
68 |
static date_literal_c *date_literal_0; |
|
69 |
static daytime_c *daytime_literal_0; |
|
70 |
static duration_c *time_0; |
|
71 |
static date_c *date_0; |
|
72 |
static time_of_day_c *tod_0; |
|
73 |
static date_and_time_c *dt_0; |
|
74 |
static single_byte_character_string_c *string_0; |
|
75 |
static double_byte_character_string_c *wstring_0; |
|
76 |
||
77 |
public: |
|
78 |
static type_initial_value_c *instance(void); |
|
79 |
||
80 |
protected: |
|
81 |
type_initial_value_c(void); |
|
82 |
||
83 |
public: |
|
84 |
symbol_c *get(identifier_c *type_name); |
|
85 |
||
86 |
||
87 |
private: |
|
88 |
void *handle_type_spec(symbol_c *base_type_name, symbol_c *type_spec_init); |
|
89 |
||
90 |
private: |
|
91 |
void *visit(identifier_c *type_name); |
|
92 |
||
93 |
/***********************************/ |
|
94 |
/* B 1.3.1 - Elementary Data Types */ |
|
95 |
/***********************************/ |
|
96 |
void *visit(time_type_name_c *symbol); |
|
97 |
void *visit(bool_type_name_c *symbol); |
|
98 |
void *visit(sint_type_name_c *symbol); |
|
99 |
void *visit(int_type_name_c *symbol); |
|
100 |
void *visit(dint_type_name_c *symbol); |
|
101 |
void *visit(lint_type_name_c *symbol); |
|
102 |
void *visit(usint_type_name_c *symbol); |
|
103 |
void *visit(uint_type_name_c *symbol); |
|
104 |
void *visit(udint_type_name_c *symbol); |
|
105 |
void *visit(ulint_type_name_c *symbol); |
|
106 |
void *visit(real_type_name_c *symbol); |
|
107 |
void *visit(lreal_type_name_c *symbol); |
|
108 |
void *visit(date_type_name_c *symbol); |
|
109 |
void *visit(tod_type_name_c *symbol); |
|
110 |
void *visit(dt_type_name_c *symbol); |
|
111 |
void *visit(byte_type_name_c *symbol); |
|
112 |
void *visit(word_type_name_c *symbol); |
|
113 |
void *visit(dword_type_name_c *symbol); |
|
114 |
void *visit(lword_type_name_c *symbol); |
|
115 |
void *visit(string_type_name_c *symbol); |
|
116 |
void *visit(wstring_type_name_c *symbol); |
|
117 |
||
257 | 118 |
void *visit(safetime_type_name_c *symbol); |
119 |
void *visit(safebool_type_name_c *symbol); |
|
120 |
void *visit(safesint_type_name_c *symbol); |
|
121 |
void *visit(safeint_type_name_c *symbol); |
|
122 |
void *visit(safedint_type_name_c *symbol); |
|
123 |
void *visit(safelint_type_name_c *symbol); |
|
124 |
void *visit(safeusint_type_name_c *symbol); |
|
125 |
void *visit(safeuint_type_name_c *symbol); |
|
126 |
void *visit(safeudint_type_name_c *symbol); |
|
127 |
void *visit(safeulint_type_name_c *symbol); |
|
128 |
void *visit(safereal_type_name_c *symbol); |
|
129 |
void *visit(safelreal_type_name_c *symbol); |
|
130 |
void *visit(safedate_type_name_c *symbol); |
|
131 |
void *visit(safetod_type_name_c *symbol); |
|
132 |
void *visit(safedt_type_name_c *symbol); |
|
133 |
void *visit(safebyte_type_name_c *symbol); |
|
134 |
void *visit(safeword_type_name_c *symbol); |
|
135 |
void *visit(safedword_type_name_c *symbol); |
|
136 |
void *visit(safelword_type_name_c *symbol); |
|
137 |
void *visit(safestring_type_name_c *symbol); |
|
138 |
void *visit(safewstring_type_name_c *symbol); |
|
139 |
||
181 | 140 |
/********************************/ |
141 |
/* B 1.3.3 - Derived data types */ |
|
142 |
/********************************/ |
|
143 |
/* simple_type_name ':' simple_spec_init */ |
|
144 |
void *visit(simple_type_declaration_c *symbol); |
|
145 |
||
146 |
/* simple_specification ASSIGN constant */ |
|
147 |
void *visit(simple_spec_init_c *symbol); |
|
148 |
||
149 |
/* subrange_type_name ':' subrange_spec_init */ |
|
150 |
void *visit(subrange_type_declaration_c *symbol); |
|
151 |
||
152 |
/* subrange_specification ASSIGN signed_integer */ |
|
153 |
void *visit(subrange_spec_init_c *symbol); |
|
154 |
||
155 |
/* integer_type_name '(' subrange')' */ |
|
156 |
void *visit(subrange_specification_c *symbol); |
|
157 |
||
158 |
/* signed_integer DOTDOT signed_integer */ |
|
159 |
void *visit(subrange_c *symbol); |
|
160 |
||
161 |
/* enumerated_type_name ':' enumerated_spec_init */ |
|
162 |
void *visit(enumerated_type_declaration_c *symbol); |
|
163 |
||
164 |
/* enumerated_specification ASSIGN enumerated_value */ |
|
165 |
void *visit(enumerated_spec_init_c *symbol); |
|
166 |
||
167 |
/* helper symbol for enumerated_specification->enumerated_spec_init */ |
|
168 |
/* enumerated_value_list ',' enumerated_value */ |
|
169 |
void *visit(enumerated_value_list_c *symbol); |
|
170 |
||
171 |
/* enumerated_type_name '#' identifier */ |
|
172 |
// SYM_REF2(enumerated_value_c, type, value) |
|
173 |
void *visit(enumerated_value_c *symbol); |
|
174 |
||
175 |
/* identifier ':' array_spec_init */ |
|
176 |
void *visit(array_type_declaration_c *symbol); |
|
177 |
||
178 |
/* array_specification [ASSIGN array_initialization} */ |
|
179 |
/* array_initialization may be NULL ! */ |
|
180 |
void *visit(array_spec_init_c *symbol); |
|
181 |
||
182 |
/* ARRAY '[' array_subrange_list ']' OF non_generic_type_name */ |
|
183 |
void *visit(array_specification_c *symbol); |
|
184 |
||
185 |
/* helper symbol for array_specification */ |
|
186 |
/* array_subrange_list ',' subrange */ |
|
187 |
void *visit(array_subrange_list_c *symbol); |
|
188 |
||
189 |
/* array_initialization: '[' array_initial_elements_list ']' */ |
|
190 |
/* helper symbol for array_initialization */ |
|
191 |
/* array_initial_elements_list ',' array_initial_elements */ |
|
192 |
void *visit(array_initial_elements_list_c *symbol); |
|
193 |
||
194 |
/* integer '(' [array_initial_element] ')' */ |
|
195 |
/* array_initial_element may be NULL ! */ |
|
196 |
void *visit(array_initial_elements_c *symbol); |
|
197 |
||
198 |
/* structure_type_name ':' structure_specification */ |
|
199 |
void *visit(structure_type_declaration_c *symbol); |
|
200 |
||
201 |
/* structure_type_name ASSIGN structure_initialization */ |
|
202 |
/* structure_initialization may be NULL ! */ |
|
203 |
void *visit(initialized_structure_c *symbol); |
|
204 |
||
205 |
/* helper symbol for structure_declaration */ |
|
206 |
/* structure_declaration: STRUCT structure_element_declaration_list END_STRUCT */ |
|
207 |
/* structure_element_declaration_list structure_element_declaration ';' */ |
|
208 |
void *visit(structure_element_declaration_list_c *symbol); |
|
209 |
||
210 |
/* structure_element_name ':' *_spec_init */ |
|
211 |
void *visit(structure_element_declaration_c *symbol); |
|
212 |
||
213 |
/* helper symbol for structure_initialization */ |
|
214 |
/* structure_initialization: '(' structure_element_initialization_list ')' */ |
|
215 |
/* structure_element_initialization_list ',' structure_element_initialization */ |
|
216 |
void *visit(structure_element_initialization_list_c *symbol); |
|
217 |
||
218 |
/* structure_element_name ASSIGN value */ |
|
219 |
void *visit(structure_element_initialization_c *symbol); |
|
220 |
||
221 |
/* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ |
|
222 |
/* |
|
223 |
* NOTE: |
|
224 |
* (Summary: Contrary to what is expected, the |
|
225 |
* string_type_declaration_c is not used to store |
|
226 |
* simple string type declarations that do not include |
|
227 |
* size limits. |
|
228 |
* For e.g.: |
|
229 |
* str1_type: STRING := "hello!" |
|
230 |
* will be stored in a simple_type_declaration_c |
|
231 |
* instead of a string_type_declaration_c. |
|
232 |
* The following: |
|
233 |
* str2_type: STRING [64] := "hello!" |
|
234 |
* will be stored in a sring_type_declaration_c |
|
235 |
* |
|
236 |
* Read on for why this is done... |
|
237 |
* End Summary) |
|
238 |
* |
|
239 |
* According to the spec, the valid construct |
|
240 |
* TYPE new_str_type : STRING := "hello!"; END_TYPE |
|
241 |
* has two possible routes to type_declaration... |
|
242 |
* |
|
243 |
* Route 1: |
|
244 |
* type_declaration: single_element_type_declaration |
|
245 |
* single_element_type_declaration: simple_type_declaration |
|
246 |
* simple_type_declaration: identifier ':' simple_spec_init |
|
247 |
* simple_spec_init: simple_specification ASSIGN constant |
|
248 |
* (shift: identifier <- 'new_str_type') |
|
249 |
* simple_specification: elementary_type_name |
|
250 |
* elementary_type_name: STRING |
|
251 |
* (shift: elementary_type_name <- STRING) |
|
252 |
* (reduce: simple_specification <- elementary_type_name) |
|
253 |
* (shift: constant <- "hello!") |
|
254 |
* (reduce: simple_spec_init: simple_specification ASSIGN constant) |
|
255 |
* (reduce: ...) |
|
256 |
* |
|
257 |
* |
|
258 |
* Route 2: |
|
259 |
* type_declaration: string_type_declaration |
|
260 |
* string_type_declaration: identifier ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init |
|
261 |
* (shift: identifier <- 'new_str_type') |
|
262 |
* elementary_string_type_name: STRING |
|
263 |
* (shift: elementary_string_type_name <- STRING) |
|
264 |
* (shift: string_type_declaration_size <- empty ) |
|
265 |
* string_type_declaration_init: ASSIGN character_string |
|
266 |
* (shift: character_string <- "hello!") |
|
267 |
* (reduce: string_type_declaration_init <- ASSIGN character_string) |
|
268 |
* (reduce: string_type_declaration <- identifier ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init ) |
|
269 |
* (reduce: type_declaration <- string_type_declaration) |
|
270 |
* |
|
271 |
* |
|
272 |
* At first glance it seems that removing route 1 would make |
|
273 |
* the most sense. Unfortunately the construct 'simple_spec_init' |
|
274 |
* shows up multiple times in other rules, so changing this construct |
|
275 |
* would also mean changing all the rules in which it appears. |
|
276 |
* I (Mario) therefore chose to remove route 2 instead. This means |
|
277 |
* that the above declaration gets stored in a |
|
278 |
* simple_type_declaration_c, and not in a string_type_declaration_c |
|
279 |
* as would be expected! |
|
280 |
*/ |
|
281 |
/* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ |
|
433
1355adcdad58
Add, to types symbol table, string datatypes with limited length (my_string_type: STRING[33]) (Thanks Andreas!)
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
282 |
// SYM_REF4(string_type_declaration_c, string_type_name, |
1355adcdad58
Add, to types symbol table, string datatypes with limited length (my_string_type: STRING[33]) (Thanks Andreas!)
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
283 |
// elementary_string_type_name, |
1355adcdad58
Add, to types symbol table, string datatypes with limited length (my_string_type: STRING[33]) (Thanks Andreas!)
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
284 |
// string_type_declaration_size, |
1355adcdad58
Add, to types symbol table, string datatypes with limited length (my_string_type: STRING[33]) (Thanks Andreas!)
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
285 |
// string_type_declaration_init) /* may be == NULL! */ |
181 | 286 |
void *visit(string_type_declaration_c *symbol); |
287 |
}; // type_initial_value_c |
|
288 |
||
289 |
||
290 |