Fix gnat.dg/opt39.adb on hppa.
[official-gcc.git] / gcc / tree-ssa-loop.cc
blobab398c3f44d58cd7a9c8dd53e54e1e5ab8ddccc9
1 /* Loop optimizations over tree-ssa.
2 Copyright (C) 2003-2023 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3, or (at your option) any
9 later version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
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/>. */
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 "tree-pass.h"
27 #include "memmodel.h"
28 #include "tm_p.h"
29 #include "fold-const.h"
30 #include "gimple-iterator.h"
31 #include "tree-ssa-loop-ivopts.h"
32 #include "tree-ssa-loop-manip.h"
33 #include "tree-ssa-loop-niter.h"
34 #include "tree-ssa-loop.h"
35 #include "cfgloop.h"
36 #include "tree-inline.h"
37 #include "tree-scalar-evolution.h"
38 #include "tree-vectorizer.h"
39 #include "omp-general.h"
40 #include "diagnostic-core.h"
41 #include "stringpool.h"
42 #include "attribs.h"
45 /* A pass making sure loops are fixed up. */
47 namespace {
49 const pass_data pass_data_fix_loops =
51 GIMPLE_PASS, /* type */
52 "fix_loops", /* name */
53 OPTGROUP_LOOP, /* optinfo_flags */
54 TV_TREE_LOOP, /* tv_id */
55 PROP_cfg, /* properties_required */
56 0, /* properties_provided */
57 0, /* properties_destroyed */
58 0, /* todo_flags_start */
59 0, /* todo_flags_finish */
62 class pass_fix_loops : public gimple_opt_pass
64 public:
65 pass_fix_loops (gcc::context *ctxt)
66 : gimple_opt_pass (pass_data_fix_loops, ctxt)
69 /* opt_pass methods: */
70 bool gate (function *) final override { return flag_tree_loop_optimize; }
72 unsigned int execute (function *fn) final override;
73 }; // class pass_fix_loops
75 unsigned int
76 pass_fix_loops::execute (function *)
78 if (loops_state_satisfies_p (LOOPS_NEED_FIXUP))
80 calculate_dominance_info (CDI_DOMINATORS);
81 fix_loop_structure (NULL);
83 return 0;
86 } // anon namespace
88 gimple_opt_pass *
89 make_pass_fix_loops (gcc::context *ctxt)
91 return new pass_fix_loops (ctxt);
95 /* Gate for loop pass group. The group is controlled by -ftree-loop-optimize
96 but we also avoid running it when the IL doesn't contain any loop. */
98 static bool
99 gate_loop (function *fn)
101 if (!flag_tree_loop_optimize)
102 return false;
104 /* For -fdump-passes which runs before loop discovery print the
105 state of -ftree-loop-optimize. */
106 if (!loops_for_fn (fn))
107 return true;
109 return number_of_loops (fn) > 1;
112 /* The loop superpass. */
114 namespace {
116 const pass_data pass_data_tree_loop =
118 GIMPLE_PASS, /* type */
119 "loop", /* name */
120 OPTGROUP_LOOP, /* optinfo_flags */
121 TV_TREE_LOOP, /* tv_id */
122 PROP_cfg, /* properties_required */
123 0, /* properties_provided */
124 0, /* properties_destroyed */
125 0, /* todo_flags_start */
126 0, /* todo_flags_finish */
129 class pass_tree_loop : public gimple_opt_pass
131 public:
132 pass_tree_loop (gcc::context *ctxt)
133 : gimple_opt_pass (pass_data_tree_loop, ctxt)
136 /* opt_pass methods: */
137 bool gate (function *fn) final override { return gate_loop (fn); }
139 }; // class pass_tree_loop
141 } // anon namespace
143 gimple_opt_pass *
144 make_pass_tree_loop (gcc::context *ctxt)
146 return new pass_tree_loop (ctxt);
149 /* Gate for oacc kernels pass group. */
151 static bool
152 gate_oacc_kernels (function *fn)
154 if (!flag_openacc)
155 return false;
157 if (!lookup_attribute ("oacc kernels", DECL_ATTRIBUTES (fn->decl)))
158 return false;
160 for (auto loop : loops_list (cfun, 0))
161 if (loop->in_oacc_kernels_region)
162 return true;
164 return false;
167 /* The oacc kernels superpass. */
169 namespace {
171 const pass_data pass_data_oacc_kernels =
173 GIMPLE_PASS, /* type */
174 "oacc_kernels", /* name */
175 OPTGROUP_LOOP, /* optinfo_flags */
176 TV_TREE_LOOP, /* tv_id */
177 PROP_cfg, /* properties_required */
178 0, /* properties_provided */
179 0, /* properties_destroyed */
180 0, /* todo_flags_start */
181 0, /* todo_flags_finish */
184 class pass_oacc_kernels : public gimple_opt_pass
186 public:
187 pass_oacc_kernels (gcc::context *ctxt)
188 : gimple_opt_pass (pass_data_oacc_kernels, ctxt)
191 /* opt_pass methods: */
192 bool gate (function *fn) final override { return gate_oacc_kernels (fn); }
194 }; // class pass_oacc_kernels
196 } // anon namespace
198 gimple_opt_pass *
199 make_pass_oacc_kernels (gcc::context *ctxt)
201 return new pass_oacc_kernels (ctxt);
204 /* The ipa oacc superpass. */
206 namespace {
208 const pass_data pass_data_ipa_oacc =
210 SIMPLE_IPA_PASS, /* type */
211 "ipa_oacc", /* name */
212 OPTGROUP_LOOP, /* optinfo_flags */
213 TV_TREE_LOOP, /* tv_id */
214 PROP_cfg, /* properties_required */
215 0, /* properties_provided */
216 0, /* properties_destroyed */
217 0, /* todo_flags_start */
218 0, /* todo_flags_finish */
221 class pass_ipa_oacc : public simple_ipa_opt_pass
223 public:
224 pass_ipa_oacc (gcc::context *ctxt)
225 : simple_ipa_opt_pass (pass_data_ipa_oacc, ctxt)
228 /* opt_pass methods: */
229 bool gate (function *) final override
231 return (optimize
232 && flag_openacc
233 /* Don't bother doing anything if the program has errors. */
234 && !seen_error ());
237 }; // class pass_ipa_oacc
239 } // anon namespace
241 simple_ipa_opt_pass *
242 make_pass_ipa_oacc (gcc::context *ctxt)
244 return new pass_ipa_oacc (ctxt);
247 /* The ipa oacc kernels pass. */
249 namespace {
251 const pass_data pass_data_ipa_oacc_kernels =
253 SIMPLE_IPA_PASS, /* type */
254 "ipa_oacc_kernels", /* name */
255 OPTGROUP_LOOP, /* optinfo_flags */
256 TV_TREE_LOOP, /* tv_id */
257 PROP_cfg, /* properties_required */
258 0, /* properties_provided */
259 0, /* properties_destroyed */
260 0, /* todo_flags_start */
261 0, /* todo_flags_finish */
264 class pass_ipa_oacc_kernels : public simple_ipa_opt_pass
266 public:
267 pass_ipa_oacc_kernels (gcc::context *ctxt)
268 : simple_ipa_opt_pass (pass_data_ipa_oacc_kernels, ctxt)
271 }; // class pass_ipa_oacc_kernels
273 } // anon namespace
275 simple_ipa_opt_pass *
276 make_pass_ipa_oacc_kernels (gcc::context *ctxt)
278 return new pass_ipa_oacc_kernels (ctxt);
281 /* The no-loop superpass. */
283 namespace {
285 const pass_data pass_data_tree_no_loop =
287 GIMPLE_PASS, /* type */
288 "no_loop", /* name */
289 OPTGROUP_NONE, /* optinfo_flags */
290 TV_TREE_NOLOOP, /* tv_id */
291 PROP_cfg, /* properties_required */
292 0, /* properties_provided */
293 0, /* properties_destroyed */
294 0, /* todo_flags_start */
295 0, /* todo_flags_finish */
298 class pass_tree_no_loop : public gimple_opt_pass
300 public:
301 pass_tree_no_loop (gcc::context *ctxt)
302 : gimple_opt_pass (pass_data_tree_no_loop, ctxt)
305 /* opt_pass methods: */
306 bool gate (function *fn) final override { return !gate_loop (fn); }
308 }; // class pass_tree_no_loop
310 } // anon namespace
312 gimple_opt_pass *
313 make_pass_tree_no_loop (gcc::context *ctxt)
315 return new pass_tree_no_loop (ctxt);
319 /* Loop optimizer initialization. */
321 namespace {
323 const pass_data pass_data_tree_loop_init =
325 GIMPLE_PASS, /* type */
326 "loopinit", /* name */
327 OPTGROUP_LOOP, /* optinfo_flags */
328 TV_NONE, /* tv_id */
329 PROP_cfg, /* properties_required */
330 0, /* properties_provided */
331 0, /* properties_destroyed */
332 TODO_update_address_taken, /* todo_flags_start */
333 0, /* todo_flags_finish */
336 class pass_tree_loop_init : public gimple_opt_pass
338 public:
339 pass_tree_loop_init (gcc::context *ctxt)
340 : gimple_opt_pass (pass_data_tree_loop_init, ctxt)
343 /* opt_pass methods: */
344 unsigned int execute (function *) final override;
346 }; // class pass_tree_loop_init
348 unsigned int
349 pass_tree_loop_init::execute (function *fun ATTRIBUTE_UNUSED)
351 /* When processing a loop in the loop pipeline, we should be able to assert
352 that:
353 (loops_state_satisfies_p (LOOPS_NORMAL | LOOPS_HAVE_RECORDED_EXITS
354 | LOOP_CLOSED_SSA)
355 && scev_initialized_p ())
357 loop_optimizer_init (LOOPS_NORMAL
358 | LOOPS_HAVE_RECORDED_EXITS);
359 rewrite_into_loop_closed_ssa (NULL, TODO_update_ssa);
360 scev_initialize ();
362 return 0;
365 } // anon namespace
367 gimple_opt_pass *
368 make_pass_tree_loop_init (gcc::context *ctxt)
370 return new pass_tree_loop_init (ctxt);
373 /* Propagation of constants using scev. */
375 namespace {
377 const pass_data pass_data_scev_cprop =
379 GIMPLE_PASS, /* type */
380 "sccp", /* name */
381 OPTGROUP_LOOP, /* optinfo_flags */
382 TV_SCEV_CONST, /* tv_id */
383 ( PROP_cfg | PROP_ssa ), /* properties_required */
384 0, /* properties_provided */
385 0, /* properties_destroyed */
386 0, /* todo_flags_start */
387 0, /* todo_flags_finish */
390 class pass_scev_cprop : public gimple_opt_pass
392 public:
393 pass_scev_cprop (gcc::context *ctxt)
394 : gimple_opt_pass (pass_data_scev_cprop, ctxt)
397 /* opt_pass methods: */
398 bool gate (function *) final override { return flag_tree_scev_cprop; }
399 unsigned int execute (function *) final override;
401 }; // class pass_scev_cprop
403 unsigned
404 pass_scev_cprop::execute (function *)
406 bool any = false;
408 /* Perform final value replacement in loops, in case the replacement
409 expressions are cheap. */
410 for (auto loop : loops_list (cfun, LI_FROM_INNERMOST))
411 any |= final_value_replacement_loop (loop);
413 return any ? TODO_cleanup_cfg | TODO_update_ssa_only_virtuals : 0;
416 } // anon namespace
418 gimple_opt_pass *
419 make_pass_scev_cprop (gcc::context *ctxt)
421 return new pass_scev_cprop (ctxt);
424 /* Induction variable optimizations. */
426 namespace {
428 const pass_data pass_data_iv_optimize =
430 GIMPLE_PASS, /* type */
431 "ivopts", /* name */
432 OPTGROUP_LOOP, /* optinfo_flags */
433 TV_TREE_LOOP_IVOPTS, /* tv_id */
434 ( PROP_cfg | PROP_ssa ), /* properties_required */
435 0, /* properties_provided */
436 0, /* properties_destroyed */
437 0, /* todo_flags_start */
438 TODO_update_ssa, /* todo_flags_finish */
441 class pass_iv_optimize : public gimple_opt_pass
443 public:
444 pass_iv_optimize (gcc::context *ctxt)
445 : gimple_opt_pass (pass_data_iv_optimize, ctxt)
448 /* opt_pass methods: */
449 bool gate (function *) final override { return flag_ivopts != 0; }
450 unsigned int execute (function *) final override;
452 }; // class pass_iv_optimize
454 unsigned int
455 pass_iv_optimize::execute (function *fun)
457 if (number_of_loops (fun) <= 1)
458 return 0;
460 tree_ssa_iv_optimize ();
461 return 0;
464 } // anon namespace
466 gimple_opt_pass *
467 make_pass_iv_optimize (gcc::context *ctxt)
469 return new pass_iv_optimize (ctxt);
472 /* Loop optimizer finalization. */
474 static unsigned int
475 tree_ssa_loop_done (void)
477 free_numbers_of_iterations_estimates (cfun);
478 scev_finalize ();
479 loop_optimizer_finalize (cfun, true);
480 return 0;
483 namespace {
485 const pass_data pass_data_tree_loop_done =
487 GIMPLE_PASS, /* type */
488 "loopdone", /* name */
489 OPTGROUP_LOOP, /* optinfo_flags */
490 TV_NONE, /* tv_id */
491 PROP_cfg, /* properties_required */
492 PROP_loop_opts_done, /* properties_provided */
493 0, /* properties_destroyed */
494 0, /* todo_flags_start */
495 TODO_cleanup_cfg, /* todo_flags_finish */
498 class pass_tree_loop_done : public gimple_opt_pass
500 public:
501 pass_tree_loop_done (gcc::context *ctxt)
502 : gimple_opt_pass (pass_data_tree_loop_done, ctxt)
505 /* opt_pass methods: */
506 unsigned int execute (function *) final override
508 return tree_ssa_loop_done ();
511 }; // class pass_tree_loop_done
513 } // anon namespace
515 gimple_opt_pass *
516 make_pass_tree_loop_done (gcc::context *ctxt)
518 return new pass_tree_loop_done (ctxt);
521 /* Calls CBCK for each index in memory reference ADDR_P. There are two
522 kinds situations handled; in each of these cases, the memory reference
523 and DATA are passed to the callback:
525 Access to an array: ARRAY_{RANGE_}REF (base, index). In this case we also
526 pass the pointer to the index to the callback.
528 Pointer dereference: INDIRECT_REF (addr). In this case we also pass the
529 pointer to addr to the callback.
531 If the callback returns false, the whole search stops and false is returned.
532 Otherwise the function returns true after traversing through the whole
533 reference *ADDR_P. */
535 bool
536 for_each_index (tree *addr_p, bool (*cbck) (tree, tree *, void *), void *data)
538 tree *nxt, *idx;
540 for (; ; addr_p = nxt)
542 switch (TREE_CODE (*addr_p))
544 case SSA_NAME:
545 return cbck (*addr_p, addr_p, data);
547 case MEM_REF:
548 nxt = &TREE_OPERAND (*addr_p, 0);
549 return cbck (*addr_p, nxt, data);
551 case BIT_FIELD_REF:
552 case VIEW_CONVERT_EXPR:
553 case REALPART_EXPR:
554 case IMAGPART_EXPR:
555 nxt = &TREE_OPERAND (*addr_p, 0);
556 break;
558 case COMPONENT_REF:
559 /* If the component has varying offset, it behaves like index
560 as well. */
561 idx = &TREE_OPERAND (*addr_p, 2);
562 if (*idx
563 && !cbck (*addr_p, idx, data))
564 return false;
566 nxt = &TREE_OPERAND (*addr_p, 0);
567 break;
569 case ARRAY_REF:
570 case ARRAY_RANGE_REF:
571 nxt = &TREE_OPERAND (*addr_p, 0);
572 if (!cbck (*addr_p, &TREE_OPERAND (*addr_p, 1), data))
573 return false;
574 break;
576 case CONSTRUCTOR:
577 return true;
579 case ADDR_EXPR:
580 gcc_assert (is_gimple_min_invariant (*addr_p));
581 return true;
583 case TARGET_MEM_REF:
584 idx = &TMR_BASE (*addr_p);
585 if (*idx
586 && !cbck (*addr_p, idx, data))
587 return false;
588 idx = &TMR_INDEX (*addr_p);
589 if (*idx
590 && !cbck (*addr_p, idx, data))
591 return false;
592 idx = &TMR_INDEX2 (*addr_p);
593 if (*idx
594 && !cbck (*addr_p, idx, data))
595 return false;
596 return true;
598 default:
599 if (DECL_P (*addr_p)
600 || CONSTANT_CLASS_P (*addr_p))
601 return true;
602 gcc_unreachable ();
608 /* The name and the length of the currently generated variable
609 for lsm. */
610 #define MAX_LSM_NAME_LENGTH 40
611 static char lsm_tmp_name[MAX_LSM_NAME_LENGTH + 1];
612 static int lsm_tmp_name_length;
614 /* Adds S to lsm_tmp_name. */
616 static void
617 lsm_tmp_name_add (const char *s)
619 int l = strlen (s) + lsm_tmp_name_length;
620 if (l > MAX_LSM_NAME_LENGTH)
621 return;
623 strcpy (lsm_tmp_name + lsm_tmp_name_length, s);
624 lsm_tmp_name_length = l;
627 /* Stores the name for temporary variable that replaces REF to
628 lsm_tmp_name. */
630 static void
631 gen_lsm_tmp_name (tree ref)
633 const char *name;
635 switch (TREE_CODE (ref))
637 case MEM_REF:
638 case TARGET_MEM_REF:
639 gen_lsm_tmp_name (TREE_OPERAND (ref, 0));
640 lsm_tmp_name_add ("_");
641 break;
643 case ADDR_EXPR:
644 gen_lsm_tmp_name (TREE_OPERAND (ref, 0));
645 break;
647 case BIT_FIELD_REF:
648 case VIEW_CONVERT_EXPR:
649 case ARRAY_RANGE_REF:
650 gen_lsm_tmp_name (TREE_OPERAND (ref, 0));
651 break;
653 case REALPART_EXPR:
654 gen_lsm_tmp_name (TREE_OPERAND (ref, 0));
655 lsm_tmp_name_add ("_RE");
656 break;
658 case IMAGPART_EXPR:
659 gen_lsm_tmp_name (TREE_OPERAND (ref, 0));
660 lsm_tmp_name_add ("_IM");
661 break;
663 case COMPONENT_REF:
664 gen_lsm_tmp_name (TREE_OPERAND (ref, 0));
665 lsm_tmp_name_add ("_");
666 name = get_name (TREE_OPERAND (ref, 1));
667 if (!name)
668 name = "F";
669 lsm_tmp_name_add (name);
670 break;
672 case ARRAY_REF:
673 gen_lsm_tmp_name (TREE_OPERAND (ref, 0));
674 lsm_tmp_name_add ("_I");
675 break;
677 case SSA_NAME:
678 case VAR_DECL:
679 case PARM_DECL:
680 case FUNCTION_DECL:
681 case LABEL_DECL:
682 name = get_name (ref);
683 if (!name)
684 name = "D";
685 lsm_tmp_name_add (name);
686 break;
688 case STRING_CST:
689 lsm_tmp_name_add ("S");
690 break;
692 case RESULT_DECL:
693 lsm_tmp_name_add ("R");
694 break;
696 case INTEGER_CST:
697 default:
698 /* Nothing. */
699 break;
703 /* Determines name for temporary variable that replaces REF.
704 The name is accumulated into the lsm_tmp_name variable.
705 N is added to the name of the temporary. */
707 char *
708 get_lsm_tmp_name (tree ref, unsigned n, const char *suffix)
710 char ns[2];
712 lsm_tmp_name_length = 0;
713 gen_lsm_tmp_name (ref);
714 lsm_tmp_name_add ("_lsm");
715 if (n < 10)
717 ns[0] = '0' + n;
718 ns[1] = 0;
719 lsm_tmp_name_add (ns);
721 if (suffix != NULL)
722 lsm_tmp_name_add (suffix);
723 return lsm_tmp_name;
726 /* Computes an estimated number of insns in LOOP, weighted by WEIGHTS. */
728 unsigned
729 tree_num_loop_insns (class loop *loop, eni_weights *weights)
731 basic_block *body = get_loop_body (loop);
732 gimple_stmt_iterator gsi;
733 unsigned size = 0, i;
735 for (i = 0; i < loop->num_nodes; i++)
736 for (gsi = gsi_start_bb (body[i]); !gsi_end_p (gsi); gsi_next (&gsi))
737 size += estimate_num_insns (gsi_stmt (gsi), weights);
738 free (body);
740 return size;