author | edouard |
Mon, 02 Nov 2009 17:41:56 +0100 | |
changeset 215 | 15c98c40f6f4 |
parent 208 | c72748a12ae3 |
child 258 | d7d92b2f87e9 |
permissions | -rw-r--r-- |
181 | 1 |
/* |
2 |
* (c) 2003 Mario de Sousa |
|
3 |
* |
|
4 |
* Offered to the public under the terms of the GNU General Public License |
|
5 |
* as published by the Free Software Foundation; either version 2 of the |
|
6 |
* License, or (at your option) any later version. |
|
7 |
* |
|
8 |
* This program is distributed in the hope that it will be useful, but |
|
9 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
|
11 |
* Public License for more details. |
|
12 |
* |
|
13 |
* This code is made available on the understanding that it will not be |
|
14 |
* used in safety-critical situations without a full and competent review. |
|
15 |
*/ |
|
16 |
||
17 |
/* |
|
18 |
* An IEC 61131-3 IL and ST compiler. |
|
19 |
* |
|
20 |
* Based on the |
|
21 |
* FINAL DRAFT - IEC 61131-3, 2nd Ed. (2001-12-10) |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
||
26 |
/* Determine the data type of an ST expression. |
|
27 |
* A reference to the relevant type definition is returned. |
|
28 |
* |
|
29 |
* For example: |
|
30 |
* 2 + 3 -> returns reference to a int_type_name_c object. |
|
31 |
* 22.2 - 5 -> returns reference to a real_type_name_c object. |
|
32 |
* etc... |
|
33 |
*/ |
|
34 |
||
35 |
||
36 |
||
37 |
#include "absyntax_utils.hh" |
|
38 |
#include <typeinfo> |
|
39 |
||
40 |
search_expression_type_c::search_expression_type_c(symbol_c *search_scope) { |
|
41 |
search_varfb_instance_type = new search_varfb_instance_type_c(search_scope); |
|
42 |
} |
|
43 |
||
44 |
search_expression_type_c::~search_expression_type_c(void) { |
|
45 |
delete search_varfb_instance_type; |
|
46 |
} |
|
47 |
||
48 |
/* A helper function... */ |
|
49 |
bool search_expression_type_c::is_bool_type(symbol_c *type_symbol) { |
|
50 |
bool_type_name_c tt; |
|
51 |
if (type_symbol == NULL) {return true;} |
|
52 |
return (typeid(*type_symbol) == typeid(bool_type_name_c)); |
|
53 |
} |
|
54 |
||
55 |
/* A helper function... */ |
|
56 |
bool search_expression_type_c::is_time_type(symbol_c *type_symbol) { |
|
57 |
if (type_symbol == NULL) {return true;} |
|
58 |
if (typeid(*type_symbol) == typeid(time_type_name_c)) {return true;} |
|
59 |
if (typeid(*type_symbol) == typeid(date_type_name_c)) {return true;} |
|
60 |
if (typeid(*type_symbol) == typeid(tod_type_name_c)) {return true;} |
|
61 |
if (typeid(*type_symbol) == typeid(dt_type_name_c)) {return true;} |
|
62 |
return false; |
|
63 |
} |
|
64 |
||
65 |
/* A helper function... */ |
|
66 |
bool search_expression_type_c::is_string_type(symbol_c *type_symbol) { |
|
67 |
if (type_symbol == NULL) {return true;} |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
68 |
if (typeid(*type_symbol) == typeid(string_type_name_c)) {return true;} |
181 | 69 |
if (typeid(*type_symbol) == typeid(wstring_type_name_c)) {return true;} |
70 |
return false; |
|
71 |
} |
|
72 |
||
73 |
/* A helper function... */ |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
74 |
bool search_expression_type_c::is_literal_integer_type(symbol_c *type_symbol) { |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
75 |
if (type_symbol == NULL) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
76 |
if (typeid(*type_symbol) == typeid(integer_c)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
77 |
if (typeid(*type_symbol) == typeid(binary_integer_c)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
78 |
if (typeid(*type_symbol) == typeid(octal_integer_c)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
79 |
if (typeid(*type_symbol) == typeid(hex_integer_c)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
80 |
return false; |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
81 |
} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
82 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
83 |
/* A helper function... */ |
181 | 84 |
bool search_expression_type_c::is_integer_type(symbol_c *type_symbol) { |
85 |
if (type_symbol == NULL) {return true;} |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
86 |
if (typeid(*type_symbol) == typeid(sint_type_name_c)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
87 |
if (typeid(*type_symbol) == typeid(int_type_name_c)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
88 |
if (typeid(*type_symbol) == typeid(dint_type_name_c)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
89 |
if (typeid(*type_symbol) == typeid(lint_type_name_c)) {return true;} |
181 | 90 |
if (typeid(*type_symbol) == typeid(usint_type_name_c)) {return true;} |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
91 |
if (typeid(*type_symbol) == typeid(uint_type_name_c)) {return true;} |
181 | 92 |
if (typeid(*type_symbol) == typeid(udint_type_name_c)) {return true;} |
93 |
if (typeid(*type_symbol) == typeid(ulint_type_name_c)) {return true;} |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
94 |
return is_literal_integer_type(type_symbol); |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
95 |
} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
96 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
97 |
/* A helper function... */ |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
98 |
bool search_expression_type_c::is_literal_real_type(symbol_c *type_symbol) { |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
99 |
if (type_symbol == NULL) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
100 |
if (typeid(*type_symbol) == typeid(real_c)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
101 |
return false; |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
102 |
} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
103 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
104 |
/* A helper function... */ |
181 | 105 |
bool search_expression_type_c::is_real_type(symbol_c *type_symbol) { |
106 |
if (type_symbol == NULL) {return true;} |
|
107 |
if (typeid(*type_symbol) == typeid(real_type_name_c)) {return true;} |
|
108 |
if (typeid(*type_symbol) == typeid(lreal_type_name_c)) {return true;} |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
109 |
return is_literal_real_type(type_symbol); |
181 | 110 |
} |
111 |
||
112 |
bool search_expression_type_c::is_num_type(symbol_c *type_symbol) { |
|
113 |
if (type_symbol == NULL) {return true;} |
|
114 |
return is_real_type(type_symbol) || is_integer_type(type_symbol); |
|
115 |
} |
|
116 |
||
117 |
bool search_expression_type_c::is_nbinary_type(symbol_c *type_symbol) { |
|
118 |
if (type_symbol == NULL) {return true;} |
|
119 |
if (typeid(*type_symbol) == typeid(byte_type_name_c)) {return true;} |
|
120 |
if (typeid(*type_symbol) == typeid(word_type_name_c)) {return true;} |
|
121 |
if (typeid(*type_symbol) == typeid(dword_type_name_c)) {return true;} |
|
122 |
if (typeid(*type_symbol) == typeid(lword_type_name_c)) {return true;} |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
123 |
return is_literal_integer_type(type_symbol); |
181 | 124 |
} |
125 |
||
126 |
bool search_expression_type_c::is_binary_type(symbol_c *type_symbol) { |
|
127 |
if (type_symbol == NULL) {return true;} |
|
128 |
if (typeid(*type_symbol) == typeid(bool_type_name_c)) {return true;} |
|
129 |
return is_nbinary_type(type_symbol); |
|
130 |
} |
|
131 |
||
132 |
bool search_expression_type_c::is_same_type(symbol_c *first_type, symbol_c *second_type) { |
|
133 |
if (first_type == NULL || second_type == NULL) {return true;} |
|
134 |
if (typeid(*first_type) == typeid(*second_type)) {return true;} |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
135 |
if (is_integer_type(first_type) && is_literal_integer_type(second_type)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
136 |
if (is_literal_integer_type(first_type) && is_integer_type(second_type)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
137 |
if (is_binary_type(first_type) && is_literal_integer_type(second_type)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
138 |
if (is_literal_integer_type(first_type) && is_binary_type(second_type)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
139 |
if (is_real_type(first_type) && is_literal_real_type(second_type)) {return true;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
140 |
if (is_literal_real_type(first_type) && is_real_type(second_type)) {return true;} |
181 | 141 |
return false; |
142 |
} |
|
143 |
||
144 |
symbol_c* search_expression_type_c::common_type(symbol_c *first_type, symbol_c *second_type) { |
|
145 |
if (first_type == NULL && second_type == NULL) {return NULL;} |
|
146 |
if (first_type == NULL) {return second_type;} |
|
147 |
if (second_type == NULL) {return first_type;} |
|
148 |
if (typeid(*first_type) == typeid(*second_type)) {return first_type;} |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
149 |
if (is_integer_type(first_type) && is_literal_integer_type(second_type)) {return first_type;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
150 |
if (is_literal_integer_type(first_type) && is_integer_type(second_type)) {return second_type;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
151 |
if (is_binary_type(first_type) && is_literal_integer_type(second_type)) {return first_type;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
152 |
if (is_literal_integer_type(first_type) && is_binary_type(second_type)) {return second_type;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
153 |
if (is_real_type(first_type) && is_literal_real_type(second_type)) {return first_type;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
154 |
if (is_literal_real_type(first_type) && is_real_type(second_type)) {return second_type;} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
155 |
return NULL; |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
156 |
} |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
157 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
158 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
159 |
integer_c search_expression_type_c::integer("1"); // what default value should we use here ??? |
181 | 160 |
#include "search_type_code.c" |
161 |
||
162 |
/*static bool_type_name_c bool_type_name;*/ |
|
163 |
||
164 |
/* A helper function... */ |
|
165 |
void *search_expression_type_c::compute_boolean_expression(symbol_c *left_type, symbol_c *right_type) { |
|
166 |
if (!is_same_type(left_type, right_type)) |
|
167 |
ERROR; |
|
168 |
if (!is_bool_type(left_type) && !is_binary_type(left_type)) |
|
169 |
ERROR; |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
170 |
if (is_literal_integer_type(left_type)) {return (void *)right_type;} |
181 | 171 |
else {return (void *)left_type;} |
172 |
} |
|
173 |
||
174 |
/* A helper function... */ |
|
175 |
void *search_expression_type_c::compute_numeric_expression(symbol_c *left_type, symbol_c *right_type) { |
|
176 |
if (!is_same_type(left_type, right_type)) |
|
177 |
ERROR; |
|
178 |
if (!is_integer_type(left_type) && !is_real_type(left_type)) |
|
179 |
ERROR; |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
196
diff
changeset
|
180 |
if (is_literal_integer_type(left_type) || is_literal_real_type(left_type)) {return (void *)right_type;} |
181 | 181 |
else {return (void *)left_type;} |
182 |
return NULL; |
|
183 |
} |
|
184 |
||
185 |
/* a helper function... */ |
|
186 |
symbol_c *search_expression_type_c::base_type(symbol_c *symbol) { |
|
187 |
return (symbol_c *)symbol->accept(search_base_type); |
|
188 |
} |
|
189 |
||
190 |
/*********************/ |
|
191 |
/* B 1.4 - Variables */ |
|
192 |
/*********************/ |
|
193 |
||
194 |
void *search_expression_type_c::visit(symbolic_variable_c *symbol) { |
|
195 |
symbol_c *res; |
|
196 |
||
197 |
/* Nope, now we assume it is a variable, and determine its type... */ |
|
198 |
res = search_varfb_instance_type->get_type(symbol); |
|
199 |
if (NULL != res) return res; |
|
200 |
||
201 |
return NULL; |
|
202 |
} |
|
203 |
||
204 |
/********************************************/ |
|
205 |
/* B 1.4.1 - Directly Represented Variables */ |
|
206 |
/********************************************/ |
|
207 |
void *search_expression_type_c::visit(direct_variable_c *symbol) { |
|
196
1c0c7a664fc2
Fix problems with direct variables in expression while compiling resulting expression type
lbessard
parents:
194
diff
changeset
|
208 |
symbol_c *res; |
1c0c7a664fc2
Fix problems with direct variables in expression while compiling resulting expression type
lbessard
parents:
194
diff
changeset
|
209 |
|
1c0c7a664fc2
Fix problems with direct variables in expression while compiling resulting expression type
lbessard
parents:
194
diff
changeset
|
210 |
/* Nope, now we assume it is a variable, and determine its type... */ |
1c0c7a664fc2
Fix problems with direct variables in expression while compiling resulting expression type
lbessard
parents:
194
diff
changeset
|
211 |
res = search_varfb_instance_type->get_type(symbol); |
1c0c7a664fc2
Fix problems with direct variables in expression while compiling resulting expression type
lbessard
parents:
194
diff
changeset
|
212 |
if (NULL != res) return res; |
1c0c7a664fc2
Fix problems with direct variables in expression while compiling resulting expression type
lbessard
parents:
194
diff
changeset
|
213 |
|
1c0c7a664fc2
Fix problems with direct variables in expression while compiling resulting expression type
lbessard
parents:
194
diff
changeset
|
214 |
return NULL; |
181 | 215 |
} |
216 |
||
217 |
/*************************************/ |
|
218 |
/* B 1.4.2 - Multi-element variables */ |
|
219 |
/*************************************/ |
|
220 |
||
221 |
void *search_expression_type_c::visit(array_variable_c *symbol) { |
|
222 |
symbol_c *res; |
|
223 |
||
224 |
/* Nope, now we assume it is a variable, and determine its type... */ |
|
225 |
res = search_varfb_instance_type->get_type(symbol); |
|
226 |
if (NULL != res) return res; |
|
227 |
||
228 |
return NULL; |
|
229 |
} |
|
230 |
||
231 |
void *search_expression_type_c::visit(structured_variable_c *symbol) { |
|
232 |
symbol_c *res; |
|
233 |
||
234 |
/* Nope, now we assume it is a variable, and determine its type... */ |
|
235 |
res = search_varfb_instance_type->get_type(symbol); |
|
236 |
if (NULL != res) return res; |
|
237 |
||
238 |
return NULL; |
|
239 |
} |
|
240 |
||
241 |
/***************************************/ |
|
242 |
/* B.3 - Language ST (Structured Text) */ |
|
243 |
/***************************************/ |
|
244 |
/***********************/ |
|
245 |
/* B 3.1 - Expressions */ |
|
246 |
/***********************/ |
|
247 |
void *search_expression_type_c::visit(or_expression_c *symbol) { |
|
248 |
symbol_c *left_type = base_type((symbol_c *)symbol->l_exp->accept(*this)); |
|
249 |
symbol_c *right_type = base_type((symbol_c *)symbol->r_exp->accept(*this)); |
|
250 |
return compute_boolean_expression(left_type, right_type); |
|
251 |
} |
|
252 |
||
253 |
void *search_expression_type_c::visit(xor_expression_c *symbol) { |
|
254 |
symbol_c *left_type = base_type((symbol_c *)symbol->l_exp->accept(*this)); |
|
255 |
symbol_c *right_type = base_type((symbol_c *)symbol->r_exp->accept(*this)); |
|
256 |
return compute_boolean_expression(left_type, right_type); |
|
257 |
} |
|
258 |
||
259 |
void *search_expression_type_c::visit(and_expression_c *symbol) { |
|
260 |
symbol_c *left_type = base_type((symbol_c *)symbol->l_exp->accept(*this)); |
|
261 |
symbol_c *right_type = base_type((symbol_c *)symbol->r_exp->accept(*this)); |
|
262 |
return compute_boolean_expression(left_type, right_type); |
|
263 |
} |
|
264 |
||
265 |
void *search_expression_type_c::visit(equ_expression_c *symbol) {return (void *)&bool_type_name;} |
|
266 |
void *search_expression_type_c::visit(notequ_expression_c *symbol) {return (void *)&bool_type_name;} |
|
267 |
void *search_expression_type_c::visit(lt_expression_c *symbol) {return (void *)&bool_type_name;} |
|
268 |
void *search_expression_type_c::visit(gt_expression_c *symbol) {return (void *)&bool_type_name;} |
|
269 |
void *search_expression_type_c::visit(le_expression_c *symbol) {return (void *)&bool_type_name;} |
|
270 |
void *search_expression_type_c::visit(ge_expression_c *symbol) {return (void *)&bool_type_name;} |
|
271 |
||
272 |
void *search_expression_type_c::visit(add_expression_c *symbol) { |
|
273 |
symbol_c *left_type = base_type((symbol_c *)symbol->l_exp->accept(*this)); |
|
274 |
symbol_c *right_type = base_type((symbol_c *)symbol->r_exp->accept(*this)); |
|
275 |
if (typeid(*left_type) == typeid(time_type_name_c) && typeid(*right_type) == typeid(time_type_name_c)) {return (void *)&time_type_name;} |
|
276 |
if (typeid(*left_type) == typeid(tod_type_name_c) && typeid(*right_type) == typeid(time_type_name_c)) {return (void *)&tod_type_name;} |
|
277 |
if (typeid(*left_type) == typeid(dt_type_name_c) && typeid(*right_type) == typeid(time_type_name_c)) {return (void *)&dt_type_name;} |
|
278 |
return compute_numeric_expression(left_type, right_type); |
|
279 |
} |
|
280 |
||
281 |
void *search_expression_type_c::visit(sub_expression_c *symbol) { |
|
282 |
symbol_c *left_type = base_type((symbol_c *)symbol->l_exp->accept(*this)); |
|
283 |
symbol_c *right_type = base_type((symbol_c *)symbol->r_exp->accept(*this)); |
|
284 |
if (typeid(*left_type) == typeid(time_type_name_c) && typeid(*right_type) == typeid(time_type_name_c)) {return (void *)&time_type_name;} |
|
285 |
if (typeid(*left_type) == typeid(date_type_name_c) && typeid(*right_type) == typeid(date_type_name_c)) {return (void *)&time_type_name;} |
|
286 |
if (typeid(*left_type) == typeid(tod_type_name_c) && typeid(*right_type) == typeid(time_type_name_c)) {return (void *)&tod_type_name;} |
|
287 |
if (typeid(*left_type) == typeid(tod_type_name_c) && typeid(*right_type) == typeid(tod_type_name_c)) {return (void *)&time_type_name;} |
|
288 |
if (typeid(*left_type) == typeid(dt_type_name_c) && typeid(*right_type) == typeid(time_type_name_c)) {return (void *)&dt_type_name;} |
|
289 |
if (typeid(*left_type) == typeid(dt_type_name_c) && typeid(*right_type) == typeid(dt_type_name_c)) {return (void *)&time_type_name;} |
|
290 |
return compute_numeric_expression(left_type, right_type); |
|
291 |
} |
|
292 |
||
293 |
void *search_expression_type_c::visit(mul_expression_c *symbol) { |
|
294 |
symbol_c *left_type = base_type((symbol_c *)symbol->l_exp->accept(*this)); |
|
295 |
symbol_c *right_type = base_type((symbol_c *)symbol->r_exp->accept(*this)); |
|
296 |
if (typeid(*left_type) == typeid(time_type_name_c) && is_num_type(right_type)) { |
|
297 |
return (void *)&time_type_name; |
|
298 |
} |
|
299 |
return compute_numeric_expression(left_type, right_type); |
|
300 |
} |
|
301 |
||
302 |
void *search_expression_type_c::visit(div_expression_c *symbol) { |
|
303 |
symbol_c *left_type = base_type((symbol_c *)symbol->l_exp->accept(*this)); |
|
304 |
symbol_c *right_type = base_type((symbol_c *)symbol->r_exp->accept(*this)); |
|
305 |
if (typeid(*left_type) == typeid(time_type_name_c) && is_num_type(right_type)){ |
|
306 |
return (void *)&time_type_name; |
|
307 |
} |
|
308 |
return compute_numeric_expression(left_type, right_type); |
|
309 |
} |
|
310 |
||
311 |
void *search_expression_type_c::visit(mod_expression_c *symbol) { |
|
312 |
symbol_c *left_type = base_type((symbol_c *)symbol->l_exp->accept(*this)); |
|
313 |
symbol_c *right_type = base_type((symbol_c *)symbol->r_exp->accept(*this)); |
|
314 |
return compute_numeric_expression(left_type, right_type); |
|
315 |
} |
|
316 |
||
317 |
void *search_expression_type_c::visit(power_expression_c *symbol) { |
|
318 |
symbol_c *left_type = base_type((symbol_c *)symbol->l_exp->accept(*this)); |
|
319 |
symbol_c *right_type = base_type((symbol_c *)symbol->r_exp->accept(*this)); |
|
320 |
if (is_real_type(left_type) && is_num_type(right_type)) { |
|
321 |
return (void *)left_type; |
|
322 |
} |
|
323 |
ERROR; |
|
324 |
return NULL; |
|
325 |
} |
|
326 |
||
327 |
void *search_expression_type_c::visit(neg_expression_c *symbol) { |
|
328 |
symbol_c *exp_type = base_type((symbol_c *)symbol->exp->accept(*this)); |
|
329 |
if (is_num_type(exp_type) || typeid(*exp_type) == typeid(time_type_name_c)){ |
|
330 |
return (void *)exp_type; |
|
331 |
} |
|
332 |
ERROR; |
|
333 |
return NULL; |
|
334 |
} |
|
335 |
||
336 |
void *search_expression_type_c::visit(not_expression_c *symbol) { |
|
337 |
symbol_c *exp_type = base_type((symbol_c *)symbol->exp->accept(*this)); |
|
338 |
return compute_boolean_expression(exp_type, exp_type); |
|
339 |
} |
|
340 |
||
341 |
void *search_expression_type_c::visit(function_invocation_c *symbol) { |
|
342 |
function_declaration_c *f_decl = function_symtable.find_value(symbol->function_name); |
|
343 |
if (f_decl == function_symtable.end_value()) { |
|
344 |
void *res = compute_standard_function_default(symbol); |
|
345 |
if (res == NULL) |
|
346 |
ERROR; |
|
347 |
return res; |
|
348 |
} |
|
349 |
return base_type(f_decl->type_name); |
|
350 |
} |
|
351 |
||
352 |
/*bool_type_name_c search_expression_type_c::bool_type_name;*/ |
|
353 |