author | Laurent Bessard |
Tue, 23 Oct 2012 11:32:49 +0200 | |
changeset 638 | 049748e9410a |
parent 547 | dab341e80664 |
child 762 | a3d917474ae4 |
permissions | -rw-r--r-- |
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 |
* Determine the default initial value of a type declaration. |
|
35 |
* |
|
36 |
* This is part of the 4th stage that generates |
|
37 |
* a c++ source program equivalent to the IL and ST |
|
38 |
* code. |
|
39 |
*/ |
|
40 |
/* Given a type definition declration, determine its default |
|
41 |
* initial value. Note that types based on other types |
|
42 |
* may have to iterate through each type it is based on |
|
43 |
* to determine the initial value. |
|
44 |
* E.g. |
|
45 |
* TYPE |
|
46 |
* A_t : INT := 10; |
|
47 |
* B_t : A_t := 20; |
|
48 |
* C_t : B_t; |
|
49 |
* D_t : C_t := 40; |
|
50 |
* END_TYPE |
|
51 |
* Where the default initial value for C_t is 20! |
|
52 |
*/ |
|
53 |
/* NOTE: The main program only needs one instance of |
|
54 |
* this class of object. This class |
|
55 |
* is therefore a singleton. |
|
56 |
*/ |
|
57 |
||
58 |
||
59 |
#include "absyntax_utils.hh" |
|
60 |
||
61 |
//#define DEBUG |
|
62 |
#ifdef DEBUG |
|
63 |
#define TRACE(classname) printf("\n____%s____\n",classname); |
|
64 |
#else |
|
65 |
#define TRACE(classname) |
|
66 |
#endif |
|
67 |
||
68 |
||
69 |
type_initial_value_c *type_initial_value_c::instance(void) { |
|
70 |
if (_instance != NULL) |
|
71 |
return _instance; |
|
72 |
||
73 |
_instance = new type_initial_value_c; |
|
74 |
||
75 |
real_0 = new real_c("0"); |
|
76 |
integer_0 = new integer_c("0"); |
|
77 |
integer_1 = new integer_c("1"); |
|
78 |
bool_0 = new boolean_literal_c(new bool_type_name_c(),new boolean_false_c()); |
|
79 |
/* FIXME: Our current implementation only allows dates from 1970 onwards, |
|
80 |
* but the standard defines the date 0001-01-01 as the default value |
|
81 |
* for the DATE data type. Untill we fix our implementation, we use 1970-01-01 |
|
82 |
* as our default value!! |
|
83 |
*/ |
|
84 |
date_literal_0 = new date_literal_c(integer_1, integer_1, integer_1); |
|
85 |
date_literal_0 = new date_literal_c(new integer_c("1970"), integer_1, integer_1); |
|
86 |
daytime_literal_0 = new daytime_c(integer_0, integer_0, real_0); |
|
547
dab341e80664
Fix parsing os TIME literals & rename the extract_integer() function.
mjsousa <msousa@fe.up.pt>
parents:
433
diff
changeset
|
87 |
time_0 = new duration_c(new time_type_name_c(), NULL, new interval_c(NULL, NULL, NULL, integer_0, NULL)); // T#0s |
257 | 88 |
date_0 = new date_c(new date_type_name_c(), date_literal_0); // D#0001-01-01 |
89 |
tod_0 = new time_of_day_c(new tod_type_name_c(), daytime_literal_0); // TOD#00:00:00 |
|
90 |
dt_0 = new date_and_time_c(new dt_type_name_c(), date_literal_0, daytime_literal_0); // DT#0001-01-01-00:00:00 |
|
181 | 91 |
string_0 = new single_byte_character_string_c("''"); |
92 |
wstring_0 = new double_byte_character_string_c("\"\""); |
|
93 |
||
94 |
return _instance; |
|
95 |
} |
|
96 |
||
97 |
type_initial_value_c::type_initial_value_c(void) {} |
|
98 |
||
99 |
||
100 |
||
101 |
symbol_c *type_initial_value_c::get(identifier_c *type_name) { |
|
102 |
TRACE("type_initial_value_c::get(): called "); |
|
103 |
return (symbol_c *)type_name->accept(*this); |
|
104 |
} |
|
105 |
||
106 |
||
107 |
||
108 |
||
109 |
void *type_initial_value_c::handle_type_spec(symbol_c *base_type_name, symbol_c *type_spec_init) { |
|
110 |
if (type_spec_init != NULL) |
|
111 |
return type_spec_init; |
|
112 |
/* no initial value specified, so we return |
|
113 |
* the initial value of the type this type is based on... |
|
114 |
*/ |
|
115 |
return base_type_name->accept(*this); |
|
116 |
} |
|
117 |
||
118 |
||
119 |
||
120 |
void *type_initial_value_c::visit(identifier_c *type_name) { |
|
121 |
/* look up the type declaration... */ |
|
122 |
symbol_c *type_decl = type_symtable.find_value(type_name); |
|
123 |
if (type_decl == type_symtable.end_value()) |
|
124 |
/* Type declaration not found!! */ |
|
125 |
/* NOTE: Variables declared out of function block 'data types', |
|
126 |
* for eg: VAR timer: TON; END_VAR |
|
127 |
* do not have a default value, so (TON) will never be found in the |
|
128 |
* type symbol table. This means we cannot simply consider this |
|
129 |
* an error and abort, but must rather return a NULL. |
|
130 |
*/ |
|
131 |
return NULL; |
|
132 |
||
133 |
return type_decl->accept(*this); |
|
134 |
} |
|
135 |
||
136 |
/***********************************/ |
|
137 |
/* B 1.3.1 - Elementary Data Types */ |
|
138 |
/***********************************/ |
|
257 | 139 |
void *type_initial_value_c::visit(time_type_name_c *symbol) {return (void *)time_0;} |
140 |
void *type_initial_value_c::visit(bool_type_name_c *symbol) {return (void *)bool_0;} |
|
141 |
void *type_initial_value_c::visit(sint_type_name_c *symbol) {return (void *)integer_0;} |
|
142 |
void *type_initial_value_c::visit(int_type_name_c *symbol) {return (void *)integer_0;} |
|
143 |
void *type_initial_value_c::visit(dint_type_name_c *symbol) {return (void *)integer_0;} |
|
144 |
void *type_initial_value_c::visit(lint_type_name_c *symbol) {return (void *)integer_0;} |
|
145 |
void *type_initial_value_c::visit(usint_type_name_c *symbol) {return (void *)integer_0;} |
|
146 |
void *type_initial_value_c::visit(uint_type_name_c *symbol) {return (void *)integer_0;} |
|
147 |
void *type_initial_value_c::visit(udint_type_name_c *symbol) {return (void *)integer_0;} |
|
148 |
void *type_initial_value_c::visit(ulint_type_name_c *symbol) {return (void *)integer_0;} |
|
149 |
void *type_initial_value_c::visit(real_type_name_c *symbol) {return (void *)real_0;} |
|
150 |
void *type_initial_value_c::visit(lreal_type_name_c *symbol) {return (void *)real_0;} |
|
151 |
void *type_initial_value_c::visit(date_type_name_c *symbol) {return (void *)date_0;} |
|
152 |
void *type_initial_value_c::visit(tod_type_name_c *symbol) {return (void *)tod_0;} |
|
153 |
void *type_initial_value_c::visit(dt_type_name_c *symbol) {return (void *)dt_0;} |
|
154 |
void *type_initial_value_c::visit(byte_type_name_c *symbol) {return (void *)integer_0;} |
|
155 |
void *type_initial_value_c::visit(word_type_name_c *symbol) {return (void *)integer_0;} |
|
156 |
void *type_initial_value_c::visit(dword_type_name_c *symbol) {return (void *)integer_0;} |
|
157 |
void *type_initial_value_c::visit(lword_type_name_c *symbol) {return (void *)integer_0;} |
|
158 |
void *type_initial_value_c::visit(string_type_name_c *symbol) {return (void *)string_0;} |
|
159 |
void *type_initial_value_c::visit(wstring_type_name_c *symbol) {return (void *)wstring_0;} |
|
160 |
||
161 |
void *type_initial_value_c::visit(safetime_type_name_c *symbol) {return (void *)time_0;} |
|
162 |
void *type_initial_value_c::visit(safebool_type_name_c *symbol) {return (void *)bool_0;} |
|
163 |
void *type_initial_value_c::visit(safesint_type_name_c *symbol) {return (void *)integer_0;} |
|
164 |
void *type_initial_value_c::visit(safeint_type_name_c *symbol) {return (void *)integer_0;} |
|
165 |
void *type_initial_value_c::visit(safedint_type_name_c *symbol) {return (void *)integer_0;} |
|
166 |
void *type_initial_value_c::visit(safelint_type_name_c *symbol) {return (void *)integer_0;} |
|
167 |
void *type_initial_value_c::visit(safeusint_type_name_c *symbol) {return (void *)integer_0;} |
|
168 |
void *type_initial_value_c::visit(safeuint_type_name_c *symbol) {return (void *)integer_0;} |
|
169 |
void *type_initial_value_c::visit(safeudint_type_name_c *symbol) {return (void *)integer_0;} |
|
170 |
void *type_initial_value_c::visit(safeulint_type_name_c *symbol) {return (void *)integer_0;} |
|
171 |
void *type_initial_value_c::visit(safereal_type_name_c *symbol) {return (void *)real_0;} |
|
172 |
void *type_initial_value_c::visit(safelreal_type_name_c *symbol) {return (void *)real_0;} |
|
173 |
void *type_initial_value_c::visit(safedate_type_name_c *symbol) {return (void *)date_0;} |
|
174 |
void *type_initial_value_c::visit(safetod_type_name_c *symbol) {return (void *)tod_0;} |
|
175 |
void *type_initial_value_c::visit(safedt_type_name_c *symbol) {return (void *)dt_0;} |
|
176 |
void *type_initial_value_c::visit(safebyte_type_name_c *symbol) {return (void *)integer_0;} |
|
177 |
void *type_initial_value_c::visit(safeword_type_name_c *symbol) {return (void *)integer_0;} |
|
178 |
void *type_initial_value_c::visit(safedword_type_name_c *symbol) {return (void *)integer_0;} |
|
179 |
void *type_initial_value_c::visit(safelword_type_name_c *symbol) {return (void *)integer_0;} |
|
180 |
void *type_initial_value_c::visit(safestring_type_name_c *symbol) {return (void *)string_0;} |
|
181 |
void *type_initial_value_c::visit(safewstring_type_name_c *symbol) {return (void *)wstring_0;} |
|
181 | 182 |
|
183 |
/********************************/ |
|
184 |
/* B 1.3.3 - Derived data types */ |
|
185 |
/********************************/ |
|
186 |
/* simple_type_name ':' simple_spec_init */ |
|
187 |
void *type_initial_value_c::visit(simple_type_declaration_c *symbol) { |
|
188 |
return symbol->simple_spec_init->accept(*this); |
|
189 |
} |
|
190 |
/* simple_specification ASSIGN constant */ |
|
191 |
void *type_initial_value_c::visit(simple_spec_init_c *symbol) { |
|
192 |
return handle_type_spec(symbol->simple_specification, symbol->constant); |
|
193 |
} |
|
194 |
/* subrange_type_name ':' subrange_spec_init */ |
|
195 |
void *type_initial_value_c::visit(subrange_type_declaration_c *symbol) { |
|
196 |
return symbol->subrange_spec_init->accept(*this); |
|
197 |
} |
|
198 |
/* subrange_specification ASSIGN signed_integer */ |
|
199 |
void *type_initial_value_c::visit(subrange_spec_init_c *symbol) { |
|
200 |
return handle_type_spec(symbol->subrange_specification, symbol->signed_integer); |
|
201 |
} |
|
202 |
/* integer_type_name '(' subrange')' */ |
|
203 |
void *type_initial_value_c::visit(subrange_specification_c *symbol) { |
|
204 |
/* if no initial value explicitly given, then use the lowest value of the subrange */ |
|
205 |
if (symbol->subrange != NULL) |
|
206 |
return symbol->subrange->accept(*this); |
|
207 |
else |
|
208 |
return symbol->integer_type_name->accept(*this); |
|
209 |
} |
|
210 |
/* signed_integer DOTDOT signed_integer */ |
|
211 |
void *type_initial_value_c::visit(subrange_c *symbol) {return symbol->lower_limit;} |
|
212 |
/* enumerated_type_name ':' enumerated_spec_init */ |
|
213 |
void *type_initial_value_c::visit(enumerated_type_declaration_c *symbol) { |
|
214 |
return symbol->enumerated_spec_init->accept(*this); |
|
215 |
} |
|
216 |
/* enumerated_specification ASSIGN enumerated_value */ |
|
217 |
void *type_initial_value_c::visit(enumerated_spec_init_c *symbol) { |
|
218 |
return handle_type_spec(symbol->enumerated_specification, symbol->enumerated_value); |
|
219 |
} |
|
220 |
/* helper symbol for enumerated_specification->enumerated_spec_init */ |
|
221 |
/* enumerated_value_list ',' enumerated_value */ |
|
222 |
void *type_initial_value_c::visit(enumerated_value_list_c *symbol) { |
|
223 |
/* if no initial value explicitly given, then use the lowest value of the subrange */ |
|
224 |
return (void *)symbol->elements[0]; |
|
225 |
} |
|
226 |
/* enumerated_type_name '#' identifier */ |
|
227 |
// SYM_REF2(enumerated_value_c, type, value) |
|
228 |
void *type_initial_value_c::visit(enumerated_value_c *symbol) {ERROR; return NULL;} |
|
229 |
/* identifier ':' array_spec_init */ |
|
230 |
void *type_initial_value_c::visit(array_type_declaration_c *symbol) { |
|
231 |
return symbol->array_spec_init->accept(*this); |
|
232 |
} |
|
233 |
/* array_specification [ASSIGN array_initialization} */ |
|
234 |
/* array_initialization may be NULL ! */ |
|
235 |
void *type_initial_value_c::visit(array_spec_init_c *symbol) { |
|
236 |
return handle_type_spec(symbol->array_specification, symbol->array_initialization); |
|
237 |
} |
|
238 |
/* ARRAY '[' array_subrange_list ']' OF non_generic_type_name */ |
|
239 |
void *type_initial_value_c::visit(array_specification_c *symbol) { |
|
240 |
//symbol_c *init_value = (symbol_c *)symbol->non_generic_type_name->accept(*this); |
|
241 |
||
242 |
/* Now build a array_initial_elements_list_c list, and populate it |
|
243 |
* with 1 element of the array_initial_elements_c class |
|
244 |
*/ |
|
245 |
/* The array_initial_elements_c will contain a reference to the init_value, |
|
246 |
* and another constant representing the number of elements in the array. |
|
247 |
* In essence, we are building the equivilant of the following ST/IL code: |
|
248 |
* New_array_t : ARRAY [1..30, 51..60] of INT := [40(XXX)]; |
|
249 |
* from the user given code |
|
250 |
* New_array_t : ARRAY [1..30, 51..60] of INT; |
|
251 |
* and replacing XXX with the default initial value of INT. |
|
252 |
*/ |
|
253 |
/* now we need to determine the number of elements in the array... */ |
|
254 |
/* Easier said than done, as the array may have a list of subranges, as in the |
|
255 |
* example given above!! |
|
256 |
*/ |
|
257 |
/* TODO !!!!!*/ |
|
258 |
/* For now, just assume an array with 1 element. |
|
259 |
* I (Mario) want to finish off this part of the code before getting boged down |
|
260 |
* in something else... |
|
261 |
*/ |
|
262 |
// NOTE: We are leaking memory, as the integer will never get free'd!! |
|
263 |
//integer_c *integer = new integer_c("1"); |
|
264 |
// NOTE: We are leaking memory, as the array_initial_elements will never get free'd!! |
|
265 |
//array_initial_elements_c *array_initial_elements = new array_initial_elements_c(integer, init_value); |
|
266 |
// NOTE: We are leaking memory, as the array_initial_elements_list will never get free'd!! |
|
267 |
array_initial_elements_list_c *array_initial_elements_list = new array_initial_elements_list_c(); |
|
268 |
//array_initial_elements_list->add_element(array_initial_elements); |
|
269 |
return array_initial_elements_list; |
|
270 |
} |
|
271 |
/* helper symbol for array_specification */ |
|
272 |
/* array_subrange_list ',' subrange */ |
|
273 |
void *type_initial_value_c::visit(array_subrange_list_c *symbol) {ERROR; return NULL;} |
|
274 |
/* array_initialization: '[' array_initial_elements_list ']' */ |
|
275 |
/* helper symbol for array_initialization */ |
|
276 |
/* array_initial_elements_list ',' array_initial_elements */ |
|
277 |
void *type_initial_value_c::visit(array_initial_elements_list_c *symbol) {ERROR; return NULL;} |
|
278 |
/* integer '(' [array_initial_element] ')' */ |
|
279 |
/* array_initial_element may be NULL ! */ |
|
280 |
void *type_initial_value_c::visit(array_initial_elements_c *symbol) {ERROR; return NULL;} |
|
281 |
||
282 |
||
283 |
||
284 |
/* TODO: from this point forward... */ |
|
285 |
||
286 |
/* structure_type_name ':' structure_specification */ |
|
287 |
void *type_initial_value_c::visit(structure_type_declaration_c *symbol) {return NULL;} |
|
288 |
/* structure_type_name ASSIGN structure_initialization */ |
|
289 |
/* structure_initialization may be NULL ! */ |
|
290 |
void *type_initial_value_c::visit(initialized_structure_c *symbol) { |
|
291 |
return handle_type_spec(symbol->structure_type_name, symbol->structure_initialization); |
|
292 |
} |
|
293 |
/* helper symbol for structure_declaration */ |
|
294 |
/* structure_declaration: STRUCT structure_element_declaration_list END_STRUCT */ |
|
295 |
/* structure_element_declaration_list structure_element_declaration ';' */ |
|
296 |
void *type_initial_value_c::visit(structure_element_declaration_list_c *symbol) { |
|
297 |
structure_element_initialization_list_c *structure_element_initialization_list = new structure_element_initialization_list_c(); |
|
298 |
return structure_element_initialization_list; |
|
299 |
} |
|
300 |
/* structure_element_name ':' *_spec_init */ |
|
301 |
void *type_initial_value_c::visit(structure_element_declaration_c *symbol) {return NULL;} |
|
302 |
/* helper symbol for structure_initialization */ |
|
303 |
/* structure_initialization: '(' structure_element_initialization_list ')' */ |
|
304 |
/* structure_element_initialization_list ',' structure_element_initialization */ |
|
305 |
void *type_initial_value_c::visit(structure_element_initialization_list_c *symbol) {return NULL;} |
|
306 |
/* structure_element_name ASSIGN value */ |
|
307 |
void *type_initial_value_c::visit(structure_element_initialization_c *symbol) {return NULL;} |
|
308 |
/* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ |
|
309 |
/* |
|
310 |
* NOTE: |
|
311 |
* (Summary: Contrary to what is expected, the |
|
312 |
* string_type_declaration_c is not used to store |
|
313 |
* simple string type declarations that do not include |
|
314 |
* size limits. |
|
315 |
* For e.g.: |
|
316 |
* str1_type: STRING := "hello!" |
|
317 |
* will be stored in a simple_type_declaration_c |
|
318 |
* instead of a string_type_declaration_c. |
|
319 |
* The following: |
|
320 |
* str2_type: STRING [64] := "hello!" |
|
321 |
* will be stored in a sring_type_declaration_c |
|
322 |
* |
|
323 |
* Read on for why this is done... |
|
324 |
* End Summary) |
|
325 |
* |
|
326 |
* According to the spec, the valid construct |
|
327 |
* TYPE new_str_type : STRING := "hello!"; END_TYPE |
|
328 |
* has two possible routes to type_declaration... |
|
329 |
* |
|
330 |
* Route 1: |
|
331 |
* type_declaration: single_element_type_declaration |
|
332 |
* single_element_type_declaration: simple_type_declaration |
|
333 |
* simple_type_declaration: identifier ':' simple_spec_init |
|
334 |
* simple_spec_init: simple_specification ASSIGN constant |
|
335 |
* (shift: identifier <- 'new_str_type') |
|
336 |
* simple_specification: elementary_type_name |
|
337 |
* elementary_type_name: STRING |
|
338 |
* (shift: elementary_type_name <- STRING) |
|
339 |
* (reduce: simple_specification <- elementary_type_name) |
|
340 |
* (shift: constant <- "hello!") |
|
341 |
* (reduce: simple_spec_init: simple_specification ASSIGN constant) |
|
342 |
* (reduce: ...) |
|
343 |
* |
|
344 |
* |
|
345 |
* Route 2: |
|
346 |
* type_declaration: string_type_declaration |
|
347 |
* string_type_declaration: identifier ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init |
|
348 |
* (shift: identifier <- 'new_str_type') |
|
349 |
* elementary_string_type_name: STRING |
|
350 |
* (shift: elementary_string_type_name <- STRING) |
|
351 |
* (shift: string_type_declaration_size <- empty ) |
|
352 |
* string_type_declaration_init: ASSIGN character_string |
|
353 |
* (shift: character_string <- "hello!") |
|
354 |
* (reduce: string_type_declaration_init <- ASSIGN character_string) |
|
355 |
* (reduce: string_type_declaration <- identifier ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init ) |
|
356 |
* (reduce: type_declaration <- string_type_declaration) |
|
357 |
* |
|
358 |
* |
|
359 |
* At first glance it seems that removing route 1 would make |
|
360 |
* the most sense. Unfortunately the construct 'simple_spec_init' |
|
361 |
* shows up multiple times in other rules, so changing this construct |
|
362 |
* would also mean changing all the rules in which it appears. |
|
363 |
* I (Mario) therefore chose to remove route 2 instead. This means |
|
364 |
* that the above declaration gets stored in a |
|
365 |
* simple_type_declaration_c, and not in a string_type_declaration_c |
|
366 |
* as would be expected! |
|
367 |
*/ |
|
368 |
/* 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:
432
diff
changeset
|
369 |
// 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:
432
diff
changeset
|
370 |
// 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:
432
diff
changeset
|
371 |
// 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:
432
diff
changeset
|
372 |
// string_type_declaration_init) /* may be == NULL! */ |
432
9c5ad4be30fd
Correctly return the initial value of a string datatype, with limited length (STRING[33] := 'hello')
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
373 |
void *type_initial_value_c::visit(string_type_declaration_c *symbol) { |
9c5ad4be30fd
Correctly return the initial value of a string datatype, with limited length (STRING[33] := 'hello')
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
374 |
return handle_type_spec(symbol->elementary_string_type_name, symbol->string_type_declaration_init); |
9c5ad4be30fd
Correctly return the initial value of a string datatype, with limited length (STRING[33] := 'hello')
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
375 |
} |
181 | 376 |
|
377 |
||
378 |
type_initial_value_c *type_initial_value_c::_instance = NULL; |
|
379 |
real_c *type_initial_value_c::real_0 = NULL; |
|
380 |
integer_c *type_initial_value_c::integer_0 = NULL; |
|
381 |
integer_c *type_initial_value_c::integer_1 = NULL; |
|
382 |
boolean_literal_c *type_initial_value_c::bool_0 = NULL; |
|
383 |
date_literal_c *type_initial_value_c::date_literal_0 = NULL; |
|
384 |
daytime_c *type_initial_value_c::daytime_literal_0 = NULL; |
|
385 |
duration_c *type_initial_value_c::time_0 = NULL; |
|
386 |
date_c *type_initial_value_c::date_0 = NULL; |
|
387 |
time_of_day_c *type_initial_value_c::tod_0 = NULL; |
|
388 |
date_and_time_c *type_initial_value_c::dt_0 = NULL; |
|
389 |
single_byte_character_string_c *type_initial_value_c::string_0 = NULL; |
|
390 |
double_byte_character_string_c *type_initial_value_c::wstring_0 = NULL; |