author | laurent |
Thu, 09 Jun 2011 17:47:57 +0200 | |
changeset 317 | 5b687021c6e7 |
parent 279 | c0453b7f99df |
child 328 | 66cd5d9893dd |
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 |
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 |
||
33 |
/* Determine the data type of a specific constant or variable. |
|
34 |
* A reference to the relevant type definition is returned. |
|
35 |
* |
|
36 |
* For example: |
|
37 |
* 22 -> returns reference to a int_type_name_c object. |
|
38 |
* 22.2 -> returns reference to a real_type_name_c object. |
|
39 |
* LREAL#22.2 -> returns reference to a lreal_type_name_c object. |
|
40 |
* etc... |
|
41 |
*/ |
|
42 |
||
43 |
||
44 |
#include "../absyntax/visitor.hh" |
|
45 |
||
46 |
||
47 |
class search_constant_type_c: public search_visitor_c { |
|
48 |
||
49 |
public: |
|
50 |
/**********************/ |
|
51 |
/* B.1.3 - Data types */ |
|
52 |
/**********************/ |
|
53 |
/***********************************/ |
|
54 |
/* B 1.3.1 - Elementary Data Types */ |
|
55 |
/***********************************/ |
|
56 |
static real_type_name_c real_type_name; |
|
57 |
static sint_type_name_c sint_type_name; |
|
58 |
static lint_type_name_c lint_type_name; |
|
59 |
static dint_type_name_c dint_type_name; |
|
60 |
static date_type_name_c date_type_name; |
|
61 |
static dword_type_name_c dword_type_name; |
|
62 |
static dt_type_name_c dt_type_name; |
|
63 |
static tod_type_name_c tod_type_name; |
|
64 |
static udint_type_name_c udint_type_name; |
|
65 |
static word_type_name_c word_type_name; |
|
66 |
static wstring_type_name_c wstring_type_name; |
|
67 |
static string_type_name_c string_type_name; |
|
68 |
static lword_type_name_c lword_type_name; |
|
69 |
static uint_type_name_c uint_type_name; |
|
70 |
static lreal_type_name_c lreal_type_name; |
|
71 |
static byte_type_name_c byte_type_name; |
|
72 |
static usint_type_name_c usint_type_name; |
|
73 |
static ulint_type_name_c ulint_type_name; |
|
74 |
static bool_type_name_c bool_type_name; |
|
75 |
static time_type_name_c time_type_name; |
|
76 |
static int_type_name_c int_type_name; |
|
77 |
||
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
78 |
/* 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
|
79 |
static integer_c integer; |
181 | 80 |
|
81 |
/******************************************************/ |
|
82 |
/* Extensions to the base standard as defined in */ |
|
83 |
/* "Safety Software Technical Specification, */ |
|
84 |
/* Part 1: Concepts and Function Blocks, */ |
|
85 |
/* Version 1.0 – Official Release" */ |
|
86 |
/* by PLCopen - Technical Committee 5 - 2006-01-31 */ |
|
87 |
/******************************************************/ |
|
257 | 88 |
|
89 |
// static safebool_type_name_c safebool_type_name; |
|
90 |
/* The following is required because the expression (TOD_var - TOD_var) will result in a data type |
|
91 |
* (in this case, TIME) that is neither of the expression elements... |
|
92 |
*/ |
|
93 |
static safetime_type_name_c safetime_type_name; |
|
94 |
static safetod_type_name_c safetod_type_name; |
|
95 |
static safedt_type_name_c safedt_type_name; |
|
96 |
||
181 | 97 |
|
98 |
||
99 |
public: |
|
100 |
symbol_c *get_type(symbol_c *constant); |
|
101 |
||
102 |
||
103 |
private: |
|
104 |
/*********************/ |
|
105 |
/* B 1.2 - Constants */ |
|
106 |
/*********************/ |
|
107 |
||
108 |
/******************************/ |
|
109 |
/* B 1.2.1 - Numeric Literals */ |
|
110 |
/******************************/ |
|
111 |
void *visit(real_c *symbol); |
|
257 | 112 |
void *visit(neg_real_c *symbol); |
181 | 113 |
void *visit(integer_c *symbol); |
257 | 114 |
void *visit(neg_integer_c *symbol); |
181 | 115 |
void *visit(binary_integer_c *symbol); |
116 |
void *visit(octal_integer_c *symbol); |
|
117 |
void *visit(hex_integer_c *symbol); |
|
118 |
||
119 |
void *visit(integer_literal_c *symbol); |
|
120 |
void *visit(real_literal_c *symbol); |
|
121 |
void *visit(bit_string_literal_c *symbol); |
|
122 |
void *visit(boolean_literal_c *symbol); |
|
123 |
||
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
194
diff
changeset
|
124 |
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
|
125 |
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
|
126 |
|
181 | 127 |
/*******************************/ |
128 |
/* B.1.2.2 Character Strings */ |
|
129 |
/*******************************/ |
|
130 |
void *visit(double_byte_character_string_c *symbol); |
|
131 |
void *visit(single_byte_character_string_c *symbol); |
|
132 |
||
133 |
/***************************/ |
|
134 |
/* B 1.2.3 - Time Literals */ |
|
135 |
/***************************/ |
|
136 |
/************************/ |
|
137 |
/* B 1.2.3.1 - Duration */ |
|
138 |
/************************/ |
|
139 |
void *visit(neg_time_c *symbol); |
|
140 |
void *visit(duration_c *symbol); |
|
141 |
void *visit(fixed_point_c *symbol); |
|
142 |
void *visit(days_c *symbol); |
|
143 |
void *visit(hours_c *symbol); |
|
144 |
void *visit(minutes_c *symbol); |
|
145 |
void *visit(seconds_c *symbol); |
|
146 |
void *visit(milliseconds_c *symbol); |
|
147 |
||
148 |
/************************************/ |
|
149 |
/* B 1.2.3.2 - Time of day and Date */ |
|
150 |
/************************************/ |
|
151 |
void *visit(time_of_day_c *symbol); |
|
152 |
void *visit(daytime_c *symbol); |
|
153 |
void *visit(date_c *symbol); |
|
154 |
void *visit(date_literal_c *symbol); |
|
155 |
void *visit(date_and_time_c *symbol); |
|
156 |
}; // search_constant_type_c |
|
157 |
||
158 |
||
159 |