author | Edouard Tisserant |
Mon, 16 May 2011 14:19:20 +0200 | |
changeset 294 | aae14da3c296 |
parent 279 | c0453b7f99df |
child 328 | 66cd5d9893dd |
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:
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> |
|
53 |
||
54 |
#include "../util/symtable.hh" |
|
55 |
#include "../util/dsymtable.hh" |
|
56 |
#include "../absyntax/visitor.hh" |
|
57 |
||
58 |
||
59 |
||
60 |
//#define DEBUG |
|
61 |
#ifdef DEBUG |
|
62 |
#define TRACE(classname) printf("\n____%s____\n",classname); |
|
63 |
#else |
|
64 |
#define TRACE(classname) |
|
65 |
#endif |
|
66 |
||
67 |
#define ERROR error_exit(__FILE__,__LINE__) |
|
68 |
/* function defined in main.cc */ |
|
69 |
extern void error_exit(const char *file_name, int line_no); |
|
70 |
||
71 |
||
72 |
/***********************************************************************/ |
|
73 |
/***********************************************************************/ |
|
74 |
/***********************************************************************/ |
|
75 |
/***********************************************************************/ |
|
76 |
||
77 |
||
78 |
/* returns 0 if the names are equal!! */ |
|
79 |
/* NOTE: it must ignore case!! */ |
|
80 |
int compare_identifiers(symbol_c *ident1, symbol_c *ident2) { |
|
81 |
||
82 |
token_c *name1 = dynamic_cast<token_c *>(ident1); |
|
83 |
token_c *name2 = dynamic_cast<token_c *>(ident2); |
|
84 |
||
85 |
if ((name1 == NULL) || (name2 == NULL)) |
|
86 |
/* invalid identifiers... */ |
|
87 |
return -1; |
|
88 |
||
89 |
if (strcasecmp(name1->value, name2->value) == 0) |
|
90 |
return 0; |
|
91 |
||
92 |
/* identifiers do not match! */ |
|
93 |
return 1; |
|
94 |
} |
|
95 |
||
96 |
||
97 |
||
98 |
/***********************************************************************/ |
|
99 |
/***********************************************************************/ |
|
100 |
/***********************************************************************/ |
|
101 |
/***********************************************************************/ |
|
102 |
||
103 |
||
104 |
||
105 |
/* A symbol table with all globally declared functions... */ |
|
106 |
function_declaration_c null_symbol1(NULL,NULL,NULL,NULL); |
|
107 |
dsymtable_c<function_declaration_c *, &null_symbol1> function_symtable; |
|
108 |
||
109 |
/* A symbol table with all globally declared functions block types... */ |
|
110 |
function_block_declaration_c null_symbol2(NULL,NULL,NULL); |
|
111 |
symtable_c<function_block_declaration_c *, &null_symbol2> function_block_type_symtable; |
|
112 |
||
113 |
/* A symbol table with all globally declared program types... */ |
|
114 |
program_declaration_c null_symbol3(NULL,NULL,NULL); |
|
115 |
symtable_c<program_declaration_c *, &null_symbol3> program_type_symtable; |
|
116 |
||
117 |
/* A symbol table with all user declared type definitions... */ |
|
118 |
/* Note that function block types and program types have their |
|
119 |
* own symbol tables, so do not get placed in this symbol table! |
|
120 |
*/ |
|
121 |
symbol_c null_symbol4; |
|
122 |
symtable_c<symbol_c *, &null_symbol4> type_symtable; |
|
123 |
||
124 |
||
125 |
||
126 |
/***********************************************************************/ |
|
127 |
/***********************************************************************/ |
|
128 |
/***********************************************************************/ |
|
129 |
/***********************************************************************/ |
|
130 |
||
131 |
||
132 |
class populate_symtables_c: public iterator_visitor_c { |
|
133 |
||
134 |
public: |
|
135 |
populate_symtables_c(void) {}; |
|
136 |
virtual ~populate_symtables_c(void) {} |
|
137 |
||
138 |
||
139 |
public: |
|
140 |
||
141 |
/*************************/ |
|
142 |
/* B.1 - Common elements */ |
|
143 |
/*************************/ |
|
144 |
/*******************************************/ |
|
145 |
/* B 1.1 - Letters, digits and identifiers */ |
|
146 |
/*******************************************/ |
|
147 |
/*********************/ |
|
148 |
/* B 1.2 - Constants */ |
|
149 |
/*********************/ |
|
150 |
/******************************/ |
|
151 |
/* B 1.2.1 - Numeric Literals */ |
|
152 |
/******************************/ |
|
153 |
/*******************************/ |
|
154 |
/* B.1.2.2 Character Strings */ |
|
155 |
/*******************************/ |
|
156 |
/***************************/ |
|
157 |
/* B 1.2.3 - Time Literals */ |
|
158 |
/***************************/ |
|
159 |
/************************/ |
|
160 |
/* B 1.2.3.1 - Duration */ |
|
161 |
/************************/ |
|
162 |
/************************************/ |
|
163 |
/* B 1.2.3.2 - Time of day and Date */ |
|
164 |
/************************************/ |
|
165 |
/**********************/ |
|
166 |
/* B.1.3 - Data types */ |
|
167 |
/**********************/ |
|
168 |
/***********************************/ |
|
169 |
/* B 1.3.1 - Elementary Data Types */ |
|
170 |
/***********************************/ |
|
171 |
/********************************/ |
|
172 |
/* B.1.3.2 - Generic data types */ |
|
173 |
/********************************/ |
|
174 |
/********************************/ |
|
175 |
/* B 1.3.3 - Derived data types */ |
|
176 |
/********************************/ |
|
177 |
||
178 |
/* subrange_type_name ':' subrange_spec_init */ |
|
179 |
void *visit(subrange_type_declaration_c *symbol) { |
|
180 |
TRACE("subrange_type_declaration_c"); |
|
181 |
type_symtable.insert(symbol->subrange_type_name, symbol->subrange_spec_init); |
|
182 |
return NULL; |
|
183 |
} |
|
184 |
||
185 |
||
186 |
/* enumerated_type_name ':' enumerated_spec_init */ |
|
187 |
void *visit(enumerated_type_declaration_c *symbol) { |
|
188 |
TRACE("enumerated_type_declaration_c"); |
|
189 |
type_symtable.insert(symbol->enumerated_type_name, symbol->enumerated_spec_init); |
|
190 |
return NULL; |
|
191 |
} |
|
192 |
||
193 |
||
194 |
/* identifier ':' array_spec_init */ |
|
195 |
void *visit(array_type_declaration_c *symbol) { |
|
196 |
TRACE("array_type_declaration_c"); |
|
197 |
type_symtable.insert(symbol->identifier, symbol->array_spec_init); |
|
198 |
return NULL; |
|
199 |
} |
|
200 |
||
201 |
||
202 |
/* simple_type_name ':' simple_spec_init */ |
|
203 |
void *visit(simple_type_declaration_c *symbol) { |
|
204 |
TRACE("simple_type_declaration_c"); |
|
205 |
type_symtable.insert(symbol->simple_type_name, symbol->simple_spec_init); |
|
206 |
return NULL; |
|
207 |
} |
|
208 |
||
209 |
||
210 |
/* structure_type_name ':' structure_specification */ |
|
211 |
void *visit(structure_type_declaration_c *symbol) { |
|
212 |
TRACE("structure_type_declaration_c"); |
|
213 |
type_symtable.insert(symbol->structure_type_name, symbol->structure_specification); |
|
214 |
return NULL; |
|
215 |
} |
|
216 |
||
217 |
||
218 |
||
219 |
/*********************/ |
|
220 |
/* B 1.4 - Variables */ |
|
221 |
/*********************/ |
|
222 |
/********************************************/ |
|
223 |
/* B.1.4.1 Directly Represented Variables */ |
|
224 |
/********************************************/ |
|
225 |
/*************************************/ |
|
226 |
/* B.1.4.2 Multi-element Variables */ |
|
227 |
/*************************************/ |
|
228 |
/******************************************/ |
|
229 |
/* B 1.4.3 - Declaration & Initialisation */ |
|
230 |
/******************************************/ |
|
231 |
/**************************************/ |
|
232 |
/* B.1.5 - Program organization units */ |
|
233 |
/**************************************/ |
|
234 |
/***********************/ |
|
235 |
/* B 1.5.1 - Functions */ |
|
236 |
/***********************/ |
|
237 |
public: |
|
238 |
/* FUNCTION derived_function_name ':' elementary_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
|
239 |
/* | FUNCTION derived_function_name ':' derived_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */ |
|
240 |
void *visit(function_declaration_c *symbol) { |
|
241 |
TRACE("function_declaration_c"); |
|
242 |
function_symtable.insert(symbol->derived_function_name, symbol); |
|
243 |
||
244 |
/* symbol->derived_function_name->accept(*this); */ /* Function name */ |
|
245 |
/* symbol->type_name->accept(*this); */ /* return data type */ |
|
246 |
/* symbol->var_declarations_list->accept(*this); */ /* Function parameters and variables */ |
|
247 |
/* symbol->function_body->accept(*this); */ /* Function body */ |
|
248 |
return NULL; |
|
249 |
} |
|
250 |
||
251 |
||
252 |
/*****************************/ |
|
253 |
/* B 1.5.2 - Function Blocks */ |
|
254 |
/*****************************/ |
|
255 |
public: |
|
256 |
/* FUNCTION_BLOCK derived_function_block_name io_OR_other_var_declarations function_block_body END_FUNCTION_BLOCK */ |
|
257 |
//SYM_REF4(function_block_declaration_c, fblock_name, var_declarations, fblock_body, unused) |
|
258 |
void *visit(function_block_declaration_c *symbol) { |
|
259 |
TRACE("function_block_declaration_c"); |
|
260 |
function_block_type_symtable.insert(symbol->fblock_name, symbol); |
|
261 |
/* |
|
262 |
symbol->fblock_name->accept(*this); |
|
263 |
symbol->var_declarations->accept(*this); |
|
264 |
symbol->fblock_body->accept(*this); |
|
265 |
*/ |
|
266 |
return NULL; |
|
267 |
} |
|
268 |
||
269 |
||
270 |
/**********************/ |
|
271 |
/* B 1.5.3 - Programs */ |
|
272 |
/**********************/ |
|
273 |
public: |
|
274 |
/* PROGRAM program_type_name program_var_declarations_list function_block_body END_PROGRAM */ |
|
275 |
//SYM_REF4(program_declaration_c, program_type_name, var_declarations, function_block_body, unused) |
|
276 |
void *visit(program_declaration_c *symbol) { |
|
277 |
TRACE("program_declaration_c"); |
|
278 |
program_type_symtable.insert(symbol->program_type_name, symbol); |
|
279 |
/* |
|
280 |
symbol->program_type_name->accept(*this); |
|
281 |
symbol->var_declarations->accept(*this); |
|
282 |
symbol->function_block_body->accept(*this); |
|
283 |
*/ |
|
284 |
return NULL; |
|
285 |
} |
|
286 |
||
287 |
}; /* populate_symtables_c */ |
|
288 |
||
289 |
||
290 |
||
291 |
||
292 |
||
293 |
void absyntax_utils_init(symbol_c *tree_root) { |
|
294 |
populate_symtables_c populate_symbols; |
|
295 |
||
296 |
tree_root->accept(populate_symbols); |
|
297 |
} |
|
298 |