author | laurent |
Tue, 12 Jul 2011 22:20:28 +0200 | |
changeset 337 | 9a2262fb7994 |
parent 328 | 66cd5d9893dd |
child 338 | 3037bb7e8a82 |
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:
202
diff
changeset
|
2 |
* matiec - a compiler for the programming languages defined in IEC 61131-3 |
181 | 3 |
* |
265
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
202
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 |
181 | 6 |
* |
265
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
202
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:
202
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:
202
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:
202
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:
202
diff
changeset
|
11 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
202
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:
202
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:
202
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:
202
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:
202
diff
changeset
|
16 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
202
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:
202
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:
202
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:
202
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 |
#ifndef _SEARCH_UTILS_HH |
|
45 |
#define _SEARCH_UTILS_HH |
|
46 |
||
47 |
// #include <stdio.h> /* required for NULL */ |
|
48 |
#include "../util/symtable.hh" |
|
49 |
#include "../util/dsymtable.hh" |
|
50 |
#include "../absyntax/absyntax.hh" |
|
51 |
#include "../absyntax/visitor.hh" |
|
52 |
||
53 |
||
54 |
||
55 |
/* returns 0 if the names are equal!! Case is ignored. */ |
|
56 |
int compare_identifiers(symbol_c *ident1, symbol_c *ident2); |
|
57 |
||
58 |
/* A symbol table with all globally declared functions... */ |
|
59 |
extern function_declaration_c null_symbol1; |
|
60 |
extern dsymtable_c<function_declaration_c *, &null_symbol1> function_symtable; |
|
61 |
||
62 |
/* A symbol table with all globally declared functions block types... */ |
|
63 |
extern function_block_declaration_c null_symbol2; |
|
64 |
extern symtable_c<function_block_declaration_c *, &null_symbol2> function_block_type_symtable; |
|
65 |
||
66 |
/* A symbol table with all globally declared program types... */ |
|
67 |
extern program_declaration_c null_symbol3; |
|
68 |
extern symtable_c<program_declaration_c *, &null_symbol3> program_type_symtable; |
|
69 |
||
70 |
/* A symbol table with all user declared type definitions... */ |
|
71 |
/* Note that function block types and program types have their |
|
72 |
* own symbol tables, so do not get placed in this symbol table! |
|
73 |
*/ |
|
74 |
extern symbol_c null_symbol4; |
|
75 |
extern symtable_c<symbol_c *, &null_symbol4> type_symtable; |
|
76 |
||
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
|
77 |
/* A symbol table with all values declared for 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
|
78 |
/* Note that if the value is defined multiple times the 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
|
79 |
* is the null pointer. |
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
|
80 |
*/ |
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
|
81 |
extern symtable_c<symbol_c *, &null_symbol4> enumerated_value_symtable; |
181 | 82 |
|
83 |
||
84 |
/***********************************************************************/ |
|
85 |
/***********************************************************************/ |
|
86 |
/***********************************************************************/ |
|
87 |
/***********************************************************************/ |
|
88 |
||
89 |
#include "spec_init_separator.hh" |
|
90 |
#include "function_param_iterator.hh" |
|
91 |
#include "function_call_iterator.hh" |
|
92 |
#include "function_call_param_iterator.hh" |
|
93 |
#include "type_initial_value.hh" |
|
94 |
#include "search_fb_instance_decl.hh" |
|
95 |
#include "search_fb_typedecl.hh" |
|
96 |
#include "search_base_type.hh" |
|
97 |
#include "search_var_instance_decl.hh" |
|
98 |
#include "decompose_var_instance_name.hh" |
|
99 |
#include "search_varfb_instance_type.hh" |
|
100 |
#include "search_constant_type.hh" |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
101 |
#include "search_il_operand_type.hh" |
181 | 102 |
#include "search_expression_type.hh" |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
103 |
#include "add_en_eno_param_decl.hh" |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
104 |
#include "get_sizeof_datatype.hh" |
181 | 105 |
#include "get_function_type.h" |
106 |
||
107 |
||
108 |
/***********************************************************************/ |
|
109 |
/***********************************************************************/ |
|
110 |
/***********************************************************************/ |
|
111 |
/***********************************************************************/ |
|
112 |
/***********************************************************************/ |
|
113 |
||
114 |
||
115 |
||
116 |
||
117 |
void absyntax_utils_init(symbol_c *tree_root); |
|
118 |
||
119 |
||
120 |
#endif /* _SEARCH_UTILS_HH */ |