author | mjsousa |
Sun, 28 Dec 2014 13:29:47 +0000 | |
changeset 980 | 9ed5aff159db |
parent 939 | 5074236fb3c4 |
child 1011 | 76175defb87b |
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:
226
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:
226
diff
changeset
|
3 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
226
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:
226
diff
changeset
|
6 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
226
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:
226
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:
226
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:
226
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:
226
diff
changeset
|
11 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
226
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:
226
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:
226
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:
226
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:
226
diff
changeset
|
16 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
226
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:
226
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:
226
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:
226
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 |
||
504
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
34 |
/* Search in a VAR* END_VAR declaration for the delcration of the specified variable instance. |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
35 |
* Will return: |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
36 |
* - the declaration itself (get_decl() ) |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
37 |
* - the type of declaration in which the variable was declared (get_vartype() ) |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
38 |
* |
181 | 39 |
* The variable instance may NOT be a member of a structure of a memeber |
40 |
* of a structure of an element of an array of ... |
|
41 |
* |
|
504
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
42 |
* For example, considering the following 'variables': |
181 | 43 |
* window.points[1].coordinate.x |
44 |
* window.points[1].colour |
|
504
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
45 |
* offset[99] |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
46 |
* |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
47 |
* passing a reference to 'points', 'points[1]', 'points[1].colour', 'colour' |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
48 |
* ARE NOT ALLOWED! |
181 | 49 |
* |
50 |
* This class must only be passed the name of the variable that will appear |
|
51 |
* in the variable declaration. In the above examples, this would be |
|
504
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
52 |
* 'window.points[1].coordinate.x' |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
53 |
* 'window.points[1].coordinate' |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
54 |
* 'window.points[1]' |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
55 |
* 'window' |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
56 |
* 'window.points[1].colour' |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
57 |
* 'offset' |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
58 |
* 'offset[99]' |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
59 |
* |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
60 |
* |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
61 |
*/ |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
62 |
|
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
63 |
/* Note: |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
64 |
* Determining the declaration type of a specific variable instance (including |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
65 |
* function block instances) really means determining whether the variable was declared in a |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
66 |
* VAR_INPUT |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
67 |
* VAR_OUTPUT |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
68 |
* VAR_IN_OUT |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
69 |
* VAR |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
70 |
* VAR_TEMP |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
71 |
* VAR_EXTERNAL |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
72 |
* VAR_GLOBAL |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
73 |
* VAR <var_name> AT <location> -> Located variable! |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
74 |
* |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
75 |
*/ |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
76 |
|
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
77 |
/* Note: |
f8d422b98315
Fix bug by expanding permissible data input of search_var_instance_decl_c
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
78 |
* The current_type_decl that this class returns may reference the |
181 | 79 |
* name of a type, or the type declaration itself! |
80 |
* For an example of the first, consider a variable declared as ... |
|
81 |
* x : AAA; |
|
82 |
* where the AAA type is previously declared as whatever. |
|
83 |
* For an example of the second, consider a variable declared as ... |
|
84 |
* x : array of int [10]; ----> is allowed |
|
85 |
* |
|
86 |
* If it is the first, we will return a reference to the name, if the second |
|
87 |
* we return a reference to the declaration!! |
|
88 |
*/ |
|
89 |
||
90 |
||
91 |
class search_var_instance_decl_c: public search_visitor_c { |
|
92 |
||
93 |
public: |
|
94 |
search_var_instance_decl_c(symbol_c *search_scope); |
|
95 |
||
96 |
public: |
|
536
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
97 |
typedef enum { |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
98 |
input_vt , // VAR_INPUT |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
99 |
output_vt , // VAR_OUTPUT |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
100 |
inoutput_vt, // VAR_IN_OUT |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
101 |
private_vt , // VAR |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
102 |
temp_vt , // VAR_TEMP |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
103 |
external_vt, // VAR_EXTERNAL |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
104 |
global_vt , // VAR_GLOBAL |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
105 |
located_vt , // VAR <var_name> AT <location> |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
106 |
none_vt |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
107 |
} vt_t; |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
108 |
|
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
109 |
typedef enum { |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
110 |
constant_opt , |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
111 |
retain_opt , |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
112 |
non_retain_opt, |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
113 |
none_opt |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
114 |
} opt_t; |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
115 |
#if 0 |
181 | 116 |
/* the types of variables that need to be processed... */ |
117 |
static const unsigned int none_vt = 0x0000; |
|
118 |
static const unsigned int input_vt = 0x0001; // VAR_INPUT |
|
119 |
static const unsigned int output_vt = 0x0002; // VAR_OUTPUT |
|
120 |
static const unsigned int inoutput_vt = 0x0004; // VAR_IN_OUT |
|
121 |
static const unsigned int private_vt = 0x0008; // VAR |
|
122 |
static const unsigned int temp_vt = 0x0010; // VAR_TEMP |
|
123 |
static const unsigned int external_vt = 0x0020; // VAR_EXTERNAL |
|
124 |
static const unsigned int global_vt = 0x0040; // VAR_GLOBAL |
|
125 |
static const unsigned int located_vt = 0x0080; // VAR <var_name> AT <location> |
|
126 |
||
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
127 |
static const unsigned int none_opt = 0x0000; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
128 |
static const unsigned int constant_opt = 0x0001; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
129 |
static const unsigned int retain_opt = 0x0002; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
130 |
static const unsigned int non_retain_opt = 0x0003; |
536
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
131 |
#endif |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
132 |
|
939
5074236fb3c4
fill_candidate_datatypes_c now uses search_varinstance_decl_c instead of search_varfb_instance_type_c (moving towards deprecation of search_varfb_instance_type_c)
mjsousa
parents:
854
diff
changeset
|
133 |
symbol_c *get_decl (symbol_c *variable_instance_name); |
5074236fb3c4
fill_candidate_datatypes_c now uses search_varinstance_decl_c instead of search_varfb_instance_type_c (moving towards deprecation of search_varfb_instance_type_c)
mjsousa
parents:
854
diff
changeset
|
134 |
symbol_c *get_basetype_decl (symbol_c *variable_instance_name); |
5074236fb3c4
fill_candidate_datatypes_c now uses search_varinstance_decl_c instead of search_varfb_instance_type_c (moving towards deprecation of search_varfb_instance_type_c)
mjsousa
parents:
854
diff
changeset
|
135 |
vt_t get_vartype (symbol_c *variable_instance_name); |
5074236fb3c4
fill_candidate_datatypes_c now uses search_varinstance_decl_c instead of search_varfb_instance_type_c (moving towards deprecation of search_varfb_instance_type_c)
mjsousa
parents:
854
diff
changeset
|
136 |
opt_t get_option (symbol_c *variable_instance_name); |
536
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
137 |
|
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
138 |
private: |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
139 |
symbol_c *search_scope; |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
140 |
symbol_c *search_name; |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
141 |
symbol_c *current_type_decl; |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
142 |
/* variable used to store the type of variable currently being processed... */ |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
143 |
/* Will contain a single value of generate_c_vardecl_c::XXXX_vt */ |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
144 |
vt_t current_vartype; |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
145 |
opt_t current_option; |
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
146 |
|
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
533
diff
changeset
|
147 |
|
181 | 148 |
private: |
149 |
/***************************/ |
|
150 |
/* B 0 - Programming Model */ |
|
151 |
/***************************/ |
|
152 |
void *visit(library_c *symbol); |
|
153 |
||
154 |
/******************************************/ |
|
155 |
/* B 1.4.3 - Declaration & Initialisation */ |
|
156 |
/******************************************/ |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
202
diff
changeset
|
157 |
|
181 | 158 |
/* edge -> The F_EDGE or R_EDGE directive */ |
159 |
// SYM_REF2(edge_declaration_c, edge, var1_list) |
|
160 |
// TODO |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
161 |
void *visit(constant_option_c *symbol); |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
162 |
void *visit(retain_option_c *symbol); |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
163 |
void *visit(non_retain_option_c *symbol); |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
164 |
|
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
165 |
|
181 | 166 |
void *visit(input_declarations_c *symbol); |
167 |
/* VAR_OUTPUT [RETAIN | NON_RETAIN] var_init_decl_list END_VAR */ |
|
168 |
/* option -> may be NULL ! */ |
|
169 |
void *visit(output_declarations_c *symbol); |
|
170 |
/* VAR_IN_OUT var_declaration_list END_VAR */ |
|
171 |
void *visit(input_output_declarations_c *symbol); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
172 |
/* ENO : BOOL */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
173 |
void *visit(eno_param_declaration_c *symbol); |
181 | 174 |
/* VAR [CONSTANT] var_init_decl_list END_VAR */ |
175 |
/* option -> may be NULL ! */ |
|
176 |
/* helper symbol for input_declarations */ |
|
177 |
void *visit(var_declarations_c *symbol); |
|
178 |
/* VAR RETAIN var_init_decl_list END_VAR */ |
|
179 |
void *visit(retentive_var_declarations_c *symbol); |
|
180 |
/* VAR [CONSTANT|RETAIN|NON_RETAIN] located_var_decl_list END_VAR */ |
|
181 |
/* option -> may be NULL ! */ |
|
182 |
//SYM_REF2(located_var_declarations_c, option, located_var_decl_list) |
|
183 |
void *visit(located_var_declarations_c *symbol); |
|
184 |
/*| VAR_EXTERNAL [CONSTANT] external_declaration_list END_VAR */ |
|
185 |
/* option -> may be NULL ! */ |
|
186 |
//SYM_REF2(external_var_declarations_c, option, external_declaration_list) |
|
187 |
void *visit(external_var_declarations_c *symbol); |
|
188 |
/*| VAR_GLOBAL [CONSTANT|RETAIN] global_var_decl_list END_VAR */ |
|
189 |
/* option -> may be NULL ! */ |
|
190 |
//SYM_REF2(global_var_declarations_c, option, global_var_decl_list) |
|
191 |
void *visit(global_var_declarations_c *symbol); |
|
192 |
/* var1_list is one of the following... |
|
193 |
* simple_spec_init_c * |
|
194 |
* subrange_spec_init_c * |
|
195 |
* enumerated_spec_init_c * |
|
196 |
*/ |
|
197 |
// SYM_REF2(var1_init_decl_c, var1_list, spec_init) |
|
198 |
void *visit(var1_init_decl_c *symbol); |
|
199 |
/* var1_list ',' variable_name */ |
|
200 |
// SYM_LIST(var1_list_c) |
|
201 |
void *visit(var1_list_c *symbol); |
|
202 |
/* name_list ':' function_block_type_name ASSIGN structure_initialization */ |
|
203 |
/* structure_initialization -> may be NULL ! */ |
|
204 |
void *visit(fb_name_decl_c *symbol); |
|
205 |
/* name_list ',' fb_name */ |
|
206 |
void *visit(fb_name_list_c *symbol); |
|
207 |
/* var1_list ':' array_spec_init */ |
|
208 |
// SYM_REF2(array_var_init_decl_c, var1_list, array_spec_init) |
|
209 |
void *visit(array_var_init_decl_c *symbol); |
|
210 |
/* var1_list ':' initialized_structure */ |
|
211 |
// SYM_REF2(structured_var_init_decl_c, var1_list, initialized_structure) |
|
212 |
void *visit(structured_var_init_decl_c *symbol); |
|
213 |
/* var1_list ':' array_specification */ |
|
214 |
// SYM_REF2(array_var_declaration_c, var1_list, array_specification) |
|
215 |
void *visit(array_var_declaration_c *symbol); |
|
216 |
/* var1_list ':' structure_type_name */ |
|
217 |
// SYM_REF2(structured_var_declaration_c, var1_list, structure_type_name) |
|
218 |
void *visit(structured_var_declaration_c *symbol); |
|
219 |
/* [variable_name] location ':' located_var_spec_init */ |
|
220 |
/* variable_name -> may be NULL ! */ |
|
221 |
// SYM_REF4(located_var_decl_c, variable_name, location, located_var_spec_init, unused) |
|
222 |
// TODO!! |
|
223 |
||
224 |
/* global_var_name ':' (simple_specification|subrange_specification|enumerated_specification|array_specification|prev_declared_structure_type_name|function_block_type_name */ |
|
225 |
// SYM_REF2(external_declaration_c, global_var_name, specification) |
|
226 |
void *visit(external_declaration_c *symbol); |
|
227 |
/*| global_var_spec ':' [located_var_spec_init|function_block_type_name] */ |
|
228 |
/* type_specification ->may be NULL ! */ |
|
229 |
// SYM_REF2(global_var_decl_c, global_var_spec, type_specification) |
|
230 |
void *visit(global_var_decl_c *symbol); |
|
231 |
/*| global_var_name location */ |
|
232 |
//SYM_REF2(global_var_spec_c, global_var_name, location) |
|
233 |
void *visit(global_var_spec_c *symbol); |
|
234 |
/*| global_var_list ',' global_var_name */ |
|
235 |
//SYM_LIST(global_var_list_c) |
|
236 |
void *visit(global_var_list_c *symbol); |
|
237 |
/* [variable_name] location ':' located_var_spec_init */ |
|
238 |
/* variable_name -> may be NULL ! */ |
|
239 |
//SYM_REF4(located_var_decl_c, variable_name, location, located_var_spec_init, unused) |
|
240 |
void *visit(located_var_decl_c *symbol); |
|
241 |
/*| global_var_spec ':' [located_var_spec_init|function_block_type_name] */ |
|
242 |
/* type_specification ->may be NULL ! */ |
|
243 |
// SYM_REF2(global_var_decl_c, global_var_spec, type_specification) |
|
244 |
// TODO!! |
|
245 |
/* AT direct_variable */ |
|
246 |
// SYM_REF2(location_c, direct_variable, unused) |
|
247 |
void *visit(location_c *symbol); |
|
248 |
/*| global_var_list ',' global_var_name */ |
|
249 |
// SYM_LIST(global_var_list_c) |
|
250 |
// TODO!! |
|
251 |
/* var1_list ':' single_byte_string_spec */ |
|
252 |
// SYM_REF2(single_byte_string_var_declaration_c, var1_list, single_byte_string_spec) |
|
253 |
void *visit(single_byte_string_var_declaration_c *symbol); |
|
254 |
/* STRING ['[' integer ']'] [ASSIGN single_byte_character_string] */ |
|
255 |
/* integer ->may be NULL ! */ |
|
256 |
/* single_byte_character_string ->may be NULL ! */ |
|
257 |
// SYM_REF2(single_byte_string_spec_c, integer, single_byte_character_string) |
|
258 |
// TODO!! |
|
259 |
||
260 |
/* var1_list ':' double_byte_string_spec */ |
|
261 |
// SYM_REF2(double_byte_string_var_declaration_c, var1_list, double_byte_string_spec) |
|
262 |
void *visit(double_byte_string_var_declaration_c *symbol); |
|
263 |
/* WSTRING ['[' integer ']'] [ASSIGN double_byte_character_string] */ |
|
264 |
/* integer ->may be NULL ! */ |
|
265 |
/* double_byte_character_string ->may be NULL ! */ |
|
266 |
// SYM_REF2(double_byte_string_spec_c, integer, double_byte_character_string) |
|
267 |
// TODO!! |
|
268 |
||
269 |
/* variable_name incompl_location ':' var_spec */ |
|
270 |
// SYM_REF4(incompl_located_var_decl_c, variable_name, incompl_location, var_spec, unused) |
|
271 |
// TODO!! |
|
272 |
||
273 |
/* AT incompl_location_token */ |
|
274 |
// SYM_TOKEN(incompl_location_c) |
|
275 |
// TODO!! |
|
276 |
||
277 |
||
278 |
/**************************************/ |
|
279 |
/* B.1.5 - Program organization units */ |
|
280 |
/**************************************/ |
|
281 |
/***********************/ |
|
282 |
/* B 1.5.1 - Functions */ |
|
283 |
/***********************/ |
|
284 |
// SYM_REF4(function_declaration_c, derived_function_name, type_name, var_declarations_list, function_body) |
|
285 |
void *visit(function_declaration_c *symbol); |
|
286 |
||
287 |
/*****************************/ |
|
288 |
/* B 1.5.2 - Function Blocks */ |
|
289 |
/*****************************/ |
|
290 |
void *visit(function_block_declaration_c *symbol); |
|
291 |
||
292 |
/**********************/ |
|
293 |
/* B 1.5.3 - Programs */ |
|
294 |
/**********************/ |
|
295 |
void *visit(program_declaration_c *symbol); |
|
296 |
||
619
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
297 |
/*********************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
298 |
/* B.1.6 Sequential function chart elements */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
299 |
/*********************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
300 |
/* | sequential_function_chart sfc_network */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
301 |
// SYM_LIST(sequential_function_chart_c) |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
302 |
/* search_var_instance_decl_c inherits from serach_visitor_c, so no need to implement the following method. */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
303 |
// void *visit(sequential_function_chart_c *symbol); |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
304 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
305 |
/* initial_step {step | transition | action} */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
306 |
// SYM_LIST(sfc_network_c) |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
307 |
/* search_var_instance_decl_c inherits from serach_visitor_c, so no need to implement the following method. */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
308 |
// void *visit(sfc_network_c *symbol); |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
309 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
310 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
311 |
/* INITIAL_STEP step_name ':' action_association_list END_STEP */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
312 |
// SYM_REF2(initial_step_c, step_name, action_association_list) |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
313 |
void *visit(initial_step_c *symbol); |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
314 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
315 |
/* STEP step_name ':' action_association_list END_STEP */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
316 |
// SYM_REF2(step_c, step_name, action_association_list) |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
317 |
void *visit(step_c *symbol); |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
318 |
|
181 | 319 |
/********************************/ |
320 |
/* B 1.7 Configuration elements */ |
|
321 |
/********************************/ |
|
322 |
||
323 |
/* |
|
324 |
CONFIGURATION configuration_name |
|
325 |
optional_global_var_declarations |
|
326 |
(resource_declaration_list | single_resource_declaration) |
|
327 |
optional_access_declarations |
|
328 |
optional_instance_specific_initializations |
|
329 |
END_CONFIGURATION |
|
330 |
*/ |
|
331 |
/* |
|
332 |
SYM_REF6(configuration_declaration_c, configuration_name, global_var_declarations, resource_declarations, access_declarations, instance_specific_initializations, unused) |
|
333 |
*/ |
|
334 |
void *visit(configuration_declaration_c *symbol); |
|
335 |
/* |
|
336 |
RESOURCE resource_name ON resource_type_name |
|
337 |
optional_global_var_declarations |
|
338 |
single_resource_declaration |
|
339 |
END_RESOURCE |
|
340 |
*/ |
|
341 |
// SYM_REF4(resource_declaration_c, resource_name, resource_type_name, global_var_declarations, resource_declaration) |
|
342 |
void *visit(resource_declaration_c *symbol); |
|
343 |
||
344 |
/* task_configuration_list program_configuration_list */ |
|
345 |
// SYM_REF2(single_resource_declaration_c, task_configuration_list, program_configuration_list) |
|
346 |
void *visit(single_resource_declaration_c *symbol); |
|
347 |
||
619
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
348 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
349 |
/****************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
350 |
/* B.2 - Language IL (Instruction List) */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
351 |
/****************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
352 |
/***********************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
353 |
/* B 2.1 Instructions and Operands */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
354 |
/***********************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
355 |
/*| instruction_list il_instruction */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
356 |
// SYM_LIST(instruction_list_c) |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
357 |
void *visit(instruction_list_c *symbol); |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
358 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
359 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
360 |
/***************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
361 |
/* B.3 - Language ST (Structured Text) */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
362 |
/***************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
363 |
/********************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
364 |
/* B 3.2 Statements */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
365 |
/********************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
366 |
// SYM_LIST(statement_list_c) |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
367 |
void *visit(statement_list_c *symbol); |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
536
diff
changeset
|
368 |
|
181 | 369 |
}; // search_var_instance_decl_c |
370 |