]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/gimple-iterator.c
dwarf2out.c (is_nested_in_subprogram): New function.
[thirdparty/gcc.git] / gcc / gimple-iterator.c
CommitLineData
726a989a 1/* Iterator routines for GIMPLE statements.
c75c517d 2 Copyright (C) 2007, 2008, 2010 Free Software Foundation, Inc.
726a989a
RB
3 Contributed by Aldy Hernandez <aldy@quesejoda.com>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#include "config.h"
22#include "system.h"
23#include "coretypes.h"
24#include "tm.h"
25#include "tree.h"
26#include "gimple.h"
27#include "tree-flow.h"
28#include "value-prof.h"
29
30
31/* Mark the statement STMT as modified, and update it. */
32
33static inline void
34update_modified_stmt (gimple stmt)
35{
36 if (!ssa_operands_active ())
37 return;
38 update_stmt_if_modified (stmt);
39}
40
41
42/* Mark the statements in SEQ as modified, and update them. */
43
44static void
45update_modified_stmts (gimple_seq seq)
46{
47 gimple_stmt_iterator gsi;
b8698a0f 48
726a989a 49 if (!ssa_operands_active ())
b8698a0f 50 return;
726a989a
RB
51 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
52 update_stmt_if_modified (gsi_stmt (gsi));
53}
54
55
56/* Set BB to be the basic block for all the statements in the list
57 starting at FIRST and LAST. */
58
59static void
60update_bb_for_stmts (gimple_seq_node first, basic_block bb)
61{
62 gimple_seq_node n;
b8698a0f 63
726a989a
RB
64 for (n = first; n; n = n->next)
65 gimple_set_bb (n->stmt, bb);
66}
67
68
69/* Insert the sequence delimited by nodes FIRST and LAST before
70 iterator I. M specifies how to update iterator I after insertion
71 (see enum gsi_iterator_update).
72
73 This routine assumes that there is a forward and backward path
74 between FIRST and LAST (i.e., they are linked in a doubly-linked
75 list). Additionally, if FIRST == LAST, this routine will properly
76 insert a single node. */
77
78static void
79gsi_insert_seq_nodes_before (gimple_stmt_iterator *i,
80 gimple_seq_node first,
81 gimple_seq_node last,
82 enum gsi_iterator_update mode)
83{
84 basic_block bb;
85 gimple_seq_node cur = i->ptr;
86
87 if ((bb = gsi_bb (*i)) != NULL)
88 update_bb_for_stmts (first, bb);
89
90 /* Link SEQ before CUR in the sequence. */
91 if (cur)
92 {
93 first->prev = cur->prev;
94 if (first->prev)
95 first->prev->next = first;
96 else
97 gimple_seq_set_first (i->seq, first);
98 last->next = cur;
99 cur->prev = last;
100 }
101 else
102 {
103 gimple_seq_node itlast = gimple_seq_last (i->seq);
104
105 /* If CUR is NULL, we link at the end of the sequence (this case happens
106 when gsi_after_labels is called for a basic block that contains only
107 labels, so it returns an iterator after the end of the block, and
108 we need to insert before it; it might be cleaner to add a flag to the
109 iterator saying whether we are at the start or end of the list). */
110 first->prev = itlast;
111 if (itlast)
112 itlast->next = first;
113 else
114 gimple_seq_set_first (i->seq, first);
115 gimple_seq_set_last (i->seq, last);
116 }
117
118 /* Update the iterator, if requested. */
119 switch (mode)
120 {
121 case GSI_NEW_STMT:
122 case GSI_CONTINUE_LINKING:
123 i->ptr = first;
124 break;
125 case GSI_SAME_STMT:
126 break;
127 default:
128 gcc_unreachable ();
129 }
130}
131
132
133/* Inserts the sequence of statements SEQ before the statement pointed
134 by iterator I. MODE indicates what to do with the iterator after
135 insertion (see enum gsi_iterator_update).
136
137 This function does not scan for new operands. It is provided for
138 the use of the gimplifier, which manipulates statements for which
139 def/use information has not yet been constructed. Most callers
140 should use gsi_insert_seq_before. */
141
142void
143gsi_insert_seq_before_without_update (gimple_stmt_iterator *i, gimple_seq seq,
144 enum gsi_iterator_update mode)
145{
146 gimple_seq_node first, last;
147
148 if (seq == NULL)
149 return;
150
151 /* Don't allow inserting a sequence into itself. */
152 gcc_assert (seq != i->seq);
153
154 first = gimple_seq_first (seq);
155 last = gimple_seq_last (seq);
156
157 gimple_seq_set_first (seq, NULL);
158 gimple_seq_set_last (seq, NULL);
159 gimple_seq_free (seq);
160
161 /* Empty sequences need no work. */
162 if (!first || !last)
163 {
164 gcc_assert (first == last);
165 return;
166 }
167
168 gsi_insert_seq_nodes_before (i, first, last, mode);
169}
170
171
172/* Inserts the sequence of statements SEQ before the statement pointed
173 by iterator I. MODE indicates what to do with the iterator after
174 insertion (see enum gsi_iterator_update). Scan the statements in SEQ
175 for new operands. */
176
177void
178gsi_insert_seq_before (gimple_stmt_iterator *i, gimple_seq seq,
179 enum gsi_iterator_update mode)
180{
181 update_modified_stmts (seq);
182 gsi_insert_seq_before_without_update (i, seq, mode);
183}
184
185
186/* Insert the sequence delimited by nodes FIRST and LAST after
187 iterator I. M specifies how to update iterator I after insertion
188 (see enum gsi_iterator_update).
189
190 This routine assumes that there is a forward and backward path
191 between FIRST and LAST (i.e., they are linked in a doubly-linked
192 list). Additionally, if FIRST == LAST, this routine will properly
193 insert a single node. */
194
195static void
196gsi_insert_seq_nodes_after (gimple_stmt_iterator *i,
197 gimple_seq_node first,
198 gimple_seq_node last,
199 enum gsi_iterator_update m)
200{
201 basic_block bb;
202 gimple_seq_node cur = i->ptr;
203
204 /* If the iterator is inside a basic block, we need to update the
205 basic block information for all the nodes between FIRST and LAST. */
206 if ((bb = gsi_bb (*i)) != NULL)
207 update_bb_for_stmts (first, bb);
208
209 /* Link SEQ after CUR. */
210 if (cur)
211 {
212 last->next = cur->next;
213 if (last->next)
214 last->next->prev = last;
215 else
216 gimple_seq_set_last (i->seq, last);
217 first->prev = cur;
218 cur->next = first;
219 }
220 else
221 {
222 gcc_assert (!gimple_seq_last (i->seq));
223 gimple_seq_set_first (i->seq, first);
224 gimple_seq_set_last (i->seq, last);
225 }
226
227 /* Update the iterator, if requested. */
228 switch (m)
229 {
230 case GSI_NEW_STMT:
231 i->ptr = first;
232 break;
233 case GSI_CONTINUE_LINKING:
234 i->ptr = last;
235 break;
236 case GSI_SAME_STMT:
237 gcc_assert (cur);
238 break;
239 default:
240 gcc_unreachable ();
241 }
242}
243
244
245/* Links sequence SEQ after the statement pointed-to by iterator I.
246 MODE is as in gsi_insert_after.
247
248 This function does not scan for new operands. It is provided for
249 the use of the gimplifier, which manipulates statements for which
250 def/use information has not yet been constructed. Most callers
251 should use gsi_insert_seq_after. */
252
253void
254gsi_insert_seq_after_without_update (gimple_stmt_iterator *i, gimple_seq seq,
255 enum gsi_iterator_update mode)
256{
257 gimple_seq_node first, last;
258
259 if (seq == NULL)
260 return;
261
262 /* Don't allow inserting a sequence into itself. */
263 gcc_assert (seq != i->seq);
264
265 first = gimple_seq_first (seq);
266 last = gimple_seq_last (seq);
267
268 gimple_seq_set_first (seq, NULL);
269 gimple_seq_set_last (seq, NULL);
270 gimple_seq_free (seq);
271
272 /* Empty sequences need no work. */
273 if (!first || !last)
274 {
275 gcc_assert (first == last);
276 return;
277 }
278
279 gsi_insert_seq_nodes_after (i, first, last, mode);
280}
281
282
283/* Links sequence SEQ after the statement pointed-to by iterator I.
284 MODE is as in gsi_insert_after. Scan the statements in SEQ
285 for new operands. */
286
287void
288gsi_insert_seq_after (gimple_stmt_iterator *i, gimple_seq seq,
289 enum gsi_iterator_update mode)
290{
291 update_modified_stmts (seq);
292 gsi_insert_seq_after_without_update (i, seq, mode);
293}
294
295
296/* Move all statements in the sequence after I to a new sequence.
297 Return this new sequence. */
298
299gimple_seq
300gsi_split_seq_after (gimple_stmt_iterator i)
301{
302 gimple_seq_node cur, next;
303 gimple_seq old_seq, new_seq;
304
305 cur = i.ptr;
306
307 /* How can we possibly split after the end, or before the beginning? */
308 gcc_assert (cur && cur->next);
309 next = cur->next;
310
311 old_seq = i.seq;
312 new_seq = gimple_seq_alloc ();
313
314 gimple_seq_set_first (new_seq, next);
315 gimple_seq_set_last (new_seq, gimple_seq_last (old_seq));
316 gimple_seq_set_last (old_seq, cur);
317 cur->next = NULL;
318 next->prev = NULL;
319
320 return new_seq;
321}
322
323
324/* Move all statements in the sequence before I to a new sequence.
325 Return this new sequence. I is set to the head of the new list. */
326
327gimple_seq
328gsi_split_seq_before (gimple_stmt_iterator *i)
329{
330 gimple_seq_node cur, prev;
331 gimple_seq old_seq, new_seq;
332
333 cur = i->ptr;
334
335 /* How can we possibly split after the end? */
336 gcc_assert (cur);
337 prev = cur->prev;
338
339 old_seq = i->seq;
340 new_seq = gimple_seq_alloc ();
341 i->seq = new_seq;
342
343 /* Set the limits on NEW_SEQ. */
344 gimple_seq_set_first (new_seq, cur);
345 gimple_seq_set_last (new_seq, gimple_seq_last (old_seq));
346
347 /* Cut OLD_SEQ before I. */
348 gimple_seq_set_last (old_seq, prev);
349 cur->prev = NULL;
350 if (prev)
351 prev->next = NULL;
352 else
353 gimple_seq_set_first (old_seq, NULL);
354
355 return new_seq;
356}
357
358
359/* Replace the statement pointed-to by GSI to STMT. If UPDATE_EH_INFO
360 is true, the exception handling information of the original
0ca5af51
AO
361 statement is moved to the new statement. Assignments must only be
362 replaced with assignments to the same LHS. */
726a989a
RB
363
364void
365gsi_replace (gimple_stmt_iterator *gsi, gimple stmt, bool update_eh_info)
366{
726a989a
RB
367 gimple orig_stmt = gsi_stmt (*gsi);
368
369 if (stmt == orig_stmt)
370 return;
371
0ca5af51
AO
372 gcc_assert (!gimple_has_lhs (orig_stmt)
373 || gimple_get_lhs (orig_stmt) == gimple_get_lhs (stmt));
374
726a989a
RB
375 gimple_set_location (stmt, gimple_location (orig_stmt));
376 gimple_set_bb (stmt, gsi_bb (*gsi));
377
378 /* Preserve EH region information from the original statement, if
379 requested by the caller. */
380 if (update_eh_info)
1d65f45c 381 maybe_clean_or_replace_eh_stmt (orig_stmt, stmt);
726a989a
RB
382
383 gimple_duplicate_stmt_histograms (cfun, stmt, cfun, orig_stmt);
384 gimple_remove_stmt_histograms (cfun, orig_stmt);
385 delink_stmt_imm_use (orig_stmt);
386 *gsi_stmt_ptr (gsi) = stmt;
387 gimple_set_modified (stmt, true);
388 update_modified_stmt (stmt);
389}
390
391
392/* Insert statement STMT before the statement pointed-to by iterator I.
393 M specifies how to update iterator I after insertion (see enum
394 gsi_iterator_update).
395
396 This function does not scan for new operands. It is provided for
397 the use of the gimplifier, which manipulates statements for which
398 def/use information has not yet been constructed. Most callers
399 should use gsi_insert_before. */
400
401void
402gsi_insert_before_without_update (gimple_stmt_iterator *i, gimple stmt,
403 enum gsi_iterator_update m)
404{
405 gimple_seq_node n;
406
a9429e29 407 n = ggc_alloc_gimple_seq_node_d ();
726a989a
RB
408 n->prev = n->next = NULL;
409 n->stmt = stmt;
410 gsi_insert_seq_nodes_before (i, n, n, m);
411}
412
413/* Insert statement STMT before the statement pointed-to by iterator I.
414 Update STMT's basic block and scan it for new operands. M
415 specifies how to update iterator I after insertion (see enum
416 gsi_iterator_update). */
417
418void
419gsi_insert_before (gimple_stmt_iterator *i, gimple stmt,
420 enum gsi_iterator_update m)
421{
422 update_modified_stmt (stmt);
423 gsi_insert_before_without_update (i, stmt, m);
424}
425
426
427/* Insert statement STMT after the statement pointed-to by iterator I.
428 M specifies how to update iterator I after insertion (see enum
429 gsi_iterator_update).
430
431 This function does not scan for new operands. It is provided for
432 the use of the gimplifier, which manipulates statements for which
433 def/use information has not yet been constructed. Most callers
434 should use gsi_insert_after. */
435
436void
437gsi_insert_after_without_update (gimple_stmt_iterator *i, gimple stmt,
438 enum gsi_iterator_update m)
439{
440 gimple_seq_node n;
441
a9429e29 442 n = ggc_alloc_gimple_seq_node_d ();
726a989a
RB
443 n->prev = n->next = NULL;
444 n->stmt = stmt;
445 gsi_insert_seq_nodes_after (i, n, n, m);
446}
447
448
449/* Insert statement STMT after the statement pointed-to by iterator I.
450 Update STMT's basic block and scan it for new operands. M
451 specifies how to update iterator I after insertion (see enum
452 gsi_iterator_update). */
453
454void
455gsi_insert_after (gimple_stmt_iterator *i, gimple stmt,
456 enum gsi_iterator_update m)
457{
458 update_modified_stmt (stmt);
459 gsi_insert_after_without_update (i, stmt, m);
460}
461
462
463/* Remove the current stmt from the sequence. The iterator is updated
464 to point to the next statement.
465
466 REMOVE_PERMANENTLY is true when the statement is going to be removed
467 from the IL and not reinserted elsewhere. In that case we remove the
468 statement pointed to by iterator I from the EH tables, and free its
469 operand caches. Otherwise we do not modify this information. */
470
471void
472gsi_remove (gimple_stmt_iterator *i, bool remove_permanently)
473{
474 gimple_seq_node cur, next, prev;
475 gimple stmt = gsi_stmt (*i);
476
cd6549e8
AO
477 if (gimple_code (stmt) != GIMPLE_PHI)
478 insert_debug_temps_for_defs (i);
0ca5af51 479
726a989a
RB
480 /* Free all the data flow information for STMT. */
481 gimple_set_bb (stmt, NULL);
482 delink_stmt_imm_use (stmt);
483 gimple_set_modified (stmt, true);
484
485 if (remove_permanently)
486 {
1d65f45c 487 remove_stmt_from_eh_lp (stmt);
726a989a
RB
488 gimple_remove_stmt_histograms (cfun, stmt);
489 }
490
491 /* Update the iterator and re-wire the links in I->SEQ. */
492 cur = i->ptr;
493 next = cur->next;
494 prev = cur->prev;
495
496 if (prev)
497 prev->next = next;
498 else
499 gimple_seq_set_first (i->seq, next);
500
501 if (next)
502 next->prev = prev;
503 else
504 gimple_seq_set_last (i->seq, prev);
505
506 i->ptr = next;
507}
508
509
510/* Finds iterator for STMT. */
511
512gimple_stmt_iterator
513gsi_for_stmt (gimple stmt)
514{
515 gimple_stmt_iterator i;
516 basic_block bb = gimple_bb (stmt);
517
518 if (gimple_code (stmt) == GIMPLE_PHI)
519 i = gsi_start_phis (bb);
520 else
521 i = gsi_start_bb (bb);
522
523 for (; !gsi_end_p (i); gsi_next (&i))
524 if (gsi_stmt (i) == stmt)
525 return i;
526
527 gcc_unreachable ();
528}
529
530
531/* Move the statement at FROM so it comes right after the statement at TO. */
532
533void
534gsi_move_after (gimple_stmt_iterator *from, gimple_stmt_iterator *to)
535{
536 gimple stmt = gsi_stmt (*from);
537 gsi_remove (from, false);
538
539 /* We must have GSI_NEW_STMT here, as gsi_move_after is sometimes used to
540 move statements to an empty block. */
541 gsi_insert_after (to, stmt, GSI_NEW_STMT);
542}
543
544
545/* Move the statement at FROM so it comes right before the statement
546 at TO. */
547
548void
549gsi_move_before (gimple_stmt_iterator *from, gimple_stmt_iterator *to)
550{
551 gimple stmt = gsi_stmt (*from);
552 gsi_remove (from, false);
553
554 /* For consistency with gsi_move_after, it might be better to have
555 GSI_NEW_STMT here; however, that breaks several places that expect
556 that TO does not change. */
557 gsi_insert_before (to, stmt, GSI_SAME_STMT);
558}
559
560
561/* Move the statement at FROM to the end of basic block BB. */
562
563void
564gsi_move_to_bb_end (gimple_stmt_iterator *from, basic_block bb)
565{
566 gimple_stmt_iterator last = gsi_last_bb (bb);
567#ifdef ENABLE_CHECKING
568 gcc_assert (gsi_bb (last) == bb);
569#endif
570
571 /* Have to check gsi_end_p because it could be an empty block. */
572 if (!gsi_end_p (last) && is_ctrl_stmt (gsi_stmt (last)))
573 gsi_move_before (from, &last);
574 else
575 gsi_move_after (from, &last);
576}
577
578
579/* Add STMT to the pending list of edge E. No actual insertion is
580 made until a call to gsi_commit_edge_inserts () is made. */
581
582void
583gsi_insert_on_edge (edge e, gimple stmt)
584{
585 gimple_seq_add_stmt (&PENDING_STMT (e), stmt);
586}
587
588/* Add the sequence of statements SEQ to the pending list of edge E.
589 No actual insertion is made until a call to gsi_commit_edge_inserts
590 is made. */
591
592void
593gsi_insert_seq_on_edge (edge e, gimple_seq seq)
594{
595 gimple_seq_add_seq (&PENDING_STMT (e), seq);
596}
597
598
599/* Insert the statement pointed-to by GSI into edge E. Every attempt
600 is made to place the statement in an existing basic block, but
601 sometimes that isn't possible. When it isn't possible, the edge is
602 split and the statement is added to the new block.
603
604 In all cases, the returned *GSI points to the correct location. The
605 return value is true if insertion should be done after the location,
249eb506 606 or false if it should be done before the location. If a new basic block
726a989a
RB
607 has to be created, it is stored in *NEW_BB. */
608
609static bool
610gimple_find_edge_insert_loc (edge e, gimple_stmt_iterator *gsi,
611 basic_block *new_bb)
612{
613 basic_block dest, src;
614 gimple tmp;
615
616 dest = e->dest;
617
618 /* If the destination has one predecessor which has no PHI nodes,
619 insert there. Except for the exit block.
620
621 The requirement for no PHI nodes could be relaxed. Basically we
622 would have to examine the PHIs to prove that none of them used
623 the value set by the statement we want to insert on E. That
624 hardly seems worth the effort. */
671f9f30 625 restart:
726a989a 626 if (single_pred_p (dest)
671f9f30 627 && gimple_seq_empty_p (phi_nodes (dest))
726a989a
RB
628 && dest != EXIT_BLOCK_PTR)
629 {
630 *gsi = gsi_start_bb (dest);
631 if (gsi_end_p (*gsi))
632 return true;
633
634 /* Make sure we insert after any leading labels. */
635 tmp = gsi_stmt (*gsi);
636 while (gimple_code (tmp) == GIMPLE_LABEL)
637 {
638 gsi_next (gsi);
639 if (gsi_end_p (*gsi))
640 break;
641 tmp = gsi_stmt (*gsi);
642 }
643
644 if (gsi_end_p (*gsi))
645 {
646 *gsi = gsi_last_bb (dest);
647 return true;
648 }
649 else
650 return false;
651 }
652
653 /* If the source has one successor, the edge is not abnormal and
654 the last statement does not end a basic block, insert there.
655 Except for the entry block. */
656 src = e->src;
657 if ((e->flags & EDGE_ABNORMAL) == 0
658 && single_succ_p (src)
659 && src != ENTRY_BLOCK_PTR)
660 {
661 *gsi = gsi_last_bb (src);
662 if (gsi_end_p (*gsi))
663 return true;
664
665 tmp = gsi_stmt (*gsi);
666 if (!stmt_ends_bb_p (tmp))
667 return true;
668
07c358c6
RH
669 switch (gimple_code (tmp))
670 {
671 case GIMPLE_RETURN:
672 case GIMPLE_RESX:
673 return false;
674 default:
675 break;
726a989a
RB
676 }
677 }
678
679 /* Otherwise, create a new basic block, and split this edge. */
680 dest = split_edge (e);
681 if (new_bb)
682 *new_bb = dest;
683 e = single_pred_edge (dest);
684 goto restart;
685}
686
687
688/* Similar to gsi_insert_on_edge+gsi_commit_edge_inserts. If a new
689 block has to be created, it is returned. */
690
691basic_block
692gsi_insert_on_edge_immediate (edge e, gimple stmt)
693{
694 gimple_stmt_iterator gsi;
695 basic_block new_bb = NULL;
696
697 gcc_assert (!PENDING_STMT (e));
698
699 if (gimple_find_edge_insert_loc (e, &gsi, &new_bb))
700 gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
701 else
702 gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
703
704 return new_bb;
705}
706
707/* Insert STMTS on edge E. If a new block has to be created, it
708 is returned. */
709
710basic_block
711gsi_insert_seq_on_edge_immediate (edge e, gimple_seq stmts)
712{
713 gimple_stmt_iterator gsi;
714 basic_block new_bb = NULL;
715
716 gcc_assert (!PENDING_STMT (e));
717
718 if (gimple_find_edge_insert_loc (e, &gsi, &new_bb))
719 gsi_insert_seq_after (&gsi, stmts, GSI_NEW_STMT);
720 else
721 gsi_insert_seq_before (&gsi, stmts, GSI_NEW_STMT);
722
723 return new_bb;
724}
725
726/* This routine will commit all pending edge insertions, creating any new
727 basic blocks which are necessary. */
728
729void
730gsi_commit_edge_inserts (void)
731{
732 basic_block bb;
733 edge e;
734 edge_iterator ei;
735
736 gsi_commit_one_edge_insert (single_succ_edge (ENTRY_BLOCK_PTR), NULL);
737
738 FOR_EACH_BB (bb)
739 FOR_EACH_EDGE (e, ei, bb->succs)
740 gsi_commit_one_edge_insert (e, NULL);
741}
742
743
744/* Commit insertions pending at edge E. If a new block is created, set NEW_BB
745 to this block, otherwise set it to NULL. */
746
747void
748gsi_commit_one_edge_insert (edge e, basic_block *new_bb)
749{
750 if (new_bb)
751 *new_bb = NULL;
752
753 if (PENDING_STMT (e))
754 {
755 gimple_stmt_iterator gsi;
756 gimple_seq seq = PENDING_STMT (e);
757
758 PENDING_STMT (e) = NULL;
759
760 if (gimple_find_edge_insert_loc (e, &gsi, new_bb))
761 gsi_insert_seq_after (&gsi, seq, GSI_NEW_STMT);
762 else
763 gsi_insert_seq_before (&gsi, seq, GSI_NEW_STMT);
764 }
765}
766
767/* Returns iterator at the start of the list of phi nodes of BB. */
768
769gimple_stmt_iterator
770gsi_start_phis (basic_block bb)
771{
772 return gsi_start (phi_nodes (bb));
773}