2 * Sparse - a semantic source parser.
4 * Copyright (C) 2003 Transmeta Corp.
5 * 2003-2004 Linus Torvalds
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
34 #include "expression.h"
37 static void copy_statement(struct statement
*src
, struct statement
*dst
);
39 static struct expression
* dup_expression(struct expression
*expr
)
41 struct expression
*dup
= alloc_expression(expr
->pos
, expr
->type
);
46 static struct statement
* dup_statement(struct statement
*stmt
)
48 struct statement
*dup
= alloc_statement(stmt
->pos
, stmt
->type
);
53 static struct symbol
*copy_symbol(struct position pos
, struct symbol
*sym
)
57 if (sym
->ctype
.modifiers
& (MOD_STATIC
| MOD_EXTERN
| MOD_TOPLEVEL
| MOD_INLINE
))
60 warning(pos
, "unreplaced symbol '%s'", show_ident(sym
->ident
));
66 static struct symbol_list
*copy_symbol_list(struct symbol_list
*src
)
68 struct symbol_list
*dst
= NULL
;
71 FOR_EACH_PTR(src
, sym
) {
72 struct symbol
*newsym
= copy_symbol(sym
->pos
, sym
);
73 add_symbol(&dst
, newsym
);
74 } END_FOR_EACH_PTR(sym
);
78 static struct expression
* copy_expression(struct expression
*expr
)
85 * EXPR_SYMBOL is the interesting case, we may need to replace the
86 * symbol to the new copy.
89 struct symbol
*sym
= copy_symbol(expr
->pos
, expr
->symbol
);
90 if (sym
== expr
->symbol
)
92 expr
= dup_expression(expr
);
97 /* Atomics, never change, just return the expression directly */
104 /* Unops: check if the subexpression is unique */
107 struct expression
*unop
= copy_expression(expr
->unop
);
108 if (expr
->unop
== unop
)
110 expr
= dup_expression(expr
);
116 struct expression
*base
= copy_expression(expr
->base
);
117 expr
= dup_expression(expr
);
122 /* Binops: copy left/right expressions */
127 struct expression
*left
= copy_expression(expr
->left
);
128 struct expression
*right
= copy_expression(expr
->right
);
129 if (left
== expr
->left
&& right
== expr
->right
)
131 expr
= dup_expression(expr
);
137 case EXPR_ASSIGNMENT
: {
138 struct expression
*left
= copy_expression(expr
->left
);
139 struct expression
*right
= copy_expression(expr
->right
);
140 if (expr
->op
== '=' && left
== expr
->left
&& right
== expr
->right
)
142 expr
= dup_expression(expr
);
150 struct expression
*deref
= copy_expression(expr
->deref
);
151 expr
= dup_expression(expr
);
156 /* Cast/sizeof/__alignof__ */
158 if (expr
->cast_expression
->type
== EXPR_INITIALIZER
) {
159 struct expression
*cast
= expr
->cast_expression
;
160 struct symbol
*sym
= expr
->cast_type
;
161 expr
= dup_expression(expr
);
162 expr
->cast_expression
= copy_expression(cast
);
163 expr
->cast_type
= alloc_symbol(sym
->pos
, sym
->type
);
164 *expr
->cast_type
= *sym
;
167 case EXPR_FORCE_CAST
:
168 case EXPR_IMPLIED_CAST
:
172 struct expression
*cast
= copy_expression(expr
->cast_expression
);
173 if (cast
== expr
->cast_expression
)
175 expr
= dup_expression(expr
);
176 expr
->cast_expression
= cast
;
180 /* Conditional expression */
182 case EXPR_CONDITIONAL
: {
183 struct expression
*cond
= copy_expression(expr
->conditional
);
184 struct expression
*valt
= copy_expression(expr
->cond_true
);
185 struct expression
*valf
= copy_expression(expr
->cond_false
);
186 if (cond
== expr
->conditional
&& valt
== expr
->cond_true
&& valf
== expr
->cond_false
)
188 expr
= dup_expression(expr
);
189 expr
->conditional
= cond
;
190 expr
->cond_true
= valt
;
191 expr
->cond_false
= valf
;
195 /* Statement expression */
196 case EXPR_STATEMENT
: {
197 struct statement
*stmt
= alloc_statement(expr
->pos
, STMT_COMPOUND
);
198 copy_statement(expr
->statement
, stmt
);
199 expr
= dup_expression(expr
);
200 expr
->statement
= stmt
;
204 /* Call expression */
206 struct expression
*fn
= copy_expression(expr
->fn
);
207 struct expression_list
*list
= expr
->args
;
208 struct expression
*arg
;
210 expr
= dup_expression(expr
);
213 FOR_EACH_PTR(list
, arg
) {
214 add_expression(&expr
->args
, copy_expression(arg
));
215 } END_FOR_EACH_PTR(arg
);
219 /* Initializer list statement */
220 case EXPR_INITIALIZER
: {
221 struct expression_list
*list
= expr
->expr_list
;
222 struct expression
*entry
;
223 expr
= dup_expression(expr
);
224 expr
->expr_list
= NULL
;
225 FOR_EACH_PTR(list
, entry
) {
226 add_expression(&expr
->expr_list
, copy_expression(entry
));
227 } END_FOR_EACH_PTR(entry
);
231 /* Label in inline function - hmm. */
233 struct symbol
*label_symbol
= copy_symbol(expr
->pos
, expr
->label_symbol
);
234 expr
= dup_expression(expr
);
235 expr
->label_symbol
= label_symbol
;
240 struct expression
*sub_expr
= copy_expression(expr
->idx_expression
);
241 expr
= dup_expression(expr
);
242 expr
->idx_expression
= sub_expr
;
246 case EXPR_IDENTIFIER
: {
247 struct expression
*sub_expr
= copy_expression(expr
->ident_expression
);
248 expr
= dup_expression(expr
);
249 expr
->ident_expression
= sub_expr
;
253 /* Position in initializer.. */
255 struct expression
*val
= copy_expression(expr
->init_expr
);
256 expr
= dup_expression(expr
);
257 expr
->init_expr
= val
;
260 case EXPR_OFFSETOF
: {
261 struct expression
*val
= copy_expression(expr
->down
);
262 if (expr
->op
== '.') {
263 if (expr
->down
!= val
) {
264 expr
= dup_expression(expr
);
268 struct expression
*idx
= copy_expression(expr
->index
);
269 if (expr
->down
!= val
|| expr
->index
!= idx
) {
270 expr
= dup_expression(expr
);
278 expr
= dup_expression(expr
);
279 expr
->control
= copy_expression(expr
->control
);
280 if (!evaluate_expression(expr
))
282 expr
= copy_expression(expr
);
286 warning(expr
->pos
, "trying to copy expression type %d", expr
->type
);
291 static struct asm_operand_list
*copy_asm_operands(struct asm_operand_list
*in
)
293 struct asm_operand_list
*out
= NULL
;
294 struct asm_operand
*old
;
296 FOR_EACH_PTR(in
, old
) {
297 struct asm_operand
*new = __alloc_asm_operand(0);
298 new->name
= old
->name
;
299 new->constraint
= copy_expression(old
->constraint
);
300 new->expr
= copy_expression(old
->expr
);
301 add_ptr_list(&out
, new);
302 } END_FOR_EACH_PTR(old
);
306 static void set_replace(struct symbol
*old
, struct symbol
*new)
312 static void unset_replace(struct symbol
*sym
)
314 struct symbol
*r
= sym
->replace
;
316 warning(sym
->pos
, "symbol '%s' not replaced?", show_ident(sym
->ident
));
323 static void unset_replace_list(struct symbol_list
*list
)
326 FOR_EACH_PTR(list
, sym
) {
328 } END_FOR_EACH_PTR(sym
);
331 static struct statement
*copy_one_statement(struct statement
*stmt
)
338 case STMT_DECLARATION
: {
340 struct statement
*newstmt
= dup_statement(stmt
);
341 newstmt
->declaration
= NULL
;
342 FOR_EACH_PTR(stmt
->declaration
, sym
) {
343 struct symbol
*newsym
= copy_symbol(stmt
->pos
, sym
);
345 newsym
->initializer
= copy_expression(sym
->initializer
);
346 add_symbol(&newstmt
->declaration
, newsym
);
347 } END_FOR_EACH_PTR(sym
);
352 case STMT_EXPRESSION
: {
353 struct expression
*expr
= copy_expression(stmt
->expression
);
354 if (expr
== stmt
->expression
)
356 stmt
= dup_statement(stmt
);
357 stmt
->expression
= expr
;
361 struct expression
*expr
= copy_expression(stmt
->range_expression
);
362 if (expr
== stmt
->expression
)
364 stmt
= dup_statement(stmt
);
365 stmt
->range_expression
= expr
;
368 case STMT_COMPOUND
: {
369 struct statement
*new = alloc_statement(stmt
->pos
, STMT_COMPOUND
);
370 copy_statement(stmt
, new);
375 struct expression
*cond
= stmt
->if_conditional
;
376 struct statement
*valt
= stmt
->if_true
;
377 struct statement
*valf
= stmt
->if_false
;
379 cond
= copy_expression(cond
);
380 valt
= copy_one_statement(valt
);
381 valf
= copy_one_statement(valf
);
382 if (stmt
->if_conditional
== cond
&&
383 stmt
->if_true
== valt
&&
384 stmt
->if_false
== valf
)
386 stmt
= dup_statement(stmt
);
387 stmt
->if_conditional
= cond
;
388 stmt
->if_true
= valt
;
389 stmt
->if_false
= valf
;
393 struct expression
*retval
= copy_expression(stmt
->ret_value
);
394 struct symbol
*sym
= copy_symbol(stmt
->pos
, stmt
->ret_target
);
396 stmt
= dup_statement(stmt
);
397 stmt
->ret_value
= retval
;
398 stmt
->ret_target
= sym
;
402 stmt
= dup_statement(stmt
);
403 stmt
->case_label
= copy_symbol(stmt
->pos
, stmt
->case_label
);
404 stmt
->case_label
->stmt
= stmt
;
405 stmt
->case_expression
= copy_expression(stmt
->case_expression
);
406 stmt
->case_to
= copy_expression(stmt
->case_to
);
407 stmt
->case_statement
= copy_one_statement(stmt
->case_statement
);
411 struct symbol
*switch_break
= copy_symbol(stmt
->pos
, stmt
->switch_break
);
412 struct symbol
*switch_case
= copy_symbol(stmt
->pos
, stmt
->switch_case
);
413 struct expression
*expr
= copy_expression(stmt
->switch_expression
);
414 struct statement
*switch_stmt
= copy_one_statement(stmt
->switch_statement
);
416 stmt
= dup_statement(stmt
);
417 switch_case
->symbol_list
= copy_symbol_list(switch_case
->symbol_list
);
418 stmt
->switch_break
= switch_break
;
419 stmt
->switch_case
= switch_case
;
420 stmt
->switch_expression
= expr
;
421 stmt
->switch_statement
= switch_stmt
;
424 case STMT_ITERATOR
: {
425 stmt
= dup_statement(stmt
);
426 stmt
->iterator_break
= copy_symbol(stmt
->pos
, stmt
->iterator_break
);
427 stmt
->iterator_continue
= copy_symbol(stmt
->pos
, stmt
->iterator_continue
);
428 stmt
->iterator_syms
= copy_symbol_list(stmt
->iterator_syms
);
430 stmt
->iterator_pre_statement
= copy_one_statement(stmt
->iterator_pre_statement
);
431 stmt
->iterator_pre_condition
= copy_expression(stmt
->iterator_pre_condition
);
433 stmt
->iterator_statement
= copy_one_statement(stmt
->iterator_statement
);
435 stmt
->iterator_post_statement
= copy_one_statement(stmt
->iterator_post_statement
);
436 stmt
->iterator_post_condition
= copy_expression(stmt
->iterator_post_condition
);
440 stmt
= dup_statement(stmt
);
441 stmt
->label_identifier
= copy_symbol(stmt
->pos
, stmt
->label_identifier
);
442 stmt
->label_statement
= copy_one_statement(stmt
->label_statement
);
446 stmt
= dup_statement(stmt
);
447 stmt
->goto_label
= copy_symbol(stmt
->pos
, stmt
->goto_label
);
448 stmt
->goto_expression
= copy_expression(stmt
->goto_expression
);
449 stmt
->target_list
= copy_symbol_list(stmt
->target_list
);
453 stmt
= dup_statement(stmt
);
454 stmt
->asm_inputs
= copy_asm_operands(stmt
->asm_inputs
);
455 stmt
->asm_outputs
= copy_asm_operands(stmt
->asm_outputs
);
456 /* no need to dup "clobbers", since they are all constant strings */
460 warning(stmt
->pos
, "trying to copy statement type %d", stmt
->type
);
467 * Copy a statement tree from 'src' to 'dst', where both
468 * source and destination are of type STMT_COMPOUND.
470 * We do this for the tree-level inliner.
472 * This doesn't do the symbol replacement right: it's not
475 static void copy_statement(struct statement
*src
, struct statement
*dst
)
477 struct statement
*stmt
;
479 FOR_EACH_PTR(src
->stmts
, stmt
) {
480 add_statement(&dst
->stmts
, copy_one_statement(stmt
));
481 } END_FOR_EACH_PTR(stmt
);
482 dst
->args
= copy_one_statement(src
->args
);
483 dst
->ret
= copy_symbol(src
->pos
, src
->ret
);
484 dst
->inline_fn
= src
->inline_fn
;
487 static struct symbol
*create_copy_symbol(struct symbol
*orig
)
489 struct symbol
*sym
= orig
;
491 sym
= alloc_symbol(orig
->pos
, orig
->type
);
493 sym
->bb_target
= NULL
;
495 set_replace(orig
, sym
);
501 static struct symbol_list
*create_symbol_list(struct symbol_list
*src
)
503 struct symbol_list
*dst
= NULL
;
506 FOR_EACH_PTR(src
, sym
) {
507 struct symbol
*newsym
= create_copy_symbol(sym
);
508 add_symbol(&dst
, newsym
);
509 } END_FOR_EACH_PTR(sym
);
513 int inline_function(struct expression
*expr
, struct symbol
*sym
)
515 struct symbol_list
* fn_symbol_list
;
516 struct symbol
*fn
= sym
->ctype
.base_type
;
517 struct expression_list
*arg_list
= expr
->args
;
518 struct statement
*stmt
= alloc_statement(expr
->pos
, STMT_COMPOUND
);
519 struct symbol_list
*name_list
, *arg_decl
;
521 struct expression
*arg
;
523 if (!fn
->inline_stmt
) {
524 sparse_error(fn
->pos
, "marked inline, but without a definition");
530 name_list
= fn
->arguments
;
532 expr
->type
= EXPR_STATEMENT
;
533 expr
->statement
= stmt
;
534 expr
->ctype
= fn
->ctype
.base_type
;
536 fn_symbol_list
= create_symbol_list(sym
->inline_symbol_list
);
539 PREPARE_PTR_LIST(name_list
, name
);
540 FOR_EACH_PTR(arg_list
, arg
) {
541 struct symbol
*a
= alloc_symbol(arg
->pos
, SYM_NODE
);
543 a
->ctype
.base_type
= arg
->ctype
;
546 set_replace(name
, a
);
547 add_symbol(&fn_symbol_list
, a
);
549 a
->initializer
= arg
;
550 add_symbol(&arg_decl
, a
);
553 } END_FOR_EACH_PTR(arg
);
554 FINISH_PTR_LIST(name
);
556 copy_statement(fn
->inline_stmt
, stmt
);
559 struct statement
*decl
= alloc_statement(expr
->pos
, STMT_DECLARATION
);
560 decl
->declaration
= arg_decl
;
563 stmt
->inline_fn
= sym
;
565 unset_replace_list(fn_symbol_list
);
570 void uninline(struct symbol
*sym
)
572 struct symbol
*fn
= sym
->ctype
.base_type
;
573 struct symbol_list
*arg_list
= fn
->arguments
;
576 sym
->symbol_list
= create_symbol_list(sym
->inline_symbol_list
);
577 FOR_EACH_PTR(arg_list
, p
) {
579 } END_FOR_EACH_PTR(p
);
580 fn
->stmt
= alloc_statement(fn
->pos
, STMT_COMPOUND
);
581 copy_statement(fn
->inline_stmt
, fn
->stmt
);
582 unset_replace_list(sym
->symbol_list
);
583 unset_replace_list(arg_list
);