author | Mario de Sousa <msousa@fe.up.pt> |
Sun, 10 Jun 2012 15:38:24 +0100 | |
changeset 574 | d291a942899b |
parent 557 | 95a2fe60a15c |
child 615 | 509b79602f7c |
permissions | -rw-r--r-- |
508 | 1 |
/* |
2 |
* matiec - a compiler for the programming languages defined in IEC 61131-3 |
|
3 |
* |
|
4 |
* Copyright (C) 2009-2012 Mario de Sousa (msousa@fe.up.pt) |
|
5 |
* Copyright (C) 2012 Manuele Conti (conti.ma@alice.it) |
|
6 |
* |
|
7 |
* |
|
8 |
* This program is free software: you can redistribute it and/or modify |
|
9 |
* it under the terms of the GNU General Public License as published by |
|
10 |
* the Free Software Foundation, either version 3 of the License, or |
|
11 |
* (at your option) any later version. |
|
12 |
* |
|
13 |
* This program is distributed in the hope that it will be useful, |
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
16 |
* GNU General Public License for more details. |
|
17 |
* |
|
18 |
* You should have received a copy of the GNU General Public License |
|
19 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
20 |
* |
|
21 |
* |
|
22 |
* This code is made available on the understanding that it will not be |
|
23 |
* used in safety-critical situations without a full and competent review. |
|
24 |
*/ |
|
25 |
||
26 |
/* |
|
27 |
* An IEC 61131-3 compiler. |
|
28 |
* |
|
29 |
* Based on the |
|
30 |
* FINAL DRAFT - IEC 61131-3, 2nd Ed. (2001-12-10) |
|
31 |
* |
|
32 |
*/ |
|
33 |
||
34 |
||
553 | 35 |
|
36 |
/* Expressions on the left hand side of assignment statements have aditional restrictions on their datatype. |
|
37 |
* For example, they cannot be literals, CONSTANT type variables, function invocations, etc... |
|
38 |
* This class wil do those checks. |
|
39 |
* |
|
40 |
* Note that assignment may also be done when passing variables to OUTPUT or IN_OUT function parameters,so we check those too. |
|
41 |
*/ |
|
42 |
||
43 |
||
44 |
||
508 | 45 |
#include "lvalue_check.hh" |
46 |
||
47 |
#define FIRST_(symbol1, symbol2) (((symbol1)->first_order < (symbol2)->first_order) ? (symbol1) : (symbol2)) |
|
48 |
#define LAST_(symbol1, symbol2) (((symbol1)->last_order > (symbol2)->last_order) ? (symbol1) : (symbol2)) |
|
49 |
||
50 |
#define STAGE3_ERROR(error_level, symbol1, symbol2, ...) { \ |
|
51 |
if (current_display_error_level >= error_level) { \ |
|
52 |
fprintf(stderr, "%s:%d-%d..%d-%d: error: ", \ |
|
53 |
FIRST_(symbol1,symbol2)->first_file, FIRST_(symbol1,symbol2)->first_line, FIRST_(symbol1,symbol2)->first_column,\ |
|
54 |
LAST_(symbol1,symbol2) ->last_line, LAST_(symbol1,symbol2) ->last_column);\ |
|
55 |
fprintf(stderr, __VA_ARGS__); \ |
|
56 |
fprintf(stderr, "\n"); \ |
|
510
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
57 |
error_count++; \ |
508 | 58 |
} \ |
59 |
} |
|
60 |
||
61 |
||
62 |
#define STAGE3_WARNING(symbol1, symbol2, ...) { \ |
|
63 |
fprintf(stderr, "%s:%d-%d..%d-%d: warning: ", \ |
|
64 |
FIRST_(symbol1,symbol2)->first_file, FIRST_(symbol1,symbol2)->first_line, FIRST_(symbol1,symbol2)->first_column,\ |
|
65 |
LAST_(symbol1,symbol2) ->last_line, LAST_(symbol1,symbol2) ->last_column);\ |
|
66 |
fprintf(stderr, __VA_ARGS__); \ |
|
67 |
fprintf(stderr, "\n"); \ |
|
68 |
warning_found = true; \ |
|
69 |
} |
|
70 |
||
71 |
||
72 |
lvalue_check_c::lvalue_check_c(symbol_c *ignore) { |
|
510
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
73 |
error_count = 0; |
555
da6e089d0006
Fix bug: initialise un-initialised variable.
mjsousa <msousa@fe.up.pt>
parents:
554
diff
changeset
|
74 |
current_display_error_level = 0; |
528
6510ee2eaab9
Remove erroneous check for S1 and R1, and add missing declrataion.
Mario de Sousa <msousa@fe.up.pt>
parents:
527
diff
changeset
|
75 |
current_il_operand = NULL; |
508 | 76 |
} |
77 |
||
78 |
lvalue_check_c::~lvalue_check_c(void) { |
|
79 |
} |
|
80 |
||
510
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
81 |
int lvalue_check_c::get_error_count() { |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
82 |
return error_count; |
508 | 83 |
} |
84 |
||
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
85 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
86 |
#include <strings.h> |
508 | 87 |
/* No writing to iterator variables (used in FOR loops) inside the loop itself */ |
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
88 |
void lvalue_check_c::check_assignment_to_controlvar(symbol_c *lvalue) { |
508 | 89 |
for (unsigned int i = 0; i < control_variables.size(); i++) { |
512
f915ab676d7e
Fixing check for assingment to FOR control variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
510
diff
changeset
|
90 |
token_c *lvalue_name = get_var_name_c::get_name(lvalue); |
f915ab676d7e
Fixing check for assingment to FOR control variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
510
diff
changeset
|
91 |
if (compare_identifiers(lvalue_name, control_variables[i]) == 0) { |
f915ab676d7e
Fixing check for assingment to FOR control variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
510
diff
changeset
|
92 |
STAGE3_ERROR(0, lvalue, lvalue, "Assignment to FOR control variable is not allowed."); |
508 | 93 |
break; |
94 |
} |
|
95 |
} |
|
96 |
} |
|
97 |
||
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
98 |
|
510
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
99 |
/* fb_instance.var := ... is not valid if var is output variable */ |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
100 |
/* NOTE, if a fb_instance1.fb_instance2.fb_instance3.var is used, we must iteratively check that none of the |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
101 |
* FB records are declared as OUTPUT variables!! |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
102 |
* This is the reason why we have the while() loop in this function! |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
103 |
*/ |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
104 |
void lvalue_check_c::check_assignment_to_output(symbol_c *lvalue) { |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
105 |
decompose_var_instance_name_c decompose_lvalue(lvalue); |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
106 |
search_base_type_c search_base_type; |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
107 |
|
519 | 108 |
/* Get the first element/record of the potentially structured variable symbol */ |
109 |
/* Note that if symbol is pointing to an expression (or simply a literal value), it will return a NULL. |
|
110 |
* Once we have implemented the check_assignment_to_expression() method, and abort calling the other checks (including this one) |
|
111 |
* when an expression is found, we may replace this check with an assertion... |
|
112 |
* if (NULL == struct_elem) ERROR; |
|
113 |
*/ |
|
510
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
114 |
symbol_c *struct_elem = decompose_lvalue.next_part(); |
518
a0a32a0c61ef
Fix Segmentation fault in check_assignment_to_output lvalue method.
Conti Manuele <conti.ma@alice.it>
parents:
513
diff
changeset
|
115 |
if (NULL == struct_elem) return; |
519 | 116 |
|
510
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
117 |
symbol_c *type_decl = search_var_instance_decl->get_decl(struct_elem); |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
118 |
// symbol_c *type_id = spec_init_sperator_c::get_spec(type_decl); /* this is not required! search_base_type_c can handle spec_init symbols! */ |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
119 |
symbol_c *basetype_id = search_base_type.get_basetype_id(/*type_id*/ type_decl); |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
120 |
/* If we can not determine the data type of the element, then the code must have a data type semantic error. |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
121 |
* This will have been caught by the data type semantic verifier, so we do not bother with this anymore! |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
122 |
*/ |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
123 |
if (NULL == basetype_id) return; |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
124 |
|
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
125 |
/* Determine if the record/structure element is of a FB type. */ |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
126 |
/* NOTE: If the structure element is not a FB type, then we can quit this check. |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
127 |
* Remember that the standard does not allow a STRUCT data type to have elements that are FB instances! |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
128 |
* Similarly, arrays of FB instances is also not allowed. |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
129 |
* So, as soon as we find one record/structure element that is not a FB, no other record/structure element |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
130 |
* will be of FB type, which means we can quit this check! |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
131 |
*/ |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
132 |
function_block_declaration_c *fb_decl = function_block_type_symtable.find_value(basetype_id); |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
133 |
if (function_block_type_symtable.end_value() == fb_decl) return; |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
134 |
|
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
135 |
while (NULL != (struct_elem = decompose_lvalue.next_part())) { |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
136 |
search_var_instance_decl_c fb_search_var_instance_decl(fb_decl); |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
137 |
if (search_var_instance_decl_c::output_vt == fb_search_var_instance_decl.get_vartype(struct_elem)) { |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
138 |
STAGE3_ERROR(0, struct_elem, struct_elem, "Assignment to FB output variable is not allowed."); |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
139 |
return; /* no need to carry on checking once the first error is found! */ |
508 | 140 |
} |
510
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
141 |
|
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
142 |
/* prepare for any possible further record/structure elements */ |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
143 |
type_decl = fb_search_var_instance_decl.get_decl(struct_elem); |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
144 |
basetype_id = search_base_type.get_basetype_id(type_decl); |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
145 |
if (NULL == basetype_id) return; /* same comment as above... */ |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
146 |
fb_decl = function_block_type_symtable.find_value(basetype_id); |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
147 |
if (function_block_type_symtable.end_value() == fb_decl) return; /* same comment as above... */ |
508 | 148 |
} |
149 |
} |
|
150 |
||
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
151 |
|
508 | 152 |
/* No writing to CONSTANTs */ |
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
153 |
void lvalue_check_c::check_assignment_to_constant(symbol_c *lvalue) { |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
154 |
unsigned int option = search_var_instance_decl->get_option(lvalue); |
508 | 155 |
if (option == search_var_instance_decl_c::constant_opt) { |
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
156 |
STAGE3_ERROR(0, lvalue, lvalue, "Assignment to CONSTANT variables is not be allowed."); |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
157 |
} |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
158 |
} |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
159 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
160 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
161 |
/* No assigning values to expressions. */ |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
162 |
void lvalue_check_c::check_assignment_to_expression(symbol_c *lvalue) { |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
163 |
/* This may occur in function invocations, when passing values (possibly an expression) to one |
510
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
164 |
* of the function's OUTPUT or IN_OUT parameters. |
508 | 165 |
*/ |
524
52b18b3c7490
Implement check_assignment_to_expression in lvalue_check_c class.
Conti Manuele <conti.ma@alice.it>
parents:
519
diff
changeset
|
166 |
/* This may occur in function invocations, when passing values (possibly an expression) to one |
52b18b3c7490
Implement check_assignment_to_expression in lvalue_check_c class.
Conti Manuele <conti.ma@alice.it>
parents:
519
diff
changeset
|
167 |
* of the function's OUTPUT or IN_OUT parameters. |
52b18b3c7490
Implement check_assignment_to_expression in lvalue_check_c class.
Conti Manuele <conti.ma@alice.it>
parents:
519
diff
changeset
|
168 |
*/ |
525
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
169 |
if ( |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
170 |
/*********************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
171 |
/* B 1.2 - Constants */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
172 |
/*********************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
173 |
/******************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
174 |
/* B 1.2.1 - Numeric Literals */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
175 |
/******************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
176 |
(typeid( *lvalue ) == typeid( real_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
177 |
(typeid( *lvalue ) == typeid( integer_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
178 |
(typeid( *lvalue ) == typeid( binary_integer_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
179 |
(typeid( *lvalue ) == typeid( octal_integer_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
180 |
(typeid( *lvalue ) == typeid( hex_integer_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
181 |
(typeid( *lvalue ) == typeid( neg_real_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
182 |
(typeid( *lvalue ) == typeid( neg_integer_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
183 |
(typeid( *lvalue ) == typeid( integer_literal_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
184 |
(typeid( *lvalue ) == typeid( real_literal_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
185 |
(typeid( *lvalue ) == typeid( bit_string_literal_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
186 |
(typeid( *lvalue ) == typeid( boolean_literal_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
187 |
(typeid( *lvalue ) == typeid( boolean_true_c )) || /* should not really be needed */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
188 |
(typeid( *lvalue ) == typeid( boolean_false_c )) || /* should not really be needed */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
189 |
/*******************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
190 |
/* B.1.2.2 Character Strings */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
191 |
/*******************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
192 |
(typeid( *lvalue ) == typeid( double_byte_character_string_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
193 |
(typeid( *lvalue ) == typeid( single_byte_character_string_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
194 |
/***************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
195 |
/* B 1.2.3 - Time Literals */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
196 |
/***************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
197 |
/************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
198 |
/* B 1.2.3.1 - Duration */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
199 |
/************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
200 |
(typeid( *lvalue ) == typeid( duration_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
201 |
/************************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
202 |
/* B 1.2.3.2 - Time of day and Date */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
203 |
/************************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
204 |
(typeid( *lvalue ) == typeid( time_of_day_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
205 |
(typeid( *lvalue ) == typeid( daytime_c )) || /* should not really be needed */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
206 |
(typeid( *lvalue ) == typeid( date_c )) || /* should not really be needed */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
207 |
(typeid( *lvalue ) == typeid( date_literal_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
208 |
(typeid( *lvalue ) == typeid( date_and_time_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
209 |
/***************************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
210 |
/* B.3 - Language ST (Structured Text) */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
211 |
/***************************************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
212 |
/***********************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
213 |
/* B 3.1 - Expressions */ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
214 |
/***********************/ |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
215 |
(typeid( *lvalue ) == typeid( or_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
216 |
(typeid( *lvalue ) == typeid( xor_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
217 |
(typeid( *lvalue ) == typeid( and_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
218 |
(typeid( *lvalue ) == typeid( equ_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
219 |
(typeid( *lvalue ) == typeid( notequ_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
220 |
(typeid( *lvalue ) == typeid( lt_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
221 |
(typeid( *lvalue ) == typeid( gt_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
222 |
(typeid( *lvalue ) == typeid( le_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
223 |
(typeid( *lvalue ) == typeid( ge_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
224 |
(typeid( *lvalue ) == typeid( add_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
225 |
(typeid( *lvalue ) == typeid( sub_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
226 |
(typeid( *lvalue ) == typeid( mul_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
227 |
(typeid( *lvalue ) == typeid( div_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
228 |
(typeid( *lvalue ) == typeid( mod_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
229 |
(typeid( *lvalue ) == typeid( power_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
230 |
(typeid( *lvalue ) == typeid( neg_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
231 |
(typeid( *lvalue ) == typeid( not_expression_c )) || |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
232 |
(typeid( *lvalue ) == typeid( function_invocation_c ))) |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
233 |
STAGE3_ERROR(0, lvalue, lvalue, "Assigning an expression to an OUT or IN_OUT parameter is not allowed."); |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
234 |
} |
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
235 |
|
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
236 |
|
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
237 |
|
77bff42a025e
Literals are also part of expressions!
Mario de Sousa <msousa@fe.up.pt>
parents:
524
diff
changeset
|
238 |
|
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
239 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
240 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
241 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
242 |
void lvalue_check_c::verify_is_lvalue(symbol_c *lvalue) { |
529
629105224e57
Stop lvalue checks after finding an error in the expression.
Mario de Sousa <msousa@fe.up.pt>
parents:
528
diff
changeset
|
243 |
int init_error_count = error_count; /* stop the checks once an error has been found... */ |
629105224e57
Stop lvalue checks after finding an error in the expression.
Mario de Sousa <msousa@fe.up.pt>
parents:
528
diff
changeset
|
244 |
if (error_count == init_error_count) check_assignment_to_expression(lvalue); |
629105224e57
Stop lvalue checks after finding an error in the expression.
Mario de Sousa <msousa@fe.up.pt>
parents:
528
diff
changeset
|
245 |
if (error_count == init_error_count) check_assignment_to_controlvar(lvalue); |
629105224e57
Stop lvalue checks after finding an error in the expression.
Mario de Sousa <msousa@fe.up.pt>
parents:
528
diff
changeset
|
246 |
if (error_count == init_error_count) check_assignment_to_output(lvalue); |
629105224e57
Stop lvalue checks after finding an error in the expression.
Mario de Sousa <msousa@fe.up.pt>
parents:
528
diff
changeset
|
247 |
if (error_count == init_error_count) check_assignment_to_constant(lvalue); |
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
248 |
} |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
249 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
250 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
251 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
252 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
253 |
/* check whether all values passed to OUT or IN_OUT parameters are legal lvalues. */ |
513
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
254 |
/* |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
255 |
* All parameters being passed to the called function MUST be in the parameter list to which f_call points to! |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
256 |
* This means that, for non formal function calls in IL, de current (default value) must be artificially added to the |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
257 |
* beginning of the parameter list BEFORE calling handle_function_call(). |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
258 |
*/ |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
259 |
#include <string.h> /* required for strcmp() */ |
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
260 |
void lvalue_check_c::check_nonformal_call(symbol_c *f_call, symbol_c *f_decl) { |
513
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
261 |
symbol_c *call_param_value; |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
262 |
identifier_c *param_name; |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
263 |
function_param_iterator_c fp_iterator(f_decl); |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
264 |
function_call_param_iterator_c fcp_iterator(f_call); |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
265 |
|
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
266 |
/* Iterating through the non-formal parameters of the function call */ |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
267 |
while((call_param_value = fcp_iterator.next_nf()) != NULL) { |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
268 |
/* Iterate to the next parameter of the function being called. |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
269 |
* Get the name of that parameter, and ignore if EN or ENO. |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
270 |
*/ |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
271 |
do { |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
272 |
param_name = fp_iterator.next(); |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
273 |
/* If there is no other parameter declared, then we are passing too many parameters... */ |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
274 |
/* This error should have been caught in data type verification, so we simply abandon our check! */ |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
275 |
if(param_name == NULL) return; |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
276 |
} while ((strcmp(param_name->value, "EN") == 0) || (strcmp(param_name->value, "ENO") == 0)); |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
277 |
|
535
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
278 |
/* Determine the direction (IN, OUT, IN_OUT) of the parameter... */ |
513
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
279 |
function_param_iterator_c::param_direction_t param_direction = fp_iterator.param_direction(); |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
280 |
|
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
281 |
/* We only check if 'call_param_value' is a valid lvalue if the value is being passed |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
282 |
* to a valid paramater of the function being called, and that parameter is either OUT or IN_OUT. |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
283 |
*/ |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
284 |
if ((param_name != NULL) && ((function_param_iterator_c::direction_out == param_direction) || (function_param_iterator_c::direction_inout == param_direction))) { |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
285 |
verify_is_lvalue(call_param_value); |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
286 |
} |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
287 |
} |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
288 |
} |
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
289 |
|
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
290 |
|
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
291 |
|
99aa36a77703
Add lvalue check for non formal function invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
512
diff
changeset
|
292 |
|
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
293 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
294 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
295 |
/* check whether all values passed to OUT or IN_OUT parameters are legal lvalues. */ |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
296 |
void lvalue_check_c::check_formal_call(symbol_c *f_call, symbol_c *f_decl) { |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
297 |
/* if data type semantic verification was unable to determine which function is being called, |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
298 |
* then it does not make sense to go ahead and check for lvalues to unknown parameters. |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
299 |
* We simply bug out! |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
300 |
*/ |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
301 |
if (NULL == f_decl) return; |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
302 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
303 |
symbol_c *call_param_name; |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
304 |
function_param_iterator_c fp_iterator(f_decl); |
508 | 305 |
function_call_param_iterator_c fcp_iterator(f_call); |
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
306 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
307 |
/* Iterating through the formal parameters of the function call */ |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
308 |
while((call_param_name = fcp_iterator.next_f()) != NULL) { |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
309 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
310 |
/* Obtaining the value being passed in the function call */ |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
311 |
symbol_c *call_param_value = fcp_iterator.get_current_value(); |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
312 |
if (NULL == call_param_value) ERROR; |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
313 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
314 |
/* Find the corresponding parameter in function declaration, and it's direction (IN, OUT, IN_OUT) */ |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
315 |
identifier_c *param_name = fp_iterator.search(call_param_name); |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
316 |
function_param_iterator_c::param_direction_t param_direction = fp_iterator.param_direction(); |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
317 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
318 |
/* We only check if 'call_param_value' is a valid lvalue if the value is being passed |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
319 |
* to a valid paramater of the function being called, and that parameter is either OUT or IN_OUT. |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
320 |
*/ |
510
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
321 |
if ((param_name != NULL) && ((function_param_iterator_c::direction_out == param_direction) || (function_param_iterator_c::direction_inout == param_direction))) { |
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
322 |
verify_is_lvalue(call_param_value); |
508 | 323 |
} |
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
324 |
} |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
325 |
} |
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
326 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
327 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
328 |
|
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
329 |
|
508 | 330 |
|
331 |
||
332 |
||
333 |
/**************************************/ |
|
334 |
/* B 1.5 - Program organisation units */ |
|
335 |
/**************************************/ |
|
336 |
/***********************/ |
|
337 |
/* B 1.5.1 - Functions */ |
|
338 |
/***********************/ |
|
339 |
void *lvalue_check_c::visit(function_declaration_c *symbol) { |
|
340 |
search_varfb_instance_type = new search_varfb_instance_type_c(symbol); |
|
341 |
search_var_instance_decl = new search_var_instance_decl_c(symbol); |
|
342 |
symbol->function_body->accept(*this); |
|
343 |
delete search_varfb_instance_type; |
|
344 |
delete search_var_instance_decl; |
|
345 |
search_varfb_instance_type = NULL; |
|
346 |
search_var_instance_decl = NULL; |
|
347 |
return NULL; |
|
348 |
} |
|
349 |
||
350 |
/*****************************/ |
|
351 |
/* B 1.5.2 - Function blocks */ |
|
352 |
/*****************************/ |
|
353 |
void *lvalue_check_c::visit(function_block_declaration_c *symbol) { |
|
354 |
search_varfb_instance_type = new search_varfb_instance_type_c(symbol); |
|
355 |
search_var_instance_decl = new search_var_instance_decl_c(symbol); |
|
356 |
symbol->fblock_body->accept(*this); |
|
357 |
delete search_varfb_instance_type; |
|
358 |
delete search_var_instance_decl; |
|
359 |
search_varfb_instance_type = NULL; |
|
360 |
search_var_instance_decl = NULL; |
|
361 |
return NULL; |
|
362 |
} |
|
363 |
||
364 |
/**********************/ |
|
365 |
/* B 1.5.3 - Programs */ |
|
366 |
/**********************/ |
|
367 |
void *lvalue_check_c::visit(program_declaration_c *symbol) { |
|
368 |
search_varfb_instance_type = new search_varfb_instance_type_c(symbol); |
|
369 |
search_var_instance_decl = new search_var_instance_decl_c(symbol); |
|
370 |
symbol->function_block_body->accept(*this); |
|
371 |
delete search_varfb_instance_type; |
|
372 |
delete search_var_instance_decl; |
|
373 |
search_varfb_instance_type = NULL; |
|
374 |
search_var_instance_decl = NULL; |
|
375 |
return NULL; |
|
376 |
} |
|
377 |
||
527
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
378 |
/****************************************/ |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
379 |
/* B.2 - Language IL (Instruction List) */ |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
380 |
/****************************************/ |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
381 |
/***********************************/ |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
382 |
/* B 2.1 Instructions and Operands */ |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
383 |
/***********************************/ |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
384 |
void *lvalue_check_c::visit(il_instruction_c *symbol) { |
532
cb78940b2cb8
Remove access to NULL pointer.
Mario de Sousa <msousa@fe.up.pt>
parents:
529
diff
changeset
|
385 |
/* il_instruction will be NULL when parsing a label with no instruction |
cb78940b2cb8
Remove access to NULL pointer.
Mario de Sousa <msousa@fe.up.pt>
parents:
529
diff
changeset
|
386 |
* e.g.: label1: <---- il_instruction = NULL! |
cb78940b2cb8
Remove access to NULL pointer.
Mario de Sousa <msousa@fe.up.pt>
parents:
529
diff
changeset
|
387 |
* LD 33 |
cb78940b2cb8
Remove access to NULL pointer.
Mario de Sousa <msousa@fe.up.pt>
parents:
529
diff
changeset
|
388 |
* ... |
cb78940b2cb8
Remove access to NULL pointer.
Mario de Sousa <msousa@fe.up.pt>
parents:
529
diff
changeset
|
389 |
*/ |
cb78940b2cb8
Remove access to NULL pointer.
Mario de Sousa <msousa@fe.up.pt>
parents:
529
diff
changeset
|
390 |
if (NULL != symbol->il_instruction) |
cb78940b2cb8
Remove access to NULL pointer.
Mario de Sousa <msousa@fe.up.pt>
parents:
529
diff
changeset
|
391 |
symbol->il_instruction->accept(*this); |
527
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
392 |
return NULL; |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
393 |
} |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
394 |
|
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
395 |
void *lvalue_check_c::visit(il_simple_operation_c *symbol) { |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
396 |
current_il_operand = symbol->il_operand; |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
397 |
symbol->il_simple_operator->accept(*this); |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
398 |
current_il_operand = NULL; |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
399 |
return NULL; |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
400 |
} |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
401 |
|
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
402 |
|
535
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
403 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
404 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
405 |
/* | function_name [il_operand_list] */ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
406 |
/* NOTE: The parameters 'called_function_declaration' and 'extensible_param_count' are used to pass data between the stage 3 and stage 4. */ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
407 |
// SYM_REF2(il_function_call_c, function_name, il_operand_list, symbol_c *called_function_declaration; int extensible_param_count;) |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
408 |
void *lvalue_check_c::visit(il_function_call_c *symbol) { |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
409 |
/* The first parameter of a non formal function call in IL will be the 'current value' (i.e. the prev_il_instruction) |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
410 |
* In order to be able to handle this without coding special cases, we will simply prepend that symbol |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
411 |
* to the il_operand_list, and remove it after calling handle_function_call(). |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
412 |
* |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
413 |
* However, if no further paramters are given, then il_operand_list will be NULL, and we will |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
414 |
* need to create a new object to hold the pointer to prev_il_instruction. |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
415 |
* This change will also be undone at the end of this method. |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
416 |
*/ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
417 |
/* TODO: Copying the location data will result in confusing error message. |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
418 |
* We need to make this better, by inserting code to handle this special situation explicitly! |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
419 |
*/ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
420 |
/* NOTE: When calling a function, using the 'current value' as the first parameter of the function invocation |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
421 |
* implies that we can only call functions whose first parameter is IN. It would not do to pass |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
422 |
* the 'current value' to an OUT or IN_OUT parameter. |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
423 |
* In order to make sure that this will be caught by the check_nonformal_call() function, |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
424 |
* we add a symbol that cannot be an lvalue; in this case, a real_c (REAL literal). |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
425 |
*/ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
426 |
real_c param_value(NULL); |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
427 |
*((symbol_c *)(¶m_value)) = *((symbol_c *)symbol); /* copy the symbol location (file, line, offset) data */ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
428 |
if (NULL == symbol->il_operand_list) symbol->il_operand_list = new il_operand_list_c; |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
429 |
if (NULL == symbol->il_operand_list) ERROR; |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
430 |
((list_c *)symbol->il_operand_list)->insert_element(¶m_value, 0); |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
431 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
432 |
check_nonformal_call(symbol, symbol->called_function_declaration); |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
433 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
434 |
/* Undo the changes to the abstract syntax tree we made above... */ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
435 |
((list_c *)symbol->il_operand_list)->remove_element(0); |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
436 |
if (((list_c *)symbol->il_operand_list)->n == 0) { |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
437 |
/* if the list becomes empty, then that means that it did not exist before we made these changes, so we delete it! */ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
438 |
delete symbol->il_operand_list; |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
439 |
symbol->il_operand_list = NULL; |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
440 |
} |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
441 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
442 |
return NULL; |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
443 |
} |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
444 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
445 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
446 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
447 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
448 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
449 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
450 |
/* il_call_operator prev_declared_fb_name |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
451 |
* | il_call_operator prev_declared_fb_name '(' ')' |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
452 |
* | il_call_operator prev_declared_fb_name '(' eol_list ')' |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
453 |
* | il_call_operator prev_declared_fb_name '(' il_operand_list ')' |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
454 |
* | il_call_operator prev_declared_fb_name '(' eol_list il_param_list ')' |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
455 |
*/ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
456 |
/* NOTE: The parameter 'called_fb_declaration'is used to pass data between stage 3 and stage4 (although currently it is not used in stage 4 */ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
457 |
// SYM_REF4(il_fb_call_c, il_call_operator, fb_name, il_operand_list, il_param_list, symbol_c *called_fb_declaration) |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
458 |
void *lvalue_check_c::visit(il_fb_call_c *symbol) { |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
459 |
if (NULL != symbol->il_operand_list) check_nonformal_call(symbol, symbol->called_fb_declaration); |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
460 |
if (NULL != symbol-> il_param_list) check_formal_call(symbol, symbol->called_fb_declaration); |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
461 |
return NULL; |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
462 |
} |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
463 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
464 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
465 |
/* | function_name '(' eol_list [il_param_list] ')' */ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
466 |
/* NOTE: The parameter 'called_function_declaration' is used to pass data between the stage 3 and stage 4. */ |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
467 |
// SYM_REF2(il_formal_funct_call_c, function_name, il_param_list, symbol_c *called_function_declaration; int extensible_param_count;) |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
468 |
void *lvalue_check_c::visit(il_formal_funct_call_c *symbol) { |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
469 |
check_formal_call(symbol, symbol->called_function_declaration); |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
470 |
return NULL; |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
471 |
} |
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
472 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
473 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
474 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
475 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
476 |
|
70140bd7fe67
Add lvalue checking for IL function and FB invocations.
Mario de Sousa <msousa@fe.up.pt>
parents:
532
diff
changeset
|
477 |
|
527
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
478 |
/*******************/ |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
479 |
/* B 2.2 Operators */ |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
480 |
/*******************/ |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
481 |
void *lvalue_check_c::visit(ST_operator_c *symbol) { |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
482 |
verify_is_lvalue(current_il_operand); |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
483 |
return NULL; |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
484 |
} |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
485 |
|
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
486 |
void *lvalue_check_c::visit(STN_operator_c *symbol) { |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
487 |
verify_is_lvalue(current_il_operand); |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
488 |
return NULL; |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
489 |
} |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
490 |
|
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
491 |
void *lvalue_check_c::visit(S_operator_c *symbol) { |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
492 |
verify_is_lvalue(current_il_operand); |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
493 |
return NULL; |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
494 |
} |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
495 |
|
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
496 |
void *lvalue_check_c::visit(R_operator_c *symbol) { |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
497 |
verify_is_lvalue(current_il_operand); |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
498 |
return NULL; |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
499 |
} |
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
500 |
|
1d83209aabfe
Start implement lvalue check in IL instruction.
Manuele Conti <conti.ma@alice.it>
parents:
526
diff
changeset
|
501 |
|
508 | 502 |
/***************************************/ |
503 |
/* B.3 - Language ST (Structured Text) */ |
|
504 |
/***************************************/ |
|
505 |
/***********************/ |
|
506 |
/* B 3.1 - Expressions */ |
|
507 |
/***********************/ |
|
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
508 |
// SYM_REF3(function_invocation_c, function_name, formal_param_list, nonformal_param_list, symbol_c *called_function_declaration; int extensible_param_count; std::vector <symbol_c *> candidate_functions;) |
508 | 509 |
void *lvalue_check_c::visit(function_invocation_c *symbol) { |
510
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
510 |
if (NULL != symbol->formal_param_list ) check_formal_call (symbol, symbol->called_function_declaration); |
9317e04c1dde
Fixing check for assignment to output variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
509
diff
changeset
|
511 |
if (NULL != symbol->nonformal_param_list) check_nonformal_call(symbol, symbol->called_function_declaration); |
508 | 512 |
return NULL; |
513 |
} |
|
514 |
||
515 |
/*********************************/ |
|
516 |
/* B 3.2.1 Assignment Statements */ |
|
517 |
/*********************************/ |
|
518 |
void *lvalue_check_c::visit(assignment_statement_c *symbol) { |
|
509
35d391c38a30
Fixing some bugs in lvalue checking (other bugs remain - to be fixed later)
Mario de Sousa <msousa@fe.up.pt>
parents:
508
diff
changeset
|
519 |
verify_is_lvalue(symbol->l_exp); |
508 | 520 |
/* We call visit r_exp to check function_call */ |
521 |
symbol->r_exp->accept(*this); |
|
522 |
return NULL; |
|
523 |
} |
|
524 |
||
526
6e610449861a
Add lvalue check on fb invocation.
Manuele Conti <conti.ma@alice.it>
parents:
525
diff
changeset
|
525 |
/*****************************************/ |
6e610449861a
Add lvalue check on fb invocation.
Manuele Conti <conti.ma@alice.it>
parents:
525
diff
changeset
|
526 |
/* B 3.2.2 Subprogram Control Statements */ |
6e610449861a
Add lvalue check on fb invocation.
Manuele Conti <conti.ma@alice.it>
parents:
525
diff
changeset
|
527 |
/*****************************************/ |
6e610449861a
Add lvalue check on fb invocation.
Manuele Conti <conti.ma@alice.it>
parents:
525
diff
changeset
|
528 |
void *lvalue_check_c::visit(fb_invocation_c *symbol) { |
6e610449861a
Add lvalue check on fb invocation.
Manuele Conti <conti.ma@alice.it>
parents:
525
diff
changeset
|
529 |
if (NULL != symbol->formal_param_list ) check_formal_call (symbol, symbol->called_fb_declaration); |
6e610449861a
Add lvalue check on fb invocation.
Manuele Conti <conti.ma@alice.it>
parents:
525
diff
changeset
|
530 |
if (NULL != symbol->nonformal_param_list) check_nonformal_call(symbol, symbol->called_fb_declaration); |
6e610449861a
Add lvalue check on fb invocation.
Manuele Conti <conti.ma@alice.it>
parents:
525
diff
changeset
|
531 |
return NULL; |
6e610449861a
Add lvalue check on fb invocation.
Manuele Conti <conti.ma@alice.it>
parents:
525
diff
changeset
|
532 |
} |
6e610449861a
Add lvalue check on fb invocation.
Manuele Conti <conti.ma@alice.it>
parents:
525
diff
changeset
|
533 |
|
508 | 534 |
/********************************/ |
535 |
/* B 3.2.4 Iteration Statements */ |
|
536 |
/********************************/ |
|
537 |
void *lvalue_check_c::visit(for_statement_c *symbol) { |
|
557
95a2fe60a15c
Add verify_is_lvalue to control_variable in for_statement.
Manuele Conti <conti.ma@alice.it>
parents:
555
diff
changeset
|
538 |
verify_is_lvalue(symbol->control_variable); |
512
f915ab676d7e
Fixing check for assingment to FOR control variables.
Mario de Sousa <msousa@fe.up.pt>
parents:
510
diff
changeset
|
539 |
control_variables.push_back(get_var_name_c::get_name(symbol->control_variable)); |
508 | 540 |
symbol->statement_list->accept(*this); |
541 |
control_variables.pop_back(); |
|
542 |
return NULL; |
|
543 |
} |
|
544 |
||
545 |
||
546 |
||
547 |
||
548 |
||
549 |
||
550 |