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