author | Mario de Sousa <msousa@fe.up.pt> |
Fri, 31 Aug 2012 15:09:25 +0100 | |
changeset 652 | 7fe1533d2260 |
parent 619 | f8c9ac5c529a |
child 667 | bd1360f29f15 |
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:
257
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:
257
diff
changeset
|
3 |
* |
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:
377
diff
changeset
|
4 |
* Copyright (C) 2003-2012 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:
257
diff
changeset
|
6 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
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:
257
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:
257
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:
257
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:
257
diff
changeset
|
11 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
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:
257
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:
257
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:
257
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:
257
diff
changeset
|
16 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
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:
257
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:
257
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:
257
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 |
/* Determine the data type on which another data type is based on. |
|
34 |
* If a new default initial value is given, we DO NOT consider it a |
|
35 |
* new base class, and continue looking further! |
|
36 |
* |
|
37 |
* E.g. TYPE new_int_t : INT; END_TYPE; |
|
38 |
* TYPE new_int2_t : INT = 2; END_TYPE; |
|
39 |
* TYPE new_subr_t : INT (4..5); END_TYPE; |
|
40 |
* |
|
41 |
* new_int_t is really an INT!! |
|
42 |
* new_int2_t is also really an INT!! |
|
43 |
* new_subr_t is also really an INT!! |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
44 |
* |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
45 |
* Note that a FB declaration is also considered a base type, as |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
46 |
* we may have FB instances declared of a specific FB type. |
181 | 47 |
*/ |
48 |
#include "absyntax_utils.hh" |
|
596
4efb11e44065
Add ERROR_MSG macro && move extract_XXX() functions to constant_folding.cc
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
49 |
#include "../main.hh" // required for ERROR() and ERROR_MSG() macros. |
181 | 50 |
|
51 |
||
52 |
||
53 |
search_base_type_c::search_base_type_c(void) {current_type_name = NULL;} |
|
54 |
||
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:
377
diff
changeset
|
55 |
|
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:
377
diff
changeset
|
56 |
|
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:
377
diff
changeset
|
57 |
|
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:
377
diff
changeset
|
58 |
symbol_c *search_base_type_c::get_basetype_decl(symbol_c *symbol) { |
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:
377
diff
changeset
|
59 |
if (NULL == symbol) |
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:
377
diff
changeset
|
60 |
return NULL; |
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:
377
diff
changeset
|
61 |
|
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:
377
diff
changeset
|
62 |
return (symbol_c *)symbol->accept(*this); |
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:
377
diff
changeset
|
63 |
} |
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:
377
diff
changeset
|
64 |
|
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:
377
diff
changeset
|
65 |
symbol_c *search_base_type_c::get_basetype_id (symbol_c *symbol) { |
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:
377
diff
changeset
|
66 |
if (NULL == symbol) |
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:
377
diff
changeset
|
67 |
return NULL; |
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:
377
diff
changeset
|
68 |
|
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:
377
diff
changeset
|
69 |
current_type_name = NULL; /* just to be on the safe side... */ |
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:
377
diff
changeset
|
70 |
symbol->accept(*this); |
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:
377
diff
changeset
|
71 |
return (symbol_c *)current_type_name; |
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:
377
diff
changeset
|
72 |
} |
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:
377
diff
changeset
|
73 |
|
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:
377
diff
changeset
|
74 |
|
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:
377
diff
changeset
|
75 |
/* Note by MJS: The following two functions definately do not belong in this class!! Maybe create a new utility class? |
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:
377
diff
changeset
|
76 |
* I will need to clean this up when the opportunity arises! |
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:
377
diff
changeset
|
77 |
*/ |
181 | 78 |
|
79 |
bool search_base_type_c::type_is_subrange(symbol_c* type_decl) { |
|
80 |
this->is_subrange = false; |
|
81 |
type_decl->accept(*this); |
|
82 |
return this->is_subrange; |
|
83 |
} |
|
84 |
||
85 |
bool search_base_type_c::type_is_enumerated(symbol_c* type_decl) { |
|
86 |
this->is_enumerated = false; |
|
87 |
type_decl->accept(*this); |
|
88 |
return this->is_enumerated; |
|
89 |
} |
|
90 |
||
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:
377
diff
changeset
|
91 |
|
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:
377
diff
changeset
|
92 |
/*************************/ |
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:
377
diff
changeset
|
93 |
/* B.1 - Common elements */ |
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:
377
diff
changeset
|
94 |
/*************************/ |
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:
377
diff
changeset
|
95 |
|
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:
377
diff
changeset
|
96 |
/*******************************************/ |
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:
377
diff
changeset
|
97 |
/* B 1.1 - Letters, digits and identifiers */ |
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:
377
diff
changeset
|
98 |
/*******************************************/ |
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:
377
diff
changeset
|
99 |
void *search_base_type_c::visit(identifier_c *type_name) { |
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:
377
diff
changeset
|
100 |
symbol_c *type_decl; |
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:
377
diff
changeset
|
101 |
|
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:
377
diff
changeset
|
102 |
this->current_type_name = type_name; |
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:
377
diff
changeset
|
103 |
|
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:
377
diff
changeset
|
104 |
/* look up the type declaration... */ |
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:
377
diff
changeset
|
105 |
type_decl = type_symtable.find_value(type_name); |
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:
377
diff
changeset
|
106 |
if (type_decl != type_symtable.end_value()) |
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:
377
diff
changeset
|
107 |
return type_decl->accept(*this); |
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:
377
diff
changeset
|
108 |
|
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:
377
diff
changeset
|
109 |
type_decl = function_block_type_symtable.find_value(type_name); |
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:
377
diff
changeset
|
110 |
if (type_decl != function_block_type_symtable.end_value()) |
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:
377
diff
changeset
|
111 |
return type_decl->accept(*this); |
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:
377
diff
changeset
|
112 |
|
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:
377
diff
changeset
|
113 |
/* Type declaration not found!! */ |
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:
377
diff
changeset
|
114 |
ERROR; |
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:
377
diff
changeset
|
115 |
|
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:
377
diff
changeset
|
116 |
return NULL; |
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:
377
diff
changeset
|
117 |
} |
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:
377
diff
changeset
|
118 |
|
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:
377
diff
changeset
|
119 |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
120 |
/*********************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
121 |
/* B 1.2 - Constants */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
122 |
/*********************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
123 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
124 |
/******************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
125 |
/* B 1.2.1 - Numeric Literals */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
126 |
/******************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
127 |
/* Numeric literals without any explicit type cast have unknown data type, |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
128 |
* so we continue considering them as their own basic data types until |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
129 |
* they can be resolved (for example, when using '30+x' where 'x' is a LINT variable, the |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
130 |
* numeric literal '30' must then be considered a LINT so the ADD function may be called |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
131 |
* with all inputs of the same data type. |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
132 |
* If 'x' were a SINT, then the '30' would have to be a SINT too! |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
133 |
*/ |
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
134 |
void *search_base_type_c::visit(real_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
135 |
void *search_base_type_c::visit(neg_real_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
136 |
void *search_base_type_c::visit(integer_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
137 |
void *search_base_type_c::visit(neg_integer_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
138 |
void *search_base_type_c::visit(binary_integer_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
139 |
void *search_base_type_c::visit(octal_integer_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
140 |
void *search_base_type_c::visit(hex_integer_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
141 |
void *search_base_type_c::visit(boolean_true_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
142 |
void *search_base_type_c::visit(boolean_false_c *symbol) {return (void *)symbol;} |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
143 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
144 |
|
181 | 145 |
/***********************************/ |
146 |
/* B 1.3.1 - Elementary Data Types */ |
|
147 |
/***********************************/ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
148 |
void *search_base_type_c::visit(time_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
149 |
void *search_base_type_c::visit(bool_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
150 |
void *search_base_type_c::visit(sint_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
151 |
void *search_base_type_c::visit(int_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
152 |
void *search_base_type_c::visit(dint_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
153 |
void *search_base_type_c::visit(lint_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
154 |
void *search_base_type_c::visit(usint_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
155 |
void *search_base_type_c::visit(uint_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
156 |
void *search_base_type_c::visit(udint_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
157 |
void *search_base_type_c::visit(ulint_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
158 |
void *search_base_type_c::visit(real_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
159 |
void *search_base_type_c::visit(lreal_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
160 |
void *search_base_type_c::visit(date_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
161 |
void *search_base_type_c::visit(tod_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
162 |
void *search_base_type_c::visit(dt_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
163 |
void *search_base_type_c::visit(byte_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
164 |
void *search_base_type_c::visit(word_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
165 |
void *search_base_type_c::visit(dword_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
166 |
void *search_base_type_c::visit(lword_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
167 |
void *search_base_type_c::visit(string_type_name_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
168 |
void *search_base_type_c::visit(wstring_type_name_c *symbol) {return (void *)symbol;} |
257 | 169 |
|
170 |
||
181 | 171 |
/******************************************************/ |
172 |
/* Extensions to the base standard as defined in */ |
|
173 |
/* "Safety Software Technical Specification, */ |
|
174 |
/* Part 1: Concepts and Function Blocks, */ |
|
175 |
/* Version 1.0 – Official Release" */ |
|
176 |
/* by PLCopen - Technical Committee 5 - 2006-01-31 */ |
|
177 |
/******************************************************/ |
|
257 | 178 |
|
179 |
void *search_base_type_c::visit(safetime_type_name_c *symbol) {return (void *)symbol;} |
|
180 |
void *search_base_type_c::visit(safebool_type_name_c *symbol) {return (void *)symbol;} |
|
181 |
void *search_base_type_c::visit(safesint_type_name_c *symbol) {return (void *)symbol;} |
|
182 |
void *search_base_type_c::visit(safeint_type_name_c *symbol) {return (void *)symbol;} |
|
183 |
void *search_base_type_c::visit(safedint_type_name_c *symbol) {return (void *)symbol;} |
|
184 |
void *search_base_type_c::visit(safelint_type_name_c *symbol) {return (void *)symbol;} |
|
185 |
void *search_base_type_c::visit(safeusint_type_name_c *symbol) {return (void *)symbol;} |
|
186 |
void *search_base_type_c::visit(safeuint_type_name_c *symbol) {return (void *)symbol;} |
|
187 |
void *search_base_type_c::visit(safeudint_type_name_c *symbol) {return (void *)symbol;} |
|
188 |
void *search_base_type_c::visit(safeulint_type_name_c *symbol) {return (void *)symbol;} |
|
189 |
void *search_base_type_c::visit(safereal_type_name_c *symbol) {return (void *)symbol;} |
|
190 |
void *search_base_type_c::visit(safelreal_type_name_c *symbol) {return (void *)symbol;} |
|
191 |
void *search_base_type_c::visit(safedate_type_name_c *symbol) {return (void *)symbol;} |
|
192 |
void *search_base_type_c::visit(safetod_type_name_c *symbol) {return (void *)symbol;} |
|
193 |
void *search_base_type_c::visit(safedt_type_name_c *symbol) {return (void *)symbol;} |
|
194 |
void *search_base_type_c::visit(safebyte_type_name_c *symbol) {return (void *)symbol;} |
|
195 |
void *search_base_type_c::visit(safeword_type_name_c *symbol) {return (void *)symbol;} |
|
196 |
void *search_base_type_c::visit(safedword_type_name_c *symbol) {return (void *)symbol;} |
|
197 |
void *search_base_type_c::visit(safelword_type_name_c *symbol) {return (void *)symbol;} |
|
198 |
void *search_base_type_c::visit(safestring_type_name_c *symbol) {return (void *)symbol;} |
|
199 |
void *search_base_type_c::visit(safewstring_type_name_c *symbol) {return (void *)symbol;} |
|
181 | 200 |
|
201 |
/********************************/ |
|
202 |
/* B 1.3.3 - Derived data types */ |
|
203 |
/********************************/ |
|
204 |
/* simple_type_name ':' simple_spec_init */ |
|
205 |
void *search_base_type_c::visit(simple_type_declaration_c *symbol) { |
|
206 |
return symbol->simple_spec_init->accept(*this); |
|
207 |
} |
|
208 |
/* simple_specification ASSIGN constant */ |
|
209 |
void *search_base_type_c::visit(simple_spec_init_c *symbol) { |
|
210 |
return symbol->simple_specification->accept(*this); |
|
211 |
} |
|
212 |
||
213 |
/* subrange_type_name ':' subrange_spec_init */ |
|
214 |
void *search_base_type_c::visit(subrange_type_declaration_c *symbol) { |
|
215 |
return symbol->subrange_spec_init->accept(*this); |
|
216 |
} |
|
217 |
||
218 |
/* subrange_specification ASSIGN signed_integer */ |
|
219 |
void *search_base_type_c::visit(subrange_spec_init_c *symbol) { |
|
220 |
this->is_subrange = true; |
|
221 |
return symbol->subrange_specification->accept(*this); |
|
222 |
} |
|
223 |
||
224 |
/* integer_type_name '(' subrange')' */ |
|
225 |
void *search_base_type_c::visit(subrange_specification_c *symbol) { |
|
226 |
return symbol->integer_type_name->accept(*this); |
|
227 |
} |
|
228 |
||
229 |
/* signed_integer DOTDOT signed_integer */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
230 |
void *search_base_type_c::visit(subrange_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 231 |
|
232 |
/* enumerated_type_name ':' enumerated_spec_init */ |
|
233 |
void *search_base_type_c::visit(enumerated_type_declaration_c *symbol) { |
|
234 |
this->current_type_name = symbol->enumerated_type_name; |
|
235 |
return symbol->enumerated_spec_init->accept(*this); |
|
236 |
} |
|
237 |
||
238 |
/* enumerated_specification ASSIGN enumerated_value */ |
|
239 |
void *search_base_type_c::visit(enumerated_spec_init_c *symbol) { |
|
240 |
this->is_enumerated = true; |
|
241 |
return symbol->enumerated_specification->accept(*this); |
|
242 |
} |
|
243 |
||
244 |
/* helper symbol for enumerated_specification->enumerated_spec_init */ |
|
245 |
/* enumerated_value_list ',' enumerated_value */ |
|
652
7fe1533d2260
Start adding support for data type checking of enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
619
diff
changeset
|
246 |
void *search_base_type_c::visit(enumerated_value_list_c *symbol) { |
7fe1533d2260
Start adding support for data type checking of enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
619
diff
changeset
|
247 |
this->is_enumerated = true; |
7fe1533d2260
Start adding support for data type checking of enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
619
diff
changeset
|
248 |
return (void *)symbol; |
7fe1533d2260
Start adding support for data type checking of enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
619
diff
changeset
|
249 |
} |
181 | 250 |
|
251 |
/* enumerated_type_name '#' identifier */ |
|
252 |
// SYM_REF2(enumerated_value_c, type, value) |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
253 |
void *search_base_type_c::visit(enumerated_value_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 254 |
|
255 |
/* identifier ':' array_spec_init */ |
|
256 |
void *search_base_type_c::visit(array_type_declaration_c *symbol) { |
|
257 |
this->current_type_name = symbol->identifier; |
|
258 |
return symbol->array_spec_init->accept(*this); |
|
259 |
} |
|
260 |
||
261 |
/* array_specification [ASSIGN array_initialization} */ |
|
262 |
/* array_initialization may be NULL ! */ |
|
263 |
void *search_base_type_c::visit(array_spec_init_c *symbol) { |
|
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:
377
diff
changeset
|
264 |
/* Note that the 'array_specification' may be either an identifier of a previsously defined array type, |
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:
377
diff
changeset
|
265 |
* or an array_specification_c, so we can not stop here and simply return a array_spec_init_c, |
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:
377
diff
changeset
|
266 |
* especially if we are looking for the base class! |
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:
377
diff
changeset
|
267 |
*/ |
181 | 268 |
return symbol->array_specification->accept(*this); |
269 |
} |
|
270 |
||
271 |
/* ARRAY '[' array_subrange_list ']' OF non_generic_type_name */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
272 |
void *search_base_type_c::visit(array_specification_c *symbol) {return (void *)symbol;} |
181 | 273 |
|
274 |
/* helper symbol for array_specification */ |
|
275 |
/* array_subrange_list ',' subrange */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
276 |
void *search_base_type_c::visit(array_subrange_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 277 |
|
278 |
/* array_initialization: '[' array_initial_elements_list ']' */ |
|
279 |
/* helper symbol for array_initialization */ |
|
280 |
/* array_initial_elements_list ',' array_initial_elements */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
281 |
void *search_base_type_c::visit(array_initial_elements_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 282 |
|
283 |
/* integer '(' [array_initial_element] ')' */ |
|
284 |
/* array_initial_element may be NULL ! */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
285 |
void *search_base_type_c::visit(array_initial_elements_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 286 |
|
287 |
/* structure_type_name ':' structure_specification */ |
|
288 |
/* NOTE: structure_specification will point to either a |
|
289 |
* initialized_structure_c |
|
290 |
* OR A |
|
291 |
* structure_element_declaration_list_c |
|
292 |
*/ |
|
293 |
void *search_base_type_c::visit(structure_type_declaration_c *symbol) { |
|
294 |
this->current_type_name = symbol->structure_type_name; |
|
295 |
return symbol->structure_specification->accept(*this); |
|
296 |
} |
|
297 |
||
298 |
/* structure_type_name ASSIGN structure_initialization */ |
|
299 |
/* structure_initialization may be NULL ! */ |
|
300 |
void *search_base_type_c::visit(initialized_structure_c *symbol) { |
|
301 |
return symbol->structure_type_name->accept(*this); |
|
302 |
} |
|
303 |
||
304 |
/* helper symbol for structure_declaration */ |
|
305 |
/* structure_declaration: STRUCT structure_element_declaration_list END_STRUCT */ |
|
306 |
/* structure_element_declaration_list structure_element_declaration ';' */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
307 |
void *search_base_type_c::visit(structure_element_declaration_list_c *symbol) {return (void *)symbol;} |
181 | 308 |
|
309 |
/* structure_element_name ':' *_spec_init */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
310 |
void *search_base_type_c::visit(structure_element_declaration_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 311 |
|
312 |
/* helper symbol for structure_initialization */ |
|
313 |
/* structure_initialization: '(' structure_element_initialization_list ')' */ |
|
314 |
/* structure_element_initialization_list ',' structure_element_initialization */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
315 |
void *search_base_type_c::visit(structure_element_initialization_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 316 |
|
317 |
/* structure_element_name ASSIGN value */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
318 |
void *search_base_type_c::visit(structure_element_initialization_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 319 |
|
320 |
/* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ |
|
321 |
/* |
|
322 |
SYM_REF4(string_type_declaration_c, string_type_name, |
|
323 |
elementary_string_type_name, |
|
324 |
string_type_declaration_size, |
|
325 |
string_type_declaration_init) // may be == NULL! |
|
326 |
*/ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
327 |
void *search_base_type_c::visit(string_type_declaration_c *symbol) {return (void *)symbol;} |
181 | 328 |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
329 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
330 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
331 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
332 |
/* B 1.5.2 - Function Blocks */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
333 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
334 |
/* FUNCTION_BLOCK derived_function_block_name io_OR_other_var_declarations function_block_body END_FUNCTION_BLOCK */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
335 |
// SYM_REF3(function_block_declaration_c, fblock_name, var_declarations, fblock_body) |
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
336 |
void *search_base_type_c::visit(function_block_declaration_c *symbol) {return (void *)symbol;} |
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
337 |
|
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
338 |
|
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
339 |
|
619
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
340 |
/*********************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
341 |
/* 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:
617
diff
changeset
|
342 |
/*********************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
343 |
/* 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:
617
diff
changeset
|
344 |
// 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:
617
diff
changeset
|
345 |
void *search_base_type_c::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:
617
diff
changeset
|
346 |
this->current_type_name = NULL; /* this pseudo data type does not have a type name! */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
347 |
return (void *)symbol; |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
348 |
} |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
349 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
350 |
/* 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:
617
diff
changeset
|
351 |
// 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:
617
diff
changeset
|
352 |
void *search_base_type_c::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:
617
diff
changeset
|
353 |
this->current_type_name = NULL; /* this pseudo data type does not have a type name! */ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
354 |
return (void *)symbol; |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
355 |
} |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
356 |