remove elim_graph typedef
[gcc.git] / gcc / tree-outof-ssa.c
1 /* Convert a program in SSA form into Normal form.
2 Copyright (C) 2004-2016 Free Software Foundation, Inc.
3 Contributed by Andrew Macleod <amacleod@redhat.com>
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "backend.h"
25 #include "rtl.h"
26 #include "tree.h"
27 #include "gimple.h"
28 #include "cfghooks.h"
29 #include "ssa.h"
30 #include "emit-rtl.h"
31 #include "gimple-pretty-print.h"
32 #include "diagnostic-core.h"
33 #include "stor-layout.h"
34 #include "cfgrtl.h"
35 #include "cfganal.h"
36 #include "tree-eh.h"
37 #include "gimple-iterator.h"
38 #include "tree-cfg.h"
39 #include "dumpfile.h"
40 #include "tree-ssa-live.h"
41 #include "tree-ssa-ter.h"
42 #include "tree-ssa-coalesce.h"
43 #include "tree-outof-ssa.h"
44 #include "dojump.h"
45
46 /* FIXME: A lot of code here deals with expanding to RTL. All that code
47 should be in cfgexpand.c. */
48 #include "explow.h"
49 #include "expr.h"
50
51 /* Return TRUE if expression STMT is suitable for replacement. */
52
53 bool
54 ssa_is_replaceable_p (gimple *stmt)
55 {
56 use_operand_p use_p;
57 tree def;
58 gimple *use_stmt;
59
60 /* Only consider modify stmts. */
61 if (!is_gimple_assign (stmt))
62 return false;
63
64 /* If the statement may throw an exception, it cannot be replaced. */
65 if (stmt_could_throw_p (stmt))
66 return false;
67
68 /* Punt if there is more than 1 def. */
69 def = SINGLE_SSA_TREE_OPERAND (stmt, SSA_OP_DEF);
70 if (!def)
71 return false;
72
73 /* Only consider definitions which have a single use. */
74 if (!single_imm_use (def, &use_p, &use_stmt))
75 return false;
76
77 /* Used in this block, but at the TOP of the block, not the end. */
78 if (gimple_code (use_stmt) == GIMPLE_PHI)
79 return false;
80
81 /* There must be no VDEFs. */
82 if (gimple_vdef (stmt))
83 return false;
84
85 /* Float expressions must go through memory if float-store is on. */
86 if (flag_float_store
87 && FLOAT_TYPE_P (gimple_expr_type (stmt)))
88 return false;
89
90 /* An assignment with a register variable on the RHS is not
91 replaceable. */
92 if (gimple_assign_rhs_code (stmt) == VAR_DECL
93 && DECL_HARD_REGISTER (gimple_assign_rhs1 (stmt)))
94 return false;
95
96 /* No function calls can be replaced. */
97 if (is_gimple_call (stmt))
98 return false;
99
100 /* Leave any stmt with volatile operands alone as well. */
101 if (gimple_has_volatile_ops (stmt))
102 return false;
103
104 return true;
105 }
106
107
108 /* Used to hold all the components required to do SSA PHI elimination.
109 The node and pred/succ list is a simple linear list of nodes and
110 edges represented as pairs of nodes.
111
112 The predecessor and successor list: Nodes are entered in pairs, where
113 [0] ->PRED, [1]->SUCC. All the even indexes in the array represent
114 predecessors, all the odd elements are successors.
115
116 Rationale:
117 When implemented as bitmaps, very large programs SSA->Normal times were
118 being dominated by clearing the interference graph.
119
120 Typically this list of edges is extremely small since it only includes
121 PHI results and uses from a single edge which have not coalesced with
122 each other. This means that no virtual PHI nodes are included, and
123 empirical evidence suggests that the number of edges rarely exceed
124 3, and in a bootstrap of GCC, the maximum size encountered was 7.
125 This also limits the number of possible nodes that are involved to
126 rarely more than 6, and in the bootstrap of gcc, the maximum number
127 of nodes encountered was 12. */
128
129 struct elim_graph
130 {
131 /* Size of the elimination vectors. */
132 int size;
133
134 /* List of nodes in the elimination graph. */
135 vec<int> nodes;
136
137 /* The predecessor and successor edge list. */
138 vec<int> edge_list;
139
140 /* Source locus on each edge */
141 vec<source_location> edge_locus;
142
143 /* Visited vector. */
144 sbitmap visited;
145
146 /* Stack for visited nodes. */
147 vec<int> stack;
148
149 /* The variable partition map. */
150 var_map map;
151
152 /* Edge being eliminated by this graph. */
153 edge e;
154
155 /* List of constant copies to emit. These are pushed on in pairs. */
156 vec<int> const_dests;
157 vec<tree> const_copies;
158
159 /* Source locations for any constant copies. */
160 vec<source_location> copy_locus;
161 };
162
163
164 /* For an edge E find out a good source location to associate with
165 instructions inserted on edge E. If E has an implicit goto set,
166 use its location. Otherwise search instructions in predecessors
167 of E for a location, and use that one. That makes sense because
168 we insert on edges for PHI nodes, and effects of PHIs happen on
169 the end of the predecessor conceptually. */
170
171 static void
172 set_location_for_edge (edge e)
173 {
174 if (e->goto_locus)
175 {
176 set_curr_insn_location (e->goto_locus);
177 }
178 else
179 {
180 basic_block bb = e->src;
181 gimple_stmt_iterator gsi;
182
183 do
184 {
185 for (gsi = gsi_last_bb (bb); !gsi_end_p (gsi); gsi_prev (&gsi))
186 {
187 gimple *stmt = gsi_stmt (gsi);
188 if (is_gimple_debug (stmt))
189 continue;
190 if (gimple_has_location (stmt) || gimple_block (stmt))
191 {
192 set_curr_insn_location (gimple_location (stmt));
193 return;
194 }
195 }
196 /* Nothing found in this basic block. Make a half-assed attempt
197 to continue with another block. */
198 if (single_pred_p (bb))
199 bb = single_pred (bb);
200 else
201 bb = e->src;
202 }
203 while (bb != e->src);
204 }
205 }
206
207 /* Emit insns to copy SRC into DEST converting SRC if necessary. As
208 SRC/DEST might be BLKmode memory locations SIZEEXP is a tree from
209 which we deduce the size to copy in that case. */
210
211 static inline rtx_insn *
212 emit_partition_copy (rtx dest, rtx src, int unsignedsrcp, tree sizeexp)
213 {
214 start_sequence ();
215
216 if (GET_MODE (src) != VOIDmode && GET_MODE (src) != GET_MODE (dest))
217 src = convert_to_mode (GET_MODE (dest), src, unsignedsrcp);
218 if (GET_MODE (src) == BLKmode)
219 {
220 gcc_assert (GET_MODE (dest) == BLKmode);
221 emit_block_move (dest, src, expr_size (sizeexp), BLOCK_OP_NORMAL);
222 }
223 else
224 emit_move_insn (dest, src);
225 do_pending_stack_adjust ();
226
227 rtx_insn *seq = get_insns ();
228 end_sequence ();
229
230 return seq;
231 }
232
233 /* Insert a copy instruction from partition SRC to DEST onto edge E. */
234
235 static void
236 insert_partition_copy_on_edge (edge e, int dest, int src, source_location locus)
237 {
238 tree var;
239 if (dump_file && (dump_flags & TDF_DETAILS))
240 {
241 fprintf (dump_file,
242 "Inserting a partition copy on edge BB%d->BB%d :"
243 "PART.%d = PART.%d",
244 e->src->index,
245 e->dest->index, dest, src);
246 fprintf (dump_file, "\n");
247 }
248
249 gcc_assert (SA.partition_to_pseudo[dest]);
250 gcc_assert (SA.partition_to_pseudo[src]);
251
252 set_location_for_edge (e);
253 /* If a locus is provided, override the default. */
254 if (locus)
255 set_curr_insn_location (locus);
256
257 var = partition_to_var (SA.map, src);
258 rtx_insn *seq = emit_partition_copy (copy_rtx (SA.partition_to_pseudo[dest]),
259 copy_rtx (SA.partition_to_pseudo[src]),
260 TYPE_UNSIGNED (TREE_TYPE (var)),
261 var);
262
263 insert_insn_on_edge (seq, e);
264 }
265
266 /* Insert a copy instruction from expression SRC to partition DEST
267 onto edge E. */
268
269 static void
270 insert_value_copy_on_edge (edge e, int dest, tree src, source_location locus)
271 {
272 rtx dest_rtx, seq, x;
273 machine_mode dest_mode, src_mode;
274 int unsignedp;
275
276 if (dump_file && (dump_flags & TDF_DETAILS))
277 {
278 fprintf (dump_file,
279 "Inserting a value copy on edge BB%d->BB%d : PART.%d = ",
280 e->src->index,
281 e->dest->index, dest);
282 print_generic_expr (dump_file, src, TDF_SLIM);
283 fprintf (dump_file, "\n");
284 }
285
286 dest_rtx = copy_rtx (SA.partition_to_pseudo[dest]);
287 gcc_assert (dest_rtx);
288
289 set_location_for_edge (e);
290 /* If a locus is provided, override the default. */
291 if (locus)
292 set_curr_insn_location (locus);
293
294 start_sequence ();
295
296 tree name = partition_to_var (SA.map, dest);
297 src_mode = TYPE_MODE (TREE_TYPE (src));
298 dest_mode = GET_MODE (dest_rtx);
299 gcc_assert (src_mode == TYPE_MODE (TREE_TYPE (name)));
300 gcc_assert (!REG_P (dest_rtx)
301 || dest_mode == promote_ssa_mode (name, &unsignedp));
302
303 if (src_mode != dest_mode)
304 {
305 x = expand_expr (src, NULL, src_mode, EXPAND_NORMAL);
306 x = convert_modes (dest_mode, src_mode, x, unsignedp);
307 }
308 else if (src_mode == BLKmode)
309 {
310 x = dest_rtx;
311 store_expr (src, x, 0, false, false);
312 }
313 else
314 x = expand_expr (src, dest_rtx, dest_mode, EXPAND_NORMAL);
315
316 if (x != dest_rtx)
317 emit_move_insn (dest_rtx, x);
318 do_pending_stack_adjust ();
319
320 seq = get_insns ();
321 end_sequence ();
322
323 insert_insn_on_edge (seq, e);
324 }
325
326 /* Insert a copy instruction from RTL expression SRC to partition DEST
327 onto edge E. */
328
329 static void
330 insert_rtx_to_part_on_edge (edge e, int dest, rtx src, int unsignedsrcp,
331 source_location locus)
332 {
333 if (dump_file && (dump_flags & TDF_DETAILS))
334 {
335 fprintf (dump_file,
336 "Inserting a temp copy on edge BB%d->BB%d : PART.%d = ",
337 e->src->index,
338 e->dest->index, dest);
339 print_simple_rtl (dump_file, src);
340 fprintf (dump_file, "\n");
341 }
342
343 gcc_assert (SA.partition_to_pseudo[dest]);
344
345 set_location_for_edge (e);
346 /* If a locus is provided, override the default. */
347 if (locus)
348 set_curr_insn_location (locus);
349
350 /* We give the destination as sizeexp in case src/dest are BLKmode
351 mems. Usually we give the source. As we result from SSA names
352 the left and right size should be the same (and no WITH_SIZE_EXPR
353 involved), so it doesn't matter. */
354 rtx_insn *seq = emit_partition_copy (copy_rtx (SA.partition_to_pseudo[dest]),
355 src, unsignedsrcp,
356 partition_to_var (SA.map, dest));
357
358 insert_insn_on_edge (seq, e);
359 }
360
361 /* Insert a copy instruction from partition SRC to RTL lvalue DEST
362 onto edge E. */
363
364 static void
365 insert_part_to_rtx_on_edge (edge e, rtx dest, int src, source_location locus)
366 {
367 tree var;
368 if (dump_file && (dump_flags & TDF_DETAILS))
369 {
370 fprintf (dump_file,
371 "Inserting a temp copy on edge BB%d->BB%d : ",
372 e->src->index,
373 e->dest->index);
374 print_simple_rtl (dump_file, dest);
375 fprintf (dump_file, "= PART.%d\n", src);
376 }
377
378 gcc_assert (SA.partition_to_pseudo[src]);
379
380 set_location_for_edge (e);
381 /* If a locus is provided, override the default. */
382 if (locus)
383 set_curr_insn_location (locus);
384
385 var = partition_to_var (SA.map, src);
386 rtx_insn *seq = emit_partition_copy (dest,
387 copy_rtx (SA.partition_to_pseudo[src]),
388 TYPE_UNSIGNED (TREE_TYPE (var)),
389 var);
390
391 insert_insn_on_edge (seq, e);
392 }
393
394
395 /* Create an elimination graph with SIZE nodes and associated data
396 structures. */
397
398 static elim_graph *
399 new_elim_graph (int size)
400 {
401 elim_graph *g = (elim_graph *) xmalloc (sizeof (struct elim_graph));
402
403 g->nodes.create (30);
404 g->const_dests.create (20);
405 g->const_copies.create (20);
406 g->copy_locus.create (10);
407 g->edge_list.create (20);
408 g->edge_locus.create (10);
409 g->stack.create (30);
410
411 g->visited = sbitmap_alloc (size);
412
413 return g;
414 }
415
416
417 /* Empty elimination graph G. */
418
419 static inline void
420 clear_elim_graph (elim_graph *g)
421 {
422 g->nodes.truncate (0);
423 g->edge_list.truncate (0);
424 g->edge_locus.truncate (0);
425 }
426
427
428 /* Delete elimination graph G. */
429
430 static inline void
431 delete_elim_graph (elim_graph *g)
432 {
433 sbitmap_free (g->visited);
434 g->stack.release ();
435 g->edge_list.release ();
436 g->const_copies.release ();
437 g->const_dests.release ();
438 g->nodes.release ();
439 g->copy_locus.release ();
440 g->edge_locus.release ();
441
442 free (g);
443 }
444
445
446 /* Return the number of nodes in graph G. */
447
448 static inline int
449 elim_graph_size (elim_graph *g)
450 {
451 return g->nodes.length ();
452 }
453
454
455 /* Add NODE to graph G, if it doesn't exist already. */
456
457 static inline void
458 elim_graph_add_node (elim_graph *g, int node)
459 {
460 int x;
461 int t;
462
463 FOR_EACH_VEC_ELT (g->nodes, x, t)
464 if (t == node)
465 return;
466 g->nodes.safe_push (node);
467 }
468
469
470 /* Add the edge PRED->SUCC to graph G. */
471
472 static inline void
473 elim_graph_add_edge (elim_graph *g, int pred, int succ, source_location locus)
474 {
475 g->edge_list.safe_push (pred);
476 g->edge_list.safe_push (succ);
477 g->edge_locus.safe_push (locus);
478 }
479
480
481 /* Remove an edge from graph G for which NODE is the predecessor, and
482 return the successor node. -1 is returned if there is no such edge. */
483
484 static inline int
485 elim_graph_remove_succ_edge (elim_graph *g, int node, source_location *locus)
486 {
487 int y;
488 unsigned x;
489 for (x = 0; x < g->edge_list.length (); x += 2)
490 if (g->edge_list[x] == node)
491 {
492 g->edge_list[x] = -1;
493 y = g->edge_list[x + 1];
494 g->edge_list[x + 1] = -1;
495 *locus = g->edge_locus[x / 2];
496 g->edge_locus[x / 2] = UNKNOWN_LOCATION;
497 return y;
498 }
499 *locus = UNKNOWN_LOCATION;
500 return -1;
501 }
502
503
504 /* Find all the nodes in GRAPH which are successors to NODE in the
505 edge list. VAR will hold the partition number found. CODE is the
506 code fragment executed for every node found. */
507
508 #define FOR_EACH_ELIM_GRAPH_SUCC(GRAPH, NODE, VAR, LOCUS, CODE) \
509 do { \
510 unsigned x_; \
511 int y_; \
512 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
513 { \
514 y_ = (GRAPH)->edge_list[x_]; \
515 if (y_ != (NODE)) \
516 continue; \
517 (void) ((VAR) = (GRAPH)->edge_list[x_ + 1]); \
518 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
519 CODE; \
520 } \
521 } while (0)
522
523
524 /* Find all the nodes which are predecessors of NODE in the edge list for
525 GRAPH. VAR will hold the partition number found. CODE is the
526 code fragment executed for every node found. */
527
528 #define FOR_EACH_ELIM_GRAPH_PRED(GRAPH, NODE, VAR, LOCUS, CODE) \
529 do { \
530 unsigned x_; \
531 int y_; \
532 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
533 { \
534 y_ = (GRAPH)->edge_list[x_ + 1]; \
535 if (y_ != (NODE)) \
536 continue; \
537 (void) ((VAR) = (GRAPH)->edge_list[x_]); \
538 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
539 CODE; \
540 } \
541 } while (0)
542
543
544 /* Add T to elimination graph G. */
545
546 static inline void
547 eliminate_name (elim_graph *g, int T)
548 {
549 elim_graph_add_node (g, T);
550 }
551
552 /* Return true if this phi argument T should have a copy queued when using
553 var_map MAP. PHI nodes should contain only ssa_names and invariants. A
554 test for ssa_name is definitely simpler, but don't let invalid contents
555 slip through in the meantime. */
556
557 static inline bool
558 queue_phi_copy_p (var_map map, tree t)
559 {
560 if (TREE_CODE (t) == SSA_NAME)
561 {
562 if (var_to_partition (map, t) == NO_PARTITION)
563 return true;
564 return false;
565 }
566 gcc_checking_assert (is_gimple_min_invariant (t));
567 return true;
568 }
569
570 /* Build elimination graph G for basic block BB on incoming PHI edge
571 G->e. */
572
573 static void
574 eliminate_build (elim_graph *g)
575 {
576 tree Ti;
577 int p0, pi;
578 gphi_iterator gsi;
579
580 clear_elim_graph (g);
581
582 for (gsi = gsi_start_phis (g->e->dest); !gsi_end_p (gsi); gsi_next (&gsi))
583 {
584 gphi *phi = gsi.phi ();
585 source_location locus;
586
587 p0 = var_to_partition (g->map, gimple_phi_result (phi));
588 /* Ignore results which are not in partitions. */
589 if (p0 == NO_PARTITION)
590 continue;
591
592 Ti = PHI_ARG_DEF (phi, g->e->dest_idx);
593 locus = gimple_phi_arg_location_from_edge (phi, g->e);
594
595 /* If this argument is a constant, or a SSA_NAME which is being
596 left in SSA form, just queue a copy to be emitted on this
597 edge. */
598 if (queue_phi_copy_p (g->map, Ti))
599 {
600 /* Save constant copies until all other copies have been emitted
601 on this edge. */
602 g->const_dests.safe_push (p0);
603 g->const_copies.safe_push (Ti);
604 g->copy_locus.safe_push (locus);
605 }
606 else
607 {
608 pi = var_to_partition (g->map, Ti);
609 if (p0 != pi)
610 {
611 eliminate_name (g, p0);
612 eliminate_name (g, pi);
613 elim_graph_add_edge (g, p0, pi, locus);
614 }
615 }
616 }
617 }
618
619
620 /* Push successors of T onto the elimination stack for G. */
621
622 static void
623 elim_forward (elim_graph *g, int T)
624 {
625 int S;
626 source_location locus;
627
628 bitmap_set_bit (g->visited, T);
629 FOR_EACH_ELIM_GRAPH_SUCC (g, T, S, locus,
630 {
631 if (!bitmap_bit_p (g->visited, S))
632 elim_forward (g, S);
633 });
634 g->stack.safe_push (T);
635 }
636
637
638 /* Return 1 if there unvisited predecessors of T in graph G. */
639
640 static int
641 elim_unvisited_predecessor (elim_graph *g, int T)
642 {
643 int P;
644 source_location locus;
645
646 FOR_EACH_ELIM_GRAPH_PRED (g, T, P, locus,
647 {
648 if (!bitmap_bit_p (g->visited, P))
649 return 1;
650 });
651 return 0;
652 }
653
654 /* Process predecessors first, and insert a copy. */
655
656 static void
657 elim_backward (elim_graph *g, int T)
658 {
659 int P;
660 source_location locus;
661
662 bitmap_set_bit (g->visited, T);
663 FOR_EACH_ELIM_GRAPH_PRED (g, T, P, locus,
664 {
665 if (!bitmap_bit_p (g->visited, P))
666 {
667 elim_backward (g, P);
668 insert_partition_copy_on_edge (g->e, P, T, locus);
669 }
670 });
671 }
672
673 /* Allocate a new pseudo register usable for storing values sitting
674 in NAME (a decl or SSA name), i.e. with matching mode and attributes. */
675
676 static rtx
677 get_temp_reg (tree name)
678 {
679 tree type = TREE_TYPE (name);
680 int unsignedp;
681 machine_mode reg_mode = promote_ssa_mode (name, &unsignedp);
682 rtx x = gen_reg_rtx (reg_mode);
683 if (POINTER_TYPE_P (type))
684 mark_reg_pointer (x, TYPE_ALIGN (TREE_TYPE (type)));
685 return x;
686 }
687
688 /* Insert required copies for T in graph G. Check for a strongly connected
689 region, and create a temporary to break the cycle if one is found. */
690
691 static void
692 elim_create (elim_graph *g, int T)
693 {
694 int P, S;
695 source_location locus;
696
697 if (elim_unvisited_predecessor (g, T))
698 {
699 tree var = partition_to_var (g->map, T);
700 rtx U = get_temp_reg (var);
701 int unsignedsrcp = TYPE_UNSIGNED (TREE_TYPE (var));
702
703 insert_part_to_rtx_on_edge (g->e, U, T, UNKNOWN_LOCATION);
704 FOR_EACH_ELIM_GRAPH_PRED (g, T, P, locus,
705 {
706 if (!bitmap_bit_p (g->visited, P))
707 {
708 elim_backward (g, P);
709 insert_rtx_to_part_on_edge (g->e, P, U, unsignedsrcp, locus);
710 }
711 });
712 }
713 else
714 {
715 S = elim_graph_remove_succ_edge (g, T, &locus);
716 if (S != -1)
717 {
718 bitmap_set_bit (g->visited, T);
719 insert_partition_copy_on_edge (g->e, T, S, locus);
720 }
721 }
722 }
723
724
725 /* Eliminate all the phi nodes on edge E in graph G. */
726
727 static void
728 eliminate_phi (edge e, elim_graph *g)
729 {
730 int x;
731
732 gcc_assert (g->const_copies.length () == 0);
733 gcc_assert (g->copy_locus.length () == 0);
734
735 /* Abnormal edges already have everything coalesced. */
736 if (e->flags & EDGE_ABNORMAL)
737 return;
738
739 g->e = e;
740
741 eliminate_build (g);
742
743 if (elim_graph_size (g) != 0)
744 {
745 int part;
746
747 bitmap_clear (g->visited);
748 g->stack.truncate (0);
749
750 FOR_EACH_VEC_ELT (g->nodes, x, part)
751 {
752 if (!bitmap_bit_p (g->visited, part))
753 elim_forward (g, part);
754 }
755
756 bitmap_clear (g->visited);
757 while (g->stack.length () > 0)
758 {
759 x = g->stack.pop ();
760 if (!bitmap_bit_p (g->visited, x))
761 elim_create (g, x);
762 }
763 }
764
765 /* If there are any pending constant copies, issue them now. */
766 while (g->const_copies.length () > 0)
767 {
768 int dest;
769 tree src;
770 source_location locus;
771
772 src = g->const_copies.pop ();
773 dest = g->const_dests.pop ();
774 locus = g->copy_locus.pop ();
775 insert_value_copy_on_edge (e, dest, src, locus);
776 }
777 }
778
779
780 /* Remove each argument from PHI. If an arg was the last use of an SSA_NAME,
781 check to see if this allows another PHI node to be removed. */
782
783 static void
784 remove_gimple_phi_args (gphi *phi)
785 {
786 use_operand_p arg_p;
787 ssa_op_iter iter;
788
789 if (dump_file && (dump_flags & TDF_DETAILS))
790 {
791 fprintf (dump_file, "Removing Dead PHI definition: ");
792 print_gimple_stmt (dump_file, phi, 0, TDF_SLIM);
793 }
794
795 FOR_EACH_PHI_ARG (arg_p, phi, iter, SSA_OP_USE)
796 {
797 tree arg = USE_FROM_PTR (arg_p);
798 if (TREE_CODE (arg) == SSA_NAME)
799 {
800 /* Remove the reference to the existing argument. */
801 SET_USE (arg_p, NULL_TREE);
802 if (has_zero_uses (arg))
803 {
804 gimple *stmt;
805 gimple_stmt_iterator gsi;
806
807 stmt = SSA_NAME_DEF_STMT (arg);
808
809 /* Also remove the def if it is a PHI node. */
810 if (gimple_code (stmt) == GIMPLE_PHI)
811 {
812 remove_gimple_phi_args (as_a <gphi *> (stmt));
813 gsi = gsi_for_stmt (stmt);
814 remove_phi_node (&gsi, true);
815 }
816
817 }
818 }
819 }
820 }
821
822 /* Remove any PHI node which is a virtual PHI, or a PHI with no uses. */
823
824 static void
825 eliminate_useless_phis (void)
826 {
827 basic_block bb;
828 gphi_iterator gsi;
829 tree result;
830
831 FOR_EACH_BB_FN (bb, cfun)
832 {
833 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); )
834 {
835 gphi *phi = gsi.phi ();
836 result = gimple_phi_result (phi);
837 if (virtual_operand_p (result))
838 {
839 /* There should be no arguments which are not virtual, or the
840 results will be incorrect. */
841 if (flag_checking)
842 for (size_t i = 0; i < gimple_phi_num_args (phi); i++)
843 {
844 tree arg = PHI_ARG_DEF (phi, i);
845 if (TREE_CODE (arg) == SSA_NAME
846 && !virtual_operand_p (arg))
847 {
848 fprintf (stderr, "Argument of PHI is not virtual (");
849 print_generic_expr (stderr, arg, TDF_SLIM);
850 fprintf (stderr, "), but the result is :");
851 print_gimple_stmt (stderr, phi, 0, TDF_SLIM);
852 internal_error ("SSA corruption");
853 }
854 }
855
856 remove_phi_node (&gsi, true);
857 }
858 else
859 {
860 /* Also remove real PHIs with no uses. */
861 if (has_zero_uses (result))
862 {
863 remove_gimple_phi_args (phi);
864 remove_phi_node (&gsi, true);
865 }
866 else
867 gsi_next (&gsi);
868 }
869 }
870 }
871 }
872
873
874 /* This function will rewrite the current program using the variable mapping
875 found in MAP. If the replacement vector VALUES is provided, any
876 occurrences of partitions with non-null entries in the vector will be
877 replaced with the expression in the vector instead of its mapped
878 variable. */
879
880 static void
881 rewrite_trees (var_map map)
882 {
883 if (!flag_checking)
884 return;
885
886 basic_block bb;
887 /* Search for PHIs where the destination has no partition, but one
888 or more arguments has a partition. This should not happen and can
889 create incorrect code. */
890 FOR_EACH_BB_FN (bb, cfun)
891 {
892 gphi_iterator gsi;
893 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
894 {
895 gphi *phi = gsi.phi ();
896 tree T0 = var_to_partition_to_var (map, gimple_phi_result (phi));
897 if (T0 == NULL_TREE)
898 {
899 size_t i;
900 for (i = 0; i < gimple_phi_num_args (phi); i++)
901 {
902 tree arg = PHI_ARG_DEF (phi, i);
903
904 if (TREE_CODE (arg) == SSA_NAME
905 && var_to_partition (map, arg) != NO_PARTITION)
906 {
907 fprintf (stderr, "Argument of PHI is in a partition :(");
908 print_generic_expr (stderr, arg, TDF_SLIM);
909 fprintf (stderr, "), but the result is not :");
910 print_gimple_stmt (stderr, phi, 0, TDF_SLIM);
911 internal_error ("SSA corruption");
912 }
913 }
914 }
915 }
916 }
917 }
918
919 /* Given the out-of-ssa info object SA (with prepared partitions)
920 eliminate all phi nodes in all basic blocks. Afterwards no
921 basic block will have phi nodes anymore and there are possibly
922 some RTL instructions inserted on edges. */
923
924 void
925 expand_phi_nodes (struct ssaexpand *sa)
926 {
927 basic_block bb;
928 elim_graph *g = new_elim_graph (sa->map->num_partitions);
929 g->map = sa->map;
930
931 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb,
932 EXIT_BLOCK_PTR_FOR_FN (cfun), next_bb)
933 if (!gimple_seq_empty_p (phi_nodes (bb)))
934 {
935 edge e;
936 edge_iterator ei;
937 FOR_EACH_EDGE (e, ei, bb->preds)
938 eliminate_phi (e, g);
939 set_phi_nodes (bb, NULL);
940 /* We can't redirect EH edges in RTL land, so we need to do this
941 here. Redirection happens only when splitting is necessary,
942 which it is only for critical edges, normally. For EH edges
943 it might also be necessary when the successor has more than
944 one predecessor. In that case the edge is either required to
945 be fallthru (which EH edges aren't), or the predecessor needs
946 to end with a jump (which again, isn't the case with EH edges).
947 Hence, split all EH edges on which we inserted instructions
948 and whose successor has multiple predecessors. */
949 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
950 {
951 if (e->insns.r && (e->flags & EDGE_EH)
952 && !single_pred_p (e->dest))
953 {
954 rtx_insn *insns = e->insns.r;
955 basic_block bb;
956 e->insns.r = NULL;
957 bb = split_edge (e);
958 single_pred_edge (bb)->insns.r = insns;
959 }
960 else
961 ei_next (&ei);
962 }
963 }
964
965 delete_elim_graph (g);
966 }
967
968
969 /* Remove the ssa-names in the current function and translate them into normal
970 compiler variables. PERFORM_TER is true if Temporary Expression Replacement
971 should also be used. */
972
973 static void
974 remove_ssa_form (bool perform_ter, struct ssaexpand *sa)
975 {
976 bitmap values = NULL;
977 var_map map;
978
979 map = coalesce_ssa_name ();
980
981 /* Return to viewing the variable list as just all reference variables after
982 coalescing has been performed. */
983 partition_view_normal (map);
984
985 if (dump_file && (dump_flags & TDF_DETAILS))
986 {
987 fprintf (dump_file, "After Coalescing:\n");
988 dump_var_map (dump_file, map);
989 }
990
991 if (perform_ter)
992 {
993 values = find_replaceable_exprs (map);
994 if (values && dump_file && (dump_flags & TDF_DETAILS))
995 dump_replaceable_exprs (dump_file, values);
996 }
997
998 rewrite_trees (map);
999
1000 sa->map = map;
1001 sa->values = values;
1002 sa->partitions_for_parm_default_defs = get_parm_default_def_partitions (map);
1003 }
1004
1005
1006 /* If not already done so for basic block BB, assign increasing uids
1007 to each of its instructions. */
1008
1009 static void
1010 maybe_renumber_stmts_bb (basic_block bb)
1011 {
1012 unsigned i = 0;
1013 gimple_stmt_iterator gsi;
1014
1015 if (!bb->aux)
1016 return;
1017 bb->aux = NULL;
1018 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1019 {
1020 gimple *stmt = gsi_stmt (gsi);
1021 gimple_set_uid (stmt, i);
1022 i++;
1023 }
1024 }
1025
1026
1027 /* Return true if we can determine that the SSA_NAMEs RESULT (a result
1028 of a PHI node) and ARG (one of its arguments) conflict. Return false
1029 otherwise, also when we simply aren't sure. */
1030
1031 static bool
1032 trivially_conflicts_p (basic_block bb, tree result, tree arg)
1033 {
1034 use_operand_p use;
1035 imm_use_iterator imm_iter;
1036 gimple *defa = SSA_NAME_DEF_STMT (arg);
1037
1038 /* If ARG isn't defined in the same block it's too complicated for
1039 our little mind. */
1040 if (gimple_bb (defa) != bb)
1041 return false;
1042
1043 FOR_EACH_IMM_USE_FAST (use, imm_iter, result)
1044 {
1045 gimple *use_stmt = USE_STMT (use);
1046 if (is_gimple_debug (use_stmt))
1047 continue;
1048 /* Now, if there's a use of RESULT that lies outside this basic block,
1049 then there surely is a conflict with ARG. */
1050 if (gimple_bb (use_stmt) != bb)
1051 return true;
1052 if (gimple_code (use_stmt) == GIMPLE_PHI)
1053 continue;
1054 /* The use now is in a real stmt of BB, so if ARG was defined
1055 in a PHI node (like RESULT) both conflict. */
1056 if (gimple_code (defa) == GIMPLE_PHI)
1057 return true;
1058 maybe_renumber_stmts_bb (bb);
1059 /* If the use of RESULT occurs after the definition of ARG,
1060 the two conflict too. */
1061 if (gimple_uid (defa) < gimple_uid (use_stmt))
1062 return true;
1063 }
1064
1065 return false;
1066 }
1067
1068
1069 /* Search every PHI node for arguments associated with backedges which
1070 we can trivially determine will need a copy (the argument is either
1071 not an SSA_NAME or the argument has a different underlying variable
1072 than the PHI result).
1073
1074 Insert a copy from the PHI argument to a new destination at the
1075 end of the block with the backedge to the top of the loop. Update
1076 the PHI argument to reference this new destination. */
1077
1078 static void
1079 insert_backedge_copies (void)
1080 {
1081 basic_block bb;
1082 gphi_iterator gsi;
1083
1084 mark_dfs_back_edges ();
1085
1086 FOR_EACH_BB_FN (bb, cfun)
1087 {
1088 /* Mark block as possibly needing calculation of UIDs. */
1089 bb->aux = &bb->aux;
1090
1091 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1092 {
1093 gphi *phi = gsi.phi ();
1094 tree result = gimple_phi_result (phi);
1095 size_t i;
1096
1097 if (virtual_operand_p (result))
1098 continue;
1099
1100 for (i = 0; i < gimple_phi_num_args (phi); i++)
1101 {
1102 tree arg = gimple_phi_arg_def (phi, i);
1103 edge e = gimple_phi_arg_edge (phi, i);
1104
1105 /* If the argument is not an SSA_NAME, then we will need a
1106 constant initialization. If the argument is an SSA_NAME with
1107 a different underlying variable then a copy statement will be
1108 needed. */
1109 if ((e->flags & EDGE_DFS_BACK)
1110 && (TREE_CODE (arg) != SSA_NAME
1111 || SSA_NAME_VAR (arg) != SSA_NAME_VAR (result)
1112 || trivially_conflicts_p (bb, result, arg)))
1113 {
1114 tree name;
1115 gassign *stmt;
1116 gimple *last = NULL;
1117 gimple_stmt_iterator gsi2;
1118
1119 gsi2 = gsi_last_bb (gimple_phi_arg_edge (phi, i)->src);
1120 if (!gsi_end_p (gsi2))
1121 last = gsi_stmt (gsi2);
1122
1123 /* In theory the only way we ought to get back to the
1124 start of a loop should be with a COND_EXPR or GOTO_EXPR.
1125 However, better safe than sorry.
1126 If the block ends with a control statement or
1127 something that might throw, then we have to
1128 insert this assignment before the last
1129 statement. Else insert it after the last statement. */
1130 if (last && stmt_ends_bb_p (last))
1131 {
1132 /* If the last statement in the block is the definition
1133 site of the PHI argument, then we can't insert
1134 anything after it. */
1135 if (TREE_CODE (arg) == SSA_NAME
1136 && SSA_NAME_DEF_STMT (arg) == last)
1137 continue;
1138 }
1139
1140 /* Create a new instance of the underlying variable of the
1141 PHI result. */
1142 name = copy_ssa_name (result);
1143 stmt = gimple_build_assign (name,
1144 gimple_phi_arg_def (phi, i));
1145
1146 /* copy location if present. */
1147 if (gimple_phi_arg_has_location (phi, i))
1148 gimple_set_location (stmt,
1149 gimple_phi_arg_location (phi, i));
1150
1151 /* Insert the new statement into the block and update
1152 the PHI node. */
1153 if (last && stmt_ends_bb_p (last))
1154 gsi_insert_before (&gsi2, stmt, GSI_NEW_STMT);
1155 else
1156 gsi_insert_after (&gsi2, stmt, GSI_NEW_STMT);
1157 SET_PHI_ARG_DEF (phi, i, name);
1158 }
1159 }
1160 }
1161
1162 /* Unmark this block again. */
1163 bb->aux = NULL;
1164 }
1165 }
1166
1167 /* Free all memory associated with going out of SSA form. SA is
1168 the outof-SSA info object. */
1169
1170 void
1171 finish_out_of_ssa (struct ssaexpand *sa)
1172 {
1173 free (sa->partition_to_pseudo);
1174 if (sa->values)
1175 BITMAP_FREE (sa->values);
1176 delete_var_map (sa->map);
1177 BITMAP_FREE (sa->partitions_for_parm_default_defs);
1178 memset (sa, 0, sizeof *sa);
1179 }
1180
1181 /* Take the current function out of SSA form, translating PHIs as described in
1182 R. Morgan, ``Building an Optimizing Compiler'',
1183 Butterworth-Heinemann, Boston, MA, 1998. pp 176-186. */
1184
1185 unsigned int
1186 rewrite_out_of_ssa (struct ssaexpand *sa)
1187 {
1188 /* If elimination of a PHI requires inserting a copy on a backedge,
1189 then we will have to split the backedge which has numerous
1190 undesirable performance effects.
1191
1192 A significant number of such cases can be handled here by inserting
1193 copies into the loop itself. */
1194 insert_backedge_copies ();
1195
1196
1197 /* Eliminate PHIs which are of no use, such as virtual or dead phis. */
1198 eliminate_useless_phis ();
1199
1200 if (dump_file && (dump_flags & TDF_DETAILS))
1201 gimple_dump_cfg (dump_file, dump_flags & ~TDF_DETAILS);
1202
1203 remove_ssa_form (flag_tree_ter, sa);
1204
1205 if (dump_file && (dump_flags & TDF_DETAILS))
1206 gimple_dump_cfg (dump_file, dump_flags & ~TDF_DETAILS);
1207
1208 return 0;
1209 }