author | Manuele Conti <conti.ma@alice.it> |
Wed, 16 May 2012 00:15:32 +0200 | |
changeset 561 | 30a327be60d4 |
parent 547 | dab341e80664 |
child 564 | dabffc3086dc |
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:
181
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:
181
diff
changeset
|
3 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
181
diff
changeset
|
4 |
* Copyright (C) 2009-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:
181
diff
changeset
|
6 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
181
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:
181
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:
181
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:
181
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:
181
diff
changeset
|
11 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
181
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:
181
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:
181
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:
181
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:
181
diff
changeset
|
16 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
181
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:
181
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:
181
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:
181
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 |
* This is the main stage 3a file. |
|
36 |
* |
|
37 |
* In stage 3a some helpful symbol tables are instanciated and populated. |
|
38 |
* These symbol tables wll then be used by stage3b and atage4 code generators. |
|
39 |
*/ |
|
40 |
||
41 |
||
42 |
||
43 |
||
44 |
||
45 |
||
46 |
// #include <stdio.h> /* required for NULL */ |
|
47 |
#include <string> |
|
48 |
#include <iostream> |
|
49 |
#include <sstream> |
|
50 |
#include <typeinfo> |
|
51 |
#include <list> |
|
52 |
#include <strings.h> |
|
366
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
53 |
#include <string.h> /* required for strlen() */ |
350
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
338
diff
changeset
|
54 |
#include <stdlib.h> /* required for atoi() */ |
181 | 55 |
|
56 |
#include "../util/symtable.hh" |
|
57 |
#include "../util/dsymtable.hh" |
|
58 |
#include "../absyntax/visitor.hh" |
|
59 |
||
60 |
||
61 |
||
62 |
//#define DEBUG |
|
63 |
#ifdef DEBUG |
|
64 |
#define TRACE(classname) printf("\n____%s____\n",classname); |
|
65 |
#else |
|
66 |
#define TRACE(classname) |
|
67 |
#endif |
|
68 |
||
69 |
#define ERROR error_exit(__FILE__,__LINE__) |
|
70 |
/* function defined in main.cc */ |
|
71 |
extern void error_exit(const char *file_name, int line_no); |
|
72 |
||
73 |
||
74 |
/***********************************************************************/ |
|
75 |
/***********************************************************************/ |
|
76 |
/***********************************************************************/ |
|
77 |
/***********************************************************************/ |
|
78 |
||
79 |
||
80 |
/* returns 0 if the names are equal!! */ |
|
81 |
/* NOTE: it must ignore case!! */ |
|
82 |
int compare_identifiers(symbol_c *ident1, symbol_c *ident2) { |
|
83 |
||
84 |
token_c *name1 = dynamic_cast<token_c *>(ident1); |
|
85 |
token_c *name2 = dynamic_cast<token_c *>(ident2); |
|
86 |
||
87 |
if ((name1 == NULL) || (name2 == NULL)) |
|
88 |
/* invalid identifiers... */ |
|
89 |
return -1; |
|
90 |
||
91 |
if (strcasecmp(name1->value, name2->value) == 0) |
|
92 |
return 0; |
|
93 |
||
94 |
/* identifiers do not match! */ |
|
95 |
return 1; |
|
96 |
} |
|
97 |
||
98 |
||
350
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
338
diff
changeset
|
99 |
/* extract the value of an integer from an integer_c object !! */ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
338
diff
changeset
|
100 |
/* NOTE: it must ignore underscores! */ |
547
dab341e80664
Fix parsing os TIME literals & rename the extract_integer() function.
mjsousa <msousa@fe.up.pt>
parents:
433
diff
changeset
|
101 |
long long extract_integer_value(symbol_c *sym) { |
366
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
102 |
std::string str = ""; |
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
103 |
integer_c *integer; |
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
104 |
neg_integer_c * neg_integer; |
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
105 |
|
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
106 |
if ((neg_integer = dynamic_cast<neg_integer_c *>(sym)) != NULL) |
547
dab341e80664
Fix parsing os TIME literals & rename the extract_integer() function.
mjsousa <msousa@fe.up.pt>
parents:
433
diff
changeset
|
107 |
return - extract_integer_value(neg_integer->exp); |
366
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
108 |
|
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
109 |
if ((integer = dynamic_cast<integer_c *>(sym)) == NULL) ERROR; |
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
110 |
|
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
111 |
for(unsigned int i = 0; i < strlen(integer->value); i++) |
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
112 |
if (integer->value[i] != '_') str += integer->value[i]; |
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
113 |
|
547
dab341e80664
Fix parsing os TIME literals & rename the extract_integer() function.
mjsousa <msousa@fe.up.pt>
parents:
433
diff
changeset
|
114 |
/* return atoi(str.c_str()); */ |
dab341e80664
Fix parsing os TIME literals & rename the extract_integer() function.
mjsousa <msousa@fe.up.pt>
parents:
433
diff
changeset
|
115 |
return atoll(str.c_str()); |
350
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
338
diff
changeset
|
116 |
} |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
338
diff
changeset
|
117 |
|
181 | 118 |
|
366
1aeb29ee9381
Ignore underscores when extracting value of integer.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
119 |
|
181 | 120 |
/***********************************************************************/ |
121 |
/***********************************************************************/ |
|
122 |
/***********************************************************************/ |
|
123 |
/***********************************************************************/ |
|
124 |
||
125 |
||
126 |
||
127 |
/* A symbol table with all globally declared functions... */ |
|
128 |
function_declaration_c null_symbol1(NULL,NULL,NULL,NULL); |
|
129 |
dsymtable_c<function_declaration_c *, &null_symbol1> function_symtable; |
|
130 |
||
131 |
/* A symbol table with all globally declared functions block types... */ |
|
132 |
function_block_declaration_c null_symbol2(NULL,NULL,NULL); |
|
133 |
symtable_c<function_block_declaration_c *, &null_symbol2> function_block_type_symtable; |
|
134 |
||
135 |
/* A symbol table with all globally declared program types... */ |
|
136 |
program_declaration_c null_symbol3(NULL,NULL,NULL); |
|
137 |
symtable_c<program_declaration_c *, &null_symbol3> program_type_symtable; |
|
138 |
||
139 |
/* A symbol table with all user declared type definitions... */ |
|
140 |
/* Note that function block types and program types have their |
|
141 |
* own symbol tables, so do not get placed in this symbol table! |
|
338
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
142 |
* |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
143 |
* The symbol_c * associated to the value will point to the data type declaration. |
181 | 144 |
*/ |
145 |
symbol_c null_symbol4; |
|
146 |
symtable_c<symbol_c *, &null_symbol4> type_symtable; |
|
147 |
||
328
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
148 |
/* A symbol table with all values declared for enumerated type... */ |
338
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
149 |
/* Notes: |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
150 |
* - if the value is defined multiple times the value |
328
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
151 |
* is the null pointer. |
338
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
152 |
* |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
153 |
* - The stored symbol_c * associated to the value points to the enumerated_type_name |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
154 |
* (i.e. the name of the enumerated data type) in which the the value/identifier |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
155 |
* is used/declared. |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
156 |
* |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
157 |
* - We could re-use the null_symbol4 object, but it is safer to use a distinct object |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
158 |
* (i.e. it might make it easier to find strange bugs). |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
159 |
*/ |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
160 |
symbol_c null_symbol5; |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
161 |
symtable_c<symbol_c *, &null_symbol5> enumerated_value_symtable; |
181 | 162 |
|
163 |
||
164 |
/***********************************************************************/ |
|
165 |
/***********************************************************************/ |
|
166 |
/***********************************************************************/ |
|
167 |
/***********************************************************************/ |
|
168 |
||
169 |
||
170 |
class populate_symtables_c: public iterator_visitor_c { |
|
171 |
||
328
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
172 |
private: |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
173 |
symbol_c *current_enumerated_type; |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
174 |
|
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
175 |
public: |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
176 |
populate_symtables_c(void) { |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
177 |
current_enumerated_type = NULL; |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
178 |
}; |
181 | 179 |
virtual ~populate_symtables_c(void) {} |
180 |
||
181 |
||
182 |
public: |
|
183 |
||
184 |
/*************************/ |
|
185 |
/* B.1 - Common elements */ |
|
186 |
/*************************/ |
|
187 |
/*******************************************/ |
|
188 |
/* B 1.1 - Letters, digits and identifiers */ |
|
189 |
/*******************************************/ |
|
190 |
/*********************/ |
|
191 |
/* B 1.2 - Constants */ |
|
192 |
/*********************/ |
|
193 |
/******************************/ |
|
194 |
/* B 1.2.1 - Numeric Literals */ |
|
195 |
/******************************/ |
|
196 |
/*******************************/ |
|
197 |
/* B.1.2.2 Character Strings */ |
|
198 |
/*******************************/ |
|
199 |
/***************************/ |
|
200 |
/* B 1.2.3 - Time Literals */ |
|
201 |
/***************************/ |
|
202 |
/************************/ |
|
203 |
/* B 1.2.3.1 - Duration */ |
|
204 |
/************************/ |
|
205 |
/************************************/ |
|
206 |
/* B 1.2.3.2 - Time of day and Date */ |
|
207 |
/************************************/ |
|
208 |
/**********************/ |
|
209 |
/* B.1.3 - Data types */ |
|
210 |
/**********************/ |
|
211 |
/***********************************/ |
|
212 |
/* B 1.3.1 - Elementary Data Types */ |
|
213 |
/***********************************/ |
|
214 |
/********************************/ |
|
215 |
/* B.1.3.2 - Generic data types */ |
|
216 |
/********************************/ |
|
217 |
/********************************/ |
|
218 |
/* B 1.3.3 - Derived data types */ |
|
219 |
/********************************/ |
|
220 |
||
221 |
/* subrange_type_name ':' subrange_spec_init */ |
|
222 |
void *visit(subrange_type_declaration_c *symbol) { |
|
223 |
TRACE("subrange_type_declaration_c"); |
|
224 |
type_symtable.insert(symbol->subrange_type_name, symbol->subrange_spec_init); |
|
225 |
return NULL; |
|
226 |
} |
|
227 |
||
228 |
||
229 |
/* enumerated_type_name ':' enumerated_spec_init */ |
|
230 |
void *visit(enumerated_type_declaration_c *symbol) { |
|
231 |
TRACE("enumerated_type_declaration_c"); |
|
232 |
type_symtable.insert(symbol->enumerated_type_name, symbol->enumerated_spec_init); |
|
328
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
233 |
current_enumerated_type = symbol->enumerated_type_name; |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
234 |
symbol->enumerated_spec_init->accept(*this); |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
235 |
current_enumerated_type = NULL; |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
236 |
return NULL; |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
237 |
} |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
238 |
|
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
239 |
/* enumerated_specification ASSIGN enumerated_value */ |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
240 |
void *visit(enumerated_spec_init_c *symbol) { |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
241 |
return symbol->enumerated_specification->accept(*this); |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
242 |
} |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
243 |
|
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
244 |
/* [enumerated_type_name '#'] identifier */ |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
245 |
void *visit(enumerated_value_c *symbol) { |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
246 |
if (current_enumerated_type != NULL) { |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
247 |
if (symbol->type != NULL) ERROR; |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
248 |
|
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
249 |
symbol_c *value_type = enumerated_value_symtable.find_value(symbol->value); |
338
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
250 |
/* NOTE: The following condition checks whether the same identifier is used more than once |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
251 |
* when defining the enumerated values of the type declaration of the new enumerated type. |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
252 |
* If this occurs, then the program beeing compiled contains a semantic error, which |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
253 |
* must be caught and reported by the semantic analyser. However, since |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
254 |
* this code is run before the semantic analyser, we must not yet raise the ERROR (internal |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
255 |
* compiler error message). |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
256 |
* For this reason, the follosing check is commented out. |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
257 |
*/ |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
258 |
/* if (value_type == current_enumerated_type) ERROR; */ |
328
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
259 |
|
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
260 |
if (value_type == enumerated_value_symtable.end_value()) |
338
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
261 |
/* This identifier has not yet been used in any previous declaration of an enumeration data type. |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
262 |
* so we add it to the symbol table. |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
263 |
*/ |
328
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
264 |
enumerated_value_symtable.insert(symbol->value, current_enumerated_type); |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
265 |
else if (value_type != NULL) |
338
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
266 |
/* This identifier has already been used in a previous declaration of an enumeration data type. |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
267 |
* so we set the symbol in symbol table pointing to NULL. |
3037bb7e8a82
Adding some comments, and removing a check for a semantic error in code being compiled.
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
268 |
*/ |
328
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
269 |
enumerated_value_symtable.set(symbol->value, NULL); |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
270 |
} |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
271 |
return NULL; |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
272 |
} |
181 | 273 |
|
274 |
/* identifier ':' array_spec_init */ |
|
275 |
void *visit(array_type_declaration_c *symbol) { |
|
276 |
TRACE("array_type_declaration_c"); |
|
277 |
type_symtable.insert(symbol->identifier, symbol->array_spec_init); |
|
278 |
return NULL; |
|
279 |
} |
|
280 |
||
281 |
||
282 |
/* simple_type_name ':' simple_spec_init */ |
|
283 |
void *visit(simple_type_declaration_c *symbol) { |
|
284 |
TRACE("simple_type_declaration_c"); |
|
285 |
type_symtable.insert(symbol->simple_type_name, symbol->simple_spec_init); |
|
286 |
return NULL; |
|
287 |
} |
|
288 |
||
289 |
||
290 |
/* structure_type_name ':' structure_specification */ |
|
291 |
void *visit(structure_type_declaration_c *symbol) { |
|
292 |
TRACE("structure_type_declaration_c"); |
|
293 |
type_symtable.insert(symbol->structure_type_name, symbol->structure_specification); |
|
294 |
return NULL; |
|
295 |
} |
|
296 |
||
297 |
||
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:
366
diff
changeset
|
298 |
/* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ |
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:
366
diff
changeset
|
299 |
// 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:
366
diff
changeset
|
300 |
// 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:
366
diff
changeset
|
301 |
// 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:
366
diff
changeset
|
302 |
// string_type_declaration_init) /* may be == NULL! */ |
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:
366
diff
changeset
|
303 |
void *visit(string_type_declaration_c *symbol) { |
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:
366
diff
changeset
|
304 |
TRACE("string_type_declaration_c"); |
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:
366
diff
changeset
|
305 |
type_symtable.insert(symbol->string_type_name, symbol); |
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:
366
diff
changeset
|
306 |
return NULL; |
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:
366
diff
changeset
|
307 |
} |
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:
366
diff
changeset
|
308 |
|
181 | 309 |
/*********************/ |
310 |
/* B 1.4 - Variables */ |
|
311 |
/*********************/ |
|
312 |
/********************************************/ |
|
313 |
/* B.1.4.1 Directly Represented Variables */ |
|
314 |
/********************************************/ |
|
315 |
/*************************************/ |
|
316 |
/* B.1.4.2 Multi-element Variables */ |
|
317 |
/*************************************/ |
|
318 |
/******************************************/ |
|
319 |
/* B 1.4.3 - Declaration & Initialisation */ |
|
320 |
/******************************************/ |
|
321 |
/**************************************/ |
|
322 |
/* B.1.5 - Program organization units */ |
|
323 |
/**************************************/ |
|
324 |
/***********************/ |
|
325 |
/* B 1.5.1 - Functions */ |
|
326 |
/***********************/ |
|
327 |
public: |
|
328 |
/* FUNCTION derived_function_name ':' elementary_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
|
329 |
/* | FUNCTION derived_function_name ':' derived_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
|
330 |
void *visit(function_declaration_c *symbol) { |
|
331 |
TRACE("function_declaration_c"); |
|
332 |
function_symtable.insert(symbol->derived_function_name, symbol); |
|
333 |
||
334 |
/* symbol->derived_function_name->accept(*this); */ /* Function name */ |
|
335 |
/* symbol->type_name->accept(*this); */ /* return data type */ |
|
336 |
/* symbol->var_declarations_list->accept(*this); */ /* Function parameters and variables */ |
|
337 |
/* symbol->function_body->accept(*this); */ /* Function body */ |
|
338 |
return NULL; |
|
339 |
} |
|
340 |
||
341 |
||
342 |
/*****************************/ |
|
343 |
/* B 1.5.2 - Function Blocks */ |
|
344 |
/*****************************/ |
|
345 |
public: |
|
346 |
/* FUNCTION_BLOCK derived_function_block_name io_OR_other_var_declarations function_block_body END_FUNCTION_BLOCK */ |
|
347 |
//SYM_REF4(function_block_declaration_c, fblock_name, var_declarations, fblock_body, unused) |
|
348 |
void *visit(function_block_declaration_c *symbol) { |
|
349 |
TRACE("function_block_declaration_c"); |
|
350 |
function_block_type_symtable.insert(symbol->fblock_name, symbol); |
|
351 |
/* |
|
352 |
symbol->fblock_name->accept(*this); |
|
353 |
symbol->var_declarations->accept(*this); |
|
354 |
symbol->fblock_body->accept(*this); |
|
355 |
*/ |
|
356 |
return NULL; |
|
357 |
} |
|
358 |
||
359 |
||
360 |
/**********************/ |
|
361 |
/* B 1.5.3 - Programs */ |
|
362 |
/**********************/ |
|
363 |
public: |
|
364 |
/* PROGRAM program_type_name program_var_declarations_list function_block_body END_PROGRAM */ |
|
365 |
//SYM_REF4(program_declaration_c, program_type_name, var_declarations, function_block_body, unused) |
|
366 |
void *visit(program_declaration_c *symbol) { |
|
367 |
TRACE("program_declaration_c"); |
|
368 |
program_type_symtable.insert(symbol->program_type_name, symbol); |
|
369 |
/* |
|
370 |
symbol->program_type_name->accept(*this); |
|
371 |
symbol->var_declarations->accept(*this); |
|
372 |
symbol->function_block_body->accept(*this); |
|
373 |
*/ |
|
374 |
return NULL; |
|
375 |
} |
|
376 |
||
377 |
}; /* populate_symtables_c */ |
|
378 |
||
379 |
||
380 |
||
381 |
||
382 |
||
383 |
void absyntax_utils_init(symbol_c *tree_root) { |
|
384 |
populate_symtables_c populate_symbols; |
|
385 |
||
386 |
tree_root->accept(populate_symbols); |
|
387 |
} |
|
388 |