author | Mario de Sousa <msousa@fe.up.pt> |
Mon, 04 Apr 2011 15:22:42 +0100 | |
changeset 275 | af3d0e3ac65d |
parent 265 | 4d222f46f8cc |
child 279 | c0453b7f99df |
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) |
181 | 5 |
* |
265
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
202
diff
changeset
|
6 |
* 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
|
7 |
* 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
|
8 |
* 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
|
9 |
* (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
|
10 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
202
diff
changeset
|
11 |
* 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
|
12 |
* 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
|
13 |
* 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
|
14 |
* 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
|
15 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
202
diff
changeset
|
16 |
* 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
|
17 |
* 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
|
18 |
* |
181 | 19 |
* |
20 |
* This code is made available on the understanding that it will not be |
|
21 |
* used in safety-critical situations without a full and competent review. |
|
22 |
*/ |
|
23 |
||
24 |
/* |
|
265
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
202
diff
changeset
|
25 |
* An IEC 61131-3 compiler. |
181 | 26 |
* |
27 |
* Based on the |
|
28 |
* FINAL DRAFT - IEC 61131-3, 2nd Ed. (2001-12-10) |
|
29 |
* |
|
30 |
*/ |
|
31 |
||
32 |
||
33 |
/* |
|
34 |
* This is the main stage 3a file. |
|
35 |
* |
|
36 |
* In stage 3a some helpful symbol tables are instanciated and populated. |
|
37 |
* These symbol tables wll then be used by stage3b and atage4 code generators. |
|
38 |
*/ |
|
39 |
||
40 |
||
41 |
||
42 |
||
43 |
#ifndef _SEARCH_UTILS_HH |
|
44 |
#define _SEARCH_UTILS_HH |
|
45 |
||
46 |
// #include <stdio.h> /* required for NULL */ |
|
47 |
#include "../util/symtable.hh" |
|
48 |
#include "../util/dsymtable.hh" |
|
49 |
#include "../absyntax/absyntax.hh" |
|
50 |
#include "../absyntax/visitor.hh" |
|
51 |
||
52 |
||
53 |
||
54 |
/* returns 0 if the names are equal!! Case is ignored. */ |
|
55 |
int compare_identifiers(symbol_c *ident1, symbol_c *ident2); |
|
56 |
||
57 |
/* A symbol table with all globally declared functions... */ |
|
58 |
extern function_declaration_c null_symbol1; |
|
59 |
extern dsymtable_c<function_declaration_c *, &null_symbol1> function_symtable; |
|
60 |
||
61 |
/* A symbol table with all globally declared functions block types... */ |
|
62 |
extern function_block_declaration_c null_symbol2; |
|
63 |
extern symtable_c<function_block_declaration_c *, &null_symbol2> function_block_type_symtable; |
|
64 |
||
65 |
/* A symbol table with all globally declared program types... */ |
|
66 |
extern program_declaration_c null_symbol3; |
|
67 |
extern symtable_c<program_declaration_c *, &null_symbol3> program_type_symtable; |
|
68 |
||
69 |
/* A symbol table with all user declared type definitions... */ |
|
70 |
/* Note that function block types and program types have their |
|
71 |
* own symbol tables, so do not get placed in this symbol table! |
|
72 |
*/ |
|
73 |
extern symbol_c null_symbol4; |
|
74 |
extern symtable_c<symbol_c *, &null_symbol4> type_symtable; |
|
75 |
||
76 |
||
77 |
||
78 |
/***********************************************************************/ |
|
79 |
/***********************************************************************/ |
|
80 |
/***********************************************************************/ |
|
81 |
/***********************************************************************/ |
|
82 |
||
83 |
#include "spec_init_separator.hh" |
|
84 |
#include "function_param_iterator.hh" |
|
85 |
#include "function_call_iterator.hh" |
|
86 |
#include "function_call_param_iterator.hh" |
|
87 |
#include "type_initial_value.hh" |
|
88 |
#include "search_fb_instance_decl.hh" |
|
89 |
#include "search_fb_typedecl.hh" |
|
90 |
#include "search_base_type.hh" |
|
91 |
#include "search_var_instance_decl.hh" |
|
92 |
#include "decompose_var_instance_name.hh" |
|
93 |
#include "search_varfb_instance_type.hh" |
|
94 |
#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
|
95 |
#include "search_il_operand_type.hh" |
181 | 96 |
#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
|
97 |
#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
|
98 |
#include "get_sizeof_datatype.hh" |
181 | 99 |
#include "get_function_type.h" |
100 |
||
101 |
||
102 |
/***********************************************************************/ |
|
103 |
/***********************************************************************/ |
|
104 |
/***********************************************************************/ |
|
105 |
/***********************************************************************/ |
|
106 |
/***********************************************************************/ |
|
107 |
||
108 |
||
109 |
||
110 |
||
111 |
void absyntax_utils_init(symbol_c *tree_root); |
|
112 |
||
113 |
||
114 |
#endif /* _SEARCH_UTILS_HH */ |