author | mjsousa |
Wed, 26 Nov 2014 19:47:54 +0000 | |
changeset 949 | 734c255d863c |
parent 945 | 477393b00f95 |
child 958 | 7474d2cd1d6e |
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 |
||
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
52 |
/* pointer to singleton instance */ |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
53 |
search_base_type_c *search_base_type_c::search_base_type_singleton = NULL; |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
54 |
|
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
55 |
|
181 | 56 |
|
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
57 |
search_base_type_c::search_base_type_c(void) {current_basetype_name = NULL; current_basetype = NULL; current_equivtype = NULL;} |
181 | 58 |
|
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
59 |
/* static method! */ |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
60 |
void search_base_type_c::create_singleton(void) { |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
61 |
if (NULL == search_base_type_singleton) search_base_type_singleton = new search_base_type_c(); |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
62 |
if (NULL == search_base_type_singleton) ERROR; |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
63 |
} |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
64 |
|
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
65 |
/* static method! */ |
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
66 |
symbol_c *search_base_type_c::get_equivtype_decl(symbol_c *symbol) { |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
67 |
create_singleton(); |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
68 |
if (NULL == symbol) return NULL; |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
69 |
search_base_type_singleton->current_basetype_name = NULL; |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
70 |
search_base_type_singleton->current_basetype = NULL; |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
71 |
search_base_type_singleton->current_equivtype = NULL; |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
72 |
symbol_c *basetype = (symbol_c *)symbol->accept(*search_base_type_singleton); |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
73 |
if (NULL != search_base_type_singleton->current_equivtype) |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
74 |
return search_base_type_singleton->current_equivtype; |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
75 |
return basetype; |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
76 |
} |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
77 |
|
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
78 |
/* static method! */ |
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
|
79 |
symbol_c *search_base_type_c::get_basetype_decl(symbol_c *symbol) { |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
80 |
create_singleton(); |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
81 |
if (NULL == symbol) return NULL; |
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
82 |
search_base_type_singleton->current_basetype_name = NULL; |
726
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
83 |
search_base_type_singleton->current_basetype = NULL; |
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
84 |
search_base_type_singleton->current_equivtype = NULL; |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
85 |
return (symbol_c *)symbol->accept(*search_base_type_singleton); |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
86 |
} |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
87 |
|
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
88 |
/* static method! */ |
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
|
89 |
symbol_c *search_base_type_c::get_basetype_id (symbol_c *symbol) { |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
90 |
create_singleton(); |
726
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
91 |
if (NULL == symbol) return NULL; |
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
92 |
search_base_type_singleton->current_basetype_name = NULL; |
726
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
93 |
search_base_type_singleton->current_basetype = NULL; |
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
94 |
search_base_type_singleton->current_equivtype = NULL; |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
95 |
symbol->accept(*search_base_type_singleton); |
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
96 |
return (symbol_c *)search_base_type_singleton->current_basetype_name; |
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
|
97 |
} |
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 |
|
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 |
|
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 |
/* 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
|
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 |
|
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 |
/*******************************************/ |
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 |
/* 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
|
107 |
/*******************************************/ |
945
477393b00f95
Add support for relaxed datatype model for array datatypes.
mjsousa
parents:
921
diff
changeset
|
108 |
|
477393b00f95
Add support for relaxed datatype model for array datatypes.
mjsousa
parents:
921
diff
changeset
|
109 |
|
477393b00f95
Add support for relaxed datatype model for array datatypes.
mjsousa
parents:
921
diff
changeset
|
110 |
void *search_base_type_c::handle_datatype_identifier(token_c *type_name) { |
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
|
111 |
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
|
112 |
|
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
113 |
this->current_basetype_name = type_name; |
726
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
114 |
/* if we have reached this point, it is because the current_basetype is not yet pointing to the base datatype we are looking for, |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
115 |
* so we will be searching for the delcaration of the type named in type_name, which might be the base datatype (we search recursively!) |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
116 |
*/ |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
117 |
this->current_basetype = NULL; |
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
|
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 |
/* 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
|
120 |
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
|
121 |
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
|
122 |
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
|
123 |
|
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
|
124 |
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
|
125 |
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
|
126 |
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
|
127 |
|
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
|
128 |
/* 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
|
129 |
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
|
130 |
|
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
|
131 |
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
|
132 |
} |
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
|
133 |
|
945
477393b00f95
Add support for relaxed datatype model for array datatypes.
mjsousa
parents:
921
diff
changeset
|
134 |
void *search_base_type_c::visit( identifier_c *type_name) {return handle_datatype_identifier(type_name);} // still needed to handle FB and program datatypes! |
477393b00f95
Add support for relaxed datatype model for array datatypes.
mjsousa
parents:
921
diff
changeset
|
135 |
void *search_base_type_c::visit(derived_datatype_identifier_c *type_name) {return handle_datatype_identifier(type_name);} |
477393b00f95
Add support for relaxed datatype model for array datatypes.
mjsousa
parents:
921
diff
changeset
|
136 |
|
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
|
137 |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
138 |
/*********************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
139 |
/* B 1.2 - Constants */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
140 |
/*********************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
141 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
142 |
/******************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
143 |
/* 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
|
144 |
/******************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
145 |
/* 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
|
146 |
* 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
|
147 |
* 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
|
148 |
* 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
|
149 |
* 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
|
150 |
* 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
|
151 |
*/ |
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
152 |
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
|
153 |
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
|
154 |
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
|
155 |
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
|
156 |
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
|
157 |
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
|
158 |
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
|
159 |
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
|
160 |
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
|
161 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
162 |
|
181 | 163 |
/***********************************/ |
164 |
/* B 1.3.1 - Elementary Data Types */ |
|
165 |
/***********************************/ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
166 |
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
|
167 |
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
|
168 |
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
|
169 |
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
|
170 |
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
|
171 |
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
|
172 |
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
|
173 |
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
|
174 |
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
|
175 |
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
|
176 |
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
|
177 |
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
|
178 |
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
|
179 |
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
|
180 |
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
|
181 |
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
|
182 |
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
|
183 |
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
|
184 |
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
|
185 |
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
|
186 |
void *search_base_type_c::visit(wstring_type_name_c *symbol) {return (void *)symbol;} |
257 | 187 |
|
188 |
||
181 | 189 |
/******************************************************/ |
190 |
/* Extensions to the base standard as defined in */ |
|
191 |
/* "Safety Software Technical Specification, */ |
|
192 |
/* Part 1: Concepts and Function Blocks, */ |
|
193 |
/* Version 1.0 – Official Release" */ |
|
194 |
/* by PLCopen - Technical Committee 5 - 2006-01-31 */ |
|
195 |
/******************************************************/ |
|
257 | 196 |
|
197 |
void *search_base_type_c::visit(safetime_type_name_c *symbol) {return (void *)symbol;} |
|
198 |
void *search_base_type_c::visit(safebool_type_name_c *symbol) {return (void *)symbol;} |
|
199 |
void *search_base_type_c::visit(safesint_type_name_c *symbol) {return (void *)symbol;} |
|
200 |
void *search_base_type_c::visit(safeint_type_name_c *symbol) {return (void *)symbol;} |
|
201 |
void *search_base_type_c::visit(safedint_type_name_c *symbol) {return (void *)symbol;} |
|
202 |
void *search_base_type_c::visit(safelint_type_name_c *symbol) {return (void *)symbol;} |
|
203 |
void *search_base_type_c::visit(safeusint_type_name_c *symbol) {return (void *)symbol;} |
|
204 |
void *search_base_type_c::visit(safeuint_type_name_c *symbol) {return (void *)symbol;} |
|
205 |
void *search_base_type_c::visit(safeudint_type_name_c *symbol) {return (void *)symbol;} |
|
206 |
void *search_base_type_c::visit(safeulint_type_name_c *symbol) {return (void *)symbol;} |
|
207 |
void *search_base_type_c::visit(safereal_type_name_c *symbol) {return (void *)symbol;} |
|
208 |
void *search_base_type_c::visit(safelreal_type_name_c *symbol) {return (void *)symbol;} |
|
209 |
void *search_base_type_c::visit(safedate_type_name_c *symbol) {return (void *)symbol;} |
|
210 |
void *search_base_type_c::visit(safetod_type_name_c *symbol) {return (void *)symbol;} |
|
211 |
void *search_base_type_c::visit(safedt_type_name_c *symbol) {return (void *)symbol;} |
|
212 |
void *search_base_type_c::visit(safebyte_type_name_c *symbol) {return (void *)symbol;} |
|
213 |
void *search_base_type_c::visit(safeword_type_name_c *symbol) {return (void *)symbol;} |
|
214 |
void *search_base_type_c::visit(safedword_type_name_c *symbol) {return (void *)symbol;} |
|
215 |
void *search_base_type_c::visit(safelword_type_name_c *symbol) {return (void *)symbol;} |
|
216 |
void *search_base_type_c::visit(safestring_type_name_c *symbol) {return (void *)symbol;} |
|
217 |
void *search_base_type_c::visit(safewstring_type_name_c *symbol) {return (void *)symbol;} |
|
181 | 218 |
|
219 |
/********************************/ |
|
921
d228aaa4d616
Introduce absyntax class for keyword ANY, and use REF_TO(ANY) as datatype of NULL literal.
mjsousa
parents:
919
diff
changeset
|
220 |
/* B.1.3.2 - Generic data types */ |
d228aaa4d616
Introduce absyntax class for keyword ANY, and use REF_TO(ANY) as datatype of NULL literal.
mjsousa
parents:
919
diff
changeset
|
221 |
/********************************/ |
d228aaa4d616
Introduce absyntax class for keyword ANY, and use REF_TO(ANY) as datatype of NULL literal.
mjsousa
parents:
919
diff
changeset
|
222 |
void *search_base_type_c::visit(generic_type_any_c *symbol) {return (void *)symbol;} |
d228aaa4d616
Introduce absyntax class for keyword ANY, and use REF_TO(ANY) as datatype of NULL literal.
mjsousa
parents:
919
diff
changeset
|
223 |
|
d228aaa4d616
Introduce absyntax class for keyword ANY, and use REF_TO(ANY) as datatype of NULL literal.
mjsousa
parents:
919
diff
changeset
|
224 |
/********************************/ |
181 | 225 |
/* B 1.3.3 - Derived data types */ |
226 |
/********************************/ |
|
227 |
/* simple_type_name ':' simple_spec_init */ |
|
228 |
void *search_base_type_c::visit(simple_type_declaration_c *symbol) { |
|
229 |
return symbol->simple_spec_init->accept(*this); |
|
230 |
} |
|
231 |
/* simple_specification ASSIGN constant */ |
|
232 |
void *search_base_type_c::visit(simple_spec_init_c *symbol) { |
|
233 |
return symbol->simple_specification->accept(*this); |
|
234 |
} |
|
235 |
||
236 |
/* subrange_type_name ':' subrange_spec_init */ |
|
237 |
void *search_base_type_c::visit(subrange_type_declaration_c *symbol) { |
|
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
238 |
this->current_equivtype = symbol; |
181 | 239 |
return symbol->subrange_spec_init->accept(*this); |
240 |
} |
|
241 |
||
242 |
/* subrange_specification ASSIGN signed_integer */ |
|
243 |
void *search_base_type_c::visit(subrange_spec_init_c *symbol) { |
|
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
244 |
if (NULL == this->current_equivtype) |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
245 |
this->current_equivtype = symbol; |
181 | 246 |
return symbol->subrange_specification->accept(*this); |
247 |
} |
|
248 |
||
249 |
/* integer_type_name '(' subrange')' */ |
|
250 |
void *search_base_type_c::visit(subrange_specification_c *symbol) { |
|
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
251 |
if (NULL == this->current_equivtype) |
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
252 |
this->current_equivtype = symbol; |
181 | 253 |
return symbol->integer_type_name->accept(*this); |
254 |
} |
|
255 |
||
256 |
/* signed_integer DOTDOT signed_integer */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
257 |
void *search_base_type_c::visit(subrange_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 258 |
|
259 |
/* enumerated_type_name ':' enumerated_spec_init */ |
|
260 |
void *search_base_type_c::visit(enumerated_type_declaration_c *symbol) { |
|
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
261 |
this->current_basetype_name = symbol->enumerated_type_name; |
726
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
262 |
/* NOTE: We want search_base_type_c to return a enumerated_type_declaration_c as the base datatpe if possible |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
263 |
* (i.e. if it is a named datatype declared inside a TYPE ... END_TYPE declarations, as opposed to an |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
264 |
* anonymous datatype declared in a VAR ... AND_VAR declaration). |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
265 |
* However, we cannot return this symbol just yet, as it may not be the final base datatype. |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
266 |
* So we store it in a temporary current_basetype variable! |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
267 |
*/ |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
268 |
this->current_basetype = symbol; |
181 | 269 |
return symbol->enumerated_spec_init->accept(*this); |
270 |
} |
|
271 |
||
272 |
/* enumerated_specification ASSIGN enumerated_value */ |
|
273 |
void *search_base_type_c::visit(enumerated_spec_init_c *symbol) { |
|
726
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
274 |
// current_basetype may have been set in the previous enumerated_type_declaration_c visitor, in which case we do not want to overwrite the value! |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
275 |
if (NULL == this->current_basetype) |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
276 |
this->current_basetype = symbol; |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
277 |
/* NOTE: the following line may call either the visitor to |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
278 |
* - identifier_c, in which case this is not yet the base datatype we are looking for (it will set current_basetype to NULL!) |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
279 |
* - enumerated_value_list_c, in which case we have found the base datatype. |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
280 |
*/ |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
281 |
return symbol->enumerated_specification->accept(*this); |
181 | 282 |
} |
283 |
||
284 |
/* helper symbol for enumerated_specification->enumerated_spec_init */ |
|
285 |
/* 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
|
286 |
void *search_base_type_c::visit(enumerated_value_list_c *symbol) { |
726
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
287 |
// current_basetype may have been set in the previous enumerated_type_declaration_c or enumerated_spec_init_c visitors, in which case we do not want to overwrite the value! |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
288 |
if (NULL == this->current_basetype) |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
289 |
this->current_basetype = symbol; |
9b61eb4f00dc
Change the base datatype of enumerations to an enumerated_type_declaration_c (for named types!)
Mario de Sousa <msousa@fe.up.pt>
parents:
718
diff
changeset
|
290 |
return (void *)current_basetype; |
652
7fe1533d2260
Start adding support for data type checking of enums.
Mario de Sousa <msousa@fe.up.pt>
parents:
619
diff
changeset
|
291 |
} |
181 | 292 |
|
293 |
/* enumerated_type_name '#' identifier */ |
|
294 |
// SYM_REF2(enumerated_value_c, type, value) |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
295 |
void *search_base_type_c::visit(enumerated_value_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 296 |
|
297 |
/* identifier ':' array_spec_init */ |
|
298 |
void *search_base_type_c::visit(array_type_declaration_c *symbol) { |
|
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
299 |
this->current_basetype_name = symbol->identifier; |
181 | 300 |
return symbol->array_spec_init->accept(*this); |
301 |
} |
|
302 |
||
303 |
/* array_specification [ASSIGN array_initialization} */ |
|
304 |
/* array_initialization may be NULL ! */ |
|
305 |
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
|
306 |
/* 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
|
307 |
* 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
|
308 |
* 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
|
309 |
*/ |
181 | 310 |
return symbol->array_specification->accept(*this); |
311 |
} |
|
312 |
||
313 |
/* 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
|
314 |
void *search_base_type_c::visit(array_specification_c *symbol) {return (void *)symbol;} |
181 | 315 |
|
316 |
/* helper symbol for array_specification */ |
|
317 |
/* array_subrange_list ',' subrange */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
318 |
void *search_base_type_c::visit(array_subrange_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 319 |
|
320 |
/* array_initialization: '[' array_initial_elements_list ']' */ |
|
321 |
/* helper symbol for array_initialization */ |
|
322 |
/* array_initial_elements_list ',' array_initial_elements */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
323 |
void *search_base_type_c::visit(array_initial_elements_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 324 |
|
325 |
/* integer '(' [array_initial_element] ')' */ |
|
326 |
/* array_initial_element may be NULL ! */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
327 |
void *search_base_type_c::visit(array_initial_elements_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 328 |
|
329 |
/* structure_type_name ':' structure_specification */ |
|
330 |
/* NOTE: structure_specification will point to either a |
|
331 |
* initialized_structure_c |
|
332 |
* OR A |
|
333 |
* structure_element_declaration_list_c |
|
334 |
*/ |
|
335 |
void *search_base_type_c::visit(structure_type_declaration_c *symbol) { |
|
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
336 |
this->current_basetype_name = symbol->structure_type_name; |
181 | 337 |
return symbol->structure_specification->accept(*this); |
338 |
} |
|
339 |
||
412
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
340 |
/* var1_list ':' structure_type_name */ |
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
341 |
void *search_base_type_c::visit(structured_var_declaration_c *symbol) { |
625 | 342 |
return symbol; |
412
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
343 |
} |
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
344 |
|
181 | 345 |
/* structure_type_name ASSIGN structure_initialization */ |
346 |
/* structure_initialization may be NULL ! */ |
|
347 |
void *search_base_type_c::visit(initialized_structure_c *symbol) { |
|
348 |
return symbol->structure_type_name->accept(*this); |
|
349 |
} |
|
350 |
||
351 |
/* helper symbol for structure_declaration */ |
|
352 |
/* structure_declaration: STRUCT structure_element_declaration_list END_STRUCT */ |
|
353 |
/* structure_element_declaration_list structure_element_declaration ';' */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
354 |
void *search_base_type_c::visit(structure_element_declaration_list_c *symbol) {return (void *)symbol;} |
181 | 355 |
|
356 |
/* structure_element_name ':' *_spec_init */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
357 |
void *search_base_type_c::visit(structure_element_declaration_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 358 |
|
359 |
/* helper symbol for structure_initialization */ |
|
360 |
/* structure_initialization: '(' structure_element_initialization_list ')' */ |
|
361 |
/* structure_element_initialization_list ',' structure_element_initialization */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
362 |
void *search_base_type_c::visit(structure_element_initialization_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 363 |
|
364 |
/* structure_element_name ASSIGN value */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
365 |
void *search_base_type_c::visit(structure_element_initialization_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 366 |
|
367 |
/* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ |
|
368 |
/* |
|
369 |
SYM_REF4(string_type_declaration_c, string_type_name, |
|
370 |
elementary_string_type_name, |
|
371 |
string_type_declaration_size, |
|
372 |
string_type_declaration_init) // may be == NULL! |
|
373 |
*/ |
|
909
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
374 |
void *search_base_type_c::visit(string_type_declaration_c *symbol) {return (void *)symbol;} |
181 | 375 |
|
808
7a6b53d61ea3
Consider fb_name_decl_c a non base data type class!
Mario de Sousa <msousa@fe.up.pt>
parents:
793
diff
changeset
|
376 |
|
810
d9c48ad646f1
Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents:
808
diff
changeset
|
377 |
/* function_block_type_name ASSIGN structure_initialization */ |
808
7a6b53d61ea3
Consider fb_name_decl_c a non base data type class!
Mario de Sousa <msousa@fe.up.pt>
parents:
793
diff
changeset
|
378 |
/* structure_initialization -> may be NULL ! */ |
810
d9c48ad646f1
Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents:
808
diff
changeset
|
379 |
// SYM_REF2(fb_spec_init_c, function_block_type_name, structure_initialization) |
d9c48ad646f1
Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents:
808
diff
changeset
|
380 |
void *search_base_type_c::visit(fb_spec_init_c *symbol) { |
808
7a6b53d61ea3
Consider fb_name_decl_c a non base data type class!
Mario de Sousa <msousa@fe.up.pt>
parents:
793
diff
changeset
|
381 |
return symbol->function_block_type_name->accept(*this); |
7a6b53d61ea3
Consider fb_name_decl_c a non base data type class!
Mario de Sousa <msousa@fe.up.pt>
parents:
793
diff
changeset
|
382 |
} |
7a6b53d61ea3
Consider fb_name_decl_c a non base data type class!
Mario de Sousa <msousa@fe.up.pt>
parents:
793
diff
changeset
|
383 |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
384 |
|
810
d9c48ad646f1
Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents:
808
diff
changeset
|
385 |
|
909
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
386 |
/* ref_spec: REF_TO (non_generic_type_name | function_block_type_name) */ |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
387 |
// SYM_REF1(ref_spec_c, type_name) |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
388 |
void *search_base_type_c::visit(ref_spec_c *symbol) {return (void *)symbol;} |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
389 |
|
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
390 |
/* For the moment, we do not support initialising reference data types */ |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
391 |
/* ref_spec_init: ref_spec [ ASSIGN ref_initialization ]; */ |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
392 |
/* NOTE: ref_initialization may be NULL!! */ |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
393 |
// SYM_REF2(ref_spec_init_c, ref_spec, ref_initialization) |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
394 |
void *search_base_type_c::visit(ref_spec_init_c *symbol) { |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
395 |
return symbol->ref_spec->accept(*this); |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
396 |
} |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
397 |
|
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
398 |
/* ref_type_decl: identifier ':' ref_spec_init */ |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
399 |
// SYM_REF2(ref_type_decl_c, ref_type_name, ref_spec_init) |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
400 |
void *search_base_type_c::visit(ref_type_decl_c *symbol) { |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
401 |
this->current_basetype_name = symbol->ref_type_name; |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
402 |
return symbol->ref_spec_init->accept(*this); |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
403 |
} |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
404 |
|
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
405 |
|
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
858
diff
changeset
|
406 |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
407 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
408 |
/* 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
|
409 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
410 |
/* 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
|
411 |
// SYM_REF3(function_block_declaration_c, fblock_name, var_declarations, fblock_body) |
706
31553c22f318
Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents:
625
diff
changeset
|
412 |
void *search_base_type_c::visit(function_block_declaration_c *symbol) { |
31553c22f318
Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents:
625
diff
changeset
|
413 |
return (void *)symbol; |
31553c22f318
Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents:
625
diff
changeset
|
414 |
} |
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
415 |
|
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
416 |
|
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
417 |
|
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
|
418 |
/*********************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
419 |
/* 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
|
420 |
/*********************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
421 |
/* 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
|
422 |
// 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
|
423 |
void *search_base_type_c::visit(initial_step_c *symbol) { |
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
424 |
this->current_basetype_name = NULL; /* this pseudo data type does not have a type name! */ |
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
|
425 |
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
|
426 |
} |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
427 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
428 |
/* 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
|
429 |
// 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
|
430 |
void *search_base_type_c::visit(step_c *symbol) { |
858
c5f145364a4f
Fix get_datatype_info_c::is_subrange(), which did not work when using base type! (we now use get_equivtype() instead of get_base_type() )
mjsousa
parents:
854
diff
changeset
|
431 |
this->current_basetype_name = NULL; /* this pseudo data type does not have a type name! */ |
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
|
432 |
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
|
433 |
} |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
434 |