author | Manuele Conti <conti.ma@alice.it> |
Tue, 15 May 2012 18:59:32 +0200 | |
changeset 559 | a3b8925e640c |
parent 350 | 2c3c4dc34979 |
child 665 | 50fca2d3abd9 |
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:
202
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:
202
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:
202
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:
202
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:
202
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:
202
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:
202
diff
changeset
|
11 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
202
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:
202
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:
202
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:
202
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:
202
diff
changeset
|
16 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
202
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:
202
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:
202
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:
202
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 of an ST expression. |
|
34 |
* A reference to the relevant type definition is returned. |
|
35 |
* |
|
36 |
* For example: |
|
37 |
* 2 + 3 -> returns reference to a int_type_name_c object. |
|
38 |
* 22.2 - 5 -> returns reference to a real_type_name_c object. |
|
39 |
* etc... |
|
40 |
*/ |
|
41 |
||
350
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
42 |
/* WARNING WARNING WARNING |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
43 |
* |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
44 |
* When taking into consideration calls to functions, this search_expression_type_c |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
45 |
* class will use internal atributes (i.e. anotation) in the function_invocation_c symbol |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
46 |
* in the abstract syntax tree. |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
47 |
* |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
48 |
* Since this anotation/atribute is only set/populated with the correct value |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
49 |
* during stage3 (semantic verification), this class will only work correctly |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
50 |
* after the semantic verification in stage 3 has been executed |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
51 |
* (to be more exact, the data type checking of stage 3). |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
52 |
*/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
336
diff
changeset
|
53 |
|
181 | 54 |
class search_expression_type_c: public search_constant_type_c { |
55 |
||
56 |
private: |
|
57 |
search_varfb_instance_type_c *search_varfb_instance_type; |
|
58 |
search_base_type_c search_base_type; |
|
59 |
||
60 |
||
61 |
public: |
|
62 |
search_expression_type_c(symbol_c *search_scope); |
|
63 |
virtual ~search_expression_type_c(void); |
|
64 |
||
65 |
/* A helper function... */ |
|
66 |
bool is_bool_type(symbol_c *type_symbol); |
|
67 |
bool is_time_type(symbol_c *type_symbol); |
|
68 |
bool is_string_type(symbol_c *type_symbol); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
69 |
bool is_literal_integer_type(symbol_c *type_symbol); |
181 | 70 |
bool is_integer_type(symbol_c *type_symbol); |
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
71 |
bool is_literal_real_type(symbol_c *type_symbol); |
181 | 72 |
bool is_real_type(symbol_c *type_symbol); |
73 |
bool is_num_type(symbol_c *type_symbol); |
|
74 |
bool is_nbinary_type(symbol_c *type_symbol); |
|
75 |
bool is_binary_type(symbol_c *type_symbol); |
|
76 |
||
77 |
bool is_same_type(symbol_c *first_type, symbol_c *second_type); |
|
78 |
symbol_c* common_type(symbol_c *first_type, symbol_c *second_type); |
|
336 | 79 |
symbol_c* default_literal_type(symbol_c *symbol); |
181 | 80 |
|
81 |
/* |
|
82 |
#include "search_type_code.c" |
|
83 |
*/ |
|
84 |
void *compute_standard_function_default(function_invocation_c *st_symbol, il_formal_funct_call_c *il_symbol); |
|
85 |
void *compute_standard_function_il(il_function_call_c *symbol, symbol_c *param_data_type); |
|
86 |
||
87 |
||
88 |
||
89 |
/*static bool_type_name_c bool_type_name;*/ |
|
90 |
||
91 |
/* A helper function... */ |
|
92 |
void *compute_boolean_expression(symbol_c *left_type, symbol_c *right_type); |
|
93 |
||
94 |
/* A helper function... */ |
|
95 |
void *compute_numeric_expression(symbol_c *left_type, symbol_c *right_type); |
|
96 |
||
97 |
/* a helper function... */ |
|
98 |
symbol_c *base_type(symbol_c *symbol); |
|
99 |
||
100 |
/*********************/ |
|
101 |
/* B 1.4 - Variables */ |
|
102 |
/*********************/ |
|
103 |
||
104 |
void *visit(symbolic_variable_c *symbol); |
|
105 |
||
106 |
/********************************************/ |
|
107 |
/* B 1.4.1 - Directly Represented Variables */ |
|
108 |
/********************************************/ |
|
109 |
void *visit(direct_variable_c *symbol); |
|
110 |
||
111 |
/*************************************/ |
|
112 |
/* B 1.4.2 - Multi-element variables */ |
|
113 |
/*************************************/ |
|
114 |
||
115 |
void *visit(array_variable_c *symbol); |
|
116 |
void *visit(structured_variable_c *symbol); |
|
117 |
||
118 |
/***************************************/ |
|
119 |
/* B.3 - Language ST (Structured Text) */ |
|
120 |
/***************************************/ |
|
121 |
/***********************/ |
|
122 |
/* B 3.1 - Expressions */ |
|
123 |
/***********************/ |
|
124 |
void *visit(or_expression_c *symbol); |
|
125 |
void *visit(xor_expression_c *symbol); |
|
126 |
void *visit(and_expression_c *symbol); |
|
127 |
void *visit(equ_expression_c *symbol); |
|
128 |
void *visit(notequ_expression_c *symbol); |
|
129 |
void *visit(lt_expression_c *symbol); |
|
130 |
void *visit(gt_expression_c *symbol); |
|
131 |
void *visit(le_expression_c *symbol); |
|
132 |
void *visit(ge_expression_c *symbol); |
|
133 |
||
134 |
void *visit(add_expression_c *symbol); |
|
135 |
void *visit(sub_expression_c *symbol); |
|
136 |
void *visit(mul_expression_c *symbol); |
|
137 |
void *visit(div_expression_c *symbol); |
|
138 |
void *visit(mod_expression_c *symbol); |
|
139 |
void *visit(power_expression_c *symbol); |
|
140 |
void *visit(neg_expression_c *symbol); |
|
141 |
void *visit(not_expression_c *symbol); |
|
142 |
void *visit(function_invocation_c *symbol); |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
143 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
144 |
|
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
145 |
static integer_c integer; |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
146 |
|
181 | 147 |
}; // search_expression_type_c |
148 |
||
149 |
||
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
150 |