author | Mario de Sousa <msousa@fe.up.pt> |
Thu, 03 Jan 2013 18:23:07 +0000 | |
changeset 793 | 268bf4ca5fa1 |
parent 726 | 9b61eb4f00dc |
parent 706 | 31553c22f318 |
child 808 | 7a6b53d61ea3 |
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 |
|
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
|
57 |
search_base_type_c::search_base_type_c(void) {current_type_name = NULL; current_basetype = 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! */ |
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
|
66 |
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
|
67 |
create_singleton(); |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
68 |
if (NULL == symbol) return 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
|
69 |
search_base_type_singleton->current_type_name = 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
|
70 |
search_base_type_singleton->current_basetype = NULL; |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
71 |
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
|
72 |
} |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
73 |
|
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
74 |
/* 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
|
75 |
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
|
76 |
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
|
77 |
if (NULL == symbol) return NULL; |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
78 |
search_base_type_singleton->current_type_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
|
79 |
search_base_type_singleton->current_basetype = NULL; |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
80 |
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
|
81 |
return (symbol_c *)search_base_type_singleton->current_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
|
82 |
} |
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
|
83 |
|
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
|
84 |
|
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
|
85 |
/* 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
|
86 |
* 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
|
87 |
*/ |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
88 |
/* static method! */ |
181 | 89 |
bool search_base_type_c::type_is_subrange(symbol_c* type_decl) { |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
90 |
create_singleton(); |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
91 |
search_base_type_singleton->is_subrange = false; |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
92 |
type_decl->accept(*search_base_type_singleton); |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
93 |
return search_base_type_singleton->is_subrange; |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
94 |
} |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
95 |
|
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
96 |
|
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
97 |
/* static method! */ |
181 | 98 |
bool search_base_type_c::type_is_enumerated(symbol_c* type_decl) { |
718
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
99 |
create_singleton(); |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
100 |
search_base_type_singleton->is_enumerated = false; |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
101 |
type_decl->accept(*search_base_type_singleton); |
a9f8cc778444
Make search_base_type_c a singleton!
Mario de Sousa <msousa@fe.up.pt>
parents:
667
diff
changeset
|
102 |
return search_base_type_singleton->is_enumerated; |
181 | 103 |
} |
104 |
||
706
31553c22f318
Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents:
625
diff
changeset
|
105 |
bool search_base_type_c::type_is_fb(symbol_c* type_decl) { |
793 | 106 |
create_singleton(); |
107 |
search_base_type_singleton->is_fb = false; |
|
108 |
type_decl->accept(*search_base_type_singleton); |
|
109 |
return search_base_type_singleton->is_fb; |
|
706
31553c22f318
Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents:
625
diff
changeset
|
110 |
} |
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 |
|
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 |
/* 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
|
114 |
/*************************/ |
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 |
/*******************************************/ |
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 |
/* 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
|
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 |
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
|
120 |
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
|
121 |
|
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 |
this->current_type_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
|
123 |
/* 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
|
124 |
* 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
|
125 |
*/ |
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
|
126 |
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
|
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 |
/* 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
|
129 |
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
|
130 |
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
|
131 |
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
|
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 |
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
|
134 |
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
|
135 |
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
|
136 |
|
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 |
/* 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
|
138 |
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
|
139 |
|
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
|
140 |
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
|
141 |
} |
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
|
142 |
|
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
|
143 |
|
202
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 |
/* B 1.2 - Constants */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
146 |
/*********************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
147 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
148 |
/******************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
149 |
/* 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
|
150 |
/******************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
151 |
/* 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
|
152 |
* 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
|
153 |
* 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
|
154 |
* 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
|
155 |
* 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
|
156 |
* 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
|
157 |
*/ |
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
158 |
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
|
159 |
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
|
160 |
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
|
161 |
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
|
162 |
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
|
163 |
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
|
164 |
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
|
165 |
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
|
166 |
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
|
167 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
168 |
|
181 | 169 |
/***********************************/ |
170 |
/* B 1.3.1 - Elementary Data Types */ |
|
171 |
/***********************************/ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
172 |
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
|
173 |
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
|
174 |
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
|
175 |
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
|
176 |
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
|
177 |
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
|
178 |
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
|
179 |
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
|
180 |
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
|
181 |
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
|
182 |
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
|
183 |
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
|
184 |
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
|
185 |
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
|
186 |
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
|
187 |
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
|
188 |
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
|
189 |
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
|
190 |
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
|
191 |
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
|
192 |
void *search_base_type_c::visit(wstring_type_name_c *symbol) {return (void *)symbol;} |
257 | 193 |
|
194 |
||
181 | 195 |
/******************************************************/ |
196 |
/* Extensions to the base standard as defined in */ |
|
197 |
/* "Safety Software Technical Specification, */ |
|
198 |
/* Part 1: Concepts and Function Blocks, */ |
|
199 |
/* Version 1.0 – Official Release" */ |
|
200 |
/* by PLCopen - Technical Committee 5 - 2006-01-31 */ |
|
201 |
/******************************************************/ |
|
257 | 202 |
|
203 |
void *search_base_type_c::visit(safetime_type_name_c *symbol) {return (void *)symbol;} |
|
204 |
void *search_base_type_c::visit(safebool_type_name_c *symbol) {return (void *)symbol;} |
|
205 |
void *search_base_type_c::visit(safesint_type_name_c *symbol) {return (void *)symbol;} |
|
206 |
void *search_base_type_c::visit(safeint_type_name_c *symbol) {return (void *)symbol;} |
|
207 |
void *search_base_type_c::visit(safedint_type_name_c *symbol) {return (void *)symbol;} |
|
208 |
void *search_base_type_c::visit(safelint_type_name_c *symbol) {return (void *)symbol;} |
|
209 |
void *search_base_type_c::visit(safeusint_type_name_c *symbol) {return (void *)symbol;} |
|
210 |
void *search_base_type_c::visit(safeuint_type_name_c *symbol) {return (void *)symbol;} |
|
211 |
void *search_base_type_c::visit(safeudint_type_name_c *symbol) {return (void *)symbol;} |
|
212 |
void *search_base_type_c::visit(safeulint_type_name_c *symbol) {return (void *)symbol;} |
|
213 |
void *search_base_type_c::visit(safereal_type_name_c *symbol) {return (void *)symbol;} |
|
214 |
void *search_base_type_c::visit(safelreal_type_name_c *symbol) {return (void *)symbol;} |
|
215 |
void *search_base_type_c::visit(safedate_type_name_c *symbol) {return (void *)symbol;} |
|
216 |
void *search_base_type_c::visit(safetod_type_name_c *symbol) {return (void *)symbol;} |
|
217 |
void *search_base_type_c::visit(safedt_type_name_c *symbol) {return (void *)symbol;} |
|
218 |
void *search_base_type_c::visit(safebyte_type_name_c *symbol) {return (void *)symbol;} |
|
219 |
void *search_base_type_c::visit(safeword_type_name_c *symbol) {return (void *)symbol;} |
|
220 |
void *search_base_type_c::visit(safedword_type_name_c *symbol) {return (void *)symbol;} |
|
221 |
void *search_base_type_c::visit(safelword_type_name_c *symbol) {return (void *)symbol;} |
|
222 |
void *search_base_type_c::visit(safestring_type_name_c *symbol) {return (void *)symbol;} |
|
223 |
void *search_base_type_c::visit(safewstring_type_name_c *symbol) {return (void *)symbol;} |
|
181 | 224 |
|
225 |
/********************************/ |
|
226 |
/* B 1.3.3 - Derived data types */ |
|
227 |
/********************************/ |
|
228 |
/* simple_type_name ':' simple_spec_init */ |
|
229 |
void *search_base_type_c::visit(simple_type_declaration_c *symbol) { |
|
230 |
return symbol->simple_spec_init->accept(*this); |
|
231 |
} |
|
232 |
/* simple_specification ASSIGN constant */ |
|
233 |
void *search_base_type_c::visit(simple_spec_init_c *symbol) { |
|
234 |
return symbol->simple_specification->accept(*this); |
|
235 |
} |
|
236 |
||
237 |
/* subrange_type_name ':' subrange_spec_init */ |
|
238 |
void *search_base_type_c::visit(subrange_type_declaration_c *symbol) { |
|
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) { |
|
244 |
this->is_subrange = true; |
|
245 |
return symbol->subrange_specification->accept(*this); |
|
246 |
} |
|
247 |
||
248 |
/* integer_type_name '(' subrange')' */ |
|
249 |
void *search_base_type_c::visit(subrange_specification_c *symbol) { |
|
250 |
return symbol->integer_type_name->accept(*this); |
|
251 |
} |
|
252 |
||
253 |
/* signed_integer DOTDOT signed_integer */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
254 |
void *search_base_type_c::visit(subrange_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 255 |
|
256 |
/* enumerated_type_name ':' enumerated_spec_init */ |
|
257 |
void *search_base_type_c::visit(enumerated_type_declaration_c *symbol) { |
|
258 |
this->current_type_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
|
259 |
/* 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
|
260 |
* (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
|
261 |
* 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
|
262 |
* 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
|
263 |
* 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
|
264 |
*/ |
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 |
this->current_basetype = symbol; |
181 | 266 |
return symbol->enumerated_spec_init->accept(*this); |
267 |
} |
|
268 |
||
269 |
/* enumerated_specification ASSIGN enumerated_value */ |
|
270 |
void *search_base_type_c::visit(enumerated_spec_init_c *symbol) { |
|
271 |
this->is_enumerated = true; |
|
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
|
272 |
// 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
|
273 |
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
|
274 |
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
|
275 |
/* 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
|
276 |
* - 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
|
277 |
* - 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
|
278 |
*/ |
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 |
return symbol->enumerated_specification->accept(*this); |
181 | 280 |
} |
281 |
||
282 |
/* helper symbol for enumerated_specification->enumerated_spec_init */ |
|
283 |
/* 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
|
284 |
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
|
285 |
this->is_enumerated = true; |
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
|
286 |
// 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
|
287 |
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
|
288 |
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
|
289 |
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
|
290 |
} |
181 | 291 |
|
292 |
/* enumerated_type_name '#' identifier */ |
|
293 |
// SYM_REF2(enumerated_value_c, type, value) |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
294 |
void *search_base_type_c::visit(enumerated_value_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 295 |
|
296 |
/* identifier ':' array_spec_init */ |
|
297 |
void *search_base_type_c::visit(array_type_declaration_c *symbol) { |
|
298 |
this->current_type_name = symbol->identifier; |
|
299 |
return symbol->array_spec_init->accept(*this); |
|
300 |
} |
|
301 |
||
302 |
/* array_specification [ASSIGN array_initialization} */ |
|
303 |
/* array_initialization may be NULL ! */ |
|
304 |
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
|
305 |
/* 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
|
306 |
* 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
|
307 |
* 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
|
308 |
*/ |
181 | 309 |
return symbol->array_specification->accept(*this); |
310 |
} |
|
311 |
||
312 |
/* 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
|
313 |
void *search_base_type_c::visit(array_specification_c *symbol) {return (void *)symbol;} |
181 | 314 |
|
315 |
/* helper symbol for array_specification */ |
|
316 |
/* array_subrange_list ',' subrange */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
317 |
void *search_base_type_c::visit(array_subrange_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 318 |
|
319 |
/* array_initialization: '[' array_initial_elements_list ']' */ |
|
320 |
/* helper symbol for array_initialization */ |
|
321 |
/* array_initial_elements_list ',' array_initial_elements */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
322 |
void *search_base_type_c::visit(array_initial_elements_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 323 |
|
324 |
/* integer '(' [array_initial_element] ')' */ |
|
325 |
/* array_initial_element may be NULL ! */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
326 |
void *search_base_type_c::visit(array_initial_elements_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 327 |
|
328 |
/* structure_type_name ':' structure_specification */ |
|
329 |
/* NOTE: structure_specification will point to either a |
|
330 |
* initialized_structure_c |
|
331 |
* OR A |
|
332 |
* structure_element_declaration_list_c |
|
333 |
*/ |
|
334 |
void *search_base_type_c::visit(structure_type_declaration_c *symbol) { |
|
335 |
this->current_type_name = symbol->structure_type_name; |
|
336 |
return symbol->structure_specification->accept(*this); |
|
337 |
} |
|
338 |
||
412
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
339 |
/* var1_list ':' structure_type_name */ |
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
340 |
void *search_base_type_c::visit(structured_var_declaration_c *symbol) { |
625 | 341 |
return symbol; |
412
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
342 |
} |
aad38592bdde
Fix bug with InOut variable of structured type
Laurent Bessard
parents:
377
diff
changeset
|
343 |
|
181 | 344 |
/* structure_type_name ASSIGN structure_initialization */ |
345 |
/* structure_initialization may be NULL ! */ |
|
346 |
void *search_base_type_c::visit(initialized_structure_c *symbol) { |
|
347 |
return symbol->structure_type_name->accept(*this); |
|
348 |
} |
|
349 |
||
350 |
/* helper symbol for structure_declaration */ |
|
351 |
/* structure_declaration: STRUCT structure_element_declaration_list END_STRUCT */ |
|
352 |
/* structure_element_declaration_list structure_element_declaration ';' */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
353 |
void *search_base_type_c::visit(structure_element_declaration_list_c *symbol) {return (void *)symbol;} |
181 | 354 |
|
355 |
/* structure_element_name ':' *_spec_init */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
356 |
void *search_base_type_c::visit(structure_element_declaration_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 357 |
|
358 |
/* helper symbol for structure_initialization */ |
|
359 |
/* structure_initialization: '(' structure_element_initialization_list ')' */ |
|
360 |
/* structure_element_initialization_list ',' structure_element_initialization */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
361 |
void *search_base_type_c::visit(structure_element_initialization_list_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 362 |
|
363 |
/* structure_element_name ASSIGN value */ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
364 |
void *search_base_type_c::visit(structure_element_initialization_c *symbol) {ERROR; return NULL;} /* should never get called... */ |
181 | 365 |
|
366 |
/* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ |
|
367 |
/* |
|
368 |
SYM_REF4(string_type_declaration_c, string_type_name, |
|
369 |
elementary_string_type_name, |
|
370 |
string_type_declaration_size, |
|
371 |
string_type_declaration_init) // may be == NULL! |
|
372 |
*/ |
|
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
373 |
void *search_base_type_c::visit(string_type_declaration_c *symbol) {return (void *)symbol;} |
181 | 374 |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
375 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
376 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
377 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
378 |
/* 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
|
379 |
/*****************************/ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
380 |
/* 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
|
381 |
// 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
|
382 |
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
|
383 |
this->is_fb = true; |
31553c22f318
Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents:
625
diff
changeset
|
384 |
return (void *)symbol; |
31553c22f318
Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents:
625
diff
changeset
|
385 |
} |
617
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
386 |
|
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
387 |
|
43e00c10dc49
Change code formatting (alignment)
Mario de Sousa <msousa@fe.up.pt>
parents:
596
diff
changeset
|
388 |
|
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
|
389 |
/*********************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
390 |
/* 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
|
391 |
/*********************************************/ |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
392 |
/* 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
|
393 |
// 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
|
394 |
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
|
395 |
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
|
396 |
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
|
397 |
} |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
398 |
|
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
399 |
/* 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
|
400 |
// 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
|
401 |
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
|
402 |
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
|
403 |
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
|
404 |
} |
f8c9ac5c529a
Support for data types of STEP.T and STEP.X in SFCs
Mario de Sousa <msousa@fe.up.pt>
parents:
617
diff
changeset
|
405 |