1 /* Build expressions with type checking for C compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* This file is part of the C front end.
22 It is responsible for implementing iterators,
23 both their declarations and the expansion of statements using them. */
33 static void expand_stmt_with_iterators_1 ();
34 static tree
collect_iterators ();
35 static void iterator_loop_prologue ();
36 static void iterator_loop_epilogue ();
37 static void add_ixpansion ();
38 static void delete_ixpansion();
39 static int top_level_ixpansion_p ();
40 static void istack_sublevel_to_current ();
42 /* A special obstack, and a pointer to the start of
43 all the data in it (so we can free everything easily). */
44 static struct obstack ixp_obstack
;
45 static char *ixp_firstobj
;
48 KEEPING TRACK OF EXPANSIONS
50 In order to clean out expansions corresponding to statements inside
51 "{(...)}" constructs we have to keep track of all expansions. The
52 cleanup is needed when an automatic, or implicit, expansion on
53 iterator, say X, happens to a statement which contains a {(...)}
54 form with a statement already expanded on X. In this case we have
55 to go back and cleanup the inner expansion. This can be further
56 complicated by the fact that {(...)} can be nested.
58 To make this cleanup possible, we keep lists of all expansions, and
59 to make it work for nested constructs, we keep a stack. The list at
60 the top of the stack (ITER_STACK.CURRENT_LEVEL) corresponds to the
61 currently parsed level. All expansions of the levels below the
62 current one are kept in one list whose head is pointed to by
63 ITER_STACK.SUBLEVEL_FIRST (SUBLEVEL_LAST is there for making merges
64 easy). The process works as follows:
66 -- On "({" a new node is added to the stack by PUSH_ITERATOR_STACK.
67 The sublevel list is not changed at this point.
69 -- On "})" the list for the current level is appended to the sublevel
72 -- On ";" sublevel lists are appended to the current level lists.
73 The reason is this: if they have not been superseded by the
74 expansion at the current level, they still might be
75 superseded later by the expansion on the higher level.
76 The levels do not have to distinguish levels below, so we
77 can merge the lists together. */
81 tree ixdecl
; /* Iterator decl */
82 rtx ixprologue_start
; /* First insn of epilogue. NULL means */
83 /* explicit (FOR) expansion*/
87 struct ixpansion
*next
; /* Next in the list */
90 struct iter_stack_node
92 struct ixpansion
*first
; /* Head of list of ixpansions */
93 struct ixpansion
*last
; /* Last node in list of ixpansions */
94 struct iter_stack_node
*next
; /* Next level iterator stack node */
97 struct iter_stack_node
*iter_stack
;
99 struct iter_stack_node sublevel_ixpansions
;
101 /* During collect_iterators, a list of SAVE_EXPRs already scanned. */
102 static tree save_exprs
;
104 /* Initialize our obstack once per compilation. */
109 gcc_obstack_init (&ixp_obstack
);
110 ixp_firstobj
= (char *) obstack_alloc (&ixp_obstack
, 0);
113 /* Handle the start of an explicit `for' loop for iterator IDECL. */
116 iterator_for_loop_start (idecl
)
119 ITERATOR_BOUND_P (idecl
) = 1;
120 add_ixpansion (idecl
, 0, 0, 0, 0);
121 iterator_loop_prologue (idecl
, 0, 0);
124 /* Handle the end of an explicit `for' loop for iterator IDECL. */
127 iterator_for_loop_end (idecl
)
130 iterator_loop_epilogue (idecl
, 0, 0);
131 ITERATOR_BOUND_P (idecl
) = 0;
135 ITERATOR RTL EXPANSIONS
137 Expanding simple statements with iterators is straightforward:
138 collect the list of all free iterators in the statement, and
139 generate a loop for each of them.
141 An iterator is "free" if it has not been "bound" by a FOR
142 operator. The DECL_RTL of the iterator is the loop counter. */
144 /* Expand a statement STMT, possibly containing iterator usage, into RTL. */
147 iterator_expand (stmt
)
151 save_exprs
= NULL_TREE
;
152 iter_list
= collect_iterators (stmt
, NULL_TREE
);
153 expand_stmt_with_iterators_1 (stmt
, iter_list
);
154 istack_sublevel_to_current ();
159 expand_stmt_with_iterators_1 (stmt
, iter_list
)
160 tree stmt
, iter_list
;
163 expand_expr_stmt (stmt
);
166 tree current_iterator
= TREE_VALUE (iter_list
);
167 tree iter_list_tail
= TREE_CHAIN (iter_list
);
168 rtx p_start
, p_end
, e_start
, e_end
;
170 iterator_loop_prologue (current_iterator
, &p_start
, &p_end
);
171 expand_stmt_with_iterators_1 (stmt
, iter_list_tail
);
172 iterator_loop_epilogue (current_iterator
, &e_start
, &e_end
);
174 /** Delete all inner expansions based on current_iterator **/
175 /** before adding the outer one. **/
177 delete_ixpansion (current_iterator
);
178 add_ixpansion (current_iterator
, p_start
, p_end
, e_start
, e_end
);
183 /* Return a list containing all the free (i.e. not bound by a
184 containing `for' statement) iterators mentioned in EXP, plus those
185 in LIST. Do not add duplicate entries to the list. */
188 collect_iterators (exp
, list
)
191 if (exp
== 0) return list
;
193 switch (TREE_CODE (exp
))
196 if (! ITERATOR_P (exp
) || ITERATOR_BOUND_P (exp
))
198 if (value_member (exp
, list
))
200 return tree_cons (NULL_TREE
, exp
, list
);
205 for (tail
= exp
; tail
; tail
= TREE_CHAIN (tail
))
206 list
= collect_iterators (TREE_VALUE (tail
), list
);
211 /* In each scan, scan a given save_expr only once. */
212 if (value_member (exp
, save_exprs
))
215 save_exprs
= tree_cons (NULL_TREE
, exp
, save_exprs
);
216 return collect_iterators (TREE_OPERAND (exp
, 0), list
);
218 /* we do not automatically iterate blocks -- one must */
219 /* use the FOR construct to do that */
225 switch (TREE_CODE_CLASS (TREE_CODE (exp
)))
228 return collect_iterators (TREE_OPERAND (exp
, 0), list
);
232 return collect_iterators (TREE_OPERAND (exp
, 0),
233 collect_iterators (TREE_OPERAND (exp
, 1),
239 int num_args
= tree_code_length
[(int) TREE_CODE (exp
)];
242 /* Some tree codes have RTL, not trees, as operands. */
243 switch (TREE_CODE (exp
))
248 case METHOD_CALL_EXPR
:
251 case WITH_CLEANUP_EXPR
:
258 for (i
= 0; i
< num_args
; i
++)
259 list
= collect_iterators (TREE_OPERAND (exp
, i
), list
);
268 /* Emit rtl for the start of a loop for iterator IDECL.
270 If necessary, create loop counter rtx and store it as DECL_RTL of IDECL.
272 The prologue normally starts and ends with notes, which are returned
273 by this function in *START_NOTE and *END_NODE.
274 If START_NOTE and END_NODE are 0, we don't make those notes. */
277 iterator_loop_prologue (idecl
, start_note
, end_note
)
279 rtx
*start_note
, *end_note
;
283 /* Force the save_expr in DECL_INITIAL to be calculated
284 if it hasn't been calculated yet. */
285 expand_expr (DECL_INITIAL (idecl
), const0_rtx
, VOIDmode
, 0);
287 if (DECL_RTL (idecl
) == 0)
291 *start_note
= emit_note (0, NOTE_INSN_DELETED
);
293 /* Initialize counter. */
294 expr
= build (MODIFY_EXPR
, TREE_TYPE (idecl
), idecl
, integer_zero_node
);
295 TREE_SIDE_EFFECTS (expr
) = 1;
296 expand_expr (expr
, const0_rtx
, VOIDmode
, 0);
298 expand_start_loop_continue_elsewhere (1);
300 ITERATOR_BOUND_P (idecl
) = 1;
303 *end_note
= emit_note (0, NOTE_INSN_DELETED
);
306 /* Similar to the previous function, but for the end of the loop.
308 DECL_RTL is zeroed unless we are inside "({...})". The reason for that is
311 When we create two (or more) loops based on the same IDECL, and
312 both inside the same "({...})" construct, we must be prepared to
313 delete both of the loops and create a single one on the level
314 above, i.e. enclosing the "({...})". The new loop has to use the
315 same counter rtl because the references to the iterator decl
316 (IDECL) have already been expanded as references to the counter
319 It is incorrect to use the same counter reg in different functions,
320 and it is desirable to use different counters in disjoint loops
321 when we know there's no need to combine them (because then they can
322 get allocated separately). */
325 iterator_loop_epilogue (idecl
, start_note
, end_note
)
327 rtx
*start_note
, *end_note
;
332 *start_note
= emit_note (0, NOTE_INSN_DELETED
);
333 expand_loop_continue_here ();
334 incr
= build_binary_op (PLUS_EXPR
, idecl
, integer_one_node
, 0);
335 incr
= build (MODIFY_EXPR
, TREE_TYPE (idecl
), idecl
, incr
);
336 TREE_SIDE_EFFECTS (incr
) = 1;
337 expand_expr (incr
, const0_rtx
, VOIDmode
, 0);
338 test
= build_binary_op (LT_EXPR
, idecl
, DECL_INITIAL (idecl
), 0);
339 expand_exit_loop_if_false (0, test
);
342 ITERATOR_BOUND_P (idecl
) = 0;
343 /* we can reset rtl since there is not chance that this expansion */
344 /* would be superceded by a higher level one */
345 if (top_level_ixpansion_p ())
346 DECL_RTL (idecl
) = 0;
348 *end_note
= emit_note (0, NOTE_INSN_DELETED
);
351 /* Return true if we are not currently inside a "({...})" construct. */
354 top_level_ixpansion_p ()
356 return iter_stack
== 0;
359 /* Given two chains of iter_stack_nodes,
360 append the nodes in X into Y. */
364 struct iter_stack_node
*x
, *y
;
376 y
->last
->next
= x
->first
;
383 #define ISN_ZERO(X) (X).first=(X).last=0
385 /* Move the ixpansions in sublevel_ixpansions into the current
386 node on the iter_stack, or discard them if the iter_stack is empty.
387 We do this at the end of a statement. */
390 istack_sublevel_to_current ()
392 /* At the top level we can throw away sublevel's expansions **/
393 /* because there is nobody above us to ask for a cleanup **/
395 /** Merging with empty sublevel list is a no-op **/
396 if (sublevel_ixpansions
.last
)
397 isn_append (&sublevel_ixpansions
, iter_stack
);
400 obstack_free (&ixp_obstack
, ixp_firstobj
);
402 ISN_ZERO (sublevel_ixpansions
);
405 /* Push a new node on the iter_stack, when we enter a ({...}). */
408 push_iterator_stack ()
410 struct iter_stack_node
*new_top
411 = (struct iter_stack_node
*)
412 obstack_alloc (&ixp_obstack
, sizeof (struct iter_stack_node
));
416 new_top
->next
= iter_stack
;
417 iter_stack
= new_top
;
420 /* Pop iter_stack, moving the ixpansions in the node being popped
421 into sublevel_ixpansions. */
424 pop_iterator_stack ()
429 isn_append (iter_stack
, &sublevel_ixpansions
);
430 /** Pop current level node: */
431 iter_stack
= iter_stack
->next
;
435 /* Record an iterator expansion ("ixpansion") for IDECL.
436 The remaining paramters are the notes in the loop entry
440 add_ixpansion (idecl
, pro_start
, pro_end
, epi_start
, epi_end
)
442 rtx pro_start
, pro_end
, epi_start
, epi_end
;
444 struct ixpansion
* newix
;
446 /* Do nothing if we are not inside "({...})",
447 as in that case this expansion can't need subsequent RTL modification. */
451 newix
= (struct ixpansion
*) obstack_alloc (&ixp_obstack
,
452 sizeof (struct ixpansion
));
453 newix
->ixdecl
= idecl
;
454 newix
->ixprologue_start
= pro_start
;
455 newix
->ixprologue_end
= pro_end
;
456 newix
->ixepilogue_start
= epi_start
;
457 newix
->ixepilogue_end
= epi_end
;
459 newix
->next
= iter_stack
->first
;
460 iter_stack
->first
= newix
;
461 if (iter_stack
->last
== 0)
462 iter_stack
->last
= newix
;
465 /* Delete the RTL for all ixpansions for iterator IDECL
466 in our sublevels. We do this when we make a larger
467 containing expansion for IDECL. */
470 delete_ixpansion (idecl
)
473 struct ixpansion
* previx
= 0, *ix
;
475 for (ix
= sublevel_ixpansions
.first
; ix
; ix
= ix
->next
)
476 if (ix
->ixdecl
== idecl
)
478 /** zero means that this is a mark for FOR -- **/
479 /** we do not delete anything, just issue an error. **/
481 if (ix
->ixprologue_start
== 0)
482 error_with_decl (idecl
,
483 "`for (%s)' appears within implicit iteration");
487 /* We delete all insns, including notes because leaving loop */
488 /* notes and barriers produced by iterator expansion would */
489 /* be misleading to other phases */
491 for (insn
= NEXT_INSN (ix
->ixprologue_start
);
492 insn
!= ix
->ixprologue_end
;
493 insn
= NEXT_INSN (insn
))
495 for (insn
= NEXT_INSN (ix
->ixepilogue_start
);
496 insn
!= ix
->ixepilogue_end
;
497 insn
= NEXT_INSN (insn
))
501 /* Delete this ixpansion from sublevel_ixpansions. */
503 previx
->next
= ix
->next
;
505 sublevel_ixpansions
.first
= ix
->next
;
506 if (sublevel_ixpansions
.last
== ix
)
507 sublevel_ixpansions
.last
= previx
;
513 #ifdef DEBUG_ITERATORS
515 /* The functions below are for use from source level debugger.
516 They print short forms of iterator lists and the iterator stack. */
518 /* Print the name of the iterator D. */
526 if (TREE_CODE (d
) == VAR_DECL
)
528 tree tname
= DECL_NAME (d
);
529 char *dname
= IDENTIFIER_POINTER (tname
);
530 fprintf (stderr
, dname
);
533 fprintf (stderr
, "<<Not a Decl!!!>>");
536 fprintf (stderr
, "<<NULL!!>>");
539 /* Print Iterator List -- names only */
546 for (current
= head
; current
; current
= next
)
548 tree node
= TREE_VALUE (current
);
550 next
= TREE_CHAIN (current
);
551 if (next
) fprintf (stderr
, ",");
553 fprintf (stderr
, "\n");
556 /* Print IXpansion List */
560 struct ixpansion
*head
;
562 struct ixpansion
*current
, *next
;
563 fprintf (stderr
, "> ");
565 fprintf (stderr
, "(empty)");
567 for (current
=head
; current
; current
= next
)
569 tree node
= current
->ixdecl
;
571 next
= current
->next
;
573 fprintf (stderr
, ",");
575 fprintf (stderr
, "\n");
579 /* Print Iterator Stack*/
584 struct iter_stack_node
*stack_node
;
586 fprintf (stderr
, "--SubLevel: ");
587 pixl (sublevel_ixpansions
.first
);
588 fprintf (stderr
, "--Stack:--\n");
589 for (stack_node
= iter_stack
;
591 stack_node
= stack_node
->next
)
592 pixl (stack_node
->first
);
595 #endif /* DEBUG_ITERATORS */