author | Mario de Sousa <msousa@fe.up.pt> |
Sun, 10 Jun 2012 21:51:16 +0100 | |
changeset 578 | 70c0456affca |
parent 547 | dab341e80664 |
child 618 | 5e09f665c2f1 |
permissions | -rw-r--r-- |
181 | 1 |
/* |
265
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
2 |
* matiec - a compiler for the programming languages defined in IEC 61131-3 |
181 | 3 |
* |
265
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
257
diff
changeset
|
4 |
* Copyright (C) 2003-2011 Mario de Sousa (msousa@fe.up.pt) |
279
c0453b7f99df
Re-generated std lib related code, with updated headers, updated all forgotten headers
Edouard Tisserant
parents:
265
diff
changeset
|
5 |
* Copyright (C) 2007-2011 Laurent Bessard and Edouard Tisserant |
181 | 6 |
* |
265
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 |
||
459
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
33 |
/* NOTE: The use of this visitor class is now deprecated. |
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
34 |
* The new version of stage3 data type checking adds an entry to |
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
35 |
* every relevant object in the abstract syntax tree defining |
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
36 |
* the data type of that object. Please use that instead! |
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
37 |
*/ |
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
38 |
|
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
39 |
|
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
40 |
|
181 | 41 |
/* Determine the data type of a specific constant or variable. |
42 |
* A reference to the relevant type definition is returned. |
|
43 |
* |
|
44 |
* For example: |
|
45 |
* 22 -> returns reference to a int_type_name_c object. |
|
46 |
* 22.2 -> returns reference to a real_type_name_c object. |
|
47 |
* LREAL#22.2 -> returns reference to a lreal_type_name_c object. |
|
48 |
* etc... |
|
49 |
*/ |
|
50 |
||
51 |
||
52 |
#include "../absyntax/visitor.hh" |
|
53 |
||
339
06b561479e46
Replacing extern declaration with #include of apropriate header file
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
54 |
#ifndef _SEARCH_CONSTANT_TYPE_HH |
06b561479e46
Replacing extern declaration with #include of apropriate header file
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
55 |
#define _SEARCH_CONSTANT_TYPE_HH |
181 | 56 |
|
57 |
class search_constant_type_c: public search_visitor_c { |
|
58 |
||
59 |
public: |
|
459
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
60 |
/* object used to identify an entry in the abstract syntax tree with an invalid data type */ |
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
61 |
/* This is only used from stage3 onwards. Stages 1 and 2 will never create any instances of invalid_type_name_c */ |
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
62 |
static invalid_type_name_c invalid_type_name; |
01f6664bf8c5
Continue adding support for semantic verification of JMP and RET.
Mario de Sousa <msousa@fe.up.pt>
parents:
417
diff
changeset
|
63 |
|
181 | 64 |
/**********************/ |
65 |
/* B.1.3 - Data types */ |
|
66 |
/**********************/ |
|
67 |
/***********************************/ |
|
68 |
/* B 1.3.1 - Elementary Data Types */ |
|
69 |
/***********************************/ |
|
70 |
static real_type_name_c real_type_name; |
|
71 |
static sint_type_name_c sint_type_name; |
|
72 |
static lint_type_name_c lint_type_name; |
|
73 |
static dint_type_name_c dint_type_name; |
|
74 |
static date_type_name_c date_type_name; |
|
75 |
static dword_type_name_c dword_type_name; |
|
76 |
static dt_type_name_c dt_type_name; |
|
77 |
static tod_type_name_c tod_type_name; |
|
78 |
static udint_type_name_c udint_type_name; |
|
79 |
static word_type_name_c word_type_name; |
|
80 |
static wstring_type_name_c wstring_type_name; |
|
81 |
static string_type_name_c string_type_name; |
|
82 |
static lword_type_name_c lword_type_name; |
|
83 |
static uint_type_name_c uint_type_name; |
|
84 |
static lreal_type_name_c lreal_type_name; |
|
85 |
static byte_type_name_c byte_type_name; |
|
86 |
static usint_type_name_c usint_type_name; |
|
87 |
static ulint_type_name_c ulint_type_name; |
|
88 |
static bool_type_name_c bool_type_name; |
|
89 |
static time_type_name_c time_type_name; |
|
90 |
static int_type_name_c int_type_name; |
|
91 |
||
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
92 |
/* temporarily here until we remove the st_code_gen.c and il_code_gen.c files... */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
93 |
static integer_c integer; |
181 | 94 |
|
95 |
/******************************************************/ |
|
96 |
/* Extensions to the base standard as defined in */ |
|
97 |
/* "Safety Software Technical Specification, */ |
|
98 |
/* Part 1: Concepts and Function Blocks, */ |
|
99 |
/* Version 1.0 – Official Release" */ |
|
100 |
/* by PLCopen - Technical Committee 5 - 2006-01-31 */ |
|
101 |
/******************************************************/ |
|
257 | 102 |
|
103 |
// static safebool_type_name_c safebool_type_name; |
|
104 |
/* The following is required because the expression (TOD_var - TOD_var) will result in a data type |
|
105 |
* (in this case, TIME) that is neither of the expression elements... |
|
106 |
*/ |
|
107 |
static safetime_type_name_c safetime_type_name; |
|
108 |
static safetod_type_name_c safetod_type_name; |
|
109 |
static safedt_type_name_c safedt_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:
339
diff
changeset
|
110 |
static safedate_type_name_c safedate_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:
339
diff
changeset
|
111 |
static safereal_type_name_c safereal_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:
339
diff
changeset
|
112 |
static safesint_type_name_c safesint_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:
339
diff
changeset
|
113 |
static safelint_type_name_c safelint_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:
339
diff
changeset
|
114 |
static safedint_type_name_c safedint_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:
339
diff
changeset
|
115 |
static safedword_type_name_c safedword_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:
339
diff
changeset
|
116 |
static safeudint_type_name_c safeudint_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:
339
diff
changeset
|
117 |
static safeword_type_name_c safeword_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:
339
diff
changeset
|
118 |
static safewstring_type_name_c safewstring_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:
339
diff
changeset
|
119 |
static safestring_type_name_c safestring_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:
339
diff
changeset
|
120 |
static safelword_type_name_c safelword_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:
339
diff
changeset
|
121 |
static safeuint_type_name_c safeuint_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:
339
diff
changeset
|
122 |
static safelreal_type_name_c safelreal_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:
339
diff
changeset
|
123 |
static safebyte_type_name_c safebyte_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:
339
diff
changeset
|
124 |
static safeusint_type_name_c safeusint_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:
339
diff
changeset
|
125 |
static safeulint_type_name_c safeulint_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:
339
diff
changeset
|
126 |
static safebool_type_name_c safebool_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:
339
diff
changeset
|
127 |
static safeint_type_name_c safeint_type_name; |
181 | 128 |
|
129 |
public: |
|
130 |
symbol_c *get_type(symbol_c *constant); |
|
131 |
||
132 |
||
133 |
private: |
|
134 |
/*********************/ |
|
135 |
/* B 1.2 - Constants */ |
|
136 |
/*********************/ |
|
137 |
||
138 |
/******************************/ |
|
139 |
/* B 1.2.1 - Numeric Literals */ |
|
140 |
/******************************/ |
|
141 |
void *visit(real_c *symbol); |
|
257 | 142 |
void *visit(neg_real_c *symbol); |
181 | 143 |
void *visit(integer_c *symbol); |
257 | 144 |
void *visit(neg_integer_c *symbol); |
181 | 145 |
void *visit(binary_integer_c *symbol); |
146 |
void *visit(octal_integer_c *symbol); |
|
147 |
void *visit(hex_integer_c *symbol); |
|
148 |
||
149 |
void *visit(integer_literal_c *symbol); |
|
150 |
void *visit(real_literal_c *symbol); |
|
151 |
void *visit(bit_string_literal_c *symbol); |
|
152 |
void *visit(boolean_literal_c *symbol); |
|
153 |
||
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
154 |
void *visit(boolean_true_c *symbol); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
155 |
void *visit(boolean_false_c *symbol); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
156 |
|
181 | 157 |
/*******************************/ |
158 |
/* B.1.2.2 Character Strings */ |
|
159 |
/*******************************/ |
|
160 |
void *visit(double_byte_character_string_c *symbol); |
|
161 |
void *visit(single_byte_character_string_c *symbol); |
|
162 |
||
163 |
/***************************/ |
|
164 |
/* B 1.2.3 - Time Literals */ |
|
165 |
/***************************/ |
|
166 |
/************************/ |
|
167 |
/* B 1.2.3.1 - Duration */ |
|
168 |
/************************/ |
|
169 |
void *visit(neg_time_c *symbol); |
|
170 |
void *visit(duration_c *symbol); |
|
547
dab341e80664
Fix parsing os TIME literals & rename the extract_integer() function.
mjsousa <msousa@fe.up.pt>
parents:
495
diff
changeset
|
171 |
void *visit(interval_c *symbol); |
181 | 172 |
void *visit(fixed_point_c *symbol); |
173 |
||
174 |
/************************************/ |
|
175 |
/* B 1.2.3.2 - Time of day and Date */ |
|
176 |
/************************************/ |
|
177 |
void *visit(time_of_day_c *symbol); |
|
178 |
void *visit(daytime_c *symbol); |
|
179 |
void *visit(date_c *symbol); |
|
180 |
void *visit(date_literal_c *symbol); |
|
181 |
void *visit(date_and_time_c *symbol); |
|
328
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
182 |
|
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
183 |
/********************************/ |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
184 |
/* B 1.3.3 - Derived data types */ |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
185 |
/********************************/ |
66cd5d9893dd
Add support for finding type of a constant enumerated value and managing conflict between same identifiers defined in different enumerated data types
laurent
parents:
279
diff
changeset
|
186 |
void *visit(enumerated_value_c *symbol); |
181 | 187 |
}; // search_constant_type_c |
188 |
||
189 |
||
339
06b561479e46
Replacing extern declaration with #include of apropriate header file
Mario de Sousa <msousa@fe.up.pt>
parents:
328
diff
changeset
|
190 |
#endif /* ifndef _SEARCH_CONSTANT_TYPE_HH */ |