author | Edouard Tisserant <edouard.tisserant@gmail.com> |
Thu, 20 Jul 2023 22:03:23 +0200 | |
changeset 1102 | 1610b6528b27 |
parent 958 | 7474d2cd1d6e |
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:
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 |
||
34 |
/* |
|
35 |
* Function call parameter iterator. |
|
36 |
* |
|
37 |
* This is part of the 4th stage that generates |
|
38 |
* a c++ source program equivalent to the IL and ST |
|
39 |
* code. |
|
40 |
*/ |
|
41 |
||
42 |
/* given a function_body_c, iterate through each |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
43 |
* function/FB call in that code. |
181 | 44 |
*/ |
45 |
||
46 |
||
47 |
#include "function_call_iterator.hh" |
|
596
4efb11e44065
Add ERROR_MSG macro && move extract_XXX() functions to constant_folding.cc
Mario de Sousa <msousa@fe.up.pt>
parents:
279
diff
changeset
|
48 |
#include "../main.hh" // required for ERROR() and ERROR_MSG() macros. |
181 | 49 |
|
50 |
||
51 |
//#define DEBUG |
|
52 |
#ifdef DEBUG |
|
53 |
#define TRACE(classname) printf("\n____%s____\n",classname); |
|
54 |
#else |
|
55 |
#define TRACE(classname) |
|
56 |
#endif |
|
57 |
||
58 |
||
59 |
||
60 |
||
61 |
||
62 |
/* initialise the iterator object. |
|
63 |
* We must be given a reference to the function declaration |
|
64 |
* that will be analysed... |
|
65 |
*/ |
|
66 |
function_call_iterator_c::function_call_iterator_c(symbol_c *symbol) { |
|
67 |
this->start_symbol = symbol; |
|
68 |
next_fcall = fcall_count = 0; |
|
69 |
current_finvocation = NULL; |
|
70 |
current_fcall_name = NULL; |
|
71 |
} |
|
72 |
||
73 |
/* Skip to the next function call. After object creation, |
|
74 |
* the object references _before_ the first, so |
|
75 |
* this function must be called once to get the object to |
|
76 |
* reference the first function call... |
|
77 |
* |
|
78 |
* Returns the function_invocation_c! |
|
79 |
*/ |
|
80 |
//function_invocation_c *next(void) {TRACE("function_call_iterator_c::next(): called "); |
|
81 |
symbol_c *function_call_iterator_c::next(void) {TRACE("function_call_iterator_c::next(): called "); |
|
82 |
fcall_count = 0; |
|
83 |
next_fcall++; |
|
84 |
current_finvocation = NULL; |
|
85 |
current_fcall_name = NULL; |
|
86 |
||
87 |
start_symbol->accept(*this); |
|
88 |
return current_finvocation; |
|
89 |
} |
|
90 |
||
91 |
/* Returns the name of the currently referenced function invocation */ |
|
958
7474d2cd1d6e
Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents:
596
diff
changeset
|
92 |
token_c *function_call_iterator_c::fname(void) { |
7474d2cd1d6e
Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents:
596
diff
changeset
|
93 |
token_c *fname_sym = dynamic_cast<token_c *>(current_fcall_name); |
7474d2cd1d6e
Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents:
596
diff
changeset
|
94 |
if (fname_sym == NULL) ERROR; |
7474d2cd1d6e
Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents:
596
diff
changeset
|
95 |
return fname_sym; |
181 | 96 |
} |
97 |
||
98 |
||
99 |
/***************************************/ |
|
100 |
/* B.3 - Language ST (Structured Text) */ |
|
101 |
/***************************************/ |
|
102 |
/***********************/ |
|
103 |
/* B 3.1 - Expressions */ |
|
104 |
/***********************/ |
|
105 |
void *function_call_iterator_c::visit(function_invocation_c *symbol) { |
|
106 |
fcall_count++; |
|
107 |
if (next_fcall == fcall_count) { |
|
108 |
current_finvocation = symbol; |
|
109 |
current_fcall_name = symbol->function_name; |
|
110 |
} |
|
111 |
return NULL; |
|
112 |
} |
|
113 |
||
114 |
||
115 |
||
116 |
/****************************************/ |
|
117 |
/* B.2 - Language IL (Instruction List) */ |
|
118 |
/****************************************/ |
|
119 |
/***********************************/ |
|
120 |
/* B 2.1 Instructions and Operands */ |
|
121 |
/***********************************/ |
|
122 |
||
123 |
/* | function_name [il_operand_list] */ |
|
124 |
// SYM_REF2(il_function_call_c, function_name, il_operand_list) |
|
125 |
void *function_call_iterator_c::visit(il_function_call_c *symbol) { |
|
126 |
fcall_count++; |
|
127 |
if (next_fcall == fcall_count) { |
|
128 |
current_finvocation = symbol; |
|
129 |
current_fcall_name = symbol->function_name; |
|
130 |
} |
|
131 |
return NULL; |
|
132 |
} |
|
133 |
||
134 |
||
135 |
||
136 |
/* | function_name '(' eol_list [il_param_list] ')' */ |
|
137 |
// SYM_REF2(il_formal_funct_call_c, function_name, il_param_list) |
|
138 |
void *function_call_iterator_c::visit(il_formal_funct_call_c *symbol) { |
|
139 |
fcall_count++; |
|
140 |
if (next_fcall == fcall_count) { |
|
141 |
current_finvocation = symbol; |
|
142 |
current_fcall_name = symbol->function_name; |
|
143 |
} |
|
144 |
return NULL; |
|
145 |
} |
|
146 |
||
147 |
||
148 |
||
149 |
||
150 |