2015-06-23 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / tree-cfg.c
blobadc56bab388a8f52c2008510f66d7f44da07d086
1 /* Control flow functions for trees.
2 Copyright (C) 2001-2015 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "alias.h"
26 #include "symtab.h"
27 #include "tree.h"
28 #include "fold-const.h"
29 #include "trans-mem.h"
30 #include "stor-layout.h"
31 #include "print-tree.h"
32 #include "tm_p.h"
33 #include "predict.h"
34 #include "hard-reg-set.h"
35 #include "function.h"
36 #include "dominance.h"
37 #include "cfg.h"
38 #include "cfganal.h"
39 #include "basic-block.h"
40 #include "flags.h"
41 #include "gimple-pretty-print.h"
42 #include "tree-ssa-alias.h"
43 #include "internal-fn.h"
44 #include "gimple-fold.h"
45 #include "tree-eh.h"
46 #include "gimple-expr.h"
47 #include "gimple.h"
48 #include "gimple-iterator.h"
49 #include "gimplify-me.h"
50 #include "gimple-walk.h"
51 #include "gimple-ssa.h"
52 #include "plugin-api.h"
53 #include "ipa-ref.h"
54 #include "cgraph.h"
55 #include "tree-cfg.h"
56 #include "tree-phinodes.h"
57 #include "ssa-iterators.h"
58 #include "stringpool.h"
59 #include "tree-ssanames.h"
60 #include "tree-ssa-loop-manip.h"
61 #include "tree-ssa-loop-niter.h"
62 #include "tree-into-ssa.h"
63 #include "rtl.h"
64 #include "insn-config.h"
65 #include "expmed.h"
66 #include "dojump.h"
67 #include "explow.h"
68 #include "calls.h"
69 #include "emit-rtl.h"
70 #include "varasm.h"
71 #include "stmt.h"
72 #include "expr.h"
73 #include "tree-dfa.h"
74 #include "tree-ssa.h"
75 #include "tree-dump.h"
76 #include "tree-pass.h"
77 #include "diagnostic-core.h"
78 #include "except.h"
79 #include "cfgloop.h"
80 #include "tree-ssa-propagate.h"
81 #include "value-prof.h"
82 #include "tree-inline.h"
83 #include "target.h"
84 #include "tree-ssa-live.h"
85 #include "omp-low.h"
86 #include "tree-cfgcleanup.h"
87 #include "wide-int-print.h"
89 /* This file contains functions for building the Control Flow Graph (CFG)
90 for a function tree. */
92 /* Local declarations. */
94 /* Initial capacity for the basic block array. */
95 static const int initial_cfg_capacity = 20;
97 /* This hash table allows us to efficiently lookup all CASE_LABEL_EXPRs
98 which use a particular edge. The CASE_LABEL_EXPRs are chained together
99 via their CASE_CHAIN field, which we clear after we're done with the
100 hash table to prevent problems with duplication of GIMPLE_SWITCHes.
102 Access to this list of CASE_LABEL_EXPRs allows us to efficiently
103 update the case vector in response to edge redirections.
105 Right now this table is set up and torn down at key points in the
106 compilation process. It would be nice if we could make the table
107 more persistent. The key is getting notification of changes to
108 the CFG (particularly edge removal, creation and redirection). */
110 static hash_map<edge, tree> *edge_to_cases;
112 /* If we record edge_to_cases, this bitmap will hold indexes
113 of basic blocks that end in a GIMPLE_SWITCH which we touched
114 due to edge manipulations. */
116 static bitmap touched_switch_bbs;
118 /* CFG statistics. */
119 struct cfg_stats_d
121 long num_merged_labels;
124 static struct cfg_stats_d cfg_stats;
126 /* Hash table to store last discriminator assigned for each locus. */
127 struct locus_discrim_map
129 location_t locus;
130 int discriminator;
133 /* Hashtable helpers. */
135 struct locus_discrim_hasher : typed_free_remove <locus_discrim_map>
137 typedef locus_discrim_map *value_type;
138 typedef locus_discrim_map *compare_type;
139 static inline hashval_t hash (const locus_discrim_map *);
140 static inline bool equal (const locus_discrim_map *,
141 const locus_discrim_map *);
144 /* Trivial hash function for a location_t. ITEM is a pointer to
145 a hash table entry that maps a location_t to a discriminator. */
147 inline hashval_t
148 locus_discrim_hasher::hash (const locus_discrim_map *item)
150 return LOCATION_LINE (item->locus);
153 /* Equality function for the locus-to-discriminator map. A and B
154 point to the two hash table entries to compare. */
156 inline bool
157 locus_discrim_hasher::equal (const locus_discrim_map *a,
158 const locus_discrim_map *b)
160 return LOCATION_LINE (a->locus) == LOCATION_LINE (b->locus);
163 static hash_table<locus_discrim_hasher> *discriminator_per_locus;
165 /* Basic blocks and flowgraphs. */
166 static void make_blocks (gimple_seq);
168 /* Edges. */
169 static void make_edges (void);
170 static void assign_discriminators (void);
171 static void make_cond_expr_edges (basic_block);
172 static void make_gimple_switch_edges (gswitch *, basic_block);
173 static bool make_goto_expr_edges (basic_block);
174 static void make_gimple_asm_edges (basic_block);
175 static edge gimple_redirect_edge_and_branch (edge, basic_block);
176 static edge gimple_try_redirect_by_replacing_jump (edge, basic_block);
178 /* Various helpers. */
179 static inline bool stmt_starts_bb_p (gimple, gimple);
180 static int gimple_verify_flow_info (void);
181 static void gimple_make_forwarder_block (edge);
182 static gimple first_non_label_stmt (basic_block);
183 static bool verify_gimple_transaction (gtransaction *);
184 static bool call_can_make_abnormal_goto (gimple);
186 /* Flowgraph optimization and cleanup. */
187 static void gimple_merge_blocks (basic_block, basic_block);
188 static bool gimple_can_merge_blocks_p (basic_block, basic_block);
189 static void remove_bb (basic_block);
190 static edge find_taken_edge_computed_goto (basic_block, tree);
191 static edge find_taken_edge_cond_expr (basic_block, tree);
192 static edge find_taken_edge_switch_expr (gswitch *, basic_block, tree);
193 static tree find_case_label_for_value (gswitch *, tree);
195 void
196 init_empty_tree_cfg_for_function (struct function *fn)
198 /* Initialize the basic block array. */
199 init_flow (fn);
200 profile_status_for_fn (fn) = PROFILE_ABSENT;
201 n_basic_blocks_for_fn (fn) = NUM_FIXED_BLOCKS;
202 last_basic_block_for_fn (fn) = NUM_FIXED_BLOCKS;
203 vec_alloc (basic_block_info_for_fn (fn), initial_cfg_capacity);
204 vec_safe_grow_cleared (basic_block_info_for_fn (fn),
205 initial_cfg_capacity);
207 /* Build a mapping of labels to their associated blocks. */
208 vec_alloc (label_to_block_map_for_fn (fn), initial_cfg_capacity);
209 vec_safe_grow_cleared (label_to_block_map_for_fn (fn),
210 initial_cfg_capacity);
212 SET_BASIC_BLOCK_FOR_FN (fn, ENTRY_BLOCK, ENTRY_BLOCK_PTR_FOR_FN (fn));
213 SET_BASIC_BLOCK_FOR_FN (fn, EXIT_BLOCK, EXIT_BLOCK_PTR_FOR_FN (fn));
215 ENTRY_BLOCK_PTR_FOR_FN (fn)->next_bb
216 = EXIT_BLOCK_PTR_FOR_FN (fn);
217 EXIT_BLOCK_PTR_FOR_FN (fn)->prev_bb
218 = ENTRY_BLOCK_PTR_FOR_FN (fn);
221 void
222 init_empty_tree_cfg (void)
224 init_empty_tree_cfg_for_function (cfun);
227 /*---------------------------------------------------------------------------
228 Create basic blocks
229 ---------------------------------------------------------------------------*/
231 /* Entry point to the CFG builder for trees. SEQ is the sequence of
232 statements to be added to the flowgraph. */
234 static void
235 build_gimple_cfg (gimple_seq seq)
237 /* Register specific gimple functions. */
238 gimple_register_cfg_hooks ();
240 memset ((void *) &cfg_stats, 0, sizeof (cfg_stats));
242 init_empty_tree_cfg ();
244 make_blocks (seq);
246 /* Make sure there is always at least one block, even if it's empty. */
247 if (n_basic_blocks_for_fn (cfun) == NUM_FIXED_BLOCKS)
248 create_empty_bb (ENTRY_BLOCK_PTR_FOR_FN (cfun));
250 /* Adjust the size of the array. */
251 if (basic_block_info_for_fn (cfun)->length ()
252 < (size_t) n_basic_blocks_for_fn (cfun))
253 vec_safe_grow_cleared (basic_block_info_for_fn (cfun),
254 n_basic_blocks_for_fn (cfun));
256 /* To speed up statement iterator walks, we first purge dead labels. */
257 cleanup_dead_labels ();
259 /* Group case nodes to reduce the number of edges.
260 We do this after cleaning up dead labels because otherwise we miss
261 a lot of obvious case merging opportunities. */
262 group_case_labels ();
264 /* Create the edges of the flowgraph. */
265 discriminator_per_locus = new hash_table<locus_discrim_hasher> (13);
266 make_edges ();
267 assign_discriminators ();
268 cleanup_dead_labels ();
269 delete discriminator_per_locus;
270 discriminator_per_locus = NULL;
273 /* Look for ANNOTATE calls with loop annotation kind in BB; if found, remove
274 them and propagate the information to LOOP. We assume that the annotations
275 come immediately before the condition in BB, if any. */
277 static void
278 replace_loop_annotate_in_block (basic_block bb, struct loop *loop)
280 gimple_stmt_iterator gsi = gsi_last_bb (bb);
281 gimple stmt = gsi_stmt (gsi);
283 if (!(stmt && gimple_code (stmt) == GIMPLE_COND))
284 return;
286 for (gsi_prev_nondebug (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
288 stmt = gsi_stmt (gsi);
289 if (gimple_code (stmt) != GIMPLE_CALL)
290 break;
291 if (!gimple_call_internal_p (stmt)
292 || gimple_call_internal_fn (stmt) != IFN_ANNOTATE)
293 break;
295 switch ((annot_expr_kind) tree_to_shwi (gimple_call_arg (stmt, 1)))
297 case annot_expr_ivdep_kind:
298 loop->safelen = INT_MAX;
299 break;
300 case annot_expr_no_vector_kind:
301 loop->dont_vectorize = true;
302 break;
303 case annot_expr_vector_kind:
304 loop->force_vectorize = true;
305 cfun->has_force_vectorize_loops = true;
306 break;
307 default:
308 gcc_unreachable ();
311 stmt = gimple_build_assign (gimple_call_lhs (stmt),
312 gimple_call_arg (stmt, 0));
313 gsi_replace (&gsi, stmt, true);
317 /* Look for ANNOTATE calls with loop annotation kind; if found, remove
318 them and propagate the information to the loop. We assume that the
319 annotations come immediately before the condition of the loop. */
321 static void
322 replace_loop_annotate (void)
324 struct loop *loop;
325 basic_block bb;
326 gimple_stmt_iterator gsi;
327 gimple stmt;
329 FOR_EACH_LOOP (loop, 0)
331 /* First look into the header. */
332 replace_loop_annotate_in_block (loop->header, loop);
334 /* Then look into the latch, if any. */
335 if (loop->latch)
336 replace_loop_annotate_in_block (loop->latch, loop);
339 /* Remove IFN_ANNOTATE. Safeguard for the case loop->latch == NULL. */
340 FOR_EACH_BB_FN (bb, cfun)
342 for (gsi = gsi_last_bb (bb); !gsi_end_p (gsi); gsi_prev (&gsi))
344 stmt = gsi_stmt (gsi);
345 if (gimple_code (stmt) != GIMPLE_CALL)
346 continue;
347 if (!gimple_call_internal_p (stmt)
348 || gimple_call_internal_fn (stmt) != IFN_ANNOTATE)
349 continue;
351 switch ((annot_expr_kind) tree_to_shwi (gimple_call_arg (stmt, 1)))
353 case annot_expr_ivdep_kind:
354 case annot_expr_no_vector_kind:
355 case annot_expr_vector_kind:
356 break;
357 default:
358 gcc_unreachable ();
361 warning_at (gimple_location (stmt), 0, "ignoring loop annotation");
362 stmt = gimple_build_assign (gimple_call_lhs (stmt),
363 gimple_call_arg (stmt, 0));
364 gsi_replace (&gsi, stmt, true);
370 static unsigned int
371 execute_build_cfg (void)
373 gimple_seq body = gimple_body (current_function_decl);
375 build_gimple_cfg (body);
376 gimple_set_body (current_function_decl, NULL);
377 if (dump_file && (dump_flags & TDF_DETAILS))
379 fprintf (dump_file, "Scope blocks:\n");
380 dump_scope_blocks (dump_file, dump_flags);
382 cleanup_tree_cfg ();
383 loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
384 replace_loop_annotate ();
385 return 0;
388 namespace {
390 const pass_data pass_data_build_cfg =
392 GIMPLE_PASS, /* type */
393 "cfg", /* name */
394 OPTGROUP_NONE, /* optinfo_flags */
395 TV_TREE_CFG, /* tv_id */
396 PROP_gimple_leh, /* properties_required */
397 ( PROP_cfg | PROP_loops ), /* properties_provided */
398 0, /* properties_destroyed */
399 0, /* todo_flags_start */
400 0, /* todo_flags_finish */
403 class pass_build_cfg : public gimple_opt_pass
405 public:
406 pass_build_cfg (gcc::context *ctxt)
407 : gimple_opt_pass (pass_data_build_cfg, ctxt)
410 /* opt_pass methods: */
411 virtual unsigned int execute (function *) { return execute_build_cfg (); }
413 }; // class pass_build_cfg
415 } // anon namespace
417 gimple_opt_pass *
418 make_pass_build_cfg (gcc::context *ctxt)
420 return new pass_build_cfg (ctxt);
424 /* Return true if T is a computed goto. */
426 bool
427 computed_goto_p (gimple t)
429 return (gimple_code (t) == GIMPLE_GOTO
430 && TREE_CODE (gimple_goto_dest (t)) != LABEL_DECL);
433 /* Returns true for edge E where e->src ends with a GIMPLE_COND and
434 the other edge points to a bb with just __builtin_unreachable ().
435 I.e. return true for C->M edge in:
436 <bb C>:
438 if (something)
439 goto <bb N>;
440 else
441 goto <bb M>;
442 <bb N>:
443 __builtin_unreachable ();
444 <bb M>: */
446 bool
447 assert_unreachable_fallthru_edge_p (edge e)
449 basic_block pred_bb = e->src;
450 gimple last = last_stmt (pred_bb);
451 if (last && gimple_code (last) == GIMPLE_COND)
453 basic_block other_bb = EDGE_SUCC (pred_bb, 0)->dest;
454 if (other_bb == e->dest)
455 other_bb = EDGE_SUCC (pred_bb, 1)->dest;
456 if (EDGE_COUNT (other_bb->succs) == 0)
458 gimple_stmt_iterator gsi = gsi_after_labels (other_bb);
459 gimple stmt;
461 if (gsi_end_p (gsi))
462 return false;
463 stmt = gsi_stmt (gsi);
464 while (is_gimple_debug (stmt) || gimple_clobber_p (stmt))
466 gsi_next (&gsi);
467 if (gsi_end_p (gsi))
468 return false;
469 stmt = gsi_stmt (gsi);
471 return gimple_call_builtin_p (stmt, BUILT_IN_UNREACHABLE);
474 return false;
478 /* Initialize GF_CALL_CTRL_ALTERING flag, which indicates the call
479 could alter control flow except via eh. We initialize the flag at
480 CFG build time and only ever clear it later. */
482 static void
483 gimple_call_initialize_ctrl_altering (gimple stmt)
485 int flags = gimple_call_flags (stmt);
487 /* A call alters control flow if it can make an abnormal goto. */
488 if (call_can_make_abnormal_goto (stmt)
489 /* A call also alters control flow if it does not return. */
490 || flags & ECF_NORETURN
491 /* TM ending statements have backedges out of the transaction.
492 Return true so we split the basic block containing them.
493 Note that the TM_BUILTIN test is merely an optimization. */
494 || ((flags & ECF_TM_BUILTIN)
495 && is_tm_ending_fndecl (gimple_call_fndecl (stmt)))
496 /* BUILT_IN_RETURN call is same as return statement. */
497 || gimple_call_builtin_p (stmt, BUILT_IN_RETURN))
498 gimple_call_set_ctrl_altering (stmt, true);
499 else
500 gimple_call_set_ctrl_altering (stmt, false);
504 /* Insert SEQ after BB and build a flowgraph. */
506 static basic_block
507 make_blocks_1 (gimple_seq seq, basic_block bb)
509 gimple_stmt_iterator i = gsi_start (seq);
510 gimple stmt = NULL;
511 bool start_new_block = true;
512 bool first_stmt_of_seq = true;
514 while (!gsi_end_p (i))
516 gimple prev_stmt;
518 prev_stmt = stmt;
519 stmt = gsi_stmt (i);
521 if (stmt && is_gimple_call (stmt))
522 gimple_call_initialize_ctrl_altering (stmt);
524 /* If the statement starts a new basic block or if we have determined
525 in a previous pass that we need to create a new block for STMT, do
526 so now. */
527 if (start_new_block || stmt_starts_bb_p (stmt, prev_stmt))
529 if (!first_stmt_of_seq)
530 gsi_split_seq_before (&i, &seq);
531 bb = create_basic_block (seq, bb);
532 start_new_block = false;
535 /* Now add STMT to BB and create the subgraphs for special statement
536 codes. */
537 gimple_set_bb (stmt, bb);
539 /* If STMT is a basic block terminator, set START_NEW_BLOCK for the
540 next iteration. */
541 if (stmt_ends_bb_p (stmt))
543 /* If the stmt can make abnormal goto use a new temporary
544 for the assignment to the LHS. This makes sure the old value
545 of the LHS is available on the abnormal edge. Otherwise
546 we will end up with overlapping life-ranges for abnormal
547 SSA names. */
548 if (gimple_has_lhs (stmt)
549 && stmt_can_make_abnormal_goto (stmt)
550 && is_gimple_reg_type (TREE_TYPE (gimple_get_lhs (stmt))))
552 tree lhs = gimple_get_lhs (stmt);
553 tree tmp = create_tmp_var (TREE_TYPE (lhs));
554 gimple s = gimple_build_assign (lhs, tmp);
555 gimple_set_location (s, gimple_location (stmt));
556 gimple_set_block (s, gimple_block (stmt));
557 gimple_set_lhs (stmt, tmp);
558 if (TREE_CODE (TREE_TYPE (tmp)) == COMPLEX_TYPE
559 || TREE_CODE (TREE_TYPE (tmp)) == VECTOR_TYPE)
560 DECL_GIMPLE_REG_P (tmp) = 1;
561 gsi_insert_after (&i, s, GSI_SAME_STMT);
563 start_new_block = true;
566 gsi_next (&i);
567 first_stmt_of_seq = false;
569 return bb;
572 /* Build a flowgraph for the sequence of stmts SEQ. */
574 static void
575 make_blocks (gimple_seq seq)
577 make_blocks_1 (seq, ENTRY_BLOCK_PTR_FOR_FN (cfun));
580 /* Create and return a new empty basic block after bb AFTER. */
582 static basic_block
583 create_bb (void *h, void *e, basic_block after)
585 basic_block bb;
587 gcc_assert (!e);
589 /* Create and initialize a new basic block. Since alloc_block uses
590 GC allocation that clears memory to allocate a basic block, we do
591 not have to clear the newly allocated basic block here. */
592 bb = alloc_block ();
594 bb->index = last_basic_block_for_fn (cfun);
595 bb->flags = BB_NEW;
596 set_bb_seq (bb, h ? (gimple_seq) h : NULL);
598 /* Add the new block to the linked list of blocks. */
599 link_block (bb, after);
601 /* Grow the basic block array if needed. */
602 if ((size_t) last_basic_block_for_fn (cfun)
603 == basic_block_info_for_fn (cfun)->length ())
605 size_t new_size =
606 (last_basic_block_for_fn (cfun)
607 + (last_basic_block_for_fn (cfun) + 3) / 4);
608 vec_safe_grow_cleared (basic_block_info_for_fn (cfun), new_size);
611 /* Add the newly created block to the array. */
612 SET_BASIC_BLOCK_FOR_FN (cfun, last_basic_block_for_fn (cfun), bb);
614 n_basic_blocks_for_fn (cfun)++;
615 last_basic_block_for_fn (cfun)++;
617 return bb;
621 /*---------------------------------------------------------------------------
622 Edge creation
623 ---------------------------------------------------------------------------*/
625 /* Fold COND_EXPR_COND of each COND_EXPR. */
627 void
628 fold_cond_expr_cond (void)
630 basic_block bb;
632 FOR_EACH_BB_FN (bb, cfun)
634 gimple stmt = last_stmt (bb);
636 if (stmt && gimple_code (stmt) == GIMPLE_COND)
638 gcond *cond_stmt = as_a <gcond *> (stmt);
639 location_t loc = gimple_location (stmt);
640 tree cond;
641 bool zerop, onep;
643 fold_defer_overflow_warnings ();
644 cond = fold_binary_loc (loc, gimple_cond_code (cond_stmt),
645 boolean_type_node,
646 gimple_cond_lhs (cond_stmt),
647 gimple_cond_rhs (cond_stmt));
648 if (cond)
650 zerop = integer_zerop (cond);
651 onep = integer_onep (cond);
653 else
654 zerop = onep = false;
656 fold_undefer_overflow_warnings (zerop || onep,
657 stmt,
658 WARN_STRICT_OVERFLOW_CONDITIONAL);
659 if (zerop)
660 gimple_cond_make_false (cond_stmt);
661 else if (onep)
662 gimple_cond_make_true (cond_stmt);
667 /* If basic block BB has an abnormal edge to a basic block
668 containing IFN_ABNORMAL_DISPATCHER internal call, return
669 that the dispatcher's basic block, otherwise return NULL. */
671 basic_block
672 get_abnormal_succ_dispatcher (basic_block bb)
674 edge e;
675 edge_iterator ei;
677 FOR_EACH_EDGE (e, ei, bb->succs)
678 if ((e->flags & (EDGE_ABNORMAL | EDGE_EH)) == EDGE_ABNORMAL)
680 gimple_stmt_iterator gsi
681 = gsi_start_nondebug_after_labels_bb (e->dest);
682 gimple g = gsi_stmt (gsi);
683 if (g
684 && is_gimple_call (g)
685 && gimple_call_internal_p (g)
686 && gimple_call_internal_fn (g) == IFN_ABNORMAL_DISPATCHER)
687 return e->dest;
689 return NULL;
692 /* Helper function for make_edges. Create a basic block with
693 with ABNORMAL_DISPATCHER internal call in it if needed, and
694 create abnormal edges from BBS to it and from it to FOR_BB
695 if COMPUTED_GOTO is false, otherwise factor the computed gotos. */
697 static void
698 handle_abnormal_edges (basic_block *dispatcher_bbs,
699 basic_block for_bb, int *bb_to_omp_idx,
700 auto_vec<basic_block> *bbs, bool computed_goto)
702 basic_block *dispatcher = dispatcher_bbs + (computed_goto ? 1 : 0);
703 unsigned int idx = 0;
704 basic_block bb;
705 bool inner = false;
707 if (bb_to_omp_idx)
709 dispatcher = dispatcher_bbs + 2 * bb_to_omp_idx[for_bb->index];
710 if (bb_to_omp_idx[for_bb->index] != 0)
711 inner = true;
714 /* If the dispatcher has been created already, then there are basic
715 blocks with abnormal edges to it, so just make a new edge to
716 for_bb. */
717 if (*dispatcher == NULL)
719 /* Check if there are any basic blocks that need to have
720 abnormal edges to this dispatcher. If there are none, return
721 early. */
722 if (bb_to_omp_idx == NULL)
724 if (bbs->is_empty ())
725 return;
727 else
729 FOR_EACH_VEC_ELT (*bbs, idx, bb)
730 if (bb_to_omp_idx[bb->index] == bb_to_omp_idx[for_bb->index])
731 break;
732 if (bb == NULL)
733 return;
736 /* Create the dispatcher bb. */
737 *dispatcher = create_basic_block (NULL, for_bb);
738 if (computed_goto)
740 /* Factor computed gotos into a common computed goto site. Also
741 record the location of that site so that we can un-factor the
742 gotos after we have converted back to normal form. */
743 gimple_stmt_iterator gsi = gsi_start_bb (*dispatcher);
745 /* Create the destination of the factored goto. Each original
746 computed goto will put its desired destination into this
747 variable and jump to the label we create immediately below. */
748 tree var = create_tmp_var (ptr_type_node, "gotovar");
750 /* Build a label for the new block which will contain the
751 factored computed goto. */
752 tree factored_label_decl
753 = create_artificial_label (UNKNOWN_LOCATION);
754 gimple factored_computed_goto_label
755 = gimple_build_label (factored_label_decl);
756 gsi_insert_after (&gsi, factored_computed_goto_label, GSI_NEW_STMT);
758 /* Build our new computed goto. */
759 gimple factored_computed_goto = gimple_build_goto (var);
760 gsi_insert_after (&gsi, factored_computed_goto, GSI_NEW_STMT);
762 FOR_EACH_VEC_ELT (*bbs, idx, bb)
764 if (bb_to_omp_idx
765 && bb_to_omp_idx[bb->index] != bb_to_omp_idx[for_bb->index])
766 continue;
768 gsi = gsi_last_bb (bb);
769 gimple last = gsi_stmt (gsi);
771 gcc_assert (computed_goto_p (last));
773 /* Copy the original computed goto's destination into VAR. */
774 gimple assignment
775 = gimple_build_assign (var, gimple_goto_dest (last));
776 gsi_insert_before (&gsi, assignment, GSI_SAME_STMT);
778 edge e = make_edge (bb, *dispatcher, EDGE_FALLTHRU);
779 e->goto_locus = gimple_location (last);
780 gsi_remove (&gsi, true);
783 else
785 tree arg = inner ? boolean_true_node : boolean_false_node;
786 gimple g = gimple_build_call_internal (IFN_ABNORMAL_DISPATCHER,
787 1, arg);
788 gimple_stmt_iterator gsi = gsi_after_labels (*dispatcher);
789 gsi_insert_after (&gsi, g, GSI_NEW_STMT);
791 /* Create predecessor edges of the dispatcher. */
792 FOR_EACH_VEC_ELT (*bbs, idx, bb)
794 if (bb_to_omp_idx
795 && bb_to_omp_idx[bb->index] != bb_to_omp_idx[for_bb->index])
796 continue;
797 make_edge (bb, *dispatcher, EDGE_ABNORMAL);
802 make_edge (*dispatcher, for_bb, EDGE_ABNORMAL);
805 /* Creates outgoing edges for BB. Returns 1 when it ends with an
806 computed goto, returns 2 when it ends with a statement that
807 might return to this function via an nonlocal goto, otherwise
808 return 0. Updates *PCUR_REGION with the OMP region this BB is in. */
810 static int
811 make_edges_bb (basic_block bb, struct omp_region **pcur_region, int *pomp_index)
813 gimple last = last_stmt (bb);
814 bool fallthru = false;
815 int ret = 0;
817 if (!last)
818 return ret;
820 switch (gimple_code (last))
822 case GIMPLE_GOTO:
823 if (make_goto_expr_edges (bb))
824 ret = 1;
825 fallthru = false;
826 break;
827 case GIMPLE_RETURN:
829 edge e = make_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun), 0);
830 e->goto_locus = gimple_location (last);
831 fallthru = false;
833 break;
834 case GIMPLE_COND:
835 make_cond_expr_edges (bb);
836 fallthru = false;
837 break;
838 case GIMPLE_SWITCH:
839 make_gimple_switch_edges (as_a <gswitch *> (last), bb);
840 fallthru = false;
841 break;
842 case GIMPLE_RESX:
843 make_eh_edges (last);
844 fallthru = false;
845 break;
846 case GIMPLE_EH_DISPATCH:
847 fallthru = make_eh_dispatch_edges (as_a <geh_dispatch *> (last));
848 break;
850 case GIMPLE_CALL:
851 /* If this function receives a nonlocal goto, then we need to
852 make edges from this call site to all the nonlocal goto
853 handlers. */
854 if (stmt_can_make_abnormal_goto (last))
855 ret = 2;
857 /* If this statement has reachable exception handlers, then
858 create abnormal edges to them. */
859 make_eh_edges (last);
861 /* BUILTIN_RETURN is really a return statement. */
862 if (gimple_call_builtin_p (last, BUILT_IN_RETURN))
864 make_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun), 0);
865 fallthru = false;
867 /* Some calls are known not to return. */
868 else
869 fallthru = !(gimple_call_flags (last) & ECF_NORETURN);
870 break;
872 case GIMPLE_ASSIGN:
873 /* A GIMPLE_ASSIGN may throw internally and thus be considered
874 control-altering. */
875 if (is_ctrl_altering_stmt (last))
876 make_eh_edges (last);
877 fallthru = true;
878 break;
880 case GIMPLE_ASM:
881 make_gimple_asm_edges (bb);
882 fallthru = true;
883 break;
885 CASE_GIMPLE_OMP:
886 fallthru = make_gimple_omp_edges (bb, pcur_region, pomp_index);
887 break;
889 case GIMPLE_TRANSACTION:
891 tree abort_label
892 = gimple_transaction_label (as_a <gtransaction *> (last));
893 if (abort_label)
894 make_edge (bb, label_to_block (abort_label), EDGE_TM_ABORT);
895 fallthru = true;
897 break;
899 default:
900 gcc_assert (!stmt_ends_bb_p (last));
901 fallthru = true;
902 break;
905 if (fallthru)
906 make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
908 return ret;
911 /* Join all the blocks in the flowgraph. */
913 static void
914 make_edges (void)
916 basic_block bb;
917 struct omp_region *cur_region = NULL;
918 auto_vec<basic_block> ab_edge_goto;
919 auto_vec<basic_block> ab_edge_call;
920 int *bb_to_omp_idx = NULL;
921 int cur_omp_region_idx = 0;
923 /* Create an edge from entry to the first block with executable
924 statements in it. */
925 make_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun),
926 BASIC_BLOCK_FOR_FN (cfun, NUM_FIXED_BLOCKS),
927 EDGE_FALLTHRU);
929 /* Traverse the basic block array placing edges. */
930 FOR_EACH_BB_FN (bb, cfun)
932 int mer;
934 if (bb_to_omp_idx)
935 bb_to_omp_idx[bb->index] = cur_omp_region_idx;
937 mer = make_edges_bb (bb, &cur_region, &cur_omp_region_idx);
938 if (mer == 1)
939 ab_edge_goto.safe_push (bb);
940 else if (mer == 2)
941 ab_edge_call.safe_push (bb);
943 if (cur_region && bb_to_omp_idx == NULL)
944 bb_to_omp_idx = XCNEWVEC (int, n_basic_blocks_for_fn (cfun));
947 /* Computed gotos are hell to deal with, especially if there are
948 lots of them with a large number of destinations. So we factor
949 them to a common computed goto location before we build the
950 edge list. After we convert back to normal form, we will un-factor
951 the computed gotos since factoring introduces an unwanted jump.
952 For non-local gotos and abnormal edges from calls to calls that return
953 twice or forced labels, factor the abnormal edges too, by having all
954 abnormal edges from the calls go to a common artificial basic block
955 with ABNORMAL_DISPATCHER internal call and abnormal edges from that
956 basic block to all forced labels and calls returning twice.
957 We do this per-OpenMP structured block, because those regions
958 are guaranteed to be single entry single exit by the standard,
959 so it is not allowed to enter or exit such regions abnormally this way,
960 thus all computed gotos, non-local gotos and setjmp/longjmp calls
961 must not transfer control across SESE region boundaries. */
962 if (!ab_edge_goto.is_empty () || !ab_edge_call.is_empty ())
964 gimple_stmt_iterator gsi;
965 basic_block dispatcher_bb_array[2] = { NULL, NULL };
966 basic_block *dispatcher_bbs = dispatcher_bb_array;
967 int count = n_basic_blocks_for_fn (cfun);
969 if (bb_to_omp_idx)
970 dispatcher_bbs = XCNEWVEC (basic_block, 2 * count);
972 FOR_EACH_BB_FN (bb, cfun)
974 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
976 glabel *label_stmt = dyn_cast <glabel *> (gsi_stmt (gsi));
977 tree target;
979 if (!label_stmt)
980 break;
982 target = gimple_label_label (label_stmt);
984 /* Make an edge to every label block that has been marked as a
985 potential target for a computed goto or a non-local goto. */
986 if (FORCED_LABEL (target))
987 handle_abnormal_edges (dispatcher_bbs, bb, bb_to_omp_idx,
988 &ab_edge_goto, true);
989 if (DECL_NONLOCAL (target))
991 handle_abnormal_edges (dispatcher_bbs, bb, bb_to_omp_idx,
992 &ab_edge_call, false);
993 break;
997 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
998 gsi_next_nondebug (&gsi);
999 if (!gsi_end_p (gsi))
1001 /* Make an edge to every setjmp-like call. */
1002 gimple call_stmt = gsi_stmt (gsi);
1003 if (is_gimple_call (call_stmt)
1004 && ((gimple_call_flags (call_stmt) & ECF_RETURNS_TWICE)
1005 || gimple_call_builtin_p (call_stmt,
1006 BUILT_IN_SETJMP_RECEIVER)))
1007 handle_abnormal_edges (dispatcher_bbs, bb, bb_to_omp_idx,
1008 &ab_edge_call, false);
1012 if (bb_to_omp_idx)
1013 XDELETE (dispatcher_bbs);
1016 XDELETE (bb_to_omp_idx);
1018 free_omp_regions ();
1020 /* Fold COND_EXPR_COND of each COND_EXPR. */
1021 fold_cond_expr_cond ();
1024 /* Add SEQ after GSI. Start new bb after GSI, and created further bbs as
1025 needed. Returns true if new bbs were created.
1026 Note: This is transitional code, and should not be used for new code. We
1027 should be able to get rid of this by rewriting all target va-arg
1028 gimplification hooks to use an interface gimple_build_cond_value as described
1029 in https://gcc.gnu.org/ml/gcc-patches/2015-02/msg01194.html. */
1031 bool
1032 gimple_find_sub_bbs (gimple_seq seq, gimple_stmt_iterator *gsi)
1034 gimple stmt = gsi_stmt (*gsi);
1035 basic_block bb = gimple_bb (stmt);
1036 basic_block lastbb, afterbb;
1037 int old_num_bbs = n_basic_blocks_for_fn (cfun);
1038 edge e;
1039 lastbb = make_blocks_1 (seq, bb);
1040 if (old_num_bbs == n_basic_blocks_for_fn (cfun))
1041 return false;
1042 e = split_block (bb, stmt);
1043 /* Move e->dest to come after the new basic blocks. */
1044 afterbb = e->dest;
1045 unlink_block (afterbb);
1046 link_block (afterbb, lastbb);
1047 redirect_edge_succ (e, bb->next_bb);
1048 bb = bb->next_bb;
1049 while (bb != afterbb)
1051 struct omp_region *cur_region = NULL;
1052 int cur_omp_region_idx = 0;
1053 int mer = make_edges_bb (bb, &cur_region, &cur_omp_region_idx);
1054 gcc_assert (!mer && !cur_region);
1055 add_bb_to_loop (bb, afterbb->loop_father);
1056 bb = bb->next_bb;
1058 return true;
1061 /* Find the next available discriminator value for LOCUS. The
1062 discriminator distinguishes among several basic blocks that
1063 share a common locus, allowing for more accurate sample-based
1064 profiling. */
1066 static int
1067 next_discriminator_for_locus (location_t locus)
1069 struct locus_discrim_map item;
1070 struct locus_discrim_map **slot;
1072 item.locus = locus;
1073 item.discriminator = 0;
1074 slot = discriminator_per_locus->find_slot_with_hash (
1075 &item, LOCATION_LINE (locus), INSERT);
1076 gcc_assert (slot);
1077 if (*slot == HTAB_EMPTY_ENTRY)
1079 *slot = XNEW (struct locus_discrim_map);
1080 gcc_assert (*slot);
1081 (*slot)->locus = locus;
1082 (*slot)->discriminator = 0;
1084 (*slot)->discriminator++;
1085 return (*slot)->discriminator;
1088 /* Return TRUE if LOCUS1 and LOCUS2 refer to the same source line. */
1090 static bool
1091 same_line_p (location_t locus1, location_t locus2)
1093 expanded_location from, to;
1095 if (locus1 == locus2)
1096 return true;
1098 from = expand_location (locus1);
1099 to = expand_location (locus2);
1101 if (from.line != to.line)
1102 return false;
1103 if (from.file == to.file)
1104 return true;
1105 return (from.file != NULL
1106 && to.file != NULL
1107 && filename_cmp (from.file, to.file) == 0);
1110 /* Assign discriminators to each basic block. */
1112 static void
1113 assign_discriminators (void)
1115 basic_block bb;
1117 FOR_EACH_BB_FN (bb, cfun)
1119 edge e;
1120 edge_iterator ei;
1121 gimple last = last_stmt (bb);
1122 location_t locus = last ? gimple_location (last) : UNKNOWN_LOCATION;
1124 if (locus == UNKNOWN_LOCATION)
1125 continue;
1127 FOR_EACH_EDGE (e, ei, bb->succs)
1129 gimple first = first_non_label_stmt (e->dest);
1130 gimple last = last_stmt (e->dest);
1131 if ((first && same_line_p (locus, gimple_location (first)))
1132 || (last && same_line_p (locus, gimple_location (last))))
1134 if (e->dest->discriminator != 0 && bb->discriminator == 0)
1135 bb->discriminator = next_discriminator_for_locus (locus);
1136 else
1137 e->dest->discriminator = next_discriminator_for_locus (locus);
1143 /* Create the edges for a GIMPLE_COND starting at block BB. */
1145 static void
1146 make_cond_expr_edges (basic_block bb)
1148 gcond *entry = as_a <gcond *> (last_stmt (bb));
1149 gimple then_stmt, else_stmt;
1150 basic_block then_bb, else_bb;
1151 tree then_label, else_label;
1152 edge e;
1154 gcc_assert (entry);
1155 gcc_assert (gimple_code (entry) == GIMPLE_COND);
1157 /* Entry basic blocks for each component. */
1158 then_label = gimple_cond_true_label (entry);
1159 else_label = gimple_cond_false_label (entry);
1160 then_bb = label_to_block (then_label);
1161 else_bb = label_to_block (else_label);
1162 then_stmt = first_stmt (then_bb);
1163 else_stmt = first_stmt (else_bb);
1165 e = make_edge (bb, then_bb, EDGE_TRUE_VALUE);
1166 e->goto_locus = gimple_location (then_stmt);
1167 e = make_edge (bb, else_bb, EDGE_FALSE_VALUE);
1168 if (e)
1169 e->goto_locus = gimple_location (else_stmt);
1171 /* We do not need the labels anymore. */
1172 gimple_cond_set_true_label (entry, NULL_TREE);
1173 gimple_cond_set_false_label (entry, NULL_TREE);
1177 /* Called for each element in the hash table (P) as we delete the
1178 edge to cases hash table.
1180 Clear all the TREE_CHAINs to prevent problems with copying of
1181 SWITCH_EXPRs and structure sharing rules, then free the hash table
1182 element. */
1184 bool
1185 edge_to_cases_cleanup (edge const &, tree const &value, void *)
1187 tree t, next;
1189 for (t = value; t; t = next)
1191 next = CASE_CHAIN (t);
1192 CASE_CHAIN (t) = NULL;
1195 return true;
1198 /* Start recording information mapping edges to case labels. */
1200 void
1201 start_recording_case_labels (void)
1203 gcc_assert (edge_to_cases == NULL);
1204 edge_to_cases = new hash_map<edge, tree>;
1205 touched_switch_bbs = BITMAP_ALLOC (NULL);
1208 /* Return nonzero if we are recording information for case labels. */
1210 static bool
1211 recording_case_labels_p (void)
1213 return (edge_to_cases != NULL);
1216 /* Stop recording information mapping edges to case labels and
1217 remove any information we have recorded. */
1218 void
1219 end_recording_case_labels (void)
1221 bitmap_iterator bi;
1222 unsigned i;
1223 edge_to_cases->traverse<void *, edge_to_cases_cleanup> (NULL);
1224 delete edge_to_cases;
1225 edge_to_cases = NULL;
1226 EXECUTE_IF_SET_IN_BITMAP (touched_switch_bbs, 0, i, bi)
1228 basic_block bb = BASIC_BLOCK_FOR_FN (cfun, i);
1229 if (bb)
1231 gimple stmt = last_stmt (bb);
1232 if (stmt && gimple_code (stmt) == GIMPLE_SWITCH)
1233 group_case_labels_stmt (as_a <gswitch *> (stmt));
1236 BITMAP_FREE (touched_switch_bbs);
1239 /* If we are inside a {start,end}_recording_cases block, then return
1240 a chain of CASE_LABEL_EXPRs from T which reference E.
1242 Otherwise return NULL. */
1244 static tree
1245 get_cases_for_edge (edge e, gswitch *t)
1247 tree *slot;
1248 size_t i, n;
1250 /* If we are not recording cases, then we do not have CASE_LABEL_EXPR
1251 chains available. Return NULL so the caller can detect this case. */
1252 if (!recording_case_labels_p ())
1253 return NULL;
1255 slot = edge_to_cases->get (e);
1256 if (slot)
1257 return *slot;
1259 /* If we did not find E in the hash table, then this must be the first
1260 time we have been queried for information about E & T. Add all the
1261 elements from T to the hash table then perform the query again. */
1263 n = gimple_switch_num_labels (t);
1264 for (i = 0; i < n; i++)
1266 tree elt = gimple_switch_label (t, i);
1267 tree lab = CASE_LABEL (elt);
1268 basic_block label_bb = label_to_block (lab);
1269 edge this_edge = find_edge (e->src, label_bb);
1271 /* Add it to the chain of CASE_LABEL_EXPRs referencing E, or create
1272 a new chain. */
1273 tree &s = edge_to_cases->get_or_insert (this_edge);
1274 CASE_CHAIN (elt) = s;
1275 s = elt;
1278 return *edge_to_cases->get (e);
1281 /* Create the edges for a GIMPLE_SWITCH starting at block BB. */
1283 static void
1284 make_gimple_switch_edges (gswitch *entry, basic_block bb)
1286 size_t i, n;
1288 n = gimple_switch_num_labels (entry);
1290 for (i = 0; i < n; ++i)
1292 tree lab = CASE_LABEL (gimple_switch_label (entry, i));
1293 basic_block label_bb = label_to_block (lab);
1294 make_edge (bb, label_bb, 0);
1299 /* Return the basic block holding label DEST. */
1301 basic_block
1302 label_to_block_fn (struct function *ifun, tree dest)
1304 int uid = LABEL_DECL_UID (dest);
1306 /* We would die hard when faced by an undefined label. Emit a label to
1307 the very first basic block. This will hopefully make even the dataflow
1308 and undefined variable warnings quite right. */
1309 if (seen_error () && uid < 0)
1311 gimple_stmt_iterator gsi =
1312 gsi_start_bb (BASIC_BLOCK_FOR_FN (cfun, NUM_FIXED_BLOCKS));
1313 gimple stmt;
1315 stmt = gimple_build_label (dest);
1316 gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
1317 uid = LABEL_DECL_UID (dest);
1319 if (vec_safe_length (ifun->cfg->x_label_to_block_map) <= (unsigned int) uid)
1320 return NULL;
1321 return (*ifun->cfg->x_label_to_block_map)[uid];
1324 /* Create edges for a goto statement at block BB. Returns true
1325 if abnormal edges should be created. */
1327 static bool
1328 make_goto_expr_edges (basic_block bb)
1330 gimple_stmt_iterator last = gsi_last_bb (bb);
1331 gimple goto_t = gsi_stmt (last);
1333 /* A simple GOTO creates normal edges. */
1334 if (simple_goto_p (goto_t))
1336 tree dest = gimple_goto_dest (goto_t);
1337 basic_block label_bb = label_to_block (dest);
1338 edge e = make_edge (bb, label_bb, EDGE_FALLTHRU);
1339 e->goto_locus = gimple_location (goto_t);
1340 gsi_remove (&last, true);
1341 return false;
1344 /* A computed GOTO creates abnormal edges. */
1345 return true;
1348 /* Create edges for an asm statement with labels at block BB. */
1350 static void
1351 make_gimple_asm_edges (basic_block bb)
1353 gasm *stmt = as_a <gasm *> (last_stmt (bb));
1354 int i, n = gimple_asm_nlabels (stmt);
1356 for (i = 0; i < n; ++i)
1358 tree label = TREE_VALUE (gimple_asm_label_op (stmt, i));
1359 basic_block label_bb = label_to_block (label);
1360 make_edge (bb, label_bb, 0);
1364 /*---------------------------------------------------------------------------
1365 Flowgraph analysis
1366 ---------------------------------------------------------------------------*/
1368 /* Cleanup useless labels in basic blocks. This is something we wish
1369 to do early because it allows us to group case labels before creating
1370 the edges for the CFG, and it speeds up block statement iterators in
1371 all passes later on.
1372 We rerun this pass after CFG is created, to get rid of the labels that
1373 are no longer referenced. After then we do not run it any more, since
1374 (almost) no new labels should be created. */
1376 /* A map from basic block index to the leading label of that block. */
1377 static struct label_record
1379 /* The label. */
1380 tree label;
1382 /* True if the label is referenced from somewhere. */
1383 bool used;
1384 } *label_for_bb;
1386 /* Given LABEL return the first label in the same basic block. */
1388 static tree
1389 main_block_label (tree label)
1391 basic_block bb = label_to_block (label);
1392 tree main_label = label_for_bb[bb->index].label;
1394 /* label_to_block possibly inserted undefined label into the chain. */
1395 if (!main_label)
1397 label_for_bb[bb->index].label = label;
1398 main_label = label;
1401 label_for_bb[bb->index].used = true;
1402 return main_label;
1405 /* Clean up redundant labels within the exception tree. */
1407 static void
1408 cleanup_dead_labels_eh (void)
1410 eh_landing_pad lp;
1411 eh_region r;
1412 tree lab;
1413 int i;
1415 if (cfun->eh == NULL)
1416 return;
1418 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1419 if (lp && lp->post_landing_pad)
1421 lab = main_block_label (lp->post_landing_pad);
1422 if (lab != lp->post_landing_pad)
1424 EH_LANDING_PAD_NR (lp->post_landing_pad) = 0;
1425 EH_LANDING_PAD_NR (lab) = lp->index;
1429 FOR_ALL_EH_REGION (r)
1430 switch (r->type)
1432 case ERT_CLEANUP:
1433 case ERT_MUST_NOT_THROW:
1434 break;
1436 case ERT_TRY:
1438 eh_catch c;
1439 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
1441 lab = c->label;
1442 if (lab)
1443 c->label = main_block_label (lab);
1446 break;
1448 case ERT_ALLOWED_EXCEPTIONS:
1449 lab = r->u.allowed.label;
1450 if (lab)
1451 r->u.allowed.label = main_block_label (lab);
1452 break;
1457 /* Cleanup redundant labels. This is a three-step process:
1458 1) Find the leading label for each block.
1459 2) Redirect all references to labels to the leading labels.
1460 3) Cleanup all useless labels. */
1462 void
1463 cleanup_dead_labels (void)
1465 basic_block bb;
1466 label_for_bb = XCNEWVEC (struct label_record, last_basic_block_for_fn (cfun));
1468 /* Find a suitable label for each block. We use the first user-defined
1469 label if there is one, or otherwise just the first label we see. */
1470 FOR_EACH_BB_FN (bb, cfun)
1472 gimple_stmt_iterator i;
1474 for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
1476 tree label;
1477 glabel *label_stmt = dyn_cast <glabel *> (gsi_stmt (i));
1479 if (!label_stmt)
1480 break;
1482 label = gimple_label_label (label_stmt);
1484 /* If we have not yet seen a label for the current block,
1485 remember this one and see if there are more labels. */
1486 if (!label_for_bb[bb->index].label)
1488 label_for_bb[bb->index].label = label;
1489 continue;
1492 /* If we did see a label for the current block already, but it
1493 is an artificially created label, replace it if the current
1494 label is a user defined label. */
1495 if (!DECL_ARTIFICIAL (label)
1496 && DECL_ARTIFICIAL (label_for_bb[bb->index].label))
1498 label_for_bb[bb->index].label = label;
1499 break;
1504 /* Now redirect all jumps/branches to the selected label.
1505 First do so for each block ending in a control statement. */
1506 FOR_EACH_BB_FN (bb, cfun)
1508 gimple stmt = last_stmt (bb);
1509 tree label, new_label;
1511 if (!stmt)
1512 continue;
1514 switch (gimple_code (stmt))
1516 case GIMPLE_COND:
1518 gcond *cond_stmt = as_a <gcond *> (stmt);
1519 label = gimple_cond_true_label (cond_stmt);
1520 if (label)
1522 new_label = main_block_label (label);
1523 if (new_label != label)
1524 gimple_cond_set_true_label (cond_stmt, new_label);
1527 label = gimple_cond_false_label (cond_stmt);
1528 if (label)
1530 new_label = main_block_label (label);
1531 if (new_label != label)
1532 gimple_cond_set_false_label (cond_stmt, new_label);
1535 break;
1537 case GIMPLE_SWITCH:
1539 gswitch *switch_stmt = as_a <gswitch *> (stmt);
1540 size_t i, n = gimple_switch_num_labels (switch_stmt);
1542 /* Replace all destination labels. */
1543 for (i = 0; i < n; ++i)
1545 tree case_label = gimple_switch_label (switch_stmt, i);
1546 label = CASE_LABEL (case_label);
1547 new_label = main_block_label (label);
1548 if (new_label != label)
1549 CASE_LABEL (case_label) = new_label;
1551 break;
1554 case GIMPLE_ASM:
1556 gasm *asm_stmt = as_a <gasm *> (stmt);
1557 int i, n = gimple_asm_nlabels (asm_stmt);
1559 for (i = 0; i < n; ++i)
1561 tree cons = gimple_asm_label_op (asm_stmt, i);
1562 tree label = main_block_label (TREE_VALUE (cons));
1563 TREE_VALUE (cons) = label;
1565 break;
1568 /* We have to handle gotos until they're removed, and we don't
1569 remove them until after we've created the CFG edges. */
1570 case GIMPLE_GOTO:
1571 if (!computed_goto_p (stmt))
1573 ggoto *goto_stmt = as_a <ggoto *> (stmt);
1574 label = gimple_goto_dest (goto_stmt);
1575 new_label = main_block_label (label);
1576 if (new_label != label)
1577 gimple_goto_set_dest (goto_stmt, new_label);
1579 break;
1581 case GIMPLE_TRANSACTION:
1583 gtransaction *trans_stmt = as_a <gtransaction *> (stmt);
1584 tree label = gimple_transaction_label (trans_stmt);
1585 if (label)
1587 tree new_label = main_block_label (label);
1588 if (new_label != label)
1589 gimple_transaction_set_label (trans_stmt, new_label);
1592 break;
1594 default:
1595 break;
1599 /* Do the same for the exception region tree labels. */
1600 cleanup_dead_labels_eh ();
1602 /* Finally, purge dead labels. All user-defined labels and labels that
1603 can be the target of non-local gotos and labels which have their
1604 address taken are preserved. */
1605 FOR_EACH_BB_FN (bb, cfun)
1607 gimple_stmt_iterator i;
1608 tree label_for_this_bb = label_for_bb[bb->index].label;
1610 if (!label_for_this_bb)
1611 continue;
1613 /* If the main label of the block is unused, we may still remove it. */
1614 if (!label_for_bb[bb->index].used)
1615 label_for_this_bb = NULL;
1617 for (i = gsi_start_bb (bb); !gsi_end_p (i); )
1619 tree label;
1620 glabel *label_stmt = dyn_cast <glabel *> (gsi_stmt (i));
1622 if (!label_stmt)
1623 break;
1625 label = gimple_label_label (label_stmt);
1627 if (label == label_for_this_bb
1628 || !DECL_ARTIFICIAL (label)
1629 || DECL_NONLOCAL (label)
1630 || FORCED_LABEL (label))
1631 gsi_next (&i);
1632 else
1633 gsi_remove (&i, true);
1637 free (label_for_bb);
1640 /* Scan the sorted vector of cases in STMT (a GIMPLE_SWITCH) and combine
1641 the ones jumping to the same label.
1642 Eg. three separate entries 1: 2: 3: become one entry 1..3: */
1644 void
1645 group_case_labels_stmt (gswitch *stmt)
1647 int old_size = gimple_switch_num_labels (stmt);
1648 int i, j, new_size = old_size;
1649 basic_block default_bb = NULL;
1651 default_bb = label_to_block (CASE_LABEL (gimple_switch_default_label (stmt)));
1653 /* Look for possible opportunities to merge cases. */
1654 i = 1;
1655 while (i < old_size)
1657 tree base_case, base_high;
1658 basic_block base_bb;
1660 base_case = gimple_switch_label (stmt, i);
1662 gcc_assert (base_case);
1663 base_bb = label_to_block (CASE_LABEL (base_case));
1665 /* Discard cases that have the same destination as the
1666 default case. */
1667 if (base_bb == default_bb)
1669 gimple_switch_set_label (stmt, i, NULL_TREE);
1670 i++;
1671 new_size--;
1672 continue;
1675 base_high = CASE_HIGH (base_case)
1676 ? CASE_HIGH (base_case)
1677 : CASE_LOW (base_case);
1678 i++;
1680 /* Try to merge case labels. Break out when we reach the end
1681 of the label vector or when we cannot merge the next case
1682 label with the current one. */
1683 while (i < old_size)
1685 tree merge_case = gimple_switch_label (stmt, i);
1686 basic_block merge_bb = label_to_block (CASE_LABEL (merge_case));
1687 wide_int bhp1 = wi::add (base_high, 1);
1689 /* Merge the cases if they jump to the same place,
1690 and their ranges are consecutive. */
1691 if (merge_bb == base_bb
1692 && wi::eq_p (CASE_LOW (merge_case), bhp1))
1694 base_high = CASE_HIGH (merge_case) ?
1695 CASE_HIGH (merge_case) : CASE_LOW (merge_case);
1696 CASE_HIGH (base_case) = base_high;
1697 gimple_switch_set_label (stmt, i, NULL_TREE);
1698 new_size--;
1699 i++;
1701 else
1702 break;
1706 /* Compress the case labels in the label vector, and adjust the
1707 length of the vector. */
1708 for (i = 0, j = 0; i < new_size; i++)
1710 while (! gimple_switch_label (stmt, j))
1711 j++;
1712 gimple_switch_set_label (stmt, i,
1713 gimple_switch_label (stmt, j++));
1716 gcc_assert (new_size <= old_size);
1717 gimple_switch_set_num_labels (stmt, new_size);
1720 /* Look for blocks ending in a multiway branch (a GIMPLE_SWITCH),
1721 and scan the sorted vector of cases. Combine the ones jumping to the
1722 same label. */
1724 void
1725 group_case_labels (void)
1727 basic_block bb;
1729 FOR_EACH_BB_FN (bb, cfun)
1731 gimple stmt = last_stmt (bb);
1732 if (stmt && gimple_code (stmt) == GIMPLE_SWITCH)
1733 group_case_labels_stmt (as_a <gswitch *> (stmt));
1737 /* Checks whether we can merge block B into block A. */
1739 static bool
1740 gimple_can_merge_blocks_p (basic_block a, basic_block b)
1742 gimple stmt;
1744 if (!single_succ_p (a))
1745 return false;
1747 if (single_succ_edge (a)->flags & EDGE_COMPLEX)
1748 return false;
1750 if (single_succ (a) != b)
1751 return false;
1753 if (!single_pred_p (b))
1754 return false;
1756 if (a == ENTRY_BLOCK_PTR_FOR_FN (cfun)
1757 || b == EXIT_BLOCK_PTR_FOR_FN (cfun))
1758 return false;
1760 /* If A ends by a statement causing exceptions or something similar, we
1761 cannot merge the blocks. */
1762 stmt = last_stmt (a);
1763 if (stmt && stmt_ends_bb_p (stmt))
1764 return false;
1766 /* Do not allow a block with only a non-local label to be merged. */
1767 if (stmt)
1768 if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
1769 if (DECL_NONLOCAL (gimple_label_label (label_stmt)))
1770 return false;
1772 /* Examine the labels at the beginning of B. */
1773 for (gimple_stmt_iterator gsi = gsi_start_bb (b); !gsi_end_p (gsi);
1774 gsi_next (&gsi))
1776 tree lab;
1777 glabel *label_stmt = dyn_cast <glabel *> (gsi_stmt (gsi));
1778 if (!label_stmt)
1779 break;
1780 lab = gimple_label_label (label_stmt);
1782 /* Do not remove user forced labels or for -O0 any user labels. */
1783 if (!DECL_ARTIFICIAL (lab) && (!optimize || FORCED_LABEL (lab)))
1784 return false;
1787 /* Protect simple loop latches. We only want to avoid merging
1788 the latch with the loop header or with a block in another
1789 loop in this case. */
1790 if (current_loops
1791 && b->loop_father->latch == b
1792 && loops_state_satisfies_p (LOOPS_HAVE_SIMPLE_LATCHES)
1793 && (b->loop_father->header == a
1794 || b->loop_father != a->loop_father))
1795 return false;
1797 /* It must be possible to eliminate all phi nodes in B. If ssa form
1798 is not up-to-date and a name-mapping is registered, we cannot eliminate
1799 any phis. Symbols marked for renaming are never a problem though. */
1800 for (gphi_iterator gsi = gsi_start_phis (b); !gsi_end_p (gsi);
1801 gsi_next (&gsi))
1803 gphi *phi = gsi.phi ();
1804 /* Technically only new names matter. */
1805 if (name_registered_for_update_p (PHI_RESULT (phi)))
1806 return false;
1809 /* When not optimizing, don't merge if we'd lose goto_locus. */
1810 if (!optimize
1811 && single_succ_edge (a)->goto_locus != UNKNOWN_LOCATION)
1813 location_t goto_locus = single_succ_edge (a)->goto_locus;
1814 gimple_stmt_iterator prev, next;
1815 prev = gsi_last_nondebug_bb (a);
1816 next = gsi_after_labels (b);
1817 if (!gsi_end_p (next) && is_gimple_debug (gsi_stmt (next)))
1818 gsi_next_nondebug (&next);
1819 if ((gsi_end_p (prev)
1820 || gimple_location (gsi_stmt (prev)) != goto_locus)
1821 && (gsi_end_p (next)
1822 || gimple_location (gsi_stmt (next)) != goto_locus))
1823 return false;
1826 return true;
1829 /* Replaces all uses of NAME by VAL. */
1831 void
1832 replace_uses_by (tree name, tree val)
1834 imm_use_iterator imm_iter;
1835 use_operand_p use;
1836 gimple stmt;
1837 edge e;
1839 FOR_EACH_IMM_USE_STMT (stmt, imm_iter, name)
1841 /* Mark the block if we change the last stmt in it. */
1842 if (cfgcleanup_altered_bbs
1843 && stmt_ends_bb_p (stmt))
1844 bitmap_set_bit (cfgcleanup_altered_bbs, gimple_bb (stmt)->index);
1846 FOR_EACH_IMM_USE_ON_STMT (use, imm_iter)
1848 replace_exp (use, val);
1850 if (gimple_code (stmt) == GIMPLE_PHI)
1852 e = gimple_phi_arg_edge (as_a <gphi *> (stmt),
1853 PHI_ARG_INDEX_FROM_USE (use));
1854 if (e->flags & EDGE_ABNORMAL
1855 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val))
1857 /* This can only occur for virtual operands, since
1858 for the real ones SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name))
1859 would prevent replacement. */
1860 gcc_checking_assert (virtual_operand_p (name));
1861 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val) = 1;
1866 if (gimple_code (stmt) != GIMPLE_PHI)
1868 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
1869 gimple orig_stmt = stmt;
1870 size_t i;
1872 /* FIXME. It shouldn't be required to keep TREE_CONSTANT
1873 on ADDR_EXPRs up-to-date on GIMPLE. Propagation will
1874 only change sth from non-invariant to invariant, and only
1875 when propagating constants. */
1876 if (is_gimple_min_invariant (val))
1877 for (i = 0; i < gimple_num_ops (stmt); i++)
1879 tree op = gimple_op (stmt, i);
1880 /* Operands may be empty here. For example, the labels
1881 of a GIMPLE_COND are nulled out following the creation
1882 of the corresponding CFG edges. */
1883 if (op && TREE_CODE (op) == ADDR_EXPR)
1884 recompute_tree_invariant_for_addr_expr (op);
1887 if (fold_stmt (&gsi))
1888 stmt = gsi_stmt (gsi);
1890 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
1891 gimple_purge_dead_eh_edges (gimple_bb (stmt));
1893 update_stmt (stmt);
1897 gcc_checking_assert (has_zero_uses (name));
1899 /* Also update the trees stored in loop structures. */
1900 if (current_loops)
1902 struct loop *loop;
1904 FOR_EACH_LOOP (loop, 0)
1906 substitute_in_loop_info (loop, name, val);
1911 /* Merge block B into block A. */
1913 static void
1914 gimple_merge_blocks (basic_block a, basic_block b)
1916 gimple_stmt_iterator last, gsi;
1917 gphi_iterator psi;
1919 if (dump_file)
1920 fprintf (dump_file, "Merging blocks %d and %d\n", a->index, b->index);
1922 /* Remove all single-valued PHI nodes from block B of the form
1923 V_i = PHI <V_j> by propagating V_j to all the uses of V_i. */
1924 gsi = gsi_last_bb (a);
1925 for (psi = gsi_start_phis (b); !gsi_end_p (psi); )
1927 gimple phi = gsi_stmt (psi);
1928 tree def = gimple_phi_result (phi), use = gimple_phi_arg_def (phi, 0);
1929 gimple copy;
1930 bool may_replace_uses = (virtual_operand_p (def)
1931 || may_propagate_copy (def, use));
1933 /* In case we maintain loop closed ssa form, do not propagate arguments
1934 of loop exit phi nodes. */
1935 if (current_loops
1936 && loops_state_satisfies_p (LOOP_CLOSED_SSA)
1937 && !virtual_operand_p (def)
1938 && TREE_CODE (use) == SSA_NAME
1939 && a->loop_father != b->loop_father)
1940 may_replace_uses = false;
1942 if (!may_replace_uses)
1944 gcc_assert (!virtual_operand_p (def));
1946 /* Note that just emitting the copies is fine -- there is no problem
1947 with ordering of phi nodes. This is because A is the single
1948 predecessor of B, therefore results of the phi nodes cannot
1949 appear as arguments of the phi nodes. */
1950 copy = gimple_build_assign (def, use);
1951 gsi_insert_after (&gsi, copy, GSI_NEW_STMT);
1952 remove_phi_node (&psi, false);
1954 else
1956 /* If we deal with a PHI for virtual operands, we can simply
1957 propagate these without fussing with folding or updating
1958 the stmt. */
1959 if (virtual_operand_p (def))
1961 imm_use_iterator iter;
1962 use_operand_p use_p;
1963 gimple stmt;
1965 FOR_EACH_IMM_USE_STMT (stmt, iter, def)
1966 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
1967 SET_USE (use_p, use);
1969 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def))
1970 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (use) = 1;
1972 else
1973 replace_uses_by (def, use);
1975 remove_phi_node (&psi, true);
1979 /* Ensure that B follows A. */
1980 move_block_after (b, a);
1982 gcc_assert (single_succ_edge (a)->flags & EDGE_FALLTHRU);
1983 gcc_assert (!last_stmt (a) || !stmt_ends_bb_p (last_stmt (a)));
1985 /* Remove labels from B and set gimple_bb to A for other statements. */
1986 for (gsi = gsi_start_bb (b); !gsi_end_p (gsi);)
1988 gimple stmt = gsi_stmt (gsi);
1989 if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
1991 tree label = gimple_label_label (label_stmt);
1992 int lp_nr;
1994 gsi_remove (&gsi, false);
1996 /* Now that we can thread computed gotos, we might have
1997 a situation where we have a forced label in block B
1998 However, the label at the start of block B might still be
1999 used in other ways (think about the runtime checking for
2000 Fortran assigned gotos). So we can not just delete the
2001 label. Instead we move the label to the start of block A. */
2002 if (FORCED_LABEL (label))
2004 gimple_stmt_iterator dest_gsi = gsi_start_bb (a);
2005 gsi_insert_before (&dest_gsi, stmt, GSI_NEW_STMT);
2007 /* Other user labels keep around in a form of a debug stmt. */
2008 else if (!DECL_ARTIFICIAL (label) && MAY_HAVE_DEBUG_STMTS)
2010 gimple dbg = gimple_build_debug_bind (label,
2011 integer_zero_node,
2012 stmt);
2013 gimple_debug_bind_reset_value (dbg);
2014 gsi_insert_before (&gsi, dbg, GSI_SAME_STMT);
2017 lp_nr = EH_LANDING_PAD_NR (label);
2018 if (lp_nr)
2020 eh_landing_pad lp = get_eh_landing_pad_from_number (lp_nr);
2021 lp->post_landing_pad = NULL;
2024 else
2026 gimple_set_bb (stmt, a);
2027 gsi_next (&gsi);
2031 /* When merging two BBs, if their counts are different, the larger count
2032 is selected as the new bb count. This is to handle inconsistent
2033 profiles. */
2034 if (a->loop_father == b->loop_father)
2036 a->count = MAX (a->count, b->count);
2037 a->frequency = MAX (a->frequency, b->frequency);
2040 /* Merge the sequences. */
2041 last = gsi_last_bb (a);
2042 gsi_insert_seq_after (&last, bb_seq (b), GSI_NEW_STMT);
2043 set_bb_seq (b, NULL);
2045 if (cfgcleanup_altered_bbs)
2046 bitmap_set_bit (cfgcleanup_altered_bbs, a->index);
2050 /* Return the one of two successors of BB that is not reachable by a
2051 complex edge, if there is one. Else, return BB. We use
2052 this in optimizations that use post-dominators for their heuristics,
2053 to catch the cases in C++ where function calls are involved. */
2055 basic_block
2056 single_noncomplex_succ (basic_block bb)
2058 edge e0, e1;
2059 if (EDGE_COUNT (bb->succs) != 2)
2060 return bb;
2062 e0 = EDGE_SUCC (bb, 0);
2063 e1 = EDGE_SUCC (bb, 1);
2064 if (e0->flags & EDGE_COMPLEX)
2065 return e1->dest;
2066 if (e1->flags & EDGE_COMPLEX)
2067 return e0->dest;
2069 return bb;
2072 /* T is CALL_EXPR. Set current_function_calls_* flags. */
2074 void
2075 notice_special_calls (gcall *call)
2077 int flags = gimple_call_flags (call);
2079 if (flags & ECF_MAY_BE_ALLOCA)
2080 cfun->calls_alloca = true;
2081 if (flags & ECF_RETURNS_TWICE)
2082 cfun->calls_setjmp = true;
2086 /* Clear flags set by notice_special_calls. Used by dead code removal
2087 to update the flags. */
2089 void
2090 clear_special_calls (void)
2092 cfun->calls_alloca = false;
2093 cfun->calls_setjmp = false;
2096 /* Remove PHI nodes associated with basic block BB and all edges out of BB. */
2098 static void
2099 remove_phi_nodes_and_edges_for_unreachable_block (basic_block bb)
2101 /* Since this block is no longer reachable, we can just delete all
2102 of its PHI nodes. */
2103 remove_phi_nodes (bb);
2105 /* Remove edges to BB's successors. */
2106 while (EDGE_COUNT (bb->succs) > 0)
2107 remove_edge (EDGE_SUCC (bb, 0));
2111 /* Remove statements of basic block BB. */
2113 static void
2114 remove_bb (basic_block bb)
2116 gimple_stmt_iterator i;
2118 if (dump_file)
2120 fprintf (dump_file, "Removing basic block %d\n", bb->index);
2121 if (dump_flags & TDF_DETAILS)
2123 dump_bb (dump_file, bb, 0, TDF_BLOCKS);
2124 fprintf (dump_file, "\n");
2128 if (current_loops)
2130 struct loop *loop = bb->loop_father;
2132 /* If a loop gets removed, clean up the information associated
2133 with it. */
2134 if (loop->latch == bb
2135 || loop->header == bb)
2136 free_numbers_of_iterations_estimates_loop (loop);
2139 /* Remove all the instructions in the block. */
2140 if (bb_seq (bb) != NULL)
2142 /* Walk backwards so as to get a chance to substitute all
2143 released DEFs into debug stmts. See
2144 eliminate_unnecessary_stmts() in tree-ssa-dce.c for more
2145 details. */
2146 for (i = gsi_last_bb (bb); !gsi_end_p (i);)
2148 gimple stmt = gsi_stmt (i);
2149 glabel *label_stmt = dyn_cast <glabel *> (stmt);
2150 if (label_stmt
2151 && (FORCED_LABEL (gimple_label_label (label_stmt))
2152 || DECL_NONLOCAL (gimple_label_label (label_stmt))))
2154 basic_block new_bb;
2155 gimple_stmt_iterator new_gsi;
2157 /* A non-reachable non-local label may still be referenced.
2158 But it no longer needs to carry the extra semantics of
2159 non-locality. */
2160 if (DECL_NONLOCAL (gimple_label_label (label_stmt)))
2162 DECL_NONLOCAL (gimple_label_label (label_stmt)) = 0;
2163 FORCED_LABEL (gimple_label_label (label_stmt)) = 1;
2166 new_bb = bb->prev_bb;
2167 new_gsi = gsi_start_bb (new_bb);
2168 gsi_remove (&i, false);
2169 gsi_insert_before (&new_gsi, stmt, GSI_NEW_STMT);
2171 else
2173 /* Release SSA definitions if we are in SSA. Note that we
2174 may be called when not in SSA. For example,
2175 final_cleanup calls this function via
2176 cleanup_tree_cfg. */
2177 if (gimple_in_ssa_p (cfun))
2178 release_defs (stmt);
2180 gsi_remove (&i, true);
2183 if (gsi_end_p (i))
2184 i = gsi_last_bb (bb);
2185 else
2186 gsi_prev (&i);
2190 remove_phi_nodes_and_edges_for_unreachable_block (bb);
2191 bb->il.gimple.seq = NULL;
2192 bb->il.gimple.phi_nodes = NULL;
2196 /* Given a basic block BB ending with COND_EXPR or SWITCH_EXPR, and a
2197 predicate VAL, return the edge that will be taken out of the block.
2198 If VAL does not match a unique edge, NULL is returned. */
2200 edge
2201 find_taken_edge (basic_block bb, tree val)
2203 gimple stmt;
2205 stmt = last_stmt (bb);
2207 gcc_assert (stmt);
2208 gcc_assert (is_ctrl_stmt (stmt));
2210 if (val == NULL)
2211 return NULL;
2213 if (!is_gimple_min_invariant (val))
2214 return NULL;
2216 if (gimple_code (stmt) == GIMPLE_COND)
2217 return find_taken_edge_cond_expr (bb, val);
2219 if (gimple_code (stmt) == GIMPLE_SWITCH)
2220 return find_taken_edge_switch_expr (as_a <gswitch *> (stmt), bb, val);
2222 if (computed_goto_p (stmt))
2224 /* Only optimize if the argument is a label, if the argument is
2225 not a label then we can not construct a proper CFG.
2227 It may be the case that we only need to allow the LABEL_REF to
2228 appear inside an ADDR_EXPR, but we also allow the LABEL_REF to
2229 appear inside a LABEL_EXPR just to be safe. */
2230 if ((TREE_CODE (val) == ADDR_EXPR || TREE_CODE (val) == LABEL_EXPR)
2231 && TREE_CODE (TREE_OPERAND (val, 0)) == LABEL_DECL)
2232 return find_taken_edge_computed_goto (bb, TREE_OPERAND (val, 0));
2233 return NULL;
2236 gcc_unreachable ();
2239 /* Given a constant value VAL and the entry block BB to a GOTO_EXPR
2240 statement, determine which of the outgoing edges will be taken out of the
2241 block. Return NULL if either edge may be taken. */
2243 static edge
2244 find_taken_edge_computed_goto (basic_block bb, tree val)
2246 basic_block dest;
2247 edge e = NULL;
2249 dest = label_to_block (val);
2250 if (dest)
2252 e = find_edge (bb, dest);
2253 gcc_assert (e != NULL);
2256 return e;
2259 /* Given a constant value VAL and the entry block BB to a COND_EXPR
2260 statement, determine which of the two edges will be taken out of the
2261 block. Return NULL if either edge may be taken. */
2263 static edge
2264 find_taken_edge_cond_expr (basic_block bb, tree val)
2266 edge true_edge, false_edge;
2268 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
2270 gcc_assert (TREE_CODE (val) == INTEGER_CST);
2271 return (integer_zerop (val) ? false_edge : true_edge);
2274 /* Given an INTEGER_CST VAL and the entry block BB to a SWITCH_EXPR
2275 statement, determine which edge will be taken out of the block. Return
2276 NULL if any edge may be taken. */
2278 static edge
2279 find_taken_edge_switch_expr (gswitch *switch_stmt, basic_block bb,
2280 tree val)
2282 basic_block dest_bb;
2283 edge e;
2284 tree taken_case;
2286 taken_case = find_case_label_for_value (switch_stmt, val);
2287 dest_bb = label_to_block (CASE_LABEL (taken_case));
2289 e = find_edge (bb, dest_bb);
2290 gcc_assert (e);
2291 return e;
2295 /* Return the CASE_LABEL_EXPR that SWITCH_STMT will take for VAL.
2296 We can make optimal use here of the fact that the case labels are
2297 sorted: We can do a binary search for a case matching VAL. */
2299 static tree
2300 find_case_label_for_value (gswitch *switch_stmt, tree val)
2302 size_t low, high, n = gimple_switch_num_labels (switch_stmt);
2303 tree default_case = gimple_switch_default_label (switch_stmt);
2305 for (low = 0, high = n; high - low > 1; )
2307 size_t i = (high + low) / 2;
2308 tree t = gimple_switch_label (switch_stmt, i);
2309 int cmp;
2311 /* Cache the result of comparing CASE_LOW and val. */
2312 cmp = tree_int_cst_compare (CASE_LOW (t), val);
2314 if (cmp > 0)
2315 high = i;
2316 else
2317 low = i;
2319 if (CASE_HIGH (t) == NULL)
2321 /* A singe-valued case label. */
2322 if (cmp == 0)
2323 return t;
2325 else
2327 /* A case range. We can only handle integer ranges. */
2328 if (cmp <= 0 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
2329 return t;
2333 return default_case;
2337 /* Dump a basic block on stderr. */
2339 void
2340 gimple_debug_bb (basic_block bb)
2342 dump_bb (stderr, bb, 0, TDF_VOPS|TDF_MEMSYMS|TDF_BLOCKS);
2346 /* Dump basic block with index N on stderr. */
2348 basic_block
2349 gimple_debug_bb_n (int n)
2351 gimple_debug_bb (BASIC_BLOCK_FOR_FN (cfun, n));
2352 return BASIC_BLOCK_FOR_FN (cfun, n);
2356 /* Dump the CFG on stderr.
2358 FLAGS are the same used by the tree dumping functions
2359 (see TDF_* in dumpfile.h). */
2361 void
2362 gimple_debug_cfg (int flags)
2364 gimple_dump_cfg (stderr, flags);
2368 /* Dump the program showing basic block boundaries on the given FILE.
2370 FLAGS are the same used by the tree dumping functions (see TDF_* in
2371 tree.h). */
2373 void
2374 gimple_dump_cfg (FILE *file, int flags)
2376 if (flags & TDF_DETAILS)
2378 dump_function_header (file, current_function_decl, flags);
2379 fprintf (file, ";; \n%d basic blocks, %d edges, last basic block %d.\n\n",
2380 n_basic_blocks_for_fn (cfun), n_edges_for_fn (cfun),
2381 last_basic_block_for_fn (cfun));
2383 brief_dump_cfg (file, flags | TDF_COMMENT);
2384 fprintf (file, "\n");
2387 if (flags & TDF_STATS)
2388 dump_cfg_stats (file);
2390 dump_function_to_file (current_function_decl, file, flags | TDF_BLOCKS);
2394 /* Dump CFG statistics on FILE. */
2396 void
2397 dump_cfg_stats (FILE *file)
2399 static long max_num_merged_labels = 0;
2400 unsigned long size, total = 0;
2401 long num_edges;
2402 basic_block bb;
2403 const char * const fmt_str = "%-30s%-13s%12s\n";
2404 const char * const fmt_str_1 = "%-30s%13d%11lu%c\n";
2405 const char * const fmt_str_2 = "%-30s%13ld%11lu%c\n";
2406 const char * const fmt_str_3 = "%-43s%11lu%c\n";
2407 const char *funcname = current_function_name ();
2409 fprintf (file, "\nCFG Statistics for %s\n\n", funcname);
2411 fprintf (file, "---------------------------------------------------------\n");
2412 fprintf (file, fmt_str, "", " Number of ", "Memory");
2413 fprintf (file, fmt_str, "", " instances ", "used ");
2414 fprintf (file, "---------------------------------------------------------\n");
2416 size = n_basic_blocks_for_fn (cfun) * sizeof (struct basic_block_def);
2417 total += size;
2418 fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks_for_fn (cfun),
2419 SCALE (size), LABEL (size));
2421 num_edges = 0;
2422 FOR_EACH_BB_FN (bb, cfun)
2423 num_edges += EDGE_COUNT (bb->succs);
2424 size = num_edges * sizeof (struct edge_def);
2425 total += size;
2426 fprintf (file, fmt_str_2, "Edges", num_edges, SCALE (size), LABEL (size));
2428 fprintf (file, "---------------------------------------------------------\n");
2429 fprintf (file, fmt_str_3, "Total memory used by CFG data", SCALE (total),
2430 LABEL (total));
2431 fprintf (file, "---------------------------------------------------------\n");
2432 fprintf (file, "\n");
2434 if (cfg_stats.num_merged_labels > max_num_merged_labels)
2435 max_num_merged_labels = cfg_stats.num_merged_labels;
2437 fprintf (file, "Coalesced label blocks: %ld (Max so far: %ld)\n",
2438 cfg_stats.num_merged_labels, max_num_merged_labels);
2440 fprintf (file, "\n");
2444 /* Dump CFG statistics on stderr. Keep extern so that it's always
2445 linked in the final executable. */
2447 DEBUG_FUNCTION void
2448 debug_cfg_stats (void)
2450 dump_cfg_stats (stderr);
2453 /*---------------------------------------------------------------------------
2454 Miscellaneous helpers
2455 ---------------------------------------------------------------------------*/
2457 /* Return true if T, a GIMPLE_CALL, can make an abnormal transfer of control
2458 flow. Transfers of control flow associated with EH are excluded. */
2460 static bool
2461 call_can_make_abnormal_goto (gimple t)
2463 /* If the function has no non-local labels, then a call cannot make an
2464 abnormal transfer of control. */
2465 if (!cfun->has_nonlocal_label
2466 && !cfun->calls_setjmp)
2467 return false;
2469 /* Likewise if the call has no side effects. */
2470 if (!gimple_has_side_effects (t))
2471 return false;
2473 /* Likewise if the called function is leaf. */
2474 if (gimple_call_flags (t) & ECF_LEAF)
2475 return false;
2477 return true;
2481 /* Return true if T can make an abnormal transfer of control flow.
2482 Transfers of control flow associated with EH are excluded. */
2484 bool
2485 stmt_can_make_abnormal_goto (gimple t)
2487 if (computed_goto_p (t))
2488 return true;
2489 if (is_gimple_call (t))
2490 return call_can_make_abnormal_goto (t);
2491 return false;
2495 /* Return true if T represents a stmt that always transfers control. */
2497 bool
2498 is_ctrl_stmt (gimple t)
2500 switch (gimple_code (t))
2502 case GIMPLE_COND:
2503 case GIMPLE_SWITCH:
2504 case GIMPLE_GOTO:
2505 case GIMPLE_RETURN:
2506 case GIMPLE_RESX:
2507 return true;
2508 default:
2509 return false;
2514 /* Return true if T is a statement that may alter the flow of control
2515 (e.g., a call to a non-returning function). */
2517 bool
2518 is_ctrl_altering_stmt (gimple t)
2520 gcc_assert (t);
2522 switch (gimple_code (t))
2524 case GIMPLE_CALL:
2525 /* Per stmt call flag indicates whether the call could alter
2526 controlflow. */
2527 if (gimple_call_ctrl_altering_p (t))
2528 return true;
2529 break;
2531 case GIMPLE_EH_DISPATCH:
2532 /* EH_DISPATCH branches to the individual catch handlers at
2533 this level of a try or allowed-exceptions region. It can
2534 fallthru to the next statement as well. */
2535 return true;
2537 case GIMPLE_ASM:
2538 if (gimple_asm_nlabels (as_a <gasm *> (t)) > 0)
2539 return true;
2540 break;
2542 CASE_GIMPLE_OMP:
2543 /* OpenMP directives alter control flow. */
2544 return true;
2546 case GIMPLE_TRANSACTION:
2547 /* A transaction start alters control flow. */
2548 return true;
2550 default:
2551 break;
2554 /* If a statement can throw, it alters control flow. */
2555 return stmt_can_throw_internal (t);
2559 /* Return true if T is a simple local goto. */
2561 bool
2562 simple_goto_p (gimple t)
2564 return (gimple_code (t) == GIMPLE_GOTO
2565 && TREE_CODE (gimple_goto_dest (t)) == LABEL_DECL);
2569 /* Return true if STMT should start a new basic block. PREV_STMT is
2570 the statement preceding STMT. It is used when STMT is a label or a
2571 case label. Labels should only start a new basic block if their
2572 previous statement wasn't a label. Otherwise, sequence of labels
2573 would generate unnecessary basic blocks that only contain a single
2574 label. */
2576 static inline bool
2577 stmt_starts_bb_p (gimple stmt, gimple prev_stmt)
2579 if (stmt == NULL)
2580 return false;
2582 /* Labels start a new basic block only if the preceding statement
2583 wasn't a label of the same type. This prevents the creation of
2584 consecutive blocks that have nothing but a single label. */
2585 if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
2587 /* Nonlocal and computed GOTO targets always start a new block. */
2588 if (DECL_NONLOCAL (gimple_label_label (label_stmt))
2589 || FORCED_LABEL (gimple_label_label (label_stmt)))
2590 return true;
2592 if (prev_stmt && gimple_code (prev_stmt) == GIMPLE_LABEL)
2594 if (DECL_NONLOCAL (gimple_label_label (
2595 as_a <glabel *> (prev_stmt))))
2596 return true;
2598 cfg_stats.num_merged_labels++;
2599 return false;
2601 else
2602 return true;
2604 else if (gimple_code (stmt) == GIMPLE_CALL
2605 && gimple_call_flags (stmt) & ECF_RETURNS_TWICE)
2606 /* setjmp acts similar to a nonlocal GOTO target and thus should
2607 start a new block. */
2608 return true;
2610 return false;
2614 /* Return true if T should end a basic block. */
2616 bool
2617 stmt_ends_bb_p (gimple t)
2619 return is_ctrl_stmt (t) || is_ctrl_altering_stmt (t);
2622 /* Remove block annotations and other data structures. */
2624 void
2625 delete_tree_cfg_annotations (void)
2627 vec_free (label_to_block_map_for_fn (cfun));
2631 /* Return the first statement in basic block BB. */
2633 gimple
2634 first_stmt (basic_block bb)
2636 gimple_stmt_iterator i = gsi_start_bb (bb);
2637 gimple stmt = NULL;
2639 while (!gsi_end_p (i) && is_gimple_debug ((stmt = gsi_stmt (i))))
2641 gsi_next (&i);
2642 stmt = NULL;
2644 return stmt;
2647 /* Return the first non-label statement in basic block BB. */
2649 static gimple
2650 first_non_label_stmt (basic_block bb)
2652 gimple_stmt_iterator i = gsi_start_bb (bb);
2653 while (!gsi_end_p (i) && gimple_code (gsi_stmt (i)) == GIMPLE_LABEL)
2654 gsi_next (&i);
2655 return !gsi_end_p (i) ? gsi_stmt (i) : NULL;
2658 /* Return the last statement in basic block BB. */
2660 gimple
2661 last_stmt (basic_block bb)
2663 gimple_stmt_iterator i = gsi_last_bb (bb);
2664 gimple stmt = NULL;
2666 while (!gsi_end_p (i) && is_gimple_debug ((stmt = gsi_stmt (i))))
2668 gsi_prev (&i);
2669 stmt = NULL;
2671 return stmt;
2674 /* Return the last statement of an otherwise empty block. Return NULL
2675 if the block is totally empty, or if it contains more than one
2676 statement. */
2678 gimple
2679 last_and_only_stmt (basic_block bb)
2681 gimple_stmt_iterator i = gsi_last_nondebug_bb (bb);
2682 gimple last, prev;
2684 if (gsi_end_p (i))
2685 return NULL;
2687 last = gsi_stmt (i);
2688 gsi_prev_nondebug (&i);
2689 if (gsi_end_p (i))
2690 return last;
2692 /* Empty statements should no longer appear in the instruction stream.
2693 Everything that might have appeared before should be deleted by
2694 remove_useless_stmts, and the optimizers should just gsi_remove
2695 instead of smashing with build_empty_stmt.
2697 Thus the only thing that should appear here in a block containing
2698 one executable statement is a label. */
2699 prev = gsi_stmt (i);
2700 if (gimple_code (prev) == GIMPLE_LABEL)
2701 return last;
2702 else
2703 return NULL;
2706 /* Reinstall those PHI arguments queued in OLD_EDGE to NEW_EDGE. */
2708 static void
2709 reinstall_phi_args (edge new_edge, edge old_edge)
2711 edge_var_map *vm;
2712 int i;
2713 gphi_iterator phis;
2715 vec<edge_var_map> *v = redirect_edge_var_map_vector (old_edge);
2716 if (!v)
2717 return;
2719 for (i = 0, phis = gsi_start_phis (new_edge->dest);
2720 v->iterate (i, &vm) && !gsi_end_p (phis);
2721 i++, gsi_next (&phis))
2723 gphi *phi = phis.phi ();
2724 tree result = redirect_edge_var_map_result (vm);
2725 tree arg = redirect_edge_var_map_def (vm);
2727 gcc_assert (result == gimple_phi_result (phi));
2729 add_phi_arg (phi, arg, new_edge, redirect_edge_var_map_location (vm));
2732 redirect_edge_var_map_clear (old_edge);
2735 /* Returns the basic block after which the new basic block created
2736 by splitting edge EDGE_IN should be placed. Tries to keep the new block
2737 near its "logical" location. This is of most help to humans looking
2738 at debugging dumps. */
2740 basic_block
2741 split_edge_bb_loc (edge edge_in)
2743 basic_block dest = edge_in->dest;
2744 basic_block dest_prev = dest->prev_bb;
2746 if (dest_prev)
2748 edge e = find_edge (dest_prev, dest);
2749 if (e && !(e->flags & EDGE_COMPLEX))
2750 return edge_in->src;
2752 return dest_prev;
2755 /* Split a (typically critical) edge EDGE_IN. Return the new block.
2756 Abort on abnormal edges. */
2758 static basic_block
2759 gimple_split_edge (edge edge_in)
2761 basic_block new_bb, after_bb, dest;
2762 edge new_edge, e;
2764 /* Abnormal edges cannot be split. */
2765 gcc_assert (!(edge_in->flags & EDGE_ABNORMAL));
2767 dest = edge_in->dest;
2769 after_bb = split_edge_bb_loc (edge_in);
2771 new_bb = create_empty_bb (after_bb);
2772 new_bb->frequency = EDGE_FREQUENCY (edge_in);
2773 new_bb->count = edge_in->count;
2774 new_edge = make_edge (new_bb, dest, EDGE_FALLTHRU);
2775 new_edge->probability = REG_BR_PROB_BASE;
2776 new_edge->count = edge_in->count;
2778 e = redirect_edge_and_branch (edge_in, new_bb);
2779 gcc_assert (e == edge_in);
2780 reinstall_phi_args (new_edge, e);
2782 return new_bb;
2786 /* Verify properties of the address expression T with base object BASE. */
2788 static tree
2789 verify_address (tree t, tree base)
2791 bool old_constant;
2792 bool old_side_effects;
2793 bool new_constant;
2794 bool new_side_effects;
2796 old_constant = TREE_CONSTANT (t);
2797 old_side_effects = TREE_SIDE_EFFECTS (t);
2799 recompute_tree_invariant_for_addr_expr (t);
2800 new_side_effects = TREE_SIDE_EFFECTS (t);
2801 new_constant = TREE_CONSTANT (t);
2803 if (old_constant != new_constant)
2805 error ("constant not recomputed when ADDR_EXPR changed");
2806 return t;
2808 if (old_side_effects != new_side_effects)
2810 error ("side effects not recomputed when ADDR_EXPR changed");
2811 return t;
2814 if (!(TREE_CODE (base) == VAR_DECL
2815 || TREE_CODE (base) == PARM_DECL
2816 || TREE_CODE (base) == RESULT_DECL))
2817 return NULL_TREE;
2819 if (DECL_GIMPLE_REG_P (base))
2821 error ("DECL_GIMPLE_REG_P set on a variable with address taken");
2822 return base;
2825 return NULL_TREE;
2828 /* Callback for walk_tree, check that all elements with address taken are
2829 properly noticed as such. The DATA is an int* that is 1 if TP was seen
2830 inside a PHI node. */
2832 static tree
2833 verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
2835 tree t = *tp, x;
2837 if (TYPE_P (t))
2838 *walk_subtrees = 0;
2840 /* Check operand N for being valid GIMPLE and give error MSG if not. */
2841 #define CHECK_OP(N, MSG) \
2842 do { if (!is_gimple_val (TREE_OPERAND (t, N))) \
2843 { error (MSG); return TREE_OPERAND (t, N); }} while (0)
2845 switch (TREE_CODE (t))
2847 case SSA_NAME:
2848 if (SSA_NAME_IN_FREE_LIST (t))
2850 error ("SSA name in freelist but still referenced");
2851 return *tp;
2853 break;
2855 case INDIRECT_REF:
2856 error ("INDIRECT_REF in gimple IL");
2857 return t;
2859 case MEM_REF:
2860 x = TREE_OPERAND (t, 0);
2861 if (!POINTER_TYPE_P (TREE_TYPE (x))
2862 || !is_gimple_mem_ref_addr (x))
2864 error ("invalid first operand of MEM_REF");
2865 return x;
2867 if (TREE_CODE (TREE_OPERAND (t, 1)) != INTEGER_CST
2868 || !POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (t, 1))))
2870 error ("invalid offset operand of MEM_REF");
2871 return TREE_OPERAND (t, 1);
2873 if (TREE_CODE (x) == ADDR_EXPR
2874 && (x = verify_address (x, TREE_OPERAND (x, 0))))
2875 return x;
2876 *walk_subtrees = 0;
2877 break;
2879 case ASSERT_EXPR:
2880 x = fold (ASSERT_EXPR_COND (t));
2881 if (x == boolean_false_node)
2883 error ("ASSERT_EXPR with an always-false condition");
2884 return *tp;
2886 break;
2888 case MODIFY_EXPR:
2889 error ("MODIFY_EXPR not expected while having tuples");
2890 return *tp;
2892 case ADDR_EXPR:
2894 tree tem;
2896 gcc_assert (is_gimple_address (t));
2898 /* Skip any references (they will be checked when we recurse down the
2899 tree) and ensure that any variable used as a prefix is marked
2900 addressable. */
2901 for (x = TREE_OPERAND (t, 0);
2902 handled_component_p (x);
2903 x = TREE_OPERAND (x, 0))
2906 if ((tem = verify_address (t, x)))
2907 return tem;
2909 if (!(TREE_CODE (x) == VAR_DECL
2910 || TREE_CODE (x) == PARM_DECL
2911 || TREE_CODE (x) == RESULT_DECL))
2912 return NULL;
2914 if (!TREE_ADDRESSABLE (x))
2916 error ("address taken, but ADDRESSABLE bit not set");
2917 return x;
2920 break;
2923 case COND_EXPR:
2924 x = COND_EXPR_COND (t);
2925 if (!INTEGRAL_TYPE_P (TREE_TYPE (x)))
2927 error ("non-integral used in condition");
2928 return x;
2930 if (!is_gimple_condexpr (x))
2932 error ("invalid conditional operand");
2933 return x;
2935 break;
2937 case NON_LVALUE_EXPR:
2938 case TRUTH_NOT_EXPR:
2939 gcc_unreachable ();
2941 CASE_CONVERT:
2942 case FIX_TRUNC_EXPR:
2943 case FLOAT_EXPR:
2944 case NEGATE_EXPR:
2945 case ABS_EXPR:
2946 case BIT_NOT_EXPR:
2947 CHECK_OP (0, "invalid operand to unary operator");
2948 break;
2950 case REALPART_EXPR:
2951 case IMAGPART_EXPR:
2952 case BIT_FIELD_REF:
2953 if (!is_gimple_reg_type (TREE_TYPE (t)))
2955 error ("non-scalar BIT_FIELD_REF, IMAGPART_EXPR or REALPART_EXPR");
2956 return t;
2959 if (TREE_CODE (t) == BIT_FIELD_REF)
2961 tree t0 = TREE_OPERAND (t, 0);
2962 tree t1 = TREE_OPERAND (t, 1);
2963 tree t2 = TREE_OPERAND (t, 2);
2964 if (!tree_fits_uhwi_p (t1)
2965 || !tree_fits_uhwi_p (t2))
2967 error ("invalid position or size operand to BIT_FIELD_REF");
2968 return t;
2970 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
2971 && (TYPE_PRECISION (TREE_TYPE (t))
2972 != tree_to_uhwi (t1)))
2974 error ("integral result type precision does not match "
2975 "field size of BIT_FIELD_REF");
2976 return t;
2978 else if (!INTEGRAL_TYPE_P (TREE_TYPE (t))
2979 && TYPE_MODE (TREE_TYPE (t)) != BLKmode
2980 && (GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (t)))
2981 != tree_to_uhwi (t1)))
2983 error ("mode precision of non-integral result does not "
2984 "match field size of BIT_FIELD_REF");
2985 return t;
2987 if (!AGGREGATE_TYPE_P (TREE_TYPE (t0))
2988 && (tree_to_uhwi (t1) + tree_to_uhwi (t2)
2989 > tree_to_uhwi (TYPE_SIZE (TREE_TYPE (t0)))))
2991 error ("position plus size exceeds size of referenced object in "
2992 "BIT_FIELD_REF");
2993 return t;
2996 t = TREE_OPERAND (t, 0);
2998 /* Fall-through. */
2999 case COMPONENT_REF:
3000 case ARRAY_REF:
3001 case ARRAY_RANGE_REF:
3002 case VIEW_CONVERT_EXPR:
3003 /* We have a nest of references. Verify that each of the operands
3004 that determine where to reference is either a constant or a variable,
3005 verify that the base is valid, and then show we've already checked
3006 the subtrees. */
3007 while (handled_component_p (t))
3009 if (TREE_CODE (t) == COMPONENT_REF && TREE_OPERAND (t, 2))
3010 CHECK_OP (2, "invalid COMPONENT_REF offset operator");
3011 else if (TREE_CODE (t) == ARRAY_REF
3012 || TREE_CODE (t) == ARRAY_RANGE_REF)
3014 CHECK_OP (1, "invalid array index");
3015 if (TREE_OPERAND (t, 2))
3016 CHECK_OP (2, "invalid array lower bound");
3017 if (TREE_OPERAND (t, 3))
3018 CHECK_OP (3, "invalid array stride");
3020 else if (TREE_CODE (t) == BIT_FIELD_REF
3021 || TREE_CODE (t) == REALPART_EXPR
3022 || TREE_CODE (t) == IMAGPART_EXPR)
3024 error ("non-top-level BIT_FIELD_REF, IMAGPART_EXPR or "
3025 "REALPART_EXPR");
3026 return t;
3029 t = TREE_OPERAND (t, 0);
3032 if (!is_gimple_min_invariant (t) && !is_gimple_lvalue (t))
3034 error ("invalid reference prefix");
3035 return t;
3037 *walk_subtrees = 0;
3038 break;
3039 case PLUS_EXPR:
3040 case MINUS_EXPR:
3041 /* PLUS_EXPR and MINUS_EXPR don't work on pointers, they should be done using
3042 POINTER_PLUS_EXPR. */
3043 if (POINTER_TYPE_P (TREE_TYPE (t)))
3045 error ("invalid operand to plus/minus, type is a pointer");
3046 return t;
3048 CHECK_OP (0, "invalid operand to binary operator");
3049 CHECK_OP (1, "invalid operand to binary operator");
3050 break;
3052 case POINTER_PLUS_EXPR:
3053 /* Check to make sure the first operand is a pointer or reference type. */
3054 if (!POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (t, 0))))
3056 error ("invalid operand to pointer plus, first operand is not a pointer");
3057 return t;
3059 /* Check to make sure the second operand is a ptrofftype. */
3060 if (!ptrofftype_p (TREE_TYPE (TREE_OPERAND (t, 1))))
3062 error ("invalid operand to pointer plus, second operand is not an "
3063 "integer type of appropriate width");
3064 return t;
3066 /* FALLTHROUGH */
3067 case LT_EXPR:
3068 case LE_EXPR:
3069 case GT_EXPR:
3070 case GE_EXPR:
3071 case EQ_EXPR:
3072 case NE_EXPR:
3073 case UNORDERED_EXPR:
3074 case ORDERED_EXPR:
3075 case UNLT_EXPR:
3076 case UNLE_EXPR:
3077 case UNGT_EXPR:
3078 case UNGE_EXPR:
3079 case UNEQ_EXPR:
3080 case LTGT_EXPR:
3081 case MULT_EXPR:
3082 case TRUNC_DIV_EXPR:
3083 case CEIL_DIV_EXPR:
3084 case FLOOR_DIV_EXPR:
3085 case ROUND_DIV_EXPR:
3086 case TRUNC_MOD_EXPR:
3087 case CEIL_MOD_EXPR:
3088 case FLOOR_MOD_EXPR:
3089 case ROUND_MOD_EXPR:
3090 case RDIV_EXPR:
3091 case EXACT_DIV_EXPR:
3092 case MIN_EXPR:
3093 case MAX_EXPR:
3094 case LSHIFT_EXPR:
3095 case RSHIFT_EXPR:
3096 case LROTATE_EXPR:
3097 case RROTATE_EXPR:
3098 case BIT_IOR_EXPR:
3099 case BIT_XOR_EXPR:
3100 case BIT_AND_EXPR:
3101 CHECK_OP (0, "invalid operand to binary operator");
3102 CHECK_OP (1, "invalid operand to binary operator");
3103 break;
3105 case CONSTRUCTOR:
3106 if (TREE_CONSTANT (t) && TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
3107 *walk_subtrees = 0;
3108 break;
3110 case CASE_LABEL_EXPR:
3111 if (CASE_CHAIN (t))
3113 error ("invalid CASE_CHAIN");
3114 return t;
3116 break;
3118 default:
3119 break;
3121 return NULL;
3123 #undef CHECK_OP
3127 /* Verify if EXPR is either a GIMPLE ID or a GIMPLE indirect reference.
3128 Returns true if there is an error, otherwise false. */
3130 static bool
3131 verify_types_in_gimple_min_lval (tree expr)
3133 tree op;
3135 if (is_gimple_id (expr))
3136 return false;
3138 if (TREE_CODE (expr) != TARGET_MEM_REF
3139 && TREE_CODE (expr) != MEM_REF)
3141 error ("invalid expression for min lvalue");
3142 return true;
3145 /* TARGET_MEM_REFs are strange beasts. */
3146 if (TREE_CODE (expr) == TARGET_MEM_REF)
3147 return false;
3149 op = TREE_OPERAND (expr, 0);
3150 if (!is_gimple_val (op))
3152 error ("invalid operand in indirect reference");
3153 debug_generic_stmt (op);
3154 return true;
3156 /* Memory references now generally can involve a value conversion. */
3158 return false;
3161 /* Verify if EXPR is a valid GIMPLE reference expression. If
3162 REQUIRE_LVALUE is true verifies it is an lvalue. Returns true
3163 if there is an error, otherwise false. */
3165 static bool
3166 verify_types_in_gimple_reference (tree expr, bool require_lvalue)
3168 while (handled_component_p (expr))
3170 tree op = TREE_OPERAND (expr, 0);
3172 if (TREE_CODE (expr) == ARRAY_REF
3173 || TREE_CODE (expr) == ARRAY_RANGE_REF)
3175 if (!is_gimple_val (TREE_OPERAND (expr, 1))
3176 || (TREE_OPERAND (expr, 2)
3177 && !is_gimple_val (TREE_OPERAND (expr, 2)))
3178 || (TREE_OPERAND (expr, 3)
3179 && !is_gimple_val (TREE_OPERAND (expr, 3))))
3181 error ("invalid operands to array reference");
3182 debug_generic_stmt (expr);
3183 return true;
3187 /* Verify if the reference array element types are compatible. */
3188 if (TREE_CODE (expr) == ARRAY_REF
3189 && !useless_type_conversion_p (TREE_TYPE (expr),
3190 TREE_TYPE (TREE_TYPE (op))))
3192 error ("type mismatch in array reference");
3193 debug_generic_stmt (TREE_TYPE (expr));
3194 debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3195 return true;
3197 if (TREE_CODE (expr) == ARRAY_RANGE_REF
3198 && !useless_type_conversion_p (TREE_TYPE (TREE_TYPE (expr)),
3199 TREE_TYPE (TREE_TYPE (op))))
3201 error ("type mismatch in array range reference");
3202 debug_generic_stmt (TREE_TYPE (TREE_TYPE (expr)));
3203 debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3204 return true;
3207 if ((TREE_CODE (expr) == REALPART_EXPR
3208 || TREE_CODE (expr) == IMAGPART_EXPR)
3209 && !useless_type_conversion_p (TREE_TYPE (expr),
3210 TREE_TYPE (TREE_TYPE (op))))
3212 error ("type mismatch in real/imagpart reference");
3213 debug_generic_stmt (TREE_TYPE (expr));
3214 debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3215 return true;
3218 if (TREE_CODE (expr) == COMPONENT_REF
3219 && !useless_type_conversion_p (TREE_TYPE (expr),
3220 TREE_TYPE (TREE_OPERAND (expr, 1))))
3222 error ("type mismatch in component reference");
3223 debug_generic_stmt (TREE_TYPE (expr));
3224 debug_generic_stmt (TREE_TYPE (TREE_OPERAND (expr, 1)));
3225 return true;
3228 if (TREE_CODE (expr) == VIEW_CONVERT_EXPR)
3230 /* For VIEW_CONVERT_EXPRs which are allowed here too, we only check
3231 that their operand is not an SSA name or an invariant when
3232 requiring an lvalue (this usually means there is a SRA or IPA-SRA
3233 bug). Otherwise there is nothing to verify, gross mismatches at
3234 most invoke undefined behavior. */
3235 if (require_lvalue
3236 && (TREE_CODE (op) == SSA_NAME
3237 || is_gimple_min_invariant (op)))
3239 error ("conversion of an SSA_NAME on the left hand side");
3240 debug_generic_stmt (expr);
3241 return true;
3243 else if (TREE_CODE (op) == SSA_NAME
3244 && TYPE_SIZE (TREE_TYPE (expr)) != TYPE_SIZE (TREE_TYPE (op)))
3246 error ("conversion of register to a different size");
3247 debug_generic_stmt (expr);
3248 return true;
3250 else if (!handled_component_p (op))
3251 return false;
3254 expr = op;
3257 if (TREE_CODE (expr) == MEM_REF)
3259 if (!is_gimple_mem_ref_addr (TREE_OPERAND (expr, 0)))
3261 error ("invalid address operand in MEM_REF");
3262 debug_generic_stmt (expr);
3263 return true;
3265 if (TREE_CODE (TREE_OPERAND (expr, 1)) != INTEGER_CST
3266 || !POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (expr, 1))))
3268 error ("invalid offset operand in MEM_REF");
3269 debug_generic_stmt (expr);
3270 return true;
3273 else if (TREE_CODE (expr) == TARGET_MEM_REF)
3275 if (!TMR_BASE (expr)
3276 || !is_gimple_mem_ref_addr (TMR_BASE (expr)))
3278 error ("invalid address operand in TARGET_MEM_REF");
3279 return true;
3281 if (!TMR_OFFSET (expr)
3282 || TREE_CODE (TMR_OFFSET (expr)) != INTEGER_CST
3283 || !POINTER_TYPE_P (TREE_TYPE (TMR_OFFSET (expr))))
3285 error ("invalid offset operand in TARGET_MEM_REF");
3286 debug_generic_stmt (expr);
3287 return true;
3291 return ((require_lvalue || !is_gimple_min_invariant (expr))
3292 && verify_types_in_gimple_min_lval (expr));
3295 /* Returns true if there is one pointer type in TYPE_POINTER_TO (SRC_OBJ)
3296 list of pointer-to types that is trivially convertible to DEST. */
3298 static bool
3299 one_pointer_to_useless_type_conversion_p (tree dest, tree src_obj)
3301 tree src;
3303 if (!TYPE_POINTER_TO (src_obj))
3304 return true;
3306 for (src = TYPE_POINTER_TO (src_obj); src; src = TYPE_NEXT_PTR_TO (src))
3307 if (useless_type_conversion_p (dest, src))
3308 return true;
3310 return false;
3313 /* Return true if TYPE1 is a fixed-point type and if conversions to and
3314 from TYPE2 can be handled by FIXED_CONVERT_EXPR. */
3316 static bool
3317 valid_fixed_convert_types_p (tree type1, tree type2)
3319 return (FIXED_POINT_TYPE_P (type1)
3320 && (INTEGRAL_TYPE_P (type2)
3321 || SCALAR_FLOAT_TYPE_P (type2)
3322 || FIXED_POINT_TYPE_P (type2)));
3325 /* Verify the contents of a GIMPLE_CALL STMT. Returns true when there
3326 is a problem, otherwise false. */
3328 static bool
3329 verify_gimple_call (gcall *stmt)
3331 tree fn = gimple_call_fn (stmt);
3332 tree fntype, fndecl;
3333 unsigned i;
3335 if (gimple_call_internal_p (stmt))
3337 if (fn)
3339 error ("gimple call has two targets");
3340 debug_generic_stmt (fn);
3341 return true;
3344 else
3346 if (!fn)
3348 error ("gimple call has no target");
3349 return true;
3353 if (fn && !is_gimple_call_addr (fn))
3355 error ("invalid function in gimple call");
3356 debug_generic_stmt (fn);
3357 return true;
3360 if (fn
3361 && (!POINTER_TYPE_P (TREE_TYPE (fn))
3362 || (TREE_CODE (TREE_TYPE (TREE_TYPE (fn))) != FUNCTION_TYPE
3363 && TREE_CODE (TREE_TYPE (TREE_TYPE (fn))) != METHOD_TYPE)))
3365 error ("non-function in gimple call");
3366 return true;
3369 fndecl = gimple_call_fndecl (stmt);
3370 if (fndecl
3371 && TREE_CODE (fndecl) == FUNCTION_DECL
3372 && DECL_LOOPING_CONST_OR_PURE_P (fndecl)
3373 && !DECL_PURE_P (fndecl)
3374 && !TREE_READONLY (fndecl))
3376 error ("invalid pure const state for function");
3377 return true;
3380 tree lhs = gimple_call_lhs (stmt);
3381 if (lhs
3382 && (!is_gimple_lvalue (lhs)
3383 || verify_types_in_gimple_reference (lhs, true)))
3385 error ("invalid LHS in gimple call");
3386 return true;
3389 if (lhs
3390 && gimple_call_ctrl_altering_p (stmt)
3391 && gimple_call_noreturn_p (stmt)
3392 && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (lhs))) == INTEGER_CST)
3394 error ("LHS in noreturn call");
3395 return true;
3398 fntype = gimple_call_fntype (stmt);
3399 if (fntype
3400 && lhs
3401 && !useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (fntype))
3402 /* ??? At least C++ misses conversions at assignments from
3403 void * call results.
3404 ??? Java is completely off. Especially with functions
3405 returning java.lang.Object.
3406 For now simply allow arbitrary pointer type conversions. */
3407 && !(POINTER_TYPE_P (TREE_TYPE (lhs))
3408 && POINTER_TYPE_P (TREE_TYPE (fntype))))
3410 error ("invalid conversion in gimple call");
3411 debug_generic_stmt (TREE_TYPE (lhs));
3412 debug_generic_stmt (TREE_TYPE (fntype));
3413 return true;
3416 if (gimple_call_chain (stmt)
3417 && !is_gimple_val (gimple_call_chain (stmt)))
3419 error ("invalid static chain in gimple call");
3420 debug_generic_stmt (gimple_call_chain (stmt));
3421 return true;
3424 /* If there is a static chain argument, the call should either be
3425 indirect, or the decl should have DECL_STATIC_CHAIN set. */
3426 if (gimple_call_chain (stmt)
3427 && fndecl
3428 && !DECL_STATIC_CHAIN (fndecl))
3430 error ("static chain with function that doesn%'t use one");
3431 return true;
3434 /* ??? The C frontend passes unpromoted arguments in case it
3435 didn't see a function declaration before the call. So for now
3436 leave the call arguments mostly unverified. Once we gimplify
3437 unit-at-a-time we have a chance to fix this. */
3439 for (i = 0; i < gimple_call_num_args (stmt); ++i)
3441 tree arg = gimple_call_arg (stmt, i);
3442 if ((is_gimple_reg_type (TREE_TYPE (arg))
3443 && !is_gimple_val (arg))
3444 || (!is_gimple_reg_type (TREE_TYPE (arg))
3445 && !is_gimple_lvalue (arg)))
3447 error ("invalid argument to gimple call");
3448 debug_generic_expr (arg);
3449 return true;
3453 return false;
3456 /* Verifies the gimple comparison with the result type TYPE and
3457 the operands OP0 and OP1. */
3459 static bool
3460 verify_gimple_comparison (tree type, tree op0, tree op1)
3462 tree op0_type = TREE_TYPE (op0);
3463 tree op1_type = TREE_TYPE (op1);
3465 if (!is_gimple_val (op0) || !is_gimple_val (op1))
3467 error ("invalid operands in gimple comparison");
3468 return true;
3471 /* For comparisons we do not have the operations type as the
3472 effective type the comparison is carried out in. Instead
3473 we require that either the first operand is trivially
3474 convertible into the second, or the other way around.
3475 Because we special-case pointers to void we allow
3476 comparisons of pointers with the same mode as well. */
3477 if (!useless_type_conversion_p (op0_type, op1_type)
3478 && !useless_type_conversion_p (op1_type, op0_type)
3479 && (!POINTER_TYPE_P (op0_type)
3480 || !POINTER_TYPE_P (op1_type)
3481 || TYPE_MODE (op0_type) != TYPE_MODE (op1_type)))
3483 error ("mismatching comparison operand types");
3484 debug_generic_expr (op0_type);
3485 debug_generic_expr (op1_type);
3486 return true;
3489 /* The resulting type of a comparison may be an effective boolean type. */
3490 if (INTEGRAL_TYPE_P (type)
3491 && (TREE_CODE (type) == BOOLEAN_TYPE
3492 || TYPE_PRECISION (type) == 1))
3494 if (TREE_CODE (op0_type) == VECTOR_TYPE
3495 || TREE_CODE (op1_type) == VECTOR_TYPE)
3497 error ("vector comparison returning a boolean");
3498 debug_generic_expr (op0_type);
3499 debug_generic_expr (op1_type);
3500 return true;
3503 /* Or an integer vector type with the same size and element count
3504 as the comparison operand types. */
3505 else if (TREE_CODE (type) == VECTOR_TYPE
3506 && TREE_CODE (TREE_TYPE (type)) == INTEGER_TYPE)
3508 if (TREE_CODE (op0_type) != VECTOR_TYPE
3509 || TREE_CODE (op1_type) != VECTOR_TYPE)
3511 error ("non-vector operands in vector comparison");
3512 debug_generic_expr (op0_type);
3513 debug_generic_expr (op1_type);
3514 return true;
3517 if (TYPE_VECTOR_SUBPARTS (type) != TYPE_VECTOR_SUBPARTS (op0_type)
3518 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (type)))
3519 != GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0_type))))
3520 /* The result of a vector comparison is of signed
3521 integral type. */
3522 || TYPE_UNSIGNED (TREE_TYPE (type)))
3524 error ("invalid vector comparison resulting type");
3525 debug_generic_expr (type);
3526 return true;
3529 else
3531 error ("bogus comparison result type");
3532 debug_generic_expr (type);
3533 return true;
3536 return false;
3539 /* Verify a gimple assignment statement STMT with an unary rhs.
3540 Returns true if anything is wrong. */
3542 static bool
3543 verify_gimple_assign_unary (gassign *stmt)
3545 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3546 tree lhs = gimple_assign_lhs (stmt);
3547 tree lhs_type = TREE_TYPE (lhs);
3548 tree rhs1 = gimple_assign_rhs1 (stmt);
3549 tree rhs1_type = TREE_TYPE (rhs1);
3551 if (!is_gimple_reg (lhs))
3553 error ("non-register as LHS of unary operation");
3554 return true;
3557 if (!is_gimple_val (rhs1))
3559 error ("invalid operand in unary operation");
3560 return true;
3563 /* First handle conversions. */
3564 switch (rhs_code)
3566 CASE_CONVERT:
3568 /* Allow conversions from pointer type to integral type only if
3569 there is no sign or zero extension involved.
3570 For targets were the precision of ptrofftype doesn't match that
3571 of pointers we need to allow arbitrary conversions to ptrofftype. */
3572 if ((POINTER_TYPE_P (lhs_type)
3573 && INTEGRAL_TYPE_P (rhs1_type))
3574 || (POINTER_TYPE_P (rhs1_type)
3575 && INTEGRAL_TYPE_P (lhs_type)
3576 && (TYPE_PRECISION (rhs1_type) >= TYPE_PRECISION (lhs_type)
3577 || ptrofftype_p (sizetype))))
3578 return false;
3580 /* Allow conversion from integral to offset type and vice versa. */
3581 if ((TREE_CODE (lhs_type) == OFFSET_TYPE
3582 && INTEGRAL_TYPE_P (rhs1_type))
3583 || (INTEGRAL_TYPE_P (lhs_type)
3584 && TREE_CODE (rhs1_type) == OFFSET_TYPE))
3585 return false;
3587 /* Otherwise assert we are converting between types of the
3588 same kind. */
3589 if (INTEGRAL_TYPE_P (lhs_type) != INTEGRAL_TYPE_P (rhs1_type))
3591 error ("invalid types in nop conversion");
3592 debug_generic_expr (lhs_type);
3593 debug_generic_expr (rhs1_type);
3594 return true;
3597 return false;
3600 case ADDR_SPACE_CONVERT_EXPR:
3602 if (!POINTER_TYPE_P (rhs1_type) || !POINTER_TYPE_P (lhs_type)
3603 || (TYPE_ADDR_SPACE (TREE_TYPE (rhs1_type))
3604 == TYPE_ADDR_SPACE (TREE_TYPE (lhs_type))))
3606 error ("invalid types in address space conversion");
3607 debug_generic_expr (lhs_type);
3608 debug_generic_expr (rhs1_type);
3609 return true;
3612 return false;
3615 case FIXED_CONVERT_EXPR:
3617 if (!valid_fixed_convert_types_p (lhs_type, rhs1_type)
3618 && !valid_fixed_convert_types_p (rhs1_type, lhs_type))
3620 error ("invalid types in fixed-point conversion");
3621 debug_generic_expr (lhs_type);
3622 debug_generic_expr (rhs1_type);
3623 return true;
3626 return false;
3629 case FLOAT_EXPR:
3631 if ((!INTEGRAL_TYPE_P (rhs1_type) || !SCALAR_FLOAT_TYPE_P (lhs_type))
3632 && (!VECTOR_INTEGER_TYPE_P (rhs1_type)
3633 || !VECTOR_FLOAT_TYPE_P (lhs_type)))
3635 error ("invalid types in conversion to floating point");
3636 debug_generic_expr (lhs_type);
3637 debug_generic_expr (rhs1_type);
3638 return true;
3641 return false;
3644 case FIX_TRUNC_EXPR:
3646 if ((!INTEGRAL_TYPE_P (lhs_type) || !SCALAR_FLOAT_TYPE_P (rhs1_type))
3647 && (!VECTOR_INTEGER_TYPE_P (lhs_type)
3648 || !VECTOR_FLOAT_TYPE_P (rhs1_type)))
3650 error ("invalid types in conversion to integer");
3651 debug_generic_expr (lhs_type);
3652 debug_generic_expr (rhs1_type);
3653 return true;
3656 return false;
3658 case REDUC_MAX_EXPR:
3659 case REDUC_MIN_EXPR:
3660 case REDUC_PLUS_EXPR:
3661 if (!VECTOR_TYPE_P (rhs1_type)
3662 || !useless_type_conversion_p (lhs_type, TREE_TYPE (rhs1_type)))
3664 error ("reduction should convert from vector to element type");
3665 debug_generic_expr (lhs_type);
3666 debug_generic_expr (rhs1_type);
3667 return true;
3669 return false;
3671 case VEC_UNPACK_HI_EXPR:
3672 case VEC_UNPACK_LO_EXPR:
3673 case VEC_UNPACK_FLOAT_HI_EXPR:
3674 case VEC_UNPACK_FLOAT_LO_EXPR:
3675 /* FIXME. */
3676 return false;
3678 case NEGATE_EXPR:
3679 case ABS_EXPR:
3680 case BIT_NOT_EXPR:
3681 case PAREN_EXPR:
3682 case CONJ_EXPR:
3683 break;
3685 default:
3686 gcc_unreachable ();
3689 /* For the remaining codes assert there is no conversion involved. */
3690 if (!useless_type_conversion_p (lhs_type, rhs1_type))
3692 error ("non-trivial conversion in unary operation");
3693 debug_generic_expr (lhs_type);
3694 debug_generic_expr (rhs1_type);
3695 return true;
3698 return false;
3701 /* Verify a gimple assignment statement STMT with a binary rhs.
3702 Returns true if anything is wrong. */
3704 static bool
3705 verify_gimple_assign_binary (gassign *stmt)
3707 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3708 tree lhs = gimple_assign_lhs (stmt);
3709 tree lhs_type = TREE_TYPE (lhs);
3710 tree rhs1 = gimple_assign_rhs1 (stmt);
3711 tree rhs1_type = TREE_TYPE (rhs1);
3712 tree rhs2 = gimple_assign_rhs2 (stmt);
3713 tree rhs2_type = TREE_TYPE (rhs2);
3715 if (!is_gimple_reg (lhs))
3717 error ("non-register as LHS of binary operation");
3718 return true;
3721 if (!is_gimple_val (rhs1)
3722 || !is_gimple_val (rhs2))
3724 error ("invalid operands in binary operation");
3725 return true;
3728 /* First handle operations that involve different types. */
3729 switch (rhs_code)
3731 case COMPLEX_EXPR:
3733 if (TREE_CODE (lhs_type) != COMPLEX_TYPE
3734 || !(INTEGRAL_TYPE_P (rhs1_type)
3735 || SCALAR_FLOAT_TYPE_P (rhs1_type))
3736 || !(INTEGRAL_TYPE_P (rhs2_type)
3737 || SCALAR_FLOAT_TYPE_P (rhs2_type)))
3739 error ("type mismatch in complex expression");
3740 debug_generic_expr (lhs_type);
3741 debug_generic_expr (rhs1_type);
3742 debug_generic_expr (rhs2_type);
3743 return true;
3746 return false;
3749 case LSHIFT_EXPR:
3750 case RSHIFT_EXPR:
3751 case LROTATE_EXPR:
3752 case RROTATE_EXPR:
3754 /* Shifts and rotates are ok on integral types, fixed point
3755 types and integer vector types. */
3756 if ((!INTEGRAL_TYPE_P (rhs1_type)
3757 && !FIXED_POINT_TYPE_P (rhs1_type)
3758 && !(TREE_CODE (rhs1_type) == VECTOR_TYPE
3759 && INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))))
3760 || (!INTEGRAL_TYPE_P (rhs2_type)
3761 /* Vector shifts of vectors are also ok. */
3762 && !(TREE_CODE (rhs1_type) == VECTOR_TYPE
3763 && INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))
3764 && TREE_CODE (rhs2_type) == VECTOR_TYPE
3765 && INTEGRAL_TYPE_P (TREE_TYPE (rhs2_type))))
3766 || !useless_type_conversion_p (lhs_type, rhs1_type))
3768 error ("type mismatch in shift expression");
3769 debug_generic_expr (lhs_type);
3770 debug_generic_expr (rhs1_type);
3771 debug_generic_expr (rhs2_type);
3772 return true;
3775 return false;
3778 case WIDEN_LSHIFT_EXPR:
3780 if (!INTEGRAL_TYPE_P (lhs_type)
3781 || !INTEGRAL_TYPE_P (rhs1_type)
3782 || TREE_CODE (rhs2) != INTEGER_CST
3783 || (2 * TYPE_PRECISION (rhs1_type) > TYPE_PRECISION (lhs_type)))
3785 error ("type mismatch in widening vector shift expression");
3786 debug_generic_expr (lhs_type);
3787 debug_generic_expr (rhs1_type);
3788 debug_generic_expr (rhs2_type);
3789 return true;
3792 return false;
3795 case VEC_WIDEN_LSHIFT_HI_EXPR:
3796 case VEC_WIDEN_LSHIFT_LO_EXPR:
3798 if (TREE_CODE (rhs1_type) != VECTOR_TYPE
3799 || TREE_CODE (lhs_type) != VECTOR_TYPE
3800 || !INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))
3801 || !INTEGRAL_TYPE_P (TREE_TYPE (lhs_type))
3802 || TREE_CODE (rhs2) != INTEGER_CST
3803 || (2 * TYPE_PRECISION (TREE_TYPE (rhs1_type))
3804 > TYPE_PRECISION (TREE_TYPE (lhs_type))))
3806 error ("type mismatch in widening vector shift expression");
3807 debug_generic_expr (lhs_type);
3808 debug_generic_expr (rhs1_type);
3809 debug_generic_expr (rhs2_type);
3810 return true;
3813 return false;
3816 case PLUS_EXPR:
3817 case MINUS_EXPR:
3819 tree lhs_etype = lhs_type;
3820 tree rhs1_etype = rhs1_type;
3821 tree rhs2_etype = rhs2_type;
3822 if (TREE_CODE (lhs_type) == VECTOR_TYPE)
3824 if (TREE_CODE (rhs1_type) != VECTOR_TYPE
3825 || TREE_CODE (rhs2_type) != VECTOR_TYPE)
3827 error ("invalid non-vector operands to vector valued plus");
3828 return true;
3830 lhs_etype = TREE_TYPE (lhs_type);
3831 rhs1_etype = TREE_TYPE (rhs1_type);
3832 rhs2_etype = TREE_TYPE (rhs2_type);
3834 if (POINTER_TYPE_P (lhs_etype)
3835 || POINTER_TYPE_P (rhs1_etype)
3836 || POINTER_TYPE_P (rhs2_etype))
3838 error ("invalid (pointer) operands to plus/minus");
3839 return true;
3842 /* Continue with generic binary expression handling. */
3843 break;
3846 case POINTER_PLUS_EXPR:
3848 if (!POINTER_TYPE_P (rhs1_type)
3849 || !useless_type_conversion_p (lhs_type, rhs1_type)
3850 || !ptrofftype_p (rhs2_type))
3852 error ("type mismatch in pointer plus expression");
3853 debug_generic_stmt (lhs_type);
3854 debug_generic_stmt (rhs1_type);
3855 debug_generic_stmt (rhs2_type);
3856 return true;
3859 return false;
3862 case TRUTH_ANDIF_EXPR:
3863 case TRUTH_ORIF_EXPR:
3864 case TRUTH_AND_EXPR:
3865 case TRUTH_OR_EXPR:
3866 case TRUTH_XOR_EXPR:
3868 gcc_unreachable ();
3870 case LT_EXPR:
3871 case LE_EXPR:
3872 case GT_EXPR:
3873 case GE_EXPR:
3874 case EQ_EXPR:
3875 case NE_EXPR:
3876 case UNORDERED_EXPR:
3877 case ORDERED_EXPR:
3878 case UNLT_EXPR:
3879 case UNLE_EXPR:
3880 case UNGT_EXPR:
3881 case UNGE_EXPR:
3882 case UNEQ_EXPR:
3883 case LTGT_EXPR:
3884 /* Comparisons are also binary, but the result type is not
3885 connected to the operand types. */
3886 return verify_gimple_comparison (lhs_type, rhs1, rhs2);
3888 case WIDEN_MULT_EXPR:
3889 if (TREE_CODE (lhs_type) != INTEGER_TYPE)
3890 return true;
3891 return ((2 * TYPE_PRECISION (rhs1_type) > TYPE_PRECISION (lhs_type))
3892 || (TYPE_PRECISION (rhs1_type) != TYPE_PRECISION (rhs2_type)));
3894 case WIDEN_SUM_EXPR:
3895 case VEC_WIDEN_MULT_HI_EXPR:
3896 case VEC_WIDEN_MULT_LO_EXPR:
3897 case VEC_WIDEN_MULT_EVEN_EXPR:
3898 case VEC_WIDEN_MULT_ODD_EXPR:
3899 case VEC_PACK_TRUNC_EXPR:
3900 case VEC_PACK_SAT_EXPR:
3901 case VEC_PACK_FIX_TRUNC_EXPR:
3902 /* FIXME. */
3903 return false;
3905 case MULT_EXPR:
3906 case MULT_HIGHPART_EXPR:
3907 case TRUNC_DIV_EXPR:
3908 case CEIL_DIV_EXPR:
3909 case FLOOR_DIV_EXPR:
3910 case ROUND_DIV_EXPR:
3911 case TRUNC_MOD_EXPR:
3912 case CEIL_MOD_EXPR:
3913 case FLOOR_MOD_EXPR:
3914 case ROUND_MOD_EXPR:
3915 case RDIV_EXPR:
3916 case EXACT_DIV_EXPR:
3917 case MIN_EXPR:
3918 case MAX_EXPR:
3919 case BIT_IOR_EXPR:
3920 case BIT_XOR_EXPR:
3921 case BIT_AND_EXPR:
3922 /* Continue with generic binary expression handling. */
3923 break;
3925 default:
3926 gcc_unreachable ();
3929 if (!useless_type_conversion_p (lhs_type, rhs1_type)
3930 || !useless_type_conversion_p (lhs_type, rhs2_type))
3932 error ("type mismatch in binary expression");
3933 debug_generic_stmt (lhs_type);
3934 debug_generic_stmt (rhs1_type);
3935 debug_generic_stmt (rhs2_type);
3936 return true;
3939 return false;
3942 /* Verify a gimple assignment statement STMT with a ternary rhs.
3943 Returns true if anything is wrong. */
3945 static bool
3946 verify_gimple_assign_ternary (gassign *stmt)
3948 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3949 tree lhs = gimple_assign_lhs (stmt);
3950 tree lhs_type = TREE_TYPE (lhs);
3951 tree rhs1 = gimple_assign_rhs1 (stmt);
3952 tree rhs1_type = TREE_TYPE (rhs1);
3953 tree rhs2 = gimple_assign_rhs2 (stmt);
3954 tree rhs2_type = TREE_TYPE (rhs2);
3955 tree rhs3 = gimple_assign_rhs3 (stmt);
3956 tree rhs3_type = TREE_TYPE (rhs3);
3958 if (!is_gimple_reg (lhs))
3960 error ("non-register as LHS of ternary operation");
3961 return true;
3964 if (((rhs_code == VEC_COND_EXPR || rhs_code == COND_EXPR)
3965 ? !is_gimple_condexpr (rhs1) : !is_gimple_val (rhs1))
3966 || !is_gimple_val (rhs2)
3967 || !is_gimple_val (rhs3))
3969 error ("invalid operands in ternary operation");
3970 return true;
3973 /* First handle operations that involve different types. */
3974 switch (rhs_code)
3976 case WIDEN_MULT_PLUS_EXPR:
3977 case WIDEN_MULT_MINUS_EXPR:
3978 if ((!INTEGRAL_TYPE_P (rhs1_type)
3979 && !FIXED_POINT_TYPE_P (rhs1_type))
3980 || !useless_type_conversion_p (rhs1_type, rhs2_type)
3981 || !useless_type_conversion_p (lhs_type, rhs3_type)
3982 || 2 * TYPE_PRECISION (rhs1_type) > TYPE_PRECISION (lhs_type)
3983 || TYPE_PRECISION (rhs1_type) != TYPE_PRECISION (rhs2_type))
3985 error ("type mismatch in widening multiply-accumulate expression");
3986 debug_generic_expr (lhs_type);
3987 debug_generic_expr (rhs1_type);
3988 debug_generic_expr (rhs2_type);
3989 debug_generic_expr (rhs3_type);
3990 return true;
3992 break;
3994 case FMA_EXPR:
3995 if (!useless_type_conversion_p (lhs_type, rhs1_type)
3996 || !useless_type_conversion_p (lhs_type, rhs2_type)
3997 || !useless_type_conversion_p (lhs_type, rhs3_type))
3999 error ("type mismatch in fused multiply-add expression");
4000 debug_generic_expr (lhs_type);
4001 debug_generic_expr (rhs1_type);
4002 debug_generic_expr (rhs2_type);
4003 debug_generic_expr (rhs3_type);
4004 return true;
4006 break;
4008 case COND_EXPR:
4009 case VEC_COND_EXPR:
4010 if (!useless_type_conversion_p (lhs_type, rhs2_type)
4011 || !useless_type_conversion_p (lhs_type, rhs3_type))
4013 error ("type mismatch in conditional expression");
4014 debug_generic_expr (lhs_type);
4015 debug_generic_expr (rhs2_type);
4016 debug_generic_expr (rhs3_type);
4017 return true;
4019 break;
4021 case VEC_PERM_EXPR:
4022 if (!useless_type_conversion_p (lhs_type, rhs1_type)
4023 || !useless_type_conversion_p (lhs_type, rhs2_type))
4025 error ("type mismatch in vector permute expression");
4026 debug_generic_expr (lhs_type);
4027 debug_generic_expr (rhs1_type);
4028 debug_generic_expr (rhs2_type);
4029 debug_generic_expr (rhs3_type);
4030 return true;
4033 if (TREE_CODE (rhs1_type) != VECTOR_TYPE
4034 || TREE_CODE (rhs2_type) != VECTOR_TYPE
4035 || TREE_CODE (rhs3_type) != VECTOR_TYPE)
4037 error ("vector types expected in vector permute expression");
4038 debug_generic_expr (lhs_type);
4039 debug_generic_expr (rhs1_type);
4040 debug_generic_expr (rhs2_type);
4041 debug_generic_expr (rhs3_type);
4042 return true;
4045 if (TYPE_VECTOR_SUBPARTS (rhs1_type) != TYPE_VECTOR_SUBPARTS (rhs2_type)
4046 || TYPE_VECTOR_SUBPARTS (rhs2_type)
4047 != TYPE_VECTOR_SUBPARTS (rhs3_type)
4048 || TYPE_VECTOR_SUBPARTS (rhs3_type)
4049 != TYPE_VECTOR_SUBPARTS (lhs_type))
4051 error ("vectors with different element number found "
4052 "in vector permute expression");
4053 debug_generic_expr (lhs_type);
4054 debug_generic_expr (rhs1_type);
4055 debug_generic_expr (rhs2_type);
4056 debug_generic_expr (rhs3_type);
4057 return true;
4060 if (TREE_CODE (TREE_TYPE (rhs3_type)) != INTEGER_TYPE
4061 || GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (rhs3_type)))
4062 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (rhs1_type))))
4064 error ("invalid mask type in vector permute expression");
4065 debug_generic_expr (lhs_type);
4066 debug_generic_expr (rhs1_type);
4067 debug_generic_expr (rhs2_type);
4068 debug_generic_expr (rhs3_type);
4069 return true;
4072 return false;
4074 case SAD_EXPR:
4075 if (!useless_type_conversion_p (rhs1_type, rhs2_type)
4076 || !useless_type_conversion_p (lhs_type, rhs3_type)
4077 || 2 * GET_MODE_BITSIZE (GET_MODE_INNER
4078 (TYPE_MODE (TREE_TYPE (rhs1_type))))
4079 > GET_MODE_BITSIZE (GET_MODE_INNER
4080 (TYPE_MODE (TREE_TYPE (lhs_type)))))
4082 error ("type mismatch in sad expression");
4083 debug_generic_expr (lhs_type);
4084 debug_generic_expr (rhs1_type);
4085 debug_generic_expr (rhs2_type);
4086 debug_generic_expr (rhs3_type);
4087 return true;
4090 if (TREE_CODE (rhs1_type) != VECTOR_TYPE
4091 || TREE_CODE (rhs2_type) != VECTOR_TYPE
4092 || TREE_CODE (rhs3_type) != VECTOR_TYPE)
4094 error ("vector types expected in sad expression");
4095 debug_generic_expr (lhs_type);
4096 debug_generic_expr (rhs1_type);
4097 debug_generic_expr (rhs2_type);
4098 debug_generic_expr (rhs3_type);
4099 return true;
4102 return false;
4104 case DOT_PROD_EXPR:
4105 case REALIGN_LOAD_EXPR:
4106 /* FIXME. */
4107 return false;
4109 default:
4110 gcc_unreachable ();
4112 return false;
4115 /* Verify a gimple assignment statement STMT with a single rhs.
4116 Returns true if anything is wrong. */
4118 static bool
4119 verify_gimple_assign_single (gassign *stmt)
4121 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
4122 tree lhs = gimple_assign_lhs (stmt);
4123 tree lhs_type = TREE_TYPE (lhs);
4124 tree rhs1 = gimple_assign_rhs1 (stmt);
4125 tree rhs1_type = TREE_TYPE (rhs1);
4126 bool res = false;
4128 if (!useless_type_conversion_p (lhs_type, rhs1_type))
4130 error ("non-trivial conversion at assignment");
4131 debug_generic_expr (lhs_type);
4132 debug_generic_expr (rhs1_type);
4133 return true;
4136 if (gimple_clobber_p (stmt)
4137 && !(DECL_P (lhs) || TREE_CODE (lhs) == MEM_REF))
4139 error ("non-decl/MEM_REF LHS in clobber statement");
4140 debug_generic_expr (lhs);
4141 return true;
4144 if (handled_component_p (lhs)
4145 || TREE_CODE (lhs) == MEM_REF
4146 || TREE_CODE (lhs) == TARGET_MEM_REF)
4147 res |= verify_types_in_gimple_reference (lhs, true);
4149 /* Special codes we cannot handle via their class. */
4150 switch (rhs_code)
4152 case ADDR_EXPR:
4154 tree op = TREE_OPERAND (rhs1, 0);
4155 if (!is_gimple_addressable (op))
4157 error ("invalid operand in unary expression");
4158 return true;
4161 /* Technically there is no longer a need for matching types, but
4162 gimple hygiene asks for this check. In LTO we can end up
4163 combining incompatible units and thus end up with addresses
4164 of globals that change their type to a common one. */
4165 if (!in_lto_p
4166 && !types_compatible_p (TREE_TYPE (op),
4167 TREE_TYPE (TREE_TYPE (rhs1)))
4168 && !one_pointer_to_useless_type_conversion_p (TREE_TYPE (rhs1),
4169 TREE_TYPE (op)))
4171 error ("type mismatch in address expression");
4172 debug_generic_stmt (TREE_TYPE (rhs1));
4173 debug_generic_stmt (TREE_TYPE (op));
4174 return true;
4177 return verify_types_in_gimple_reference (op, true);
4180 /* tcc_reference */
4181 case INDIRECT_REF:
4182 error ("INDIRECT_REF in gimple IL");
4183 return true;
4185 case COMPONENT_REF:
4186 case BIT_FIELD_REF:
4187 case ARRAY_REF:
4188 case ARRAY_RANGE_REF:
4189 case VIEW_CONVERT_EXPR:
4190 case REALPART_EXPR:
4191 case IMAGPART_EXPR:
4192 case TARGET_MEM_REF:
4193 case MEM_REF:
4194 if (!is_gimple_reg (lhs)
4195 && is_gimple_reg_type (TREE_TYPE (lhs)))
4197 error ("invalid rhs for gimple memory store");
4198 debug_generic_stmt (lhs);
4199 debug_generic_stmt (rhs1);
4200 return true;
4202 return res || verify_types_in_gimple_reference (rhs1, false);
4204 /* tcc_constant */
4205 case SSA_NAME:
4206 case INTEGER_CST:
4207 case REAL_CST:
4208 case FIXED_CST:
4209 case COMPLEX_CST:
4210 case VECTOR_CST:
4211 case STRING_CST:
4212 return res;
4214 /* tcc_declaration */
4215 case CONST_DECL:
4216 return res;
4217 case VAR_DECL:
4218 case PARM_DECL:
4219 if (!is_gimple_reg (lhs)
4220 && !is_gimple_reg (rhs1)
4221 && is_gimple_reg_type (TREE_TYPE (lhs)))
4223 error ("invalid rhs for gimple memory store");
4224 debug_generic_stmt (lhs);
4225 debug_generic_stmt (rhs1);
4226 return true;
4228 return res;
4230 case CONSTRUCTOR:
4231 if (TREE_CODE (rhs1_type) == VECTOR_TYPE)
4233 unsigned int i;
4234 tree elt_i, elt_v, elt_t = NULL_TREE;
4236 if (CONSTRUCTOR_NELTS (rhs1) == 0)
4237 return res;
4238 /* For vector CONSTRUCTORs we require that either it is empty
4239 CONSTRUCTOR, or it is a CONSTRUCTOR of smaller vector elements
4240 (then the element count must be correct to cover the whole
4241 outer vector and index must be NULL on all elements, or it is
4242 a CONSTRUCTOR of scalar elements, where we as an exception allow
4243 smaller number of elements (assuming zero filling) and
4244 consecutive indexes as compared to NULL indexes (such
4245 CONSTRUCTORs can appear in the IL from FEs). */
4246 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (rhs1), i, elt_i, elt_v)
4248 if (elt_t == NULL_TREE)
4250 elt_t = TREE_TYPE (elt_v);
4251 if (TREE_CODE (elt_t) == VECTOR_TYPE)
4253 tree elt_t = TREE_TYPE (elt_v);
4254 if (!useless_type_conversion_p (TREE_TYPE (rhs1_type),
4255 TREE_TYPE (elt_t)))
4257 error ("incorrect type of vector CONSTRUCTOR"
4258 " elements");
4259 debug_generic_stmt (rhs1);
4260 return true;
4262 else if (CONSTRUCTOR_NELTS (rhs1)
4263 * TYPE_VECTOR_SUBPARTS (elt_t)
4264 != TYPE_VECTOR_SUBPARTS (rhs1_type))
4266 error ("incorrect number of vector CONSTRUCTOR"
4267 " elements");
4268 debug_generic_stmt (rhs1);
4269 return true;
4272 else if (!useless_type_conversion_p (TREE_TYPE (rhs1_type),
4273 elt_t))
4275 error ("incorrect type of vector CONSTRUCTOR elements");
4276 debug_generic_stmt (rhs1);
4277 return true;
4279 else if (CONSTRUCTOR_NELTS (rhs1)
4280 > TYPE_VECTOR_SUBPARTS (rhs1_type))
4282 error ("incorrect number of vector CONSTRUCTOR elements");
4283 debug_generic_stmt (rhs1);
4284 return true;
4287 else if (!useless_type_conversion_p (elt_t, TREE_TYPE (elt_v)))
4289 error ("incorrect type of vector CONSTRUCTOR elements");
4290 debug_generic_stmt (rhs1);
4291 return true;
4293 if (elt_i != NULL_TREE
4294 && (TREE_CODE (elt_t) == VECTOR_TYPE
4295 || TREE_CODE (elt_i) != INTEGER_CST
4296 || compare_tree_int (elt_i, i) != 0))
4298 error ("vector CONSTRUCTOR with non-NULL element index");
4299 debug_generic_stmt (rhs1);
4300 return true;
4302 if (!is_gimple_val (elt_v))
4304 error ("vector CONSTRUCTOR element is not a GIMPLE value");
4305 debug_generic_stmt (rhs1);
4306 return true;
4310 else if (CONSTRUCTOR_NELTS (rhs1) != 0)
4312 error ("non-vector CONSTRUCTOR with elements");
4313 debug_generic_stmt (rhs1);
4314 return true;
4316 return res;
4317 case OBJ_TYPE_REF:
4318 case ASSERT_EXPR:
4319 case WITH_SIZE_EXPR:
4320 /* FIXME. */
4321 return res;
4323 default:;
4326 return res;
4329 /* Verify the contents of a GIMPLE_ASSIGN STMT. Returns true when there
4330 is a problem, otherwise false. */
4332 static bool
4333 verify_gimple_assign (gassign *stmt)
4335 switch (gimple_assign_rhs_class (stmt))
4337 case GIMPLE_SINGLE_RHS:
4338 return verify_gimple_assign_single (stmt);
4340 case GIMPLE_UNARY_RHS:
4341 return verify_gimple_assign_unary (stmt);
4343 case GIMPLE_BINARY_RHS:
4344 return verify_gimple_assign_binary (stmt);
4346 case GIMPLE_TERNARY_RHS:
4347 return verify_gimple_assign_ternary (stmt);
4349 default:
4350 gcc_unreachable ();
4354 /* Verify the contents of a GIMPLE_RETURN STMT. Returns true when there
4355 is a problem, otherwise false. */
4357 static bool
4358 verify_gimple_return (greturn *stmt)
4360 tree op = gimple_return_retval (stmt);
4361 tree restype = TREE_TYPE (TREE_TYPE (cfun->decl));
4363 /* We cannot test for present return values as we do not fix up missing
4364 return values from the original source. */
4365 if (op == NULL)
4366 return false;
4368 if (!is_gimple_val (op)
4369 && TREE_CODE (op) != RESULT_DECL)
4371 error ("invalid operand in return statement");
4372 debug_generic_stmt (op);
4373 return true;
4376 if ((TREE_CODE (op) == RESULT_DECL
4377 && DECL_BY_REFERENCE (op))
4378 || (TREE_CODE (op) == SSA_NAME
4379 && SSA_NAME_VAR (op)
4380 && TREE_CODE (SSA_NAME_VAR (op)) == RESULT_DECL
4381 && DECL_BY_REFERENCE (SSA_NAME_VAR (op))))
4382 op = TREE_TYPE (op);
4384 if (!useless_type_conversion_p (restype, TREE_TYPE (op)))
4386 error ("invalid conversion in return statement");
4387 debug_generic_stmt (restype);
4388 debug_generic_stmt (TREE_TYPE (op));
4389 return true;
4392 return false;
4396 /* Verify the contents of a GIMPLE_GOTO STMT. Returns true when there
4397 is a problem, otherwise false. */
4399 static bool
4400 verify_gimple_goto (ggoto *stmt)
4402 tree dest = gimple_goto_dest (stmt);
4404 /* ??? We have two canonical forms of direct goto destinations, a
4405 bare LABEL_DECL and an ADDR_EXPR of a LABEL_DECL. */
4406 if (TREE_CODE (dest) != LABEL_DECL
4407 && (!is_gimple_val (dest)
4408 || !POINTER_TYPE_P (TREE_TYPE (dest))))
4410 error ("goto destination is neither a label nor a pointer");
4411 return true;
4414 return false;
4417 /* Verify the contents of a GIMPLE_SWITCH STMT. Returns true when there
4418 is a problem, otherwise false. */
4420 static bool
4421 verify_gimple_switch (gswitch *stmt)
4423 unsigned int i, n;
4424 tree elt, prev_upper_bound = NULL_TREE;
4425 tree index_type, elt_type = NULL_TREE;
4427 if (!is_gimple_val (gimple_switch_index (stmt)))
4429 error ("invalid operand to switch statement");
4430 debug_generic_stmt (gimple_switch_index (stmt));
4431 return true;
4434 index_type = TREE_TYPE (gimple_switch_index (stmt));
4435 if (! INTEGRAL_TYPE_P (index_type))
4437 error ("non-integral type switch statement");
4438 debug_generic_expr (index_type);
4439 return true;
4442 elt = gimple_switch_label (stmt, 0);
4443 if (CASE_LOW (elt) != NULL_TREE || CASE_HIGH (elt) != NULL_TREE)
4445 error ("invalid default case label in switch statement");
4446 debug_generic_expr (elt);
4447 return true;
4450 n = gimple_switch_num_labels (stmt);
4451 for (i = 1; i < n; i++)
4453 elt = gimple_switch_label (stmt, i);
4455 if (! CASE_LOW (elt))
4457 error ("invalid case label in switch statement");
4458 debug_generic_expr (elt);
4459 return true;
4461 if (CASE_HIGH (elt)
4462 && ! tree_int_cst_lt (CASE_LOW (elt), CASE_HIGH (elt)))
4464 error ("invalid case range in switch statement");
4465 debug_generic_expr (elt);
4466 return true;
4469 if (elt_type)
4471 if (TREE_TYPE (CASE_LOW (elt)) != elt_type
4472 || (CASE_HIGH (elt) && TREE_TYPE (CASE_HIGH (elt)) != elt_type))
4474 error ("type mismatch for case label in switch statement");
4475 debug_generic_expr (elt);
4476 return true;
4479 else
4481 elt_type = TREE_TYPE (CASE_LOW (elt));
4482 if (TYPE_PRECISION (index_type) < TYPE_PRECISION (elt_type))
4484 error ("type precision mismatch in switch statement");
4485 return true;
4489 if (prev_upper_bound)
4491 if (! tree_int_cst_lt (prev_upper_bound, CASE_LOW (elt)))
4493 error ("case labels not sorted in switch statement");
4494 return true;
4498 prev_upper_bound = CASE_HIGH (elt);
4499 if (! prev_upper_bound)
4500 prev_upper_bound = CASE_LOW (elt);
4503 return false;
4506 /* Verify a gimple debug statement STMT.
4507 Returns true if anything is wrong. */
4509 static bool
4510 verify_gimple_debug (gimple stmt ATTRIBUTE_UNUSED)
4512 /* There isn't much that could be wrong in a gimple debug stmt. A
4513 gimple debug bind stmt, for example, maps a tree, that's usually
4514 a VAR_DECL or a PARM_DECL, but that could also be some scalarized
4515 component or member of an aggregate type, to another tree, that
4516 can be an arbitrary expression. These stmts expand into debug
4517 insns, and are converted to debug notes by var-tracking.c. */
4518 return false;
4521 /* Verify a gimple label statement STMT.
4522 Returns true if anything is wrong. */
4524 static bool
4525 verify_gimple_label (glabel *stmt)
4527 tree decl = gimple_label_label (stmt);
4528 int uid;
4529 bool err = false;
4531 if (TREE_CODE (decl) != LABEL_DECL)
4532 return true;
4533 if (!DECL_NONLOCAL (decl) && !FORCED_LABEL (decl)
4534 && DECL_CONTEXT (decl) != current_function_decl)
4536 error ("label's context is not the current function decl");
4537 err |= true;
4540 uid = LABEL_DECL_UID (decl);
4541 if (cfun->cfg
4542 && (uid == -1
4543 || (*label_to_block_map_for_fn (cfun))[uid] != gimple_bb (stmt)))
4545 error ("incorrect entry in label_to_block_map");
4546 err |= true;
4549 uid = EH_LANDING_PAD_NR (decl);
4550 if (uid)
4552 eh_landing_pad lp = get_eh_landing_pad_from_number (uid);
4553 if (decl != lp->post_landing_pad)
4555 error ("incorrect setting of landing pad number");
4556 err |= true;
4560 return err;
4563 /* Verify a gimple cond statement STMT.
4564 Returns true if anything is wrong. */
4566 static bool
4567 verify_gimple_cond (gcond *stmt)
4569 if (TREE_CODE_CLASS (gimple_cond_code (stmt)) != tcc_comparison)
4571 error ("invalid comparison code in gimple cond");
4572 return true;
4574 if (!(!gimple_cond_true_label (stmt)
4575 || TREE_CODE (gimple_cond_true_label (stmt)) == LABEL_DECL)
4576 || !(!gimple_cond_false_label (stmt)
4577 || TREE_CODE (gimple_cond_false_label (stmt)) == LABEL_DECL))
4579 error ("invalid labels in gimple cond");
4580 return true;
4583 return verify_gimple_comparison (boolean_type_node,
4584 gimple_cond_lhs (stmt),
4585 gimple_cond_rhs (stmt));
4588 /* Verify the GIMPLE statement STMT. Returns true if there is an
4589 error, otherwise false. */
4591 static bool
4592 verify_gimple_stmt (gimple stmt)
4594 switch (gimple_code (stmt))
4596 case GIMPLE_ASSIGN:
4597 return verify_gimple_assign (as_a <gassign *> (stmt));
4599 case GIMPLE_LABEL:
4600 return verify_gimple_label (as_a <glabel *> (stmt));
4602 case GIMPLE_CALL:
4603 return verify_gimple_call (as_a <gcall *> (stmt));
4605 case GIMPLE_COND:
4606 return verify_gimple_cond (as_a <gcond *> (stmt));
4608 case GIMPLE_GOTO:
4609 return verify_gimple_goto (as_a <ggoto *> (stmt));
4611 case GIMPLE_SWITCH:
4612 return verify_gimple_switch (as_a <gswitch *> (stmt));
4614 case GIMPLE_RETURN:
4615 return verify_gimple_return (as_a <greturn *> (stmt));
4617 case GIMPLE_ASM:
4618 return false;
4620 case GIMPLE_TRANSACTION:
4621 return verify_gimple_transaction (as_a <gtransaction *> (stmt));
4623 /* Tuples that do not have tree operands. */
4624 case GIMPLE_NOP:
4625 case GIMPLE_PREDICT:
4626 case GIMPLE_RESX:
4627 case GIMPLE_EH_DISPATCH:
4628 case GIMPLE_EH_MUST_NOT_THROW:
4629 return false;
4631 CASE_GIMPLE_OMP:
4632 /* OpenMP directives are validated by the FE and never operated
4633 on by the optimizers. Furthermore, GIMPLE_OMP_FOR may contain
4634 non-gimple expressions when the main index variable has had
4635 its address taken. This does not affect the loop itself
4636 because the header of an GIMPLE_OMP_FOR is merely used to determine
4637 how to setup the parallel iteration. */
4638 return false;
4640 case GIMPLE_DEBUG:
4641 return verify_gimple_debug (stmt);
4643 default:
4644 gcc_unreachable ();
4648 /* Verify the contents of a GIMPLE_PHI. Returns true if there is a problem,
4649 and false otherwise. */
4651 static bool
4652 verify_gimple_phi (gimple phi)
4654 bool err = false;
4655 unsigned i;
4656 tree phi_result = gimple_phi_result (phi);
4657 bool virtual_p;
4659 if (!phi_result)
4661 error ("invalid PHI result");
4662 return true;
4665 virtual_p = virtual_operand_p (phi_result);
4666 if (TREE_CODE (phi_result) != SSA_NAME
4667 || (virtual_p
4668 && SSA_NAME_VAR (phi_result) != gimple_vop (cfun)))
4670 error ("invalid PHI result");
4671 err = true;
4674 for (i = 0; i < gimple_phi_num_args (phi); i++)
4676 tree t = gimple_phi_arg_def (phi, i);
4678 if (!t)
4680 error ("missing PHI def");
4681 err |= true;
4682 continue;
4684 /* Addressable variables do have SSA_NAMEs but they
4685 are not considered gimple values. */
4686 else if ((TREE_CODE (t) == SSA_NAME
4687 && virtual_p != virtual_operand_p (t))
4688 || (virtual_p
4689 && (TREE_CODE (t) != SSA_NAME
4690 || SSA_NAME_VAR (t) != gimple_vop (cfun)))
4691 || (!virtual_p
4692 && !is_gimple_val (t)))
4694 error ("invalid PHI argument");
4695 debug_generic_expr (t);
4696 err |= true;
4698 #ifdef ENABLE_TYPES_CHECKING
4699 if (!useless_type_conversion_p (TREE_TYPE (phi_result), TREE_TYPE (t)))
4701 error ("incompatible types in PHI argument %u", i);
4702 debug_generic_stmt (TREE_TYPE (phi_result));
4703 debug_generic_stmt (TREE_TYPE (t));
4704 err |= true;
4706 #endif
4709 return err;
4712 /* Verify the GIMPLE statements inside the sequence STMTS. */
4714 static bool
4715 verify_gimple_in_seq_2 (gimple_seq stmts)
4717 gimple_stmt_iterator ittr;
4718 bool err = false;
4720 for (ittr = gsi_start (stmts); !gsi_end_p (ittr); gsi_next (&ittr))
4722 gimple stmt = gsi_stmt (ittr);
4724 switch (gimple_code (stmt))
4726 case GIMPLE_BIND:
4727 err |= verify_gimple_in_seq_2 (
4728 gimple_bind_body (as_a <gbind *> (stmt)));
4729 break;
4731 case GIMPLE_TRY:
4732 err |= verify_gimple_in_seq_2 (gimple_try_eval (stmt));
4733 err |= verify_gimple_in_seq_2 (gimple_try_cleanup (stmt));
4734 break;
4736 case GIMPLE_EH_FILTER:
4737 err |= verify_gimple_in_seq_2 (gimple_eh_filter_failure (stmt));
4738 break;
4740 case GIMPLE_EH_ELSE:
4742 geh_else *eh_else = as_a <geh_else *> (stmt);
4743 err |= verify_gimple_in_seq_2 (gimple_eh_else_n_body (eh_else));
4744 err |= verify_gimple_in_seq_2 (gimple_eh_else_e_body (eh_else));
4746 break;
4748 case GIMPLE_CATCH:
4749 err |= verify_gimple_in_seq_2 (gimple_catch_handler (
4750 as_a <gcatch *> (stmt)));
4751 break;
4753 case GIMPLE_TRANSACTION:
4754 err |= verify_gimple_transaction (as_a <gtransaction *> (stmt));
4755 break;
4757 default:
4759 bool err2 = verify_gimple_stmt (stmt);
4760 if (err2)
4761 debug_gimple_stmt (stmt);
4762 err |= err2;
4767 return err;
4770 /* Verify the contents of a GIMPLE_TRANSACTION. Returns true if there
4771 is a problem, otherwise false. */
4773 static bool
4774 verify_gimple_transaction (gtransaction *stmt)
4776 tree lab = gimple_transaction_label (stmt);
4777 if (lab != NULL && TREE_CODE (lab) != LABEL_DECL)
4778 return true;
4779 return verify_gimple_in_seq_2 (gimple_transaction_body (stmt));
4783 /* Verify the GIMPLE statements inside the statement list STMTS. */
4785 DEBUG_FUNCTION void
4786 verify_gimple_in_seq (gimple_seq stmts)
4788 timevar_push (TV_TREE_STMT_VERIFY);
4789 if (verify_gimple_in_seq_2 (stmts))
4790 internal_error ("verify_gimple failed");
4791 timevar_pop (TV_TREE_STMT_VERIFY);
4794 /* Return true when the T can be shared. */
4796 static bool
4797 tree_node_can_be_shared (tree t)
4799 if (IS_TYPE_OR_DECL_P (t)
4800 || is_gimple_min_invariant (t)
4801 || TREE_CODE (t) == SSA_NAME
4802 || t == error_mark_node
4803 || TREE_CODE (t) == IDENTIFIER_NODE)
4804 return true;
4806 if (TREE_CODE (t) == CASE_LABEL_EXPR)
4807 return true;
4809 if (DECL_P (t))
4810 return true;
4812 return false;
4815 /* Called via walk_tree. Verify tree sharing. */
4817 static tree
4818 verify_node_sharing_1 (tree *tp, int *walk_subtrees, void *data)
4820 hash_set<void *> *visited = (hash_set<void *> *) data;
4822 if (tree_node_can_be_shared (*tp))
4824 *walk_subtrees = false;
4825 return NULL;
4828 if (visited->add (*tp))
4829 return *tp;
4831 return NULL;
4834 /* Called via walk_gimple_stmt. Verify tree sharing. */
4836 static tree
4837 verify_node_sharing (tree *tp, int *walk_subtrees, void *data)
4839 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
4840 return verify_node_sharing_1 (tp, walk_subtrees, wi->info);
4843 static bool eh_error_found;
4844 bool
4845 verify_eh_throw_stmt_node (const gimple &stmt, const int &,
4846 hash_set<gimple> *visited)
4848 if (!visited->contains (stmt))
4850 error ("dead STMT in EH table");
4851 debug_gimple_stmt (stmt);
4852 eh_error_found = true;
4854 return true;
4857 /* Verify if the location LOCs block is in BLOCKS. */
4859 static bool
4860 verify_location (hash_set<tree> *blocks, location_t loc)
4862 tree block = LOCATION_BLOCK (loc);
4863 if (block != NULL_TREE
4864 && !blocks->contains (block))
4866 error ("location references block not in block tree");
4867 return true;
4869 if (block != NULL_TREE)
4870 return verify_location (blocks, BLOCK_SOURCE_LOCATION (block));
4871 return false;
4874 /* Called via walk_tree. Verify that expressions have no blocks. */
4876 static tree
4877 verify_expr_no_block (tree *tp, int *walk_subtrees, void *)
4879 if (!EXPR_P (*tp))
4881 *walk_subtrees = false;
4882 return NULL;
4885 location_t loc = EXPR_LOCATION (*tp);
4886 if (LOCATION_BLOCK (loc) != NULL)
4887 return *tp;
4889 return NULL;
4892 /* Called via walk_tree. Verify locations of expressions. */
4894 static tree
4895 verify_expr_location_1 (tree *tp, int *walk_subtrees, void *data)
4897 hash_set<tree> *blocks = (hash_set<tree> *) data;
4899 if (TREE_CODE (*tp) == VAR_DECL
4900 && DECL_HAS_DEBUG_EXPR_P (*tp))
4902 tree t = DECL_DEBUG_EXPR (*tp);
4903 tree addr = walk_tree (&t, verify_expr_no_block, NULL, NULL);
4904 if (addr)
4905 return addr;
4907 if ((TREE_CODE (*tp) == VAR_DECL
4908 || TREE_CODE (*tp) == PARM_DECL
4909 || TREE_CODE (*tp) == RESULT_DECL)
4910 && DECL_HAS_VALUE_EXPR_P (*tp))
4912 tree t = DECL_VALUE_EXPR (*tp);
4913 tree addr = walk_tree (&t, verify_expr_no_block, NULL, NULL);
4914 if (addr)
4915 return addr;
4918 if (!EXPR_P (*tp))
4920 *walk_subtrees = false;
4921 return NULL;
4924 location_t loc = EXPR_LOCATION (*tp);
4925 if (verify_location (blocks, loc))
4926 return *tp;
4928 return NULL;
4931 /* Called via walk_gimple_op. Verify locations of expressions. */
4933 static tree
4934 verify_expr_location (tree *tp, int *walk_subtrees, void *data)
4936 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
4937 return verify_expr_location_1 (tp, walk_subtrees, wi->info);
4940 /* Insert all subblocks of BLOCK into BLOCKS and recurse. */
4942 static void
4943 collect_subblocks (hash_set<tree> *blocks, tree block)
4945 tree t;
4946 for (t = BLOCK_SUBBLOCKS (block); t; t = BLOCK_CHAIN (t))
4948 blocks->add (t);
4949 collect_subblocks (blocks, t);
4953 /* Verify the GIMPLE statements in the CFG of FN. */
4955 DEBUG_FUNCTION void
4956 verify_gimple_in_cfg (struct function *fn, bool verify_nothrow)
4958 basic_block bb;
4959 bool err = false;
4961 timevar_push (TV_TREE_STMT_VERIFY);
4962 hash_set<void *> visited;
4963 hash_set<gimple> visited_stmts;
4965 /* Collect all BLOCKs referenced by the BLOCK tree of FN. */
4966 hash_set<tree> blocks;
4967 if (DECL_INITIAL (fn->decl))
4969 blocks.add (DECL_INITIAL (fn->decl));
4970 collect_subblocks (&blocks, DECL_INITIAL (fn->decl));
4973 FOR_EACH_BB_FN (bb, fn)
4975 gimple_stmt_iterator gsi;
4977 for (gphi_iterator gpi = gsi_start_phis (bb);
4978 !gsi_end_p (gpi);
4979 gsi_next (&gpi))
4981 gphi *phi = gpi.phi ();
4982 bool err2 = false;
4983 unsigned i;
4985 visited_stmts.add (phi);
4987 if (gimple_bb (phi) != bb)
4989 error ("gimple_bb (phi) is set to a wrong basic block");
4990 err2 = true;
4993 err2 |= verify_gimple_phi (phi);
4995 /* Only PHI arguments have locations. */
4996 if (gimple_location (phi) != UNKNOWN_LOCATION)
4998 error ("PHI node with location");
4999 err2 = true;
5002 for (i = 0; i < gimple_phi_num_args (phi); i++)
5004 tree arg = gimple_phi_arg_def (phi, i);
5005 tree addr = walk_tree (&arg, verify_node_sharing_1,
5006 &visited, NULL);
5007 if (addr)
5009 error ("incorrect sharing of tree nodes");
5010 debug_generic_expr (addr);
5011 err2 |= true;
5013 location_t loc = gimple_phi_arg_location (phi, i);
5014 if (virtual_operand_p (gimple_phi_result (phi))
5015 && loc != UNKNOWN_LOCATION)
5017 error ("virtual PHI with argument locations");
5018 err2 = true;
5020 addr = walk_tree (&arg, verify_expr_location_1, &blocks, NULL);
5021 if (addr)
5023 debug_generic_expr (addr);
5024 err2 = true;
5026 err2 |= verify_location (&blocks, loc);
5029 if (err2)
5030 debug_gimple_stmt (phi);
5031 err |= err2;
5034 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5036 gimple stmt = gsi_stmt (gsi);
5037 bool err2 = false;
5038 struct walk_stmt_info wi;
5039 tree addr;
5040 int lp_nr;
5042 visited_stmts.add (stmt);
5044 if (gimple_bb (stmt) != bb)
5046 error ("gimple_bb (stmt) is set to a wrong basic block");
5047 err2 = true;
5050 err2 |= verify_gimple_stmt (stmt);
5051 err2 |= verify_location (&blocks, gimple_location (stmt));
5053 memset (&wi, 0, sizeof (wi));
5054 wi.info = (void *) &visited;
5055 addr = walk_gimple_op (stmt, verify_node_sharing, &wi);
5056 if (addr)
5058 error ("incorrect sharing of tree nodes");
5059 debug_generic_expr (addr);
5060 err2 |= true;
5063 memset (&wi, 0, sizeof (wi));
5064 wi.info = (void *) &blocks;
5065 addr = walk_gimple_op (stmt, verify_expr_location, &wi);
5066 if (addr)
5068 debug_generic_expr (addr);
5069 err2 |= true;
5072 /* ??? Instead of not checking these stmts at all the walker
5073 should know its context via wi. */
5074 if (!is_gimple_debug (stmt)
5075 && !is_gimple_omp (stmt))
5077 memset (&wi, 0, sizeof (wi));
5078 addr = walk_gimple_op (stmt, verify_expr, &wi);
5079 if (addr)
5081 debug_generic_expr (addr);
5082 inform (gimple_location (stmt), "in statement");
5083 err2 |= true;
5087 /* If the statement is marked as part of an EH region, then it is
5088 expected that the statement could throw. Verify that when we
5089 have optimizations that simplify statements such that we prove
5090 that they cannot throw, that we update other data structures
5091 to match. */
5092 lp_nr = lookup_stmt_eh_lp (stmt);
5093 if (lp_nr > 0)
5095 if (!stmt_could_throw_p (stmt))
5097 if (verify_nothrow)
5099 error ("statement marked for throw, but doesn%'t");
5100 err2 |= true;
5103 else if (!gsi_one_before_end_p (gsi))
5105 error ("statement marked for throw in middle of block");
5106 err2 |= true;
5110 if (err2)
5111 debug_gimple_stmt (stmt);
5112 err |= err2;
5116 eh_error_found = false;
5117 hash_map<gimple, int> *eh_table = get_eh_throw_stmt_table (cfun);
5118 if (eh_table)
5119 eh_table->traverse<hash_set<gimple> *, verify_eh_throw_stmt_node>
5120 (&visited_stmts);
5122 if (err || eh_error_found)
5123 internal_error ("verify_gimple failed");
5125 verify_histograms ();
5126 timevar_pop (TV_TREE_STMT_VERIFY);
5130 /* Verifies that the flow information is OK. */
5132 static int
5133 gimple_verify_flow_info (void)
5135 int err = 0;
5136 basic_block bb;
5137 gimple_stmt_iterator gsi;
5138 gimple stmt;
5139 edge e;
5140 edge_iterator ei;
5142 if (ENTRY_BLOCK_PTR_FOR_FN (cfun)->il.gimple.seq
5143 || ENTRY_BLOCK_PTR_FOR_FN (cfun)->il.gimple.phi_nodes)
5145 error ("ENTRY_BLOCK has IL associated with it");
5146 err = 1;
5149 if (EXIT_BLOCK_PTR_FOR_FN (cfun)->il.gimple.seq
5150 || EXIT_BLOCK_PTR_FOR_FN (cfun)->il.gimple.phi_nodes)
5152 error ("EXIT_BLOCK has IL associated with it");
5153 err = 1;
5156 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR_FOR_FN (cfun)->preds)
5157 if (e->flags & EDGE_FALLTHRU)
5159 error ("fallthru to exit from bb %d", e->src->index);
5160 err = 1;
5163 FOR_EACH_BB_FN (bb, cfun)
5165 bool found_ctrl_stmt = false;
5167 stmt = NULL;
5169 /* Skip labels on the start of basic block. */
5170 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5172 tree label;
5173 gimple prev_stmt = stmt;
5175 stmt = gsi_stmt (gsi);
5177 if (gimple_code (stmt) != GIMPLE_LABEL)
5178 break;
5180 label = gimple_label_label (as_a <glabel *> (stmt));
5181 if (prev_stmt && DECL_NONLOCAL (label))
5183 error ("nonlocal label ");
5184 print_generic_expr (stderr, label, 0);
5185 fprintf (stderr, " is not first in a sequence of labels in bb %d",
5186 bb->index);
5187 err = 1;
5190 if (prev_stmt && EH_LANDING_PAD_NR (label) != 0)
5192 error ("EH landing pad label ");
5193 print_generic_expr (stderr, label, 0);
5194 fprintf (stderr, " is not first in a sequence of labels in bb %d",
5195 bb->index);
5196 err = 1;
5199 if (label_to_block (label) != bb)
5201 error ("label ");
5202 print_generic_expr (stderr, label, 0);
5203 fprintf (stderr, " to block does not match in bb %d",
5204 bb->index);
5205 err = 1;
5208 if (decl_function_context (label) != current_function_decl)
5210 error ("label ");
5211 print_generic_expr (stderr, label, 0);
5212 fprintf (stderr, " has incorrect context in bb %d",
5213 bb->index);
5214 err = 1;
5218 /* Verify that body of basic block BB is free of control flow. */
5219 for (; !gsi_end_p (gsi); gsi_next (&gsi))
5221 gimple stmt = gsi_stmt (gsi);
5223 if (found_ctrl_stmt)
5225 error ("control flow in the middle of basic block %d",
5226 bb->index);
5227 err = 1;
5230 if (stmt_ends_bb_p (stmt))
5231 found_ctrl_stmt = true;
5233 if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
5235 error ("label ");
5236 print_generic_expr (stderr, gimple_label_label (label_stmt), 0);
5237 fprintf (stderr, " in the middle of basic block %d", bb->index);
5238 err = 1;
5242 gsi = gsi_last_bb (bb);
5243 if (gsi_end_p (gsi))
5244 continue;
5246 stmt = gsi_stmt (gsi);
5248 if (gimple_code (stmt) == GIMPLE_LABEL)
5249 continue;
5251 err |= verify_eh_edges (stmt);
5253 if (is_ctrl_stmt (stmt))
5255 FOR_EACH_EDGE (e, ei, bb->succs)
5256 if (e->flags & EDGE_FALLTHRU)
5258 error ("fallthru edge after a control statement in bb %d",
5259 bb->index);
5260 err = 1;
5264 if (gimple_code (stmt) != GIMPLE_COND)
5266 /* Verify that there are no edges with EDGE_TRUE/FALSE_FLAG set
5267 after anything else but if statement. */
5268 FOR_EACH_EDGE (e, ei, bb->succs)
5269 if (e->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE))
5271 error ("true/false edge after a non-GIMPLE_COND in bb %d",
5272 bb->index);
5273 err = 1;
5277 switch (gimple_code (stmt))
5279 case GIMPLE_COND:
5281 edge true_edge;
5282 edge false_edge;
5284 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
5286 if (!true_edge
5287 || !false_edge
5288 || !(true_edge->flags & EDGE_TRUE_VALUE)
5289 || !(false_edge->flags & EDGE_FALSE_VALUE)
5290 || (true_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
5291 || (false_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
5292 || EDGE_COUNT (bb->succs) >= 3)
5294 error ("wrong outgoing edge flags at end of bb %d",
5295 bb->index);
5296 err = 1;
5299 break;
5301 case GIMPLE_GOTO:
5302 if (simple_goto_p (stmt))
5304 error ("explicit goto at end of bb %d", bb->index);
5305 err = 1;
5307 else
5309 /* FIXME. We should double check that the labels in the
5310 destination blocks have their address taken. */
5311 FOR_EACH_EDGE (e, ei, bb->succs)
5312 if ((e->flags & (EDGE_FALLTHRU | EDGE_TRUE_VALUE
5313 | EDGE_FALSE_VALUE))
5314 || !(e->flags & EDGE_ABNORMAL))
5316 error ("wrong outgoing edge flags at end of bb %d",
5317 bb->index);
5318 err = 1;
5321 break;
5323 case GIMPLE_CALL:
5324 if (!gimple_call_builtin_p (stmt, BUILT_IN_RETURN))
5325 break;
5326 /* ... fallthru ... */
5327 case GIMPLE_RETURN:
5328 if (!single_succ_p (bb)
5329 || (single_succ_edge (bb)->flags
5330 & (EDGE_FALLTHRU | EDGE_ABNORMAL
5331 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
5333 error ("wrong outgoing edge flags at end of bb %d", bb->index);
5334 err = 1;
5336 if (single_succ (bb) != EXIT_BLOCK_PTR_FOR_FN (cfun))
5338 error ("return edge does not point to exit in bb %d",
5339 bb->index);
5340 err = 1;
5342 break;
5344 case GIMPLE_SWITCH:
5346 gswitch *switch_stmt = as_a <gswitch *> (stmt);
5347 tree prev;
5348 edge e;
5349 size_t i, n;
5351 n = gimple_switch_num_labels (switch_stmt);
5353 /* Mark all the destination basic blocks. */
5354 for (i = 0; i < n; ++i)
5356 tree lab = CASE_LABEL (gimple_switch_label (switch_stmt, i));
5357 basic_block label_bb = label_to_block (lab);
5358 gcc_assert (!label_bb->aux || label_bb->aux == (void *)1);
5359 label_bb->aux = (void *)1;
5362 /* Verify that the case labels are sorted. */
5363 prev = gimple_switch_label (switch_stmt, 0);
5364 for (i = 1; i < n; ++i)
5366 tree c = gimple_switch_label (switch_stmt, i);
5367 if (!CASE_LOW (c))
5369 error ("found default case not at the start of "
5370 "case vector");
5371 err = 1;
5372 continue;
5374 if (CASE_LOW (prev)
5375 && !tree_int_cst_lt (CASE_LOW (prev), CASE_LOW (c)))
5377 error ("case labels not sorted: ");
5378 print_generic_expr (stderr, prev, 0);
5379 fprintf (stderr," is greater than ");
5380 print_generic_expr (stderr, c, 0);
5381 fprintf (stderr," but comes before it.\n");
5382 err = 1;
5384 prev = c;
5386 /* VRP will remove the default case if it can prove it will
5387 never be executed. So do not verify there always exists
5388 a default case here. */
5390 FOR_EACH_EDGE (e, ei, bb->succs)
5392 if (!e->dest->aux)
5394 error ("extra outgoing edge %d->%d",
5395 bb->index, e->dest->index);
5396 err = 1;
5399 e->dest->aux = (void *)2;
5400 if ((e->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
5401 | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
5403 error ("wrong outgoing edge flags at end of bb %d",
5404 bb->index);
5405 err = 1;
5409 /* Check that we have all of them. */
5410 for (i = 0; i < n; ++i)
5412 tree lab = CASE_LABEL (gimple_switch_label (switch_stmt, i));
5413 basic_block label_bb = label_to_block (lab);
5415 if (label_bb->aux != (void *)2)
5417 error ("missing edge %i->%i", bb->index, label_bb->index);
5418 err = 1;
5422 FOR_EACH_EDGE (e, ei, bb->succs)
5423 e->dest->aux = (void *)0;
5425 break;
5427 case GIMPLE_EH_DISPATCH:
5428 err |= verify_eh_dispatch_edge (as_a <geh_dispatch *> (stmt));
5429 break;
5431 default:
5432 break;
5436 if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
5437 verify_dominators (CDI_DOMINATORS);
5439 return err;
5443 /* Updates phi nodes after creating a forwarder block joined
5444 by edge FALLTHRU. */
5446 static void
5447 gimple_make_forwarder_block (edge fallthru)
5449 edge e;
5450 edge_iterator ei;
5451 basic_block dummy, bb;
5452 tree var;
5453 gphi_iterator gsi;
5455 dummy = fallthru->src;
5456 bb = fallthru->dest;
5458 if (single_pred_p (bb))
5459 return;
5461 /* If we redirected a branch we must create new PHI nodes at the
5462 start of BB. */
5463 for (gsi = gsi_start_phis (dummy); !gsi_end_p (gsi); gsi_next (&gsi))
5465 gphi *phi, *new_phi;
5467 phi = gsi.phi ();
5468 var = gimple_phi_result (phi);
5469 new_phi = create_phi_node (var, bb);
5470 gimple_phi_set_result (phi, copy_ssa_name (var, phi));
5471 add_phi_arg (new_phi, gimple_phi_result (phi), fallthru,
5472 UNKNOWN_LOCATION);
5475 /* Add the arguments we have stored on edges. */
5476 FOR_EACH_EDGE (e, ei, bb->preds)
5478 if (e == fallthru)
5479 continue;
5481 flush_pending_stmts (e);
5486 /* Return a non-special label in the head of basic block BLOCK.
5487 Create one if it doesn't exist. */
5489 tree
5490 gimple_block_label (basic_block bb)
5492 gimple_stmt_iterator i, s = gsi_start_bb (bb);
5493 bool first = true;
5494 tree label;
5495 glabel *stmt;
5497 for (i = s; !gsi_end_p (i); first = false, gsi_next (&i))
5499 stmt = dyn_cast <glabel *> (gsi_stmt (i));
5500 if (!stmt)
5501 break;
5502 label = gimple_label_label (stmt);
5503 if (!DECL_NONLOCAL (label))
5505 if (!first)
5506 gsi_move_before (&i, &s);
5507 return label;
5511 label = create_artificial_label (UNKNOWN_LOCATION);
5512 stmt = gimple_build_label (label);
5513 gsi_insert_before (&s, stmt, GSI_NEW_STMT);
5514 return label;
5518 /* Attempt to perform edge redirection by replacing a possibly complex
5519 jump instruction by a goto or by removing the jump completely.
5520 This can apply only if all edges now point to the same block. The
5521 parameters and return values are equivalent to
5522 redirect_edge_and_branch. */
5524 static edge
5525 gimple_try_redirect_by_replacing_jump (edge e, basic_block target)
5527 basic_block src = e->src;
5528 gimple_stmt_iterator i;
5529 gimple stmt;
5531 /* We can replace or remove a complex jump only when we have exactly
5532 two edges. */
5533 if (EDGE_COUNT (src->succs) != 2
5534 /* Verify that all targets will be TARGET. Specifically, the
5535 edge that is not E must also go to TARGET. */
5536 || EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest != target)
5537 return NULL;
5539 i = gsi_last_bb (src);
5540 if (gsi_end_p (i))
5541 return NULL;
5543 stmt = gsi_stmt (i);
5545 if (gimple_code (stmt) == GIMPLE_COND || gimple_code (stmt) == GIMPLE_SWITCH)
5547 gsi_remove (&i, true);
5548 e = ssa_redirect_edge (e, target);
5549 e->flags = EDGE_FALLTHRU;
5550 return e;
5553 return NULL;
5557 /* Redirect E to DEST. Return NULL on failure. Otherwise, return the
5558 edge representing the redirected branch. */
5560 static edge
5561 gimple_redirect_edge_and_branch (edge e, basic_block dest)
5563 basic_block bb = e->src;
5564 gimple_stmt_iterator gsi;
5565 edge ret;
5566 gimple stmt;
5568 if (e->flags & EDGE_ABNORMAL)
5569 return NULL;
5571 if (e->dest == dest)
5572 return NULL;
5574 if (e->flags & EDGE_EH)
5575 return redirect_eh_edge (e, dest);
5577 if (e->src != ENTRY_BLOCK_PTR_FOR_FN (cfun))
5579 ret = gimple_try_redirect_by_replacing_jump (e, dest);
5580 if (ret)
5581 return ret;
5584 gsi = gsi_last_bb (bb);
5585 stmt = gsi_end_p (gsi) ? NULL : gsi_stmt (gsi);
5587 switch (stmt ? gimple_code (stmt) : GIMPLE_ERROR_MARK)
5589 case GIMPLE_COND:
5590 /* For COND_EXPR, we only need to redirect the edge. */
5591 break;
5593 case GIMPLE_GOTO:
5594 /* No non-abnormal edges should lead from a non-simple goto, and
5595 simple ones should be represented implicitly. */
5596 gcc_unreachable ();
5598 case GIMPLE_SWITCH:
5600 gswitch *switch_stmt = as_a <gswitch *> (stmt);
5601 tree label = gimple_block_label (dest);
5602 tree cases = get_cases_for_edge (e, switch_stmt);
5604 /* If we have a list of cases associated with E, then use it
5605 as it's a lot faster than walking the entire case vector. */
5606 if (cases)
5608 edge e2 = find_edge (e->src, dest);
5609 tree last, first;
5611 first = cases;
5612 while (cases)
5614 last = cases;
5615 CASE_LABEL (cases) = label;
5616 cases = CASE_CHAIN (cases);
5619 /* If there was already an edge in the CFG, then we need
5620 to move all the cases associated with E to E2. */
5621 if (e2)
5623 tree cases2 = get_cases_for_edge (e2, switch_stmt);
5625 CASE_CHAIN (last) = CASE_CHAIN (cases2);
5626 CASE_CHAIN (cases2) = first;
5628 bitmap_set_bit (touched_switch_bbs, gimple_bb (stmt)->index);
5630 else
5632 size_t i, n = gimple_switch_num_labels (switch_stmt);
5634 for (i = 0; i < n; i++)
5636 tree elt = gimple_switch_label (switch_stmt, i);
5637 if (label_to_block (CASE_LABEL (elt)) == e->dest)
5638 CASE_LABEL (elt) = label;
5642 break;
5644 case GIMPLE_ASM:
5646 gasm *asm_stmt = as_a <gasm *> (stmt);
5647 int i, n = gimple_asm_nlabels (asm_stmt);
5648 tree label = NULL;
5650 for (i = 0; i < n; ++i)
5652 tree cons = gimple_asm_label_op (asm_stmt, i);
5653 if (label_to_block (TREE_VALUE (cons)) == e->dest)
5655 if (!label)
5656 label = gimple_block_label (dest);
5657 TREE_VALUE (cons) = label;
5661 /* If we didn't find any label matching the former edge in the
5662 asm labels, we must be redirecting the fallthrough
5663 edge. */
5664 gcc_assert (label || (e->flags & EDGE_FALLTHRU));
5666 break;
5668 case GIMPLE_RETURN:
5669 gsi_remove (&gsi, true);
5670 e->flags |= EDGE_FALLTHRU;
5671 break;
5673 case GIMPLE_OMP_RETURN:
5674 case GIMPLE_OMP_CONTINUE:
5675 case GIMPLE_OMP_SECTIONS_SWITCH:
5676 case GIMPLE_OMP_FOR:
5677 /* The edges from OMP constructs can be simply redirected. */
5678 break;
5680 case GIMPLE_EH_DISPATCH:
5681 if (!(e->flags & EDGE_FALLTHRU))
5682 redirect_eh_dispatch_edge (as_a <geh_dispatch *> (stmt), e, dest);
5683 break;
5685 case GIMPLE_TRANSACTION:
5686 /* The ABORT edge has a stored label associated with it, otherwise
5687 the edges are simply redirectable. */
5688 if (e->flags == 0)
5689 gimple_transaction_set_label (as_a <gtransaction *> (stmt),
5690 gimple_block_label (dest));
5691 break;
5693 default:
5694 /* Otherwise it must be a fallthru edge, and we don't need to
5695 do anything besides redirecting it. */
5696 gcc_assert (e->flags & EDGE_FALLTHRU);
5697 break;
5700 /* Update/insert PHI nodes as necessary. */
5702 /* Now update the edges in the CFG. */
5703 e = ssa_redirect_edge (e, dest);
5705 return e;
5708 /* Returns true if it is possible to remove edge E by redirecting
5709 it to the destination of the other edge from E->src. */
5711 static bool
5712 gimple_can_remove_branch_p (const_edge e)
5714 if (e->flags & (EDGE_ABNORMAL | EDGE_EH))
5715 return false;
5717 return true;
5720 /* Simple wrapper, as we can always redirect fallthru edges. */
5722 static basic_block
5723 gimple_redirect_edge_and_branch_force (edge e, basic_block dest)
5725 e = gimple_redirect_edge_and_branch (e, dest);
5726 gcc_assert (e);
5728 return NULL;
5732 /* Splits basic block BB after statement STMT (but at least after the
5733 labels). If STMT is NULL, BB is split just after the labels. */
5735 static basic_block
5736 gimple_split_block (basic_block bb, void *stmt)
5738 gimple_stmt_iterator gsi;
5739 gimple_stmt_iterator gsi_tgt;
5740 gimple_seq list;
5741 basic_block new_bb;
5742 edge e;
5743 edge_iterator ei;
5745 new_bb = create_empty_bb (bb);
5747 /* Redirect the outgoing edges. */
5748 new_bb->succs = bb->succs;
5749 bb->succs = NULL;
5750 FOR_EACH_EDGE (e, ei, new_bb->succs)
5751 e->src = new_bb;
5753 /* Get a stmt iterator pointing to the first stmt to move. */
5754 if (!stmt || gimple_code ((gimple) stmt) == GIMPLE_LABEL)
5755 gsi = gsi_after_labels (bb);
5756 else
5758 gsi = gsi_for_stmt ((gimple) stmt);
5759 gsi_next (&gsi);
5762 /* Move everything from GSI to the new basic block. */
5763 if (gsi_end_p (gsi))
5764 return new_bb;
5766 /* Split the statement list - avoid re-creating new containers as this
5767 brings ugly quadratic memory consumption in the inliner.
5768 (We are still quadratic since we need to update stmt BB pointers,
5769 sadly.) */
5770 gsi_split_seq_before (&gsi, &list);
5771 set_bb_seq (new_bb, list);
5772 for (gsi_tgt = gsi_start (list);
5773 !gsi_end_p (gsi_tgt); gsi_next (&gsi_tgt))
5774 gimple_set_bb (gsi_stmt (gsi_tgt), new_bb);
5776 return new_bb;
5780 /* Moves basic block BB after block AFTER. */
5782 static bool
5783 gimple_move_block_after (basic_block bb, basic_block after)
5785 if (bb->prev_bb == after)
5786 return true;
5788 unlink_block (bb);
5789 link_block (bb, after);
5791 return true;
5795 /* Return TRUE if block BB has no executable statements, otherwise return
5796 FALSE. */
5798 static bool
5799 gimple_empty_block_p (basic_block bb)
5801 /* BB must have no executable statements. */
5802 gimple_stmt_iterator gsi = gsi_after_labels (bb);
5803 if (phi_nodes (bb))
5804 return false;
5805 if (gsi_end_p (gsi))
5806 return true;
5807 if (is_gimple_debug (gsi_stmt (gsi)))
5808 gsi_next_nondebug (&gsi);
5809 return gsi_end_p (gsi);
5813 /* Split a basic block if it ends with a conditional branch and if the
5814 other part of the block is not empty. */
5816 static basic_block
5817 gimple_split_block_before_cond_jump (basic_block bb)
5819 gimple last, split_point;
5820 gimple_stmt_iterator gsi = gsi_last_nondebug_bb (bb);
5821 if (gsi_end_p (gsi))
5822 return NULL;
5823 last = gsi_stmt (gsi);
5824 if (gimple_code (last) != GIMPLE_COND
5825 && gimple_code (last) != GIMPLE_SWITCH)
5826 return NULL;
5827 gsi_prev_nondebug (&gsi);
5828 split_point = gsi_stmt (gsi);
5829 return split_block (bb, split_point)->dest;
5833 /* Return true if basic_block can be duplicated. */
5835 static bool
5836 gimple_can_duplicate_bb_p (const_basic_block bb ATTRIBUTE_UNUSED)
5838 return true;
5841 /* Create a duplicate of the basic block BB. NOTE: This does not
5842 preserve SSA form. */
5844 static basic_block
5845 gimple_duplicate_bb (basic_block bb)
5847 basic_block new_bb;
5848 gimple_stmt_iterator gsi_tgt;
5850 new_bb = create_empty_bb (EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb);
5852 /* Copy the PHI nodes. We ignore PHI node arguments here because
5853 the incoming edges have not been setup yet. */
5854 for (gphi_iterator gpi = gsi_start_phis (bb);
5855 !gsi_end_p (gpi);
5856 gsi_next (&gpi))
5858 gphi *phi, *copy;
5859 phi = gpi.phi ();
5860 copy = create_phi_node (NULL_TREE, new_bb);
5861 create_new_def_for (gimple_phi_result (phi), copy,
5862 gimple_phi_result_ptr (copy));
5863 gimple_set_uid (copy, gimple_uid (phi));
5866 gsi_tgt = gsi_start_bb (new_bb);
5867 for (gimple_stmt_iterator gsi = gsi_start_bb (bb);
5868 !gsi_end_p (gsi);
5869 gsi_next (&gsi))
5871 def_operand_p def_p;
5872 ssa_op_iter op_iter;
5873 tree lhs;
5874 gimple stmt, copy;
5876 stmt = gsi_stmt (gsi);
5877 if (gimple_code (stmt) == GIMPLE_LABEL)
5878 continue;
5880 /* Don't duplicate label debug stmts. */
5881 if (gimple_debug_bind_p (stmt)
5882 && TREE_CODE (gimple_debug_bind_get_var (stmt))
5883 == LABEL_DECL)
5884 continue;
5886 /* Create a new copy of STMT and duplicate STMT's virtual
5887 operands. */
5888 copy = gimple_copy (stmt);
5889 gsi_insert_after (&gsi_tgt, copy, GSI_NEW_STMT);
5891 maybe_duplicate_eh_stmt (copy, stmt);
5892 gimple_duplicate_stmt_histograms (cfun, copy, cfun, stmt);
5894 /* When copying around a stmt writing into a local non-user
5895 aggregate, make sure it won't share stack slot with other
5896 vars. */
5897 lhs = gimple_get_lhs (stmt);
5898 if (lhs && TREE_CODE (lhs) != SSA_NAME)
5900 tree base = get_base_address (lhs);
5901 if (base
5902 && (TREE_CODE (base) == VAR_DECL
5903 || TREE_CODE (base) == RESULT_DECL)
5904 && DECL_IGNORED_P (base)
5905 && !TREE_STATIC (base)
5906 && !DECL_EXTERNAL (base)
5907 && (TREE_CODE (base) != VAR_DECL
5908 || !DECL_HAS_VALUE_EXPR_P (base)))
5909 DECL_NONSHAREABLE (base) = 1;
5912 /* Create new names for all the definitions created by COPY and
5913 add replacement mappings for each new name. */
5914 FOR_EACH_SSA_DEF_OPERAND (def_p, copy, op_iter, SSA_OP_ALL_DEFS)
5915 create_new_def_for (DEF_FROM_PTR (def_p), copy, def_p);
5918 return new_bb;
5921 /* Adds phi node arguments for edge E_COPY after basic block duplication. */
5923 static void
5924 add_phi_args_after_copy_edge (edge e_copy)
5926 basic_block bb, bb_copy = e_copy->src, dest;
5927 edge e;
5928 edge_iterator ei;
5929 gphi *phi, *phi_copy;
5930 tree def;
5931 gphi_iterator psi, psi_copy;
5933 if (gimple_seq_empty_p (phi_nodes (e_copy->dest)))
5934 return;
5936 bb = bb_copy->flags & BB_DUPLICATED ? get_bb_original (bb_copy) : bb_copy;
5938 if (e_copy->dest->flags & BB_DUPLICATED)
5939 dest = get_bb_original (e_copy->dest);
5940 else
5941 dest = e_copy->dest;
5943 e = find_edge (bb, dest);
5944 if (!e)
5946 /* During loop unrolling the target of the latch edge is copied.
5947 In this case we are not looking for edge to dest, but to
5948 duplicated block whose original was dest. */
5949 FOR_EACH_EDGE (e, ei, bb->succs)
5951 if ((e->dest->flags & BB_DUPLICATED)
5952 && get_bb_original (e->dest) == dest)
5953 break;
5956 gcc_assert (e != NULL);
5959 for (psi = gsi_start_phis (e->dest),
5960 psi_copy = gsi_start_phis (e_copy->dest);
5961 !gsi_end_p (psi);
5962 gsi_next (&psi), gsi_next (&psi_copy))
5964 phi = psi.phi ();
5965 phi_copy = psi_copy.phi ();
5966 def = PHI_ARG_DEF_FROM_EDGE (phi, e);
5967 add_phi_arg (phi_copy, def, e_copy,
5968 gimple_phi_arg_location_from_edge (phi, e));
5973 /* Basic block BB_COPY was created by code duplication. Add phi node
5974 arguments for edges going out of BB_COPY. The blocks that were
5975 duplicated have BB_DUPLICATED set. */
5977 void
5978 add_phi_args_after_copy_bb (basic_block bb_copy)
5980 edge e_copy;
5981 edge_iterator ei;
5983 FOR_EACH_EDGE (e_copy, ei, bb_copy->succs)
5985 add_phi_args_after_copy_edge (e_copy);
5989 /* Blocks in REGION_COPY array of length N_REGION were created by
5990 duplication of basic blocks. Add phi node arguments for edges
5991 going from these blocks. If E_COPY is not NULL, also add
5992 phi node arguments for its destination.*/
5994 void
5995 add_phi_args_after_copy (basic_block *region_copy, unsigned n_region,
5996 edge e_copy)
5998 unsigned i;
6000 for (i = 0; i < n_region; i++)
6001 region_copy[i]->flags |= BB_DUPLICATED;
6003 for (i = 0; i < n_region; i++)
6004 add_phi_args_after_copy_bb (region_copy[i]);
6005 if (e_copy)
6006 add_phi_args_after_copy_edge (e_copy);
6008 for (i = 0; i < n_region; i++)
6009 region_copy[i]->flags &= ~BB_DUPLICATED;
6012 /* Duplicates a REGION (set of N_REGION basic blocks) with just a single
6013 important exit edge EXIT. By important we mean that no SSA name defined
6014 inside region is live over the other exit edges of the region. All entry
6015 edges to the region must go to ENTRY->dest. The edge ENTRY is redirected
6016 to the duplicate of the region. Dominance and loop information is
6017 updated if UPDATE_DOMINANCE is true, but not the SSA web. If
6018 UPDATE_DOMINANCE is false then we assume that the caller will update the
6019 dominance information after calling this function. The new basic
6020 blocks are stored to REGION_COPY in the same order as they had in REGION,
6021 provided that REGION_COPY is not NULL.
6022 The function returns false if it is unable to copy the region,
6023 true otherwise. */
6025 bool
6026 gimple_duplicate_sese_region (edge entry, edge exit,
6027 basic_block *region, unsigned n_region,
6028 basic_block *region_copy,
6029 bool update_dominance)
6031 unsigned i;
6032 bool free_region_copy = false, copying_header = false;
6033 struct loop *loop = entry->dest->loop_father;
6034 edge exit_copy;
6035 vec<basic_block> doms;
6036 edge redirected;
6037 int total_freq = 0, entry_freq = 0;
6038 gcov_type total_count = 0, entry_count = 0;
6040 if (!can_copy_bbs_p (region, n_region))
6041 return false;
6043 /* Some sanity checking. Note that we do not check for all possible
6044 missuses of the functions. I.e. if you ask to copy something weird,
6045 it will work, but the state of structures probably will not be
6046 correct. */
6047 for (i = 0; i < n_region; i++)
6049 /* We do not handle subloops, i.e. all the blocks must belong to the
6050 same loop. */
6051 if (region[i]->loop_father != loop)
6052 return false;
6054 if (region[i] != entry->dest
6055 && region[i] == loop->header)
6056 return false;
6059 /* In case the function is used for loop header copying (which is the primary
6060 use), ensure that EXIT and its copy will be new latch and entry edges. */
6061 if (loop->header == entry->dest)
6063 copying_header = true;
6065 if (!dominated_by_p (CDI_DOMINATORS, loop->latch, exit->src))
6066 return false;
6068 for (i = 0; i < n_region; i++)
6069 if (region[i] != exit->src
6070 && dominated_by_p (CDI_DOMINATORS, region[i], exit->src))
6071 return false;
6074 initialize_original_copy_tables ();
6076 if (copying_header)
6077 set_loop_copy (loop, loop_outer (loop));
6078 else
6079 set_loop_copy (loop, loop);
6081 if (!region_copy)
6083 region_copy = XNEWVEC (basic_block, n_region);
6084 free_region_copy = true;
6087 /* Record blocks outside the region that are dominated by something
6088 inside. */
6089 if (update_dominance)
6091 doms.create (0);
6092 doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region);
6095 if (entry->dest->count)
6097 total_count = entry->dest->count;
6098 entry_count = entry->count;
6099 /* Fix up corner cases, to avoid division by zero or creation of negative
6100 frequencies. */
6101 if (entry_count > total_count)
6102 entry_count = total_count;
6104 else
6106 total_freq = entry->dest->frequency;
6107 entry_freq = EDGE_FREQUENCY (entry);
6108 /* Fix up corner cases, to avoid division by zero or creation of negative
6109 frequencies. */
6110 if (total_freq == 0)
6111 total_freq = 1;
6112 else if (entry_freq > total_freq)
6113 entry_freq = total_freq;
6116 copy_bbs (region, n_region, region_copy, &exit, 1, &exit_copy, loop,
6117 split_edge_bb_loc (entry), update_dominance);
6118 if (total_count)
6120 scale_bbs_frequencies_gcov_type (region, n_region,
6121 total_count - entry_count,
6122 total_count);
6123 scale_bbs_frequencies_gcov_type (region_copy, n_region, entry_count,
6124 total_count);
6126 else
6128 scale_bbs_frequencies_int (region, n_region, total_freq - entry_freq,
6129 total_freq);
6130 scale_bbs_frequencies_int (region_copy, n_region, entry_freq, total_freq);
6133 if (copying_header)
6135 loop->header = exit->dest;
6136 loop->latch = exit->src;
6139 /* Redirect the entry and add the phi node arguments. */
6140 redirected = redirect_edge_and_branch (entry, get_bb_copy (entry->dest));
6141 gcc_assert (redirected != NULL);
6142 flush_pending_stmts (entry);
6144 /* Concerning updating of dominators: We must recount dominators
6145 for entry block and its copy. Anything that is outside of the
6146 region, but was dominated by something inside needs recounting as
6147 well. */
6148 if (update_dominance)
6150 set_immediate_dominator (CDI_DOMINATORS, entry->dest, entry->src);
6151 doms.safe_push (get_bb_original (entry->dest));
6152 iterate_fix_dominators (CDI_DOMINATORS, doms, false);
6153 doms.release ();
6156 /* Add the other PHI node arguments. */
6157 add_phi_args_after_copy (region_copy, n_region, NULL);
6159 if (free_region_copy)
6160 free (region_copy);
6162 free_original_copy_tables ();
6163 return true;
6166 /* Checks if BB is part of the region defined by N_REGION BBS. */
6167 static bool
6168 bb_part_of_region_p (basic_block bb, basic_block* bbs, unsigned n_region)
6170 unsigned int n;
6172 for (n = 0; n < n_region; n++)
6174 if (bb == bbs[n])
6175 return true;
6177 return false;
6180 /* Duplicates REGION consisting of N_REGION blocks. The new blocks
6181 are stored to REGION_COPY in the same order in that they appear
6182 in REGION, if REGION_COPY is not NULL. ENTRY is the entry to
6183 the region, EXIT an exit from it. The condition guarding EXIT
6184 is moved to ENTRY. Returns true if duplication succeeds, false
6185 otherwise.
6187 For example,
6189 some_code;
6190 if (cond)
6192 else
6195 is transformed to
6197 if (cond)
6199 some_code;
6202 else
6204 some_code;
6209 bool
6210 gimple_duplicate_sese_tail (edge entry ATTRIBUTE_UNUSED, edge exit ATTRIBUTE_UNUSED,
6211 basic_block *region ATTRIBUTE_UNUSED, unsigned n_region ATTRIBUTE_UNUSED,
6212 basic_block *region_copy ATTRIBUTE_UNUSED)
6214 unsigned i;
6215 bool free_region_copy = false;
6216 struct loop *loop = exit->dest->loop_father;
6217 struct loop *orig_loop = entry->dest->loop_father;
6218 basic_block switch_bb, entry_bb, nentry_bb;
6219 vec<basic_block> doms;
6220 int total_freq = 0, exit_freq = 0;
6221 gcov_type total_count = 0, exit_count = 0;
6222 edge exits[2], nexits[2], e;
6223 gimple_stmt_iterator gsi;
6224 gimple cond_stmt;
6225 edge sorig, snew;
6226 basic_block exit_bb;
6227 gphi_iterator psi;
6228 gphi *phi;
6229 tree def;
6230 struct loop *target, *aloop, *cloop;
6232 gcc_assert (EDGE_COUNT (exit->src->succs) == 2);
6233 exits[0] = exit;
6234 exits[1] = EDGE_SUCC (exit->src, EDGE_SUCC (exit->src, 0) == exit);
6236 if (!can_copy_bbs_p (region, n_region))
6237 return false;
6239 initialize_original_copy_tables ();
6240 set_loop_copy (orig_loop, loop);
6242 target= loop;
6243 for (aloop = orig_loop->inner; aloop; aloop = aloop->next)
6245 if (bb_part_of_region_p (aloop->header, region, n_region))
6247 cloop = duplicate_loop (aloop, target);
6248 duplicate_subloops (aloop, cloop);
6252 if (!region_copy)
6254 region_copy = XNEWVEC (basic_block, n_region);
6255 free_region_copy = true;
6258 gcc_assert (!need_ssa_update_p (cfun));
6260 /* Record blocks outside the region that are dominated by something
6261 inside. */
6262 doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region);
6264 if (exit->src->count)
6266 total_count = exit->src->count;
6267 exit_count = exit->count;
6268 /* Fix up corner cases, to avoid division by zero or creation of negative
6269 frequencies. */
6270 if (exit_count > total_count)
6271 exit_count = total_count;
6273 else
6275 total_freq = exit->src->frequency;
6276 exit_freq = EDGE_FREQUENCY (exit);
6277 /* Fix up corner cases, to avoid division by zero or creation of negative
6278 frequencies. */
6279 if (total_freq == 0)
6280 total_freq = 1;
6281 if (exit_freq > total_freq)
6282 exit_freq = total_freq;
6285 copy_bbs (region, n_region, region_copy, exits, 2, nexits, orig_loop,
6286 split_edge_bb_loc (exit), true);
6287 if (total_count)
6289 scale_bbs_frequencies_gcov_type (region, n_region,
6290 total_count - exit_count,
6291 total_count);
6292 scale_bbs_frequencies_gcov_type (region_copy, n_region, exit_count,
6293 total_count);
6295 else
6297 scale_bbs_frequencies_int (region, n_region, total_freq - exit_freq,
6298 total_freq);
6299 scale_bbs_frequencies_int (region_copy, n_region, exit_freq, total_freq);
6302 /* Create the switch block, and put the exit condition to it. */
6303 entry_bb = entry->dest;
6304 nentry_bb = get_bb_copy (entry_bb);
6305 if (!last_stmt (entry->src)
6306 || !stmt_ends_bb_p (last_stmt (entry->src)))
6307 switch_bb = entry->src;
6308 else
6309 switch_bb = split_edge (entry);
6310 set_immediate_dominator (CDI_DOMINATORS, nentry_bb, switch_bb);
6312 gsi = gsi_last_bb (switch_bb);
6313 cond_stmt = last_stmt (exit->src);
6314 gcc_assert (gimple_code (cond_stmt) == GIMPLE_COND);
6315 cond_stmt = gimple_copy (cond_stmt);
6317 gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STMT);
6319 sorig = single_succ_edge (switch_bb);
6320 sorig->flags = exits[1]->flags;
6321 snew = make_edge (switch_bb, nentry_bb, exits[0]->flags);
6323 /* Register the new edge from SWITCH_BB in loop exit lists. */
6324 rescan_loop_exit (snew, true, false);
6326 /* Add the PHI node arguments. */
6327 add_phi_args_after_copy (region_copy, n_region, snew);
6329 /* Get rid of now superfluous conditions and associated edges (and phi node
6330 arguments). */
6331 exit_bb = exit->dest;
6333 e = redirect_edge_and_branch (exits[0], exits[1]->dest);
6334 PENDING_STMT (e) = NULL;
6336 /* The latch of ORIG_LOOP was copied, and so was the backedge
6337 to the original header. We redirect this backedge to EXIT_BB. */
6338 for (i = 0; i < n_region; i++)
6339 if (get_bb_original (region_copy[i]) == orig_loop->latch)
6341 gcc_assert (single_succ_edge (region_copy[i]));
6342 e = redirect_edge_and_branch (single_succ_edge (region_copy[i]), exit_bb);
6343 PENDING_STMT (e) = NULL;
6344 for (psi = gsi_start_phis (exit_bb);
6345 !gsi_end_p (psi);
6346 gsi_next (&psi))
6348 phi = psi.phi ();
6349 def = PHI_ARG_DEF (phi, nexits[0]->dest_idx);
6350 add_phi_arg (phi, def, e, gimple_phi_arg_location_from_edge (phi, e));
6353 e = redirect_edge_and_branch (nexits[1], nexits[0]->dest);
6354 PENDING_STMT (e) = NULL;
6356 /* Anything that is outside of the region, but was dominated by something
6357 inside needs to update dominance info. */
6358 iterate_fix_dominators (CDI_DOMINATORS, doms, false);
6359 doms.release ();
6360 /* Update the SSA web. */
6361 update_ssa (TODO_update_ssa);
6363 if (free_region_copy)
6364 free (region_copy);
6366 free_original_copy_tables ();
6367 return true;
6370 /* Add all the blocks dominated by ENTRY to the array BBS_P. Stop
6371 adding blocks when the dominator traversal reaches EXIT. This
6372 function silently assumes that ENTRY strictly dominates EXIT. */
6374 void
6375 gather_blocks_in_sese_region (basic_block entry, basic_block exit,
6376 vec<basic_block> *bbs_p)
6378 basic_block son;
6380 for (son = first_dom_son (CDI_DOMINATORS, entry);
6381 son;
6382 son = next_dom_son (CDI_DOMINATORS, son))
6384 bbs_p->safe_push (son);
6385 if (son != exit)
6386 gather_blocks_in_sese_region (son, exit, bbs_p);
6390 /* Replaces *TP with a duplicate (belonging to function TO_CONTEXT).
6391 The duplicates are recorded in VARS_MAP. */
6393 static void
6394 replace_by_duplicate_decl (tree *tp, hash_map<tree, tree> *vars_map,
6395 tree to_context)
6397 tree t = *tp, new_t;
6398 struct function *f = DECL_STRUCT_FUNCTION (to_context);
6400 if (DECL_CONTEXT (t) == to_context)
6401 return;
6403 bool existed;
6404 tree &loc = vars_map->get_or_insert (t, &existed);
6406 if (!existed)
6408 if (SSA_VAR_P (t))
6410 new_t = copy_var_decl (t, DECL_NAME (t), TREE_TYPE (t));
6411 add_local_decl (f, new_t);
6413 else
6415 gcc_assert (TREE_CODE (t) == CONST_DECL);
6416 new_t = copy_node (t);
6418 DECL_CONTEXT (new_t) = to_context;
6420 loc = new_t;
6422 else
6423 new_t = loc;
6425 *tp = new_t;
6429 /* Creates an ssa name in TO_CONTEXT equivalent to NAME.
6430 VARS_MAP maps old ssa names and var_decls to the new ones. */
6432 static tree
6433 replace_ssa_name (tree name, hash_map<tree, tree> *vars_map,
6434 tree to_context)
6436 tree new_name;
6438 gcc_assert (!virtual_operand_p (name));
6440 tree *loc = vars_map->get (name);
6442 if (!loc)
6444 tree decl = SSA_NAME_VAR (name);
6445 if (decl)
6447 replace_by_duplicate_decl (&decl, vars_map, to_context);
6448 new_name = make_ssa_name_fn (DECL_STRUCT_FUNCTION (to_context),
6449 decl, SSA_NAME_DEF_STMT (name));
6450 if (SSA_NAME_IS_DEFAULT_DEF (name))
6451 set_ssa_default_def (DECL_STRUCT_FUNCTION (to_context),
6452 decl, new_name);
6454 else
6455 new_name = copy_ssa_name_fn (DECL_STRUCT_FUNCTION (to_context),
6456 name, SSA_NAME_DEF_STMT (name));
6458 vars_map->put (name, new_name);
6460 else
6461 new_name = *loc;
6463 return new_name;
6466 struct move_stmt_d
6468 tree orig_block;
6469 tree new_block;
6470 tree from_context;
6471 tree to_context;
6472 hash_map<tree, tree> *vars_map;
6473 htab_t new_label_map;
6474 hash_map<void *, void *> *eh_map;
6475 bool remap_decls_p;
6478 /* Helper for move_block_to_fn. Set TREE_BLOCK in every expression
6479 contained in *TP if it has been ORIG_BLOCK previously and change the
6480 DECL_CONTEXT of every local variable referenced in *TP. */
6482 static tree
6483 move_stmt_op (tree *tp, int *walk_subtrees, void *data)
6485 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
6486 struct move_stmt_d *p = (struct move_stmt_d *) wi->info;
6487 tree t = *tp;
6489 if (EXPR_P (t))
6491 tree block = TREE_BLOCK (t);
6492 if (block == p->orig_block
6493 || (p->orig_block == NULL_TREE
6494 && block != NULL_TREE))
6495 TREE_SET_BLOCK (t, p->new_block);
6496 #ifdef ENABLE_CHECKING
6497 else if (block != NULL_TREE)
6499 while (block && TREE_CODE (block) == BLOCK && block != p->orig_block)
6500 block = BLOCK_SUPERCONTEXT (block);
6501 gcc_assert (block == p->orig_block);
6503 #endif
6505 else if (DECL_P (t) || TREE_CODE (t) == SSA_NAME)
6507 if (TREE_CODE (t) == SSA_NAME)
6508 *tp = replace_ssa_name (t, p->vars_map, p->to_context);
6509 else if (TREE_CODE (t) == LABEL_DECL)
6511 if (p->new_label_map)
6513 struct tree_map in, *out;
6514 in.base.from = t;
6515 out = (struct tree_map *)
6516 htab_find_with_hash (p->new_label_map, &in, DECL_UID (t));
6517 if (out)
6518 *tp = t = out->to;
6521 DECL_CONTEXT (t) = p->to_context;
6523 else if (p->remap_decls_p)
6525 /* Replace T with its duplicate. T should no longer appear in the
6526 parent function, so this looks wasteful; however, it may appear
6527 in referenced_vars, and more importantly, as virtual operands of
6528 statements, and in alias lists of other variables. It would be
6529 quite difficult to expunge it from all those places. ??? It might
6530 suffice to do this for addressable variables. */
6531 if ((TREE_CODE (t) == VAR_DECL
6532 && !is_global_var (t))
6533 || TREE_CODE (t) == CONST_DECL)
6534 replace_by_duplicate_decl (tp, p->vars_map, p->to_context);
6536 *walk_subtrees = 0;
6538 else if (TYPE_P (t))
6539 *walk_subtrees = 0;
6541 return NULL_TREE;
6544 /* Helper for move_stmt_r. Given an EH region number for the source
6545 function, map that to the duplicate EH regio number in the dest. */
6547 static int
6548 move_stmt_eh_region_nr (int old_nr, struct move_stmt_d *p)
6550 eh_region old_r, new_r;
6552 old_r = get_eh_region_from_number (old_nr);
6553 new_r = static_cast<eh_region> (*p->eh_map->get (old_r));
6555 return new_r->index;
6558 /* Similar, but operate on INTEGER_CSTs. */
6560 static tree
6561 move_stmt_eh_region_tree_nr (tree old_t_nr, struct move_stmt_d *p)
6563 int old_nr, new_nr;
6565 old_nr = tree_to_shwi (old_t_nr);
6566 new_nr = move_stmt_eh_region_nr (old_nr, p);
6568 return build_int_cst (integer_type_node, new_nr);
6571 /* Like move_stmt_op, but for gimple statements.
6573 Helper for move_block_to_fn. Set GIMPLE_BLOCK in every expression
6574 contained in the current statement in *GSI_P and change the
6575 DECL_CONTEXT of every local variable referenced in the current
6576 statement. */
6578 static tree
6579 move_stmt_r (gimple_stmt_iterator *gsi_p, bool *handled_ops_p,
6580 struct walk_stmt_info *wi)
6582 struct move_stmt_d *p = (struct move_stmt_d *) wi->info;
6583 gimple stmt = gsi_stmt (*gsi_p);
6584 tree block = gimple_block (stmt);
6586 if (block == p->orig_block
6587 || (p->orig_block == NULL_TREE
6588 && block != NULL_TREE))
6589 gimple_set_block (stmt, p->new_block);
6591 switch (gimple_code (stmt))
6593 case GIMPLE_CALL:
6594 /* Remap the region numbers for __builtin_eh_{pointer,filter}. */
6596 tree r, fndecl = gimple_call_fndecl (stmt);
6597 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
6598 switch (DECL_FUNCTION_CODE (fndecl))
6600 case BUILT_IN_EH_COPY_VALUES:
6601 r = gimple_call_arg (stmt, 1);
6602 r = move_stmt_eh_region_tree_nr (r, p);
6603 gimple_call_set_arg (stmt, 1, r);
6604 /* FALLTHRU */
6606 case BUILT_IN_EH_POINTER:
6607 case BUILT_IN_EH_FILTER:
6608 r = gimple_call_arg (stmt, 0);
6609 r = move_stmt_eh_region_tree_nr (r, p);
6610 gimple_call_set_arg (stmt, 0, r);
6611 break;
6613 default:
6614 break;
6617 break;
6619 case GIMPLE_RESX:
6621 gresx *resx_stmt = as_a <gresx *> (stmt);
6622 int r = gimple_resx_region (resx_stmt);
6623 r = move_stmt_eh_region_nr (r, p);
6624 gimple_resx_set_region (resx_stmt, r);
6626 break;
6628 case GIMPLE_EH_DISPATCH:
6630 geh_dispatch *eh_dispatch_stmt = as_a <geh_dispatch *> (stmt);
6631 int r = gimple_eh_dispatch_region (eh_dispatch_stmt);
6632 r = move_stmt_eh_region_nr (r, p);
6633 gimple_eh_dispatch_set_region (eh_dispatch_stmt, r);
6635 break;
6637 case GIMPLE_OMP_RETURN:
6638 case GIMPLE_OMP_CONTINUE:
6639 break;
6640 default:
6641 if (is_gimple_omp (stmt))
6643 /* Do not remap variables inside OMP directives. Variables
6644 referenced in clauses and directive header belong to the
6645 parent function and should not be moved into the child
6646 function. */
6647 bool save_remap_decls_p = p->remap_decls_p;
6648 p->remap_decls_p = false;
6649 *handled_ops_p = true;
6651 walk_gimple_seq_mod (gimple_omp_body_ptr (stmt), move_stmt_r,
6652 move_stmt_op, wi);
6654 p->remap_decls_p = save_remap_decls_p;
6656 break;
6659 return NULL_TREE;
6662 /* Move basic block BB from function CFUN to function DEST_FN. The
6663 block is moved out of the original linked list and placed after
6664 block AFTER in the new list. Also, the block is removed from the
6665 original array of blocks and placed in DEST_FN's array of blocks.
6666 If UPDATE_EDGE_COUNT_P is true, the edge counts on both CFGs is
6667 updated to reflect the moved edges.
6669 The local variables are remapped to new instances, VARS_MAP is used
6670 to record the mapping. */
6672 static void
6673 move_block_to_fn (struct function *dest_cfun, basic_block bb,
6674 basic_block after, bool update_edge_count_p,
6675 struct move_stmt_d *d)
6677 struct control_flow_graph *cfg;
6678 edge_iterator ei;
6679 edge e;
6680 gimple_stmt_iterator si;
6681 unsigned old_len, new_len;
6683 /* Remove BB from dominance structures. */
6684 delete_from_dominance_info (CDI_DOMINATORS, bb);
6686 /* Move BB from its current loop to the copy in the new function. */
6687 if (current_loops)
6689 struct loop *new_loop = (struct loop *)bb->loop_father->aux;
6690 if (new_loop)
6691 bb->loop_father = new_loop;
6694 /* Link BB to the new linked list. */
6695 move_block_after (bb, after);
6697 /* Update the edge count in the corresponding flowgraphs. */
6698 if (update_edge_count_p)
6699 FOR_EACH_EDGE (e, ei, bb->succs)
6701 cfun->cfg->x_n_edges--;
6702 dest_cfun->cfg->x_n_edges++;
6705 /* Remove BB from the original basic block array. */
6706 (*cfun->cfg->x_basic_block_info)[bb->index] = NULL;
6707 cfun->cfg->x_n_basic_blocks--;
6709 /* Grow DEST_CFUN's basic block array if needed. */
6710 cfg = dest_cfun->cfg;
6711 cfg->x_n_basic_blocks++;
6712 if (bb->index >= cfg->x_last_basic_block)
6713 cfg->x_last_basic_block = bb->index + 1;
6715 old_len = vec_safe_length (cfg->x_basic_block_info);
6716 if ((unsigned) cfg->x_last_basic_block >= old_len)
6718 new_len = cfg->x_last_basic_block + (cfg->x_last_basic_block + 3) / 4;
6719 vec_safe_grow_cleared (cfg->x_basic_block_info, new_len);
6722 (*cfg->x_basic_block_info)[bb->index] = bb;
6724 /* Remap the variables in phi nodes. */
6725 for (gphi_iterator psi = gsi_start_phis (bb);
6726 !gsi_end_p (psi); )
6728 gphi *phi = psi.phi ();
6729 use_operand_p use;
6730 tree op = PHI_RESULT (phi);
6731 ssa_op_iter oi;
6732 unsigned i;
6734 if (virtual_operand_p (op))
6736 /* Remove the phi nodes for virtual operands (alias analysis will be
6737 run for the new function, anyway). */
6738 remove_phi_node (&psi, true);
6739 continue;
6742 SET_PHI_RESULT (phi,
6743 replace_ssa_name (op, d->vars_map, dest_cfun->decl));
6744 FOR_EACH_PHI_ARG (use, phi, oi, SSA_OP_USE)
6746 op = USE_FROM_PTR (use);
6747 if (TREE_CODE (op) == SSA_NAME)
6748 SET_USE (use, replace_ssa_name (op, d->vars_map, dest_cfun->decl));
6751 for (i = 0; i < EDGE_COUNT (bb->preds); i++)
6753 location_t locus = gimple_phi_arg_location (phi, i);
6754 tree block = LOCATION_BLOCK (locus);
6756 if (locus == UNKNOWN_LOCATION)
6757 continue;
6758 if (d->orig_block == NULL_TREE || block == d->orig_block)
6760 if (d->new_block == NULL_TREE)
6761 locus = LOCATION_LOCUS (locus);
6762 else
6763 locus = COMBINE_LOCATION_DATA (line_table, locus, d->new_block);
6764 gimple_phi_arg_set_location (phi, i, locus);
6768 gsi_next (&psi);
6771 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
6773 gimple stmt = gsi_stmt (si);
6774 struct walk_stmt_info wi;
6776 memset (&wi, 0, sizeof (wi));
6777 wi.info = d;
6778 walk_gimple_stmt (&si, move_stmt_r, move_stmt_op, &wi);
6780 if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
6782 tree label = gimple_label_label (label_stmt);
6783 int uid = LABEL_DECL_UID (label);
6785 gcc_assert (uid > -1);
6787 old_len = vec_safe_length (cfg->x_label_to_block_map);
6788 if (old_len <= (unsigned) uid)
6790 new_len = 3 * uid / 2 + 1;
6791 vec_safe_grow_cleared (cfg->x_label_to_block_map, new_len);
6794 (*cfg->x_label_to_block_map)[uid] = bb;
6795 (*cfun->cfg->x_label_to_block_map)[uid] = NULL;
6797 gcc_assert (DECL_CONTEXT (label) == dest_cfun->decl);
6799 if (uid >= dest_cfun->cfg->last_label_uid)
6800 dest_cfun->cfg->last_label_uid = uid + 1;
6803 maybe_duplicate_eh_stmt_fn (dest_cfun, stmt, cfun, stmt, d->eh_map, 0);
6804 remove_stmt_from_eh_lp_fn (cfun, stmt);
6806 gimple_duplicate_stmt_histograms (dest_cfun, stmt, cfun, stmt);
6807 gimple_remove_stmt_histograms (cfun, stmt);
6809 /* We cannot leave any operands allocated from the operand caches of
6810 the current function. */
6811 free_stmt_operands (cfun, stmt);
6812 push_cfun (dest_cfun);
6813 update_stmt (stmt);
6814 pop_cfun ();
6817 FOR_EACH_EDGE (e, ei, bb->succs)
6818 if (e->goto_locus != UNKNOWN_LOCATION)
6820 tree block = LOCATION_BLOCK (e->goto_locus);
6821 if (d->orig_block == NULL_TREE
6822 || block == d->orig_block)
6823 e->goto_locus = d->new_block ?
6824 COMBINE_LOCATION_DATA (line_table, e->goto_locus, d->new_block) :
6825 LOCATION_LOCUS (e->goto_locus);
6829 /* Examine the statements in BB (which is in SRC_CFUN); find and return
6830 the outermost EH region. Use REGION as the incoming base EH region. */
6832 static eh_region
6833 find_outermost_region_in_block (struct function *src_cfun,
6834 basic_block bb, eh_region region)
6836 gimple_stmt_iterator si;
6838 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
6840 gimple stmt = gsi_stmt (si);
6841 eh_region stmt_region;
6842 int lp_nr;
6844 lp_nr = lookup_stmt_eh_lp_fn (src_cfun, stmt);
6845 stmt_region = get_eh_region_from_lp_number_fn (src_cfun, lp_nr);
6846 if (stmt_region)
6848 if (region == NULL)
6849 region = stmt_region;
6850 else if (stmt_region != region)
6852 region = eh_region_outermost (src_cfun, stmt_region, region);
6853 gcc_assert (region != NULL);
6858 return region;
6861 static tree
6862 new_label_mapper (tree decl, void *data)
6864 htab_t hash = (htab_t) data;
6865 struct tree_map *m;
6866 void **slot;
6868 gcc_assert (TREE_CODE (decl) == LABEL_DECL);
6870 m = XNEW (struct tree_map);
6871 m->hash = DECL_UID (decl);
6872 m->base.from = decl;
6873 m->to = create_artificial_label (UNKNOWN_LOCATION);
6874 LABEL_DECL_UID (m->to) = LABEL_DECL_UID (decl);
6875 if (LABEL_DECL_UID (m->to) >= cfun->cfg->last_label_uid)
6876 cfun->cfg->last_label_uid = LABEL_DECL_UID (m->to) + 1;
6878 slot = htab_find_slot_with_hash (hash, m, m->hash, INSERT);
6879 gcc_assert (*slot == NULL);
6881 *slot = m;
6883 return m->to;
6886 /* Change DECL_CONTEXT of all BLOCK_VARS in block, including
6887 subblocks. */
6889 static void
6890 replace_block_vars_by_duplicates (tree block, hash_map<tree, tree> *vars_map,
6891 tree to_context)
6893 tree *tp, t;
6895 for (tp = &BLOCK_VARS (block); *tp; tp = &DECL_CHAIN (*tp))
6897 t = *tp;
6898 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != CONST_DECL)
6899 continue;
6900 replace_by_duplicate_decl (&t, vars_map, to_context);
6901 if (t != *tp)
6903 if (TREE_CODE (*tp) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (*tp))
6905 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (*tp));
6906 DECL_HAS_VALUE_EXPR_P (t) = 1;
6908 DECL_CHAIN (t) = DECL_CHAIN (*tp);
6909 *tp = t;
6913 for (block = BLOCK_SUBBLOCKS (block); block; block = BLOCK_CHAIN (block))
6914 replace_block_vars_by_duplicates (block, vars_map, to_context);
6917 /* Fixup the loop arrays and numbers after moving LOOP and its subloops
6918 from FN1 to FN2. */
6920 static void
6921 fixup_loop_arrays_after_move (struct function *fn1, struct function *fn2,
6922 struct loop *loop)
6924 /* Discard it from the old loop array. */
6925 (*get_loops (fn1))[loop->num] = NULL;
6927 /* Place it in the new loop array, assigning it a new number. */
6928 loop->num = number_of_loops (fn2);
6929 vec_safe_push (loops_for_fn (fn2)->larray, loop);
6931 /* Recurse to children. */
6932 for (loop = loop->inner; loop; loop = loop->next)
6933 fixup_loop_arrays_after_move (fn1, fn2, loop);
6936 /* Verify that the blocks in BBS_P are a single-entry, single-exit region
6937 delimited by ENTRY_BB and EXIT_BB, possibly containing noreturn blocks. */
6939 DEBUG_FUNCTION void
6940 verify_sese (basic_block entry, basic_block exit, vec<basic_block> *bbs_p)
6942 basic_block bb;
6943 edge_iterator ei;
6944 edge e;
6945 bitmap bbs = BITMAP_ALLOC (NULL);
6946 int i;
6948 gcc_assert (entry != NULL);
6949 gcc_assert (entry != exit);
6950 gcc_assert (bbs_p != NULL);
6952 gcc_assert (bbs_p->length () > 0);
6954 FOR_EACH_VEC_ELT (*bbs_p, i, bb)
6955 bitmap_set_bit (bbs, bb->index);
6957 gcc_assert (bitmap_bit_p (bbs, entry->index));
6958 gcc_assert (exit == NULL || bitmap_bit_p (bbs, exit->index));
6960 FOR_EACH_VEC_ELT (*bbs_p, i, bb)
6962 if (bb == entry)
6964 gcc_assert (single_pred_p (entry));
6965 gcc_assert (!bitmap_bit_p (bbs, single_pred (entry)->index));
6967 else
6968 for (ei = ei_start (bb->preds); !ei_end_p (ei); ei_next (&ei))
6970 e = ei_edge (ei);
6971 gcc_assert (bitmap_bit_p (bbs, e->src->index));
6974 if (bb == exit)
6976 gcc_assert (single_succ_p (exit));
6977 gcc_assert (!bitmap_bit_p (bbs, single_succ (exit)->index));
6979 else
6980 for (ei = ei_start (bb->succs); !ei_end_p (ei); ei_next (&ei))
6982 e = ei_edge (ei);
6983 gcc_assert (bitmap_bit_p (bbs, e->dest->index));
6987 BITMAP_FREE (bbs);
6991 /* Move a single-entry, single-exit region delimited by ENTRY_BB and
6992 EXIT_BB to function DEST_CFUN. The whole region is replaced by a
6993 single basic block in the original CFG and the new basic block is
6994 returned. DEST_CFUN must not have a CFG yet.
6996 Note that the region need not be a pure SESE region. Blocks inside
6997 the region may contain calls to abort/exit. The only restriction
6998 is that ENTRY_BB should be the only entry point and it must
6999 dominate EXIT_BB.
7001 Change TREE_BLOCK of all statements in ORIG_BLOCK to the new
7002 functions outermost BLOCK, move all subblocks of ORIG_BLOCK
7003 to the new function.
7005 All local variables referenced in the region are assumed to be in
7006 the corresponding BLOCK_VARS and unexpanded variable lists
7007 associated with DEST_CFUN. */
7009 basic_block
7010 move_sese_region_to_fn (struct function *dest_cfun, basic_block entry_bb,
7011 basic_block exit_bb, tree orig_block)
7013 vec<basic_block> bbs, dom_bbs;
7014 basic_block dom_entry = get_immediate_dominator (CDI_DOMINATORS, entry_bb);
7015 basic_block after, bb, *entry_pred, *exit_succ, abb;
7016 struct function *saved_cfun = cfun;
7017 int *entry_flag, *exit_flag;
7018 unsigned *entry_prob, *exit_prob;
7019 unsigned i, num_entry_edges, num_exit_edges, num_nodes;
7020 edge e;
7021 edge_iterator ei;
7022 htab_t new_label_map;
7023 hash_map<void *, void *> *eh_map;
7024 struct loop *loop = entry_bb->loop_father;
7025 struct loop *loop0 = get_loop (saved_cfun, 0);
7026 struct move_stmt_d d;
7028 /* If ENTRY does not strictly dominate EXIT, this cannot be an SESE
7029 region. */
7030 gcc_assert (entry_bb != exit_bb
7031 && (!exit_bb
7032 || dominated_by_p (CDI_DOMINATORS, exit_bb, entry_bb)));
7034 /* Collect all the blocks in the region. Manually add ENTRY_BB
7035 because it won't be added by dfs_enumerate_from. */
7036 bbs.create (0);
7037 bbs.safe_push (entry_bb);
7038 gather_blocks_in_sese_region (entry_bb, exit_bb, &bbs);
7039 #ifdef ENABLE_CHECKING
7040 verify_sese (entry_bb, exit_bb, &bbs);
7041 #endif
7043 /* The blocks that used to be dominated by something in BBS will now be
7044 dominated by the new block. */
7045 dom_bbs = get_dominated_by_region (CDI_DOMINATORS,
7046 bbs.address (),
7047 bbs.length ());
7049 /* Detach ENTRY_BB and EXIT_BB from CFUN->CFG. We need to remember
7050 the predecessor edges to ENTRY_BB and the successor edges to
7051 EXIT_BB so that we can re-attach them to the new basic block that
7052 will replace the region. */
7053 num_entry_edges = EDGE_COUNT (entry_bb->preds);
7054 entry_pred = XNEWVEC (basic_block, num_entry_edges);
7055 entry_flag = XNEWVEC (int, num_entry_edges);
7056 entry_prob = XNEWVEC (unsigned, num_entry_edges);
7057 i = 0;
7058 for (ei = ei_start (entry_bb->preds); (e = ei_safe_edge (ei)) != NULL;)
7060 entry_prob[i] = e->probability;
7061 entry_flag[i] = e->flags;
7062 entry_pred[i++] = e->src;
7063 remove_edge (e);
7066 if (exit_bb)
7068 num_exit_edges = EDGE_COUNT (exit_bb->succs);
7069 exit_succ = XNEWVEC (basic_block, num_exit_edges);
7070 exit_flag = XNEWVEC (int, num_exit_edges);
7071 exit_prob = XNEWVEC (unsigned, num_exit_edges);
7072 i = 0;
7073 for (ei = ei_start (exit_bb->succs); (e = ei_safe_edge (ei)) != NULL;)
7075 exit_prob[i] = e->probability;
7076 exit_flag[i] = e->flags;
7077 exit_succ[i++] = e->dest;
7078 remove_edge (e);
7081 else
7083 num_exit_edges = 0;
7084 exit_succ = NULL;
7085 exit_flag = NULL;
7086 exit_prob = NULL;
7089 /* Switch context to the child function to initialize DEST_FN's CFG. */
7090 gcc_assert (dest_cfun->cfg == NULL);
7091 push_cfun (dest_cfun);
7093 init_empty_tree_cfg ();
7095 /* Initialize EH information for the new function. */
7096 eh_map = NULL;
7097 new_label_map = NULL;
7098 if (saved_cfun->eh)
7100 eh_region region = NULL;
7102 FOR_EACH_VEC_ELT (bbs, i, bb)
7103 region = find_outermost_region_in_block (saved_cfun, bb, region);
7105 init_eh_for_function ();
7106 if (region != NULL)
7108 new_label_map = htab_create (17, tree_map_hash, tree_map_eq, free);
7109 eh_map = duplicate_eh_regions (saved_cfun, region, 0,
7110 new_label_mapper, new_label_map);
7114 /* Initialize an empty loop tree. */
7115 struct loops *loops = ggc_cleared_alloc<struct loops> ();
7116 init_loops_structure (dest_cfun, loops, 1);
7117 loops->state = LOOPS_MAY_HAVE_MULTIPLE_LATCHES;
7118 set_loops_for_fn (dest_cfun, loops);
7120 /* Move the outlined loop tree part. */
7121 num_nodes = bbs.length ();
7122 FOR_EACH_VEC_ELT (bbs, i, bb)
7124 if (bb->loop_father->header == bb)
7126 struct loop *this_loop = bb->loop_father;
7127 struct loop *outer = loop_outer (this_loop);
7128 if (outer == loop
7129 /* If the SESE region contains some bbs ending with
7130 a noreturn call, those are considered to belong
7131 to the outermost loop in saved_cfun, rather than
7132 the entry_bb's loop_father. */
7133 || outer == loop0)
7135 if (outer != loop)
7136 num_nodes -= this_loop->num_nodes;
7137 flow_loop_tree_node_remove (bb->loop_father);
7138 flow_loop_tree_node_add (get_loop (dest_cfun, 0), this_loop);
7139 fixup_loop_arrays_after_move (saved_cfun, cfun, this_loop);
7142 else if (bb->loop_father == loop0 && loop0 != loop)
7143 num_nodes--;
7145 /* Remove loop exits from the outlined region. */
7146 if (loops_for_fn (saved_cfun)->exits)
7147 FOR_EACH_EDGE (e, ei, bb->succs)
7149 struct loops *l = loops_for_fn (saved_cfun);
7150 loop_exit **slot
7151 = l->exits->find_slot_with_hash (e, htab_hash_pointer (e),
7152 NO_INSERT);
7153 if (slot)
7154 l->exits->clear_slot (slot);
7159 /* Adjust the number of blocks in the tree root of the outlined part. */
7160 get_loop (dest_cfun, 0)->num_nodes = bbs.length () + 2;
7162 /* Setup a mapping to be used by move_block_to_fn. */
7163 loop->aux = current_loops->tree_root;
7164 loop0->aux = current_loops->tree_root;
7166 pop_cfun ();
7168 /* Move blocks from BBS into DEST_CFUN. */
7169 gcc_assert (bbs.length () >= 2);
7170 after = dest_cfun->cfg->x_entry_block_ptr;
7171 hash_map<tree, tree> vars_map;
7173 memset (&d, 0, sizeof (d));
7174 d.orig_block = orig_block;
7175 d.new_block = DECL_INITIAL (dest_cfun->decl);
7176 d.from_context = cfun->decl;
7177 d.to_context = dest_cfun->decl;
7178 d.vars_map = &vars_map;
7179 d.new_label_map = new_label_map;
7180 d.eh_map = eh_map;
7181 d.remap_decls_p = true;
7183 FOR_EACH_VEC_ELT (bbs, i, bb)
7185 /* No need to update edge counts on the last block. It has
7186 already been updated earlier when we detached the region from
7187 the original CFG. */
7188 move_block_to_fn (dest_cfun, bb, after, bb != exit_bb, &d);
7189 after = bb;
7192 loop->aux = NULL;
7193 loop0->aux = NULL;
7194 /* Loop sizes are no longer correct, fix them up. */
7195 loop->num_nodes -= num_nodes;
7196 for (struct loop *outer = loop_outer (loop);
7197 outer; outer = loop_outer (outer))
7198 outer->num_nodes -= num_nodes;
7199 loop0->num_nodes -= bbs.length () - num_nodes;
7201 if (saved_cfun->has_simduid_loops || saved_cfun->has_force_vectorize_loops)
7203 struct loop *aloop;
7204 for (i = 0; vec_safe_iterate (loops->larray, i, &aloop); i++)
7205 if (aloop != NULL)
7207 if (aloop->simduid)
7209 replace_by_duplicate_decl (&aloop->simduid, d.vars_map,
7210 d.to_context);
7211 dest_cfun->has_simduid_loops = true;
7213 if (aloop->force_vectorize)
7214 dest_cfun->has_force_vectorize_loops = true;
7218 /* Rewire BLOCK_SUBBLOCKS of orig_block. */
7219 if (orig_block)
7221 tree block;
7222 gcc_assert (BLOCK_SUBBLOCKS (DECL_INITIAL (dest_cfun->decl))
7223 == NULL_TREE);
7224 BLOCK_SUBBLOCKS (DECL_INITIAL (dest_cfun->decl))
7225 = BLOCK_SUBBLOCKS (orig_block);
7226 for (block = BLOCK_SUBBLOCKS (orig_block);
7227 block; block = BLOCK_CHAIN (block))
7228 BLOCK_SUPERCONTEXT (block) = DECL_INITIAL (dest_cfun->decl);
7229 BLOCK_SUBBLOCKS (orig_block) = NULL_TREE;
7232 replace_block_vars_by_duplicates (DECL_INITIAL (dest_cfun->decl),
7233 &vars_map, dest_cfun->decl);
7235 if (new_label_map)
7236 htab_delete (new_label_map);
7237 if (eh_map)
7238 delete eh_map;
7240 /* Rewire the entry and exit blocks. The successor to the entry
7241 block turns into the successor of DEST_FN's ENTRY_BLOCK_PTR in
7242 the child function. Similarly, the predecessor of DEST_FN's
7243 EXIT_BLOCK_PTR turns into the predecessor of EXIT_BLOCK_PTR. We
7244 need to switch CFUN between DEST_CFUN and SAVED_CFUN so that the
7245 various CFG manipulation function get to the right CFG.
7247 FIXME, this is silly. The CFG ought to become a parameter to
7248 these helpers. */
7249 push_cfun (dest_cfun);
7250 make_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun), entry_bb, EDGE_FALLTHRU);
7251 if (exit_bb)
7252 make_edge (exit_bb, EXIT_BLOCK_PTR_FOR_FN (cfun), 0);
7253 pop_cfun ();
7255 /* Back in the original function, the SESE region has disappeared,
7256 create a new basic block in its place. */
7257 bb = create_empty_bb (entry_pred[0]);
7258 if (current_loops)
7259 add_bb_to_loop (bb, loop);
7260 for (i = 0; i < num_entry_edges; i++)
7262 e = make_edge (entry_pred[i], bb, entry_flag[i]);
7263 e->probability = entry_prob[i];
7266 for (i = 0; i < num_exit_edges; i++)
7268 e = make_edge (bb, exit_succ[i], exit_flag[i]);
7269 e->probability = exit_prob[i];
7272 set_immediate_dominator (CDI_DOMINATORS, bb, dom_entry);
7273 FOR_EACH_VEC_ELT (dom_bbs, i, abb)
7274 set_immediate_dominator (CDI_DOMINATORS, abb, bb);
7275 dom_bbs.release ();
7277 if (exit_bb)
7279 free (exit_prob);
7280 free (exit_flag);
7281 free (exit_succ);
7283 free (entry_prob);
7284 free (entry_flag);
7285 free (entry_pred);
7286 bbs.release ();
7288 return bb;
7292 /* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in dumpfile.h)
7295 void
7296 dump_function_to_file (tree fndecl, FILE *file, int flags)
7298 tree arg, var, old_current_fndecl = current_function_decl;
7299 struct function *dsf;
7300 bool ignore_topmost_bind = false, any_var = false;
7301 basic_block bb;
7302 tree chain;
7303 bool tmclone = (TREE_CODE (fndecl) == FUNCTION_DECL
7304 && decl_is_tm_clone (fndecl));
7305 struct function *fun = DECL_STRUCT_FUNCTION (fndecl);
7307 current_function_decl = fndecl;
7308 fprintf (file, "%s %s(", function_name (fun), tmclone ? "[tm-clone] " : "");
7310 arg = DECL_ARGUMENTS (fndecl);
7311 while (arg)
7313 print_generic_expr (file, TREE_TYPE (arg), dump_flags);
7314 fprintf (file, " ");
7315 print_generic_expr (file, arg, dump_flags);
7316 if (flags & TDF_VERBOSE)
7317 print_node (file, "", arg, 4);
7318 if (DECL_CHAIN (arg))
7319 fprintf (file, ", ");
7320 arg = DECL_CHAIN (arg);
7322 fprintf (file, ")\n");
7324 if (flags & TDF_VERBOSE)
7325 print_node (file, "", fndecl, 2);
7327 dsf = DECL_STRUCT_FUNCTION (fndecl);
7328 if (dsf && (flags & TDF_EH))
7329 dump_eh_tree (file, dsf);
7331 if (flags & TDF_RAW && !gimple_has_body_p (fndecl))
7333 dump_node (fndecl, TDF_SLIM | flags, file);
7334 current_function_decl = old_current_fndecl;
7335 return;
7338 /* When GIMPLE is lowered, the variables are no longer available in
7339 BIND_EXPRs, so display them separately. */
7340 if (fun && fun->decl == fndecl && (fun->curr_properties & PROP_gimple_lcf))
7342 unsigned ix;
7343 ignore_topmost_bind = true;
7345 fprintf (file, "{\n");
7346 if (!vec_safe_is_empty (fun->local_decls))
7347 FOR_EACH_LOCAL_DECL (fun, ix, var)
7349 print_generic_decl (file, var, flags);
7350 if (flags & TDF_VERBOSE)
7351 print_node (file, "", var, 4);
7352 fprintf (file, "\n");
7354 any_var = true;
7356 if (gimple_in_ssa_p (cfun))
7357 for (ix = 1; ix < num_ssa_names; ++ix)
7359 tree name = ssa_name (ix);
7360 if (name && !SSA_NAME_VAR (name))
7362 fprintf (file, " ");
7363 print_generic_expr (file, TREE_TYPE (name), flags);
7364 fprintf (file, " ");
7365 print_generic_expr (file, name, flags);
7366 fprintf (file, ";\n");
7368 any_var = true;
7373 if (fun && fun->decl == fndecl
7374 && fun->cfg
7375 && basic_block_info_for_fn (fun))
7377 /* If the CFG has been built, emit a CFG-based dump. */
7378 if (!ignore_topmost_bind)
7379 fprintf (file, "{\n");
7381 if (any_var && n_basic_blocks_for_fn (fun))
7382 fprintf (file, "\n");
7384 FOR_EACH_BB_FN (bb, fun)
7385 dump_bb (file, bb, 2, flags | TDF_COMMENT);
7387 fprintf (file, "}\n");
7389 else if (DECL_SAVED_TREE (fndecl) == NULL)
7391 /* The function is now in GIMPLE form but the CFG has not been
7392 built yet. Emit the single sequence of GIMPLE statements
7393 that make up its body. */
7394 gimple_seq body = gimple_body (fndecl);
7396 if (gimple_seq_first_stmt (body)
7397 && gimple_seq_first_stmt (body) == gimple_seq_last_stmt (body)
7398 && gimple_code (gimple_seq_first_stmt (body)) == GIMPLE_BIND)
7399 print_gimple_seq (file, body, 0, flags);
7400 else
7402 if (!ignore_topmost_bind)
7403 fprintf (file, "{\n");
7405 if (any_var)
7406 fprintf (file, "\n");
7408 print_gimple_seq (file, body, 2, flags);
7409 fprintf (file, "}\n");
7412 else
7414 int indent;
7416 /* Make a tree based dump. */
7417 chain = DECL_SAVED_TREE (fndecl);
7418 if (chain && TREE_CODE (chain) == BIND_EXPR)
7420 if (ignore_topmost_bind)
7422 chain = BIND_EXPR_BODY (chain);
7423 indent = 2;
7425 else
7426 indent = 0;
7428 else
7430 if (!ignore_topmost_bind)
7432 fprintf (file, "{\n");
7433 /* No topmost bind, pretend it's ignored for later. */
7434 ignore_topmost_bind = true;
7436 indent = 2;
7439 if (any_var)
7440 fprintf (file, "\n");
7442 print_generic_stmt_indented (file, chain, flags, indent);
7443 if (ignore_topmost_bind)
7444 fprintf (file, "}\n");
7447 if (flags & TDF_ENUMERATE_LOCALS)
7448 dump_enumerated_decls (file, flags);
7449 fprintf (file, "\n\n");
7451 current_function_decl = old_current_fndecl;
7454 /* Dump FUNCTION_DECL FN to stderr using FLAGS (see TDF_* in tree.h) */
7456 DEBUG_FUNCTION void
7457 debug_function (tree fn, int flags)
7459 dump_function_to_file (fn, stderr, flags);
7463 /* Print on FILE the indexes for the predecessors of basic_block BB. */
7465 static void
7466 print_pred_bbs (FILE *file, basic_block bb)
7468 edge e;
7469 edge_iterator ei;
7471 FOR_EACH_EDGE (e, ei, bb->preds)
7472 fprintf (file, "bb_%d ", e->src->index);
7476 /* Print on FILE the indexes for the successors of basic_block BB. */
7478 static void
7479 print_succ_bbs (FILE *file, basic_block bb)
7481 edge e;
7482 edge_iterator ei;
7484 FOR_EACH_EDGE (e, ei, bb->succs)
7485 fprintf (file, "bb_%d ", e->dest->index);
7488 /* Print to FILE the basic block BB following the VERBOSITY level. */
7490 void
7491 print_loops_bb (FILE *file, basic_block bb, int indent, int verbosity)
7493 char *s_indent = (char *) alloca ((size_t) indent + 1);
7494 memset ((void *) s_indent, ' ', (size_t) indent);
7495 s_indent[indent] = '\0';
7497 /* Print basic_block's header. */
7498 if (verbosity >= 2)
7500 fprintf (file, "%s bb_%d (preds = {", s_indent, bb->index);
7501 print_pred_bbs (file, bb);
7502 fprintf (file, "}, succs = {");
7503 print_succ_bbs (file, bb);
7504 fprintf (file, "})\n");
7507 /* Print basic_block's body. */
7508 if (verbosity >= 3)
7510 fprintf (file, "%s {\n", s_indent);
7511 dump_bb (file, bb, indent + 4, TDF_VOPS|TDF_MEMSYMS);
7512 fprintf (file, "%s }\n", s_indent);
7516 static void print_loop_and_siblings (FILE *, struct loop *, int, int);
7518 /* Pretty print LOOP on FILE, indented INDENT spaces. Following
7519 VERBOSITY level this outputs the contents of the loop, or just its
7520 structure. */
7522 static void
7523 print_loop (FILE *file, struct loop *loop, int indent, int verbosity)
7525 char *s_indent;
7526 basic_block bb;
7528 if (loop == NULL)
7529 return;
7531 s_indent = (char *) alloca ((size_t) indent + 1);
7532 memset ((void *) s_indent, ' ', (size_t) indent);
7533 s_indent[indent] = '\0';
7535 /* Print loop's header. */
7536 fprintf (file, "%sloop_%d (", s_indent, loop->num);
7537 if (loop->header)
7538 fprintf (file, "header = %d", loop->header->index);
7539 else
7541 fprintf (file, "deleted)\n");
7542 return;
7544 if (loop->latch)
7545 fprintf (file, ", latch = %d", loop->latch->index);
7546 else
7547 fprintf (file, ", multiple latches");
7548 fprintf (file, ", niter = ");
7549 print_generic_expr (file, loop->nb_iterations, 0);
7551 if (loop->any_upper_bound)
7553 fprintf (file, ", upper_bound = ");
7554 print_decu (loop->nb_iterations_upper_bound, file);
7557 if (loop->any_estimate)
7559 fprintf (file, ", estimate = ");
7560 print_decu (loop->nb_iterations_estimate, file);
7562 fprintf (file, ")\n");
7564 /* Print loop's body. */
7565 if (verbosity >= 1)
7567 fprintf (file, "%s{\n", s_indent);
7568 FOR_EACH_BB_FN (bb, cfun)
7569 if (bb->loop_father == loop)
7570 print_loops_bb (file, bb, indent, verbosity);
7572 print_loop_and_siblings (file, loop->inner, indent + 2, verbosity);
7573 fprintf (file, "%s}\n", s_indent);
7577 /* Print the LOOP and its sibling loops on FILE, indented INDENT
7578 spaces. Following VERBOSITY level this outputs the contents of the
7579 loop, or just its structure. */
7581 static void
7582 print_loop_and_siblings (FILE *file, struct loop *loop, int indent,
7583 int verbosity)
7585 if (loop == NULL)
7586 return;
7588 print_loop (file, loop, indent, verbosity);
7589 print_loop_and_siblings (file, loop->next, indent, verbosity);
7592 /* Follow a CFG edge from the entry point of the program, and on entry
7593 of a loop, pretty print the loop structure on FILE. */
7595 void
7596 print_loops (FILE *file, int verbosity)
7598 basic_block bb;
7600 bb = ENTRY_BLOCK_PTR_FOR_FN (cfun);
7601 if (bb && bb->loop_father)
7602 print_loop_and_siblings (file, bb->loop_father, 0, verbosity);
7605 /* Dump a loop. */
7607 DEBUG_FUNCTION void
7608 debug (struct loop &ref)
7610 print_loop (stderr, &ref, 0, /*verbosity*/0);
7613 DEBUG_FUNCTION void
7614 debug (struct loop *ptr)
7616 if (ptr)
7617 debug (*ptr);
7618 else
7619 fprintf (stderr, "<nil>\n");
7622 /* Dump a loop verbosely. */
7624 DEBUG_FUNCTION void
7625 debug_verbose (struct loop &ref)
7627 print_loop (stderr, &ref, 0, /*verbosity*/3);
7630 DEBUG_FUNCTION void
7631 debug_verbose (struct loop *ptr)
7633 if (ptr)
7634 debug (*ptr);
7635 else
7636 fprintf (stderr, "<nil>\n");
7640 /* Debugging loops structure at tree level, at some VERBOSITY level. */
7642 DEBUG_FUNCTION void
7643 debug_loops (int verbosity)
7645 print_loops (stderr, verbosity);
7648 /* Print on stderr the code of LOOP, at some VERBOSITY level. */
7650 DEBUG_FUNCTION void
7651 debug_loop (struct loop *loop, int verbosity)
7653 print_loop (stderr, loop, 0, verbosity);
7656 /* Print on stderr the code of loop number NUM, at some VERBOSITY
7657 level. */
7659 DEBUG_FUNCTION void
7660 debug_loop_num (unsigned num, int verbosity)
7662 debug_loop (get_loop (cfun, num), verbosity);
7665 /* Return true if BB ends with a call, possibly followed by some
7666 instructions that must stay with the call. Return false,
7667 otherwise. */
7669 static bool
7670 gimple_block_ends_with_call_p (basic_block bb)
7672 gimple_stmt_iterator gsi = gsi_last_nondebug_bb (bb);
7673 return !gsi_end_p (gsi) && is_gimple_call (gsi_stmt (gsi));
7677 /* Return true if BB ends with a conditional branch. Return false,
7678 otherwise. */
7680 static bool
7681 gimple_block_ends_with_condjump_p (const_basic_block bb)
7683 gimple stmt = last_stmt (CONST_CAST_BB (bb));
7684 return (stmt && gimple_code (stmt) == GIMPLE_COND);
7688 /* Return true if we need to add fake edge to exit at statement T.
7689 Helper function for gimple_flow_call_edges_add. */
7691 static bool
7692 need_fake_edge_p (gimple t)
7694 tree fndecl = NULL_TREE;
7695 int call_flags = 0;
7697 /* NORETURN and LONGJMP calls already have an edge to exit.
7698 CONST and PURE calls do not need one.
7699 We don't currently check for CONST and PURE here, although
7700 it would be a good idea, because those attributes are
7701 figured out from the RTL in mark_constant_function, and
7702 the counter incrementation code from -fprofile-arcs
7703 leads to different results from -fbranch-probabilities. */
7704 if (is_gimple_call (t))
7706 fndecl = gimple_call_fndecl (t);
7707 call_flags = gimple_call_flags (t);
7710 if (is_gimple_call (t)
7711 && fndecl
7712 && DECL_BUILT_IN (fndecl)
7713 && (call_flags & ECF_NOTHROW)
7714 && !(call_flags & ECF_RETURNS_TWICE)
7715 /* fork() doesn't really return twice, but the effect of
7716 wrapping it in __gcov_fork() which calls __gcov_flush()
7717 and clears the counters before forking has the same
7718 effect as returning twice. Force a fake edge. */
7719 && !(DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
7720 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_FORK))
7721 return false;
7723 if (is_gimple_call (t))
7725 edge_iterator ei;
7726 edge e;
7727 basic_block bb;
7729 if (!(call_flags & ECF_NORETURN))
7730 return true;
7732 bb = gimple_bb (t);
7733 FOR_EACH_EDGE (e, ei, bb->succs)
7734 if ((e->flags & EDGE_FAKE) == 0)
7735 return true;
7738 if (gasm *asm_stmt = dyn_cast <gasm *> (t))
7739 if (gimple_asm_volatile_p (asm_stmt) || gimple_asm_input_p (asm_stmt))
7740 return true;
7742 return false;
7746 /* Add fake edges to the function exit for any non constant and non
7747 noreturn calls (or noreturn calls with EH/abnormal edges),
7748 volatile inline assembly in the bitmap of blocks specified by BLOCKS
7749 or to the whole CFG if BLOCKS is zero. Return the number of blocks
7750 that were split.
7752 The goal is to expose cases in which entering a basic block does
7753 not imply that all subsequent instructions must be executed. */
7755 static int
7756 gimple_flow_call_edges_add (sbitmap blocks)
7758 int i;
7759 int blocks_split = 0;
7760 int last_bb = last_basic_block_for_fn (cfun);
7761 bool check_last_block = false;
7763 if (n_basic_blocks_for_fn (cfun) == NUM_FIXED_BLOCKS)
7764 return 0;
7766 if (! blocks)
7767 check_last_block = true;
7768 else
7769 check_last_block = bitmap_bit_p (blocks,
7770 EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb->index);
7772 /* In the last basic block, before epilogue generation, there will be
7773 a fallthru edge to EXIT. Special care is required if the last insn
7774 of the last basic block is a call because make_edge folds duplicate
7775 edges, which would result in the fallthru edge also being marked
7776 fake, which would result in the fallthru edge being removed by
7777 remove_fake_edges, which would result in an invalid CFG.
7779 Moreover, we can't elide the outgoing fake edge, since the block
7780 profiler needs to take this into account in order to solve the minimal
7781 spanning tree in the case that the call doesn't return.
7783 Handle this by adding a dummy instruction in a new last basic block. */
7784 if (check_last_block)
7786 basic_block bb = EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb;
7787 gimple_stmt_iterator gsi = gsi_last_nondebug_bb (bb);
7788 gimple t = NULL;
7790 if (!gsi_end_p (gsi))
7791 t = gsi_stmt (gsi);
7793 if (t && need_fake_edge_p (t))
7795 edge e;
7797 e = find_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun));
7798 if (e)
7800 gsi_insert_on_edge (e, gimple_build_nop ());
7801 gsi_commit_edge_inserts ();
7806 /* Now add fake edges to the function exit for any non constant
7807 calls since there is no way that we can determine if they will
7808 return or not... */
7809 for (i = 0; i < last_bb; i++)
7811 basic_block bb = BASIC_BLOCK_FOR_FN (cfun, i);
7812 gimple_stmt_iterator gsi;
7813 gimple stmt, last_stmt;
7815 if (!bb)
7816 continue;
7818 if (blocks && !bitmap_bit_p (blocks, i))
7819 continue;
7821 gsi = gsi_last_nondebug_bb (bb);
7822 if (!gsi_end_p (gsi))
7824 last_stmt = gsi_stmt (gsi);
7827 stmt = gsi_stmt (gsi);
7828 if (need_fake_edge_p (stmt))
7830 edge e;
7832 /* The handling above of the final block before the
7833 epilogue should be enough to verify that there is
7834 no edge to the exit block in CFG already.
7835 Calling make_edge in such case would cause us to
7836 mark that edge as fake and remove it later. */
7837 #ifdef ENABLE_CHECKING
7838 if (stmt == last_stmt)
7840 e = find_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun));
7841 gcc_assert (e == NULL);
7843 #endif
7845 /* Note that the following may create a new basic block
7846 and renumber the existing basic blocks. */
7847 if (stmt != last_stmt)
7849 e = split_block (bb, stmt);
7850 if (e)
7851 blocks_split++;
7853 make_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun), EDGE_FAKE);
7855 gsi_prev (&gsi);
7857 while (!gsi_end_p (gsi));
7861 if (blocks_split)
7862 verify_flow_info ();
7864 return blocks_split;
7867 /* Removes edge E and all the blocks dominated by it, and updates dominance
7868 information. The IL in E->src needs to be updated separately.
7869 If dominance info is not available, only the edge E is removed.*/
7871 void
7872 remove_edge_and_dominated_blocks (edge e)
7874 vec<basic_block> bbs_to_remove = vNULL;
7875 vec<basic_block> bbs_to_fix_dom = vNULL;
7876 bitmap df, df_idom;
7877 edge f;
7878 edge_iterator ei;
7879 bool none_removed = false;
7880 unsigned i;
7881 basic_block bb, dbb;
7882 bitmap_iterator bi;
7884 /* If we are removing a path inside a non-root loop that may change
7885 loop ownership of blocks or remove loops. Mark loops for fixup. */
7886 if (current_loops
7887 && loop_outer (e->src->loop_father) != NULL
7888 && e->src->loop_father == e->dest->loop_father)
7889 loops_state_set (LOOPS_NEED_FIXUP);
7891 if (!dom_info_available_p (CDI_DOMINATORS))
7893 remove_edge (e);
7894 return;
7897 /* No updating is needed for edges to exit. */
7898 if (e->dest == EXIT_BLOCK_PTR_FOR_FN (cfun))
7900 if (cfgcleanup_altered_bbs)
7901 bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
7902 remove_edge (e);
7903 return;
7906 /* First, we find the basic blocks to remove. If E->dest has a predecessor
7907 that is not dominated by E->dest, then this set is empty. Otherwise,
7908 all the basic blocks dominated by E->dest are removed.
7910 Also, to DF_IDOM we store the immediate dominators of the blocks in
7911 the dominance frontier of E (i.e., of the successors of the
7912 removed blocks, if there are any, and of E->dest otherwise). */
7913 FOR_EACH_EDGE (f, ei, e->dest->preds)
7915 if (f == e)
7916 continue;
7918 if (!dominated_by_p (CDI_DOMINATORS, f->src, e->dest))
7920 none_removed = true;
7921 break;
7925 df = BITMAP_ALLOC (NULL);
7926 df_idom = BITMAP_ALLOC (NULL);
7928 if (none_removed)
7929 bitmap_set_bit (df_idom,
7930 get_immediate_dominator (CDI_DOMINATORS, e->dest)->index);
7931 else
7933 bbs_to_remove = get_all_dominated_blocks (CDI_DOMINATORS, e->dest);
7934 FOR_EACH_VEC_ELT (bbs_to_remove, i, bb)
7936 FOR_EACH_EDGE (f, ei, bb->succs)
7938 if (f->dest != EXIT_BLOCK_PTR_FOR_FN (cfun))
7939 bitmap_set_bit (df, f->dest->index);
7942 FOR_EACH_VEC_ELT (bbs_to_remove, i, bb)
7943 bitmap_clear_bit (df, bb->index);
7945 EXECUTE_IF_SET_IN_BITMAP (df, 0, i, bi)
7947 bb = BASIC_BLOCK_FOR_FN (cfun, i);
7948 bitmap_set_bit (df_idom,
7949 get_immediate_dominator (CDI_DOMINATORS, bb)->index);
7953 if (cfgcleanup_altered_bbs)
7955 /* Record the set of the altered basic blocks. */
7956 bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
7957 bitmap_ior_into (cfgcleanup_altered_bbs, df);
7960 /* Remove E and the cancelled blocks. */
7961 if (none_removed)
7962 remove_edge (e);
7963 else
7965 /* Walk backwards so as to get a chance to substitute all
7966 released DEFs into debug stmts. See
7967 eliminate_unnecessary_stmts() in tree-ssa-dce.c for more
7968 details. */
7969 for (i = bbs_to_remove.length (); i-- > 0; )
7970 delete_basic_block (bbs_to_remove[i]);
7973 /* Update the dominance information. The immediate dominator may change only
7974 for blocks whose immediate dominator belongs to DF_IDOM:
7976 Suppose that idom(X) = Y before removal of E and idom(X) != Y after the
7977 removal. Let Z the arbitrary block such that idom(Z) = Y and
7978 Z dominates X after the removal. Before removal, there exists a path P
7979 from Y to X that avoids Z. Let F be the last edge on P that is
7980 removed, and let W = F->dest. Before removal, idom(W) = Y (since Y
7981 dominates W, and because of P, Z does not dominate W), and W belongs to
7982 the dominance frontier of E. Therefore, Y belongs to DF_IDOM. */
7983 EXECUTE_IF_SET_IN_BITMAP (df_idom, 0, i, bi)
7985 bb = BASIC_BLOCK_FOR_FN (cfun, i);
7986 for (dbb = first_dom_son (CDI_DOMINATORS, bb);
7987 dbb;
7988 dbb = next_dom_son (CDI_DOMINATORS, dbb))
7989 bbs_to_fix_dom.safe_push (dbb);
7992 iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true);
7994 BITMAP_FREE (df);
7995 BITMAP_FREE (df_idom);
7996 bbs_to_remove.release ();
7997 bbs_to_fix_dom.release ();
8000 /* Purge dead EH edges from basic block BB. */
8002 bool
8003 gimple_purge_dead_eh_edges (basic_block bb)
8005 bool changed = false;
8006 edge e;
8007 edge_iterator ei;
8008 gimple stmt = last_stmt (bb);
8010 if (stmt && stmt_can_throw_internal (stmt))
8011 return false;
8013 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
8015 if (e->flags & EDGE_EH)
8017 remove_edge_and_dominated_blocks (e);
8018 changed = true;
8020 else
8021 ei_next (&ei);
8024 return changed;
8027 /* Purge dead EH edges from basic block listed in BLOCKS. */
8029 bool
8030 gimple_purge_all_dead_eh_edges (const_bitmap blocks)
8032 bool changed = false;
8033 unsigned i;
8034 bitmap_iterator bi;
8036 EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
8038 basic_block bb = BASIC_BLOCK_FOR_FN (cfun, i);
8040 /* Earlier gimple_purge_dead_eh_edges could have removed
8041 this basic block already. */
8042 gcc_assert (bb || changed);
8043 if (bb != NULL)
8044 changed |= gimple_purge_dead_eh_edges (bb);
8047 return changed;
8050 /* Purge dead abnormal call edges from basic block BB. */
8052 bool
8053 gimple_purge_dead_abnormal_call_edges (basic_block bb)
8055 bool changed = false;
8056 edge e;
8057 edge_iterator ei;
8058 gimple stmt = last_stmt (bb);
8060 if (!cfun->has_nonlocal_label
8061 && !cfun->calls_setjmp)
8062 return false;
8064 if (stmt && stmt_can_make_abnormal_goto (stmt))
8065 return false;
8067 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
8069 if (e->flags & EDGE_ABNORMAL)
8071 if (e->flags & EDGE_FALLTHRU)
8072 e->flags &= ~EDGE_ABNORMAL;
8073 else
8074 remove_edge_and_dominated_blocks (e);
8075 changed = true;
8077 else
8078 ei_next (&ei);
8081 return changed;
8084 /* Purge dead abnormal call edges from basic block listed in BLOCKS. */
8086 bool
8087 gimple_purge_all_dead_abnormal_call_edges (const_bitmap blocks)
8089 bool changed = false;
8090 unsigned i;
8091 bitmap_iterator bi;
8093 EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
8095 basic_block bb = BASIC_BLOCK_FOR_FN (cfun, i);
8097 /* Earlier gimple_purge_dead_abnormal_call_edges could have removed
8098 this basic block already. */
8099 gcc_assert (bb || changed);
8100 if (bb != NULL)
8101 changed |= gimple_purge_dead_abnormal_call_edges (bb);
8104 return changed;
8107 /* This function is called whenever a new edge is created or
8108 redirected. */
8110 static void
8111 gimple_execute_on_growing_pred (edge e)
8113 basic_block bb = e->dest;
8115 if (!gimple_seq_empty_p (phi_nodes (bb)))
8116 reserve_phi_args_for_new_edge (bb);
8119 /* This function is called immediately before edge E is removed from
8120 the edge vector E->dest->preds. */
8122 static void
8123 gimple_execute_on_shrinking_pred (edge e)
8125 if (!gimple_seq_empty_p (phi_nodes (e->dest)))
8126 remove_phi_args (e);
8129 /*---------------------------------------------------------------------------
8130 Helper functions for Loop versioning
8131 ---------------------------------------------------------------------------*/
8133 /* Adjust phi nodes for 'first' basic block. 'second' basic block is a copy
8134 of 'first'. Both of them are dominated by 'new_head' basic block. When
8135 'new_head' was created by 'second's incoming edge it received phi arguments
8136 on the edge by split_edge(). Later, additional edge 'e' was created to
8137 connect 'new_head' and 'first'. Now this routine adds phi args on this
8138 additional edge 'e' that new_head to second edge received as part of edge
8139 splitting. */
8141 static void
8142 gimple_lv_adjust_loop_header_phi (basic_block first, basic_block second,
8143 basic_block new_head, edge e)
8145 gphi *phi1, *phi2;
8146 gphi_iterator psi1, psi2;
8147 tree def;
8148 edge e2 = find_edge (new_head, second);
8150 /* Because NEW_HEAD has been created by splitting SECOND's incoming
8151 edge, we should always have an edge from NEW_HEAD to SECOND. */
8152 gcc_assert (e2 != NULL);
8154 /* Browse all 'second' basic block phi nodes and add phi args to
8155 edge 'e' for 'first' head. PHI args are always in correct order. */
8157 for (psi2 = gsi_start_phis (second),
8158 psi1 = gsi_start_phis (first);
8159 !gsi_end_p (psi2) && !gsi_end_p (psi1);
8160 gsi_next (&psi2), gsi_next (&psi1))
8162 phi1 = psi1.phi ();
8163 phi2 = psi2.phi ();
8164 def = PHI_ARG_DEF (phi2, e2->dest_idx);
8165 add_phi_arg (phi1, def, e, gimple_phi_arg_location_from_edge (phi2, e2));
8170 /* Adds a if else statement to COND_BB with condition COND_EXPR.
8171 SECOND_HEAD is the destination of the THEN and FIRST_HEAD is
8172 the destination of the ELSE part. */
8174 static void
8175 gimple_lv_add_condition_to_bb (basic_block first_head ATTRIBUTE_UNUSED,
8176 basic_block second_head ATTRIBUTE_UNUSED,
8177 basic_block cond_bb, void *cond_e)
8179 gimple_stmt_iterator gsi;
8180 gimple new_cond_expr;
8181 tree cond_expr = (tree) cond_e;
8182 edge e0;
8184 /* Build new conditional expr */
8185 new_cond_expr = gimple_build_cond_from_tree (cond_expr,
8186 NULL_TREE, NULL_TREE);
8188 /* Add new cond in cond_bb. */
8189 gsi = gsi_last_bb (cond_bb);
8190 gsi_insert_after (&gsi, new_cond_expr, GSI_NEW_STMT);
8192 /* Adjust edges appropriately to connect new head with first head
8193 as well as second head. */
8194 e0 = single_succ_edge (cond_bb);
8195 e0->flags &= ~EDGE_FALLTHRU;
8196 e0->flags |= EDGE_FALSE_VALUE;
8200 /* Do book-keeping of basic block BB for the profile consistency checker.
8201 If AFTER_PASS is 0, do pre-pass accounting, or if AFTER_PASS is 1
8202 then do post-pass accounting. Store the counting in RECORD. */
8203 static void
8204 gimple_account_profile_record (basic_block bb, int after_pass,
8205 struct profile_record *record)
8207 gimple_stmt_iterator i;
8208 for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
8210 record->size[after_pass]
8211 += estimate_num_insns (gsi_stmt (i), &eni_size_weights);
8212 if (profile_status_for_fn (cfun) == PROFILE_READ)
8213 record->time[after_pass]
8214 += estimate_num_insns (gsi_stmt (i),
8215 &eni_time_weights) * bb->count;
8216 else if (profile_status_for_fn (cfun) == PROFILE_GUESSED)
8217 record->time[after_pass]
8218 += estimate_num_insns (gsi_stmt (i),
8219 &eni_time_weights) * bb->frequency;
8223 struct cfg_hooks gimple_cfg_hooks = {
8224 "gimple",
8225 gimple_verify_flow_info,
8226 gimple_dump_bb, /* dump_bb */
8227 gimple_dump_bb_for_graph, /* dump_bb_for_graph */
8228 create_bb, /* create_basic_block */
8229 gimple_redirect_edge_and_branch, /* redirect_edge_and_branch */
8230 gimple_redirect_edge_and_branch_force, /* redirect_edge_and_branch_force */
8231 gimple_can_remove_branch_p, /* can_remove_branch_p */
8232 remove_bb, /* delete_basic_block */
8233 gimple_split_block, /* split_block */
8234 gimple_move_block_after, /* move_block_after */
8235 gimple_can_merge_blocks_p, /* can_merge_blocks_p */
8236 gimple_merge_blocks, /* merge_blocks */
8237 gimple_predict_edge, /* predict_edge */
8238 gimple_predicted_by_p, /* predicted_by_p */
8239 gimple_can_duplicate_bb_p, /* can_duplicate_block_p */
8240 gimple_duplicate_bb, /* duplicate_block */
8241 gimple_split_edge, /* split_edge */
8242 gimple_make_forwarder_block, /* make_forward_block */
8243 NULL, /* tidy_fallthru_edge */
8244 NULL, /* force_nonfallthru */
8245 gimple_block_ends_with_call_p,/* block_ends_with_call_p */
8246 gimple_block_ends_with_condjump_p, /* block_ends_with_condjump_p */
8247 gimple_flow_call_edges_add, /* flow_call_edges_add */
8248 gimple_execute_on_growing_pred, /* execute_on_growing_pred */
8249 gimple_execute_on_shrinking_pred, /* execute_on_shrinking_pred */
8250 gimple_duplicate_loop_to_header_edge, /* duplicate loop for trees */
8251 gimple_lv_add_condition_to_bb, /* lv_add_condition_to_bb */
8252 gimple_lv_adjust_loop_header_phi, /* lv_adjust_loop_header_phi*/
8253 extract_true_false_edges_from_block, /* extract_cond_bb_edges */
8254 flush_pending_stmts, /* flush_pending_stmts */
8255 gimple_empty_block_p, /* block_empty_p */
8256 gimple_split_block_before_cond_jump, /* split_block_before_cond_jump */
8257 gimple_account_profile_record,
8261 /* Split all critical edges. */
8263 unsigned int
8264 split_critical_edges (void)
8266 basic_block bb;
8267 edge e;
8268 edge_iterator ei;
8270 /* split_edge can redirect edges out of SWITCH_EXPRs, which can get
8271 expensive. So we want to enable recording of edge to CASE_LABEL_EXPR
8272 mappings around the calls to split_edge. */
8273 start_recording_case_labels ();
8274 FOR_ALL_BB_FN (bb, cfun)
8276 FOR_EACH_EDGE (e, ei, bb->succs)
8278 if (EDGE_CRITICAL_P (e) && !(e->flags & EDGE_ABNORMAL))
8279 split_edge (e);
8280 /* PRE inserts statements to edges and expects that
8281 since split_critical_edges was done beforehand, committing edge
8282 insertions will not split more edges. In addition to critical
8283 edges we must split edges that have multiple successors and
8284 end by control flow statements, such as RESX.
8285 Go ahead and split them too. This matches the logic in
8286 gimple_find_edge_insert_loc. */
8287 else if ((!single_pred_p (e->dest)
8288 || !gimple_seq_empty_p (phi_nodes (e->dest))
8289 || e->dest == EXIT_BLOCK_PTR_FOR_FN (cfun))
8290 && e->src != ENTRY_BLOCK_PTR_FOR_FN (cfun)
8291 && !(e->flags & EDGE_ABNORMAL))
8293 gimple_stmt_iterator gsi;
8295 gsi = gsi_last_bb (e->src);
8296 if (!gsi_end_p (gsi)
8297 && stmt_ends_bb_p (gsi_stmt (gsi))
8298 && (gimple_code (gsi_stmt (gsi)) != GIMPLE_RETURN
8299 && !gimple_call_builtin_p (gsi_stmt (gsi),
8300 BUILT_IN_RETURN)))
8301 split_edge (e);
8305 end_recording_case_labels ();
8306 return 0;
8309 namespace {
8311 const pass_data pass_data_split_crit_edges =
8313 GIMPLE_PASS, /* type */
8314 "crited", /* name */
8315 OPTGROUP_NONE, /* optinfo_flags */
8316 TV_TREE_SPLIT_EDGES, /* tv_id */
8317 PROP_cfg, /* properties_required */
8318 PROP_no_crit_edges, /* properties_provided */
8319 0, /* properties_destroyed */
8320 0, /* todo_flags_start */
8321 0, /* todo_flags_finish */
8324 class pass_split_crit_edges : public gimple_opt_pass
8326 public:
8327 pass_split_crit_edges (gcc::context *ctxt)
8328 : gimple_opt_pass (pass_data_split_crit_edges, ctxt)
8331 /* opt_pass methods: */
8332 virtual unsigned int execute (function *) { return split_critical_edges (); }
8334 opt_pass * clone () { return new pass_split_crit_edges (m_ctxt); }
8335 }; // class pass_split_crit_edges
8337 } // anon namespace
8339 gimple_opt_pass *
8340 make_pass_split_crit_edges (gcc::context *ctxt)
8342 return new pass_split_crit_edges (ctxt);
8346 /* Insert COND expression which is GIMPLE_COND after STMT
8347 in basic block BB with appropriate basic block split
8348 and creation of a new conditionally executed basic block.
8349 Return created basic block. */
8350 basic_block
8351 insert_cond_bb (basic_block bb, gimple stmt, gimple cond)
8353 edge fall = split_block (bb, stmt);
8354 gimple_stmt_iterator iter = gsi_last_bb (bb);
8355 basic_block new_bb;
8357 /* Insert cond statement. */
8358 gcc_assert (gimple_code (cond) == GIMPLE_COND);
8359 if (gsi_end_p (iter))
8360 gsi_insert_before (&iter, cond, GSI_CONTINUE_LINKING);
8361 else
8362 gsi_insert_after (&iter, cond, GSI_CONTINUE_LINKING);
8364 /* Create conditionally executed block. */
8365 new_bb = create_empty_bb (bb);
8366 make_edge (bb, new_bb, EDGE_TRUE_VALUE);
8367 make_single_succ_edge (new_bb, fall->dest, EDGE_FALLTHRU);
8369 /* Fix edge for split bb. */
8370 fall->flags = EDGE_FALSE_VALUE;
8372 /* Update dominance info. */
8373 if (dom_info_available_p (CDI_DOMINATORS))
8375 set_immediate_dominator (CDI_DOMINATORS, new_bb, bb);
8376 set_immediate_dominator (CDI_DOMINATORS, fall->dest, bb);
8379 /* Update loop info. */
8380 if (current_loops)
8381 add_bb_to_loop (new_bb, bb->loop_father);
8383 return new_bb;
8386 /* Build a ternary operation and gimplify it. Emit code before GSI.
8387 Return the gimple_val holding the result. */
8389 tree
8390 gimplify_build3 (gimple_stmt_iterator *gsi, enum tree_code code,
8391 tree type, tree a, tree b, tree c)
8393 tree ret;
8394 location_t loc = gimple_location (gsi_stmt (*gsi));
8396 ret = fold_build3_loc (loc, code, type, a, b, c);
8397 STRIP_NOPS (ret);
8399 return force_gimple_operand_gsi (gsi, ret, true, NULL, true,
8400 GSI_SAME_STMT);
8403 /* Build a binary operation and gimplify it. Emit code before GSI.
8404 Return the gimple_val holding the result. */
8406 tree
8407 gimplify_build2 (gimple_stmt_iterator *gsi, enum tree_code code,
8408 tree type, tree a, tree b)
8410 tree ret;
8412 ret = fold_build2_loc (gimple_location (gsi_stmt (*gsi)), code, type, a, b);
8413 STRIP_NOPS (ret);
8415 return force_gimple_operand_gsi (gsi, ret, true, NULL, true,
8416 GSI_SAME_STMT);
8419 /* Build a unary operation and gimplify it. Emit code before GSI.
8420 Return the gimple_val holding the result. */
8422 tree
8423 gimplify_build1 (gimple_stmt_iterator *gsi, enum tree_code code, tree type,
8424 tree a)
8426 tree ret;
8428 ret = fold_build1_loc (gimple_location (gsi_stmt (*gsi)), code, type, a);
8429 STRIP_NOPS (ret);
8431 return force_gimple_operand_gsi (gsi, ret, true, NULL, true,
8432 GSI_SAME_STMT);
8437 /* Given a basic block B which ends with a conditional and has
8438 precisely two successors, determine which of the edges is taken if
8439 the conditional is true and which is taken if the conditional is
8440 false. Set TRUE_EDGE and FALSE_EDGE appropriately. */
8442 void
8443 extract_true_false_edges_from_block (basic_block b,
8444 edge *true_edge,
8445 edge *false_edge)
8447 edge e = EDGE_SUCC (b, 0);
8449 if (e->flags & EDGE_TRUE_VALUE)
8451 *true_edge = e;
8452 *false_edge = EDGE_SUCC (b, 1);
8454 else
8456 *false_edge = e;
8457 *true_edge = EDGE_SUCC (b, 1);
8461 /* Emit return warnings. */
8463 namespace {
8465 const pass_data pass_data_warn_function_return =
8467 GIMPLE_PASS, /* type */
8468 "*warn_function_return", /* name */
8469 OPTGROUP_NONE, /* optinfo_flags */
8470 TV_NONE, /* tv_id */
8471 PROP_cfg, /* properties_required */
8472 0, /* properties_provided */
8473 0, /* properties_destroyed */
8474 0, /* todo_flags_start */
8475 0, /* todo_flags_finish */
8478 class pass_warn_function_return : public gimple_opt_pass
8480 public:
8481 pass_warn_function_return (gcc::context *ctxt)
8482 : gimple_opt_pass (pass_data_warn_function_return, ctxt)
8485 /* opt_pass methods: */
8486 virtual unsigned int execute (function *);
8488 }; // class pass_warn_function_return
8490 unsigned int
8491 pass_warn_function_return::execute (function *fun)
8493 source_location location;
8494 gimple last;
8495 edge e;
8496 edge_iterator ei;
8498 if (!targetm.warn_func_return (fun->decl))
8499 return 0;
8501 /* If we have a path to EXIT, then we do return. */
8502 if (TREE_THIS_VOLATILE (fun->decl)
8503 && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (fun)->preds) > 0)
8505 location = UNKNOWN_LOCATION;
8506 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR_FOR_FN (fun)->preds)
8508 last = last_stmt (e->src);
8509 if ((gimple_code (last) == GIMPLE_RETURN
8510 || gimple_call_builtin_p (last, BUILT_IN_RETURN))
8511 && (location = gimple_location (last)) != UNKNOWN_LOCATION)
8512 break;
8514 if (location == UNKNOWN_LOCATION)
8515 location = cfun->function_end_locus;
8516 warning_at (location, 0, "%<noreturn%> function does return");
8519 /* If we see "return;" in some basic block, then we do reach the end
8520 without returning a value. */
8521 else if (warn_return_type
8522 && !TREE_NO_WARNING (fun->decl)
8523 && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (fun)->preds) > 0
8524 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fun->decl))))
8526 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR_FOR_FN (fun)->preds)
8528 gimple last = last_stmt (e->src);
8529 greturn *return_stmt = dyn_cast <greturn *> (last);
8530 if (return_stmt
8531 && gimple_return_retval (return_stmt) == NULL
8532 && !gimple_no_warning_p (last))
8534 location = gimple_location (last);
8535 if (location == UNKNOWN_LOCATION)
8536 location = fun->function_end_locus;
8537 warning_at (location, OPT_Wreturn_type, "control reaches end of non-void function");
8538 TREE_NO_WARNING (fun->decl) = 1;
8539 break;
8543 return 0;
8546 } // anon namespace
8548 gimple_opt_pass *
8549 make_pass_warn_function_return (gcc::context *ctxt)
8551 return new pass_warn_function_return (ctxt);
8554 /* Walk a gimplified function and warn for functions whose return value is
8555 ignored and attribute((warn_unused_result)) is set. This is done before
8556 inlining, so we don't have to worry about that. */
8558 static void
8559 do_warn_unused_result (gimple_seq seq)
8561 tree fdecl, ftype;
8562 gimple_stmt_iterator i;
8564 for (i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
8566 gimple g = gsi_stmt (i);
8568 switch (gimple_code (g))
8570 case GIMPLE_BIND:
8571 do_warn_unused_result (gimple_bind_body (as_a <gbind *>(g)));
8572 break;
8573 case GIMPLE_TRY:
8574 do_warn_unused_result (gimple_try_eval (g));
8575 do_warn_unused_result (gimple_try_cleanup (g));
8576 break;
8577 case GIMPLE_CATCH:
8578 do_warn_unused_result (gimple_catch_handler (
8579 as_a <gcatch *> (g)));
8580 break;
8581 case GIMPLE_EH_FILTER:
8582 do_warn_unused_result (gimple_eh_filter_failure (g));
8583 break;
8585 case GIMPLE_CALL:
8586 if (gimple_call_lhs (g))
8587 break;
8588 if (gimple_call_internal_p (g))
8589 break;
8591 /* This is a naked call, as opposed to a GIMPLE_CALL with an
8592 LHS. All calls whose value is ignored should be
8593 represented like this. Look for the attribute. */
8594 fdecl = gimple_call_fndecl (g);
8595 ftype = gimple_call_fntype (g);
8597 if (lookup_attribute ("warn_unused_result", TYPE_ATTRIBUTES (ftype)))
8599 location_t loc = gimple_location (g);
8601 if (fdecl)
8602 warning_at (loc, OPT_Wunused_result,
8603 "ignoring return value of %qD, "
8604 "declared with attribute warn_unused_result",
8605 fdecl);
8606 else
8607 warning_at (loc, OPT_Wunused_result,
8608 "ignoring return value of function "
8609 "declared with attribute warn_unused_result");
8611 break;
8613 default:
8614 /* Not a container, not a call, or a call whose value is used. */
8615 break;
8620 namespace {
8622 const pass_data pass_data_warn_unused_result =
8624 GIMPLE_PASS, /* type */
8625 "*warn_unused_result", /* name */
8626 OPTGROUP_NONE, /* optinfo_flags */
8627 TV_NONE, /* tv_id */
8628 PROP_gimple_any, /* properties_required */
8629 0, /* properties_provided */
8630 0, /* properties_destroyed */
8631 0, /* todo_flags_start */
8632 0, /* todo_flags_finish */
8635 class pass_warn_unused_result : public gimple_opt_pass
8637 public:
8638 pass_warn_unused_result (gcc::context *ctxt)
8639 : gimple_opt_pass (pass_data_warn_unused_result, ctxt)
8642 /* opt_pass methods: */
8643 virtual bool gate (function *) { return flag_warn_unused_result; }
8644 virtual unsigned int execute (function *)
8646 do_warn_unused_result (gimple_body (current_function_decl));
8647 return 0;
8650 }; // class pass_warn_unused_result
8652 } // anon namespace
8654 gimple_opt_pass *
8655 make_pass_warn_unused_result (gcc::context *ctxt)
8657 return new pass_warn_unused_result (ctxt);
8660 /* IPA passes, compilation of earlier functions or inlining
8661 might have changed some properties, such as marked functions nothrow,
8662 pure, const or noreturn.
8663 Remove redundant edges and basic blocks, and create new ones if necessary.
8665 This pass can't be executed as stand alone pass from pass manager, because
8666 in between inlining and this fixup the verify_flow_info would fail. */
8668 unsigned int
8669 execute_fixup_cfg (void)
8671 basic_block bb;
8672 gimple_stmt_iterator gsi;
8673 int todo = 0;
8674 gcov_type count_scale;
8675 edge e;
8676 edge_iterator ei;
8678 count_scale
8679 = GCOV_COMPUTE_SCALE (cgraph_node::get (current_function_decl)->count,
8680 ENTRY_BLOCK_PTR_FOR_FN (cfun)->count);
8682 ENTRY_BLOCK_PTR_FOR_FN (cfun)->count =
8683 cgraph_node::get (current_function_decl)->count;
8684 EXIT_BLOCK_PTR_FOR_FN (cfun)->count =
8685 apply_scale (EXIT_BLOCK_PTR_FOR_FN (cfun)->count,
8686 count_scale);
8688 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs)
8689 e->count = apply_scale (e->count, count_scale);
8691 FOR_EACH_BB_FN (bb, cfun)
8693 bb->count = apply_scale (bb->count, count_scale);
8694 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi);)
8696 gimple stmt = gsi_stmt (gsi);
8697 tree decl = is_gimple_call (stmt)
8698 ? gimple_call_fndecl (stmt)
8699 : NULL;
8700 if (decl)
8702 int flags = gimple_call_flags (stmt);
8703 if (flags & (ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE))
8705 if (gimple_purge_dead_abnormal_call_edges (bb))
8706 todo |= TODO_cleanup_cfg;
8708 if (gimple_in_ssa_p (cfun))
8710 todo |= TODO_update_ssa | TODO_cleanup_cfg;
8711 update_stmt (stmt);
8715 if (flags & ECF_NORETURN
8716 && fixup_noreturn_call (stmt))
8717 todo |= TODO_cleanup_cfg;
8720 /* Remove stores to variables we marked write-only.
8721 Keep access when store has side effect, i.e. in case when source
8722 is volatile. */
8723 if (gimple_store_p (stmt)
8724 && !gimple_has_side_effects (stmt))
8726 tree lhs = get_base_address (gimple_get_lhs (stmt));
8728 if (TREE_CODE (lhs) == VAR_DECL
8729 && (TREE_STATIC (lhs) || DECL_EXTERNAL (lhs))
8730 && varpool_node::get (lhs)->writeonly)
8732 unlink_stmt_vdef (stmt);
8733 gsi_remove (&gsi, true);
8734 release_defs (stmt);
8735 todo |= TODO_update_ssa | TODO_cleanup_cfg;
8736 continue;
8739 /* For calls we can simply remove LHS when it is known
8740 to be write-only. */
8741 if (is_gimple_call (stmt)
8742 && gimple_get_lhs (stmt))
8744 tree lhs = get_base_address (gimple_get_lhs (stmt));
8746 if (TREE_CODE (lhs) == VAR_DECL
8747 && (TREE_STATIC (lhs) || DECL_EXTERNAL (lhs))
8748 && varpool_node::get (lhs)->writeonly)
8750 gimple_call_set_lhs (stmt, NULL);
8751 update_stmt (stmt);
8752 todo |= TODO_update_ssa | TODO_cleanup_cfg;
8756 if (maybe_clean_eh_stmt (stmt)
8757 && gimple_purge_dead_eh_edges (bb))
8758 todo |= TODO_cleanup_cfg;
8759 gsi_next (&gsi);
8762 FOR_EACH_EDGE (e, ei, bb->succs)
8763 e->count = apply_scale (e->count, count_scale);
8765 /* If we have a basic block with no successors that does not
8766 end with a control statement or a noreturn call end it with
8767 a call to __builtin_unreachable. This situation can occur
8768 when inlining a noreturn call that does in fact return. */
8769 if (EDGE_COUNT (bb->succs) == 0)
8771 gimple stmt = last_stmt (bb);
8772 if (!stmt
8773 || (!is_ctrl_stmt (stmt)
8774 && (!is_gimple_call (stmt)
8775 || (gimple_call_flags (stmt) & ECF_NORETURN) == 0)))
8777 if (stmt && is_gimple_call (stmt))
8778 gimple_call_set_ctrl_altering (stmt, false);
8779 stmt = gimple_build_call
8780 (builtin_decl_implicit (BUILT_IN_UNREACHABLE), 0);
8781 gimple_stmt_iterator gsi = gsi_last_bb (bb);
8782 gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
8786 if (count_scale != REG_BR_PROB_BASE)
8787 compute_function_frequency ();
8789 if (current_loops
8790 && (todo & TODO_cleanup_cfg))
8791 loops_state_set (LOOPS_NEED_FIXUP);
8793 return todo;
8796 namespace {
8798 const pass_data pass_data_fixup_cfg =
8800 GIMPLE_PASS, /* type */
8801 "fixup_cfg", /* name */
8802 OPTGROUP_NONE, /* optinfo_flags */
8803 TV_NONE, /* tv_id */
8804 PROP_cfg, /* properties_required */
8805 0, /* properties_provided */
8806 0, /* properties_destroyed */
8807 0, /* todo_flags_start */
8808 0, /* todo_flags_finish */
8811 class pass_fixup_cfg : public gimple_opt_pass
8813 public:
8814 pass_fixup_cfg (gcc::context *ctxt)
8815 : gimple_opt_pass (pass_data_fixup_cfg, ctxt)
8818 /* opt_pass methods: */
8819 opt_pass * clone () { return new pass_fixup_cfg (m_ctxt); }
8820 virtual unsigned int execute (function *) { return execute_fixup_cfg (); }
8822 }; // class pass_fixup_cfg
8824 } // anon namespace
8826 gimple_opt_pass *
8827 make_pass_fixup_cfg (gcc::context *ctxt)
8829 return new pass_fixup_cfg (ctxt);
8832 /* Garbage collection support for edge_def. */
8834 extern void gt_ggc_mx (tree&);
8835 extern void gt_ggc_mx (gimple&);
8836 extern void gt_ggc_mx (rtx&);
8837 extern void gt_ggc_mx (basic_block&);
8839 static void
8840 gt_ggc_mx (rtx_insn *& x)
8842 if (x)
8843 gt_ggc_mx_rtx_def ((void *) x);
8846 void
8847 gt_ggc_mx (edge_def *e)
8849 tree block = LOCATION_BLOCK (e->goto_locus);
8850 gt_ggc_mx (e->src);
8851 gt_ggc_mx (e->dest);
8852 if (current_ir_type () == IR_GIMPLE)
8853 gt_ggc_mx (e->insns.g);
8854 else
8855 gt_ggc_mx (e->insns.r);
8856 gt_ggc_mx (block);
8859 /* PCH support for edge_def. */
8861 extern void gt_pch_nx (tree&);
8862 extern void gt_pch_nx (gimple&);
8863 extern void gt_pch_nx (rtx&);
8864 extern void gt_pch_nx (basic_block&);
8866 static void
8867 gt_pch_nx (rtx_insn *& x)
8869 if (x)
8870 gt_pch_nx_rtx_def ((void *) x);
8873 void
8874 gt_pch_nx (edge_def *e)
8876 tree block = LOCATION_BLOCK (e->goto_locus);
8877 gt_pch_nx (e->src);
8878 gt_pch_nx (e->dest);
8879 if (current_ir_type () == IR_GIMPLE)
8880 gt_pch_nx (e->insns.g);
8881 else
8882 gt_pch_nx (e->insns.r);
8883 gt_pch_nx (block);
8886 void
8887 gt_pch_nx (edge_def *e, gt_pointer_operator op, void *cookie)
8889 tree block = LOCATION_BLOCK (e->goto_locus);
8890 op (&(e->src), cookie);
8891 op (&(e->dest), cookie);
8892 if (current_ir_type () == IR_GIMPLE)
8893 op (&(e->insns.g), cookie);
8894 else
8895 op (&(e->insns.r), cookie);
8896 op (&(block), cookie);