author | mjsousa |
Sun, 16 Nov 2014 14:46:52 +0000 | |
changeset 946 | c012a64dc2fa |
parent 945 | 477393b00f95 |
child 958 | 7474d2cd1d6e |
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:
181
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:
181
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:
181
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:
181
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:
181
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:
181
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:
181
diff
changeset
|
11 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
181
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:
181
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:
181
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:
181
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:
181
diff
changeset
|
16 |
* |
4d222f46f8cc
Updating license info (with Edouard's permission for relevant files).
Mario de Sousa <msousa@fe.up.pt>
parents:
181
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:
181
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:
181
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:
181
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 |
||
34 |
/* |
|
35 |
* Separation of type specification and default value constructs |
|
36 |
* (for e.g. simple_spec_init_c), into a type specificiation part, |
|
37 |
* and a default value part. |
|
38 |
*/ |
|
39 |
||
40 |
#include "../absyntax/absyntax.hh" |
|
41 |
#include "../absyntax/visitor.hh" |
|
42 |
||
43 |
class spec_init_sperator_c: public null_visitor_c { |
|
44 |
||
45 |
private: |
|
46 |
/* this is a singleton class... */ |
|
47 |
static spec_init_sperator_c *class_instance; |
|
48 |
static spec_init_sperator_c *get_class_instance(void); |
|
49 |
||
50 |
private: |
|
51 |
typedef enum {search_spec, search_init} search_what_t; |
|
52 |
static search_what_t search_what; |
|
53 |
||
54 |
public: |
|
55 |
/* the only two public functions... */ |
|
56 |
static symbol_c *get_spec(symbol_c *spec_init); |
|
57 |
||
58 |
static symbol_c *get_init(symbol_c *spec_init); |
|
59 |
||
60 |
||
61 |
private: |
|
62 |
||
63 |
||
64 |
/*******************************************/ |
|
65 |
/* B 1.1 - Letters, digits and identifiers */ |
|
66 |
/*******************************************/ |
|
67 |
// SYM_TOKEN(identifier_c) |
|
945
477393b00f95
Add support for relaxed datatype model for array datatypes.
mjsousa
parents:
912
diff
changeset
|
68 |
void *visit( identifier_c *symbol); |
477393b00f95
Add support for relaxed datatype model for array datatypes.
mjsousa
parents:
912
diff
changeset
|
69 |
void *visit(derived_datatype_identifier_c *symbol); |
181 | 70 |
|
71 |
||
72 |
/********************************/ |
|
73 |
/* B 1.3.3 - Derived data types */ |
|
74 |
/********************************/ |
|
75 |
||
76 |
/* simple_specification ASSIGN constant */ |
|
77 |
void *visit(simple_spec_init_c *symbol); |
|
78 |
||
79 |
/* subrange_specification ASSIGN signed_integer */ |
|
80 |
void *visit(subrange_spec_init_c *symbol); |
|
81 |
||
82 |
/* integer_type_name '(' subrange')' */ |
|
83 |
void *visit(subrange_specification_c *symbol); |
|
84 |
||
85 |
/* array_specification [ASSIGN array_initialization} */ |
|
86 |
/* array_initialization may be NULL ! */ |
|
87 |
void *visit(array_spec_init_c *symbol); |
|
88 |
||
912
252a69d6ecae
array_specification_c may be used as a datatype! Add it to spec_init_separator_c
mjsousa
parents:
909
diff
changeset
|
89 |
/* ARRAY '[' array_subrange_list ']' OF non_generic_type_name */ |
252a69d6ecae
array_specification_c may be used as a datatype! Add it to spec_init_separator_c
mjsousa
parents:
909
diff
changeset
|
90 |
void *visit(array_specification_c *symbol); |
252a69d6ecae
array_specification_c may be used as a datatype! Add it to spec_init_separator_c
mjsousa
parents:
909
diff
changeset
|
91 |
|
181 | 92 |
/* enumerated_specification ASSIGN enumerated_value */ |
93 |
void *visit(enumerated_spec_init_c *symbol); |
|
94 |
||
95 |
/* structure_type_name ASSIGN structure_initialization */ |
|
96 |
/* structure_initialization may be NULL ! */ |
|
97 |
//SYM_REF2(initialized_structure_c, structure_type_name, structure_initialization) |
|
98 |
void *visit(initialized_structure_c *symbol); |
|
99 |
||
810
d9c48ad646f1
Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
100 |
/* function_block_type_name ASSIGN structure_initialization */ |
d9c48ad646f1
Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
101 |
/* structure_initialization -> may be NULL ! */ |
d9c48ad646f1
Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
102 |
//SYM_REF2(fb_spec_init_c, function_block_type_name, structure_initialization) |
d9c48ad646f1
Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
103 |
void *visit(fb_spec_init_c *symbol); |
d9c48ad646f1
Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
104 |
|
909
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
810
diff
changeset
|
105 |
/* REF_TO (non_generic_type_name | function_block_type_name) */ |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
810
diff
changeset
|
106 |
// SYM_REF1(ref_spec_c, type_name) |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
810
diff
changeset
|
107 |
void *visit(ref_spec_c *symbol); |
810
d9c48ad646f1
Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents:
350
diff
changeset
|
108 |
|
909
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
810
diff
changeset
|
109 |
/* ref_spec [ ASSIGN ref_initialization ] */ |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
810
diff
changeset
|
110 |
/* NOTE: ref_initialization may be NULL!! */ |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
810
diff
changeset
|
111 |
// SYM_REF2(ref_spec_init_c, ref_spec, ref_initialization) |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
810
diff
changeset
|
112 |
void *visit(ref_spec_init_c *symbol); |
8b2a31dea131
Add support for REF_TO derived datatypes (along with datatype verification)
mjsousa
parents:
810
diff
changeset
|
113 |
|
181 | 114 |
/******************************************/ |
115 |
/* B 1.4.3 - Declaration & Initialisation */ |
|
116 |
/******************************************/ |
|
117 |
||
350
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
118 |
/* STRING '[' integer ']' |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
119 |
* STRING ASSIGN single_byte_character_string |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
120 |
* STRING '[' integer ']' ASSIGN single_byte_character_string |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
121 |
*/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
122 |
void *visit(single_byte_string_spec_c *symbol); |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
123 |
|
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
124 |
/* WSTRING '[' integer ']' |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
125 |
* WSTRING ASSIGN double_byte_character_string |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
126 |
* WSTRING '[' integer ']' ASSIGN double_byte_character_string |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
127 |
*/ |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
128 |
void *visit(double_byte_string_spec_c *symbol); |
2c3c4dc34979
Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
129 |
|
181 | 130 |
}; /* class spec_init_sperator_c */ |