LCOV - code coverage report
Current view: top level - gcc - tree-ssa-propagate.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 95.4 % 539 514
Test Date: 2024-04-13 14:00:49 Functions: 96.4 % 28 27
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /* Generic SSA value propagation engine.
       2                 :             :    Copyright (C) 2004-2024 Free Software Foundation, Inc.
       3                 :             :    Contributed by Diego Novillo <dnovillo@redhat.com>
       4                 :             : 
       5                 :             :    This file is part of GCC.
       6                 :             : 
       7                 :             :    GCC is free software; you can redistribute it and/or modify it
       8                 :             :    under the terms of the GNU General Public License as published by the
       9                 :             :    Free Software Foundation; either version 3, or (at your option) any
      10                 :             :    later version.
      11                 :             : 
      12                 :             :    GCC is distributed in the hope that it will be useful, but WITHOUT
      13                 :             :    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
      14                 :             :    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      15                 :             :    for more details.
      16                 :             : 
      17                 :             :    You should have received a copy of the GNU General Public License
      18                 :             :    along with GCC; see the file COPYING3.  If not see
      19                 :             :    <http://www.gnu.org/licenses/>.  */
      20                 :             : 
      21                 :             : #include "config.h"
      22                 :             : #include "system.h"
      23                 :             : #include "coretypes.h"
      24                 :             : #include "backend.h"
      25                 :             : #include "tree.h"
      26                 :             : #include "gimple.h"
      27                 :             : #include "ssa.h"
      28                 :             : #include "gimple-pretty-print.h"
      29                 :             : #include "dumpfile.h"
      30                 :             : #include "gimple-iterator.h"
      31                 :             : #include "gimple-fold.h"
      32                 :             : #include "tree-eh.h"
      33                 :             : #include "gimplify.h"
      34                 :             : #include "tree-cfg.h"
      35                 :             : #include "tree-ssa.h"
      36                 :             : #include "tree-ssa-propagate.h"
      37                 :             : #include "domwalk.h"
      38                 :             : #include "cfgloop.h"
      39                 :             : #include "tree-cfgcleanup.h"
      40                 :             : #include "cfganal.h"
      41                 :             : #include "tree-ssa-dce.h"
      42                 :             : 
      43                 :             : /* This file implements a generic value propagation engine based on
      44                 :             :    the same propagation used by the SSA-CCP algorithm [1].
      45                 :             : 
      46                 :             :    Propagation is performed by simulating the execution of every
      47                 :             :    statement that produces the value being propagated.  Simulation
      48                 :             :    proceeds as follows:
      49                 :             : 
      50                 :             :    1- Initially, all edges of the CFG are marked not executable and
      51                 :             :       the CFG worklist is seeded with all the statements in the entry
      52                 :             :       basic block (block 0).
      53                 :             : 
      54                 :             :    2- Every statement S is simulated with a call to the call-back
      55                 :             :       function SSA_PROP_VISIT_STMT.  This evaluation may produce 3
      56                 :             :       results:
      57                 :             : 
      58                 :             :         SSA_PROP_NOT_INTERESTING: Statement S produces nothing of
      59                 :             :             interest and does not affect any of the work lists.
      60                 :             :             The statement may be simulated again if any of its input
      61                 :             :             operands change in future iterations of the simulator.
      62                 :             : 
      63                 :             :         SSA_PROP_VARYING: The value produced by S cannot be determined
      64                 :             :             at compile time.  Further simulation of S is not required.
      65                 :             :             If S is a conditional jump, all the outgoing edges for the
      66                 :             :             block are considered executable and added to the work
      67                 :             :             list.
      68                 :             : 
      69                 :             :         SSA_PROP_INTERESTING: S produces a value that can be computed
      70                 :             :             at compile time.  Its result can be propagated into the
      71                 :             :             statements that feed from S.  Furthermore, if S is a
      72                 :             :             conditional jump, only the edge known to be taken is added
      73                 :             :             to the work list.  Edges that are known not to execute are
      74                 :             :             never simulated.
      75                 :             : 
      76                 :             :    3- PHI nodes are simulated with a call to SSA_PROP_VISIT_PHI.  The
      77                 :             :       return value from SSA_PROP_VISIT_PHI has the same semantics as
      78                 :             :       described in #2.
      79                 :             : 
      80                 :             :    4- Three work lists are kept.  Statements are only added to these
      81                 :             :       lists if they produce one of SSA_PROP_INTERESTING or
      82                 :             :       SSA_PROP_VARYING.
      83                 :             : 
      84                 :             :         CFG_BLOCKS contains the list of blocks to be simulated.
      85                 :             :             Blocks are added to this list if their incoming edges are
      86                 :             :             found executable.
      87                 :             : 
      88                 :             :         SSA_EDGE_WORKLIST contains the list of statements that we 
      89                 :             :             need to revisit.
      90                 :             : 
      91                 :             :    5- Simulation terminates when all three work lists are drained.
      92                 :             : 
      93                 :             :    Before calling ssa_propagate, it is important to clear
      94                 :             :    prop_simulate_again_p for all the statements in the program that
      95                 :             :    should be simulated.  This initialization allows an implementation
      96                 :             :    to specify which statements should never be simulated.
      97                 :             : 
      98                 :             :    It is also important to compute def-use information before calling
      99                 :             :    ssa_propagate.
     100                 :             : 
     101                 :             :    References:
     102                 :             : 
     103                 :             :      [1] Constant propagation with conditional branches,
     104                 :             :          Wegman and Zadeck, ACM TOPLAS 13(2):181-210.
     105                 :             : 
     106                 :             :      [2] Building an Optimizing Compiler,
     107                 :             :          Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
     108                 :             : 
     109                 :             :      [3] Advanced Compiler Design and Implementation,
     110                 :             :          Steven Muchnick, Morgan Kaufmann, 1997, Section 12.6  */
     111                 :             : 
     112                 :             : /* Worklists of control flow edge destinations.  This contains
     113                 :             :    the CFG order number of the blocks so we can iterate in CFG
     114                 :             :    order by visiting in bit-order.  We use two worklists to
     115                 :             :    first make forward progress before iterating.  */
     116                 :             : static bitmap cfg_blocks;
     117                 :             : static int *bb_to_cfg_order;
     118                 :             : static int *cfg_order_to_bb;
     119                 :             : 
     120                 :             : /* Worklists of SSA edges which will need reexamination as their
     121                 :             :    definition has changed.  SSA edges are def-use edges in the SSA
     122                 :             :    web.  For each D-U edge, we store the target statement or PHI node
     123                 :             :    UID in a bitmap.  UIDs order stmts in execution order.  We use
     124                 :             :    two worklists to first make forward progress before iterating.  */
     125                 :             : static bitmap ssa_edge_worklist;
     126                 :             : static vec<gimple *> uid_to_stmt;
     127                 :             : 
     128                 :             : /* Current RPO index in the iteration.  */
     129                 :             : static int curr_order;
     130                 :             : 
     131                 :             : 
     132                 :             : /* We have just defined a new value for VAR.  If IS_VARYING is true,
     133                 :             :    add all immediate uses of VAR to VARYING_SSA_EDGES, otherwise add
     134                 :             :    them to INTERESTING_SSA_EDGES.  */
     135                 :             : 
     136                 :             : static void
     137                 :   244441309 : add_ssa_edge (tree var)
     138                 :             : {
     139                 :   244441309 :   imm_use_iterator iter;
     140                 :   244441309 :   use_operand_p use_p;
     141                 :             : 
     142                 :   740682203 :   FOR_EACH_IMM_USE_FAST (use_p, iter, var)
     143                 :             :     {
     144                 :   496240894 :       gimple *use_stmt = USE_STMT (use_p);
     145                 :   496240894 :       if (!prop_simulate_again_p (use_stmt))
     146                 :   208324998 :         continue;
     147                 :             : 
     148                 :             :       /* If we did not yet simulate the block wait for this to happen
     149                 :             :          and do not add the stmt to the SSA edge worklist.  */
     150                 :   287915896 :       basic_block use_bb = gimple_bb (use_stmt);
     151                 :   287915896 :       if (! (use_bb->flags & BB_VISITED))
     152                 :   118193242 :         continue;
     153                 :             : 
     154                 :             :       /* If this is a use on a not yet executable edge do not bother to
     155                 :             :          queue it.  */
     156                 :   169722654 :       if (gimple_code (use_stmt) == GIMPLE_PHI
     157                 :   169722654 :           && !(EDGE_PRED (use_bb, PHI_ARG_INDEX_FROM_USE (use_p))->flags
     158                 :    53816180 :                & EDGE_EXECUTABLE))
     159                 :     4864845 :         continue;
     160                 :             : 
     161                 :   164857809 :       if (bitmap_set_bit (ssa_edge_worklist, gimple_uid (use_stmt)))
     162                 :             :         {
     163                 :   152721943 :           uid_to_stmt[gimple_uid (use_stmt)] = use_stmt;
     164                 :   152721943 :           if (dump_file && (dump_flags & TDF_DETAILS))
     165                 :             :             {
     166                 :           0 :               fprintf (dump_file, "ssa_edge_worklist: adding SSA use in ");
     167                 :           0 :               print_gimple_stmt (dump_file, use_stmt, 0, TDF_SLIM);
     168                 :             :             }
     169                 :             :         }
     170                 :             :     }
     171                 :   244441309 : }
     172                 :             : 
     173                 :             : 
     174                 :             : /* Add edge E to the control flow worklist.  */
     175                 :             : 
     176                 :             : static void
     177                 :   121291757 : add_control_edge (edge e)
     178                 :             : {
     179                 :   121291757 :   basic_block bb = e->dest;
     180                 :   121291757 :   if (bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
     181                 :             :     return;
     182                 :             : 
     183                 :             :   /* If the edge had already been executed, skip it.  */
     184                 :   107105623 :   if (e->flags & EDGE_EXECUTABLE)
     185                 :             :     return;
     186                 :             : 
     187                 :    91932614 :   e->flags |= EDGE_EXECUTABLE;
     188                 :             : 
     189                 :    91932614 :   int bb_order = bb_to_cfg_order[bb->index];
     190                 :    91932614 :   bitmap_set_bit (cfg_blocks, bb_order);
     191                 :             : 
     192                 :    91932614 :   if (dump_file && (dump_flags & TDF_DETAILS))
     193                 :          29 :     fprintf (dump_file, "Adding destination of edge (%d -> %d) to worklist\n",
     194                 :          29 :         e->src->index, e->dest->index);
     195                 :             : }
     196                 :             : 
     197                 :             : 
     198                 :             : /* Simulate the execution of STMT and update the work lists accordingly.  */
     199                 :             : 
     200                 :             : void
     201                 :   646046869 : ssa_propagation_engine::simulate_stmt (gimple *stmt)
     202                 :             : {
     203                 :   646046869 :   enum ssa_prop_result val = SSA_PROP_NOT_INTERESTING;
     204                 :   646046869 :   edge taken_edge = NULL;
     205                 :   646046869 :   tree output_name = NULL_TREE;
     206                 :             : 
     207                 :             :   /* Pull the stmt off the SSA edge worklist.  */
     208                 :   646046869 :   bitmap_clear_bit (ssa_edge_worklist, gimple_uid (stmt));
     209                 :             : 
     210                 :             :   /* Don't bother visiting statements that are already
     211                 :             :      considered varying by the propagator.  */
     212                 :   646046869 :   if (!prop_simulate_again_p (stmt))
     213                 :   445769518 :     return;
     214                 :             : 
     215                 :   306262173 :   if (gimple_code (stmt) == GIMPLE_PHI)
     216                 :             :     {
     217                 :    66500340 :       val = visit_phi (as_a <gphi *> (stmt));
     218                 :    66500340 :       output_name = gimple_phi_result (stmt);
     219                 :             :     }
     220                 :             :   else
     221                 :   239761833 :     val = visit_stmt (stmt, &taken_edge, &output_name);
     222                 :             : 
     223                 :   306262173 :   if (val == SSA_PROP_VARYING)
     224                 :             :     {
     225                 :   105984822 :       prop_set_simulate_again (stmt, false);
     226                 :             : 
     227                 :             :       /* If the statement produced a new varying value, add the SSA
     228                 :             :          edges coming out of OUTPUT_NAME.  */
     229                 :   105984822 :       if (output_name)
     230                 :    64206797 :         add_ssa_edge (output_name);
     231                 :             : 
     232                 :             :       /* If STMT transfers control out of its basic block, add
     233                 :             :          all outgoing edges to the work list.  */
     234                 :   105984822 :       if (stmt_ends_bb_p (stmt))
     235                 :             :         {
     236                 :    43186510 :           edge e;
     237                 :    43186510 :           edge_iterator ei;
     238                 :    43186510 :           basic_block bb = gimple_bb (stmt);
     239                 :   111883558 :           FOR_EACH_EDGE (e, ei, bb->succs)
     240                 :    68697048 :             add_control_edge (e);
     241                 :             :         }
     242                 :   105984822 :       return;
     243                 :             :     }
     244                 :   200277351 :   else if (val == SSA_PROP_INTERESTING)
     245                 :             :     {
     246                 :             :       /* If the statement produced new value, add the SSA edges coming
     247                 :             :          out of OUTPUT_NAME.  */
     248                 :   186066571 :       if (output_name)
     249                 :   180234512 :         add_ssa_edge (output_name);
     250                 :             : 
     251                 :             :       /* If we know which edge is going to be taken out of this block,
     252                 :             :          add it to the CFG work list.  */
     253                 :   186066571 :       if (taken_edge)
     254                 :     5832059 :         add_control_edge (taken_edge);
     255                 :             :     }
     256                 :             : 
     257                 :             :   /* If there are no SSA uses on the stmt whose defs are simulated
     258                 :             :      again then this stmt will be never visited again.  */
     259                 :   200277351 :   bool has_simulate_again_uses = false;
     260                 :   200277351 :   use_operand_p use_p;
     261                 :   200277351 :   ssa_op_iter iter;
     262                 :   200277351 :   if (gimple_code  (stmt) == GIMPLE_PHI)
     263                 :             :     {
     264                 :    55096166 :       edge_iterator ei;
     265                 :    55096166 :       edge e;
     266                 :    55096166 :       tree arg;
     267                 :    86549364 :       FOR_EACH_EDGE (e, ei, gimple_bb (stmt)->preds)
     268                 :    84821605 :         if (!(e->flags & EDGE_EXECUTABLE)
     269                 :    84821605 :             || ((arg = PHI_ARG_DEF_FROM_EDGE (stmt, e))
     270                 :    78289751 :                 && TREE_CODE (arg) == SSA_NAME
     271                 :    64292328 :                 && !SSA_NAME_IS_DEFAULT_DEF (arg)
     272                 :    64100861 :                 && prop_simulate_again_p (SSA_NAME_DEF_STMT (arg))))
     273                 :             :           {
     274                 :             :             has_simulate_again_uses = true;
     275                 :             :             break;
     276                 :             :           }
     277                 :             :     }
     278                 :             :   else
     279                 :   178657758 :     FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_USE)
     280                 :             :       {
     281                 :   144359371 :         gimple *def_stmt = SSA_NAME_DEF_STMT (USE_FROM_PTR (use_p));
     282                 :   144359371 :         if (!gimple_nop_p (def_stmt)
     283                 :   144359371 :             && prop_simulate_again_p (def_stmt))
     284                 :             :           {
     285                 :             :             has_simulate_again_uses = true;
     286                 :             :             break;
     287                 :             :           }
     288                 :             :       }
     289                 :   200277351 :   if (!has_simulate_again_uses)
     290                 :             :     {
     291                 :    36026146 :       if (dump_file && (dump_flags & TDF_DETAILS))
     292                 :          35 :         fprintf (dump_file, "marking stmt to be not simulated again\n");
     293                 :    36026146 :       prop_set_simulate_again (stmt, false);
     294                 :             :     }
     295                 :             : }
     296                 :             : 
     297                 :             : 
     298                 :             : /* Simulate the execution of BLOCK.  Evaluate the statement associated
     299                 :             :    with each variable reference inside the block.  */
     300                 :             : 
     301                 :             : void
     302                 :    69628667 : ssa_propagation_engine::simulate_block (basic_block block)
     303                 :             : {
     304                 :    69628667 :   gimple_stmt_iterator gsi;
     305                 :             : 
     306                 :             :   /* There is nothing to do for the exit block.  */
     307                 :    69628667 :   if (block == EXIT_BLOCK_PTR_FOR_FN (cfun))
     308                 :    69628667 :     return;
     309                 :             : 
     310                 :    69628667 :   if (dump_file && (dump_flags & TDF_DETAILS))
     311                 :          27 :     fprintf (dump_file, "\nSimulating block %d\n", block->index);
     312                 :             : 
     313                 :             :   /* Always simulate PHI nodes, even if we have simulated this block
     314                 :             :      before.  */
     315                 :   106321699 :   for (gsi = gsi_start_phis (block); !gsi_end_p (gsi); gsi_next (&gsi))
     316                 :    36693032 :     simulate_stmt (gsi_stmt (gsi));
     317                 :             : 
     318                 :             :   /* If this is the first time we've simulated this block, then we
     319                 :             :      must simulate each of its statements.  */
     320                 :    69628667 :   if (! (block->flags & BB_VISITED))
     321                 :             :     {
     322                 :    65174464 :       gimple_stmt_iterator j;
     323                 :    65174464 :       unsigned int normal_edge_count;
     324                 :    65174464 :       edge e, normal_edge;
     325                 :    65174464 :       edge_iterator ei;
     326                 :             : 
     327                 :   587062386 :       for (j = gsi_start_bb (block); !gsi_end_p (j); gsi_next (&j))
     328                 :   456713458 :         simulate_stmt (gsi_stmt (j));
     329                 :             : 
     330                 :             :       /* Note that we have simulated this block.  */
     331                 :    65174464 :       block->flags |= BB_VISITED;
     332                 :             : 
     333                 :             :       /* We cannot predict when abnormal and EH edges will be executed, so
     334                 :             :          once a block is considered executable, we consider any
     335                 :             :          outgoing abnormal edges as executable.
     336                 :             : 
     337                 :             :          TODO: This is not exactly true.  Simplifying statement might
     338                 :             :          prove it non-throwing and also computed goto can be handled
     339                 :             :          when destination is known.
     340                 :             : 
     341                 :             :          At the same time, if this block has only one successor that is
     342                 :             :          reached by non-abnormal edges, then add that successor to the
     343                 :             :          worklist.  */
     344                 :    65174464 :       normal_edge_count = 0;
     345                 :    65174464 :       normal_edge = NULL;
     346                 :   157254221 :       FOR_EACH_EDGE (e, ei, block->succs)
     347                 :             :         {
     348                 :    92079757 :           if (e->flags & (EDGE_ABNORMAL | EDGE_EH))
     349                 :     6497408 :             add_control_edge (e);
     350                 :             :           else
     351                 :             :             {
     352                 :    85582349 :               normal_edge_count++;
     353                 :    85582349 :               normal_edge = e;
     354                 :             :             }
     355                 :             :         }
     356                 :             : 
     357                 :    65174464 :       if (normal_edge_count == 1)
     358                 :    33019242 :         add_control_edge (normal_edge);
     359                 :             :     }
     360                 :             : }
     361                 :             : 
     362                 :             : 
     363                 :             : /* Initialize local data structures and work lists.  */
     364                 :             : 
     365                 :             : static void
     366                 :     7246000 : ssa_prop_init (void)
     367                 :             : {
     368                 :     7246000 :   edge e;
     369                 :     7246000 :   edge_iterator ei;
     370                 :     7246000 :   basic_block bb;
     371                 :             : 
     372                 :             :   /* Worklists of SSA edges.  */
     373                 :     7246000 :   ssa_edge_worklist = BITMAP_ALLOC (NULL);
     374                 :     7246000 :   bitmap_tree_view (ssa_edge_worklist);
     375                 :             : 
     376                 :             :   /* Worklist of basic-blocks.  */
     377                 :     7246000 :   bb_to_cfg_order = XNEWVEC (int, last_basic_block_for_fn (cfun) + 1);
     378                 :     7246000 :   cfg_order_to_bb = XNEWVEC (int, n_basic_blocks_for_fn (cfun));
     379                 :     7246000 :   int n = pre_and_rev_post_order_compute_fn (cfun, NULL,
     380                 :             :                                              cfg_order_to_bb, false);
     381                 :    72747462 :   for (int i = 0; i < n; ++i)
     382                 :    65501462 :     bb_to_cfg_order[cfg_order_to_bb[i]] = i;
     383                 :     7246000 :   cfg_blocks = BITMAP_ALLOC (NULL);
     384                 :             : 
     385                 :             :   /* Initially assume that every edge in the CFG is not executable.
     386                 :             :      (including the edges coming out of the entry block).  Mark blocks
     387                 :             :      as not visited, blocks not yet visited will have all their statements
     388                 :             :      simulated once an incoming edge gets executable.  */
     389                 :     7246000 :   set_gimple_stmt_max_uid (cfun, 0);
     390                 :    72747462 :   for (int i = 0; i < n; ++i)
     391                 :             :     {
     392                 :    65501462 :       gimple_stmt_iterator si;
     393                 :    65501462 :       bb = BASIC_BLOCK_FOR_FN (cfun, cfg_order_to_bb[i]);
     394                 :             : 
     395                 :    92541445 :       for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
     396                 :             :         {
     397                 :    27039983 :           gimple *stmt = gsi_stmt (si);
     398                 :    27039983 :           gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
     399                 :             :         }
     400                 :             : 
     401                 :   588801766 :       for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
     402                 :             :         {
     403                 :   457798842 :           gimple *stmt = gsi_stmt (si);
     404                 :   457798842 :           gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
     405                 :             :         }
     406                 :             : 
     407                 :    65501462 :       bb->flags &= ~BB_VISITED;
     408                 :   157905293 :       FOR_EACH_EDGE (e, ei, bb->succs)
     409                 :    92403831 :         e->flags &= ~EDGE_EXECUTABLE;
     410                 :             :     }
     411                 :     7246000 :   uid_to_stmt.safe_grow (gimple_stmt_max_uid (cfun), true);
     412                 :     7246000 : }
     413                 :             : 
     414                 :             : 
     415                 :             : /* Free allocated storage.  */
     416                 :             : 
     417                 :             : static void
     418                 :     7246000 : ssa_prop_fini (void)
     419                 :             : {
     420                 :     7246000 :   BITMAP_FREE (cfg_blocks);
     421                 :     7246000 :   free (bb_to_cfg_order);
     422                 :     7246000 :   free (cfg_order_to_bb);
     423                 :     7246000 :   BITMAP_FREE (ssa_edge_worklist);
     424                 :     7246000 :   uid_to_stmt.release ();
     425                 :     7246000 : }
     426                 :             : 
     427                 :             : 
     428                 :             : /* Entry point to the propagation engine.
     429                 :             : 
     430                 :             :    The VISIT_STMT virtual function is called for every statement
     431                 :             :    visited and the VISIT_PHI virtual function is called for every PHI
     432                 :             :    node visited.  */
     433                 :             : 
     434                 :             : void
     435                 :     7246000 : ssa_propagation_engine::ssa_propagate (void)
     436                 :             : {
     437                 :     7246000 :   ssa_prop_init ();
     438                 :             : 
     439                 :     7246000 :   curr_order = 0;
     440                 :             : 
     441                 :             :   /* Iterate until the worklists are empty.  We iterate both blocks
     442                 :             :      and stmts in RPO order, prioritizing backedge processing.
     443                 :             :      Seed the algorithm by adding the successors of the entry block to the
     444                 :             :      edge worklist.  */
     445                 :     7246000 :   edge e;
     446                 :     7246000 :   edge_iterator ei;
     447                 :    14492000 :   FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs)
     448                 :             :     {
     449                 :     7246000 :       e->flags &= ~EDGE_EXECUTABLE;
     450                 :     7246000 :       add_control_edge (e);
     451                 :             :     }
     452                 :   229515046 :   while (1)
     453                 :             :     {
     454                 :   229515046 :       int next_block_order = (bitmap_empty_p (cfg_blocks)
     455                 :   229515046 :                               ? -1 : bitmap_first_set_bit (cfg_blocks));
     456                 :   229515046 :       int next_stmt_uid = (bitmap_empty_p (ssa_edge_worklist)
     457                 :   229515046 :                            ? -1 : bitmap_first_set_bit (ssa_edge_worklist));
     458                 :   229515046 :       if (next_block_order == -1 && next_stmt_uid == -1)
     459                 :             :         break;
     460                 :             : 
     461                 :   222269046 :       int next_stmt_bb_order = -1;
     462                 :   222269046 :       gimple *next_stmt = NULL;
     463                 :   222269046 :       if (next_stmt_uid != -1)
     464                 :             :         {
     465                 :   155996705 :           next_stmt = uid_to_stmt[next_stmt_uid];
     466                 :   155996705 :           next_stmt_bb_order = bb_to_cfg_order[gimple_bb (next_stmt)->index];
     467                 :             :         }
     468                 :             : 
     469                 :             :       /* Pull the next block to simulate off the worklist if it comes first.  */
     470                 :   222269046 :       if (next_block_order != -1
     471                 :   195404271 :           && (next_stmt_bb_order == -1
     472                 :   195404271 :               || next_block_order <= next_stmt_bb_order))
     473                 :             :         {
     474                 :    69628667 :           curr_order = next_block_order;
     475                 :    69628667 :           bitmap_clear_bit (cfg_blocks, next_block_order);
     476                 :    69628667 :           basic_block bb
     477                 :    69628667 :             = BASIC_BLOCK_FOR_FN (cfun, cfg_order_to_bb [next_block_order]);
     478                 :    69628667 :           simulate_block (bb);
     479                 :    69628667 :         }
     480                 :             :       /* Else simulate from the SSA edge worklist.  */
     481                 :             :       else
     482                 :             :         {
     483                 :   152640379 :           curr_order = next_stmt_bb_order;
     484                 :   152640379 :           if (dump_file && (dump_flags & TDF_DETAILS))
     485                 :             :             {
     486                 :           0 :               fprintf (dump_file, "\nSimulating statement: ");
     487                 :           0 :               print_gimple_stmt (dump_file, next_stmt, 0, dump_flags);
     488                 :             :             }
     489                 :   152640379 :           simulate_stmt (next_stmt);
     490                 :             :         }
     491                 :             :     }
     492                 :             : 
     493                 :     7246000 :   ssa_prop_fini ();
     494                 :     7246000 : }
     495                 :             : 
     496                 :             : /* Return true if STMT is of the form 'mem_ref = RHS', where 'mem_ref'
     497                 :             :    is a non-volatile pointer dereference, a structure reference or a
     498                 :             :    reference to a single _DECL.  Ignore volatile memory references
     499                 :             :    because they are not interesting for the optimizers.  */
     500                 :             : 
     501                 :             : bool
     502                 :    21985147 : stmt_makes_single_store (gimple *stmt)
     503                 :             : {
     504                 :    21985147 :   tree lhs;
     505                 :             : 
     506                 :    21985147 :   if (gimple_code (stmt) != GIMPLE_ASSIGN
     507                 :    21985147 :       && gimple_code (stmt) != GIMPLE_CALL)
     508                 :             :     return false;
     509                 :             : 
     510                 :    21999631 :   if (!gimple_vdef (stmt))
     511                 :             :     return false;
     512                 :             : 
     513                 :     2397148 :   lhs = gimple_get_lhs (stmt);
     514                 :             : 
     515                 :             :   /* A call statement may have a null LHS.  */
     516                 :     2397148 :   if (!lhs)
     517                 :             :     return false;
     518                 :             : 
     519                 :     2397148 :   return (!TREE_THIS_VOLATILE (lhs)
     520                 :     2397148 :           && (DECL_P (lhs)
     521                 :     2382664 :               || REFERENCE_CLASS_P (lhs)));
     522                 :             : }
     523                 :             : 
     524                 :             : 
     525                 :             : /* Propagation statistics.  */
     526                 :             : struct prop_stats_d
     527                 :             : {
     528                 :             :   long num_const_prop;
     529                 :             :   long num_copy_prop;
     530                 :             :   long num_stmts_folded;
     531                 :             : };
     532                 :             : 
     533                 :             : static struct prop_stats_d prop_stats;
     534                 :             : 
     535                 :             : // range_query default methods to drive from a value_of_expr() ranther than
     536                 :             : // range_of_expr.
     537                 :             : 
     538                 :             : tree
     539                 :    46537870 : substitute_and_fold_engine::value_on_edge (edge, tree expr)
     540                 :             : {
     541                 :    46537870 :   return value_of_expr (expr);
     542                 :             : }
     543                 :             : 
     544                 :             : tree
     545                 :   116613964 : substitute_and_fold_engine::value_of_stmt (gimple *stmt, tree name)
     546                 :             : {
     547                 :   116613964 :   if (!name)
     548                 :           0 :     name = gimple_get_lhs (stmt);
     549                 :             : 
     550                 :   116613964 :   gcc_checking_assert (!name || name == gimple_get_lhs (stmt));
     551                 :             : 
     552                 :   116613964 :   if (name)
     553                 :   116613964 :     return value_of_expr (name);
     554                 :             :   return NULL_TREE;
     555                 :             : }
     556                 :             : 
     557                 :             : bool
     558                 :           0 : substitute_and_fold_engine::range_of_expr (vrange &, tree, gimple *)
     559                 :             : {
     560                 :           0 :   return false;
     561                 :             : }
     562                 :             : 
     563                 :             : /* Replace USE references in statement STMT with the values stored in
     564                 :             :    PROP_VALUE. Return true if at least one reference was replaced.  */
     565                 :             : 
     566                 :             : bool
     567                 :   635895816 : substitute_and_fold_engine::replace_uses_in (gimple *stmt)
     568                 :             : {
     569                 :   635895816 :   bool replaced = false;
     570                 :   635895816 :   use_operand_p use;
     571                 :   635895816 :   ssa_op_iter iter;
     572                 :             : 
     573                 :   959752852 :   FOR_EACH_SSA_USE_OPERAND (use, stmt, iter, SSA_OP_USE)
     574                 :             :     {
     575                 :   323857036 :       tree tuse = USE_FROM_PTR (use);
     576                 :   323857036 :       tree val = value_of_expr (tuse, stmt);
     577                 :             : 
     578                 :   323857036 :       if (val == tuse || val == NULL_TREE)
     579                 :   312042211 :         continue;
     580                 :             : 
     581                 :    11814825 :       if (gimple_code (stmt) == GIMPLE_ASM
     582                 :    11814825 :           && !may_propagate_copy_into_asm (tuse))
     583                 :           0 :         continue;
     584                 :             : 
     585                 :    11814825 :       if (!may_propagate_copy (tuse, val))
     586                 :         363 :         continue;
     587                 :             : 
     588                 :    11814462 :       if (TREE_CODE (val) != SSA_NAME)
     589                 :     4298209 :         prop_stats.num_const_prop++;
     590                 :             :       else
     591                 :     7516253 :         prop_stats.num_copy_prop++;
     592                 :             : 
     593                 :    11814462 :       propagate_value (use, val);
     594                 :             : 
     595                 :    11814462 :       replaced = true;
     596                 :             :     }
     597                 :             : 
     598                 :   635895816 :   return replaced;
     599                 :             : }
     600                 :             : 
     601                 :             : 
     602                 :             : /* Replace propagated values into all the arguments for PHI using the
     603                 :             :    values from PROP_VALUE.  */
     604                 :             : 
     605                 :             : bool
     606                 :    19974974 : substitute_and_fold_engine::replace_phi_args_in (gphi *phi)
     607                 :             : {
     608                 :    19974974 :   size_t i;
     609                 :    19974974 :   bool replaced = false;
     610                 :             : 
     611                 :    65970121 :   for (i = 0; i < gimple_phi_num_args (phi); i++)
     612                 :             :     {
     613                 :    45995147 :       tree arg = gimple_phi_arg_def (phi, i);
     614                 :             : 
     615                 :    45995147 :       if (TREE_CODE (arg) == SSA_NAME)
     616                 :             :         {
     617                 :    32279827 :           edge e = gimple_phi_arg_edge (phi, i);
     618                 :    32279827 :           tree val = value_on_edge (e, arg);
     619                 :             : 
     620                 :    32279827 :           if (val && val != arg && may_propagate_copy (arg, val))
     621                 :             :             {
     622                 :      991920 :               if (TREE_CODE (val) != SSA_NAME)
     623                 :       35485 :                 prop_stats.num_const_prop++;
     624                 :             :               else
     625                 :      956435 :                 prop_stats.num_copy_prop++;
     626                 :             : 
     627                 :      991920 :               propagate_value (PHI_ARG_DEF_PTR (phi, i), val);
     628                 :      991920 :               replaced = true;
     629                 :             : 
     630                 :             :               /* If we propagated a copy and this argument flows
     631                 :             :                  through an abnormal edge, update the replacement
     632                 :             :                  accordingly.  */
     633                 :      991920 :               if (TREE_CODE (val) == SSA_NAME
     634                 :      956435 :                   && e->flags & EDGE_ABNORMAL
     635                 :      991920 :                   && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val))
     636                 :             :                 {
     637                 :             :                   /* This can only occur for virtual operands, since
     638                 :             :                      for the real ones SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val))
     639                 :             :                      would prevent replacement.  */
     640                 :           0 :                   gcc_checking_assert (virtual_operand_p (val));
     641                 :           0 :                   SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val) = 1;
     642                 :             :                 }
     643                 :             :             }
     644                 :             :         }
     645                 :             :     }
     646                 :             : 
     647                 :    19974974 :   if (dump_file && (dump_flags & TDF_DETAILS))
     648                 :             :     {
     649                 :         140 :       if (!replaced)
     650                 :         140 :         fprintf (dump_file, "No folding possible\n");
     651                 :             :       else
     652                 :             :         {
     653                 :           0 :           fprintf (dump_file, "Folded into: ");
     654                 :           0 :           print_gimple_stmt (dump_file, phi, 0, TDF_SLIM);
     655                 :           0 :           fprintf (dump_file, "\n");
     656                 :             :         }
     657                 :             :     }
     658                 :             : 
     659                 :    19974974 :   return replaced;
     660                 :             : }
     661                 :             : 
     662                 :             : 
     663                 :             : class substitute_and_fold_dom_walker : public dom_walker
     664                 :             : {
     665                 :             : public:
     666                 :    11100399 :     substitute_and_fold_dom_walker (cdi_direction direction,
     667                 :             :                                     class substitute_and_fold_engine *engine)
     668                 :    11100399 :         : dom_walker (direction),
     669                 :    11100399 :           something_changed (false),
     670                 :    11100399 :           substitute_and_fold_engine (engine)
     671                 :             :     {
     672                 :    11100399 :       dceworklist = BITMAP_ALLOC (NULL);
     673                 :    11100399 :       stmts_to_fixup.create (0);
     674                 :    11100399 :       need_eh_cleanup = BITMAP_ALLOC (NULL);
     675                 :    11100399 :       need_ab_cleanup = BITMAP_ALLOC (NULL);
     676                 :    11100399 :     }
     677                 :    11100399 :     ~substitute_and_fold_dom_walker ()
     678                 :    11100399 :     {
     679                 :    11100399 :       BITMAP_FREE (dceworklist);
     680                 :    11100399 :       stmts_to_fixup.release ();
     681                 :    11100399 :       BITMAP_FREE (need_eh_cleanup);
     682                 :    11100399 :       BITMAP_FREE (need_ab_cleanup);
     683                 :    11100399 :     }
     684                 :             : 
     685                 :             :     edge before_dom_children (basic_block) final override;
     686                 :   105584421 :     void after_dom_children (basic_block bb) final override
     687                 :             :     {
     688                 :   105584421 :       substitute_and_fold_engine->post_fold_bb (bb);
     689                 :   105584421 :     }
     690                 :             : 
     691                 :             :     bool something_changed;
     692                 :             :     bitmap dceworklist;
     693                 :             :     vec<gimple *> stmts_to_fixup;
     694                 :             :     bitmap need_eh_cleanup;
     695                 :             :     bitmap need_ab_cleanup;
     696                 :             : 
     697                 :             :     class substitute_and_fold_engine *substitute_and_fold_engine;
     698                 :             : 
     699                 :             : private:
     700                 :             :     void foreach_new_stmt_in_bb (gimple_stmt_iterator old_gsi,
     701                 :             :                                  gimple_stmt_iterator new_gsi);
     702                 :             : };
     703                 :             : 
     704                 :             : /* Call post_new_stmt for each new statement that has been added
     705                 :             :    to the current BB.  OLD_GSI is the statement iterator before the BB
     706                 :             :    changes ocurred.  NEW_GSI is the iterator which may contain new
     707                 :             :    statements.  */
     708                 :             : 
     709                 :             : void
     710                 :    13533499 : substitute_and_fold_dom_walker::foreach_new_stmt_in_bb
     711                 :             :                                 (gimple_stmt_iterator old_gsi,
     712                 :             :                                  gimple_stmt_iterator new_gsi)
     713                 :             : {
     714                 :    13533499 :   basic_block bb = gsi_bb (new_gsi);
     715                 :    13533499 :   if (gsi_end_p (old_gsi))
     716                 :     3083590 :     old_gsi = gsi_start_bb (bb);
     717                 :             :   else
     718                 :    11991704 :     gsi_next (&old_gsi);
     719                 :    13591731 :   while (gsi_stmt (old_gsi) != gsi_stmt (new_gsi))
     720                 :             :     {
     721                 :       58232 :       gimple *stmt = gsi_stmt (old_gsi);
     722                 :       58232 :       substitute_and_fold_engine->post_new_stmt (stmt);
     723                 :       58232 :       gsi_next (&old_gsi);
     724                 :             :     }
     725                 :    13533499 : }
     726                 :             : 
     727                 :             : bool
     728                 :   105584421 : substitute_and_fold_engine::propagate_into_phi_args (basic_block bb)
     729                 :             : {
     730                 :   105584421 :   edge e;
     731                 :   105584421 :   edge_iterator ei;
     732                 :   105584421 :   bool propagated = false;
     733                 :             : 
     734                 :             :   /* Visit BB successor PHI nodes and replace PHI args.  */
     735                 :   249715934 :   FOR_EACH_EDGE (e, ei, bb->succs)
     736                 :             :     {
     737                 :   144131513 :       for (gphi_iterator gpi = gsi_start_phis (e->dest);
     738                 :   239146359 :            !gsi_end_p (gpi); gsi_next (&gpi))
     739                 :             :         {
     740                 :    95014846 :           gphi *phi = gpi.phi ();
     741                 :    95014846 :           use_operand_p use_p = PHI_ARG_DEF_PTR_FROM_EDGE (phi, e);
     742                 :    95014846 :           tree arg = USE_FROM_PTR (use_p);
     743                 :   154760974 :           if (TREE_CODE (arg) != SSA_NAME
     744                 :    95014846 :               || virtual_operand_p (arg))
     745                 :    59746128 :             continue;
     746                 :    35268718 :           tree val = value_on_edge (e, arg);
     747                 :    35268718 :           if (val
     748                 :     2667808 :               && is_gimple_min_invariant (val)
     749                 :    36941974 :               && may_propagate_copy (arg, val))
     750                 :             :             {
     751                 :     1671462 :               propagate_value (use_p, val);
     752                 :     1671462 :               propagated = true;
     753                 :             :             }
     754                 :             :         }
     755                 :             :     }
     756                 :   105584421 :   return propagated;
     757                 :             : }
     758                 :             : 
     759                 :             : edge
     760                 :   105584421 : substitute_and_fold_dom_walker::before_dom_children (basic_block bb)
     761                 :             : {
     762                 :   105584421 :   substitute_and_fold_engine->pre_fold_bb (bb);
     763                 :             : 
     764                 :             :   /* Propagate known values into PHI nodes.  */
     765                 :   105584421 :   for (gphi_iterator i = gsi_start_phis (bb);
     766                 :   145814983 :        !gsi_end_p (i);
     767                 :    40230562 :        gsi_next (&i))
     768                 :             :     {
     769                 :    40230562 :       gphi *phi = i.phi ();
     770                 :    40230562 :       tree res = gimple_phi_result (phi);
     771                 :    80461124 :       if (virtual_operand_p (res))
     772                 :    18499383 :         continue;
     773                 :    21731179 :       if (dump_file && (dump_flags & TDF_DETAILS))
     774                 :             :         {
     775                 :         149 :           fprintf (dump_file, "Folding PHI node: ");
     776                 :         149 :           print_gimple_stmt (dump_file, phi, 0, TDF_SLIM);
     777                 :             :         }
     778                 :    21731179 :       if (res && TREE_CODE (res) == SSA_NAME)
     779                 :             :         {
     780                 :    21731179 :           tree sprime = substitute_and_fold_engine->value_of_expr (res, phi);
     781                 :    23487384 :           if (sprime
     782                 :    21731179 :               && sprime != res
     783                 :    21731179 :               && may_propagate_copy (res, sprime))
     784                 :             :             {
     785                 :     1756205 :               if (dump_file && (dump_flags & TDF_DETAILS))
     786                 :             :                 {
     787                 :           9 :                   fprintf (dump_file, "Queued PHI for removal.  Folds to: ");
     788                 :           9 :                   print_generic_expr (dump_file, sprime);
     789                 :           9 :                   fprintf (dump_file, "\n");
     790                 :             :                 }
     791                 :     1756205 :               bitmap_set_bit (dceworklist, SSA_NAME_VERSION (res));
     792                 :     1756205 :               continue;
     793                 :             :             }
     794                 :             :         }
     795                 :    19974974 :       something_changed |= substitute_and_fold_engine->replace_phi_args_in (phi);
     796                 :             :     }
     797                 :             : 
     798                 :             :   /* Propagate known values into stmts.  In some case it exposes
     799                 :             :      more trivially deletable stmts to walk backward.  */
     800                 :   211168842 :   for (gimple_stmt_iterator i = gsi_start_bb (bb);
     801                 :   754391048 :        !gsi_end_p (i);
     802                 :   648806627 :        gsi_next (&i))
     803                 :             :     {
     804                 :   648806627 :       bool did_replace;
     805                 :   648806627 :       gimple *stmt = gsi_stmt (i);
     806                 :             : 
     807                 :   648806627 :       substitute_and_fold_engine->pre_fold_stmt (stmt);
     808                 :             : 
     809                 :   648806627 :       if (dump_file && (dump_flags & TDF_DETAILS))
     810                 :             :         {
     811                 :        1361 :           fprintf (dump_file, "Folding statement: ");
     812                 :        1361 :           print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
     813                 :             :         }
     814                 :             : 
     815                 :             :       /* No point propagating into a stmt we have a value for we
     816                 :             :          can propagate into all uses.  Mark it for removal instead.  */
     817                 :   648806627 :       tree lhs = gimple_get_lhs (stmt);
     818                 :   648806627 :       if (lhs && TREE_CODE (lhs) == SSA_NAME)
     819                 :             :         {
     820                 :   159458397 :           tree sprime = substitute_and_fold_engine->value_of_stmt (stmt, lhs);
     821                 :   172369208 :           if (sprime
     822                 :   159458397 :               && sprime != lhs
     823                 :    12928629 :               && may_propagate_copy (lhs, sprime)
     824                 :    12927400 :               && !stmt_could_throw_p (cfun, stmt)
     825                 :   172372651 :               && !gimple_has_side_effects (stmt))
     826                 :             :             {
     827                 :    12910811 :               if (dump_file && (dump_flags & TDF_DETAILS))
     828                 :             :                 {
     829                 :          49 :                   fprintf (dump_file, "Queued stmt for removal.  Folds to: ");
     830                 :          49 :                   print_generic_expr (dump_file, sprime);
     831                 :          49 :                   fprintf (dump_file, "\n");
     832                 :             :                 }
     833                 :    12910811 :               bitmap_set_bit (dceworklist, SSA_NAME_VERSION (lhs));
     834                 :    12910811 :               continue;
     835                 :             :             }
     836                 :             :         }
     837                 :             : 
     838                 :             :       /* Replace the statement with its folded version and mark it
     839                 :             :          folded.  */
     840                 :   635895816 :       did_replace = false;
     841                 :   635895816 :       gimple *old_stmt = stmt;
     842                 :   635895816 :       bool was_noreturn = false;
     843                 :   635895816 :       bool can_make_abnormal_goto = false;
     844                 :   635895816 :       if (is_gimple_call (stmt))
     845                 :             :         {
     846                 :    47211837 :           was_noreturn = gimple_call_noreturn_p (stmt);
     847                 :    47211837 :           can_make_abnormal_goto = stmt_can_make_abnormal_goto (stmt);
     848                 :             :         }
     849                 :             : 
     850                 :             :       /* Replace real uses in the statement.  */
     851                 :   635895816 :       did_replace |= substitute_and_fold_engine->replace_uses_in (stmt);
     852                 :             : 
     853                 :   635895816 :       gimple_stmt_iterator prev_gsi = i;
     854                 :   635895816 :       gsi_prev (&prev_gsi);
     855                 :             : 
     856                 :             :       /* If we made a replacement, fold the statement.  */
     857                 :   635895816 :       if (did_replace)
     858                 :             :         {
     859                 :    11069351 :           fold_stmt (&i, follow_single_use_edges);
     860                 :    11069351 :           stmt = gsi_stmt (i);
     861                 :    11069351 :           gimple_set_modified (stmt, true);
     862                 :             :         }
     863                 :             :       /* Also fold if we want to fold all statements.  */
     864                 :   624826465 :       else if (substitute_and_fold_engine->fold_all_stmts
     865                 :   624826465 :           && fold_stmt (&i, follow_single_use_edges))
     866                 :             :         {
     867                 :           0 :           did_replace = true;
     868                 :           0 :           stmt = gsi_stmt (i);
     869                 :           0 :           gimple_set_modified (stmt, true);
     870                 :             :         }
     871                 :             : 
     872                 :             :       /* Some statements may be simplified using propagator
     873                 :             :          specific information.  Do this before propagating
     874                 :             :          into the stmt to not disturb pass specific information.  */
     875                 :   635895816 :       update_stmt_if_modified (stmt);
     876                 :   635895816 :       if (substitute_and_fold_engine->fold_stmt (&i))
     877                 :             :         {
     878                 :     2818629 :           did_replace = true;
     879                 :     2818629 :           prop_stats.num_stmts_folded++;
     880                 :     2818629 :           stmt = gsi_stmt (i);
     881                 :     2818629 :           gimple_set_modified (stmt, true);
     882                 :             :         }
     883                 :             : 
     884                 :             :       /* If this is a control statement the propagator left edges
     885                 :             :          unexecuted on force the condition in a way consistent with
     886                 :             :          that.  See PR66945 for cases where the propagator can end
     887                 :             :          up with a different idea of a taken edge than folding
     888                 :             :          (once undefined behavior is involved).  */
     889                 :   635895816 :       if (gimple_code (stmt) == GIMPLE_COND)
     890                 :             :         {
     891                 :    36285341 :           if ((EDGE_SUCC (bb, 0)->flags & EDGE_EXECUTABLE)
     892                 :    36285341 :               ^ (EDGE_SUCC (bb, 1)->flags & EDGE_EXECUTABLE))
     893                 :             :             {
     894                 :      299054 :               if (((EDGE_SUCC (bb, 0)->flags & EDGE_TRUE_VALUE) != 0)
     895                 :      299054 :                   == ((EDGE_SUCC (bb, 0)->flags & EDGE_EXECUTABLE) != 0))
     896                 :       66838 :                 gimple_cond_make_true (as_a <gcond *> (stmt));
     897                 :             :               else
     898                 :      232216 :                 gimple_cond_make_false (as_a <gcond *> (stmt));
     899                 :      299054 :               gimple_set_modified (stmt, true);
     900                 :      299054 :               did_replace = true;
     901                 :             :             }
     902                 :             :         }
     903                 :             : 
     904                 :             :       /* Now cleanup.  */
     905                 :   635895816 :       if (did_replace)
     906                 :             :         {
     907                 :    13533499 :           foreach_new_stmt_in_bb (prev_gsi, i);
     908                 :             : 
     909                 :             :           /* If we cleaned up EH information from the statement,
     910                 :             :              remove EH edges.  */
     911                 :    13533499 :           if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt))
     912                 :      155425 :             bitmap_set_bit (need_eh_cleanup, bb->index);
     913                 :             : 
     914                 :             :           /* If we turned a call with possible abnormal control transfer
     915                 :             :              into one that doesn't, remove abnormal edges.  */
     916                 :    13533499 :           if (can_make_abnormal_goto
     917                 :    13533499 :               && !stmt_can_make_abnormal_goto (stmt))
     918                 :           4 :             bitmap_set_bit (need_ab_cleanup, bb->index);
     919                 :             : 
     920                 :             :           /* If we turned a not noreturn call into a noreturn one
     921                 :             :              schedule it for fixup.  */
     922                 :    13533499 :           if (!was_noreturn
     923                 :    13407212 :               && is_gimple_call (stmt)
     924                 :    14771030 :               && gimple_call_noreturn_p (stmt))
     925                 :          51 :             stmts_to_fixup.safe_push (stmt);
     926                 :             : 
     927                 :    13533499 :           if (gimple_assign_single_p (stmt))
     928                 :             :             {
     929                 :     3023477 :               tree rhs = gimple_assign_rhs1 (stmt);
     930                 :             : 
     931                 :     3023477 :               if (TREE_CODE (rhs) == ADDR_EXPR)
     932                 :      314488 :                 recompute_tree_invariant_for_addr_expr (rhs);
     933                 :             :             }
     934                 :             : 
     935                 :             :           /* Determine what needs to be done to update the SSA form.  */
     936                 :    13533499 :           update_stmt_if_modified (stmt);
     937                 :    13533499 :           if (!is_gimple_debug (stmt))
     938                 :    10458178 :             something_changed = true;
     939                 :             :         }
     940                 :             : 
     941                 :   635895816 :       if (dump_file && (dump_flags & TDF_DETAILS))
     942                 :             :         {
     943                 :        1312 :           if (did_replace)
     944                 :             :             {
     945                 :         141 :               fprintf (dump_file, "Folded into: ");
     946                 :         141 :               print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
     947                 :         141 :               fprintf (dump_file, "\n");
     948                 :             :             }
     949                 :             :           else
     950                 :        1171 :             fprintf (dump_file, "Not folded\n");
     951                 :             :         }
     952                 :             :     }
     953                 :             : 
     954                 :   105584421 :   something_changed |= substitute_and_fold_engine->propagate_into_phi_args (bb);
     955                 :             : 
     956                 :   105584421 :   return NULL;
     957                 :             : }
     958                 :             : 
     959                 :             : 
     960                 :             : 
     961                 :             : /* Perform final substitution and folding of propagated values.
     962                 :             :    Process the whole function if BLOCK is null, otherwise only
     963                 :             :    process the blocks that BLOCK dominates.  In the latter case,
     964                 :             :    it is the caller's responsibility to ensure that dominator
     965                 :             :    information is available and up-to-date.
     966                 :             : 
     967                 :             :    PROP_VALUE[I] contains the single value that should be substituted
     968                 :             :    at every use of SSA name N_I.  If PROP_VALUE is NULL, no values are
     969                 :             :    substituted.
     970                 :             : 
     971                 :             :    If FOLD_FN is non-NULL the function will be invoked on all statements
     972                 :             :    before propagating values for pass specific simplification.
     973                 :             : 
     974                 :             :    DO_DCE is true if trivially dead stmts can be removed.
     975                 :             : 
     976                 :             :    If DO_DCE is true, the statements within a BB are walked from
     977                 :             :    last to first element.  Otherwise we scan from first to last element.
     978                 :             : 
     979                 :             :    Return TRUE when something changed.  */
     980                 :             : 
     981                 :             : bool
     982                 :    11100399 : substitute_and_fold_engine::substitute_and_fold (basic_block block)
     983                 :             : {
     984                 :    11100399 :   if (dump_file && (dump_flags & TDF_DETAILS))
     985                 :         129 :     fprintf (dump_file, "\nSubstituting values and folding statements\n\n");
     986                 :             : 
     987                 :    11100399 :   memset (&prop_stats, 0, sizeof (prop_stats));
     988                 :             : 
     989                 :             :   /* Don't call calculate_dominance_info when iterating over a subgraph.
     990                 :             :      Callers that are using the interface this way are likely to want to
     991                 :             :      iterate over several disjoint subgraphs, and it would be expensive
     992                 :             :      in enable-checking builds to revalidate the whole dominance tree
     993                 :             :      each time.  */
     994                 :    11100399 :   if (block)
     995                 :         960 :     gcc_assert (dom_info_state (CDI_DOMINATORS));
     996                 :             :   else
     997                 :    11099439 :     calculate_dominance_info (CDI_DOMINATORS);
     998                 :    11100399 :   substitute_and_fold_dom_walker walker (CDI_DOMINATORS, this);
     999                 :    11100399 :   walker.walk (block ? block : ENTRY_BLOCK_PTR_FOR_FN (cfun));
    1000                 :             : 
    1001                 :    11100399 :   simple_dce_from_worklist (walker.dceworklist, walker.need_eh_cleanup);
    1002                 :    11100399 :   if (!bitmap_empty_p (walker.need_eh_cleanup))
    1003                 :       36423 :     gimple_purge_all_dead_eh_edges (walker.need_eh_cleanup);
    1004                 :    11100399 :   if (!bitmap_empty_p (walker.need_ab_cleanup))
    1005                 :           4 :     gimple_purge_all_dead_abnormal_call_edges (walker.need_ab_cleanup);
    1006                 :             : 
    1007                 :             :   /* Fixup stmts that became noreturn calls.  This may require splitting
    1008                 :             :      blocks and thus isn't possible during the dominator walk.  Do this
    1009                 :             :      in reverse order so we don't inadvertedly remove a stmt we want to
    1010                 :             :      fixup by visiting a dominating now noreturn call first.  */
    1011                 :    11100450 :   while (!walker.stmts_to_fixup.is_empty ())
    1012                 :             :     {
    1013                 :          51 :       gimple *stmt = walker.stmts_to_fixup.pop ();
    1014                 :           0 :       if (dump_file && dump_flags & TDF_DETAILS)
    1015                 :             :         {
    1016                 :           0 :           fprintf (dump_file, "Fixing up noreturn call ");
    1017                 :           0 :           print_gimple_stmt (dump_file, stmt, 0);
    1018                 :           0 :           fprintf (dump_file, "\n");
    1019                 :             :         }
    1020                 :          51 :       fixup_noreturn_call (stmt);
    1021                 :             :     }
    1022                 :             : 
    1023                 :    11100399 :   statistics_counter_event (cfun, "Constants propagated",
    1024                 :    11100399 :                             prop_stats.num_const_prop);
    1025                 :    11100399 :   statistics_counter_event (cfun, "Copies propagated",
    1026                 :    11100399 :                             prop_stats.num_copy_prop);
    1027                 :    11100399 :   statistics_counter_event (cfun, "Statements folded",
    1028                 :    11100399 :                             prop_stats.num_stmts_folded);
    1029                 :             : 
    1030                 :    11100399 :   return walker.something_changed;
    1031                 :    11100399 : }
    1032                 :             : 
    1033                 :             : 
    1034                 :             : /* Return true if we may propagate ORIG into DEST, false otherwise.
    1035                 :             :    If DEST_NOT_ABNORMAL_PHI_EDGE_P is true then assume the propagation does
    1036                 :             :    not happen into a PHI argument which flows in from an abnormal edge
    1037                 :             :    which relaxes some constraints.  */
    1038                 :             : 
    1039                 :             : bool
    1040                 :   127881158 : may_propagate_copy (tree dest, tree orig, bool dest_not_abnormal_phi_edge_p)
    1041                 :             : {
    1042                 :   127881158 :   tree type_d = TREE_TYPE (dest);
    1043                 :   127881158 :   tree type_o = TREE_TYPE (orig);
    1044                 :             : 
    1045                 :             :   /* If ORIG is a default definition which flows in from an abnormal edge
    1046                 :             :      then the copy can be propagated.  It is important that we do so to avoid
    1047                 :             :      uninitialized copies.  */
    1048                 :   127881158 :   if (TREE_CODE (orig) == SSA_NAME
    1049                 :    89312463 :       && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (orig)
    1050                 :       24710 :       && SSA_NAME_IS_DEFAULT_DEF (orig)
    1051                 :   127884156 :       && (SSA_NAME_VAR (orig) == NULL_TREE
    1052                 :        2998 :           || VAR_P (SSA_NAME_VAR (orig))))
    1053                 :             :     ;
    1054                 :             :   /* Otherwise if ORIG just flows in from an abnormal edge then the copy cannot
    1055                 :             :      be propagated.  */
    1056                 :   127878535 :   else if (TREE_CODE (orig) == SSA_NAME
    1057                 :   127878535 :            && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (orig))
    1058                 :             :     return false;
    1059                 :             :   /* Similarly if DEST flows in from an abnormal edge then the copy cannot be
    1060                 :             :      propagated.  If we know we do not propagate into such a PHI argument this
    1061                 :             :      does not apply.  */
    1062                 :   127856448 :   else if (!dest_not_abnormal_phi_edge_p
    1063                 :    67223666 :            && TREE_CODE (dest) == SSA_NAME
    1064                 :   195080114 :            && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (dest))
    1065                 :             :     return false;
    1066                 :             : 
    1067                 :             :   /* Do not copy between types for which we *do* need a conversion.  */
    1068                 :   127845120 :   if (!useless_type_conversion_p (type_d, type_o))
    1069                 :             :     return false;
    1070                 :             : 
    1071                 :             :   /* Generally propagating virtual operands is not ok as that may
    1072                 :             :      create overlapping life-ranges.  */
    1073                 :   127843724 :   if (TREE_CODE (dest) == SSA_NAME && virtual_operand_p (dest))
    1074                 :             :     return false;
    1075                 :             : 
    1076                 :             :   /* Anything else is OK.  */
    1077                 :             :   return true;
    1078                 :             : }
    1079                 :             : 
    1080                 :             : /* Like may_propagate_copy, but use as the destination expression
    1081                 :             :    the principal expression (typically, the RHS) contained in
    1082                 :             :    statement DEST.  This is more efficient when working with the
    1083                 :             :    gimple tuples representation.  */
    1084                 :             : 
    1085                 :             : bool
    1086                 :      265536 : may_propagate_copy_into_stmt (gimple *dest, tree orig)
    1087                 :             : {
    1088                 :      265536 :   tree type_d;
    1089                 :      265536 :   tree type_o;
    1090                 :             : 
    1091                 :             :   /* If the statement is a switch or a single-rhs assignment,
    1092                 :             :      then the expression to be replaced by the propagation may
    1093                 :             :      be an SSA_NAME.  Fortunately, there is an explicit tree
    1094                 :             :      for the expression, so we delegate to may_propagate_copy.  */
    1095                 :             : 
    1096                 :      265536 :   if (gimple_assign_single_p (dest))
    1097                 :      117216 :     return may_propagate_copy (gimple_assign_rhs1 (dest), orig, true);
    1098                 :      148320 :   else if (gswitch *dest_swtch = dyn_cast <gswitch *> (dest))
    1099                 :           0 :     return may_propagate_copy (gimple_switch_index (dest_swtch), orig, true);
    1100                 :             : 
    1101                 :             :   /* In other cases, the expression is not materialized, so there
    1102                 :             :      is no destination to pass to may_propagate_copy.  On the other
    1103                 :             :      hand, the expression cannot be an SSA_NAME, so the analysis
    1104                 :             :      is much simpler.  */
    1105                 :             : 
    1106                 :      148320 :   if (TREE_CODE (orig) == SSA_NAME
    1107                 :      148320 :       && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (orig))
    1108                 :             :     return false;
    1109                 :             : 
    1110                 :      148320 :   if (is_gimple_assign (dest))
    1111                 :      119283 :     type_d = TREE_TYPE (gimple_assign_lhs (dest));
    1112                 :       29037 :   else if (gimple_code (dest) == GIMPLE_COND)
    1113                 :       28601 :     type_d = boolean_type_node;
    1114                 :         436 :   else if (is_gimple_call (dest)
    1115                 :         436 :            && gimple_call_lhs (dest) != NULL_TREE)
    1116                 :         436 :     type_d = TREE_TYPE (gimple_call_lhs (dest));
    1117                 :             :   else
    1118                 :           0 :     gcc_unreachable ();
    1119                 :             : 
    1120                 :      148320 :   type_o = TREE_TYPE (orig);
    1121                 :             : 
    1122                 :      148320 :   if (!useless_type_conversion_p (type_d, type_o))
    1123                 :             :     return false;
    1124                 :             : 
    1125                 :             :   return true;
    1126                 :             : }
    1127                 :             : 
    1128                 :             : /* Similarly, but we know that we're propagating into an ASM_EXPR.  */
    1129                 :             : 
    1130                 :             : bool
    1131                 :       14385 : may_propagate_copy_into_asm (tree dest ATTRIBUTE_UNUSED)
    1132                 :             : {
    1133                 :       14385 :   return true;
    1134                 :             : }
    1135                 :             : 
    1136                 :             : 
    1137                 :             : /* Replace *OP_P with value VAL (assumed to be a constant or another SSA_NAME).
    1138                 :             : 
    1139                 :             :    Use this version when not const/copy propagating values.  For example,
    1140                 :             :    PRE uses this version when building expressions as they would appear
    1141                 :             :    in specific blocks taking into account actions of PHI nodes.
    1142                 :             : 
    1143                 :             :    The statement in which an expression has been replaced should be
    1144                 :             :    folded using fold_stmt_inplace.  */
    1145                 :             : 
    1146                 :             : void
    1147                 :    45845521 : replace_exp (use_operand_p op_p, tree val)
    1148                 :             : {
    1149                 :    45845521 :   if (TREE_CODE (val) == SSA_NAME || CONSTANT_CLASS_P (val))
    1150                 :    42868265 :     SET_USE (op_p, val);
    1151                 :             :   else
    1152                 :     2977256 :     SET_USE (op_p, unshare_expr (val));
    1153                 :    45845521 : }
    1154                 :             : 
    1155                 :             : 
    1156                 :             : /* Propagate the value VAL (assumed to be a constant or another SSA_NAME)
    1157                 :             :    into the operand pointed to by OP_P.
    1158                 :             : 
    1159                 :             :    Use this version for const/copy propagation as it will perform additional
    1160                 :             :    checks to ensure validity of the const/copy propagation.  */
    1161                 :             : 
    1162                 :             : void
    1163                 :    40238128 : propagate_value (use_operand_p op_p, tree val)
    1164                 :             : {
    1165                 :    40238128 :   if (flag_checking)
    1166                 :             :     {
    1167                 :    40237656 :       bool ab = (is_a <gphi *> (USE_STMT (op_p))
    1168                 :    53998746 :                  && (gimple_phi_arg_edge (as_a <gphi *> (USE_STMT (op_p)),
    1169                 :    13761090 :                                           PHI_ARG_INDEX_FROM_USE (op_p))
    1170                 :    13761090 :                      ->flags & EDGE_ABNORMAL));
    1171                 :    40237656 :       gcc_assert (may_propagate_copy (USE_FROM_PTR (op_p), val, !ab));
    1172                 :             :     }
    1173                 :    40238128 :   replace_exp (op_p, val);
    1174                 :    40238128 : }
    1175                 :             : 
    1176                 :             : 
    1177                 :             : /* Propagate the value VAL (assumed to be a constant or another SSA_NAME)
    1178                 :             :    into the tree pointed to by OP_P.
    1179                 :             : 
    1180                 :             :    Use this version for const/copy propagation when SSA operands are not
    1181                 :             :    available.  It will perform the additional checks to ensure validity of
    1182                 :             :    the const/copy propagation, but will not update any operand information.
    1183                 :             :    Be sure to mark the stmt as modified.  */
    1184                 :             : 
    1185                 :             : void
    1186                 :      294893 : propagate_tree_value (tree *op_p, tree val)
    1187                 :             : {
    1188                 :      294893 :   if (TREE_CODE (val) == SSA_NAME)
    1189                 :      265509 :     *op_p = val;
    1190                 :             :   else
    1191                 :       29384 :     *op_p = unshare_expr (val);
    1192                 :      294893 : }
    1193                 :             : 
    1194                 :             : 
    1195                 :             : /* Like propagate_tree_value, but use as the operand to replace
    1196                 :             :    the principal expression (typically, the RHS) contained in the
    1197                 :             :    statement referenced by iterator GSI.  Note that it is not
    1198                 :             :    always possible to update the statement in-place, so a new
    1199                 :             :    statement may be created to replace the original.  */
    1200                 :             : 
    1201                 :             : void
    1202                 :      294893 : propagate_tree_value_into_stmt (gimple_stmt_iterator *gsi, tree val)
    1203                 :             : {
    1204                 :      294893 :   gimple *stmt = gsi_stmt (*gsi);
    1205                 :             : 
    1206                 :      294893 :   if (is_gimple_assign (stmt))
    1207                 :             :     {
    1208                 :      263928 :       tree expr = NULL_TREE;
    1209                 :      263928 :       if (gimple_assign_single_p (stmt))
    1210                 :      139860 :         expr = gimple_assign_rhs1 (stmt);
    1211                 :      263928 :       propagate_tree_value (&expr, val);
    1212                 :      263928 :       gimple_assign_set_rhs_from_tree (gsi, expr);
    1213                 :             :     }
    1214                 :       30965 :   else if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
    1215                 :             :     {
    1216                 :       30366 :       tree lhs = NULL_TREE;
    1217                 :       30366 :       tree rhs = build_zero_cst (TREE_TYPE (val));
    1218                 :       30366 :       propagate_tree_value (&lhs, val);
    1219                 :       30366 :       gimple_cond_set_code (cond_stmt, NE_EXPR);
    1220                 :       30366 :       gimple_cond_set_lhs (cond_stmt, lhs);
    1221                 :       30366 :       gimple_cond_set_rhs (cond_stmt, rhs);
    1222                 :             :     }
    1223                 :         599 :   else if (is_gimple_call (stmt)
    1224                 :         599 :            && gimple_call_lhs (stmt) != NULL_TREE)
    1225                 :             :     {
    1226                 :         599 :       tree expr = NULL_TREE;
    1227                 :         599 :       propagate_tree_value (&expr, val);
    1228                 :         599 :       replace_call_with_value (gsi, expr);
    1229                 :             :     }
    1230                 :           0 :   else if (gswitch *swtch_stmt = dyn_cast <gswitch *> (stmt))
    1231                 :           0 :     propagate_tree_value (gimple_switch_index_ptr (swtch_stmt), val);
    1232                 :             :   else
    1233                 :           0 :     gcc_unreachable ();
    1234                 :      294893 : }
    1235                 :             : 
    1236                 :             : /* Check exits of each loop in FUN, walk over loop closed PHIs in
    1237                 :             :    each exit basic block and propagate degenerate PHIs.  */
    1238                 :             : 
    1239                 :             : unsigned
    1240                 :      217389 : clean_up_loop_closed_phi (function *fun)
    1241                 :             : {
    1242                 :      217389 :   gphi *phi;
    1243                 :      217389 :   tree rhs;
    1244                 :      217389 :   tree lhs;
    1245                 :      217389 :   gphi_iterator gsi;
    1246                 :             : 
    1247                 :             :   /* Avoid possibly quadratic work when scanning for loop exits across
    1248                 :             :    all loops of a nest.  */
    1249                 :      217389 :   if (!loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS))
    1250                 :             :     return 0;
    1251                 :             : 
    1252                 :             :   /* replace_uses_by might purge dead EH edges and we want it to also
    1253                 :             :      remove dominated blocks.  */
    1254                 :      217389 :   calculate_dominance_info  (CDI_DOMINATORS);
    1255                 :             : 
    1256                 :             :   /* Walk over loop in function.  */
    1257                 :     1191333 :   for (auto loop : loops_list (fun, 0))
    1258                 :             :     {
    1259                 :             :       /* Check each exit edege of loop.  */
    1260                 :      539166 :       auto_vec<edge> exits = get_loop_exit_edges (loop);
    1261                 :     2665651 :       for (edge e : exits)
    1262                 :     1951186 :         if (single_pred_p (e->dest))
    1263                 :             :           /* Walk over loop-closed PHIs.  */
    1264                 :     1926948 :           for (gsi = gsi_start_phis (e->dest); !gsi_end_p (gsi);)
    1265                 :             :             {
    1266                 :     1035975 :               phi = gsi.phi ();
    1267                 :     1035975 :               rhs = gimple_phi_arg_def (phi, 0);
    1268                 :     1035975 :               lhs = gimple_phi_result (phi);
    1269                 :             : 
    1270                 :     2071432 :               if (virtual_operand_p (rhs))
    1271                 :             :                 {
    1272                 :      558083 :                   imm_use_iterator iter;
    1273                 :      558083 :                   use_operand_p use_p;
    1274                 :      558083 :                   gimple *stmt;
    1275                 :             : 
    1276                 :     1293047 :                   FOR_EACH_IMM_USE_STMT (stmt, iter, lhs)
    1277                 :     2216276 :                     FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
    1278                 :     1298739 :                       SET_USE (use_p, rhs);
    1279                 :             : 
    1280                 :      558083 :                   if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
    1281                 :          49 :                     SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs) = 1;
    1282                 :      558083 :                   remove_phi_node (&gsi, true);
    1283                 :             :                 }
    1284                 :      477892 :               else if (may_propagate_copy (lhs, rhs))
    1285                 :             :                 {
    1286                 :             :                   /* Dump details.  */
    1287                 :      477856 :                   if (dump_file && (dump_flags & TDF_DETAILS))
    1288                 :             :                     {
    1289                 :           3 :                       fprintf (dump_file, "  Replacing '");
    1290                 :           3 :                       print_generic_expr (dump_file, lhs, dump_flags);
    1291                 :           3 :                       fprintf (dump_file, "' with '");
    1292                 :           3 :                       print_generic_expr (dump_file, rhs, dump_flags);
    1293                 :           3 :                       fprintf (dump_file, "'\n");
    1294                 :             :                     }
    1295                 :             : 
    1296                 :      477856 :                   replace_uses_by (lhs, rhs);
    1297                 :      477856 :                   remove_phi_node (&gsi, true);
    1298                 :             :                 }
    1299                 :             :               else
    1300                 :          36 :                 gsi_next (&gsi);
    1301                 :             :             }
    1302                 :      539166 :     }
    1303                 :             : 
    1304                 :      217389 :   return 0;
    1305                 :             : }
        

Generated by: LCOV version 2.1-beta

LCOV profile is generated on x86_64 machine using following configure options: configure --disable-bootstrap --enable-coverage=opt --enable-languages=c,c++,fortran,go,jit,lto,rust,m2 --enable-host-shared. GCC test suite is run with the built compiler.