1/* Miscellaneous SSA utility functions.
2 Copyright (C) 2001-2023 Free Software Foundation, Inc.
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 3, or (at your option)
9any later version.
10
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.
15
16You should have received a copy of the GNU General Public License
17along 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 "cfghooks.h"
27#include "tree-pass.h"
28#include "ssa.h"
29#include "gimple-pretty-print.h"
30#include "diagnostic-core.h"
31#include "fold-const.h"
32#include "stor-layout.h"
33#include "gimple-iterator.h"
34#include "gimple-fold.h"
35#include "gimplify.h"
36#include "gimple-walk.h"
37#include "tree-ssa-loop-manip.h"
38#include "tree-into-ssa.h"
39#include "tree-ssa.h"
40#include "cfgloop.h"
41#include "cfgexpand.h"
42#include "tree-cfg.h"
43#include "tree-dfa.h"
44#include "stringpool.h"
45#include "attribs.h"
46#include "asan.h"
47
48/* Pointer map of variable mappings, keyed by edge. */
49static hash_map<edge, auto_vec<edge_var_map> > *edge_var_maps;
50
51
52/* Add a mapping with PHI RESULT and PHI DEF associated with edge E. */
53
54void
55redirect_edge_var_map_add (edge e, tree result, tree def, location_t locus)
56{
57 edge_var_map new_node;
58
59 if (edge_var_maps == NULL)
60 edge_var_maps = new hash_map<edge, auto_vec<edge_var_map> >;
61
62 auto_vec<edge_var_map> &slot = edge_var_maps->get_or_insert (k: e);
63 new_node.def = def;
64 new_node.result = result;
65 new_node.locus = locus;
66
67 slot.safe_push (obj: new_node);
68}
69
70
71/* Clear the var mappings in edge E. */
72
73void
74redirect_edge_var_map_clear (edge e)
75{
76 if (!edge_var_maps)
77 return;
78
79 auto_vec<edge_var_map> *head = edge_var_maps->get (k: e);
80
81 if (head)
82 head->release ();
83}
84
85
86/* Duplicate the redirected var mappings in OLDE in NEWE.
87
88 This assumes a hash_map can have multiple edges mapping to the same
89 var_map (many to one mapping), since we don't remove the previous mappings.
90 */
91
92void
93redirect_edge_var_map_dup (edge newe, edge olde)
94{
95 if (!edge_var_maps)
96 return;
97
98 auto_vec<edge_var_map> *new_head = &edge_var_maps->get_or_insert (k: newe);
99 auto_vec<edge_var_map> *old_head = edge_var_maps->get (k: olde);
100 if (!old_head)
101 return;
102
103 new_head->safe_splice (src: *old_head);
104}
105
106
107/* Return the variable mappings for a given edge. If there is none, return
108 NULL. */
109
110vec<edge_var_map> *
111redirect_edge_var_map_vector (edge e)
112{
113 /* Hey, what kind of idiot would... you'd be surprised. */
114 if (!edge_var_maps)
115 return NULL;
116
117 auto_vec<edge_var_map> *slot = edge_var_maps->get (k: e);
118 if (!slot)
119 return NULL;
120
121 return slot;
122}
123
124/* Clear the edge variable mappings. */
125
126void
127redirect_edge_var_map_empty (void)
128{
129 if (edge_var_maps)
130 edge_var_maps->empty ();
131}
132
133
134/* Remove the corresponding arguments from the PHI nodes in E's
135 destination block and redirect it to DEST. Return redirected edge.
136 The list of removed arguments is stored in a vector accessed
137 through edge_var_maps. */
138
139edge
140ssa_redirect_edge (edge e, basic_block dest)
141{
142 gphi_iterator gsi;
143 gphi *phi;
144
145 redirect_edge_var_map_clear (e);
146
147 /* Remove the appropriate PHI arguments in E's destination block.
148 If we are redirecting a copied edge the destination has not
149 got PHI argument space reserved nor an interesting argument. */
150 if (! (e->dest->flags & BB_DUPLICATED))
151 for (gsi = gsi_start_phis (e->dest); !gsi_end_p (i: gsi); gsi_next (i: &gsi))
152 {
153 tree def;
154 location_t locus;
155
156 phi = gsi.phi ();
157 def = gimple_phi_arg_def (gs: phi, index: e->dest_idx);
158 locus = gimple_phi_arg_location (phi, i: e->dest_idx);
159
160 if (def == NULL_TREE)
161 continue;
162
163 redirect_edge_var_map_add (e, result: gimple_phi_result (gs: phi), def, locus);
164 }
165
166 e = redirect_edge_succ_nodup (e, dest);
167
168 return e;
169}
170
171
172/* Add PHI arguments queued in PENDING_STMT list on edge E to edge
173 E->dest. */
174
175void
176flush_pending_stmts (edge e)
177{
178 gphi *phi;
179 edge_var_map *vm;
180 int i;
181 gphi_iterator gsi;
182
183 vec<edge_var_map> *v = redirect_edge_var_map_vector (e);
184 if (!v)
185 return;
186
187 for (gsi = gsi_start_phis (e->dest), i = 0;
188 !gsi_end_p (i: gsi) && v->iterate (ix: i, ptr: &vm);
189 gsi_next (i: &gsi), i++)
190 {
191 tree def;
192
193 phi = gsi.phi ();
194 def = redirect_edge_var_map_def (v: vm);
195 add_phi_arg (phi, def, e, redirect_edge_var_map_location (v: vm));
196 }
197
198 redirect_edge_var_map_clear (e);
199}
200
201/* Replace the LHS of STMT, an assignment, either a GIMPLE_ASSIGN or a
202 GIMPLE_CALL, with NLHS, in preparation for modifying the RHS to an
203 expression with a different value.
204
205 This will update any annotations (say debug bind stmts) referring
206 to the original LHS, so that they use the RHS instead. This is
207 done even if NLHS and LHS are the same, for it is understood that
208 the RHS will be modified afterwards, and NLHS will not be assigned
209 an equivalent value.
210
211 Adjusting any non-annotation uses of the LHS, if needed, is a
212 responsibility of the caller.
213
214 The effect of this call should be pretty much the same as that of
215 inserting a copy of STMT before STMT, and then removing the
216 original stmt, at which time gsi_remove() would have update
217 annotations, but using this function saves all the inserting,
218 copying and removing. */
219
220void
221gimple_replace_ssa_lhs (gimple *stmt, tree nlhs)
222{
223 if (MAY_HAVE_DEBUG_BIND_STMTS)
224 {
225 tree lhs = gimple_get_lhs (stmt);
226
227 gcc_assert (SSA_NAME_DEF_STMT (lhs) == stmt);
228
229 insert_debug_temp_for_var_def (NULL, lhs);
230 }
231
232 gimple_set_lhs (stmt, nlhs);
233}
234
235
236/* Given a tree for an expression for which we might want to emit
237 locations or values in debug information (generally a variable, but
238 we might deal with other kinds of trees in the future), return the
239 tree that should be used as the variable of a DEBUG_BIND STMT or
240 VAR_LOCATION INSN or NOTE. Return NULL if VAR is not to be tracked. */
241
242tree
243target_for_debug_bind (tree var)
244{
245 if (!MAY_HAVE_DEBUG_BIND_STMTS)
246 return NULL_TREE;
247
248 if (TREE_CODE (var) == SSA_NAME)
249 {
250 var = SSA_NAME_VAR (var);
251 if (var == NULL_TREE)
252 return NULL_TREE;
253 }
254
255 if ((!VAR_P (var) || VAR_DECL_IS_VIRTUAL_OPERAND (var))
256 && TREE_CODE (var) != PARM_DECL)
257 return NULL_TREE;
258
259 if (DECL_HAS_VALUE_EXPR_P (var))
260 return target_for_debug_bind (DECL_VALUE_EXPR (var));
261
262 if (DECL_IGNORED_P (var))
263 return NULL_TREE;
264
265 /* var-tracking only tracks registers. */
266 if (!is_gimple_reg_type (TREE_TYPE (var)))
267 return NULL_TREE;
268
269 return var;
270}
271
272/* Called via walk_tree, look for SSA_NAMEs that have already been
273 released. */
274
275tree
276find_released_ssa_name (tree *tp, int *walk_subtrees, void *data_)
277{
278 struct walk_stmt_info *wi = (struct walk_stmt_info *) data_;
279
280 if (wi && wi->is_lhs)
281 return NULL_TREE;
282
283 if (TREE_CODE (*tp) == SSA_NAME)
284 {
285 if (SSA_NAME_IN_FREE_LIST (*tp))
286 return *tp;
287
288 *walk_subtrees = 0;
289 }
290 else if (IS_TYPE_OR_DECL_P (*tp))
291 *walk_subtrees = 0;
292
293 return NULL_TREE;
294}
295
296/* Insert a DEBUG BIND stmt before the DEF of VAR if VAR is referenced
297 by other DEBUG stmts, and replace uses of the DEF with the
298 newly-created debug temp. */
299
300void
301insert_debug_temp_for_var_def (gimple_stmt_iterator *gsi, tree var)
302{
303 imm_use_iterator imm_iter;
304 use_operand_p use_p;
305 gimple *stmt;
306 gimple *def_stmt = NULL;
307 int usecount = 0;
308 tree value = NULL;
309
310 if (!MAY_HAVE_DEBUG_BIND_STMTS)
311 return;
312
313 /* If this name has already been registered for replacement, do nothing
314 as anything that uses this name isn't in SSA form. */
315 if (name_registered_for_update_p (var))
316 return;
317
318 /* Check whether there are debug stmts that reference this variable and,
319 if there are, decide whether we should use a debug temp. */
320 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, var)
321 {
322 stmt = USE_STMT (use_p);
323
324 if (!gimple_debug_bind_p (s: stmt))
325 continue;
326
327 if (usecount++)
328 break;
329
330 if (gimple_debug_bind_get_value (dbg: stmt) != var)
331 {
332 /* Count this as an additional use, so as to make sure we
333 use a temp unless VAR's definition has a SINGLE_RHS that
334 can be shared. */
335 usecount++;
336 break;
337 }
338 }
339
340 if (!usecount)
341 return;
342
343 if (gsi)
344 def_stmt = gsi_stmt (i: *gsi);
345 else
346 def_stmt = SSA_NAME_DEF_STMT (var);
347
348 /* If we didn't get an insertion point, and the stmt has already
349 been removed, we won't be able to insert the debug bind stmt, so
350 we'll have to drop debug information. */
351 if (gimple_code (g: def_stmt) == GIMPLE_PHI)
352 {
353 value = degenerate_phi_result (as_a <gphi *> (p: def_stmt));
354 if (value && walk_tree (&value, find_released_ssa_name, NULL, NULL))
355 value = NULL;
356 /* error_mark_node is what fixup_noreturn_call changes PHI arguments
357 to. */
358 else if (value == error_mark_node)
359 value = NULL;
360 }
361 else if (gimple_clobber_p (s: def_stmt))
362 /* We can end up here when rewriting a decl into SSA and coming
363 along a clobber for the original decl. Turn that into
364 # DEBUG decl => NULL */
365 value = NULL;
366 else if (is_gimple_assign (gs: def_stmt))
367 {
368 bool no_value = false;
369
370 if (!dom_info_available_p (CDI_DOMINATORS))
371 {
372 struct walk_stmt_info wi;
373
374 memset (s: &wi, c: 0, n: sizeof (wi));
375
376 /* When removing blocks without following reverse dominance
377 order, we may sometimes encounter SSA_NAMEs that have
378 already been released, referenced in other SSA_DEFs that
379 we're about to release. Consider:
380
381 <bb X>:
382 v_1 = foo;
383
384 <bb Y>:
385 w_2 = v_1 + bar;
386 # DEBUG w => w_2
387
388 If we deleted BB X first, propagating the value of w_2
389 won't do us any good. It's too late to recover their
390 original definition of v_1: when it was deleted, it was
391 only referenced in other DEFs, it couldn't possibly know
392 it should have been retained, and propagating every
393 single DEF just in case it might have to be propagated
394 into a DEBUG STMT would probably be too wasteful.
395
396 When dominator information is not readily available, we
397 check for and accept some loss of debug information. But
398 if it is available, there's no excuse for us to remove
399 blocks in the wrong order, so we don't even check for
400 dead SSA NAMEs. SSA verification shall catch any
401 errors. */
402 if ((!gsi && !gimple_bb (g: def_stmt))
403 || walk_gimple_op (def_stmt, find_released_ssa_name, &wi))
404 no_value = true;
405 }
406
407 if (!no_value)
408 value = gimple_assign_rhs_to_tree (def_stmt);
409 }
410
411 if (value)
412 {
413 /* If there's a single use of VAR, and VAR is the entire debug
414 expression (usecount would have been incremented again
415 otherwise), then we can propagate VALUE into this single use,
416 avoiding the temp.
417
418 We can also avoid using a temp if VALUE can be shared and
419 propagated into all uses, without generating expressions that
420 wouldn't be valid gimple RHSs.
421
422 Other cases that would require unsharing or non-gimple RHSs
423 are deferred to a debug temp, although we could avoid temps
424 at the expense of duplication of expressions. */
425
426 if (usecount == 1
427 || gimple_code (g: def_stmt) == GIMPLE_PHI
428 || CONSTANT_CLASS_P (value)
429 || is_gimple_reg (value))
430 ;
431 else
432 {
433 gdebug *def_temp;
434 tree vexpr = build_debug_expr_decl (TREE_TYPE (value));
435
436 def_temp = gimple_build_debug_bind (vexpr,
437 unshare_expr (value),
438 def_stmt);
439
440 /* FIXME: Is setting the mode really necessary? */
441 if (DECL_P (value))
442 SET_DECL_MODE (vexpr, DECL_MODE (value));
443 else
444 SET_DECL_MODE (vexpr, TYPE_MODE (TREE_TYPE (value)));
445
446 if (gsi)
447 gsi_insert_before (gsi, def_temp, GSI_SAME_STMT);
448 else
449 {
450 gimple_stmt_iterator ngsi = gsi_for_stmt (def_stmt);
451 gsi_insert_before (&ngsi, def_temp, GSI_SAME_STMT);
452 }
453
454 value = vexpr;
455 }
456 }
457
458 FOR_EACH_IMM_USE_STMT (stmt, imm_iter, var)
459 {
460 if (!gimple_debug_bind_p (s: stmt))
461 continue;
462
463 if (value)
464 {
465 FOR_EACH_IMM_USE_ON_STMT (use_p, imm_iter)
466 SET_USE (use_p, unshare_expr (value));
467 /* If we didn't replace uses with a debug decl fold the
468 resulting expression. Otherwise we end up with invalid IL. */
469 if (TREE_CODE (value) != DEBUG_EXPR_DECL)
470 {
471 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
472 fold_stmt_inplace (&gsi);
473 }
474 }
475 else
476 gimple_debug_bind_reset_value (dbg: stmt);
477
478 update_stmt (s: stmt);
479 }
480}
481
482
483/* Insert a DEBUG BIND stmt before STMT for each DEF referenced by
484 other DEBUG stmts, and replace uses of the DEF with the
485 newly-created debug temp. */
486
487void
488insert_debug_temps_for_defs (gimple_stmt_iterator *gsi)
489{
490 gimple *stmt;
491 ssa_op_iter op_iter;
492 def_operand_p def_p;
493
494 if (!MAY_HAVE_DEBUG_BIND_STMTS)
495 return;
496
497 stmt = gsi_stmt (i: *gsi);
498
499 FOR_EACH_PHI_OR_STMT_DEF (def_p, stmt, op_iter, SSA_OP_DEF)
500 {
501 tree var = DEF_FROM_PTR (def_p);
502
503 if (TREE_CODE (var) != SSA_NAME)
504 continue;
505
506 insert_debug_temp_for_var_def (gsi, var);
507 }
508}
509
510/* Reset all debug stmts that use SSA_NAME(s) defined in STMT. */
511
512void
513reset_debug_uses (gimple *stmt)
514{
515 ssa_op_iter op_iter;
516 def_operand_p def_p;
517 imm_use_iterator imm_iter;
518 gimple *use_stmt;
519
520 if (!MAY_HAVE_DEBUG_BIND_STMTS)
521 return;
522
523 FOR_EACH_PHI_OR_STMT_DEF (def_p, stmt, op_iter, SSA_OP_DEF)
524 {
525 tree var = DEF_FROM_PTR (def_p);
526
527 if (TREE_CODE (var) != SSA_NAME)
528 continue;
529
530 FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, var)
531 {
532 if (!gimple_debug_bind_p (s: use_stmt))
533 continue;
534
535 gimple_debug_bind_reset_value (dbg: use_stmt);
536 update_stmt (s: use_stmt);
537 }
538 }
539}
540
541/* Delete SSA DEFs for SSA versions in the TOREMOVE bitmap, removing
542 dominated stmts before their dominators, so that release_ssa_defs
543 stands a chance of propagating DEFs into debug bind stmts. */
544
545void
546release_defs_bitset (bitmap toremove)
547{
548 unsigned j;
549 bitmap_iterator bi;
550
551 /* Performing a topological sort is probably overkill, this will
552 most likely run in slightly superlinear time, rather than the
553 pathological quadratic worst case.
554 But iterate from max SSA name version to min one because
555 that mimics allocation order during code generation behavior best.
556 Use an array for this which we compact on-the-fly with a NULL
557 marker moving towards the end of the vector. */
558 auto_vec<tree, 16> names;
559 names.reserve (nelems: bitmap_count_bits (toremove) + 1);
560 names.quick_push (NULL_TREE);
561 EXECUTE_IF_SET_IN_BITMAP (toremove, 0, j, bi)
562 names.quick_push (ssa_name (j));
563
564 bitmap_tree_view (toremove);
565 while (!bitmap_empty_p (map: toremove))
566 {
567 j = names.length () - 1;
568 for (unsigned i = names.length () - 1; names[i];)
569 {
570 bool remove_now = true;
571 tree var = names[i];
572 gimple *stmt;
573 imm_use_iterator uit;
574
575 FOR_EACH_IMM_USE_STMT (stmt, uit, var)
576 {
577 ssa_op_iter dit;
578 def_operand_p def_p;
579
580 /* We can't propagate PHI nodes into debug stmts. */
581 if (gimple_code (g: stmt) == GIMPLE_PHI
582 || is_gimple_debug (gs: stmt))
583 continue;
584
585 /* If we find another definition to remove that uses
586 the one we're looking at, defer the removal of this
587 one, so that it can be propagated into debug stmts
588 after the other is. */
589 FOR_EACH_SSA_DEF_OPERAND (def_p, stmt, dit, SSA_OP_DEF)
590 {
591 tree odef = DEF_FROM_PTR (def_p);
592
593 if (bitmap_bit_p (toremove, SSA_NAME_VERSION (odef)))
594 {
595 remove_now = false;
596 break;
597 }
598 }
599
600 if (!remove_now)
601 break;
602 }
603
604 if (remove_now)
605 {
606 gimple *def = SSA_NAME_DEF_STMT (var);
607 gimple_stmt_iterator gsi = gsi_for_stmt (def);
608
609 if (gimple_code (g: def) == GIMPLE_PHI)
610 remove_phi_node (&gsi, true);
611 else
612 {
613 gsi_remove (&gsi, true);
614 release_defs (def);
615 }
616 bitmap_clear_bit (toremove, SSA_NAME_VERSION (var));
617 }
618 else
619 --i;
620 if (--j != i)
621 names[i] = names[j];
622 }
623 }
624 bitmap_list_view (toremove);
625}
626
627/* Disable warnings about missing quoting in GCC diagnostics for
628 the verification errors. Their format strings don't follow GCC
629 diagnostic conventions and the calls are ultimately followed by
630 one to internal_error. */
631#if __GNUC__ >= 10
632# pragma GCC diagnostic push
633# pragma GCC diagnostic ignored "-Wformat-diag"
634#endif
635
636/* Verify virtual SSA form. */
637
638bool
639verify_vssa (basic_block bb, tree current_vdef, sbitmap visited)
640{
641 bool err = false;
642
643 if (!bitmap_set_bit (map: visited, bitno: bb->index))
644 return false;
645
646 /* Pick up the single virtual PHI def. */
647 gphi *phi = NULL;
648 for (gphi_iterator si = gsi_start_phis (bb); !gsi_end_p (i: si);
649 gsi_next (i: &si))
650 {
651 tree res = gimple_phi_result (gs: si.phi ());
652 if (virtual_operand_p (op: res))
653 {
654 if (phi)
655 {
656 error ("multiple virtual PHI nodes in BB %d", bb->index);
657 print_gimple_stmt (stderr, phi, 0);
658 print_gimple_stmt (stderr, si.phi (), 0);
659 err = true;
660 }
661 else
662 phi = si.phi ();
663 }
664 }
665 if (phi)
666 {
667 current_vdef = gimple_phi_result (gs: phi);
668 if (TREE_CODE (current_vdef) != SSA_NAME)
669 {
670 error ("virtual definition is not an SSA name");
671 print_gimple_stmt (stderr, phi, 0);
672 err = true;
673 }
674 }
675
676 /* Verify stmts. */
677 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (i: gsi);
678 gsi_next (i: &gsi))
679 {
680 gimple *stmt = gsi_stmt (i: gsi);
681 tree vuse = gimple_vuse (g: stmt);
682 if (vuse)
683 {
684 if (vuse != current_vdef)
685 {
686 error ("stmt with wrong VUSE");
687 print_gimple_stmt (stderr, stmt, 0, TDF_VOPS);
688 fprintf (stderr, format: "expected ");
689 print_generic_expr (stderr, current_vdef);
690 fprintf (stderr, format: "\n");
691 err = true;
692 }
693 tree vdef = gimple_vdef (g: stmt);
694 if (vdef)
695 {
696 current_vdef = vdef;
697 if (TREE_CODE (current_vdef) != SSA_NAME)
698 {
699 error ("virtual definition is not an SSA name");
700 print_gimple_stmt (stderr, phi, 0);
701 err = true;
702 }
703 }
704 }
705 }
706
707 /* Verify destination PHI uses and recurse. */
708 edge_iterator ei;
709 edge e;
710 FOR_EACH_EDGE (e, ei, bb->succs)
711 {
712 gphi *phi = get_virtual_phi (e->dest);
713 if (phi
714 && PHI_ARG_DEF_FROM_EDGE (phi, e) != current_vdef)
715 {
716 error ("PHI node with wrong VUSE on edge from BB %d",
717 e->src->index);
718 print_gimple_stmt (stderr, phi, 0, TDF_VOPS);
719 fprintf (stderr, format: "expected ");
720 print_generic_expr (stderr, current_vdef);
721 fprintf (stderr, format: "\n");
722 err = true;
723 }
724
725 /* Recurse. */
726 err |= verify_vssa (bb: e->dest, current_vdef, visited);
727 }
728
729 return err;
730}
731
732/* Return true if SSA_NAME is malformed and mark it visited.
733
734 IS_VIRTUAL is true if this SSA_NAME was found inside a virtual
735 operand. */
736
737static bool
738verify_ssa_name (tree ssa_name, bool is_virtual)
739{
740 if (TREE_CODE (ssa_name) != SSA_NAME)
741 {
742 error ("expected an SSA_NAME object");
743 return true;
744 }
745
746 if (SSA_NAME_IN_FREE_LIST (ssa_name))
747 {
748 error ("found an SSA_NAME that had been released into the free pool");
749 return true;
750 }
751
752 if (SSA_NAME_VAR (ssa_name) != NULL_TREE
753 && TREE_TYPE (ssa_name) != TREE_TYPE (SSA_NAME_VAR (ssa_name)))
754 {
755 error ("type mismatch between an SSA_NAME and its symbol");
756 return true;
757 }
758
759 if (is_virtual && !virtual_operand_p (op: ssa_name))
760 {
761 error ("found a virtual definition for a GIMPLE register");
762 return true;
763 }
764
765 if (is_virtual && SSA_NAME_VAR (ssa_name) != gimple_vop (cfun))
766 {
767 error ("virtual SSA name for non-VOP decl");
768 return true;
769 }
770
771 if (!is_virtual && virtual_operand_p (op: ssa_name))
772 {
773 error ("found a real definition for a non-register");
774 return true;
775 }
776
777 if (SSA_NAME_IS_DEFAULT_DEF (ssa_name)
778 && !gimple_nop_p (SSA_NAME_DEF_STMT (ssa_name)))
779 {
780 error ("found a default name with a non-empty defining statement");
781 return true;
782 }
783
784 return false;
785}
786
787
788/* Return true if the definition of SSA_NAME at block BB is malformed.
789
790 STMT is the statement where SSA_NAME is created.
791
792 DEFINITION_BLOCK is an array of basic blocks indexed by SSA_NAME
793 version numbers. If DEFINITION_BLOCK[SSA_NAME_VERSION] is set,
794 it means that the block in that array slot contains the
795 definition of SSA_NAME.
796
797 IS_VIRTUAL is true if SSA_NAME is created by a VDEF. */
798
799static bool
800verify_def (basic_block bb, basic_block *definition_block, tree ssa_name,
801 gimple *stmt, bool is_virtual)
802{
803 if (verify_ssa_name (ssa_name, is_virtual))
804 goto err;
805
806 if (SSA_NAME_VAR (ssa_name)
807 && TREE_CODE (SSA_NAME_VAR (ssa_name)) == RESULT_DECL
808 && DECL_BY_REFERENCE (SSA_NAME_VAR (ssa_name)))
809 {
810 error ("RESULT_DECL should be read only when DECL_BY_REFERENCE is set");
811 goto err;
812 }
813
814 if (definition_block[SSA_NAME_VERSION (ssa_name)])
815 {
816 error ("SSA_NAME created in two different blocks %i and %i",
817 definition_block[SSA_NAME_VERSION (ssa_name)]->index, bb->index);
818 goto err;
819 }
820
821 definition_block[SSA_NAME_VERSION (ssa_name)] = bb;
822
823 if (SSA_NAME_DEF_STMT (ssa_name) != stmt)
824 {
825 error ("SSA_NAME_DEF_STMT is wrong");
826 fprintf (stderr, format: "Expected definition statement:\n");
827 print_gimple_stmt (stderr, SSA_NAME_DEF_STMT (ssa_name), 4, TDF_VOPS);
828 fprintf (stderr, format: "\nActual definition statement:\n");
829 print_gimple_stmt (stderr, stmt, 4, TDF_VOPS);
830 goto err;
831 }
832
833 return false;
834
835err:
836 fprintf (stderr, format: "while verifying SSA_NAME ");
837 print_generic_expr (stderr, ssa_name);
838 fprintf (stderr, format: " in statement\n");
839 print_gimple_stmt (stderr, stmt, 4, TDF_VOPS);
840
841 return true;
842}
843
844
845/* Return true if the use of SSA_NAME at statement STMT in block BB is
846 malformed.
847
848 DEF_BB is the block where SSA_NAME was found to be created.
849
850 IDOM contains immediate dominator information for the flowgraph.
851
852 CHECK_ABNORMAL is true if the caller wants to check whether this use
853 is flowing through an abnormal edge (only used when checking PHI
854 arguments).
855
856 If NAMES_DEFINED_IN_BB is not NULL, it contains a bitmap of ssa names
857 that are defined before STMT in basic block BB. */
858
859static bool
860verify_use (basic_block bb, basic_block def_bb, use_operand_p use_p,
861 gimple *stmt, bool check_abnormal, bitmap names_defined_in_bb)
862{
863 bool err = false;
864 tree ssa_name = USE_FROM_PTR (use_p);
865
866 if (!TREE_VISITED (ssa_name))
867 if (verify_imm_links (stderr, var: ssa_name))
868 err = true;
869
870 TREE_VISITED (ssa_name) = 1;
871
872 if (gimple_nop_p (SSA_NAME_DEF_STMT (ssa_name))
873 && SSA_NAME_IS_DEFAULT_DEF (ssa_name))
874 ; /* Default definitions have empty statements. Nothing to do. */
875 else if (!def_bb)
876 {
877 error ("missing definition");
878 err = true;
879 }
880 else if (bb != def_bb
881 && !dominated_by_p (CDI_DOMINATORS, bb, def_bb))
882 {
883 error ("definition in block %i does not dominate use in block %i",
884 def_bb->index, bb->index);
885 err = true;
886 }
887 else if (bb == def_bb
888 && names_defined_in_bb != NULL
889 && !bitmap_bit_p (names_defined_in_bb, SSA_NAME_VERSION (ssa_name)))
890 {
891 error ("definition in block %i follows the use", def_bb->index);
892 err = true;
893 }
894
895 if (check_abnormal
896 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ssa_name))
897 {
898 error ("SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set");
899 err = true;
900 }
901
902 /* Make sure the use is in an appropriate list by checking the previous
903 element to make sure it's the same. */
904 if (use_p->prev == NULL)
905 {
906 error ("no immediate_use list");
907 err = true;
908 }
909 else
910 {
911 tree listvar;
912 if (use_p->prev->use == NULL)
913 listvar = use_p->prev->loc.ssa_name;
914 else
915 listvar = USE_FROM_PTR (use_p->prev);
916 if (listvar != ssa_name)
917 {
918 error ("wrong immediate use list");
919 err = true;
920 }
921 }
922
923 if (err)
924 {
925 fprintf (stderr, format: "for SSA_NAME: ");
926 print_generic_expr (stderr, ssa_name, TDF_VOPS);
927 fprintf (stderr, format: " in statement:\n");
928 print_gimple_stmt (stderr, stmt, 0, TDF_VOPS);
929 }
930
931 return err;
932}
933
934
935/* Return true if any of the arguments for PHI node PHI at block BB is
936 malformed.
937
938 DEFINITION_BLOCK is an array of basic blocks indexed by SSA_NAME
939 version numbers. If DEFINITION_BLOCK[SSA_NAME_VERSION] is set,
940 it means that the block in that array slot contains the
941 definition of SSA_NAME. */
942
943static bool
944verify_phi_args (gphi *phi, basic_block bb, basic_block *definition_block)
945{
946 edge e;
947 bool err = false;
948 size_t i, phi_num_args = gimple_phi_num_args (gs: phi);
949
950 if (EDGE_COUNT (bb->preds) != phi_num_args)
951 {
952 error ("incoming edge count does not match number of PHI arguments");
953 err = true;
954 goto error;
955 }
956
957 for (i = 0; i < phi_num_args; i++)
958 {
959 use_operand_p op_p = gimple_phi_arg_imm_use_ptr (gs: phi, i);
960 tree op = USE_FROM_PTR (op_p);
961
962 e = EDGE_PRED (bb, i);
963
964 if (op == NULL_TREE)
965 {
966 error ("PHI argument is missing for edge %d->%d",
967 e->src->index,
968 e->dest->index);
969 err = true;
970 goto error;
971 }
972
973 if (TREE_CODE (op) != SSA_NAME && !is_gimple_min_invariant (op))
974 {
975 error ("PHI argument is not SSA_NAME, or invariant");
976 err = true;
977 }
978
979 if ((e->flags & EDGE_ABNORMAL) && TREE_CODE (op) != SSA_NAME)
980 {
981 error ("PHI argument on abnormal edge is not SSA_NAME");
982 err = true;
983 }
984
985 if (TREE_CODE (op) == SSA_NAME)
986 {
987 err = verify_ssa_name (ssa_name: op, is_virtual: virtual_operand_p (op: gimple_phi_result (gs: phi)));
988 err |= verify_use (bb: e->src, def_bb: definition_block[SSA_NAME_VERSION (op)],
989 use_p: op_p, stmt: phi, check_abnormal: e->flags & EDGE_ABNORMAL, NULL);
990 }
991
992 if (TREE_CODE (op) == ADDR_EXPR)
993 {
994 tree base = TREE_OPERAND (op, 0);
995 while (handled_component_p (t: base))
996 base = TREE_OPERAND (base, 0);
997 if ((VAR_P (base)
998 || TREE_CODE (base) == PARM_DECL
999 || TREE_CODE (base) == RESULT_DECL)
1000 && !TREE_ADDRESSABLE (base))
1001 {
1002 error ("address taken, but ADDRESSABLE bit not set");
1003 err = true;
1004 }
1005 }
1006
1007 if (e->dest != bb)
1008 {
1009 error ("wrong edge %d->%d for PHI argument",
1010 e->src->index, e->dest->index);
1011 err = true;
1012 }
1013
1014 if (err)
1015 {
1016 fprintf (stderr, format: "PHI argument\n");
1017 print_generic_stmt (stderr, op, TDF_VOPS);
1018 goto error;
1019 }
1020 }
1021
1022error:
1023 if (err)
1024 {
1025 fprintf (stderr, format: "for PHI node\n");
1026 print_gimple_stmt (stderr, phi, 0, TDF_VOPS|TDF_MEMSYMS);
1027 }
1028
1029
1030 return err;
1031}
1032
1033
1034/* Verify common invariants in the SSA web.
1035 TODO: verify the variable annotations. */
1036
1037DEBUG_FUNCTION void
1038verify_ssa (bool check_modified_stmt, bool check_ssa_operands)
1039{
1040 basic_block bb;
1041 basic_block *definition_block = XCNEWVEC (basic_block, num_ssa_names);
1042 ssa_op_iter iter;
1043 tree op;
1044 enum dom_state orig_dom_state = dom_info_state (CDI_DOMINATORS);
1045 auto_bitmap names_defined_in_bb;
1046
1047 gcc_assert (!need_ssa_update_p (cfun));
1048
1049 timevar_push (tv: TV_TREE_SSA_VERIFY);
1050
1051 {
1052 /* Keep track of SSA names present in the IL. */
1053 size_t i;
1054 tree name;
1055 hash_map <void *, tree> ssa_info;
1056
1057 FOR_EACH_SSA_NAME (i, name, cfun)
1058 {
1059 gimple *stmt;
1060 TREE_VISITED (name) = 0;
1061
1062 verify_ssa_name (ssa_name: name, is_virtual: virtual_operand_p (op: name));
1063
1064 stmt = SSA_NAME_DEF_STMT (name);
1065 if (!gimple_nop_p (g: stmt))
1066 {
1067 basic_block bb = gimple_bb (g: stmt);
1068 if (verify_def (bb, definition_block,
1069 ssa_name: name, stmt, is_virtual: virtual_operand_p (op: name)))
1070 goto err;
1071 }
1072
1073 void *info = NULL;
1074 if (POINTER_TYPE_P (TREE_TYPE (name)))
1075 info = SSA_NAME_PTR_INFO (name);
1076 else if (INTEGRAL_TYPE_P (TREE_TYPE (name)))
1077 info = SSA_NAME_RANGE_INFO (name);
1078 if (info)
1079 {
1080 bool existed;
1081 tree &val = ssa_info.get_or_insert (k: info, existed: &existed);
1082 if (existed)
1083 {
1084 error ("shared SSA name info");
1085 print_generic_expr (stderr, val);
1086 fprintf (stderr, format: " and ");
1087 print_generic_expr (stderr, name);
1088 fprintf (stderr, format: "\n");
1089 goto err;
1090 }
1091 else
1092 val = name;
1093 }
1094 }
1095 }
1096
1097 calculate_dominance_info (CDI_DOMINATORS);
1098
1099 /* Now verify all the uses and make sure they agree with the definitions
1100 found in the previous pass. */
1101 FOR_EACH_BB_FN (bb, cfun)
1102 {
1103 edge e;
1104 edge_iterator ei;
1105
1106 /* Make sure that all edges have a clear 'aux' field. */
1107 FOR_EACH_EDGE (e, ei, bb->preds)
1108 {
1109 if (e->aux)
1110 {
1111 error ("AUX pointer initialized for edge %d->%d", e->src->index,
1112 e->dest->index);
1113 goto err;
1114 }
1115 }
1116
1117 /* Verify the arguments for every PHI node in the block. */
1118 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (i: gsi); gsi_next (i: &gsi))
1119 {
1120 gphi *phi = gsi.phi ();
1121 if (verify_phi_args (phi, bb, definition_block))
1122 goto err;
1123
1124 bitmap_set_bit (names_defined_in_bb,
1125 SSA_NAME_VERSION (gimple_phi_result (phi)));
1126 }
1127
1128 /* Now verify all the uses and vuses in every statement of the block. */
1129 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (i: gsi);
1130 gsi_next (i: &gsi))
1131 {
1132 gimple *stmt = gsi_stmt (i: gsi);
1133 use_operand_p use_p;
1134
1135 if (check_modified_stmt && gimple_modified_p (g: stmt))
1136 {
1137 error ("stmt (%p) marked modified after optimization pass: ",
1138 (void *)stmt);
1139 print_gimple_stmt (stderr, stmt, 0, TDF_VOPS);
1140 goto err;
1141 }
1142
1143 if (check_ssa_operands && verify_ssa_operands (cfun, stmt))
1144 {
1145 print_gimple_stmt (stderr, stmt, 0, TDF_VOPS);
1146 goto err;
1147 }
1148
1149 if (gimple_debug_bind_p (s: stmt)
1150 && !gimple_debug_bind_has_value_p (dbg: stmt))
1151 continue;
1152
1153 FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_USE|SSA_OP_VUSE)
1154 {
1155 op = USE_FROM_PTR (use_p);
1156 if (verify_use (bb, def_bb: definition_block[SSA_NAME_VERSION (op)],
1157 use_p, stmt, check_abnormal: false, names_defined_in_bb))
1158 goto err;
1159 }
1160
1161 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_ALL_DEFS)
1162 {
1163 if (SSA_NAME_DEF_STMT (op) != stmt)
1164 {
1165 error ("SSA_NAME_DEF_STMT is wrong");
1166 fprintf (stderr, format: "Expected definition statement:\n");
1167 print_gimple_stmt (stderr, stmt, 4, TDF_VOPS);
1168 fprintf (stderr, format: "\nActual definition statement:\n");
1169 print_gimple_stmt (stderr, SSA_NAME_DEF_STMT (op),
1170 4, TDF_VOPS);
1171 goto err;
1172 }
1173 bitmap_set_bit (names_defined_in_bb, SSA_NAME_VERSION (op));
1174 }
1175 }
1176
1177 bitmap_clear (names_defined_in_bb);
1178 }
1179
1180 free (ptr: definition_block);
1181
1182 if (gimple_vop (cfun)
1183 && ssa_default_def (cfun, gimple_vop (cfun)))
1184 {
1185 auto_sbitmap visited (last_basic_block_for_fn (cfun) + 1);
1186 bitmap_clear (visited);
1187 if (verify_vssa (ENTRY_BLOCK_PTR_FOR_FN (cfun),
1188 current_vdef: ssa_default_def (cfun, gimple_vop (cfun)), visited))
1189 goto err;
1190 }
1191
1192 /* Restore the dominance information to its prior known state, so
1193 that we do not perturb the compiler's subsequent behavior. */
1194 if (orig_dom_state == DOM_NONE)
1195 free_dominance_info (CDI_DOMINATORS);
1196 else
1197 set_dom_info_availability (CDI_DOMINATORS, orig_dom_state);
1198
1199 timevar_pop (tv: TV_TREE_SSA_VERIFY);
1200 return;
1201
1202err:
1203 internal_error ("verify_ssa failed");
1204}
1205
1206#if __GNUC__ >= 10
1207# pragma GCC diagnostic pop
1208#endif
1209
1210/* Initialize global DFA and SSA structures.
1211 If SIZE is non-zero allocated ssa names array of a given size. */
1212
1213void
1214init_tree_ssa (struct function *fn, int size)
1215{
1216 fn->gimple_df = ggc_cleared_alloc<gimple_df> ();
1217 fn->gimple_df->default_defs = hash_table<ssa_name_hasher>::create_ggc (n: 20);
1218 pt_solution_reset (&fn->gimple_df->escaped);
1219 init_ssanames (fn, size);
1220}
1221
1222/* Deallocate memory associated with SSA data structures for FNDECL. */
1223
1224void
1225delete_tree_ssa (struct function *fn)
1226{
1227 fini_ssanames (fn);
1228
1229 /* We no longer maintain the SSA operand cache at this point. */
1230 if (ssa_operands_active (fn))
1231 fini_ssa_operands (fn);
1232
1233 fn->gimple_df->default_defs->empty ();
1234 fn->gimple_df->default_defs = NULL;
1235 pt_solution_reset (&fn->gimple_df->escaped);
1236 if (fn->gimple_df->decls_to_pointers != NULL)
1237 delete fn->gimple_df->decls_to_pointers;
1238 fn->gimple_df->decls_to_pointers = NULL;
1239 fn->gimple_df = NULL;
1240
1241 /* We no longer need the edge variable maps. */
1242 redirect_edge_var_map_empty ();
1243}
1244
1245/* Return true if EXPR is a useless type conversion, otherwise return
1246 false. */
1247
1248bool
1249tree_ssa_useless_type_conversion (tree expr)
1250{
1251 tree outer_type, inner_type;
1252
1253 /* If we have an assignment that merely uses a NOP_EXPR to change
1254 the top of the RHS to the type of the LHS and the type conversion
1255 is "safe", then strip away the type conversion so that we can
1256 enter LHS = RHS into the const_and_copies table. */
1257 if (!CONVERT_EXPR_P (expr)
1258 && TREE_CODE (expr) != VIEW_CONVERT_EXPR
1259 && TREE_CODE (expr) != NON_LVALUE_EXPR)
1260 return false;
1261
1262 outer_type = TREE_TYPE (expr);
1263 inner_type = TREE_TYPE (TREE_OPERAND (expr, 0));
1264
1265 if (inner_type == error_mark_node)
1266 return false;
1267
1268 return useless_type_conversion_p (outer_type, inner_type);
1269}
1270
1271/* Strip conversions from EXP according to
1272 tree_ssa_useless_type_conversion and return the resulting
1273 expression. */
1274
1275tree
1276tree_ssa_strip_useless_type_conversions (tree exp)
1277{
1278 while (tree_ssa_useless_type_conversion (expr: exp))
1279 exp = TREE_OPERAND (exp, 0);
1280 return exp;
1281}
1282
1283/* Return true if T, as SSA_NAME, has an implicit default defined value. */
1284
1285bool
1286ssa_defined_default_def_p (tree t)
1287{
1288 tree var = SSA_NAME_VAR (t);
1289
1290 if (!var)
1291 ;
1292 /* Parameters get their initial value from the function entry. */
1293 else if (TREE_CODE (var) == PARM_DECL)
1294 return true;
1295 /* When returning by reference the return address is actually a hidden
1296 parameter. */
1297 else if (TREE_CODE (var) == RESULT_DECL && DECL_BY_REFERENCE (var))
1298 return true;
1299 /* Hard register variables get their initial value from the ether. */
1300 else if (VAR_P (var) && DECL_HARD_REGISTER (var))
1301 return true;
1302
1303 return false;
1304}
1305
1306
1307/* Return true if T, an SSA_NAME, has an undefined value. PARTIAL is what
1308 should be returned if the value is only partially undefined. */
1309
1310bool
1311ssa_undefined_value_p (tree t, bool partial)
1312{
1313 gimple *def_stmt;
1314
1315 gcc_checking_assert (!virtual_operand_p (t));
1316
1317 if (ssa_defined_default_def_p (t))
1318 return false;
1319
1320 /* The value is undefined iff its definition statement is empty. */
1321 def_stmt = SSA_NAME_DEF_STMT (t);
1322 if (gimple_nop_p (g: def_stmt))
1323 return true;
1324
1325 /* The value is undefined if the definition statement is a call
1326 to .DEFERRED_INIT function. */
1327 if (gimple_call_internal_p (gs: def_stmt, fn: IFN_DEFERRED_INIT))
1328 return true;
1329
1330 /* The value is partially undefined if the definition statement is
1331 a REALPART_EXPR or IMAGPART_EXPR and its operand is defined by
1332 the call to .DEFERRED_INIT function. This is for handling the
1333 following case:
1334
1335 1 typedef _Complex float C;
1336 2 C foo (int cond)
1337 3 {
1338 4 C f;
1339 5 __imag__ f = 0;
1340 6 if (cond)
1341 7 {
1342 8 __real__ f = 1;
1343 9 return f;
1344 10 }
1345 11 return f;
1346 12 }
1347
1348 with -ftrivial-auto-var-init, compiler will insert the following
1349 artificial initialization:
1350 f = .DEFERRED_INIT (f, 2);
1351 _1 = REALPART_EXPR <f>;
1352
1353 we should treat the definition _1 = REALPART_EXPR <f> as undefined. */
1354 if (partial && is_gimple_assign (gs: def_stmt)
1355 && (gimple_assign_rhs_code (gs: def_stmt) == REALPART_EXPR
1356 || gimple_assign_rhs_code (gs: def_stmt) == IMAGPART_EXPR))
1357 {
1358 tree real_imag_part = TREE_OPERAND (gimple_assign_rhs1 (def_stmt), 0);
1359 if (TREE_CODE (real_imag_part) == SSA_NAME
1360 && gimple_call_internal_p (SSA_NAME_DEF_STMT (real_imag_part),
1361 fn: IFN_DEFERRED_INIT))
1362 return true;
1363 }
1364
1365 /* Check if the complex was not only partially defined. */
1366 if (partial && is_gimple_assign (gs: def_stmt)
1367 && gimple_assign_rhs_code (gs: def_stmt) == COMPLEX_EXPR)
1368 {
1369 tree rhs1, rhs2;
1370
1371 rhs1 = gimple_assign_rhs1 (gs: def_stmt);
1372 rhs2 = gimple_assign_rhs2 (gs: def_stmt);
1373 return (TREE_CODE (rhs1) == SSA_NAME && ssa_undefined_value_p (t: rhs1))
1374 || (TREE_CODE (rhs2) == SSA_NAME && ssa_undefined_value_p (t: rhs2));
1375 }
1376 return false;
1377}
1378
1379
1380/* Return TRUE iff there are any non-PHI uses of VAR that dominate the
1381 end of BB. If we return TRUE and BB is a loop header, then VAR we
1382 be assumed to be defined within the loop, even if it is marked as
1383 maybe-undefined. */
1384
1385bool
1386ssa_name_any_use_dominates_bb_p (tree var, basic_block bb)
1387{
1388 imm_use_iterator iter;
1389 use_operand_p use_p;
1390 FOR_EACH_IMM_USE_FAST (use_p, iter, var)
1391 {
1392 if (is_a <gphi *> (USE_STMT (use_p))
1393 || is_gimple_debug (USE_STMT (use_p)))
1394 continue;
1395 basic_block dombb = gimple_bb (USE_STMT (use_p));
1396 if (dominated_by_p (CDI_DOMINATORS, bb, dombb))
1397 return true;
1398 }
1399
1400 return false;
1401}
1402
1403/* Mark as maybe_undef any SSA_NAMEs that are unsuitable as ivopts
1404 candidates for potentially involving undefined behavior. */
1405
1406void
1407mark_ssa_maybe_undefs (void)
1408{
1409 auto_vec<tree> queue;
1410
1411 /* Scan all SSA_NAMEs, marking the definitely-undefined ones as
1412 maybe-undefined and queuing them for propagation, while clearing
1413 the mark on others. */
1414 unsigned int i;
1415 tree var;
1416 FOR_EACH_SSA_NAME (i, var, cfun)
1417 {
1418 if (SSA_NAME_IS_VIRTUAL_OPERAND (var)
1419 || !ssa_undefined_value_p (t: var, partial: false))
1420 ssa_name_set_maybe_undef (var, value: false);
1421 else
1422 {
1423 ssa_name_set_maybe_undef (var);
1424 queue.safe_push (obj: var);
1425 if (dump_file && (dump_flags & TDF_DETAILS))
1426 fprintf (stream: dump_file, format: "marking _%i as maybe-undef\n",
1427 SSA_NAME_VERSION (var));
1428 }
1429 }
1430
1431 /* Now propagate maybe-undefined from a DEF to any other PHI that
1432 uses it, as long as there isn't any intervening use of DEF. */
1433 while (!queue.is_empty ())
1434 {
1435 var = queue.pop ();
1436 imm_use_iterator iter;
1437 use_operand_p use_p;
1438 FOR_EACH_IMM_USE_FAST (use_p, iter, var)
1439 {
1440 /* Any uses of VAR that aren't PHI args imply VAR must be
1441 defined, otherwise undefined behavior would have been
1442 definitely invoked. Only PHI args may hold
1443 maybe-undefined values without invoking undefined
1444 behavior for that reason alone. */
1445 if (!is_a <gphi *> (USE_STMT (use_p)))
1446 continue;
1447 gphi *phi = as_a <gphi *> (USE_STMT (use_p));
1448
1449 tree def = gimple_phi_result (gs: phi);
1450 if (ssa_name_maybe_undef_p (var: def))
1451 continue;
1452
1453 /* Look for any uses of the maybe-unused SSA_NAME that
1454 dominates the block that reaches the incoming block
1455 corresponding to the PHI arg in which it is mentioned.
1456 That means we can assume the SSA_NAME is defined in that
1457 path, so we only mark a PHI result as maybe-undef if we
1458 find an unused reaching SSA_NAME. */
1459 int idx = phi_arg_index_from_use (use: use_p);
1460 basic_block bb = gimple_phi_arg_edge (phi, i: idx)->src;
1461 if (ssa_name_any_use_dominates_bb_p (var, bb))
1462 continue;
1463
1464 ssa_name_set_maybe_undef (var: def);
1465 queue.safe_push (obj: def);
1466 if (dump_file && (dump_flags & TDF_DETAILS))
1467 fprintf (stream: dump_file, format: "marking _%i as maybe-undef because of _%i\n",
1468 SSA_NAME_VERSION (def), SSA_NAME_VERSION (var));
1469 }
1470 }
1471}
1472
1473
1474/* If necessary, rewrite the base of the reference tree *TP from
1475 a MEM_REF to a plain or converted symbol. */
1476
1477static void
1478maybe_rewrite_mem_ref_base (tree *tp, bitmap suitable_for_renaming)
1479{
1480 tree sym;
1481
1482 while (handled_component_p (t: *tp))
1483 tp = &TREE_OPERAND (*tp, 0);
1484 if (TREE_CODE (*tp) == MEM_REF
1485 && TREE_CODE (TREE_OPERAND (*tp, 0)) == ADDR_EXPR
1486 && (sym = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0))
1487 && DECL_P (sym)
1488 && !TREE_ADDRESSABLE (sym)
1489 && bitmap_bit_p (suitable_for_renaming, DECL_UID (sym))
1490 && is_gimple_reg_type (TREE_TYPE (*tp))
1491 && ! VOID_TYPE_P (TREE_TYPE (*tp)))
1492 {
1493 if (VECTOR_TYPE_P (TREE_TYPE (sym))
1494 && useless_type_conversion_p (TREE_TYPE (*tp),
1495 TREE_TYPE (TREE_TYPE (sym)))
1496 && multiple_p (a: mem_ref_offset (*tp),
1497 b: wi::to_poly_offset (TYPE_SIZE_UNIT (TREE_TYPE (*tp)))))
1498 {
1499 *tp = build3 (BIT_FIELD_REF, TREE_TYPE (*tp), sym,
1500 TYPE_SIZE (TREE_TYPE (*tp)),
1501 int_const_binop (MULT_EXPR,
1502 bitsize_int (BITS_PER_UNIT),
1503 TREE_OPERAND (*tp, 1)));
1504 }
1505 else if (TREE_CODE (TREE_TYPE (sym)) == COMPLEX_TYPE
1506 && useless_type_conversion_p (TREE_TYPE (*tp),
1507 TREE_TYPE (TREE_TYPE (sym))))
1508 {
1509 *tp = build1 (integer_zerop (TREE_OPERAND (*tp, 1))
1510 ? REALPART_EXPR : IMAGPART_EXPR,
1511 TREE_TYPE (*tp), sym);
1512 }
1513 else if (integer_zerop (TREE_OPERAND (*tp, 1))
1514 && DECL_SIZE (sym) == TYPE_SIZE (TREE_TYPE (*tp)))
1515 {
1516 if (!useless_type_conversion_p (TREE_TYPE (*tp),
1517 TREE_TYPE (sym)))
1518 *tp = build1 (VIEW_CONVERT_EXPR,
1519 TREE_TYPE (*tp), sym);
1520 else
1521 *tp = sym;
1522 }
1523 else if (DECL_SIZE (sym)
1524 && TREE_CODE (DECL_SIZE (sym)) == INTEGER_CST
1525 && (known_subrange_p
1526 (pos1: mem_ref_offset (*tp),
1527 size1: wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (*tp))),
1528 pos2: 0, size2: wi::to_offset (DECL_SIZE_UNIT (sym))))
1529 && (! INTEGRAL_TYPE_P (TREE_TYPE (*tp))
1530 || (wi::to_offset (TYPE_SIZE (TREE_TYPE (*tp)))
1531 == TYPE_PRECISION (TREE_TYPE (*tp))))
1532 && (! INTEGRAL_TYPE_P (TREE_TYPE (sym))
1533 || type_has_mode_precision_p (TREE_TYPE (sym)))
1534 && wi::umod_trunc (x: wi::to_offset (TYPE_SIZE (TREE_TYPE (*tp))),
1535 BITS_PER_UNIT) == 0)
1536 {
1537 *tp = build3 (BIT_FIELD_REF, TREE_TYPE (*tp), sym,
1538 TYPE_SIZE (TREE_TYPE (*tp)),
1539 wide_int_to_tree (bitsizetype,
1540 cst: mem_ref_offset (*tp)
1541 << LOG2_BITS_PER_UNIT));
1542 }
1543 }
1544}
1545
1546/* For a tree REF return its base if it is the base of a MEM_REF
1547 that cannot be rewritten into SSA form. Otherwise return NULL_TREE. */
1548
1549static tree
1550non_rewritable_mem_ref_base (tree ref)
1551{
1552 tree base;
1553
1554 /* A plain decl does not need it set. */
1555 if (DECL_P (ref))
1556 return NULL_TREE;
1557
1558 switch (TREE_CODE (ref))
1559 {
1560 case REALPART_EXPR:
1561 case IMAGPART_EXPR:
1562 case BIT_FIELD_REF:
1563 if (DECL_P (TREE_OPERAND (ref, 0)))
1564 return NULL_TREE;
1565 break;
1566 case VIEW_CONVERT_EXPR:
1567 if (DECL_P (TREE_OPERAND (ref, 0)))
1568 {
1569 if (TYPE_SIZE (TREE_TYPE (ref))
1570 != TYPE_SIZE (TREE_TYPE (TREE_OPERAND (ref, 0))))
1571 return TREE_OPERAND (ref, 0);
1572 return NULL_TREE;
1573 }
1574 break;
1575 /* We would need to rewrite ARRAY_REFs or COMPONENT_REFs and even
1576 more so multiple levels of handled components. */
1577 default:;
1578 }
1579
1580 base = ref;
1581
1582 /* But watch out for MEM_REFs we cannot lower to a
1583 VIEW_CONVERT_EXPR or a BIT_FIELD_REF. */
1584 if (TREE_CODE (base) == MEM_REF
1585 && TREE_CODE (TREE_OPERAND (base, 0)) == ADDR_EXPR)
1586 {
1587 tree decl = TREE_OPERAND (TREE_OPERAND (base, 0), 0);
1588 if (! DECL_P (decl))
1589 return NULL_TREE;
1590 if (! is_gimple_reg_type (TREE_TYPE (base))
1591 || VOID_TYPE_P (TREE_TYPE (base))
1592 || TREE_THIS_VOLATILE (decl) != TREE_THIS_VOLATILE (base))
1593 return decl;
1594 if ((VECTOR_TYPE_P (TREE_TYPE (decl))
1595 || TREE_CODE (TREE_TYPE (decl)) == COMPLEX_TYPE)
1596 && useless_type_conversion_p (TREE_TYPE (base),
1597 TREE_TYPE (TREE_TYPE (decl)))
1598 && known_ge (mem_ref_offset (base), 0)
1599 && known_gt (wi::to_poly_offset (TYPE_SIZE_UNIT (TREE_TYPE (decl))),
1600 mem_ref_offset (base))
1601 && multiple_p (a: mem_ref_offset (base),
1602 b: wi::to_poly_offset (TYPE_SIZE_UNIT (TREE_TYPE (base)))))
1603 return NULL_TREE;
1604 /* For same sizes and zero offset we can use a VIEW_CONVERT_EXPR. */
1605 if (integer_zerop (TREE_OPERAND (base, 1))
1606 && DECL_SIZE (decl) == TYPE_SIZE (TREE_TYPE (base)))
1607 return NULL_TREE;
1608 /* For integral typed extracts we can use a BIT_FIELD_REF. */
1609 if (DECL_SIZE (decl)
1610 && TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST
1611 && (known_subrange_p
1612 (pos1: mem_ref_offset (base),
1613 size1: wi::to_poly_offset (TYPE_SIZE_UNIT (TREE_TYPE (base))),
1614 pos2: 0, size2: wi::to_poly_offset (DECL_SIZE_UNIT (decl))))
1615 /* ??? We can't handle bitfield precision extracts without
1616 either using an alternate type for the BIT_FIELD_REF and
1617 then doing a conversion or possibly adjusting the offset
1618 according to endianness. */
1619 && (! INTEGRAL_TYPE_P (TREE_TYPE (base))
1620 || (wi::to_offset (TYPE_SIZE (TREE_TYPE (base)))
1621 == TYPE_PRECISION (TREE_TYPE (base))))
1622 /* ??? Likewise for extracts from bitfields, we'd have
1623 to pun the base object to a size precision mode first. */
1624 && (! INTEGRAL_TYPE_P (TREE_TYPE (decl))
1625 || type_has_mode_precision_p (TREE_TYPE (decl)))
1626 && wi::umod_trunc (x: wi::to_offset (TYPE_SIZE (TREE_TYPE (base))),
1627 BITS_PER_UNIT) == 0)
1628 return NULL_TREE;
1629 return decl;
1630 }
1631
1632 /* We cannot rewrite a decl in the base. */
1633 base = get_base_address (t: ref);
1634 if (DECL_P (base))
1635 return base;
1636
1637 /* We cannot rewrite TARGET_MEM_REFs. */
1638 else if (TREE_CODE (base) == TARGET_MEM_REF
1639 && TREE_CODE (TREE_OPERAND (base, 0)) == ADDR_EXPR)
1640 {
1641 tree decl = TREE_OPERAND (TREE_OPERAND (base, 0), 0);
1642 if (! DECL_P (decl))
1643 return NULL_TREE;
1644 return decl;
1645 }
1646
1647 return NULL_TREE;
1648}
1649
1650/* For an lvalue tree LHS return true if it cannot be rewritten into SSA form.
1651 Otherwise return true. */
1652
1653static bool
1654non_rewritable_lvalue_p (tree lhs)
1655{
1656 /* A plain decl is always rewritable. */
1657 if (DECL_P (lhs))
1658 return false;
1659
1660 /* We can re-write REALPART_EXPR and IMAGPART_EXPR sets in
1661 a reasonably efficient manner... */
1662 if ((TREE_CODE (lhs) == REALPART_EXPR
1663 || TREE_CODE (lhs) == IMAGPART_EXPR)
1664 && DECL_P (TREE_OPERAND (lhs, 0)))
1665 return false;
1666
1667 /* ??? The following could be relaxed allowing component
1668 references that do not change the access size. */
1669 if (TREE_CODE (lhs) == MEM_REF
1670 && TREE_CODE (TREE_OPERAND (lhs, 0)) == ADDR_EXPR)
1671 {
1672 tree decl = TREE_OPERAND (TREE_OPERAND (lhs, 0), 0);
1673
1674 /* A decl that is wrapped inside a MEM-REF that covers
1675 it full is also rewritable. */
1676 if (integer_zerop (TREE_OPERAND (lhs, 1))
1677 && DECL_P (decl)
1678 && DECL_SIZE (decl) == TYPE_SIZE (TREE_TYPE (lhs))
1679 /* If the dynamic type of the decl has larger precision than
1680 the decl itself we can't use the decls type for SSA rewriting. */
1681 && ((! INTEGRAL_TYPE_P (TREE_TYPE (decl))
1682 || compare_tree_int (DECL_SIZE (decl),
1683 TYPE_PRECISION (TREE_TYPE (decl))) == 0)
1684 || (INTEGRAL_TYPE_P (TREE_TYPE (lhs))
1685 && (TYPE_PRECISION (TREE_TYPE (decl))
1686 >= TYPE_PRECISION (TREE_TYPE (lhs)))))
1687 /* Make sure we are not re-writing non-float copying into float
1688 copying as that can incur normalization. */
1689 && (! FLOAT_TYPE_P (TREE_TYPE (decl))
1690 || types_compatible_p (TREE_TYPE (lhs), TREE_TYPE (decl)))
1691 && (TREE_THIS_VOLATILE (decl) == TREE_THIS_VOLATILE (lhs)))
1692 return false;
1693
1694 /* A vector-insert using a MEM_REF or ARRAY_REF is rewritable
1695 using a BIT_INSERT_EXPR. */
1696 if (DECL_P (decl)
1697 && VECTOR_TYPE_P (TREE_TYPE (decl))
1698 && TYPE_MODE (TREE_TYPE (decl)) != BLKmode
1699 && known_ge (mem_ref_offset (lhs), 0)
1700 && known_gt (wi::to_poly_offset (TYPE_SIZE_UNIT (TREE_TYPE (decl))),
1701 mem_ref_offset (lhs))
1702 && multiple_p (a: mem_ref_offset (lhs),
1703 b: wi::to_poly_offset (TYPE_SIZE_UNIT (TREE_TYPE (lhs))))
1704 && known_ge (wi::to_poly_offset (TYPE_SIZE (TREE_TYPE (decl))),
1705 wi::to_poly_offset (TYPE_SIZE (TREE_TYPE (lhs)))))
1706 {
1707 poly_uint64 lhs_bits, nelts;
1708 if (poly_int_tree_p (TYPE_SIZE (TREE_TYPE (lhs)), value: &lhs_bits)
1709 && multiple_p (a: lhs_bits,
1710 b: tree_to_uhwi
1711 (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl)))),
1712 multiple: &nelts)
1713 && valid_vector_subparts_p (subparts: nelts))
1714 {
1715 if (known_eq (nelts, 1u))
1716 return false;
1717 /* For sub-vector inserts the insert vector mode has to be
1718 supported. */
1719 tree vtype = build_vector_type (TREE_TYPE (TREE_TYPE (decl)),
1720 nelts);
1721 if (TYPE_MODE (vtype) != BLKmode)
1722 return false;
1723 }
1724 }
1725 }
1726
1727 /* A vector-insert using a BIT_FIELD_REF is rewritable using
1728 BIT_INSERT_EXPR. */
1729 if (TREE_CODE (lhs) == BIT_FIELD_REF
1730 && DECL_P (TREE_OPERAND (lhs, 0))
1731 && VECTOR_TYPE_P (TREE_TYPE (TREE_OPERAND (lhs, 0)))
1732 && TYPE_MODE (TREE_TYPE (TREE_OPERAND (lhs, 0))) != BLKmode
1733 && operand_equal_p (TYPE_SIZE_UNIT (TREE_TYPE (lhs)),
1734 TYPE_SIZE_UNIT
1735 (TREE_TYPE (TREE_TYPE (TREE_OPERAND (lhs, 0)))), flags: 0)
1736 && (tree_to_uhwi (TREE_OPERAND (lhs, 2))
1737 % tree_to_uhwi (TYPE_SIZE (TREE_TYPE (lhs)))) == 0)
1738 return false;
1739
1740 return true;
1741}
1742
1743/* When possible, clear TREE_ADDRESSABLE bit, set or clear DECL_NOT_GIMPLE_REG_P
1744 and mark the variable VAR for conversion into SSA. Return true when updating
1745 stmts is required. */
1746
1747static void
1748maybe_optimize_var (tree var, bitmap addresses_taken, bitmap not_reg_needs,
1749 bitmap suitable_for_renaming)
1750{
1751 /* Global Variables, result decls cannot be changed. */
1752 if (is_global_var (t: var)
1753 || TREE_CODE (var) == RESULT_DECL
1754 || bitmap_bit_p (addresses_taken, DECL_UID (var)))
1755 return;
1756
1757 bool maybe_reg = false;
1758 if (TREE_ADDRESSABLE (var))
1759 {
1760 TREE_ADDRESSABLE (var) = 0;
1761 maybe_reg = true;
1762 if (dump_file)
1763 {
1764 fprintf (stream: dump_file, format: "No longer having address taken: ");
1765 print_generic_expr (dump_file, var);
1766 fprintf (stream: dump_file, format: "\n");
1767 }
1768 }
1769
1770 /* For register type decls if we do not have any partial defs
1771 we cannot express in SSA form mark them as DECL_NOT_GIMPLE_REG_P
1772 as to avoid SSA rewrite. For the others go ahead and mark
1773 them for renaming. */
1774 if (is_gimple_reg_type (TREE_TYPE (var)))
1775 {
1776 if (bitmap_bit_p (not_reg_needs, DECL_UID (var)))
1777 {
1778 DECL_NOT_GIMPLE_REG_P (var) = 1;
1779 if (dump_file)
1780 {
1781 fprintf (stream: dump_file, format: "Has partial defs: ");
1782 print_generic_expr (dump_file, var);
1783 fprintf (stream: dump_file, format: "\n");
1784 }
1785 }
1786 else if (DECL_NOT_GIMPLE_REG_P (var))
1787 {
1788 maybe_reg = true;
1789 DECL_NOT_GIMPLE_REG_P (var) = 0;
1790 }
1791 if (maybe_reg)
1792 {
1793 if (is_gimple_reg (var))
1794 {
1795 if (dump_file)
1796 {
1797 fprintf (stream: dump_file, format: "Now a gimple register: ");
1798 print_generic_expr (dump_file, var);
1799 fprintf (stream: dump_file, format: "\n");
1800 }
1801 bitmap_set_bit (suitable_for_renaming, DECL_UID (var));
1802 }
1803 else
1804 DECL_NOT_GIMPLE_REG_P (var) = 1;
1805 }
1806 }
1807}
1808
1809/* Return true when STMT is ASAN mark where second argument is an address
1810 of a local variable. */
1811
1812static bool
1813is_asan_mark_p (gimple *stmt)
1814{
1815 if (!gimple_call_internal_p (gs: stmt, fn: IFN_ASAN_MARK))
1816 return false;
1817
1818 tree addr = get_base_address (t: gimple_call_arg (gs: stmt, index: 1));
1819 if (TREE_CODE (addr) == ADDR_EXPR
1820 && VAR_P (TREE_OPERAND (addr, 0)))
1821 {
1822 tree var = TREE_OPERAND (addr, 0);
1823 if (lookup_attribute (ASAN_USE_AFTER_SCOPE_ATTRIBUTE,
1824 DECL_ATTRIBUTES (var)))
1825 return false;
1826
1827 unsigned addressable = TREE_ADDRESSABLE (var);
1828 TREE_ADDRESSABLE (var) = 0;
1829 bool r = is_gimple_reg (var);
1830 TREE_ADDRESSABLE (var) = addressable;
1831 return r;
1832 }
1833
1834 return false;
1835}
1836
1837/* Compute TREE_ADDRESSABLE and whether we have unhandled partial defs
1838 for local variables. */
1839
1840void
1841execute_update_addresses_taken (void)
1842{
1843 basic_block bb;
1844 auto_bitmap addresses_taken;
1845 auto_bitmap not_reg_needs;
1846 auto_bitmap suitable_for_renaming;
1847 bool optimistic_not_addressable = false;
1848 tree var;
1849 unsigned i;
1850
1851 timevar_push (tv: TV_ADDRESS_TAKEN);
1852
1853 /* Collect into ADDRESSES_TAKEN all variables whose address is taken within
1854 the function body. */
1855 FOR_EACH_BB_FN (bb, cfun)
1856 {
1857 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (i: gsi);
1858 gsi_next (i: &gsi))
1859 {
1860 gimple *stmt = gsi_stmt (i: gsi);
1861 enum gimple_code code = gimple_code (g: stmt);
1862 tree decl;
1863
1864 if (code == GIMPLE_CALL)
1865 {
1866 if (optimize_atomic_compare_exchange_p (stmt))
1867 {
1868 /* For __atomic_compare_exchange_N if the second argument
1869 is &var, don't mark var addressable;
1870 if it becomes non-addressable, we'll rewrite it into
1871 ATOMIC_COMPARE_EXCHANGE call. */
1872 tree arg = gimple_call_arg (gs: stmt, index: 1);
1873 gimple_call_set_arg (gs: stmt, index: 1, null_pointer_node);
1874 gimple_ior_addresses_taken (addresses_taken, stmt);
1875 gimple_call_set_arg (gs: stmt, index: 1, arg);
1876 /* Remember we have to check again below. */
1877 optimistic_not_addressable = true;
1878 }
1879 else if (is_asan_mark_p (stmt)
1880 || gimple_call_internal_p (gs: stmt, fn: IFN_GOMP_SIMT_ENTER))
1881 ;
1882 else
1883 gimple_ior_addresses_taken (addresses_taken, stmt);
1884 }
1885 else
1886 /* Note all addresses taken by the stmt. */
1887 gimple_ior_addresses_taken (addresses_taken, stmt);
1888
1889 /* If we have a call or an assignment, see if the lhs contains
1890 a local decl that requires not to be a gimple register. */
1891 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
1892 {
1893 tree lhs = gimple_get_lhs (stmt);
1894 if (lhs
1895 && TREE_CODE (lhs) != SSA_NAME
1896 && ((code == GIMPLE_CALL && ! DECL_P (lhs))
1897 || non_rewritable_lvalue_p (lhs)))
1898 {
1899 decl = get_base_address (t: lhs);
1900 if (DECL_P (decl))
1901 bitmap_set_bit (not_reg_needs, DECL_UID (decl));
1902 }
1903 }
1904
1905 if (gimple_assign_single_p (gs: stmt))
1906 {
1907 tree rhs = gimple_assign_rhs1 (gs: stmt);
1908 if ((decl = non_rewritable_mem_ref_base (ref: rhs)))
1909 bitmap_set_bit (not_reg_needs, DECL_UID (decl));
1910 }
1911
1912 else if (code == GIMPLE_CALL)
1913 {
1914 for (i = 0; i < gimple_call_num_args (gs: stmt); ++i)
1915 {
1916 tree arg = gimple_call_arg (gs: stmt, index: i);
1917 if ((decl = non_rewritable_mem_ref_base (ref: arg)))
1918 bitmap_set_bit (not_reg_needs, DECL_UID (decl));
1919 }
1920 }
1921
1922 else if (code == GIMPLE_ASM)
1923 {
1924 gasm *asm_stmt = as_a <gasm *> (p: stmt);
1925 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
1926 {
1927 tree link = gimple_asm_output_op (asm_stmt, index: i);
1928 tree lhs = TREE_VALUE (link);
1929 if (TREE_CODE (lhs) != SSA_NAME)
1930 {
1931 decl = get_base_address (t: lhs);
1932 if (DECL_P (decl)
1933 && (non_rewritable_lvalue_p (lhs)
1934 /* We cannot move required conversions from
1935 the lhs to the rhs in asm statements, so
1936 require we do not need any. */
1937 || !useless_type_conversion_p
1938 (TREE_TYPE (lhs), TREE_TYPE (decl))))
1939 bitmap_set_bit (not_reg_needs, DECL_UID (decl));
1940 }
1941 }
1942 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
1943 {
1944 tree link = gimple_asm_input_op (asm_stmt, index: i);
1945 if ((decl = non_rewritable_mem_ref_base (TREE_VALUE (link))))
1946 bitmap_set_bit (not_reg_needs, DECL_UID (decl));
1947 }
1948 }
1949 }
1950
1951 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (i: gsi);
1952 gsi_next (i: &gsi))
1953 {
1954 size_t i;
1955 gphi *phi = gsi.phi ();
1956
1957 for (i = 0; i < gimple_phi_num_args (gs: phi); i++)
1958 {
1959 tree op = PHI_ARG_DEF (phi, i), var;
1960 if (TREE_CODE (op) == ADDR_EXPR
1961 && (var = get_base_address (TREE_OPERAND (op, 0))) != NULL
1962 && DECL_P (var))
1963 bitmap_set_bit (addresses_taken, DECL_UID (var));
1964 }
1965 }
1966 }
1967
1968 /* We cannot iterate over all referenced vars because that can contain
1969 unused vars from BLOCK trees, which causes code generation differences
1970 for -g vs. -g0. */
1971 for (var = DECL_ARGUMENTS (cfun->decl); var; var = DECL_CHAIN (var))
1972 maybe_optimize_var (var, addresses_taken, not_reg_needs,
1973 suitable_for_renaming);
1974
1975 FOR_EACH_VEC_SAFE_ELT (cfun->local_decls, i, var)
1976 maybe_optimize_var (var, addresses_taken, not_reg_needs,
1977 suitable_for_renaming);
1978
1979 /* Operand caches need to be recomputed for operands referencing the updated
1980 variables and operands need to be rewritten to expose bare symbols. */
1981 if (!bitmap_empty_p (map: suitable_for_renaming)
1982 || optimistic_not_addressable)
1983 {
1984 FOR_EACH_BB_FN (bb, cfun)
1985 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (i: gsi);)
1986 {
1987 gimple *stmt = gsi_stmt (i: gsi);
1988
1989 /* Re-write TARGET_MEM_REFs of symbols we want to
1990 rewrite into SSA form. */
1991 if (gimple_assign_single_p (gs: stmt))
1992 {
1993 tree lhs = gimple_assign_lhs (gs: stmt);
1994 tree rhs, *rhsp = gimple_assign_rhs1_ptr (gs: stmt);
1995 tree sym;
1996
1997 /* Rewrite LHS IMAG/REALPART_EXPR similar to
1998 gimplify_modify_expr_complex_part. */
1999 if ((TREE_CODE (lhs) == IMAGPART_EXPR
2000 || TREE_CODE (lhs) == REALPART_EXPR)
2001 && DECL_P (TREE_OPERAND (lhs, 0))
2002 && bitmap_bit_p (suitable_for_renaming,
2003 DECL_UID (TREE_OPERAND (lhs, 0))))
2004 {
2005 tree other = make_ssa_name (TREE_TYPE (lhs));
2006 tree lrhs = build1 (TREE_CODE (lhs) == IMAGPART_EXPR
2007 ? REALPART_EXPR : IMAGPART_EXPR,
2008 TREE_TYPE (other),
2009 TREE_OPERAND (lhs, 0));
2010 suppress_warning (lrhs);
2011 gimple *load = gimple_build_assign (other, lrhs);
2012 location_t loc = gimple_location (g: stmt);
2013 gimple_set_location (g: load, location: loc);
2014 gimple_set_vuse (g: load, vuse: gimple_vuse (g: stmt));
2015 gsi_insert_before (&gsi, load, GSI_SAME_STMT);
2016 gimple_assign_set_lhs (gs: stmt, TREE_OPERAND (lhs, 0));
2017 gimple_assign_set_rhs_with_ops
2018 (&gsi, COMPLEX_EXPR,
2019 TREE_CODE (lhs) == IMAGPART_EXPR
2020 ? other : gimple_assign_rhs1 (gs: stmt),
2021 TREE_CODE (lhs) == IMAGPART_EXPR
2022 ? gimple_assign_rhs1 (gs: stmt) : other, NULL_TREE);
2023 stmt = gsi_stmt (i: gsi);
2024 unlink_stmt_vdef (stmt);
2025 update_stmt (s: stmt);
2026 continue;
2027 }
2028
2029 /* Rewrite a vector insert via a BIT_FIELD_REF on the LHS
2030 into a BIT_INSERT_EXPR. */
2031 if (TREE_CODE (lhs) == BIT_FIELD_REF
2032 && DECL_P (TREE_OPERAND (lhs, 0))
2033 && bitmap_bit_p (suitable_for_renaming,
2034 DECL_UID (TREE_OPERAND (lhs, 0)))
2035 && VECTOR_TYPE_P (TREE_TYPE (TREE_OPERAND (lhs, 0)))
2036 && TYPE_MODE (TREE_TYPE (TREE_OPERAND (lhs, 0))) != BLKmode
2037 && operand_equal_p (TYPE_SIZE_UNIT (TREE_TYPE (lhs)),
2038 TYPE_SIZE_UNIT (TREE_TYPE
2039 (TREE_TYPE (TREE_OPERAND (lhs, 0)))),
2040 flags: 0)
2041 && (tree_to_uhwi (TREE_OPERAND (lhs, 2))
2042 % tree_to_uhwi (TYPE_SIZE (TREE_TYPE (lhs))) == 0))
2043 {
2044 tree var = TREE_OPERAND (lhs, 0);
2045 tree val = gimple_assign_rhs1 (gs: stmt);
2046 if (! types_compatible_p (TREE_TYPE (TREE_TYPE (var)),
2047 TREE_TYPE (val)))
2048 {
2049 tree tem = make_ssa_name (TREE_TYPE (TREE_TYPE (var)));
2050 gimple *pun
2051 = gimple_build_assign (tem,
2052 build1 (VIEW_CONVERT_EXPR,
2053 TREE_TYPE (tem), val));
2054 gsi_insert_before (&gsi, pun, GSI_SAME_STMT);
2055 val = tem;
2056 }
2057 tree bitpos = TREE_OPERAND (lhs, 2);
2058 gimple_assign_set_lhs (gs: stmt, lhs: var);
2059 gimple_assign_set_rhs_with_ops
2060 (&gsi, BIT_INSERT_EXPR, var, val, bitpos);
2061 stmt = gsi_stmt (i: gsi);
2062 unlink_stmt_vdef (stmt);
2063 update_stmt (s: stmt);
2064 continue;
2065 }
2066
2067 /* Rewrite a vector insert using a MEM_REF on the LHS
2068 into a BIT_INSERT_EXPR. */
2069 if (TREE_CODE (lhs) == MEM_REF
2070 && TREE_CODE (TREE_OPERAND (lhs, 0)) == ADDR_EXPR
2071 && (sym = TREE_OPERAND (TREE_OPERAND (lhs, 0), 0))
2072 && DECL_P (sym)
2073 && bitmap_bit_p (suitable_for_renaming, DECL_UID (sym))
2074 && VECTOR_TYPE_P (TREE_TYPE (sym))
2075 && TYPE_MODE (TREE_TYPE (sym)) != BLKmode
2076 /* If it is a full replacement we can do better below. */
2077 && maybe_ne (a: wi::to_poly_offset
2078 (TYPE_SIZE_UNIT (TREE_TYPE (lhs))),
2079 b: wi::to_poly_offset
2080 (TYPE_SIZE_UNIT (TREE_TYPE (sym))))
2081 && known_ge (mem_ref_offset (lhs), 0)
2082 && known_gt (wi::to_poly_offset
2083 (TYPE_SIZE_UNIT (TREE_TYPE (sym))),
2084 mem_ref_offset (lhs))
2085 && multiple_p (a: mem_ref_offset (lhs),
2086 b: wi::to_poly_offset
2087 (TYPE_SIZE_UNIT (TREE_TYPE (lhs)))))
2088 {
2089 tree val = gimple_assign_rhs1 (gs: stmt);
2090 if (! types_compatible_p (TREE_TYPE (val),
2091 TREE_TYPE (TREE_TYPE (sym))))
2092 {
2093 poly_uint64 lhs_bits, nelts;
2094 tree temtype = TREE_TYPE (TREE_TYPE (sym));
2095 if (poly_int_tree_p (TYPE_SIZE (TREE_TYPE (lhs)),
2096 value: &lhs_bits)
2097 && multiple_p (a: lhs_bits,
2098 b: tree_to_uhwi
2099 (TYPE_SIZE (TREE_TYPE
2100 (TREE_TYPE (sym)))),
2101 multiple: &nelts)
2102 && maybe_ne (a: nelts, b: 1u)
2103 && valid_vector_subparts_p (subparts: nelts))
2104 temtype = build_vector_type (temtype, nelts);
2105 tree tem = make_ssa_name (var: temtype);
2106 gimple *pun
2107 = gimple_build_assign (tem,
2108 build1 (VIEW_CONVERT_EXPR,
2109 TREE_TYPE (tem), val));
2110 gsi_insert_before (&gsi, pun, GSI_SAME_STMT);
2111 val = tem;
2112 }
2113 tree bitpos
2114 = wide_int_to_tree (bitsizetype,
2115 cst: mem_ref_offset (lhs) * BITS_PER_UNIT);
2116 gimple_assign_set_lhs (gs: stmt, lhs: sym);
2117 gimple_assign_set_rhs_with_ops
2118 (&gsi, BIT_INSERT_EXPR, sym, val, bitpos);
2119 stmt = gsi_stmt (i: gsi);
2120 unlink_stmt_vdef (stmt);
2121 update_stmt (s: stmt);
2122 continue;
2123 }
2124
2125 /* We shouldn't have any fancy wrapping of
2126 component-refs on the LHS, but look through
2127 VIEW_CONVERT_EXPRs as that is easy. */
2128 while (TREE_CODE (lhs) == VIEW_CONVERT_EXPR)
2129 lhs = TREE_OPERAND (lhs, 0);
2130 if (TREE_CODE (lhs) == MEM_REF
2131 && TREE_CODE (TREE_OPERAND (lhs, 0)) == ADDR_EXPR
2132 && integer_zerop (TREE_OPERAND (lhs, 1))
2133 && (sym = TREE_OPERAND (TREE_OPERAND (lhs, 0), 0))
2134 && DECL_P (sym)
2135 && !TREE_ADDRESSABLE (sym)
2136 && bitmap_bit_p (suitable_for_renaming, DECL_UID (sym)))
2137 lhs = sym;
2138 else
2139 lhs = gimple_assign_lhs (gs: stmt);
2140
2141 /* Rewrite the RHS and make sure the resulting assignment
2142 is validly typed. */
2143 maybe_rewrite_mem_ref_base (tp: rhsp, suitable_for_renaming);
2144 rhs = gimple_assign_rhs1 (gs: stmt);
2145 if (gimple_assign_lhs (gs: stmt) != lhs
2146 && !useless_type_conversion_p (TREE_TYPE (lhs),
2147 TREE_TYPE (rhs)))
2148 {
2149 if (gimple_clobber_p (s: stmt))
2150 {
2151 rhs = build_constructor (TREE_TYPE (lhs), NULL);
2152 TREE_THIS_VOLATILE (rhs) = 1;
2153 }
2154 else
2155 rhs = fold_build1 (VIEW_CONVERT_EXPR,
2156 TREE_TYPE (lhs), rhs);
2157 }
2158 if (gimple_assign_lhs (gs: stmt) != lhs)
2159 gimple_assign_set_lhs (gs: stmt, lhs);
2160
2161 if (gimple_assign_rhs1 (gs: stmt) != rhs)
2162 {
2163 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
2164 gimple_assign_set_rhs_from_tree (&gsi, rhs);
2165 }
2166 }
2167
2168 else if (gimple_code (g: stmt) == GIMPLE_CALL)
2169 {
2170 unsigned i;
2171 if (optimize_atomic_compare_exchange_p (stmt))
2172 {
2173 tree expected = gimple_call_arg (gs: stmt, index: 1);
2174 tree decl = TREE_OPERAND (expected, 0);
2175 if (bitmap_bit_p (suitable_for_renaming, DECL_UID (decl)))
2176 {
2177 fold_builtin_atomic_compare_exchange (&gsi);
2178 continue;
2179 }
2180 else if (!TREE_ADDRESSABLE (decl))
2181 /* If there are partial defs of the decl we may
2182 have cleared the addressable bit but set
2183 DECL_NOT_GIMPLE_REG_P. We have to restore
2184 TREE_ADDRESSABLE here. */
2185 TREE_ADDRESSABLE (decl) = 1;
2186 }
2187 else if (is_asan_mark_p (stmt))
2188 {
2189 tree var = TREE_OPERAND (gimple_call_arg (stmt, 1), 0);
2190 if (bitmap_bit_p (suitable_for_renaming, DECL_UID (var)))
2191 {
2192 unlink_stmt_vdef (stmt);
2193 if (asan_mark_p (stmt, flag: ASAN_MARK_POISON))
2194 {
2195 gcall *call
2196 = gimple_build_call_internal (IFN_ASAN_POISON, 0);
2197 gimple_call_set_lhs (gs: call, lhs: var);
2198 gsi_replace (&gsi, call, true);
2199 }
2200 else
2201 {
2202 /* In ASAN_MARK (UNPOISON, &b, ...) the variable
2203 is uninitialized. Avoid dependencies on
2204 previous out of scope value. */
2205 tree clobber = build_clobber (TREE_TYPE (var));
2206 gimple *g = gimple_build_assign (var, clobber);
2207 gsi_replace (&gsi, g, true);
2208 }
2209 continue;
2210 }
2211 }
2212 else if (gimple_call_internal_p (gs: stmt, fn: IFN_GOMP_SIMT_ENTER))
2213 for (i = 1; i < gimple_call_num_args (gs: stmt); i++)
2214 {
2215 tree *argp = gimple_call_arg_ptr (gs: stmt, index: i);
2216 if (*argp == null_pointer_node)
2217 continue;
2218 gcc_assert (TREE_CODE (*argp) == ADDR_EXPR
2219 && VAR_P (TREE_OPERAND (*argp, 0)));
2220 tree var = TREE_OPERAND (*argp, 0);
2221 if (bitmap_bit_p (suitable_for_renaming, DECL_UID (var)))
2222 *argp = null_pointer_node;
2223 }
2224 for (i = 0; i < gimple_call_num_args (gs: stmt); ++i)
2225 {
2226 tree *argp = gimple_call_arg_ptr (gs: stmt, index: i);
2227 maybe_rewrite_mem_ref_base (tp: argp, suitable_for_renaming);
2228 }
2229 }
2230
2231 else if (gimple_code (g: stmt) == GIMPLE_ASM)
2232 {
2233 gasm *asm_stmt = as_a <gasm *> (p: stmt);
2234 unsigned i;
2235 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
2236 {
2237 tree link = gimple_asm_output_op (asm_stmt, index: i);
2238 maybe_rewrite_mem_ref_base (tp: &TREE_VALUE (link),
2239 suitable_for_renaming);
2240 }
2241 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
2242 {
2243 tree link = gimple_asm_input_op (asm_stmt, index: i);
2244 maybe_rewrite_mem_ref_base (tp: &TREE_VALUE (link),
2245 suitable_for_renaming);
2246 }
2247 }
2248
2249 else if (gimple_debug_bind_p (s: stmt)
2250 && gimple_debug_bind_has_value_p (dbg: stmt))
2251 {
2252 tree *valuep = gimple_debug_bind_get_value_ptr (dbg: stmt);
2253 tree decl;
2254 maybe_rewrite_mem_ref_base (tp: valuep, suitable_for_renaming);
2255 decl = non_rewritable_mem_ref_base (ref: *valuep);
2256 if (decl
2257 && bitmap_bit_p (suitable_for_renaming, DECL_UID (decl)))
2258 gimple_debug_bind_reset_value (dbg: stmt);
2259 }
2260
2261 if (gimple_references_memory_p (stmt)
2262 || is_gimple_debug (gs: stmt))
2263 update_stmt (s: stmt);
2264
2265 gsi_next (i: &gsi);
2266 }
2267
2268 /* Update SSA form here, we are called as non-pass as well. */
2269 if (number_of_loops (cfun) > 1
2270 && loops_state_satisfies_p (flags: LOOP_CLOSED_SSA))
2271 rewrite_into_loop_closed_ssa (NULL, TODO_update_ssa);
2272 else
2273 update_ssa (TODO_update_ssa);
2274 }
2275
2276 timevar_pop (tv: TV_ADDRESS_TAKEN);
2277}
2278
2279namespace {
2280
2281const pass_data pass_data_update_address_taken =
2282{
2283 .type: GIMPLE_PASS, /* type */
2284 .name: "addressables", /* name */
2285 .optinfo_flags: OPTGROUP_NONE, /* optinfo_flags */
2286 .tv_id: TV_ADDRESS_TAKEN, /* tv_id */
2287 PROP_ssa, /* properties_required */
2288 .properties_provided: 0, /* properties_provided */
2289 .properties_destroyed: 0, /* properties_destroyed */
2290 .todo_flags_start: 0, /* todo_flags_start */
2291 TODO_update_address_taken, /* todo_flags_finish */
2292};
2293
2294class pass_update_address_taken : public gimple_opt_pass
2295{
2296public:
2297 pass_update_address_taken (gcc::context *ctxt)
2298 : gimple_opt_pass (pass_data_update_address_taken, ctxt)
2299 {}
2300
2301 /* opt_pass methods: */
2302
2303}; // class pass_update_address_taken
2304
2305} // anon namespace
2306
2307gimple_opt_pass *
2308make_pass_update_address_taken (gcc::context *ctxt)
2309{
2310 return new pass_update_address_taken (ctxt);
2311}
2312

source code of gcc/tree-ssa.cc