[PATCH] Update SSA_NAME manager to use two lists
[gcc.git] / gcc / tree-ssanames.c
1 /* Generic routines for manipulating SSA_NAME expressions
2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
10
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "backend.h"
24 #include "tree.h"
25 #include "gimple.h"
26 #include "gimple-iterator.h"
27 #include "hard-reg-set.h"
28 #include "ssa.h"
29 #include "alias.h"
30 #include "fold-const.h"
31 #include "stor-layout.h"
32 #include "internal-fn.h"
33 #include "tree-into-ssa.h"
34 #include "tree-ssa.h"
35 #include "tree-pass.h"
36
37 /* Rewriting a function into SSA form can create a huge number of SSA_NAMEs,
38 many of which may be thrown away shortly after their creation if jumps
39 were threaded through PHI nodes.
40
41 While our garbage collection mechanisms will handle this situation, it
42 is extremely wasteful to create nodes and throw them away, especially
43 when the nodes can be reused.
44
45 For PR 8361, we can significantly reduce the number of nodes allocated
46 and thus the total amount of memory allocated by managing SSA_NAMEs a
47 little. This additionally helps reduce the amount of work done by the
48 garbage collector. Similar results have been seen on a wider variety
49 of tests (such as the compiler itself).
50
51 Right now we maintain our free list on a per-function basis. It may
52 or may not make sense to maintain the free list for the duration of
53 a compilation unit.
54
55 External code should rely solely upon HIGHEST_SSA_VERSION and the
56 externally defined functions. External code should not know about
57 the details of the free list management.
58
59 External code should also not assume the version number on nodes is
60 monotonically increasing. We reuse the version number when we
61 reuse an SSA_NAME expression. This helps keep arrays and bitmaps
62 more compact. */
63
64
65 /* Version numbers with special meanings. We start allocating new version
66 numbers after the special ones. */
67 #define UNUSED_NAME_VERSION 0
68
69 unsigned int ssa_name_nodes_reused;
70 unsigned int ssa_name_nodes_created;
71
72 #define FREE_SSANAMES(fun) (fun)->gimple_df->free_ssanames
73 #define FREE_SSANAMES_QUEUE(fun) (fun)->gimple_df->free_ssanames_queue
74
75
76 /* Initialize management of SSA_NAMEs to default SIZE. If SIZE is
77 zero use default. */
78
79 void
80 init_ssanames (struct function *fn, int size)
81 {
82 if (size < 50)
83 size = 50;
84
85 vec_alloc (SSANAMES (fn), size);
86
87 /* Version 0 is special, so reserve the first slot in the table. Though
88 currently unused, we may use version 0 in alias analysis as part of
89 the heuristics used to group aliases when the alias sets are too
90 large.
91
92 We use vec::quick_push here because we know that SSA_NAMES has at
93 least 50 elements reserved in it. */
94 SSANAMES (fn)->quick_push (NULL_TREE);
95 FREE_SSANAMES (fn) = NULL;
96 FREE_SSANAMES_QUEUE (fn) = NULL;
97
98 fn->gimple_df->ssa_renaming_needed = 0;
99 fn->gimple_df->rename_vops = 0;
100 }
101
102 /* Finalize management of SSA_NAMEs. */
103
104 void
105 fini_ssanames (void)
106 {
107 vec_free (SSANAMES (cfun));
108 vec_free (FREE_SSANAMES (cfun));
109 vec_free (FREE_SSANAMES_QUEUE (cfun));
110 }
111
112 /* Dump some simple statistics regarding the re-use of SSA_NAME nodes. */
113
114 void
115 ssanames_print_statistics (void)
116 {
117 fprintf (stderr, "SSA_NAME nodes allocated: %u\n", ssa_name_nodes_created);
118 fprintf (stderr, "SSA_NAME nodes reused: %u\n", ssa_name_nodes_reused);
119 }
120
121 /* Move all SSA_NAMEs from FREE_SSA_NAMES_QUEUE to FREE_SSA_NAMES.
122
123 We do not, but should have a mode to verify the state of the SSA_NAMEs
124 lists. In particular at this point every name must be in the IL,
125 on the free list or in the queue. Anything else is an error. */
126
127 void
128 flush_ssaname_freelist (void)
129 {
130 while (!vec_safe_is_empty (FREE_SSANAMES_QUEUE (cfun)))
131 {
132 tree t = FREE_SSANAMES_QUEUE (cfun)->pop ();
133 vec_safe_push (FREE_SSANAMES (cfun), t);
134 }
135 }
136
137 /* Return an SSA_NAME node for variable VAR defined in statement STMT
138 in function FN. STMT may be an empty statement for artificial
139 references (e.g., default definitions created when a variable is
140 used without a preceding definition). */
141
142 tree
143 make_ssa_name_fn (struct function *fn, tree var, gimple *stmt)
144 {
145 tree t;
146 use_operand_p imm;
147
148 gcc_assert (TREE_CODE (var) == VAR_DECL
149 || TREE_CODE (var) == PARM_DECL
150 || TREE_CODE (var) == RESULT_DECL
151 || (TYPE_P (var) && is_gimple_reg_type (var)));
152
153 /* If our free list has an element, then use it. */
154 if (!vec_safe_is_empty (FREE_SSANAMES (fn)))
155 {
156 t = FREE_SSANAMES (fn)->pop ();
157 if (GATHER_STATISTICS)
158 ssa_name_nodes_reused++;
159
160 /* The node was cleared out when we put it on the free list, so
161 there is no need to do so again here. */
162 gcc_assert ((*SSANAMES (fn))[SSA_NAME_VERSION (t)] == NULL);
163 (*SSANAMES (fn))[SSA_NAME_VERSION (t)] = t;
164 }
165 else
166 {
167 t = make_node (SSA_NAME);
168 SSA_NAME_VERSION (t) = SSANAMES (fn)->length ();
169 vec_safe_push (SSANAMES (fn), t);
170 if (GATHER_STATISTICS)
171 ssa_name_nodes_created++;
172 }
173
174 if (TYPE_P (var))
175 {
176 TREE_TYPE (t) = var;
177 SET_SSA_NAME_VAR_OR_IDENTIFIER (t, NULL_TREE);
178 }
179 else
180 {
181 TREE_TYPE (t) = TREE_TYPE (var);
182 SET_SSA_NAME_VAR_OR_IDENTIFIER (t, var);
183 }
184 SSA_NAME_DEF_STMT (t) = stmt;
185 if (POINTER_TYPE_P (TREE_TYPE (t)))
186 SSA_NAME_PTR_INFO (t) = NULL;
187 else
188 SSA_NAME_RANGE_INFO (t) = NULL;
189
190 SSA_NAME_IN_FREE_LIST (t) = 0;
191 SSA_NAME_IS_DEFAULT_DEF (t) = 0;
192 imm = &(SSA_NAME_IMM_USE_NODE (t));
193 imm->use = NULL;
194 imm->prev = imm;
195 imm->next = imm;
196 imm->loc.ssa_name = t;
197
198 return t;
199 }
200
201 /* Store range information RANGE_TYPE, MIN, and MAX to tree ssa_name NAME. */
202
203 void
204 set_range_info (tree name, enum value_range_type range_type,
205 const wide_int_ref &min, const wide_int_ref &max)
206 {
207 gcc_assert (!POINTER_TYPE_P (TREE_TYPE (name)));
208 gcc_assert (range_type == VR_RANGE || range_type == VR_ANTI_RANGE);
209 range_info_def *ri = SSA_NAME_RANGE_INFO (name);
210 unsigned int precision = TYPE_PRECISION (TREE_TYPE (name));
211
212 /* Allocate if not available. */
213 if (ri == NULL)
214 {
215 size_t size = (sizeof (range_info_def)
216 + trailing_wide_ints <3>::extra_size (precision));
217 ri = static_cast<range_info_def *> (ggc_internal_alloc (size));
218 ri->ints.set_precision (precision);
219 SSA_NAME_RANGE_INFO (name) = ri;
220 ri->set_nonzero_bits (wi::shwi (-1, precision));
221 }
222
223 /* Record the range type. */
224 if (SSA_NAME_RANGE_TYPE (name) != range_type)
225 SSA_NAME_ANTI_RANGE_P (name) = (range_type == VR_ANTI_RANGE);
226
227 /* Set the values. */
228 ri->set_min (min);
229 ri->set_max (max);
230
231 /* If it is a range, try to improve nonzero_bits from the min/max. */
232 if (range_type == VR_RANGE)
233 {
234 wide_int xorv = ri->get_min () ^ ri->get_max ();
235 if (xorv != 0)
236 xorv = wi::mask (precision - wi::clz (xorv), false, precision);
237 ri->set_nonzero_bits (ri->get_nonzero_bits () & (ri->get_min () | xorv));
238 }
239 }
240
241
242 /* Gets range information MIN, MAX and returns enum value_range_type
243 corresponding to tree ssa_name NAME. enum value_range_type returned
244 is used to determine if MIN and MAX are valid values. */
245
246 enum value_range_type
247 get_range_info (const_tree name, wide_int *min, wide_int *max)
248 {
249 gcc_assert (!POINTER_TYPE_P (TREE_TYPE (name)));
250 gcc_assert (min && max);
251 range_info_def *ri = SSA_NAME_RANGE_INFO (name);
252
253 /* Return VR_VARYING for SSA_NAMEs with NULL RANGE_INFO or SSA_NAMEs
254 with integral types width > 2 * HOST_BITS_PER_WIDE_INT precision. */
255 if (!ri || (GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (name)))
256 > 2 * HOST_BITS_PER_WIDE_INT))
257 return VR_VARYING;
258
259 *min = ri->get_min ();
260 *max = ri->get_max ();
261 return SSA_NAME_RANGE_TYPE (name);
262 }
263
264 /* Change non-zero bits bitmask of NAME. */
265
266 void
267 set_nonzero_bits (tree name, const wide_int_ref &mask)
268 {
269 gcc_assert (!POINTER_TYPE_P (TREE_TYPE (name)));
270 if (SSA_NAME_RANGE_INFO (name) == NULL)
271 set_range_info (name, VR_RANGE,
272 TYPE_MIN_VALUE (TREE_TYPE (name)),
273 TYPE_MAX_VALUE (TREE_TYPE (name)));
274 range_info_def *ri = SSA_NAME_RANGE_INFO (name);
275 ri->set_nonzero_bits (mask);
276 }
277
278 /* Return a widest_int with potentially non-zero bits in SSA_NAME
279 NAME, or -1 if unknown. */
280
281 wide_int
282 get_nonzero_bits (const_tree name)
283 {
284 unsigned int precision = TYPE_PRECISION (TREE_TYPE (name));
285 if (POINTER_TYPE_P (TREE_TYPE (name)))
286 {
287 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (name);
288 if (pi && pi->align)
289 return wi::shwi (-(HOST_WIDE_INT) pi->align
290 | (HOST_WIDE_INT) pi->misalign, precision);
291 return wi::shwi (-1, precision);
292 }
293
294 range_info_def *ri = SSA_NAME_RANGE_INFO (name);
295 if (!ri)
296 return wi::shwi (-1, precision);
297
298 return ri->get_nonzero_bits ();
299 }
300
301 /* We no longer need the SSA_NAME expression VAR, release it so that
302 it may be reused.
303
304 Note it is assumed that no calls to make_ssa_name will be made
305 until all uses of the ssa name are released and that the only
306 use of the SSA_NAME expression is to check its SSA_NAME_VAR. All
307 other fields must be assumed clobbered. */
308
309 void
310 release_ssa_name_fn (struct function *fn, tree var)
311 {
312 if (!var)
313 return;
314
315 /* Never release the default definition for a symbol. It's a
316 special SSA name that should always exist once it's created. */
317 if (SSA_NAME_IS_DEFAULT_DEF (var))
318 return;
319
320 /* If VAR has been registered for SSA updating, don't remove it.
321 After update_ssa has run, the name will be released. */
322 if (name_registered_for_update_p (var))
323 {
324 release_ssa_name_after_update_ssa (var);
325 return;
326 }
327
328 /* release_ssa_name can be called multiple times on a single SSA_NAME.
329 However, it should only end up on our free list one time. We
330 keep a status bit in the SSA_NAME node itself to indicate it has
331 been put on the free list.
332
333 Note that once on the freelist you can not reference the SSA_NAME's
334 defining statement. */
335 if (! SSA_NAME_IN_FREE_LIST (var))
336 {
337 tree saved_ssa_name_var = SSA_NAME_VAR (var);
338 int saved_ssa_name_version = SSA_NAME_VERSION (var);
339 use_operand_p imm = &(SSA_NAME_IMM_USE_NODE (var));
340
341 if (MAY_HAVE_DEBUG_STMTS)
342 insert_debug_temp_for_var_def (NULL, var);
343
344 #ifdef ENABLE_CHECKING
345 verify_imm_links (stderr, var);
346 #endif
347 while (imm->next != imm)
348 delink_imm_use (imm->next);
349
350 (*SSANAMES (fn))[SSA_NAME_VERSION (var)] = NULL_TREE;
351 memset (var, 0, tree_size (var));
352
353 imm->prev = imm;
354 imm->next = imm;
355 imm->loc.ssa_name = var;
356
357 /* First put back the right tree node so that the tree checking
358 macros do not complain. */
359 TREE_SET_CODE (var, SSA_NAME);
360
361 /* Restore the version number. */
362 SSA_NAME_VERSION (var) = saved_ssa_name_version;
363
364 /* Hopefully this can go away once we have the new incremental
365 SSA updating code installed. */
366 SET_SSA_NAME_VAR_OR_IDENTIFIER (var, saved_ssa_name_var);
367
368 /* Note this SSA_NAME is now in the first list. */
369 SSA_NAME_IN_FREE_LIST (var) = 1;
370
371 /* And finally queue it so that it will be put on the free list. */
372 vec_safe_push (FREE_SSANAMES_QUEUE (fn), var);
373 }
374 }
375
376 /* If the alignment of the pointer described by PI is known, return true and
377 store the alignment and the deviation from it into *ALIGNP and *MISALIGNP
378 respectively. Otherwise return false. */
379
380 bool
381 get_ptr_info_alignment (struct ptr_info_def *pi, unsigned int *alignp,
382 unsigned int *misalignp)
383 {
384 if (pi->align)
385 {
386 *alignp = pi->align;
387 *misalignp = pi->misalign;
388 return true;
389 }
390 else
391 return false;
392 }
393
394 /* State that the pointer described by PI has unknown alignment. */
395
396 void
397 mark_ptr_info_alignment_unknown (struct ptr_info_def *pi)
398 {
399 pi->align = 0;
400 pi->misalign = 0;
401 }
402
403 /* Store the power-of-two byte alignment and the deviation from that
404 alignment of pointer described by PI to ALIOGN and MISALIGN
405 respectively. */
406
407 void
408 set_ptr_info_alignment (struct ptr_info_def *pi, unsigned int align,
409 unsigned int misalign)
410 {
411 gcc_checking_assert (align != 0);
412 gcc_assert ((align & (align - 1)) == 0);
413 gcc_assert ((misalign & ~(align - 1)) == 0);
414
415 pi->align = align;
416 pi->misalign = misalign;
417 }
418
419 /* If pointer described by PI has known alignment, increase its known
420 misalignment by INCREMENT modulo its current alignment. */
421
422 void
423 adjust_ptr_info_misalignment (struct ptr_info_def *pi,
424 unsigned int increment)
425 {
426 if (pi->align != 0)
427 {
428 pi->misalign += increment;
429 pi->misalign &= (pi->align - 1);
430 }
431 }
432
433 /* Return the alias information associated with pointer T. It creates a
434 new instance if none existed. */
435
436 struct ptr_info_def *
437 get_ptr_info (tree t)
438 {
439 struct ptr_info_def *pi;
440
441 gcc_assert (POINTER_TYPE_P (TREE_TYPE (t)));
442
443 pi = SSA_NAME_PTR_INFO (t);
444 if (pi == NULL)
445 {
446 pi = ggc_cleared_alloc<ptr_info_def> ();
447 pt_solution_reset (&pi->pt);
448 mark_ptr_info_alignment_unknown (pi);
449 SSA_NAME_PTR_INFO (t) = pi;
450 }
451
452 return pi;
453 }
454
455
456 /* Creates a new SSA name using the template NAME tobe defined by
457 statement STMT in function FN. */
458
459 tree
460 copy_ssa_name_fn (struct function *fn, tree name, gimple *stmt)
461 {
462 tree new_name;
463
464 if (SSA_NAME_VAR (name))
465 new_name = make_ssa_name_fn (fn, SSA_NAME_VAR (name), stmt);
466 else
467 {
468 new_name = make_ssa_name_fn (fn, TREE_TYPE (name), stmt);
469 SET_SSA_NAME_VAR_OR_IDENTIFIER (new_name, SSA_NAME_IDENTIFIER (name));
470 }
471
472 return new_name;
473 }
474
475
476 /* Creates a duplicate of the ptr_info_def at PTR_INFO for use by
477 the SSA name NAME. */
478
479 void
480 duplicate_ssa_name_ptr_info (tree name, struct ptr_info_def *ptr_info)
481 {
482 struct ptr_info_def *new_ptr_info;
483
484 gcc_assert (POINTER_TYPE_P (TREE_TYPE (name)));
485 gcc_assert (!SSA_NAME_PTR_INFO (name));
486
487 if (!ptr_info)
488 return;
489
490 new_ptr_info = ggc_alloc<ptr_info_def> ();
491 *new_ptr_info = *ptr_info;
492
493 SSA_NAME_PTR_INFO (name) = new_ptr_info;
494 }
495
496 /* Creates a duplicate of the range_info_def at RANGE_INFO of type
497 RANGE_TYPE for use by the SSA name NAME. */
498 void
499 duplicate_ssa_name_range_info (tree name, enum value_range_type range_type,
500 struct range_info_def *range_info)
501 {
502 struct range_info_def *new_range_info;
503
504 gcc_assert (!POINTER_TYPE_P (TREE_TYPE (name)));
505 gcc_assert (!SSA_NAME_RANGE_INFO (name));
506 gcc_assert (!SSA_NAME_ANTI_RANGE_P (name));
507
508 if (!range_info)
509 return;
510
511 unsigned int precision = TYPE_PRECISION (TREE_TYPE (name));
512 size_t size = (sizeof (range_info_def)
513 + trailing_wide_ints <3>::extra_size (precision));
514 new_range_info = static_cast<range_info_def *> (ggc_internal_alloc (size));
515 memcpy (new_range_info, range_info, size);
516
517 gcc_assert (range_type == VR_RANGE || range_type == VR_ANTI_RANGE);
518 SSA_NAME_ANTI_RANGE_P (name) = (range_type == VR_ANTI_RANGE);
519 SSA_NAME_RANGE_INFO (name) = new_range_info;
520 }
521
522
523
524 /* Creates a duplicate of a ssa name NAME tobe defined by statement STMT
525 in function FN. */
526
527 tree
528 duplicate_ssa_name_fn (struct function *fn, tree name, gimple *stmt)
529 {
530 tree new_name = copy_ssa_name_fn (fn, name, stmt);
531 if (POINTER_TYPE_P (TREE_TYPE (name)))
532 {
533 struct ptr_info_def *old_ptr_info = SSA_NAME_PTR_INFO (name);
534
535 if (old_ptr_info)
536 duplicate_ssa_name_ptr_info (new_name, old_ptr_info);
537 }
538 else
539 {
540 struct range_info_def *old_range_info = SSA_NAME_RANGE_INFO (name);
541
542 if (old_range_info)
543 duplicate_ssa_name_range_info (new_name, SSA_NAME_RANGE_TYPE (name),
544 old_range_info);
545 }
546
547 return new_name;
548 }
549
550
551 /* Reset all flow sensitive data on NAME such as range-info, nonzero
552 bits and alignment. */
553
554 void
555 reset_flow_sensitive_info (tree name)
556 {
557 if (POINTER_TYPE_P (TREE_TYPE (name)))
558 {
559 /* points-to info is not flow-sensitive. */
560 if (SSA_NAME_PTR_INFO (name))
561 mark_ptr_info_alignment_unknown (SSA_NAME_PTR_INFO (name));
562 }
563 else
564 SSA_NAME_RANGE_INFO (name) = NULL;
565 }
566
567 /* Clear all flow sensitive data from all statements and PHI definitions
568 in BB. */
569
570 void
571 reset_flow_sensitive_info_in_bb (basic_block bb)
572 {
573 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
574 gsi_next (&gsi))
575 {
576 gimple *stmt = gsi_stmt (gsi);
577 ssa_op_iter i;
578 tree op;
579 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_DEF)
580 reset_flow_sensitive_info (op);
581 }
582
583 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
584 gsi_next (&gsi))
585 {
586 tree phi_def = gimple_phi_result (gsi.phi ());
587 reset_flow_sensitive_info (phi_def);
588 }
589 }
590
591 /* Release all the SSA_NAMEs created by STMT. */
592
593 void
594 release_defs (gimple *stmt)
595 {
596 tree def;
597 ssa_op_iter iter;
598
599 /* Make sure that we are in SSA. Otherwise, operand cache may point
600 to garbage. */
601 gcc_assert (gimple_in_ssa_p (cfun));
602
603 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
604 if (TREE_CODE (def) == SSA_NAME)
605 release_ssa_name (def);
606 }
607
608
609 /* Replace the symbol associated with SSA_NAME with SYM. */
610
611 void
612 replace_ssa_name_symbol (tree ssa_name, tree sym)
613 {
614 SET_SSA_NAME_VAR_OR_IDENTIFIER (ssa_name, sym);
615 TREE_TYPE (ssa_name) = TREE_TYPE (sym);
616 }
617
618 /* Return SSA names that are unused to GGC memory and compact the SSA
619 version namespace. This is used to keep footprint of compiler during
620 interprocedural optimization. */
621
622 namespace {
623
624 const pass_data pass_data_release_ssa_names =
625 {
626 GIMPLE_PASS, /* type */
627 "release_ssa", /* name */
628 OPTGROUP_NONE, /* optinfo_flags */
629 TV_TREE_SSA_OTHER, /* tv_id */
630 PROP_ssa, /* properties_required */
631 0, /* properties_provided */
632 0, /* properties_destroyed */
633 TODO_remove_unused_locals, /* todo_flags_start */
634 0, /* todo_flags_finish */
635 };
636
637 class pass_release_ssa_names : public gimple_opt_pass
638 {
639 public:
640 pass_release_ssa_names (gcc::context *ctxt)
641 : gimple_opt_pass (pass_data_release_ssa_names, ctxt)
642 {}
643
644 /* opt_pass methods: */
645 virtual unsigned int execute (function *);
646
647 }; // class pass_release_ssa_names
648
649 unsigned int
650 pass_release_ssa_names::execute (function *fun)
651 {
652 unsigned i, j;
653 flush_ssaname_freelist ();
654 int n = vec_safe_length (FREE_SSANAMES (fun));
655
656 /* Now release the freelist. */
657 vec_free (FREE_SSANAMES (fun));
658
659 /* And compact the SSA number space. We make sure to not change the
660 relative order of SSA versions. */
661 for (i = 1, j = 1; i < fun->gimple_df->ssa_names->length (); ++i)
662 {
663 tree name = ssa_name (i);
664 if (name)
665 {
666 if (i != j)
667 {
668 SSA_NAME_VERSION (name) = j;
669 (*fun->gimple_df->ssa_names)[j] = name;
670 }
671 j++;
672 }
673 }
674 fun->gimple_df->ssa_names->truncate (j);
675
676 statistics_counter_event (fun, "SSA names released", n);
677 statistics_counter_event (fun, "SSA name holes removed", i - j);
678 if (dump_file)
679 fprintf (dump_file, "Released %i names, %.2f%%, removed %i holes\n",
680 n, n * 100.0 / num_ssa_names, i - j);
681 return 0;
682 }
683
684 } // anon namespace
685
686 gimple_opt_pass *
687 make_pass_release_ssa_names (gcc::context *ctxt)
688 {
689 return new pass_release_ssa_names (ctxt);
690 }