author | Mario de Sousa <msousa@fe.up.pt> |
Tue, 12 Jun 2012 17:07:40 +0100 | |
changeset 584 | f95d6561d439 |
parent 536 | 563b013ec670 |
child 619 | f8c9ac5c529a |
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 |
||
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
|
33 |
/* 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
|
34 |
* 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
|
35 |
* - 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
|
36 |
* - 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
|
37 |
* |
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 |
* The variable instance may NOT be a member of a structure of a memeber |
181 | 39 |
* of a structure of an element of an array of ... |
40 |
* |
|
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
|
41 |
* For example, considering the following 'variables': |
181 | 42 |
* window.points[1].coordinate.x |
43 |
* 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
|
44 |
* 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
|
45 |
* |
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 |
* 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
|
47 |
* ARE NOT ALLOWED! |
181 | 48 |
* |
49 |
* This class must only be passed the name of the variable that will appear |
|
50 |
* 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
|
51 |
* '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
|
52 |
* '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
|
53 |
* '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
|
54 |
* '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
|
55 |
* '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
|
56 |
* '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
|
57 |
* '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
|
58 |
* |
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 |
/* 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
|
63 |
* 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
|
64 |
* 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
|
65 |
* 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
|
66 |
* 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
|
67 |
* 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
|
68 |
* 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
|
69 |
* 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
|
70 |
* 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
|
71 |
* 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
|
72 |
* 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
|
73 |
* |
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 |
/* 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
|
77 |
* The current_type_decl that this class returns may reference the |
181 | 78 |
* name of a type, or the type declaration itself! |
79 |
* For an example of the first, consider a variable declared as ... |
|
80 |
* x : AAA; |
|
81 |
* where the AAA type is previously declared as whatever. |
|
82 |
* For an example of the second, consider a variable declared as ... |
|
83 |
* x : array of int [10]; ----> is allowed |
|
84 |
* |
|
85 |
* If it is the first, we will return a reference to the name, if the second |
|
86 |
* we return a reference to the declaration!! |
|
87 |
*/ |
|
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
|
88 |
|
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
|
89 |
|
181 | 90 |
#include "absyntax_utils.hh" |
91 |
||
92 |
||
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
|
93 |
|
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
|
94 |
|
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
|
95 |
|
181 | 96 |
search_var_instance_decl_c::search_var_instance_decl_c(symbol_c *search_scope) { |
97 |
this->current_vartype = none_vt; |
|
98 |
this->search_scope = search_scope; |
|
99 |
this->search_name = NULL; |
|
100 |
this->current_type_decl = NULL; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
101 |
this->current_option = none_opt; |
181 | 102 |
} |
103 |
||
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
|
104 |
symbol_c *search_var_instance_decl_c::get_decl(symbol_c *variable) { |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
202
diff
changeset
|
105 |
this->current_vartype = none_vt; |
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
106 |
this->current_option = none_opt; |
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
|
107 |
this->search_name = get_var_name_c::get_name(variable); |
181 | 108 |
return (symbol_c *)search_scope->accept(*this); |
109 |
} |
|
110 |
||
536
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
531
diff
changeset
|
111 |
search_var_instance_decl_c::vt_t search_var_instance_decl_c::get_vartype(symbol_c *variable) { |
417
d48f53715f77
Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
112 |
this->current_vartype = none_vt; |
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
113 |
this->current_option = none_opt; |
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
|
114 |
this->search_name = get_var_name_c::get_name(variable); |
417
d48f53715f77
Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
115 |
search_scope->accept(*this); |
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
116 |
return this->current_vartype; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
117 |
} |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
118 |
|
536
563b013ec670
Change constants into enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
531
diff
changeset
|
119 |
search_var_instance_decl_c::opt_t search_var_instance_decl_c::get_option(symbol_c *variable) { |
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
120 |
this->current_vartype = none_vt; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
121 |
this->current_option = none_opt; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
122 |
this->search_name = get_var_name_c::get_name(variable); |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
123 |
search_scope->accept(*this); |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
124 |
return this->current_option; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
125 |
} |
417
d48f53715f77
Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
126 |
|
531
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
127 |
|
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
128 |
|
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
129 |
/* This is a temporary fix. Hopefully, once I clean up stage4 code, and I change the way |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
130 |
* we generate C code, this function will no longer be needed! |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
131 |
*/ |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
132 |
#include <typeinfo> /* required for typeid() */ |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
133 |
bool search_var_instance_decl_c::type_is_complex(symbol_c *symbol) { |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
134 |
symbol_c *decl; |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
135 |
search_base_type_c search_base_type; |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
136 |
|
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
137 |
decl = this->get_decl(symbol); |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
138 |
if (NULL == decl) ERROR; |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
139 |
decl = search_base_type.get_basetype_decl(decl); |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
140 |
if (NULL == decl) ERROR; |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
141 |
|
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
142 |
return ((typeid( *(decl) ) == typeid( array_specification_c )) || |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
143 |
// (typeid( *(decl) ) == typeid( array_spec_init_c )) || /* does not seem to be necessary */ |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
144 |
(typeid( *(decl) ) == typeid( structure_type_declaration_c )) || |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
145 |
(typeid( *(decl) ) == typeid( structure_element_declaration_list_c )) || |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
146 |
// (typeid( *(decl) ) == typeid( structure_type_declaration_c )) || /* does not seem to be necessary */ |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
147 |
(typeid( *(decl) ) == typeid( initialized_structure_c )) |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
148 |
|
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
149 |
); |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
150 |
} |
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
151 |
|
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
152 |
|
e7d6f28fc882
Make temporary fix to is_complex() method.
Mario de Sousa <msousa@fe.up.pt>
parents:
511
diff
changeset
|
153 |
|
181 | 154 |
/***************************/ |
155 |
/* B 0 - Programming Model */ |
|
156 |
/***************************/ |
|
157 |
void *search_var_instance_decl_c::visit(library_c *symbol) { |
|
158 |
/* we do not want to search multiple declaration scopes, |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
202
diff
changeset
|
159 |
* so we do not visit all the functions, function blocks, etc... |
181 | 160 |
*/ |
161 |
return NULL; |
|
162 |
} |
|
163 |
||
164 |
||
165 |
||
166 |
/******************************************/ |
|
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
202
diff
changeset
|
167 |
/* B 1.4.3 - Declaration & Initialization */ |
181 | 168 |
/******************************************/ |
217
f5dfadf5de54
Adding support for declare, init, get and set macros
laurent
parents:
202
diff
changeset
|
169 |
|
181 | 170 |
/* edge -> The F_EDGE or R_EDGE directive */ |
171 |
// SYM_REF2(edge_declaration_c, edge, var1_list) |
|
172 |
// TODO |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
173 |
void *search_var_instance_decl_c::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
|
174 |
current_option = constant_opt; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
175 |
return NULL; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
176 |
} |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
177 |
|
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
178 |
void *search_var_instance_decl_c::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
|
179 |
current_option = retain_opt; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
180 |
return NULL; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
181 |
} |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
182 |
|
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
183 |
void *search_var_instance_decl_c::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
|
184 |
current_option = non_retain_opt; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
185 |
return NULL; |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
186 |
} |
181 | 187 |
|
188 |
void *search_var_instance_decl_c::visit(input_declarations_c *symbol) { |
|
189 |
current_vartype = input_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
190 |
current_option = none_opt; /* not really required. Just to make the code more readable */ |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
191 |
if (NULL != symbol->option) |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
192 |
symbol->option->accept(*this); |
181 | 193 |
void *res = symbol->input_declaration_list->accept(*this); |
194 |
if (res == NULL) { |
|
195 |
current_vartype = none_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
196 |
current_option = none_opt; |
181 | 197 |
} |
198 |
return res; |
|
199 |
} |
|
200 |
||
201 |
/* VAR_OUTPUT [RETAIN | NON_RETAIN] var_init_decl_list END_VAR */ |
|
202 |
/* option -> may be NULL ! */ |
|
203 |
void *search_var_instance_decl_c::visit(output_declarations_c *symbol) { |
|
204 |
current_vartype = output_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
205 |
current_option = none_opt; /* not really required. Just to make the code more readable */ |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
206 |
if (NULL != symbol->option) |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
207 |
symbol->option->accept(*this); |
181 | 208 |
void *res = symbol->var_init_decl_list->accept(*this); |
209 |
if (res == NULL) { |
|
210 |
current_vartype = none_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
211 |
current_option = none_opt; |
181 | 212 |
} |
213 |
return res; |
|
214 |
} |
|
215 |
||
216 |
/* VAR_IN_OUT var_declaration_list END_VAR */ |
|
217 |
void *search_var_instance_decl_c::visit(input_output_declarations_c *symbol) { |
|
218 |
current_vartype = inoutput_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
219 |
current_option = none_opt; /* not really required. Just to make the code more readable */ |
181 | 220 |
void *res = symbol->var_declaration_list->accept(*this); |
221 |
if (res == NULL) { |
|
222 |
current_vartype = none_vt; |
|
223 |
} |
|
224 |
return res; |
|
225 |
} |
|
226 |
||
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
227 |
/* ENO : BOOL */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
228 |
void *search_var_instance_decl_c::visit(eno_param_declaration_c *symbol) { |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
229 |
if (compare_identifiers(symbol->name, search_name) == 0) |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
230 |
return symbol->type; |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
231 |
return NULL; |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
232 |
} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
233 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
234 |
|
181 | 235 |
/* VAR [CONSTANT] var_init_decl_list END_VAR */ |
236 |
/* option -> may be NULL ! */ |
|
237 |
/* helper symbol for input_declarations */ |
|
238 |
void *search_var_instance_decl_c::visit(var_declarations_c *symbol) { |
|
239 |
current_vartype = private_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
240 |
current_option = none_opt; /* not really required. Just to make the code more readable */ |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
241 |
if (NULL != symbol->option) |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
242 |
symbol->option->accept(*this); |
181 | 243 |
void *res = symbol->var_init_decl_list->accept(*this); |
244 |
if (res == NULL) { |
|
245 |
current_vartype = none_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
246 |
current_option = none_opt; |
181 | 247 |
} |
248 |
return res; |
|
249 |
} |
|
250 |
||
251 |
/* VAR RETAIN var_init_decl_list END_VAR */ |
|
252 |
void *search_var_instance_decl_c::visit(retentive_var_declarations_c *symbol) { |
|
253 |
current_vartype = private_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
254 |
current_option = retain_opt; |
181 | 255 |
void *res = symbol->var_init_decl_list->accept(*this); |
256 |
if (res == NULL) { |
|
257 |
current_vartype = none_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
258 |
current_option = none_opt; |
181 | 259 |
} |
260 |
return res; |
|
261 |
} |
|
262 |
||
263 |
/* VAR [CONSTANT|RETAIN|NON_RETAIN] located_var_decl_list END_VAR */ |
|
264 |
/* option -> may be NULL ! */ |
|
265 |
//SYM_REF2(located_var_declarations_c, option, located_var_decl_list) |
|
266 |
void *search_var_instance_decl_c::visit(located_var_declarations_c *symbol) { |
|
267 |
current_vartype = located_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
268 |
current_option = none_opt; /* not really required. Just to make the code more readable */ |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
269 |
if (NULL != symbol->option) |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
270 |
symbol->option->accept(*this); |
181 | 271 |
void *res = symbol->located_var_decl_list->accept(*this); |
272 |
if (res == NULL) { |
|
273 |
current_vartype = none_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
274 |
current_option = none_opt; |
181 | 275 |
} |
276 |
return res; |
|
277 |
} |
|
278 |
||
279 |
/*| VAR_EXTERNAL [CONSTANT] external_declaration_list END_VAR */ |
|
280 |
/* option -> may be NULL ! */ |
|
281 |
//SYM_REF2(external_var_declarations_c, option, external_declaration_list) |
|
282 |
void *search_var_instance_decl_c::visit(external_var_declarations_c *symbol) { |
|
283 |
current_vartype = external_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
284 |
current_option = none_opt; /* not really required. Just to make the code more readable */ |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
285 |
if (NULL != symbol->option) |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
286 |
symbol->option->accept(*this); |
181 | 287 |
void *res = symbol->external_declaration_list->accept(*this); |
288 |
if (res == NULL) { |
|
289 |
current_vartype = none_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
290 |
current_option = none_opt; |
181 | 291 |
} |
292 |
return res; |
|
293 |
} |
|
294 |
||
295 |
/*| VAR_GLOBAL [CONSTANT|RETAIN] global_var_decl_list END_VAR */ |
|
296 |
/* option -> may be NULL ! */ |
|
297 |
//SYM_REF2(global_var_declarations_c, option, global_var_decl_list) |
|
298 |
void *search_var_instance_decl_c::visit(global_var_declarations_c *symbol) { |
|
299 |
current_vartype = global_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
300 |
current_option = none_opt; /* not really required. Just to make the code more readable */ |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
301 |
if (NULL != symbol->option) |
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
302 |
symbol->option->accept(*this); |
181 | 303 |
void *res = symbol->global_var_decl_list->accept(*this); |
304 |
if (res == NULL) { |
|
305 |
current_vartype = none_vt; |
|
507
30b31d8f6d0f
Determine the modifiers (CONST, REATAIN) used when declaring a variable.
manuele.conti@sirius-es.it
parents:
504
diff
changeset
|
306 |
current_option = none_opt; |
181 | 307 |
} |
308 |
return res; |
|
309 |
} |
|
310 |
||
311 |
/* var1_list is one of the following... |
|
312 |
* simple_spec_init_c * |
|
313 |
* subrange_spec_init_c * |
|
314 |
* enumerated_spec_init_c * |
|
315 |
*/ |
|
316 |
// SYM_REF2(var1_init_decl_c, var1_list, spec_init) |
|
317 |
void *search_var_instance_decl_c::visit(var1_init_decl_c *symbol) { |
|
318 |
current_type_decl = symbol->spec_init; |
|
319 |
return symbol->var1_list->accept(*this); |
|
320 |
} |
|
321 |
||
322 |
/* var1_list ',' variable_name */ |
|
323 |
// SYM_LIST(var1_list_c) |
|
324 |
void *search_var_instance_decl_c::visit(var1_list_c *symbol) { |
|
325 |
list_c *list = symbol; |
|
326 |
for(int i = 0; i < list->n; i++) { |
|
327 |
if (compare_identifiers(list->elements[i], search_name) == 0) |
|
328 |
/* by now, current_type_decl should be != NULL */ |
|
329 |
return current_type_decl; |
|
330 |
} |
|
331 |
return NULL; |
|
332 |
} |
|
333 |
||
334 |
/* name_list ':' function_block_type_name ASSIGN structure_initialization */ |
|
335 |
/* structure_initialization -> may be NULL ! */ |
|
336 |
void *search_var_instance_decl_c::visit(fb_name_decl_c *symbol) { |
|
337 |
current_type_decl = symbol->function_block_type_name; |
|
338 |
return symbol->fb_name_list->accept(*this); |
|
339 |
} |
|
340 |
||
341 |
/* name_list ',' fb_name */ |
|
342 |
void *search_var_instance_decl_c::visit(fb_name_list_c *symbol) { |
|
343 |
list_c *list = symbol; |
|
344 |
for(int i = 0; i < list->n; i++) { |
|
345 |
if (compare_identifiers(list->elements[i], search_name) == 0) |
|
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
|
346 |
/* by now, current_fb_declaration should be != NULL */ |
181 | 347 |
return current_type_decl; |
348 |
} |
|
349 |
return NULL; |
|
350 |
} |
|
351 |
||
352 |
/* var1_list ':' array_spec_init */ |
|
353 |
// SYM_REF2(array_var_init_decl_c, var1_list, array_spec_init) |
|
354 |
void *search_var_instance_decl_c::visit(array_var_init_decl_c *symbol) { |
|
355 |
current_type_decl = symbol->array_spec_init; |
|
356 |
return symbol->var1_list->accept(*this); |
|
357 |
} |
|
358 |
||
359 |
/* var1_list ':' initialized_structure */ |
|
360 |
// SYM_REF2(structured_var_init_decl_c, var1_list, initialized_structure) |
|
361 |
void *search_var_instance_decl_c::visit(structured_var_init_decl_c *symbol) { |
|
362 |
current_type_decl = symbol->initialized_structure; |
|
363 |
return symbol->var1_list->accept(*this); |
|
364 |
} |
|
365 |
||
366 |
/* var1_list ':' array_specification */ |
|
367 |
// SYM_REF2(array_var_declaration_c, var1_list, array_specification) |
|
368 |
void *search_var_instance_decl_c::visit(array_var_declaration_c *symbol) { |
|
369 |
current_type_decl = symbol->array_specification; |
|
370 |
return symbol->var1_list->accept(*this); |
|
371 |
} |
|
372 |
||
373 |
/* var1_list ':' structure_type_name */ |
|
374 |
// SYM_REF2(structured_var_declaration_c, var1_list, structure_type_name) |
|
375 |
void *search_var_instance_decl_c::visit(structured_var_declaration_c *symbol) { |
|
376 |
current_type_decl = symbol->structure_type_name; |
|
377 |
return symbol->var1_list->accept(*this); |
|
378 |
} |
|
379 |
||
380 |
/* [variable_name] location ':' located_var_spec_init */ |
|
381 |
/* variable_name -> may be NULL ! */ |
|
382 |
// SYM_REF4(located_var_decl_c, variable_name, location, located_var_spec_init, unused) |
|
383 |
// TODO!! |
|
384 |
||
385 |
/* global_var_name ':' (simple_specification|subrange_specification|enumerated_specification|array_specification|prev_declared_structure_type_name|function_block_type_name */ |
|
386 |
// SYM_REF2(external_declaration_c, global_var_name, specification) |
|
387 |
void *search_var_instance_decl_c::visit(external_declaration_c *symbol) { |
|
388 |
if (compare_identifiers(symbol->global_var_name, search_name) == 0) |
|
389 |
return symbol->specification; |
|
390 |
return NULL; |
|
391 |
} |
|
392 |
||
393 |
/*| global_var_spec ':' [located_var_spec_init|function_block_type_name] */ |
|
394 |
/* type_specification ->may be NULL ! */ |
|
395 |
// SYM_REF2(global_var_decl_c, global_var_spec, type_specification) |
|
396 |
void *search_var_instance_decl_c::visit(global_var_decl_c *symbol) { |
|
397 |
if (symbol->type_specification != NULL) { |
|
398 |
current_type_decl = symbol->type_specification; |
|
399 |
return symbol->global_var_spec->accept(*this); |
|
400 |
} |
|
401 |
else |
|
402 |
return NULL; |
|
403 |
} |
|
404 |
||
405 |
/*| global_var_name location */ |
|
406 |
//SYM_REF2(global_var_spec_c, global_var_name, location) |
|
407 |
void *search_var_instance_decl_c::visit(global_var_spec_c *symbol) { |
|
408 |
if (symbol->global_var_name != NULL && compare_identifiers(symbol->global_var_name, search_name) == 0) |
|
409 |
return current_type_decl; |
|
410 |
else |
|
411 |
return symbol->location->accept(*this); |
|
412 |
} |
|
413 |
||
414 |
/*| global_var_list ',' global_var_name */ |
|
415 |
//SYM_LIST(global_var_list_c) |
|
416 |
void *search_var_instance_decl_c::visit(global_var_list_c *symbol) { |
|
417 |
list_c *list = symbol; |
|
418 |
for(int i = 0; i < list->n; i++) { |
|
419 |
if (compare_identifiers(list->elements[i], search_name) == 0) |
|
420 |
/* by now, current_type_decl should be != NULL */ |
|
421 |
return current_type_decl; |
|
422 |
} |
|
423 |
return NULL; |
|
424 |
} |
|
425 |
||
426 |
/* [variable_name] location ':' located_var_spec_init */ |
|
427 |
/* variable_name -> may be NULL ! */ |
|
428 |
//SYM_REF4(located_var_decl_c, variable_name, location, located_var_spec_init, unused) |
|
429 |
void *search_var_instance_decl_c::visit(located_var_decl_c *symbol) { |
|
430 |
if (symbol->variable_name != NULL && compare_identifiers(symbol->variable_name, search_name) == 0) |
|
431 |
return symbol->located_var_spec_init; |
|
432 |
else { |
|
433 |
current_type_decl = symbol->located_var_spec_init; |
|
434 |
return symbol->location->accept(*this); |
|
435 |
} |
|
436 |
} |
|
437 |
||
438 |
/*| global_var_spec ':' [located_var_spec_init|function_block_type_name] */ |
|
439 |
/* type_specification ->may be NULL ! */ |
|
440 |
// SYM_REF2(global_var_decl_c, global_var_spec, type_specification) |
|
441 |
// TODO!! |
|
442 |
||
443 |
/* AT direct_variable */ |
|
444 |
// SYM_REF2(location_c, direct_variable, unused) |
|
445 |
void *search_var_instance_decl_c::visit(location_c *symbol) { |
|
446 |
if (compare_identifiers(symbol->direct_variable, search_name) == 0) |
|
447 |
return current_type_decl; |
|
448 |
else |
|
449 |
return NULL; |
|
450 |
} |
|
451 |
||
452 |
/*| global_var_list ',' global_var_name */ |
|
453 |
// SYM_LIST(global_var_list_c) |
|
454 |
// TODO!! |
|
455 |
||
456 |
/* var1_list ':' single_byte_string_spec */ |
|
457 |
// SYM_REF2(single_byte_string_var_declaration_c, var1_list, single_byte_string_spec) |
|
458 |
void *search_var_instance_decl_c::visit(single_byte_string_var_declaration_c *symbol) { |
|
459 |
current_type_decl = symbol->single_byte_string_spec; |
|
460 |
return symbol->var1_list->accept(*this); |
|
461 |
} |
|
462 |
||
463 |
/* STRING ['[' integer ']'] [ASSIGN single_byte_character_string] */ |
|
464 |
/* integer ->may be NULL ! */ |
|
465 |
/* single_byte_character_string ->may be NULL ! */ |
|
466 |
// SYM_REF2(single_byte_string_spec_c, integer, single_byte_character_string) |
|
467 |
// TODO!! |
|
468 |
||
469 |
/* var1_list ':' double_byte_string_spec */ |
|
470 |
// SYM_REF2(double_byte_string_var_declaration_c, var1_list, double_byte_string_spec) |
|
471 |
void *search_var_instance_decl_c::visit(double_byte_string_var_declaration_c *symbol) { |
|
472 |
current_type_decl = symbol->double_byte_string_spec; |
|
473 |
return symbol->var1_list->accept(*this); |
|
474 |
} |
|
475 |
||
476 |
/* WSTRING ['[' integer ']'] [ASSIGN double_byte_character_string] */ |
|
477 |
/* integer ->may be NULL ! */ |
|
478 |
/* double_byte_character_string ->may be NULL ! */ |
|
479 |
// SYM_REF2(double_byte_string_spec_c, integer, double_byte_character_string) |
|
480 |
// TODO!! |
|
481 |
||
482 |
/* variable_name incompl_location ':' var_spec */ |
|
483 |
// SYM_REF4(incompl_located_var_decl_c, variable_name, incompl_location, var_spec, unused) |
|
484 |
// TODO!! |
|
485 |
||
486 |
/* AT incompl_location_token */ |
|
487 |
// SYM_TOKEN(incompl_location_c) |
|
488 |
// TODO!! |
|
489 |
||
490 |
||
491 |
/**************************************/ |
|
492 |
/* B.1.5 - Program organization units */ |
|
493 |
/**************************************/ |
|
494 |
/***********************/ |
|
495 |
/* B 1.5.1 - Functions */ |
|
496 |
/***********************/ |
|
497 |
// SYM_REF4(function_declaration_c, derived_function_name, type_name, var_declarations_list, function_body) |
|
498 |
void *search_var_instance_decl_c::visit(function_declaration_c *symbol) { |
|
499 |
/* functions have a variable named after themselves, to store |
|
500 |
* the variable that will be returned!! |
|
501 |
*/ |
|
502 |
if (compare_identifiers(symbol->derived_function_name, search_name) == 0) |
|
503 |
return symbol->type_name; |
|
504 |
||
505 |
/* no need to search through all the body, so we only |
|
506 |
* visit the variable declarations...! |
|
507 |
*/ |
|
508 |
return symbol->var_declarations_list->accept(*this); |
|
509 |
} |
|
510 |
||
511 |
/*****************************/ |
|
512 |
/* B 1.5.2 - Function Blocks */ |
|
513 |
/*****************************/ |
|
514 |
void *search_var_instance_decl_c::visit(function_block_declaration_c *symbol) { |
|
515 |
/* no need to search through all the body, so we only |
|
516 |
* visit the variable declarations...! |
|
517 |
*/ |
|
518 |
return symbol->var_declarations->accept(*this); |
|
519 |
} |
|
520 |
||
521 |
/**********************/ |
|
522 |
/* B 1.5.3 - Programs */ |
|
523 |
/**********************/ |
|
524 |
void *search_var_instance_decl_c::visit(program_declaration_c *symbol) { |
|
525 |
/* no need to search through all the body, so we only |
|
526 |
* visit the variable declarations...! |
|
527 |
*/ |
|
528 |
return symbol->var_declarations->accept(*this); |
|
529 |
} |
|
530 |
||
531 |
||
532 |
/********************************/ |
|
533 |
/* B 1.7 Configuration elements */ |
|
534 |
/********************************/ |
|
535 |
||
536 |
/* |
|
537 |
CONFIGURATION configuration_name |
|
538 |
optional_global_var_declarations |
|
539 |
(resource_declaration_list | single_resource_declaration) |
|
540 |
optional_access_declarations |
|
541 |
optional_instance_specific_initializations |
|
542 |
END_CONFIGURATION |
|
543 |
*/ |
|
544 |
/* |
|
545 |
SYM_REF6(configuration_declaration_c, configuration_name, global_var_declarations, resource_declarations, access_declarations, instance_specific_initializations, unused) |
|
546 |
*/ |
|
547 |
void *search_var_instance_decl_c::visit(configuration_declaration_c *symbol) { |
|
548 |
/* no need to search through all the configuration, so we only |
|
549 |
* visit the global variable declarations...! |
|
550 |
*/ |
|
551 |
if (symbol->global_var_declarations != NULL) |
|
552 |
return symbol->global_var_declarations->accept(*this); |
|
553 |
else |
|
554 |
return NULL; |
|
555 |
} |
|
556 |
||
557 |
/* |
|
558 |
RESOURCE resource_name ON resource_type_name |
|
559 |
optional_global_var_declarations |
|
560 |
single_resource_declaration |
|
561 |
END_RESOURCE |
|
562 |
*/ |
|
563 |
// SYM_REF4(resource_declaration_c, resource_name, resource_type_name, global_var_declarations, resource_declaration) |
|
564 |
void *search_var_instance_decl_c::visit(resource_declaration_c *symbol) { |
|
565 |
/* no need to search through all the resource, so we only |
|
566 |
* visit the global variable declarations...! |
|
567 |
*/ |
|
568 |
if (symbol->global_var_declarations != NULL) |
|
569 |
return symbol->global_var_declarations->accept(*this); |
|
570 |
else |
|
571 |
return NULL; |
|
572 |
} |
|
573 |
||
574 |
/* task_configuration_list program_configuration_list */ |
|
575 |
// SYM_REF2(single_resource_declaration_c, task_configuration_list, program_configuration_list) |
|
576 |
void *search_var_instance_decl_c::visit(single_resource_declaration_c *symbol) { |
|
577 |
/* no need to search through all the resource, |
|
578 |
* and there is no global variable declarations...! |
|
579 |
*/ |
|
580 |
return NULL; |
|
581 |
} |
|
582 |