]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-phinodes.c
Daily bump.
[thirdparty/gcc.git] / gcc / tree-phinodes.c
CommitLineData
4ee9c684 1/* Generic routines for manipulating PHIs
d353bf18 2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
de5f9bd2 3
4ee9c684 4This file is part of GCC.
de5f9bd2 5
4ee9c684 6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8c4c00c1 8the Free Software Foundation; either version 3, or (at your option)
4ee9c684 9any later version.
de5f9bd2 10
4ee9c684 11GCC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
de5f9bd2 15
4ee9c684 16You should have received a copy of the GNU General Public License
8c4c00c1 17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
de5f9bd2 19
4ee9c684 20#include "config.h"
21#include "system.h"
22#include "coretypes.h"
9ef16211 23#include "backend.h"
b20a8bb4 24#include "tree.h"
9ef16211 25#include "gimple.h"
94ea8568 26#include "hard-reg-set.h"
9ef16211 27#include "ssa.h"
28#include "alias.h"
29#include "fold-const.h"
bc61cadb 30#include "internal-fn.h"
dcf1a1ec 31#include "gimple-iterator.h"
69ee5dbb 32#include "tree-ssa.h"
0b205f4c 33#include "diagnostic-core.h"
4ee9c684 34
35/* Rewriting a function into SSA form can create a huge number of PHIs
36 many of which may be thrown away shortly after their creation if jumps
de5f9bd2 37 were threaded through PHI nodes.
4ee9c684 38
39 While our garbage collection mechanisms will handle this situation, it
40 is extremely wasteful to create nodes and throw them away, especially
41 when the nodes can be reused.
42
43 For PR 8361, we can significantly reduce the number of nodes allocated
44 and thus the total amount of memory allocated by managing PHIs a
45 little. This additionally helps reduce the amount of work done by the
46 garbage collector. Similar results have been seen on a wider variety
47 of tests (such as the compiler itself).
48
4ee9c684 49 PHI nodes have different sizes, so we can't have a single list of all
50 the PHI nodes as it would be too expensive to walk down that list to
51 find a PHI of a suitable size.
52
53 Instead we have an array of lists of free PHI nodes. The array is
54 indexed by the number of PHI alternatives that PHI node can hold.
55 Except for the last array member, which holds all remaining PHI
56 nodes.
57
58 So to find a free PHI node, we compute its index into the free PHI
59 node array and see if there are any elements with an exact match.
60 If so, then we are done. Otherwise, we test the next larger size
61 up and continue until we are in the last array element.
62
63 We do not actually walk members of the last array element. While it
64 might allow us to pick up a few reusable PHI nodes, it could potentially
65 be very expensive if the program has released a bunch of large PHI nodes,
66 but keeps asking for even larger PHI nodes. Experiments have shown that
67 walking the elements of the last array entry would result in finding less
de5f9bd2 68 than .1% additional reusable PHI nodes.
4ee9c684 69
70 Note that we can never have less than two PHI argument slots. Thus,
71 the -2 on all the calculations below. */
72
73#define NUM_BUCKETS 10
f1f41a6c 74static GTY ((deletable (""))) vec<gimple, va_gc> *free_phinodes[NUM_BUCKETS - 2];
4ee9c684 75static unsigned long free_phinode_count;
76
77static int ideal_phi_node_len (int);
4ee9c684 78
4ee9c684 79unsigned int phi_nodes_reused;
80unsigned int phi_nodes_created;
4ee9c684 81
4ee9c684 82/* Dump some simple statistics regarding the re-use of PHI nodes. */
83
4ee9c684 84void
85phinodes_print_statistics (void)
86{
87 fprintf (stderr, "PHI nodes allocated: %u\n", phi_nodes_created);
88 fprintf (stderr, "PHI nodes reused: %u\n", phi_nodes_reused);
89}
4ee9c684 90
c1ba1d09 91/* Allocate a PHI node with at least LEN arguments. If the free list
92 happens to contain a PHI node with LEN arguments or more, return
93 that one. */
94
1a91d914 95static inline gphi *
75a70cf9 96allocate_phi_node (size_t len)
c1ba1d09 97{
1a91d914 98 gphi *phi;
75a70cf9 99 size_t bucket = NUM_BUCKETS - 2;
1a91d914 100 size_t size = sizeof (struct gphi)
75a70cf9 101 + (len - 1) * sizeof (struct phi_arg_d);
c1ba1d09 102
103 if (free_phinode_count)
104 for (bucket = len - 2; bucket < NUM_BUCKETS - 2; bucket++)
105 if (free_phinodes[bucket])
106 break;
107
108 /* If our free list has an element, then use it. */
109 if (bucket < NUM_BUCKETS - 2
f1f41a6c 110 && gimple_phi_capacity ((*free_phinodes[bucket])[0]) >= len)
c1ba1d09 111 {
112 free_phinode_count--;
1a91d914 113 phi = as_a <gphi *> (free_phinodes[bucket]->pop ());
f1f41a6c 114 if (free_phinodes[bucket]->is_empty ())
115 vec_free (free_phinodes[bucket]);
ecd52ea9 116 if (GATHER_STATISTICS)
117 phi_nodes_reused++;
c1ba1d09 118 }
119 else
120 {
1a91d914 121 phi = static_cast <gphi *> (ggc_internal_alloc (size));
ecd52ea9 122 if (GATHER_STATISTICS)
75a70cf9 123 {
124 enum gimple_alloc_kind kind = gimple_alloc_kind (GIMPLE_PHI);
ecd52ea9 125 phi_nodes_created++;
126 gimple_alloc_counts[(int) kind]++;
127 gimple_alloc_sizes[(int) kind] += size;
75a70cf9 128 }
c1ba1d09 129 }
130
131 return phi;
132}
133
4ee9c684 134/* Given LEN, the original number of requested PHI arguments, return
135 a new, "ideal" length for the PHI node. The "ideal" length rounds
136 the total size of the PHI node up to the next power of two bytes.
137
138 Rounding up will not result in wasting any memory since the size request
139 will be rounded up by the GC system anyway. [ Note this is not entirely
140 true since the original length might have fit on one of the special
141 GC pages. ] By rounding up, we may avoid the need to reallocate the
142 PHI node later if we increase the number of arguments for the PHI. */
143
144static int
145ideal_phi_node_len (int len)
146{
147 size_t size, new_size;
148 int log2, new_len;
149
150 /* We do not support allocations of less than two PHI argument slots. */
151 if (len < 2)
152 len = 2;
153
154 /* Compute the number of bytes of the original request. */
1a91d914 155 size = sizeof (struct gphi)
75a70cf9 156 + (len - 1) * sizeof (struct phi_arg_d);
4ee9c684 157
158 /* Round it up to the next power of two. */
159 log2 = ceil_log2 (size);
160 new_size = 1 << log2;
de5f9bd2 161
162 /* Now compute and return the number of PHI argument slots given an
4ee9c684 163 ideal size allocation. */
164 new_len = len + (new_size - size) / sizeof (struct phi_arg_d);
165 return new_len;
166}
167
88dbf20f 168/* Return a PHI node with LEN argument slots for variable VAR. */
4ee9c684 169
1a91d914 170static gphi *
4ee9c684 171make_phi_node (tree var, int len)
172{
1a91d914 173 gphi *phi;
22aa74c4 174 int capacity, i;
4ee9c684 175
08d1df96 176 capacity = ideal_phi_node_len (len);
4ee9c684 177
08d1df96 178 phi = allocate_phi_node (capacity);
4ee9c684 179
cc890649 180 /* We need to clear the entire PHI node, including the argument
181 portion, because we represent a "missing PHI argument" by placing
182 NULL_TREE in PHI_ARG_DEF. */
1a91d914 183 memset (phi, 0, (sizeof (struct gphi)
75a70cf9 184 - sizeof (struct phi_arg_d)
cc890649 185 + sizeof (struct phi_arg_d) * len));
de6bd75e 186 phi->code = GIMPLE_PHI;
e3a19533 187 gimple_init_singleton (phi);
de6bd75e 188 phi->nargs = len;
189 phi->capacity = capacity;
9c06f260 190 if (!var)
191 ;
192 else if (TREE_CODE (var) == SSA_NAME)
75a70cf9 193 gimple_phi_set_result (phi, var);
4ee9c684 194 else
75a70cf9 195 gimple_phi_set_result (phi, make_ssa_name (var, phi));
4ee9c684 196
22aa74c4 197 for (i = 0; i < capacity; i++)
198 {
b66731e8 199 use_operand_p imm;
efbcb6de 200
201 gimple_phi_arg_set_location (phi, i, UNKNOWN_LOCATION);
75a70cf9 202 imm = gimple_phi_arg_imm_use_ptr (phi, i);
203 imm->use = gimple_phi_arg_def_ptr (phi, i);
22aa74c4 204 imm->prev = NULL;
205 imm->next = NULL;
75a70cf9 206 imm->loc.stmt = phi;
22aa74c4 207 }
17889f9d 208
4ee9c684 209 return phi;
210}
211
212/* We no longer need PHI, release it so that it may be reused. */
213
214void
75a70cf9 215release_phi_node (gimple phi)
4ee9c684 216{
75a70cf9 217 size_t bucket;
218 size_t len = gimple_phi_capacity (phi);
219 size_t x;
22aa74c4 220
75a70cf9 221 for (x = 0; x < gimple_phi_num_args (phi); x++)
22aa74c4 222 {
b66731e8 223 use_operand_p imm;
75a70cf9 224 imm = gimple_phi_arg_imm_use_ptr (phi, x);
22aa74c4 225 delink_imm_use (imm);
226 }
4ee9c684 227
228 bucket = len > NUM_BUCKETS - 1 ? NUM_BUCKETS - 1 : len;
229 bucket -= 2;
f1f41a6c 230 vec_safe_push (free_phinodes[bucket], phi);
4ee9c684 231 free_phinode_count++;
232}
233
75a70cf9 234
4ee9c684 235/* Resize an existing PHI node. The only way is up. Return the
236 possibly relocated phi. */
de5f9bd2 237
1a91d914 238static gphi *
239resize_phi_node (gphi *phi, size_t len)
4ee9c684 240{
75a70cf9 241 size_t old_size, i;
1a91d914 242 gphi *new_phi;
8c0963c4 243
e3a19533 244 gcc_assert (len > gimple_phi_capacity (phi));
8c0963c4 245
ee98f167 246 /* The garbage collector will not look at the PHI node beyond the
247 first PHI_NUM_ARGS elements. Therefore, all we have to copy is a
248 portion of the PHI node currently in use. */
1a91d914 249 old_size = sizeof (struct gphi)
e3a19533 250 + (gimple_phi_num_args (phi) - 1) * sizeof (struct phi_arg_d);
4ee9c684 251
c1ba1d09 252 new_phi = allocate_phi_node (len);
4ee9c684 253
e3a19533 254 memcpy (new_phi, phi, old_size);
4ee9c684 255
75a70cf9 256 for (i = 0; i < gimple_phi_num_args (new_phi); i++)
22aa74c4 257 {
b66731e8 258 use_operand_p imm, old_imm;
75a70cf9 259 imm = gimple_phi_arg_imm_use_ptr (new_phi, i);
e3a19533 260 old_imm = gimple_phi_arg_imm_use_ptr (phi, i);
75a70cf9 261 imm->use = gimple_phi_arg_def_ptr (new_phi, i);
22aa74c4 262 relink_imm_use_stmt (imm, old_imm, new_phi);
263 }
264
de6bd75e 265 new_phi->capacity = len;
de5f9bd2 266
75a70cf9 267 for (i = gimple_phi_num_args (new_phi); i < len; i++)
22aa74c4 268 {
b66731e8 269 use_operand_p imm;
efbcb6de 270
271 gimple_phi_arg_set_location (new_phi, i, UNKNOWN_LOCATION);
75a70cf9 272 imm = gimple_phi_arg_imm_use_ptr (new_phi, i);
273 imm->use = gimple_phi_arg_def_ptr (new_phi, i);
22aa74c4 274 imm->prev = NULL;
275 imm->next = NULL;
75a70cf9 276 imm->loc.stmt = new_phi;
22aa74c4 277 }
278
e3a19533 279 return new_phi;
4ee9c684 280}
281
a77b4cde 282/* Reserve PHI arguments for a new edge to basic block BB. */
283
284void
285reserve_phi_args_for_new_edge (basic_block bb)
286{
75a70cf9 287 size_t len = EDGE_COUNT (bb->preds);
288 size_t cap = ideal_phi_node_len (len + 4);
1a91d914 289 gphi_iterator gsi;
a77b4cde 290
75a70cf9 291 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
a77b4cde 292 {
1a91d914 293 gphi *stmt = gsi.phi ();
75a70cf9 294
e3a19533 295 if (len > gimple_phi_capacity (stmt))
a77b4cde 296 {
1a91d914 297 gphi *new_phi = resize_phi_node (stmt, cap);
a77b4cde 298
75a70cf9 299 /* The result of the PHI is defined by this PHI node. */
e3a19533 300 SSA_NAME_DEF_STMT (gimple_phi_result (new_phi)) = new_phi;
301 gsi_set_stmt (&gsi, new_phi);
a77b4cde 302
e3a19533 303 release_phi_node (stmt);
304 stmt = new_phi;
a77b4cde 305 }
cc890649 306
307 /* We represent a "missing PHI argument" by placing NULL_TREE in
308 the corresponding slot. If PHI arguments were added
309 immediately after an edge is created, this zeroing would not
310 be necessary, but unfortunately this is not the case. For
311 example, the loop optimizer duplicates several basic blocks,
312 redirects edges, and then fixes up PHI arguments later in
313 batch. */
e3a19533 314 SET_PHI_ARG_DEF (stmt, len - 1, NULL_TREE);
16f02f09 315 gimple_phi_arg_set_location (stmt, len - 1, UNKNOWN_LOCATION);
cc890649 316
de6bd75e 317 stmt->nargs++;
a77b4cde 318 }
319}
320
255b6be7 321/* Adds PHI to BB. */
17889f9d 322
48e1416a 323void
1a91d914 324add_phi_node_to_bb (gphi *phi, basic_block bb)
4ee9c684 325{
e3a19533 326 gimple_seq seq = phi_nodes (bb);
4ee9c684 327 /* Add the new PHI node to the list of PHI nodes for block BB. */
e3a19533 328 if (seq == NULL)
329 set_phi_nodes (bb, gimple_seq_alloc_with_stmt (phi));
330 else
331 {
332 gimple_seq_add_stmt (&seq, phi);
333 gcc_assert (seq == phi_nodes (bb));
334 }
4ee9c684 335
336 /* Associate BB to the PHI node. */
75a70cf9 337 gimple_set_bb (phi, bb);
4ee9c684 338
255b6be7 339}
340
341/* Create a new PHI node for variable VAR at basic block BB. */
342
1a91d914 343gphi *
255b6be7 344create_phi_node (tree var, basic_block bb)
345{
1a91d914 346 gphi *phi = make_phi_node (var, EDGE_COUNT (bb->preds));
255b6be7 347
348 add_phi_node_to_bb (phi, bb);
4ee9c684 349 return phi;
350}
351
17889f9d 352
4ee9c684 353/* Add a new argument to PHI node PHI. DEF is the incoming reaching
354 definition and E is the edge through which DEF reaches PHI. The new
355 argument is added at the end of the argument list.
356 If PHI has reached its maximum capacity, add a few slots. In this case,
357 PHI points to the reallocated phi node when we return. */
358
359void
1a91d914 360add_phi_arg (gphi *phi, tree def, edge e, source_location locus)
4ee9c684 361{
2a6e956a 362 basic_block bb = e->dest;
4ee9c684 363
75a70cf9 364 gcc_assert (bb == gimple_bb (phi));
2a6e956a 365
a77b4cde 366 /* We resize PHI nodes upon edge creation. We should always have
367 enough room at this point. */
75a70cf9 368 gcc_assert (gimple_phi_num_args (phi) <= gimple_phi_capacity (phi));
cc890649 369
370 /* We resize PHI nodes upon edge creation. We should always have
371 enough room at this point. */
75a70cf9 372 gcc_assert (e->dest_idx < gimple_phi_num_args (phi));
4ee9c684 373
374 /* Copy propagation needs to know what object occur in abnormal
375 PHI nodes. This is a convenient place to record such information. */
376 if (e->flags & EDGE_ABNORMAL)
377 {
378 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def) = 1;
04cd6268 379 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)) = 1;
4ee9c684 380 }
381
04cd6268 382 SET_PHI_ARG_DEF (phi, e->dest_idx, def);
efbcb6de 383 gimple_phi_arg_set_location (phi, e->dest_idx, locus);
4ee9c684 384}
385
17889f9d 386
519d40d1 387/* Remove the Ith argument from PHI's argument list. This routine
388 implements removal by swapping the last alternative with the
389 alternative we want to delete and then shrinking the vector, which
390 is consistent with how we remove an edge from the edge vector. */
4ee9c684 391
a632e132 392static void
1a91d914 393remove_phi_arg_num (gphi *phi, int i)
4ee9c684 394{
75a70cf9 395 int num_elem = gimple_phi_num_args (phi);
4ee9c684 396
13e51728 397 gcc_assert (i < num_elem);
398
66c8f3a9 399 /* Delink the item which is being removed. */
75a70cf9 400 delink_imm_use (gimple_phi_arg_imm_use_ptr (phi, i));
66c8f3a9 401
402 /* If it is not the last element, move the last element
403 to the element we want to delete, resetting all the links. */
4ee9c684 404 if (i != num_elem - 1)
405 {
66c8f3a9 406 use_operand_p old_p, new_p;
75a70cf9 407 old_p = gimple_phi_arg_imm_use_ptr (phi, num_elem - 1);
408 new_p = gimple_phi_arg_imm_use_ptr (phi, i);
9fdf9cf6 409 /* Set use on new node, and link into last element's place. */
66c8f3a9 410 *(new_p->use) = *(old_p->use);
411 relink_imm_use (new_p, old_p);
efbcb6de 412 /* Move the location as well. */
48e1416a 413 gimple_phi_arg_set_location (phi, i,
efbcb6de 414 gimple_phi_arg_location (phi, num_elem - 1));
4ee9c684 415 }
416
36fddb4b 417 /* Shrink the vector and return. Note that we do not have to clear
6b34676b 418 PHI_ARG_DEF because the garbage collector will not look at those
419 elements beyond the first PHI_NUM_ARGS elements of the array. */
de6bd75e 420 phi->nargs--;
4ee9c684 421}
422
17889f9d 423
1af6dc83 424/* Remove all PHI arguments associated with edge E. */
425
426void
427remove_phi_args (edge e)
428{
1a91d914 429 gphi_iterator gsi;
1af6dc83 430
75a70cf9 431 for (gsi = gsi_start_phis (e->dest); !gsi_end_p (gsi); gsi_next (&gsi))
1a91d914 432 remove_phi_arg_num (gsi.phi (),
de6bd75e 433 e->dest_idx);
1af6dc83 434}
435
17889f9d 436
75a70cf9 437/* Remove the PHI node pointed-to by iterator GSI from basic block BB. After
438 removal, iterator GSI is updated to point to the next PHI node in the
439 sequence. If RELEASE_LHS_P is true, the LHS of this PHI node is released
440 into the free pool of SSA names. */
4ee9c684 441
442void
75a70cf9 443remove_phi_node (gimple_stmt_iterator *gsi, bool release_lhs_p)
4ee9c684 444{
75a70cf9 445 gimple phi = gsi_stmt (*gsi);
41ad616d 446
447 if (release_lhs_p)
448 insert_debug_temps_for_defs (gsi);
449
75a70cf9 450 gsi_remove (gsi, false);
1e49fef2 451
452 /* If we are deleting the PHI node, then we should release the
453 SSA_NAME node so that it can be reused. */
1e49fef2 454 release_phi_node (phi);
17889f9d 455 if (release_lhs_p)
75a70cf9 456 release_ssa_name (gimple_phi_result (phi));
214ed29c 457}
4ee9c684 458
899e6126 459/* Remove all the phi nodes from BB. */
460
461void
462remove_phi_nodes (basic_block bb)
463{
1a91d914 464 gphi_iterator gsi;
899e6126 465
466 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); )
467 remove_phi_node (&gsi, true);
468
469 set_phi_nodes (bb, NULL);
470}
471
424a4a92 472/* Given PHI, return its RHS if the PHI is a degenerate, otherwise return
473 NULL. */
474
475tree
1a91d914 476degenerate_phi_result (gphi *phi)
424a4a92 477{
478 tree lhs = gimple_phi_result (phi);
479 tree val = NULL;
480 size_t i;
481
482 /* Ignoring arguments which are the same as LHS, if all the remaining
483 arguments are the same, then the PHI is a degenerate and has the
484 value of that common argument. */
485 for (i = 0; i < gimple_phi_num_args (phi); i++)
486 {
487 tree arg = gimple_phi_arg_def (phi, i);
488
489 if (arg == lhs)
490 continue;
491 else if (!arg)
492 break;
493 else if (!val)
494 val = arg;
495 else if (arg == val)
496 continue;
497 /* We bring in some of operand_equal_p not only to speed things
498 up, but also to avoid crashing when dereferencing the type of
499 a released SSA name. */
500 else if (TREE_CODE (val) != TREE_CODE (arg)
501 || TREE_CODE (val) == SSA_NAME
502 || !operand_equal_p (arg, val, 0))
503 break;
504 }
505 return (i == gimple_phi_num_args (phi) ? val : NULL);
506}
507
dcf1a1ec 508/* Set PHI nodes of a basic block BB to SEQ. */
509
510void
511set_phi_nodes (basic_block bb, gimple_seq seq)
512{
513 gimple_stmt_iterator i;
514
515 gcc_checking_assert (!(bb->flags & BB_RTL));
516 bb->il.gimple.phi_nodes = seq;
517 if (seq)
518 for (i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
519 gimple_set_bb (gsi_stmt (i), bb);
520}
424a4a92 521
4ee9c684 522#include "gt-tree-phinodes.h"