LCOV - code coverage report
Current view: top level - gcc - ifcvt.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 74.1 % 2605 1930
Test Date: 2024-04-20 14:03:02 Functions: 82.5 % 80 66
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /* If-conversion support.
       2                 :             :    Copyright (C) 2000-2024 Free Software Foundation, Inc.
       3                 :             : 
       4                 :             :    This file is part of GCC.
       5                 :             : 
       6                 :             :    GCC is free software; you can redistribute it and/or modify it
       7                 :             :    under the terms of the GNU General Public License as published by
       8                 :             :    the Free Software Foundation; either version 3, or (at your option)
       9                 :             :    any later version.
      10                 :             : 
      11                 :             :    GCC is distributed in the hope that it will be useful, but WITHOUT
      12                 :             :    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
      13                 :             :    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
      14                 :             :    License for more details.
      15                 :             : 
      16                 :             :    You should have received a copy of the GNU General Public License
      17                 :             :    along with GCC; see the file COPYING3.  If not see
      18                 :             :    <http://www.gnu.org/licenses/>.  */
      19                 :             : 
      20                 :             : #include "config.h"
      21                 :             : #include "system.h"
      22                 :             : #include "coretypes.h"
      23                 :             : #include "backend.h"
      24                 :             : #include "target.h"
      25                 :             : #include "rtl.h"
      26                 :             : #include "tree.h"
      27                 :             : #include "cfghooks.h"
      28                 :             : #include "df.h"
      29                 :             : #include "memmodel.h"
      30                 :             : #include "tm_p.h"
      31                 :             : #include "expmed.h"
      32                 :             : #include "optabs.h"
      33                 :             : #include "regs.h"
      34                 :             : #include "emit-rtl.h"
      35                 :             : #include "recog.h"
      36                 :             : 
      37                 :             : #include "cfgrtl.h"
      38                 :             : #include "cfganal.h"
      39                 :             : #include "cfgcleanup.h"
      40                 :             : #include "expr.h"
      41                 :             : #include "output.h"
      42                 :             : #include "cfgloop.h"
      43                 :             : #include "tree-pass.h"
      44                 :             : #include "dbgcnt.h"
      45                 :             : #include "shrink-wrap.h"
      46                 :             : #include "rtl-iter.h"
      47                 :             : #include "ifcvt.h"
      48                 :             : 
      49                 :             : #ifndef MAX_CONDITIONAL_EXECUTE
      50                 :             : #define MAX_CONDITIONAL_EXECUTE \
      51                 :             :   (BRANCH_COST (optimize_function_for_speed_p (cfun), false) \
      52                 :             :    + 1)
      53                 :             : #endif
      54                 :             : 
      55                 :             : #define IFCVT_MULTIPLE_DUMPS 1
      56                 :             : 
      57                 :             : #define NULL_BLOCK      ((basic_block) NULL)
      58                 :             : 
      59                 :             : /* True if after combine pass.  */
      60                 :             : static bool ifcvt_after_combine;
      61                 :             : 
      62                 :             : /* True if the target has the cbranchcc4 optab.  */
      63                 :             : static bool have_cbranchcc4;
      64                 :             : 
      65                 :             : /* # of IF-THEN or IF-THEN-ELSE blocks we looked at  */
      66                 :             : static int num_possible_if_blocks;
      67                 :             : 
      68                 :             : /* # of IF-THEN or IF-THEN-ELSE blocks were converted to conditional
      69                 :             :    execution.  */
      70                 :             : static int num_updated_if_blocks;
      71                 :             : 
      72                 :             : /* # of changes made.  */
      73                 :             : static int num_true_changes;
      74                 :             : 
      75                 :             : /* Whether conditional execution changes were made.  */
      76                 :             : static bool cond_exec_changed_p;
      77                 :             : 
      78                 :             : /* Forward references.  */
      79                 :             : static int count_bb_insns (const_basic_block);
      80                 :             : static bool cheap_bb_rtx_cost_p (const_basic_block, profile_probability, int);
      81                 :             : static rtx_insn *first_active_insn (basic_block);
      82                 :             : static rtx_insn *last_active_insn (basic_block, bool);
      83                 :             : static rtx_insn *find_active_insn_before (basic_block, rtx_insn *);
      84                 :             : static rtx_insn *find_active_insn_after (basic_block, rtx_insn *);
      85                 :             : static basic_block block_fallthru (basic_block);
      86                 :             : static rtx cond_exec_get_condition (rtx_insn *, bool);
      87                 :             : static rtx noce_get_condition (rtx_insn *, rtx_insn **, bool);
      88                 :             : static bool noce_operand_ok (const_rtx);
      89                 :             : static void merge_if_block (ce_if_block *);
      90                 :             : static bool find_cond_trap (basic_block, edge, edge);
      91                 :             : static basic_block find_if_header (basic_block, int);
      92                 :             : static int block_jumps_and_fallthru (basic_block, basic_block);
      93                 :             : static bool noce_find_if_block (basic_block, edge, edge, int);
      94                 :             : static bool cond_exec_find_if_block (ce_if_block *);
      95                 :             : static bool find_if_case_1 (basic_block, edge, edge);
      96                 :             : static bool find_if_case_2 (basic_block, edge, edge);
      97                 :             : static bool dead_or_predicable (basic_block, basic_block, basic_block,
      98                 :             :                                 edge, bool);
      99                 :             : static void noce_emit_move_insn (rtx, rtx);
     100                 :             : static rtx_insn *block_has_only_trap (basic_block);
     101                 :             : static void need_cmov_or_rewire (basic_block, hash_set<rtx_insn *> *,
     102                 :             :                                  hash_map<rtx_insn *, int> *);
     103                 :             : static bool noce_convert_multiple_sets_1 (struct noce_if_info *,
     104                 :             :                                           hash_set<rtx_insn *> *,
     105                 :             :                                           hash_map<rtx_insn *, int> *,
     106                 :             :                                           auto_vec<rtx> *,
     107                 :             :                                           auto_vec<rtx> *,
     108                 :             :                                           auto_vec<rtx_insn *> *, int *);
     109                 :             : 
     110                 :             : /* Count the number of non-jump active insns in BB.  */
     111                 :             : 
     112                 :             : static int
     113                 :           0 : count_bb_insns (const_basic_block bb)
     114                 :             : {
     115                 :           0 :   int count = 0;
     116                 :           0 :   rtx_insn *insn = BB_HEAD (bb);
     117                 :             : 
     118                 :           0 :   while (1)
     119                 :             :     {
     120                 :           0 :       if (active_insn_p (insn) && !JUMP_P (insn))
     121                 :           0 :         count++;
     122                 :             : 
     123                 :           0 :       if (insn == BB_END (bb))
     124                 :             :         break;
     125                 :           0 :       insn = NEXT_INSN (insn);
     126                 :             :     }
     127                 :             : 
     128                 :           0 :   return count;
     129                 :             : }
     130                 :             : 
     131                 :             : /* Determine whether the total insn_cost on non-jump insns in
     132                 :             :    basic block BB is less than MAX_COST.  This function returns
     133                 :             :    false if the cost of any instruction could not be estimated. 
     134                 :             : 
     135                 :             :    The cost of the non-jump insns in BB is scaled by REG_BR_PROB_BASE
     136                 :             :    as those insns are being speculated.  MAX_COST is scaled with SCALE
     137                 :             :    plus a small fudge factor.  */
     138                 :             : 
     139                 :             : static bool
     140                 :     2795144 : cheap_bb_rtx_cost_p (const_basic_block bb,
     141                 :             :                      profile_probability prob, int max_cost)
     142                 :             : {
     143                 :     2795144 :   int count = 0;
     144                 :     2795144 :   rtx_insn *insn = BB_HEAD (bb);
     145                 :     2795144 :   bool speed = optimize_bb_for_speed_p (bb);
     146                 :     2795144 :   int scale = prob.initialized_p () ? prob.to_reg_br_prob_base ()
     147                 :     2795144 :               : REG_BR_PROB_BASE;
     148                 :             : 
     149                 :             :   /* Set scale to REG_BR_PROB_BASE to void the identical scaling
     150                 :             :      applied to insn_cost when optimizing for size.  Only do
     151                 :             :      this after combine because if-conversion might interfere with
     152                 :             :      passes before combine.
     153                 :             : 
     154                 :             :      Use optimize_function_for_speed_p instead of the pre-defined
     155                 :             :      variable speed to make sure it is set to same value for all
     156                 :             :      basic blocks in one if-conversion transformation.  */
     157                 :     2795144 :   if (!optimize_function_for_speed_p (cfun) && ifcvt_after_combine)
     158                 :             :     scale = REG_BR_PROB_BASE;
     159                 :             :   /* Our branch probability/scaling factors are just estimates and don't
     160                 :             :      account for cases where we can get speculation for free and other
     161                 :             :      secondary benefits.  So we fudge the scale factor to make speculating
     162                 :             :      appear a little more profitable when optimizing for performance.  */
     163                 :             :   else
     164                 :     2747835 :     scale += REG_BR_PROB_BASE / 8;
     165                 :             : 
     166                 :             : 
     167                 :     2795144 :   max_cost *= scale;
     168                 :             : 
     169                 :    10067136 :   while (1)
     170                 :             :     {
     171                 :    12862280 :       if (NONJUMP_INSN_P (insn))
     172                 :             :         {
     173                 :     4097824 :           int cost = insn_cost (insn, speed) * REG_BR_PROB_BASE;
     174                 :     4097824 :           if (cost == 0)
     175                 :             :             return false;
     176                 :             : 
     177                 :             :           /* If this instruction is the load or set of a "stack" register,
     178                 :             :              such as a floating point register on x87, then the cost of
     179                 :             :              speculatively executing this insn may need to include
     180                 :             :              the additional cost of popping its result off of the
     181                 :             :              register stack.  Unfortunately, correctly recognizing and
     182                 :             :              accounting for this additional overhead is tricky, so for
     183                 :             :              now we simply prohibit such speculative execution.  */
     184                 :             : #ifdef STACK_REGS
     185                 :     4048996 :           {
     186                 :     4048996 :             rtx set = single_set (insn);
     187                 :     4048996 :             if (set && STACK_REG_P (SET_DEST (set)))
     188                 :             :               return false;
     189                 :             :           }
     190                 :             : #endif
     191                 :             : 
     192                 :     4045166 :           count += cost;
     193                 :     4045166 :           if (count >= max_cost)
     194                 :             :             return false;
     195                 :             :         }
     196                 :     8764456 :       else if (CALL_P (insn))
     197                 :             :         return false;
     198                 :             : 
     199                 :    10646493 :       if (insn == BB_END (bb))
     200                 :             :         break;
     201                 :    10067136 :       insn = NEXT_INSN (insn);
     202                 :    10067136 :     }
     203                 :             : 
     204                 :             :   return true;
     205                 :             : }
     206                 :             : 
     207                 :             : /* Return the first non-jump active insn in the basic block.  */
     208                 :             : 
     209                 :             : static rtx_insn *
     210                 :     1464225 : first_active_insn (basic_block bb)
     211                 :             : {
     212                 :     1464225 :   rtx_insn *insn = BB_HEAD (bb);
     213                 :             : 
     214                 :     1464225 :   if (LABEL_P (insn))
     215                 :             :     {
     216                 :      275763 :       if (insn == BB_END (bb))
     217                 :             :         return NULL;
     218                 :      275763 :       insn = NEXT_INSN (insn);
     219                 :             :     }
     220                 :             : 
     221                 :     4206746 :   while (NOTE_P (insn) || DEBUG_INSN_P (insn))
     222                 :             :     {
     223                 :     2742521 :       if (insn == BB_END (bb))
     224                 :             :         return NULL;
     225                 :     2742521 :       insn = NEXT_INSN (insn);
     226                 :             :     }
     227                 :             : 
     228                 :     1464225 :   if (JUMP_P (insn))
     229                 :             :     return NULL;
     230                 :             : 
     231                 :             :   return insn;
     232                 :             : }
     233                 :             : 
     234                 :             : /* Return the last non-jump active (non-jump) insn in the basic block.  */
     235                 :             : 
     236                 :             : static rtx_insn *
     237                 :     2477751 : last_active_insn (basic_block bb, bool skip_use_p)
     238                 :             : {
     239                 :     2477751 :   rtx_insn *insn = BB_END (bb);
     240                 :     2477751 :   rtx_insn *head = BB_HEAD (bb);
     241                 :             : 
     242                 :     2477751 :   while (NOTE_P (insn)
     243                 :             :          || JUMP_P (insn)
     244                 :             :          || DEBUG_INSN_P (insn)
     245                 :     5400866 :          || (skip_use_p
     246                 :           0 :              && NONJUMP_INSN_P (insn)
     247                 :           0 :              && GET_CODE (PATTERN (insn)) == USE))
     248                 :             :     {
     249                 :     2931951 :       if (insn == head)
     250                 :             :         return NULL;
     251                 :     2923115 :       insn = PREV_INSN (insn);
     252                 :             :     }
     253                 :             : 
     254                 :     2468915 :   if (LABEL_P (insn))
     255                 :             :     return NULL;
     256                 :             : 
     257                 :             :   return insn;
     258                 :             : }
     259                 :             : 
     260                 :             : /* Return the active insn before INSN inside basic block CURR_BB. */
     261                 :             : 
     262                 :             : static rtx_insn *
     263                 :           0 : find_active_insn_before (basic_block curr_bb, rtx_insn *insn)
     264                 :             : {
     265                 :           0 :   if (!insn || insn == BB_HEAD (curr_bb))
     266                 :             :     return NULL;
     267                 :             : 
     268                 :           0 :   while ((insn = PREV_INSN (insn)) != NULL_RTX)
     269                 :             :     {
     270                 :           0 :       if (NONJUMP_INSN_P (insn) || JUMP_P (insn) || CALL_P (insn))
     271                 :             :         break;
     272                 :             : 
     273                 :             :       /* No other active insn all the way to the start of the basic block. */
     274                 :           0 :       if (insn == BB_HEAD (curr_bb))
     275                 :             :         return NULL;
     276                 :             :     }
     277                 :             : 
     278                 :             :   return insn;
     279                 :             : }
     280                 :             : 
     281                 :             : /* Return the active insn after INSN inside basic block CURR_BB. */
     282                 :             : 
     283                 :             : static rtx_insn *
     284                 :           0 : find_active_insn_after (basic_block curr_bb, rtx_insn *insn)
     285                 :             : {
     286                 :           0 :   if (!insn || insn == BB_END (curr_bb))
     287                 :             :     return NULL;
     288                 :             : 
     289                 :           0 :   while ((insn = NEXT_INSN (insn)) != NULL_RTX)
     290                 :             :     {
     291                 :           0 :       if (NONJUMP_INSN_P (insn) || JUMP_P (insn) || CALL_P (insn))
     292                 :             :         break;
     293                 :             : 
     294                 :             :       /* No other active insn all the way to the end of the basic block. */
     295                 :           0 :       if (insn == BB_END (curr_bb))
     296                 :             :         return NULL;
     297                 :             :     }
     298                 :             : 
     299                 :             :   return insn;
     300                 :             : }
     301                 :             : 
     302                 :             : /* Return the basic block reached by falling though the basic block BB.  */
     303                 :             : 
     304                 :             : static basic_block
     305                 :           0 : block_fallthru (basic_block bb)
     306                 :             : {
     307                 :           0 :   edge e = find_fallthru_edge (bb->succs);
     308                 :             : 
     309                 :           0 :   return (e) ? e->dest : NULL_BLOCK;
     310                 :             : }
     311                 :             : 
     312                 :             : /* Return true if RTXs A and B can be safely interchanged.  */
     313                 :             : 
     314                 :             : static bool
     315                 :      525973 : rtx_interchangeable_p (const_rtx a, const_rtx b)
     316                 :             : {
     317                 :      525973 :   if (!rtx_equal_p (a, b))
     318                 :             :     return false;
     319                 :             : 
     320                 :      191036 :   if (GET_CODE (a) != MEM)
     321                 :             :     return true;
     322                 :             : 
     323                 :             :   /* A dead type-unsafe memory reference is legal, but a live type-unsafe memory
     324                 :             :      reference is not.  Interchanging a dead type-unsafe memory reference with
     325                 :             :      a live type-safe one creates a live type-unsafe memory reference, in other
     326                 :             :      words, it makes the program illegal.
     327                 :             :      We check here conservatively whether the two memory references have equal
     328                 :             :      memory attributes.  */
     329                 :             : 
     330                 :        2581 :   return mem_attrs_eq_p (get_mem_attrs (a), get_mem_attrs (b));
     331                 :             : }
     332                 :             : 
     333                 :             : 
     334                 :             : /* Go through a bunch of insns, converting them to conditional
     335                 :             :    execution format if possible.  Return TRUE if all of the non-note
     336                 :             :    insns were processed.  */
     337                 :             : 
     338                 :             : static bool
     339                 :           0 : cond_exec_process_insns (ce_if_block *ce_info ATTRIBUTE_UNUSED,
     340                 :             :                          /* if block information */rtx_insn *start,
     341                 :             :                          /* first insn to look at */rtx end,
     342                 :             :                          /* last insn to look at */rtx test,
     343                 :             :                          /* conditional execution test */profile_probability
     344                 :             :                                                             prob_val,
     345                 :             :                          /* probability of branch taken. */bool mod_ok)
     346                 :             : {
     347                 :           0 :   bool must_be_last = false;
     348                 :           0 :   rtx_insn *insn;
     349                 :           0 :   rtx xtest;
     350                 :           0 :   rtx pattern;
     351                 :             : 
     352                 :           0 :   if (!start || !end)
     353                 :             :     return false;
     354                 :             : 
     355                 :           0 :   for (insn = start; ; insn = NEXT_INSN (insn))
     356                 :             :     {
     357                 :             :       /* dwarf2out can't cope with conditional prologues.  */
     358                 :           0 :       if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_PROLOGUE_END)
     359                 :             :         return false;
     360                 :             : 
     361                 :           0 :       if (NOTE_P (insn) || DEBUG_INSN_P (insn))
     362                 :           0 :         goto insn_done;
     363                 :             : 
     364                 :           0 :       gcc_assert (NONJUMP_INSN_P (insn) || CALL_P (insn));
     365                 :             : 
     366                 :             :       /* dwarf2out can't cope with conditional unwind info.  */
     367                 :           0 :       if (RTX_FRAME_RELATED_P (insn))
     368                 :             :         return false;
     369                 :             : 
     370                 :             :       /* Remove USE insns that get in the way.  */
     371                 :           0 :       if (reload_completed && GET_CODE (PATTERN (insn)) == USE)
     372                 :             :         {
     373                 :             :           /* ??? Ug.  Actually unlinking the thing is problematic,
     374                 :             :              given what we'd have to coordinate with our callers.  */
     375                 :           0 :           SET_INSN_DELETED (insn);
     376                 :           0 :           goto insn_done;
     377                 :             :         }
     378                 :             : 
     379                 :             :       /* Last insn wasn't last?  */
     380                 :           0 :       if (must_be_last)
     381                 :             :         return false;
     382                 :             : 
     383                 :           0 :       if (modified_in_p (test, insn))
     384                 :             :         {
     385                 :           0 :           if (!mod_ok)
     386                 :             :             return false;
     387                 :             :           must_be_last = true;
     388                 :             :         }
     389                 :             : 
     390                 :             :       /* Now build the conditional form of the instruction.  */
     391                 :           0 :       pattern = PATTERN (insn);
     392                 :           0 :       xtest = copy_rtx (test);
     393                 :             : 
     394                 :             :       /* If this is already a COND_EXEC, rewrite the test to be an AND of the
     395                 :             :          two conditions.  */
     396                 :           0 :       if (GET_CODE (pattern) == COND_EXEC)
     397                 :             :         {
     398                 :           0 :           if (GET_MODE (xtest) != GET_MODE (COND_EXEC_TEST (pattern)))
     399                 :             :             return false;
     400                 :             : 
     401                 :           0 :           xtest = gen_rtx_AND (GET_MODE (xtest), xtest,
     402                 :             :                                COND_EXEC_TEST (pattern));
     403                 :           0 :           pattern = COND_EXEC_CODE (pattern);
     404                 :             :         }
     405                 :             : 
     406                 :           0 :       pattern = gen_rtx_COND_EXEC (VOIDmode, xtest, pattern);
     407                 :             : 
     408                 :             :       /* If the machine needs to modify the insn being conditionally executed,
     409                 :             :          say for example to force a constant integer operand into a temp
     410                 :             :          register, do so here.  */
     411                 :             : #ifdef IFCVT_MODIFY_INSN
     412                 :             :       IFCVT_MODIFY_INSN (ce_info, pattern, insn);
     413                 :             :       if (! pattern)
     414                 :             :         return false;
     415                 :             : #endif
     416                 :             : 
     417                 :           0 :       validate_change (insn, &PATTERN (insn), pattern, 1);
     418                 :             : 
     419                 :           0 :       if (CALL_P (insn) && prob_val.initialized_p ())
     420                 :           0 :         validate_change (insn, &REG_NOTES (insn),
     421                 :             :                          gen_rtx_INT_LIST ((machine_mode) REG_BR_PROB,
     422                 :             :                                            prob_val.to_reg_br_prob_note (),
     423                 :             :                                            REG_NOTES (insn)), 1);
     424                 :             : 
     425                 :           0 :     insn_done:
     426                 :           0 :       if (insn == end)
     427                 :             :         break;
     428                 :           0 :     }
     429                 :             : 
     430                 :             :   return true;
     431                 :             : }
     432                 :             : 
     433                 :             : /* Return the condition for a jump.  Do not do any special processing.  */
     434                 :             : 
     435                 :             : static rtx
     436                 :       44924 : cond_exec_get_condition (rtx_insn *jump, bool get_reversed = false)
     437                 :             : {
     438                 :       44924 :   rtx test_if, cond;
     439                 :             : 
     440                 :       44924 :   if (any_condjump_p (jump))
     441                 :       44924 :     test_if = SET_SRC (pc_set (jump));
     442                 :             :   else
     443                 :             :     return NULL_RTX;
     444                 :       44924 :   cond = XEXP (test_if, 0);
     445                 :             : 
     446                 :             :   /* If this branches to JUMP_LABEL when the condition is false,
     447                 :             :      reverse the condition.  */
     448                 :       44924 :   if (get_reversed
     449                 :       44924 :       || (GET_CODE (XEXP (test_if, 2)) == LABEL_REF
     450                 :           0 :           && label_ref_label (XEXP (test_if, 2))
     451                 :           0 :           == JUMP_LABEL (jump)))
     452                 :             :     {
     453                 :       22462 :       enum rtx_code rev = reversed_comparison_code (cond, jump);
     454                 :       22462 :       if (rev == UNKNOWN)
     455                 :             :         return NULL_RTX;
     456                 :             : 
     457                 :       22462 :       cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
     458                 :             :                              XEXP (cond, 1));
     459                 :             :     }
     460                 :             : 
     461                 :             :   return cond;
     462                 :             : }
     463                 :             : 
     464                 :             : /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
     465                 :             :    to conditional execution.  Return TRUE if we were successful at
     466                 :             :    converting the block.  */
     467                 :             : 
     468                 :             : static bool
     469                 :           0 : cond_exec_process_if_block (ce_if_block * ce_info,
     470                 :             :                             /* if block information */bool do_multiple_p)
     471                 :             : {
     472                 :           0 :   basic_block test_bb = ce_info->test_bb;    /* last test block */
     473                 :           0 :   basic_block then_bb = ce_info->then_bb;    /* THEN */
     474                 :           0 :   basic_block else_bb = ce_info->else_bb;    /* ELSE or NULL */
     475                 :           0 :   rtx test_expr;                /* expression in IF_THEN_ELSE that is tested */
     476                 :           0 :   rtx_insn *then_start;         /* first insn in THEN block */
     477                 :           0 :   rtx_insn *then_end;           /* last insn + 1 in THEN block */
     478                 :           0 :   rtx_insn *else_start = NULL;  /* first insn in ELSE block or NULL */
     479                 :           0 :   rtx_insn *else_end = NULL;    /* last insn + 1 in ELSE block */
     480                 :           0 :   int max;                      /* max # of insns to convert.  */
     481                 :           0 :   bool then_mod_ok;             /* whether conditional mods are ok in THEN */
     482                 :           0 :   rtx true_expr;                /* test for else block insns */
     483                 :           0 :   rtx false_expr;               /* test for then block insns */
     484                 :           0 :   profile_probability true_prob_val;/* probability of else block */
     485                 :           0 :   profile_probability false_prob_val;/* probability of then block */
     486                 :           0 :   rtx_insn *then_last_head = NULL;      /* Last match at the head of THEN */
     487                 :           0 :   rtx_insn *else_last_head = NULL;      /* Last match at the head of ELSE */
     488                 :           0 :   rtx_insn *then_first_tail = NULL;     /* First match at the tail of THEN */
     489                 :           0 :   rtx_insn *else_first_tail = NULL;     /* First match at the tail of ELSE */
     490                 :           0 :   int then_n_insns, else_n_insns, n_insns;
     491                 :           0 :   enum rtx_code false_code;
     492                 :           0 :   rtx note;
     493                 :             : 
     494                 :             :   /* If test is comprised of && or || elements, and we've failed at handling
     495                 :             :      all of them together, just use the last test if it is the special case of
     496                 :             :      && elements without an ELSE block.  */
     497                 :           0 :   if (!do_multiple_p && ce_info->num_multiple_test_blocks)
     498                 :             :     {
     499                 :           0 :       if (else_bb || ! ce_info->and_and_p)
     500                 :             :         return false;
     501                 :             : 
     502                 :           0 :       ce_info->test_bb = test_bb = ce_info->last_test_bb;
     503                 :           0 :       ce_info->num_multiple_test_blocks = 0;
     504                 :           0 :       ce_info->num_and_and_blocks = 0;
     505                 :           0 :       ce_info->num_or_or_blocks = 0;
     506                 :             :     }
     507                 :             : 
     508                 :             :   /* Find the conditional jump to the ELSE or JOIN part, and isolate
     509                 :             :      the test.  */
     510                 :           0 :   test_expr = cond_exec_get_condition (BB_END (test_bb));
     511                 :           0 :   if (! test_expr)
     512                 :             :     return false;
     513                 :             : 
     514                 :             :   /* If the conditional jump is more than just a conditional jump,
     515                 :             :      then we cannot do conditional execution conversion on this block.  */
     516                 :           0 :   if (! onlyjump_p (BB_END (test_bb)))
     517                 :             :     return false;
     518                 :             : 
     519                 :             :   /* Collect the bounds of where we're to search, skipping any labels, jumps
     520                 :             :      and notes at the beginning and end of the block.  Then count the total
     521                 :             :      number of insns and see if it is small enough to convert.  */
     522                 :           0 :   then_start = first_active_insn (then_bb);
     523                 :           0 :   then_end = last_active_insn (then_bb, true);
     524                 :           0 :   then_n_insns = ce_info->num_then_insns = count_bb_insns (then_bb);
     525                 :           0 :   n_insns = then_n_insns;
     526                 :           0 :   max = MAX_CONDITIONAL_EXECUTE;
     527                 :             : 
     528                 :           0 :   if (else_bb)
     529                 :             :     {
     530                 :           0 :       int n_matching;
     531                 :             : 
     532                 :           0 :       max *= 2;
     533                 :           0 :       else_start = first_active_insn (else_bb);
     534                 :           0 :       else_end = last_active_insn (else_bb, true);
     535                 :           0 :       else_n_insns = ce_info->num_else_insns = count_bb_insns (else_bb);
     536                 :           0 :       n_insns += else_n_insns;
     537                 :             : 
     538                 :             :       /* Look for matching sequences at the head and tail of the two blocks,
     539                 :             :          and limit the range of insns to be converted if possible.  */
     540                 :           0 :       n_matching = flow_find_cross_jump (then_bb, else_bb,
     541                 :             :                                          &then_first_tail, &else_first_tail,
     542                 :             :                                          NULL);
     543                 :           0 :       if (then_first_tail == BB_HEAD (then_bb))
     544                 :           0 :         then_start = then_end = NULL;
     545                 :           0 :       if (else_first_tail == BB_HEAD (else_bb))
     546                 :           0 :         else_start = else_end = NULL;
     547                 :             : 
     548                 :           0 :       if (n_matching > 0)
     549                 :             :         {
     550                 :           0 :           if (then_end)
     551                 :           0 :             then_end = find_active_insn_before (then_bb, then_first_tail);
     552                 :           0 :           if (else_end)
     553                 :           0 :             else_end = find_active_insn_before (else_bb, else_first_tail);
     554                 :           0 :           n_insns -= 2 * n_matching;
     555                 :             :         }
     556                 :             : 
     557                 :           0 :       if (then_start
     558                 :           0 :           && else_start
     559                 :             :           && then_n_insns > n_matching
     560                 :           0 :           && else_n_insns > n_matching)
     561                 :             :         {
     562                 :           0 :           int longest_match = MIN (then_n_insns - n_matching,
     563                 :             :                                    else_n_insns - n_matching);
     564                 :           0 :           n_matching
     565                 :           0 :             = flow_find_head_matching_sequence (then_bb, else_bb,
     566                 :             :                                                 &then_last_head,
     567                 :             :                                                 &else_last_head,
     568                 :             :                                                 longest_match);
     569                 :             : 
     570                 :           0 :           if (n_matching > 0)
     571                 :             :             {
     572                 :           0 :               rtx_insn *insn;
     573                 :             : 
     574                 :             :               /* We won't pass the insns in the head sequence to
     575                 :             :                  cond_exec_process_insns, so we need to test them here
     576                 :             :                  to make sure that they don't clobber the condition.  */
     577                 :           0 :               for (insn = BB_HEAD (then_bb);
     578                 :           0 :                    insn != NEXT_INSN (then_last_head);
     579                 :           0 :                    insn = NEXT_INSN (insn))
     580                 :           0 :                 if (!LABEL_P (insn) && !NOTE_P (insn)
     581                 :           0 :                     && !DEBUG_INSN_P (insn)
     582                 :           0 :                     && modified_in_p (test_expr, insn))
     583                 :             :                   return false;
     584                 :             :             }
     585                 :             : 
     586                 :           0 :           if (then_last_head == then_end)
     587                 :           0 :             then_start = then_end = NULL;
     588                 :           0 :           if (else_last_head == else_end)
     589                 :           0 :             else_start = else_end = NULL;
     590                 :             : 
     591                 :           0 :           if (n_matching > 0)
     592                 :             :             {
     593                 :           0 :               if (then_start)
     594                 :           0 :                 then_start = find_active_insn_after (then_bb, then_last_head);
     595                 :           0 :               if (else_start)
     596                 :           0 :                 else_start = find_active_insn_after (else_bb, else_last_head);
     597                 :           0 :               n_insns -= 2 * n_matching;
     598                 :             :             }
     599                 :             :         }
     600                 :             :     }
     601                 :             : 
     602                 :           0 :   if (n_insns > max)
     603                 :             :     return false;
     604                 :             : 
     605                 :             :   /* Map test_expr/test_jump into the appropriate MD tests to use on
     606                 :             :      the conditionally executed code.  */
     607                 :             : 
     608                 :           0 :   true_expr = test_expr;
     609                 :             : 
     610                 :           0 :   false_code = reversed_comparison_code (true_expr, BB_END (test_bb));
     611                 :           0 :   if (false_code != UNKNOWN)
     612                 :           0 :     false_expr = gen_rtx_fmt_ee (false_code, GET_MODE (true_expr),
     613                 :             :                                  XEXP (true_expr, 0), XEXP (true_expr, 1));
     614                 :             :   else
     615                 :             :     false_expr = NULL_RTX;
     616                 :             : 
     617                 :             : #ifdef IFCVT_MODIFY_TESTS
     618                 :             :   /* If the machine description needs to modify the tests, such as setting a
     619                 :             :      conditional execution register from a comparison, it can do so here.  */
     620                 :             :   IFCVT_MODIFY_TESTS (ce_info, true_expr, false_expr);
     621                 :             : 
     622                 :             :   /* See if the conversion failed.  */
     623                 :             :   if (!true_expr || !false_expr)
     624                 :             :     goto fail;
     625                 :             : #endif
     626                 :             : 
     627                 :           0 :   note = find_reg_note (BB_END (test_bb), REG_BR_PROB, NULL_RTX);
     628                 :           0 :   if (note)
     629                 :             :     {
     630                 :           0 :       true_prob_val = profile_probability::from_reg_br_prob_note (XINT (note, 0));
     631                 :           0 :       false_prob_val = true_prob_val.invert ();
     632                 :             :     }
     633                 :             :   else
     634                 :             :     {
     635                 :             :       true_prob_val = profile_probability::uninitialized ();
     636                 :             :       false_prob_val = profile_probability::uninitialized ();
     637                 :             :     }
     638                 :             : 
     639                 :             :   /* If we have && or || tests, do them here.  These tests are in the adjacent
     640                 :             :      blocks after the first block containing the test.  */
     641                 :           0 :   if (ce_info->num_multiple_test_blocks > 0)
     642                 :             :     {
     643                 :           0 :       basic_block bb = test_bb;
     644                 :           0 :       basic_block last_test_bb = ce_info->last_test_bb;
     645                 :             : 
     646                 :           0 :       if (! false_expr)
     647                 :           0 :         goto fail;
     648                 :             : 
     649                 :           0 :       do
     650                 :             :         {
     651                 :           0 :           rtx_insn *start, *end;
     652                 :           0 :           rtx t, f;
     653                 :           0 :           enum rtx_code f_code;
     654                 :             : 
     655                 :           0 :           bb = block_fallthru (bb);
     656                 :           0 :           start = first_active_insn (bb);
     657                 :           0 :           end = last_active_insn (bb, true);
     658                 :           0 :           if (start
     659                 :           0 :               && ! cond_exec_process_insns (ce_info, start, end, false_expr,
     660                 :             :                                             false_prob_val, false))
     661                 :           0 :             goto fail;
     662                 :             : 
     663                 :             :           /* If the conditional jump is more than just a conditional jump, then
     664                 :             :              we cannot do conditional execution conversion on this block.  */
     665                 :           0 :           if (! onlyjump_p (BB_END (bb)))
     666                 :           0 :             goto fail;
     667                 :             : 
     668                 :             :           /* Find the conditional jump and isolate the test.  */
     669                 :           0 :           t = cond_exec_get_condition (BB_END (bb));
     670                 :           0 :           if (! t)
     671                 :           0 :             goto fail;
     672                 :             : 
     673                 :           0 :           f_code = reversed_comparison_code (t, BB_END (bb));
     674                 :           0 :           if (f_code == UNKNOWN)
     675                 :           0 :             goto fail;
     676                 :             : 
     677                 :           0 :           f = gen_rtx_fmt_ee (f_code, GET_MODE (t), XEXP (t, 0), XEXP (t, 1));
     678                 :           0 :           if (ce_info->and_and_p)
     679                 :             :             {
     680                 :           0 :               t = gen_rtx_AND (GET_MODE (t), true_expr, t);
     681                 :           0 :               f = gen_rtx_IOR (GET_MODE (t), false_expr, f);
     682                 :             :             }
     683                 :             :           else
     684                 :             :             {
     685                 :           0 :               t = gen_rtx_IOR (GET_MODE (t), true_expr, t);
     686                 :           0 :               f = gen_rtx_AND (GET_MODE (t), false_expr, f);
     687                 :             :             }
     688                 :             : 
     689                 :             :           /* If the machine description needs to modify the tests, such as
     690                 :             :              setting a conditional execution register from a comparison, it can
     691                 :             :              do so here.  */
     692                 :             : #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
     693                 :             :           IFCVT_MODIFY_MULTIPLE_TESTS (ce_info, bb, t, f);
     694                 :             : 
     695                 :             :           /* See if the conversion failed.  */
     696                 :             :           if (!t || !f)
     697                 :             :             goto fail;
     698                 :             : #endif
     699                 :             : 
     700                 :           0 :           true_expr = t;
     701                 :           0 :           false_expr = f;
     702                 :             :         }
     703                 :           0 :       while (bb != last_test_bb);
     704                 :             :     }
     705                 :             : 
     706                 :             :   /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
     707                 :             :      on then THEN block.  */
     708                 :           0 :   then_mod_ok = (else_bb == NULL_BLOCK);
     709                 :             : 
     710                 :             :   /* Go through the THEN and ELSE blocks converting the insns if possible
     711                 :             :      to conditional execution.  */
     712                 :             : 
     713                 :           0 :   if (then_end
     714                 :           0 :       && (! false_expr
     715                 :           0 :           || ! cond_exec_process_insns (ce_info, then_start, then_end,
     716                 :             :                                         false_expr, false_prob_val,
     717                 :             :                                         then_mod_ok)))
     718                 :           0 :     goto fail;
     719                 :             : 
     720                 :           0 :   if (else_bb && else_end
     721                 :           0 :       && ! cond_exec_process_insns (ce_info, else_start, else_end,
     722                 :             :                                     true_expr, true_prob_val, true))
     723                 :           0 :     goto fail;
     724                 :             : 
     725                 :             :   /* If we cannot apply the changes, fail.  Do not go through the normal fail
     726                 :             :      processing, since apply_change_group will call cancel_changes.  */
     727                 :           0 :   if (! apply_change_group ())
     728                 :             :     {
     729                 :             : #ifdef IFCVT_MODIFY_CANCEL
     730                 :             :       /* Cancel any machine dependent changes.  */
     731                 :             :       IFCVT_MODIFY_CANCEL (ce_info);
     732                 :             : #endif
     733                 :             :       return false;
     734                 :             :     }
     735                 :             : 
     736                 :             : #ifdef IFCVT_MODIFY_FINAL
     737                 :             :   /* Do any machine dependent final modifications.  */
     738                 :             :   IFCVT_MODIFY_FINAL (ce_info);
     739                 :             : #endif
     740                 :             : 
     741                 :             :   /* Conversion succeeded.  */
     742                 :           0 :   if (dump_file)
     743                 :           0 :     fprintf (dump_file, "%d insn%s converted to conditional execution.\n",
     744                 :             :              n_insns, (n_insns == 1) ? " was" : "s were");
     745                 :             : 
     746                 :             :   /* Merge the blocks!  If we had matching sequences, make sure to delete one
     747                 :             :      copy at the appropriate location first: delete the copy in the THEN branch
     748                 :             :      for a tail sequence so that the remaining one is executed last for both
     749                 :             :      branches, and delete the copy in the ELSE branch for a head sequence so
     750                 :             :      that the remaining one is executed first for both branches.  */
     751                 :           0 :   if (then_first_tail)
     752                 :             :     {
     753                 :           0 :       rtx_insn *from = then_first_tail;
     754                 :           0 :       if (!INSN_P (from))
     755                 :           0 :         from = find_active_insn_after (then_bb, from);
     756                 :           0 :       delete_insn_chain (from, get_last_bb_insn (then_bb), false);
     757                 :             :     }
     758                 :           0 :   if (else_last_head)
     759                 :           0 :     delete_insn_chain (first_active_insn (else_bb), else_last_head, false);
     760                 :             : 
     761                 :           0 :   merge_if_block (ce_info);
     762                 :           0 :   cond_exec_changed_p = true;
     763                 :           0 :   return true;
     764                 :             : 
     765                 :           0 :  fail:
     766                 :             : #ifdef IFCVT_MODIFY_CANCEL
     767                 :             :   /* Cancel any machine dependent changes.  */
     768                 :             :   IFCVT_MODIFY_CANCEL (ce_info);
     769                 :             : #endif
     770                 :             : 
     771                 :           0 :   cancel_changes (0);
     772                 :           0 :   return false;
     773                 :             : }
     774                 :             : 
     775                 :             : static rtx noce_emit_store_flag (struct noce_if_info *, rtx, bool, int);
     776                 :             : static bool noce_try_move (struct noce_if_info *);
     777                 :             : static bool noce_try_ifelse_collapse (struct noce_if_info *);
     778                 :             : static bool noce_try_store_flag (struct noce_if_info *);
     779                 :             : static bool noce_try_addcc (struct noce_if_info *);
     780                 :             : static bool noce_try_store_flag_constants (struct noce_if_info *);
     781                 :             : static bool noce_try_store_flag_mask (struct noce_if_info *);
     782                 :             : static rtx noce_emit_cmove (struct noce_if_info *, rtx, enum rtx_code, rtx,
     783                 :             :                             rtx, rtx, rtx, rtx = NULL, rtx = NULL);
     784                 :             : static bool noce_try_cmove (struct noce_if_info *);
     785                 :             : static bool noce_try_cmove_arith (struct noce_if_info *);
     786                 :             : static rtx noce_get_alt_condition (struct noce_if_info *, rtx, rtx_insn **);
     787                 :             : static bool noce_try_minmax (struct noce_if_info *);
     788                 :             : static bool noce_try_abs (struct noce_if_info *);
     789                 :             : static bool noce_try_sign_mask (struct noce_if_info *);
     790                 :             : static int noce_try_cond_zero_arith (struct noce_if_info *);
     791                 :             : 
     792                 :             : /* Return the comparison code for reversed condition for IF_INFO,
     793                 :             :    or UNKNOWN if reversing the condition is not possible.  */
     794                 :             : 
     795                 :             : static inline enum rtx_code
     796                 :      420024 : noce_reversed_cond_code (struct noce_if_info *if_info)
     797                 :             : {
     798                 :      420024 :   if (if_info->rev_cond)
     799                 :      420024 :     return GET_CODE (if_info->rev_cond);
     800                 :           0 :   return reversed_comparison_code (if_info->cond, if_info->jump);
     801                 :             : }
     802                 :             : 
     803                 :             : /* Return true if SEQ is a good candidate as a replacement for the
     804                 :             :    if-convertible sequence described in IF_INFO.
     805                 :             :    This is the default implementation that targets can override
     806                 :             :    through a target hook.  */
     807                 :             : 
     808                 :             : bool
     809                 :      242262 : default_noce_conversion_profitable_p (rtx_insn *seq,
     810                 :             :                                       struct noce_if_info *if_info)
     811                 :             : {
     812                 :      242262 :   bool speed_p = if_info->speed_p;
     813                 :             : 
     814                 :             :   /* Cost up the new sequence.  */
     815                 :      242262 :   unsigned int cost = seq_cost (seq, speed_p);
     816                 :             : 
     817                 :      242262 :   if (cost <= if_info->original_cost)
     818                 :             :     return true;
     819                 :             : 
     820                 :             :   /* When compiling for size, we can make a reasonably accurately guess
     821                 :             :      at the size growth.  When compiling for speed, use the maximum.  */
     822                 :      233989 :   return speed_p && cost <= if_info->max_seq_cost;
     823                 :             : }
     824                 :             : 
     825                 :             : /* Helper function for noce_try_store_flag*.  */
     826                 :             : 
     827                 :             : static rtx
     828                 :       46000 : noce_emit_store_flag (struct noce_if_info *if_info, rtx x, bool reversep,
     829                 :             :                       int normalize)
     830                 :             : {
     831                 :       46000 :   rtx cond = if_info->cond;
     832                 :       46000 :   bool cond_complex;
     833                 :       46000 :   enum rtx_code code;
     834                 :             : 
     835                 :       46000 :   cond_complex = (! general_operand (XEXP (cond, 0), VOIDmode)
     836                 :       46000 :                   || ! general_operand (XEXP (cond, 1), VOIDmode));
     837                 :             : 
     838                 :             :   /* If earliest == jump, or when the condition is complex, try to
     839                 :             :      build the store_flag insn directly.  */
     840                 :             : 
     841                 :       46000 :   if (cond_complex)
     842                 :             :     {
     843                 :       23209 :       rtx set = pc_set (if_info->jump);
     844                 :       23209 :       cond = XEXP (SET_SRC (set), 0);
     845                 :       23209 :       if (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
     846                 :       23209 :           && label_ref_label (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (if_info->jump))
     847                 :           0 :         reversep = !reversep;
     848                 :       23209 :       if (if_info->then_else_reversed)
     849                 :       20622 :         reversep = !reversep;
     850                 :             :     }
     851                 :       22791 :   else if (reversep
     852                 :       15175 :            && if_info->rev_cond
     853                 :       15175 :            && general_operand (XEXP (if_info->rev_cond, 0), VOIDmode)
     854                 :       37966 :            && general_operand (XEXP (if_info->rev_cond, 1), VOIDmode))
     855                 :             :     {
     856                 :       15175 :       cond = if_info->rev_cond;
     857                 :       15175 :       reversep = false;
     858                 :             :     }
     859                 :             : 
     860                 :       46000 :   if (reversep)
     861                 :        4190 :     code = reversed_comparison_code (cond, if_info->jump);
     862                 :             :   else
     863                 :       41810 :     code = GET_CODE (cond);
     864                 :             : 
     865                 :       46000 :   if ((if_info->cond_earliest == if_info->jump || cond_complex)
     866                 :       23209 :       && (normalize == 0 || STORE_FLAG_VALUE == normalize))
     867                 :             :     {
     868                 :       17789 :       rtx src = gen_rtx_fmt_ee (code, GET_MODE (x), XEXP (cond, 0),
     869                 :             :                                 XEXP (cond, 1));
     870                 :       17789 :       rtx set = gen_rtx_SET (x, src);
     871                 :             : 
     872                 :       17789 :       start_sequence ();
     873                 :       17789 :       rtx_insn *insn = emit_insn (set);
     874                 :             : 
     875                 :       17789 :       if (recog_memoized (insn) >= 0)
     876                 :             :         {
     877                 :        7755 :           rtx_insn *seq = get_insns ();
     878                 :        7755 :           end_sequence ();
     879                 :        7755 :           emit_insn (seq);
     880                 :             : 
     881                 :        7755 :           if_info->cond_earliest = if_info->jump;
     882                 :             : 
     883                 :        7755 :           return x;
     884                 :             :         }
     885                 :             : 
     886                 :       10034 :       end_sequence ();
     887                 :             :     }
     888                 :             : 
     889                 :             :   /* Don't even try if the comparison operands or the mode of X are weird.  */
     890                 :       38245 :   if (cond_complex || !SCALAR_INT_MODE_P (GET_MODE (x)))
     891                 :       15454 :     return NULL_RTX;
     892                 :             : 
     893                 :       22791 :   return emit_store_flag (x, code, XEXP (cond, 0),
     894                 :             :                           XEXP (cond, 1), VOIDmode,
     895                 :       22791 :                           (code == LTU || code == LEU
     896                 :       45582 :                            || code == GEU || code == GTU), normalize);
     897                 :             : }
     898                 :             : 
     899                 :             : /* Return true if X can be safely forced into a register by copy_to_mode_reg
     900                 :             :    / force_operand.  */
     901                 :             : 
     902                 :             : static bool
     903                 :          67 : noce_can_force_operand (rtx x)
     904                 :             : {
     905                 :          67 :   if (general_operand (x, VOIDmode))
     906                 :             :     return true;
     907                 :          42 :   if (SUBREG_P (x))
     908                 :             :     {
     909                 :           0 :       if (!noce_can_force_operand (SUBREG_REG (x)))
     910                 :             :         return false;
     911                 :             :       return true;
     912                 :             :     }
     913                 :          42 :   if (ARITHMETIC_P (x))
     914                 :             :     {
     915                 :          21 :       if (!noce_can_force_operand (XEXP (x, 0))
     916                 :          21 :           || !noce_can_force_operand (XEXP (x, 1)))
     917                 :          21 :         return false;
     918                 :           0 :       switch (GET_CODE (x))
     919                 :             :         {
     920                 :             :         case MULT:
     921                 :             :         case DIV:
     922                 :             :         case MOD:
     923                 :             :         case UDIV:
     924                 :             :         case UMOD:
     925                 :             :           return true;
     926                 :           0 :         default:
     927                 :           0 :           return code_to_optab (GET_CODE (x));
     928                 :             :         }
     929                 :             :     }
     930                 :          21 :   if (UNARY_P (x))
     931                 :             :     {
     932                 :           0 :       if (!noce_can_force_operand (XEXP (x, 0)))
     933                 :             :         return false;
     934                 :           0 :       switch (GET_CODE (x))
     935                 :             :         {
     936                 :             :         case ZERO_EXTEND:
     937                 :             :         case SIGN_EXTEND:
     938                 :             :         case TRUNCATE:
     939                 :             :         case FLOAT_EXTEND:
     940                 :             :         case FLOAT_TRUNCATE:
     941                 :             :         case FIX:
     942                 :             :         case UNSIGNED_FIX:
     943                 :             :         case FLOAT:
     944                 :             :         case UNSIGNED_FLOAT:
     945                 :             :           return true;
     946                 :           0 :         default:
     947                 :           0 :           return code_to_optab (GET_CODE (x));
     948                 :             :         }
     949                 :             :     }
     950                 :             :   return false;
     951                 :             : }
     952                 :             : 
     953                 :             : /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
     954                 :             :    X is the destination/target and Y is the value to copy.  */
     955                 :             : 
     956                 :             : static void
     957                 :       35367 : noce_emit_move_insn (rtx x, rtx y)
     958                 :             : {
     959                 :       35367 :   machine_mode outmode;
     960                 :       35367 :   rtx outer, inner;
     961                 :       35367 :   poly_int64 bitpos;
     962                 :             : 
     963                 :       35367 :   if (GET_CODE (x) != STRICT_LOW_PART)
     964                 :             :     {
     965                 :       35367 :       rtx_insn *seq, *insn;
     966                 :       35367 :       rtx target;
     967                 :       35367 :       optab ot;
     968                 :             : 
     969                 :       35367 :       start_sequence ();
     970                 :             :       /* Check that the SET_SRC is reasonable before calling emit_move_insn,
     971                 :             :          otherwise construct a suitable SET pattern ourselves.  */
     972                 :       23186 :       insn = (OBJECT_P (y) || CONSTANT_P (y) || GET_CODE (y) == SUBREG)
     973                 :       35423 :              ? emit_move_insn (x, y)
     974                 :       23130 :              : emit_insn (gen_rtx_SET (x, y));
     975                 :       35367 :       seq = get_insns ();
     976                 :       35367 :       end_sequence ();
     977                 :             : 
     978                 :       35367 :       if (recog_memoized (insn) <= 0)
     979                 :             :         {
     980                 :       21100 :           if (GET_CODE (x) == ZERO_EXTRACT)
     981                 :             :             {
     982                 :           0 :               rtx op = XEXP (x, 0);
     983                 :           0 :               unsigned HOST_WIDE_INT size = INTVAL (XEXP (x, 1));
     984                 :           0 :               unsigned HOST_WIDE_INT start = INTVAL (XEXP (x, 2));
     985                 :             : 
     986                 :             :               /* store_bit_field expects START to be relative to
     987                 :             :                  BYTES_BIG_ENDIAN and adjusts this value for machines with
     988                 :             :                  BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN.  In order to be able to
     989                 :             :                  invoke store_bit_field again it is necessary to have the START
     990                 :             :                  value from the first call.  */
     991                 :           0 :               if (BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
     992                 :             :                 {
     993                 :             :                   if (MEM_P (op))
     994                 :             :                     start = BITS_PER_UNIT - start - size;
     995                 :             :                   else
     996                 :             :                     {
     997                 :             :                       gcc_assert (REG_P (op));
     998                 :             :                       start = BITS_PER_WORD - start - size;
     999                 :             :                     }
    1000                 :             :                 }
    1001                 :             : 
    1002                 :           0 :               gcc_assert (start < (MEM_P (op) ? BITS_PER_UNIT : BITS_PER_WORD));
    1003                 :           0 :               store_bit_field (op, size, start, 0, 0, GET_MODE (x), y, false,
    1004                 :             :                                false);
    1005                 :           0 :               return;
    1006                 :             :             }
    1007                 :             : 
    1008                 :       21100 :           switch (GET_RTX_CLASS (GET_CODE (y)))
    1009                 :             :             {
    1010                 :           0 :             case RTX_UNARY:
    1011                 :           0 :               ot = code_to_optab (GET_CODE (y));
    1012                 :           0 :               if (ot && noce_can_force_operand (XEXP (y, 0)))
    1013                 :             :                 {
    1014                 :           0 :                   start_sequence ();
    1015                 :           0 :                   target = expand_unop (GET_MODE (y), ot, XEXP (y, 0), x, 0);
    1016                 :           0 :                   if (target != NULL_RTX)
    1017                 :             :                     {
    1018                 :           0 :                       if (target != x)
    1019                 :           0 :                         emit_move_insn (x, target);
    1020                 :           0 :                       seq = get_insns ();
    1021                 :             :                     }
    1022                 :           0 :                   end_sequence ();
    1023                 :             :                 }
    1024                 :             :               break;
    1025                 :             : 
    1026                 :           2 :             case RTX_BIN_ARITH:
    1027                 :           2 :             case RTX_COMM_ARITH:
    1028                 :           2 :               ot = code_to_optab (GET_CODE (y));
    1029                 :           2 :               if (ot
    1030                 :           2 :                   && noce_can_force_operand (XEXP (y, 0))
    1031                 :           4 :                   && noce_can_force_operand (XEXP (y, 1)))
    1032                 :             :                 {
    1033                 :           2 :                   start_sequence ();
    1034                 :           2 :                   target = expand_binop (GET_MODE (y), ot,
    1035                 :             :                                          XEXP (y, 0), XEXP (y, 1),
    1036                 :             :                                          x, 0, OPTAB_DIRECT);
    1037                 :           2 :                   if (target != NULL_RTX)
    1038                 :             :                     {
    1039                 :           2 :                       if (target != x)
    1040                 :           0 :                           emit_move_insn (x, target);
    1041                 :           2 :                       seq = get_insns ();
    1042                 :             :                     }
    1043                 :           2 :                   end_sequence ();
    1044                 :             :                 }
    1045                 :             :               break;
    1046                 :             : 
    1047                 :             :             default:
    1048                 :             :               break;
    1049                 :             :             }
    1050                 :             :         }
    1051                 :             : 
    1052                 :       35367 :       emit_insn (seq);
    1053                 :       35367 :       return;
    1054                 :             :     }
    1055                 :             : 
    1056                 :           0 :   outer = XEXP (x, 0);
    1057                 :           0 :   inner = XEXP (outer, 0);
    1058                 :           0 :   outmode = GET_MODE (outer);
    1059                 :           0 :   bitpos = SUBREG_BYTE (outer) * BITS_PER_UNIT;
    1060                 :           0 :   store_bit_field (inner, GET_MODE_BITSIZE (outmode), bitpos,
    1061                 :           0 :                    0, 0, outmode, y, false, false);
    1062                 :             : }
    1063                 :             : 
    1064                 :             : /* Return the CC reg if it is used in COND.  */
    1065                 :             : 
    1066                 :             : static rtx
    1067                 :     4068841 : cc_in_cond (rtx cond)
    1068                 :             : {
    1069                 :     4068841 :   if (have_cbranchcc4 && cond
    1070                 :     4068841 :       && GET_MODE_CLASS (GET_MODE (XEXP (cond, 0))) == MODE_CC)
    1071                 :       70599 :     return XEXP (cond, 0);
    1072                 :             : 
    1073                 :             :   return NULL_RTX;
    1074                 :             : }
    1075                 :             : 
    1076                 :             : /* Return sequence of instructions generated by if conversion.  This
    1077                 :             :    function calls end_sequence() to end the current stream, ensures
    1078                 :             :    that the instructions are unshared, recognizable non-jump insns.
    1079                 :             :    On failure, this function returns a NULL_RTX.  */
    1080                 :             : 
    1081                 :             : static rtx_insn *
    1082                 :      287500 : end_ifcvt_sequence (struct noce_if_info *if_info)
    1083                 :             : {
    1084                 :      287500 :   rtx_insn *insn;
    1085                 :      287500 :   rtx_insn *seq = get_insns ();
    1086                 :      287500 :   rtx cc = cc_in_cond (if_info->cond);
    1087                 :             : 
    1088                 :      287500 :   set_used_flags (if_info->x);
    1089                 :      287500 :   set_used_flags (if_info->cond);
    1090                 :      287500 :   set_used_flags (if_info->a);
    1091                 :      287500 :   set_used_flags (if_info->b);
    1092                 :             : 
    1093                 :     1642921 :   for (insn = seq; insn; insn = NEXT_INSN (insn))
    1094                 :     1067921 :     set_used_flags (insn);
    1095                 :             : 
    1096                 :      287500 :   unshare_all_rtl_in_chain (seq);
    1097                 :      287500 :   end_sequence ();
    1098                 :             : 
    1099                 :             :   /* Make sure that all of the instructions emitted are recognizable,
    1100                 :             :      and that we haven't introduced a new jump instruction.
    1101                 :             :      As an exercise for the reader, build a general mechanism that
    1102                 :             :      allows proper placement of required clobbers.  */
    1103                 :     1618752 :   for (insn = seq; insn; insn = NEXT_INSN (insn))
    1104                 :     1065570 :     if (JUMP_P (insn)
    1105                 :     1065570 :         || recog_memoized (insn) == -1
    1106                 :             :            /* Make sure new generated code does not clobber CC.  */
    1107                 :     2109392 :         || (cc && set_of (cc, insn)))
    1108                 :       21818 :       return NULL;
    1109                 :             : 
    1110                 :             :   return seq;
    1111                 :             : }
    1112                 :             : 
    1113                 :             : /* Return true iff the then and else basic block (if it exists)
    1114                 :             :    consist of a single simple set instruction.  */
    1115                 :             : 
    1116                 :             : static bool
    1117                 :     3676504 : noce_simple_bbs (struct noce_if_info *if_info)
    1118                 :             : {
    1119                 :           0 :   if (!if_info->then_simple)
    1120                 :             :     return false;
    1121                 :             : 
    1122                 :     3265446 :   if (if_info->else_bb)
    1123                 :           0 :     return if_info->else_simple;
    1124                 :             : 
    1125                 :             :   return true;
    1126                 :             : }
    1127                 :             : 
    1128                 :             : /* Convert "if (a != b) x = a; else x = b" into "x = a" and
    1129                 :             :    "if (a == b) x = a; else x = b" into "x = b".  */
    1130                 :             : 
    1131                 :             : static bool
    1132                 :      295007 : noce_try_move (struct noce_if_info *if_info)
    1133                 :             : {
    1134                 :      295007 :   rtx cond = if_info->cond;
    1135                 :      295007 :   enum rtx_code code = GET_CODE (cond);
    1136                 :      295007 :   rtx y;
    1137                 :      295007 :   rtx_insn *seq;
    1138                 :             : 
    1139                 :      295007 :   if (code != NE && code != EQ)
    1140                 :             :     return false;
    1141                 :             : 
    1142                 :      559986 :   if (!noce_simple_bbs (if_info))
    1143                 :             :     return false;
    1144                 :             : 
    1145                 :             :   /* This optimization isn't valid if either A or B could be a NaN
    1146                 :             :      or a signed zero.  */
    1147                 :      208555 :   if (HONOR_NANS (if_info->x)
    1148                 :      208555 :       || HONOR_SIGNED_ZEROS (if_info->x))
    1149                 :       49551 :     return false;
    1150                 :             : 
    1151                 :             :   /* Check whether the operands of the comparison are A and in
    1152                 :             :      either order.  */
    1153                 :      159004 :   if ((rtx_equal_p (if_info->a, XEXP (cond, 0))
    1154                 :        2005 :        && rtx_equal_p (if_info->b, XEXP (cond, 1)))
    1155                 :      160999 :       || (rtx_equal_p (if_info->a, XEXP (cond, 1))
    1156                 :        2596 :           && rtx_equal_p (if_info->b, XEXP (cond, 0))))
    1157                 :             :     {
    1158                 :          21 :       if (!rtx_interchangeable_p (if_info->a, if_info->b))
    1159                 :             :         return false;
    1160                 :             : 
    1161                 :           0 :       y = (code == EQ) ? if_info->a : if_info->b;
    1162                 :             : 
    1163                 :             :       /* Avoid generating the move if the source is the destination.  */
    1164                 :           0 :       if (! rtx_equal_p (if_info->x, y))
    1165                 :             :         {
    1166                 :           0 :           start_sequence ();
    1167                 :           0 :           noce_emit_move_insn (if_info->x, y);
    1168                 :           0 :           seq = end_ifcvt_sequence (if_info);
    1169                 :           0 :           if (!seq)
    1170                 :             :             return false;
    1171                 :             : 
    1172                 :           0 :           emit_insn_before_setloc (seq, if_info->jump,
    1173                 :           0 :                                    INSN_LOCATION (if_info->insn_a));
    1174                 :             :         }
    1175                 :           0 :       if_info->transform_name = "noce_try_move";
    1176                 :           0 :       return true;
    1177                 :             :     }
    1178                 :             :   return false;
    1179                 :             : }
    1180                 :             : 
    1181                 :             : /* Try forming an IF_THEN_ELSE (cond, b, a) and collapsing that
    1182                 :             :    through simplify_rtx.  Sometimes that can eliminate the IF_THEN_ELSE.
    1183                 :             :    If that is the case, emit the result into x.  */
    1184                 :             : 
    1185                 :             : static bool
    1186                 :      295007 : noce_try_ifelse_collapse (struct noce_if_info * if_info)
    1187                 :             : {
    1188                 :      620966 :   if (!noce_simple_bbs (if_info))
    1189                 :             :     return false;
    1190                 :             : 
    1191                 :      261417 :   machine_mode mode = GET_MODE (if_info->x);
    1192                 :      261417 :   rtx if_then_else = simplify_gen_ternary (IF_THEN_ELSE, mode, mode,
    1193                 :             :                                             if_info->cond, if_info->b,
    1194                 :             :                                             if_info->a);
    1195                 :             : 
    1196                 :      261417 :   if (GET_CODE (if_then_else) == IF_THEN_ELSE)
    1197                 :             :     return false;
    1198                 :             : 
    1199                 :       23163 :   rtx_insn *seq;
    1200                 :       23163 :   start_sequence ();
    1201                 :       23163 :   noce_emit_move_insn (if_info->x, if_then_else);
    1202                 :       23163 :   seq = end_ifcvt_sequence (if_info);
    1203                 :       23163 :   if (!seq)
    1204                 :             :     return false;
    1205                 :             : 
    1206                 :        2065 :   emit_insn_before_setloc (seq, if_info->jump,
    1207                 :        2065 :                           INSN_LOCATION (if_info->insn_a));
    1208                 :             : 
    1209                 :        2065 :   if_info->transform_name = "noce_try_ifelse_collapse";
    1210                 :        2065 :   return true;
    1211                 :             : }
    1212                 :             : 
    1213                 :             : 
    1214                 :             : /* Convert "if (test) x = 1; else x = 0".
    1215                 :             : 
    1216                 :             :    Only try 0 and STORE_FLAG_VALUE here.  Other combinations will be
    1217                 :             :    tried in noce_try_store_flag_constants after noce_try_cmove has had
    1218                 :             :    a go at the conversion.  */
    1219                 :             : 
    1220                 :             : static bool
    1221                 :      292942 : noce_try_store_flag (struct noce_if_info *if_info)
    1222                 :             : {
    1223                 :      292942 :   bool reversep;
    1224                 :      292942 :   rtx target;
    1225                 :      292942 :   rtx_insn *seq;
    1226                 :             : 
    1227                 :      602368 :   if (!noce_simple_bbs (if_info))
    1228                 :             :     return false;
    1229                 :             : 
    1230                 :      259352 :   if (CONST_INT_P (if_info->b)
    1231                 :       81029 :       && INTVAL (if_info->b) == STORE_FLAG_VALUE
    1232                 :        4526 :       && if_info->a == const0_rtx)
    1233                 :             :     reversep = false;
    1234                 :      258151 :   else if (if_info->b == const0_rtx
    1235                 :       37988 :            && CONST_INT_P (if_info->a)
    1236                 :       20411 :            && INTVAL (if_info->a) == STORE_FLAG_VALUE
    1237                 :      278049 :            && noce_reversed_cond_code (if_info) != UNKNOWN)
    1238                 :             :     reversep = true;
    1239                 :             :   else
    1240                 :      238253 :     return false;
    1241                 :             : 
    1242                 :       21099 :   start_sequence ();
    1243                 :             : 
    1244                 :       21099 :   target = noce_emit_store_flag (if_info, if_info->x, reversep, 0);
    1245                 :       21099 :   if (target)
    1246                 :             :     {
    1247                 :       16506 :       if (target != if_info->x)
    1248                 :        3048 :         noce_emit_move_insn (if_info->x, target);
    1249                 :             : 
    1250                 :       16506 :       seq = end_ifcvt_sequence (if_info);
    1251                 :       16506 :       if (! seq)
    1252                 :             :         return false;
    1253                 :             : 
    1254                 :       16504 :       emit_insn_before_setloc (seq, if_info->jump,
    1255                 :       16504 :                                INSN_LOCATION (if_info->insn_a));
    1256                 :       16504 :       if_info->transform_name = "noce_try_store_flag";
    1257                 :       16504 :       return true;
    1258                 :             :     }
    1259                 :             :   else
    1260                 :             :     {
    1261                 :        4593 :       end_sequence ();
    1262                 :        4593 :       return false;
    1263                 :             :     }
    1264                 :             : }
    1265                 :             : 
    1266                 :             : 
    1267                 :             : /* Convert "if (test) x = -A; else x = A" into
    1268                 :             :    x = A; if (test) x = -x if the machine can do the
    1269                 :             :    conditional negate form of this cheaply.
    1270                 :             :    Try this before noce_try_cmove that will just load the
    1271                 :             :    immediates into two registers and do a conditional select
    1272                 :             :    between them.  If the target has a conditional negate or
    1273                 :             :    conditional invert operation we can save a potentially
    1274                 :             :    expensive constant synthesis.  */
    1275                 :             : 
    1276                 :             : static bool
    1277                 :      276371 : noce_try_inverse_constants (struct noce_if_info *if_info)
    1278                 :             : {
    1279                 :      585366 :   if (!noce_simple_bbs (if_info))
    1280                 :             :     return false;
    1281                 :             : 
    1282                 :      242781 :   if (!CONST_INT_P (if_info->a)
    1283                 :       56200 :       || !CONST_INT_P (if_info->b)
    1284                 :       22405 :       || !REG_P (if_info->x))
    1285                 :             :     return false;
    1286                 :             : 
    1287                 :       22405 :   machine_mode mode = GET_MODE (if_info->x);
    1288                 :             : 
    1289                 :       22405 :   HOST_WIDE_INT val_a = INTVAL (if_info->a);
    1290                 :       22405 :   HOST_WIDE_INT val_b = INTVAL (if_info->b);
    1291                 :             : 
    1292                 :       22405 :   rtx cond = if_info->cond;
    1293                 :             : 
    1294                 :       22405 :   rtx x = if_info->x;
    1295                 :       22405 :   rtx target;
    1296                 :             : 
    1297                 :       22405 :   start_sequence ();
    1298                 :             : 
    1299                 :       22405 :   rtx_code code;
    1300                 :       22405 :   if (val_b != HOST_WIDE_INT_MIN && val_a == -val_b)
    1301                 :             :     code = NEG;
    1302                 :       21146 :   else if (val_a == ~val_b)
    1303                 :             :     code = NOT;
    1304                 :             :   else
    1305                 :             :     {
    1306                 :       21025 :       end_sequence ();
    1307                 :       21025 :       return false;
    1308                 :             :     }
    1309                 :             : 
    1310                 :        1380 :   rtx tmp = gen_reg_rtx (mode);
    1311                 :        1380 :   noce_emit_move_insn (tmp, if_info->a);
    1312                 :             : 
    1313                 :        1380 :   target = emit_conditional_neg_or_complement (x, code, mode, cond, tmp, tmp);
    1314                 :             : 
    1315                 :        1380 :   if (target)
    1316                 :             :     {
    1317                 :           0 :       rtx_insn *seq = get_insns ();
    1318                 :             : 
    1319                 :           0 :       if (!seq)
    1320                 :             :         {
    1321                 :           0 :           end_sequence ();
    1322                 :           0 :           return false;
    1323                 :             :         }
    1324                 :             : 
    1325                 :           0 :       if (target != if_info->x)
    1326                 :           0 :         noce_emit_move_insn (if_info->x, target);
    1327                 :             : 
    1328                 :           0 :       seq = end_ifcvt_sequence (if_info);
    1329                 :             : 
    1330                 :           0 :       if (!seq)
    1331                 :             :         return false;
    1332                 :             : 
    1333                 :           0 :       emit_insn_before_setloc (seq, if_info->jump,
    1334                 :           0 :                                INSN_LOCATION (if_info->insn_a));
    1335                 :           0 :       if_info->transform_name = "noce_try_inverse_constants";
    1336                 :           0 :       return true;
    1337                 :             :     }
    1338                 :             : 
    1339                 :        1380 :   end_sequence ();
    1340                 :        1380 :   return false;
    1341                 :             : }
    1342                 :             : 
    1343                 :             : 
    1344                 :             : /* Convert "if (test) x = a; else x = b", for A and B constant.
    1345                 :             :    Also allow A = y + c1, B = y + c2, with a common y between A
    1346                 :             :    and B.  */
    1347                 :             : 
    1348                 :             : static bool
    1349                 :      276371 : noce_try_store_flag_constants (struct noce_if_info *if_info)
    1350                 :             : {
    1351                 :      276371 :   rtx target;
    1352                 :      276371 :   rtx_insn *seq;
    1353                 :      276371 :   bool reversep;
    1354                 :      276371 :   HOST_WIDE_INT itrue, ifalse, diff, tmp;
    1355                 :      276371 :   int normalize;
    1356                 :      276371 :   bool can_reverse;
    1357                 :      276371 :   machine_mode mode = GET_MODE (if_info->x);
    1358                 :      276371 :   rtx common = NULL_RTX;
    1359                 :             : 
    1360                 :      276371 :   rtx a = if_info->a;
    1361                 :      276371 :   rtx b = if_info->b;
    1362                 :             : 
    1363                 :             :   /* Handle cases like x := test ? y + 3 : y + 4.  */
    1364                 :      276371 :   if (GET_CODE (a) == PLUS
    1365                 :       32164 :       && GET_CODE (b) == PLUS
    1366                 :        1954 :       && CONST_INT_P (XEXP (a, 1))
    1367                 :        1049 :       && CONST_INT_P (XEXP (b, 1))
    1368                 :         991 :       && rtx_equal_p (XEXP (a, 0), XEXP (b, 0))
    1369                 :             :       /* Allow expressions that are not using the result or plain
    1370                 :             :          registers where we handle overlap below.  */
    1371                 :      277245 :       && (REG_P (XEXP (a, 0))
    1372                 :         126 :           || (noce_operand_ok (XEXP (a, 0))
    1373                 :         126 :               && ! reg_overlap_mentioned_p (if_info->x, XEXP (a, 0)))))
    1374                 :             :     {
    1375                 :         874 :       common = XEXP (a, 0);
    1376                 :         874 :       a = XEXP (a, 1);
    1377                 :         874 :       b = XEXP (b, 1);
    1378                 :             :     }
    1379                 :             : 
    1380                 :      342585 :   if (!noce_simple_bbs (if_info))
    1381                 :             :     return false;
    1382                 :             : 
    1383                 :      242781 :   if (CONST_INT_P (a)
    1384                 :       57050 :       && CONST_INT_P (b))
    1385                 :             :     {
    1386                 :       23255 :       ifalse = INTVAL (a);
    1387                 :       23255 :       itrue = INTVAL (b);
    1388                 :       23255 :       bool subtract_flag_p = false;
    1389                 :             : 
    1390                 :       23255 :       diff = (unsigned HOST_WIDE_INT) itrue - ifalse;
    1391                 :             :       /* Make sure we can represent the difference between the two values.  */
    1392                 :       23255 :       if ((diff > 0)
    1393                 :       23255 :           != ((ifalse < 0) != (itrue < 0) ? ifalse < 0 : ifalse < itrue))
    1394                 :             :         return false;
    1395                 :             : 
    1396                 :       23235 :       diff = trunc_int_for_mode (diff, mode);
    1397                 :             : 
    1398                 :       23235 :       can_reverse = noce_reversed_cond_code (if_info) != UNKNOWN;
    1399                 :       23235 :       reversep = false;
    1400                 :       23235 :       if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
    1401                 :             :         {
    1402                 :       10600 :           normalize = 0;
    1403                 :             :           /* We could collapse these cases but it is easier to follow the
    1404                 :             :              diff/STORE_FLAG_VALUE combinations when they are listed
    1405                 :             :              explicitly.  */
    1406                 :             : 
    1407                 :             :           /* test ? 3 : 4
    1408                 :             :              => 4 + (test != 0).  */
    1409                 :       10600 :           if (diff < 0 && STORE_FLAG_VALUE < 0)
    1410                 :             :               reversep = false;
    1411                 :             :           /* test ? 4 : 3
    1412                 :             :              => can_reverse  | 4 + (test == 0)
    1413                 :             :                 !can_reverse | 3 - (test != 0).  */
    1414                 :       10600 :           else if (diff > 0 && STORE_FLAG_VALUE < 0)
    1415                 :             :             {
    1416                 :             :               reversep = can_reverse;
    1417                 :             :               subtract_flag_p = !can_reverse;
    1418                 :             :               /* If we need to subtract the flag and we have PLUS-immediate
    1419                 :             :                  A and B then it is unlikely to be beneficial to play tricks
    1420                 :             :                  here.  */
    1421                 :             :               if (subtract_flag_p && common)
    1422                 :             :                 return false;
    1423                 :             :             }
    1424                 :             :           /* test ? 3 : 4
    1425                 :             :              => can_reverse  | 3 + (test == 0)
    1426                 :             :                 !can_reverse | 4 - (test != 0).  */
    1427                 :       10600 :           else if (diff < 0 && STORE_FLAG_VALUE > 0)
    1428                 :             :             {
    1429                 :        5478 :               reversep = can_reverse;
    1430                 :        5478 :               subtract_flag_p = !can_reverse;
    1431                 :             :               /* If we need to subtract the flag and we have PLUS-immediate
    1432                 :             :                  A and B then it is unlikely to be beneficial to play tricks
    1433                 :             :                  here.  */
    1434                 :        5478 :               if (subtract_flag_p && common)
    1435                 :             :                 return false;
    1436                 :             :             }
    1437                 :             :           /* test ? 4 : 3
    1438                 :             :              => 4 + (test != 0).  */
    1439                 :             :           else if (diff > 0 && STORE_FLAG_VALUE > 0)
    1440                 :             :             reversep = false;
    1441                 :             :           else
    1442                 :             :             gcc_unreachable ();
    1443                 :             :         }
    1444                 :             :       /* Is this (cond) ? 2^n : 0?  */
    1445                 :        1138 :       else if (ifalse == 0 && pow2p_hwi (itrue)
    1446                 :       12635 :                && STORE_FLAG_VALUE == 1)
    1447                 :             :         normalize = 1;
    1448                 :             :       /* Is this (cond) ? 0 : 2^n?  */
    1449                 :      274732 :       else if (itrue == 0 && pow2p_hwi (ifalse) && can_reverse
    1450                 :       12627 :                && STORE_FLAG_VALUE == 1)
    1451                 :             :         {
    1452                 :             :           normalize = 1;
    1453                 :             :           reversep = true;
    1454                 :             :         }
    1455                 :             :       /* Is this (cond) ? -1 : x?  */
    1456                 :             :       else if (itrue == -1
    1457                 :             :                && STORE_FLAG_VALUE == -1)
    1458                 :             :         normalize = -1;
    1459                 :             :       /* Is this (cond) ? x : -1?  */
    1460                 :             :       else if (ifalse == -1 && can_reverse
    1461                 :             :                && STORE_FLAG_VALUE == -1)
    1462                 :             :         {
    1463                 :             :           normalize = -1;
    1464                 :             :           reversep = true;
    1465                 :             :         }
    1466                 :             :       else
    1467                 :             :         return false;
    1468                 :             : 
    1469                 :       10610 :       if (reversep)
    1470                 :             :         {
    1471                 :        5479 :           std::swap (itrue, ifalse);
    1472                 :        5479 :           diff = trunc_int_for_mode (-(unsigned HOST_WIDE_INT) diff, mode);
    1473                 :             :         }
    1474                 :             : 
    1475                 :       10610 :       start_sequence ();
    1476                 :             : 
    1477                 :             :       /* If we have x := test ? x + 3 : x + 4 then move the original
    1478                 :             :          x out of the way while we store flags.  */
    1479                 :       10610 :       if (common && rtx_equal_p (common, if_info->x))
    1480                 :             :         {
    1481                 :          23 :           common = gen_reg_rtx (mode);
    1482                 :          23 :           noce_emit_move_insn (common, if_info->x);
    1483                 :             :         }
    1484                 :             : 
    1485                 :       10610 :       target = noce_emit_store_flag (if_info, if_info->x, reversep, normalize);
    1486                 :       10610 :       if (! target)
    1487                 :             :         {
    1488                 :        4593 :           end_sequence ();
    1489                 :        4593 :           return false;
    1490                 :             :         }
    1491                 :             : 
    1492                 :             :       /* if (test) x = 3; else x = 4;
    1493                 :             :          =>   x = 3 + (test == 0);  */
    1494                 :        6017 :       if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
    1495                 :             :         {
    1496                 :             :           /* Add the common part now.  This may allow combine to merge this
    1497                 :             :              with the store flag operation earlier into some sort of conditional
    1498                 :             :              increment/decrement if the target allows it.  */
    1499                 :        6007 :           if (common)
    1500                 :         132 :             target = expand_simple_binop (mode, PLUS,
    1501                 :             :                                            target, common,
    1502                 :             :                                            target, 0, OPTAB_WIDEN);
    1503                 :             : 
    1504                 :             :           /* Always use ifalse here.  It should have been swapped with itrue
    1505                 :             :              when appropriate when reversep is true.  */
    1506                 :       12014 :           target = expand_simple_binop (mode, subtract_flag_p ? MINUS : PLUS,
    1507                 :             :                                         gen_int_mode (ifalse, mode), target,
    1508                 :             :                                         if_info->x, 0, OPTAB_WIDEN);
    1509                 :             :         }
    1510                 :             :       /* Other cases are not beneficial when the original A and B are PLUS
    1511                 :             :          expressions.  */
    1512                 :          10 :       else if (common)
    1513                 :             :         {
    1514                 :           0 :           end_sequence ();
    1515                 :           0 :           return false;
    1516                 :             :         }
    1517                 :             :       /* if (test) x = 8; else x = 0;
    1518                 :             :          =>   x = (test != 0) << 3;  */
    1519                 :          10 :       else if (ifalse == 0 && (tmp = exact_log2 (itrue)) >= 0)
    1520                 :             :         {
    1521                 :          10 :           target = expand_simple_binop (mode, ASHIFT,
    1522                 :             :                                         target, GEN_INT (tmp), if_info->x, 0,
    1523                 :             :                                         OPTAB_WIDEN);
    1524                 :             :         }
    1525                 :             : 
    1526                 :             :       /* if (test) x = -1; else x = b;
    1527                 :             :          =>   x = -(test != 0) | b;  */
    1528                 :           0 :       else if (itrue == -1)
    1529                 :             :         {
    1530                 :           0 :           target = expand_simple_binop (mode, IOR,
    1531                 :             :                                         target, gen_int_mode (ifalse, mode),
    1532                 :             :                                         if_info->x, 0, OPTAB_WIDEN);
    1533                 :             :         }
    1534                 :             :       else
    1535                 :             :         {
    1536                 :           0 :           end_sequence ();
    1537                 :           0 :           return false;
    1538                 :             :         }
    1539                 :             : 
    1540                 :        6017 :       if (! target)
    1541                 :             :         {
    1542                 :           0 :           end_sequence ();
    1543                 :           0 :           return false;
    1544                 :             :         }
    1545                 :             : 
    1546                 :        6017 :       if (target != if_info->x)
    1547                 :           0 :         noce_emit_move_insn (if_info->x, target);
    1548                 :             : 
    1549                 :        6017 :       seq = end_ifcvt_sequence (if_info);
    1550                 :        6017 :       if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
    1551                 :        3982 :         return false;
    1552                 :             : 
    1553                 :        2035 :       emit_insn_before_setloc (seq, if_info->jump,
    1554                 :        2035 :                                INSN_LOCATION (if_info->insn_a));
    1555                 :        2035 :       if_info->transform_name = "noce_try_store_flag_constants";
    1556                 :             : 
    1557                 :        2035 :       return true;
    1558                 :             :     }
    1559                 :             : 
    1560                 :             :   return false;
    1561                 :             : }
    1562                 :             : 
    1563                 :             : /* Convert "if (test) foo++" into "foo += (test != 0)", and
    1564                 :             :    similarly for "foo--".  */
    1565                 :             : 
    1566                 :             : static bool
    1567                 :      238205 : noce_try_addcc (struct noce_if_info *if_info)
    1568                 :             : {
    1569                 :      238205 :   rtx target;
    1570                 :      238205 :   rtx_insn *seq;
    1571                 :      238205 :   bool subtract;
    1572                 :      238205 :   int normalize;
    1573                 :             : 
    1574                 :      490931 :   if (!noce_simple_bbs (if_info))
    1575                 :             :     return false;
    1576                 :             : 
    1577                 :      204615 :   if (GET_CODE (if_info->a) == PLUS
    1578                 :       24621 :       && rtx_equal_p (XEXP (if_info->a, 0), if_info->b)
    1579                 :      223079 :       && noce_reversed_cond_code (if_info) != UNKNOWN)
    1580                 :             :     {
    1581                 :       18464 :       rtx cond = if_info->rev_cond;
    1582                 :       18464 :       enum rtx_code code;
    1583                 :             : 
    1584                 :       18464 :       if (cond == NULL_RTX)
    1585                 :             :         {
    1586                 :           0 :           cond = if_info->cond;
    1587                 :           0 :           code = reversed_comparison_code (cond, if_info->jump);
    1588                 :             :         }
    1589                 :             :       else
    1590                 :       18464 :         code = GET_CODE (cond);
    1591                 :             : 
    1592                 :             :       /* First try to use addcc pattern.  */
    1593                 :       18464 :       if (general_operand (XEXP (cond, 0), VOIDmode)
    1594                 :       18464 :           && general_operand (XEXP (cond, 1), VOIDmode))
    1595                 :             :         {
    1596                 :       16806 :           start_sequence ();
    1597                 :       50418 :           target = emit_conditional_add (if_info->x, code,
    1598                 :             :                                          XEXP (cond, 0),
    1599                 :             :                                          XEXP (cond, 1),
    1600                 :             :                                          VOIDmode,
    1601                 :             :                                          if_info->b,
    1602                 :       16806 :                                          XEXP (if_info->a, 1),
    1603                 :       16806 :                                          GET_MODE (if_info->x),
    1604                 :       16806 :                                          (code == LTU || code == GEU
    1605                 :       16806 :                                           || code == LEU || code == GTU));
    1606                 :       16806 :           if (target)
    1607                 :             :             {
    1608                 :         928 :               if (target != if_info->x)
    1609                 :           0 :                 noce_emit_move_insn (if_info->x, target);
    1610                 :             : 
    1611                 :         928 :               seq = end_ifcvt_sequence (if_info);
    1612                 :         928 :               if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
    1613                 :          64 :                 return false;
    1614                 :             : 
    1615                 :         864 :               emit_insn_before_setloc (seq, if_info->jump,
    1616                 :         864 :                                        INSN_LOCATION (if_info->insn_a));
    1617                 :         864 :               if_info->transform_name = "noce_try_addcc";
    1618                 :             : 
    1619                 :         864 :               return true;
    1620                 :             :             }
    1621                 :       15878 :           end_sequence ();
    1622                 :             :         }
    1623                 :             : 
    1624                 :             :       /* If that fails, construct conditional increment or decrement using
    1625                 :             :          setcc.  We're changing a branch and an increment to a comparison and
    1626                 :             :          an ADD/SUB.  */
    1627                 :       17536 :       if (XEXP (if_info->a, 1) == const1_rtx
    1628                 :       12579 :           || XEXP (if_info->a, 1) == constm1_rtx)
    1629                 :             :         {
    1630                 :        6061 :           start_sequence ();
    1631                 :        6061 :           if (STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
    1632                 :             :             subtract = false, normalize = 0;
    1633                 :        1104 :           else if (-STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
    1634                 :             :             subtract = true, normalize = 0;
    1635                 :             :           else
    1636                 :           0 :             subtract = false, normalize = INTVAL (XEXP (if_info->a, 1));
    1637                 :             : 
    1638                 :             : 
    1639                 :        6061 :           target = noce_emit_store_flag (if_info,
    1640                 :        6061 :                                          gen_reg_rtx (GET_MODE (if_info->x)),
    1641                 :             :                                          true, normalize);
    1642                 :             : 
    1643                 :        6061 :           if (target)
    1644                 :        9322 :             target = expand_simple_binop (GET_MODE (if_info->x),
    1645                 :             :                                           subtract ? MINUS : PLUS,
    1646                 :             :                                           if_info->b, target, if_info->x,
    1647                 :             :                                           0, OPTAB_WIDEN);
    1648                 :        5213 :           if (target)
    1649                 :             :             {
    1650                 :        5213 :               if (target != if_info->x)
    1651                 :           0 :                 noce_emit_move_insn (if_info->x, target);
    1652                 :             : 
    1653                 :        5213 :               seq = end_ifcvt_sequence (if_info);
    1654                 :        5213 :               if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
    1655                 :        1838 :                 return false;
    1656                 :             : 
    1657                 :        3375 :               emit_insn_before_setloc (seq, if_info->jump,
    1658                 :        3375 :                                        INSN_LOCATION (if_info->insn_a));
    1659                 :        3375 :               if_info->transform_name = "noce_try_addcc";
    1660                 :        3375 :               return true;
    1661                 :             :             }
    1662                 :         848 :           end_sequence ();
    1663                 :             :         }
    1664                 :             :     }
    1665                 :             : 
    1666                 :             :   return false;
    1667                 :             : }
    1668                 :             : 
    1669                 :             : /* Convert "if (test) x = 0;" to "x &= -(test == 0);"  */
    1670                 :             : 
    1671                 :             : static bool
    1672                 :      233966 : noce_try_store_flag_mask (struct noce_if_info *if_info)
    1673                 :             : {
    1674                 :      233966 :   rtx target;
    1675                 :      233966 :   rtx_insn *seq;
    1676                 :      233966 :   bool reversep;
    1677                 :             : 
    1678                 :      486598 :   if (!noce_simple_bbs (if_info))
    1679                 :             :     return false;
    1680                 :             : 
    1681                 :      200376 :   reversep = false;
    1682                 :             : 
    1683                 :      200376 :   if ((if_info->a == const0_rtx
    1684                 :        4547 :        && (REG_P (if_info->b) || rtx_equal_p (if_info->b, if_info->x)))
    1685                 :      201948 :       || ((reversep = (noce_reversed_cond_code (if_info) != UNKNOWN))
    1686                 :      197401 :           && if_info->b == const0_rtx
    1687                 :       21601 :           && (REG_P (if_info->a) || rtx_equal_p (if_info->a, if_info->x))))
    1688                 :             :     {
    1689                 :        3300 :       start_sequence ();
    1690                 :        3300 :       target = noce_emit_store_flag (if_info,
    1691                 :        3300 :                                      gen_reg_rtx (GET_MODE (if_info->x)),
    1692                 :             :                                      reversep, -1);
    1693                 :        3300 :       if (target)
    1694                 :        2524 :         target = expand_simple_binop (GET_MODE (if_info->x), AND,
    1695                 :             :                                       reversep ? if_info->a : if_info->b,
    1696                 :             :                                       target, if_info->x, 0,
    1697                 :             :                                       OPTAB_WIDEN);
    1698                 :             : 
    1699                 :        2524 :       if (target)
    1700                 :             :         {
    1701                 :        2524 :           if (target != if_info->x)
    1702                 :           0 :             noce_emit_move_insn (if_info->x, target);
    1703                 :             : 
    1704                 :        2524 :           seq = end_ifcvt_sequence (if_info);
    1705                 :        2524 :           if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
    1706                 :        2516 :             return false;
    1707                 :             : 
    1708                 :           8 :           emit_insn_before_setloc (seq, if_info->jump,
    1709                 :           8 :                                    INSN_LOCATION (if_info->insn_a));
    1710                 :           8 :           if_info->transform_name = "noce_try_store_flag_mask";
    1711                 :             : 
    1712                 :           8 :           return true;
    1713                 :             :         }
    1714                 :             : 
    1715                 :         776 :       end_sequence ();
    1716                 :             :     }
    1717                 :             : 
    1718                 :             :   return false;
    1719                 :             : }
    1720                 :             : 
    1721                 :             : /* Helper function for noce_try_cmove and noce_try_cmove_arith.  */
    1722                 :             : 
    1723                 :             : static rtx
    1724                 :      419984 : noce_emit_cmove (struct noce_if_info *if_info, rtx x, enum rtx_code code,
    1725                 :             :                  rtx cmp_a, rtx cmp_b, rtx vfalse, rtx vtrue, rtx cc_cmp,
    1726                 :             :                  rtx rev_cc_cmp)
    1727                 :             : {
    1728                 :      419984 :   rtx target ATTRIBUTE_UNUSED;
    1729                 :      419984 :   bool unsignedp ATTRIBUTE_UNUSED;
    1730                 :             : 
    1731                 :             :   /* If earliest == jump, try to build the cmove insn directly.
    1732                 :             :      This is helpful when combine has created some complex condition
    1733                 :             :      (like for alpha's cmovlbs) that we can't hope to regenerate
    1734                 :             :      through the normal interface.  */
    1735                 :             : 
    1736                 :      419984 :   if (if_info->cond_earliest == if_info->jump)
    1737                 :             :     {
    1738                 :        6364 :       rtx cond = gen_rtx_fmt_ee (code, GET_MODE (if_info->cond), cmp_a, cmp_b);
    1739                 :        6364 :       rtx if_then_else = gen_rtx_IF_THEN_ELSE (GET_MODE (x),
    1740                 :             :                                                cond, vtrue, vfalse);
    1741                 :        6364 :       rtx set = gen_rtx_SET (x, if_then_else);
    1742                 :             : 
    1743                 :        6364 :       start_sequence ();
    1744                 :        6364 :       rtx_insn *insn = emit_insn (set);
    1745                 :             : 
    1746                 :        6364 :       if (recog_memoized (insn) >= 0)
    1747                 :             :         {
    1748                 :        3512 :           rtx_insn *seq = get_insns ();
    1749                 :        3512 :           end_sequence ();
    1750                 :        3512 :           emit_insn (seq);
    1751                 :             : 
    1752                 :        3512 :           return x;
    1753                 :             :         }
    1754                 :             : 
    1755                 :        2852 :       end_sequence ();
    1756                 :             :     }
    1757                 :             : 
    1758                 :      832944 :   unsignedp = (code == LTU || code == GEU
    1759                 :      416472 :                || code == LEU || code == GTU);
    1760                 :             : 
    1761                 :      416472 :   if (cc_cmp != NULL_RTX && rev_cc_cmp != NULL_RTX)
    1762                 :       46215 :     target = emit_conditional_move (x, cc_cmp, rev_cc_cmp,
    1763                 :       46215 :                                     vtrue, vfalse, GET_MODE (x));
    1764                 :             :   else
    1765                 :             :     {
    1766                 :             :       /* Don't even try if the comparison operands are weird
    1767                 :             :          except that the target supports cbranchcc4.  */
    1768                 :      370257 :       if (! general_operand (cmp_a, GET_MODE (cmp_a))
    1769                 :      370257 :           || ! general_operand (cmp_b, GET_MODE (cmp_b)))
    1770                 :             :         {
    1771                 :       46766 :           if (!have_cbranchcc4
    1772                 :       46766 :               || GET_MODE_CLASS (GET_MODE (cmp_a)) != MODE_CC
    1773                 :        2703 :               || cmp_b != const0_rtx)
    1774                 :             :             return NULL_RTX;
    1775                 :             :         }
    1776                 :             : 
    1777                 :      326194 :       target = emit_conditional_move (x, { code, cmp_a, cmp_b, VOIDmode },
    1778                 :      326194 :                                       vtrue, vfalse, GET_MODE (x),
    1779                 :             :                                       unsignedp);
    1780                 :             :     }
    1781                 :             : 
    1782                 :      372409 :   if (target)
    1783                 :             :     return target;
    1784                 :             : 
    1785                 :             :   /* We might be faced with a situation like:
    1786                 :             : 
    1787                 :             :      x = (reg:M TARGET)
    1788                 :             :      vtrue = (subreg:M (reg:N VTRUE) BYTE)
    1789                 :             :      vfalse = (subreg:M (reg:N VFALSE) BYTE)
    1790                 :             : 
    1791                 :             :      We can't do a conditional move in mode M, but it's possible that we
    1792                 :             :      could do a conditional move in mode N instead and take a subreg of
    1793                 :             :      the result.
    1794                 :             : 
    1795                 :             :      If we can't create new pseudos, though, don't bother.  */
    1796                 :       26823 :   if (reload_completed)
    1797                 :             :     return NULL_RTX;
    1798                 :             : 
    1799                 :       26823 :   if (GET_CODE (vtrue) == SUBREG && GET_CODE (vfalse) == SUBREG)
    1800                 :             :     {
    1801                 :          42 :       rtx reg_vtrue = SUBREG_REG (vtrue);
    1802                 :          42 :       rtx reg_vfalse = SUBREG_REG (vfalse);
    1803                 :          42 :       poly_uint64 byte_vtrue = SUBREG_BYTE (vtrue);
    1804                 :          42 :       poly_uint64 byte_vfalse = SUBREG_BYTE (vfalse);
    1805                 :          42 :       rtx promoted_target;
    1806                 :             : 
    1807                 :          42 :       if (GET_MODE (reg_vtrue) != GET_MODE (reg_vfalse)
    1808                 :          42 :           || maybe_ne (byte_vtrue, byte_vfalse)
    1809                 :          42 :           || (SUBREG_PROMOTED_VAR_P (vtrue)
    1810                 :          42 :               != SUBREG_PROMOTED_VAR_P (vfalse))
    1811                 :          42 :           || (SUBREG_PROMOTED_GET (vtrue)
    1812                 :          42 :               != SUBREG_PROMOTED_GET (vfalse)))
    1813                 :             :         return NULL_RTX;
    1814                 :             : 
    1815                 :          42 :       promoted_target = gen_reg_rtx (GET_MODE (reg_vtrue));
    1816                 :             : 
    1817                 :          84 :       target = emit_conditional_move (promoted_target,
    1818                 :             :                                       { code, cmp_a, cmp_b, VOIDmode },
    1819                 :             :                                       reg_vtrue, reg_vfalse,
    1820                 :          42 :                                       GET_MODE (reg_vtrue), unsignedp);
    1821                 :             :       /* Nope, couldn't do it in that mode either.  */
    1822                 :          42 :       if (!target)
    1823                 :             :         return NULL_RTX;
    1824                 :             : 
    1825                 :           7 :       target = gen_rtx_SUBREG (GET_MODE (vtrue), promoted_target, byte_vtrue);
    1826                 :           7 :       SUBREG_PROMOTED_VAR_P (target) = SUBREG_PROMOTED_VAR_P (vtrue);
    1827                 :           7 :       SUBREG_PROMOTED_SET (target, SUBREG_PROMOTED_GET (vtrue));
    1828                 :           7 :       emit_move_insn (x, target);
    1829                 :           7 :       return x;
    1830                 :             :     }
    1831                 :             :   else
    1832                 :             :     return NULL_RTX;
    1833                 :             : }
    1834                 :             : 
    1835                 :             : /*  Emit a conditional zero, returning TARGET or NULL_RTX upon failure.
    1836                 :             :     IF_INFO describes the if-conversion scenario under consideration.
    1837                 :             :     CZERO_CODE selects the condition (EQ/NE).
    1838                 :             :     NON_ZERO_OP is the nonzero operand of the conditional move
    1839                 :             :     TARGET is the desired output register.  */
    1840                 :             : 
    1841                 :             : static rtx
    1842                 :          95 : noce_emit_czero (struct noce_if_info *if_info, enum rtx_code czero_code,
    1843                 :             :                  rtx non_zero_op, rtx target)
    1844                 :             : {
    1845                 :          95 :   machine_mode mode = GET_MODE (target);
    1846                 :          95 :   rtx cond_op0 = XEXP (if_info->cond, 0);
    1847                 :          95 :   rtx czero_cond
    1848                 :          95 :     = gen_rtx_fmt_ee (czero_code, GET_MODE (cond_op0), cond_op0, const0_rtx);
    1849                 :          95 :   rtx if_then_else
    1850                 :          95 :     = gen_rtx_IF_THEN_ELSE (mode, czero_cond, const0_rtx, non_zero_op);
    1851                 :          95 :   rtx set = gen_rtx_SET (target, if_then_else);
    1852                 :             : 
    1853                 :          95 :   rtx_insn *insn = make_insn_raw (set);
    1854                 :             : 
    1855                 :          95 :   if (recog_memoized (insn) >= 0)
    1856                 :             :     {
    1857                 :           0 :       add_insn (insn);
    1858                 :           0 :       return target;
    1859                 :             :     }
    1860                 :             : 
    1861                 :             :   return NULL_RTX;
    1862                 :             : }
    1863                 :             : 
    1864                 :             : /* Try only simple constants and registers here.  More complex cases
    1865                 :             :    are handled in noce_try_cmove_arith after noce_try_store_flag_arith
    1866                 :             :    has had a go at it.  */
    1867                 :             : 
    1868                 :             : static bool
    1869                 :      274336 : noce_try_cmove (struct noce_if_info *if_info)
    1870                 :             : {
    1871                 :      274336 :   enum rtx_code code;
    1872                 :      274336 :   rtx target;
    1873                 :      274336 :   rtx_insn *seq;
    1874                 :             : 
    1875                 :      543153 :   if (!noce_simple_bbs (if_info))
    1876                 :             :     return false;
    1877                 :             : 
    1878                 :      174208 :   if ((CONSTANT_P (if_info->a) || register_operand (if_info->a, VOIDmode))
    1879                 :      270845 :       && (CONSTANT_P (if_info->b) || register_operand (if_info->b, VOIDmode)))
    1880                 :             :     {
    1881                 :       90749 :       start_sequence ();
    1882                 :             : 
    1883                 :       90749 :       code = GET_CODE (if_info->cond);
    1884                 :       90749 :       target = noce_emit_cmove (if_info, if_info->x, code,
    1885                 :             :                                 XEXP (if_info->cond, 0),
    1886                 :             :                                 XEXP (if_info->cond, 1),
    1887                 :             :                                 if_info->a, if_info->b);
    1888                 :             : 
    1889                 :       90749 :       if (target)
    1890                 :             :         {
    1891                 :       67777 :           if (target != if_info->x)
    1892                 :           0 :             noce_emit_move_insn (if_info->x, target);
    1893                 :             : 
    1894                 :       67777 :           seq = end_ifcvt_sequence (if_info);
    1895                 :       67777 :           if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
    1896                 :       31671 :             return false;
    1897                 :             : 
    1898                 :       36106 :           emit_insn_before_setloc (seq, if_info->jump,
    1899                 :       36106 :                                    INSN_LOCATION (if_info->insn_a));
    1900                 :       36106 :           if_info->transform_name = "noce_try_cmove";
    1901                 :             : 
    1902                 :       36106 :           return true;
    1903                 :             :         }
    1904                 :             :       /* If both a and b are constants try a last-ditch transformation:
    1905                 :             :          if (test) x = a; else x = b;
    1906                 :             :          =>   x = (-(test != 0) & (b - a)) + a;
    1907                 :             :          Try this only if the target-specific expansion above has failed.
    1908                 :             :          The target-specific expander may want to generate sequences that
    1909                 :             :          we don't know about, so give them a chance before trying this
    1910                 :             :          approach.  */
    1911                 :       22972 :       else if (!targetm.have_conditional_execution ()
    1912                 :       22972 :                 && CONST_INT_P (if_info->a) && CONST_INT_P (if_info->b))
    1913                 :             :         {
    1914                 :        4930 :           machine_mode mode = GET_MODE (if_info->x);
    1915                 :        4930 :           HOST_WIDE_INT ifalse = INTVAL (if_info->a);
    1916                 :        4930 :           HOST_WIDE_INT itrue = INTVAL (if_info->b);
    1917                 :        4930 :           rtx target = noce_emit_store_flag (if_info, if_info->x, false, -1);
    1918                 :        4930 :           if (!target)
    1919                 :             :             {
    1920                 :        4644 :               end_sequence ();
    1921                 :        4644 :               return false;
    1922                 :             :             }
    1923                 :             : 
    1924                 :         286 :           HOST_WIDE_INT diff = (unsigned HOST_WIDE_INT) itrue - ifalse;
    1925                 :             :           /* Make sure we can represent the difference
    1926                 :             :              between the two values.  */
    1927                 :         286 :           if ((diff > 0)
    1928                 :         286 :               != ((ifalse < 0) != (itrue < 0) ? ifalse < 0 : ifalse < itrue))
    1929                 :             :             {
    1930                 :           9 :               end_sequence ();
    1931                 :           9 :               return false;
    1932                 :             :             }
    1933                 :             : 
    1934                 :         277 :           diff = trunc_int_for_mode (diff, mode);
    1935                 :         277 :           target = expand_simple_binop (mode, AND,
    1936                 :             :                                         target, gen_int_mode (diff, mode),
    1937                 :             :                                         if_info->x, 0, OPTAB_WIDEN);
    1938                 :         277 :           if (target)
    1939                 :         277 :             target = expand_simple_binop (mode, PLUS,
    1940                 :             :                                           target, gen_int_mode (ifalse, mode),
    1941                 :             :                                           if_info->x, 0, OPTAB_WIDEN);
    1942                 :         277 :           if (target)
    1943                 :             :             {
    1944                 :         277 :               if (target != if_info->x)
    1945                 :           0 :                 noce_emit_move_insn (if_info->x, target);
    1946                 :             : 
    1947                 :         277 :               seq = end_ifcvt_sequence (if_info);
    1948                 :         277 :               if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
    1949                 :         252 :                 return false;
    1950                 :             : 
    1951                 :          25 :               emit_insn_before_setloc (seq, if_info->jump,
    1952                 :          25 :                                    INSN_LOCATION (if_info->insn_a));
    1953                 :          25 :               if_info->transform_name = "noce_try_cmove";
    1954                 :          25 :               return true;
    1955                 :             :             }
    1956                 :             :           else
    1957                 :             :             {
    1958                 :           0 :               end_sequence ();
    1959                 :           0 :               return false;
    1960                 :             :             }
    1961                 :             :         }
    1962                 :             :       else
    1963                 :       18042 :         end_sequence ();
    1964                 :             :     }
    1965                 :             : 
    1966                 :             :   return false;
    1967                 :             : }
    1968                 :             : 
    1969                 :             : /* Return true if X contains a conditional code mode rtx.  */
    1970                 :             : 
    1971                 :             : static bool
    1972                 :     2753364 : contains_ccmode_rtx_p (rtx x)
    1973                 :             : {
    1974                 :     2753364 :   subrtx_iterator::array_type array;
    1975                 :     6892466 :   FOR_EACH_SUBRTX (iter, array, x, ALL)
    1976                 :     4189188 :     if (GET_MODE_CLASS (GET_MODE (*iter)) == MODE_CC)
    1977                 :       50086 :       return true;
    1978                 :             : 
    1979                 :     2703278 :   return false;
    1980                 :     2753364 : }
    1981                 :             : 
    1982                 :             : /* Helper for bb_valid_for_noce_process_p.  Validate that
    1983                 :             :    the rtx insn INSN is a single set that does not set
    1984                 :             :    the conditional register CC and is in general valid for
    1985                 :             :    if-conversion.  */
    1986                 :             : 
    1987                 :             : static bool
    1988                 :     3413969 : insn_valid_noce_process_p (rtx_insn *insn, rtx cc)
    1989                 :             : {
    1990                 :     3413969 :   if (!insn
    1991                 :     3405066 :       || !NONJUMP_INSN_P (insn)
    1992                 :     6194019 :       || (cc && set_of (cc, insn)))
    1993                 :      642683 :       return false;
    1994                 :             : 
    1995                 :     2771286 :   rtx sset = single_set (insn);
    1996                 :             : 
    1997                 :             :   /* Currently support only simple single sets in test_bb.  */
    1998                 :     2771286 :   if (!sset
    1999                 :     2767604 :       || !noce_operand_ok (SET_DEST (sset))
    2000                 :     2753364 :       || contains_ccmode_rtx_p (SET_DEST (sset))
    2001                 :     5474564 :       || !noce_operand_ok (SET_SRC (sset)))
    2002                 :      128237 :     return false;
    2003                 :             : 
    2004                 :             :   return true;
    2005                 :             : }
    2006                 :             : 
    2007                 :             : 
    2008                 :             : /* Return true iff the registers that the insns in BB_A set do not get
    2009                 :             :    used in BB_B.  If TO_RENAME is non-NULL then it is a location that will be
    2010                 :             :    renamed later by the caller and so conflicts on it should be ignored
    2011                 :             :    in this function.  */
    2012                 :             : 
    2013                 :             : static bool
    2014                 :       96789 : bbs_ok_for_cmove_arith (basic_block bb_a, basic_block bb_b, rtx to_rename)
    2015                 :             : {
    2016                 :       96789 :   rtx_insn *a_insn;
    2017                 :       96789 :   bitmap bba_sets = BITMAP_ALLOC (&reg_obstack);
    2018                 :             : 
    2019                 :       96789 :   df_ref def;
    2020                 :       96789 :   df_ref use;
    2021                 :             : 
    2022                 :      474959 :   FOR_BB_INSNS (bb_a, a_insn)
    2023                 :             :     {
    2024                 :      378170 :       if (!active_insn_p (a_insn))
    2025                 :      248688 :         continue;
    2026                 :             : 
    2027                 :      129482 :       rtx sset_a = single_set (a_insn);
    2028                 :             : 
    2029                 :      129482 :       if (!sset_a)
    2030                 :             :         {
    2031                 :           0 :           BITMAP_FREE (bba_sets);
    2032                 :           0 :           return false;
    2033                 :             :         }
    2034                 :             :       /* Record all registers that BB_A sets.  */
    2035                 :      310559 :       FOR_EACH_INSN_DEF (def, a_insn)
    2036                 :      181077 :         if (!(to_rename && DF_REF_REG (def) == to_rename))
    2037                 :       85246 :           bitmap_set_bit (bba_sets, DF_REF_REGNO (def));
    2038                 :             :     }
    2039                 :             : 
    2040                 :       96789 :   rtx_insn *b_insn;
    2041                 :             : 
    2042                 :      474895 :   FOR_BB_INSNS (bb_b, b_insn)
    2043                 :             :     {
    2044                 :      378193 :       if (!active_insn_p (b_insn))
    2045                 :      248748 :         continue;
    2046                 :             : 
    2047                 :      129445 :       rtx sset_b = single_set (b_insn);
    2048                 :             : 
    2049                 :      129445 :       if (!sset_b)
    2050                 :             :         {
    2051                 :           0 :           BITMAP_FREE (bba_sets);
    2052                 :           0 :           return false;
    2053                 :             :         }
    2054                 :             : 
    2055                 :             :       /* Make sure this is a REG and not some instance
    2056                 :             :          of ZERO_EXTRACT or non-paradoxical SUBREG or other dangerous stuff.
    2057                 :             :          If we have a memory destination then we have a pair of simple
    2058                 :             :          basic blocks performing an operation of the form [addr] = c ? a : b.
    2059                 :             :          bb_valid_for_noce_process_p will have ensured that these are
    2060                 :             :          the only stores present.  In that case [addr] should be the location
    2061                 :             :          to be renamed.  Assert that the callers set this up properly.  */
    2062                 :      129445 :       if (MEM_P (SET_DEST (sset_b)))
    2063                 :         948 :         gcc_assert (rtx_equal_p (SET_DEST (sset_b), to_rename));
    2064                 :      128497 :       else if (!REG_P (SET_DEST (sset_b))
    2065                 :      128497 :                && !paradoxical_subreg_p (SET_DEST (sset_b)))
    2066                 :             :         {
    2067                 :          28 :           BITMAP_FREE (bba_sets);
    2068                 :          28 :           return false;
    2069                 :             :         }
    2070                 :             : 
    2071                 :             :       /* If the insn uses a reg set in BB_A return false.  */
    2072                 :      238980 :       FOR_EACH_INSN_USE (use, b_insn)
    2073                 :             :         {
    2074                 :      109622 :           if (bitmap_bit_p (bba_sets, DF_REF_REGNO (use)))
    2075                 :             :             {
    2076                 :          59 :               BITMAP_FREE (bba_sets);
    2077                 :          59 :               return false;
    2078                 :             :             }
    2079                 :             :         }
    2080                 :             : 
    2081                 :             :     }
    2082                 :             : 
    2083                 :       96702 :   BITMAP_FREE (bba_sets);
    2084                 :       96702 :   return true;
    2085                 :             : }
    2086                 :             : 
    2087                 :             : /* Emit copies of all the active instructions in BB except the last.
    2088                 :             :    This is a helper for noce_try_cmove_arith.  */
    2089                 :             : 
    2090                 :             : static void
    2091                 :       30510 : noce_emit_all_but_last (basic_block bb)
    2092                 :             : {
    2093                 :       30510 :   rtx_insn *last = last_active_insn (bb, false);
    2094                 :       30510 :   rtx_insn *insn;
    2095                 :      247218 :   FOR_BB_INSNS (bb, insn)
    2096                 :             :     {
    2097                 :      186198 :       if (insn != last && active_insn_p (insn))
    2098                 :             :         {
    2099                 :       68882 :           rtx_insn *to_emit = as_a <rtx_insn *> (copy_rtx (insn));
    2100                 :             : 
    2101                 :       68882 :           emit_insn (PATTERN (to_emit));
    2102                 :             :         }
    2103                 :             :     }
    2104                 :       30510 : }
    2105                 :             : 
    2106                 :             : /* Helper for noce_try_cmove_arith.  Emit the pattern TO_EMIT and return
    2107                 :             :    the resulting insn or NULL if it's not a valid insn.  */
    2108                 :             : 
    2109                 :             : static rtx_insn *
    2110                 :      318016 : noce_emit_insn (rtx to_emit)
    2111                 :             : {
    2112                 :      318016 :   gcc_assert (to_emit);
    2113                 :      318016 :   rtx_insn *insn = emit_insn (to_emit);
    2114                 :             : 
    2115                 :      318016 :   if (recog_memoized (insn) < 0)
    2116                 :         296 :     return NULL;
    2117                 :             : 
    2118                 :             :   return insn;
    2119                 :             : }
    2120                 :             : 
    2121                 :             : /* Helper for noce_try_cmove_arith.  Emit a copy of the insns up to
    2122                 :             :    and including the penultimate one in BB if it is not simple
    2123                 :             :    (as indicated by SIMPLE).  Then emit LAST_INSN as the last
    2124                 :             :    insn in the block.  The reason for that is that LAST_INSN may
    2125                 :             :    have been modified by the preparation in noce_try_cmove_arith.  */
    2126                 :             : 
    2127                 :             : static bool
    2128                 :      321815 : noce_emit_bb (rtx last_insn, basic_block bb, bool simple)
    2129                 :             : {
    2130                 :      321815 :   if (bb && !simple)
    2131                 :       30510 :     noce_emit_all_but_last (bb);
    2132                 :             : 
    2133                 :      321815 :   if (last_insn && !noce_emit_insn (last_insn))
    2134                 :             :     return false;
    2135                 :             : 
    2136                 :             :   return true;
    2137                 :             : }
    2138                 :             : 
    2139                 :             : /* Try more complex cases involving conditional_move.  */
    2140                 :             : 
    2141                 :             : static bool
    2142                 :      233958 : noce_try_cmove_arith (struct noce_if_info *if_info)
    2143                 :             : {
    2144                 :      233958 :   rtx a = if_info->a;
    2145                 :      233958 :   rtx b = if_info->b;
    2146                 :      233958 :   rtx x = if_info->x;
    2147                 :      233958 :   rtx orig_a, orig_b;
    2148                 :      233958 :   rtx_insn *insn_a, *insn_b;
    2149                 :      233958 :   bool a_simple = if_info->then_simple;
    2150                 :      233958 :   bool b_simple = if_info->else_simple;
    2151                 :      233958 :   basic_block then_bb = if_info->then_bb;
    2152                 :      233958 :   basic_block else_bb = if_info->else_bb;
    2153                 :      233958 :   rtx target;
    2154                 :      233958 :   bool is_mem = false;
    2155                 :      233958 :   enum rtx_code code;
    2156                 :      233958 :   rtx cond = if_info->cond;
    2157                 :      233958 :   rtx_insn *ifcvt_seq;
    2158                 :             : 
    2159                 :             :   /* A conditional move from two memory sources is equivalent to a
    2160                 :             :      conditional on their addresses followed by a load.  Don't do this
    2161                 :             :      early because it'll screw alias analysis.  Note that we've
    2162                 :             :      already checked for no side effects.  */
    2163                 :      233958 :   if (cse_not_expected
    2164                 :       89267 :       && MEM_P (a) && MEM_P (b)
    2165                 :      238339 :       && MEM_ADDR_SPACE (a) == MEM_ADDR_SPACE (b))
    2166                 :             :     {
    2167                 :        4381 :       machine_mode address_mode = get_address_mode (a);
    2168                 :             : 
    2169                 :        4381 :       a = XEXP (a, 0);
    2170                 :        4381 :       b = XEXP (b, 0);
    2171                 :        4381 :       x = gen_reg_rtx (address_mode);
    2172                 :        4381 :       is_mem = true;
    2173                 :             :     }
    2174                 :             : 
    2175                 :             :   /* ??? We could handle this if we knew that a load from A or B could
    2176                 :             :      not trap or fault.  This is also true if we've already loaded
    2177                 :             :      from the address along the path from ENTRY.  */
    2178                 :      229577 :   else if (may_trap_or_fault_p (a) || may_trap_or_fault_p (b))
    2179                 :       53490 :     return false;
    2180                 :             : 
    2181                 :             :   /* if (test) x = a + b; else x = c - d;
    2182                 :             :      => y = a + b;
    2183                 :             :         x = c - d;
    2184                 :             :         if (test)
    2185                 :             :           x = y;
    2186                 :             :   */
    2187                 :             : 
    2188                 :      180468 :   code = GET_CODE (cond);
    2189                 :      180468 :   insn_a = if_info->insn_a;
    2190                 :      180468 :   insn_b = if_info->insn_b;
    2191                 :             : 
    2192                 :      180468 :   machine_mode x_mode = GET_MODE (x);
    2193                 :             : 
    2194                 :      180468 :   if (!can_conditionally_move_p (x_mode))
    2195                 :             :     return false;
    2196                 :             : 
    2197                 :             :   /* Possibly rearrange operands to make things come out more natural.  */
    2198                 :      160999 :   if (noce_reversed_cond_code (if_info) != UNKNOWN)
    2199                 :             :     {
    2200                 :      160999 :       bool reversep = false;
    2201                 :      160999 :       if (rtx_equal_p (b, x))
    2202                 :             :         reversep = true;
    2203                 :       87999 :       else if (general_operand (b, GET_MODE (b)))
    2204                 :             :         reversep = true;
    2205                 :             : 
    2206                 :             :       if (reversep)
    2207                 :             :         {
    2208                 :      151213 :           if (if_info->rev_cond)
    2209                 :             :             {
    2210                 :      151213 :               cond = if_info->rev_cond;
    2211                 :      151213 :               code = GET_CODE (cond);
    2212                 :             :             }
    2213                 :             :           else
    2214                 :           0 :             code = reversed_comparison_code (cond, if_info->jump);
    2215                 :             :           std::swap (a, b);
    2216                 :             :           std::swap (insn_a, insn_b);
    2217                 :             :           std::swap (a_simple, b_simple);
    2218                 :             :           std::swap (then_bb, else_bb);
    2219                 :             :         }
    2220                 :             :     }
    2221                 :             : 
    2222                 :       50472 :   if (then_bb && else_bb
    2223                 :      209437 :       && (!bbs_ok_for_cmove_arith (then_bb, else_bb,  if_info->orig_x)
    2224                 :       48351 :           || !bbs_ok_for_cmove_arith (else_bb, then_bb,  if_info->orig_x)))
    2225                 :          87 :     return false;
    2226                 :             : 
    2227                 :      160912 :   start_sequence ();
    2228                 :             : 
    2229                 :             :   /* If one of the blocks is empty then the corresponding B or A value
    2230                 :             :      came from the test block.  The non-empty complex block that we will
    2231                 :             :      emit might clobber the register used by B or A, so move it to a pseudo
    2232                 :             :      first.  */
    2233                 :             : 
    2234                 :      160912 :   rtx tmp_a = NULL_RTX;
    2235                 :      160912 :   rtx tmp_b = NULL_RTX;
    2236                 :             : 
    2237                 :      160912 :   if (b_simple || !else_bb)
    2238                 :      134226 :     tmp_b = gen_reg_rtx (x_mode);
    2239                 :             : 
    2240                 :      160912 :   if (a_simple || !then_bb)
    2241                 :      157088 :     tmp_a = gen_reg_rtx (x_mode);
    2242                 :             : 
    2243                 :      160912 :   orig_a = a;
    2244                 :      160912 :   orig_b = b;
    2245                 :             : 
    2246                 :      160912 :   rtx emit_a = NULL_RTX;
    2247                 :      160912 :   rtx emit_b = NULL_RTX;
    2248                 :      160912 :   rtx_insn *tmp_insn = NULL;
    2249                 :      160912 :   bool modified_in_a = false;
    2250                 :      160912 :   bool modified_in_b = false;
    2251                 :             :   /* If either operand is complex, load it into a register first.
    2252                 :             :      The best way to do this is to copy the original insn.  In this
    2253                 :             :      way we preserve any clobbers etc that the insn may have had.
    2254                 :             :      This is of course not possible in the IS_MEM case.  */
    2255                 :             : 
    2256                 :      160912 :   if (! general_operand (a, GET_MODE (a)) || tmp_a)
    2257                 :             :     {
    2258                 :             : 
    2259                 :      160031 :       if (is_mem)
    2260                 :             :         {
    2261                 :        4381 :           rtx reg = gen_reg_rtx (GET_MODE (a));
    2262                 :        4381 :           emit_a = gen_rtx_SET (reg, a);
    2263                 :             :         }
    2264                 :             :       else
    2265                 :             :         {
    2266                 :      155650 :           if (insn_a)
    2267                 :             :             {
    2268                 :       82507 :               a = tmp_a ? tmp_a : gen_reg_rtx (GET_MODE (a));
    2269                 :             : 
    2270                 :       82507 :               rtx_insn *copy_of_a = as_a <rtx_insn *> (copy_rtx (insn_a));
    2271                 :       82507 :               rtx set = single_set (copy_of_a);
    2272                 :       82507 :               SET_DEST (set) = a;
    2273                 :             : 
    2274                 :       82507 :               emit_a = PATTERN (copy_of_a);
    2275                 :             :             }
    2276                 :             :           else
    2277                 :             :             {
    2278                 :       73143 :               rtx tmp_reg = tmp_a ? tmp_a : gen_reg_rtx (GET_MODE (a));
    2279                 :       73143 :               emit_a = gen_rtx_SET (tmp_reg, a);
    2280                 :       73143 :               a = tmp_reg;
    2281                 :             :             }
    2282                 :             :         }
    2283                 :             :     }
    2284                 :             : 
    2285                 :      160912 :   if (! general_operand (b, GET_MODE (b)) || tmp_b)
    2286                 :             :     {
    2287                 :      157994 :       if (is_mem)
    2288                 :             :         {
    2289                 :        4381 :           rtx reg = gen_reg_rtx (GET_MODE (b));
    2290                 :        4381 :           emit_b = gen_rtx_SET (reg, b);
    2291                 :             :         }
    2292                 :             :       else
    2293                 :             :         {
    2294                 :      153613 :           if (insn_b)
    2295                 :             :             {
    2296                 :      153383 :               b = tmp_b ? tmp_b : gen_reg_rtx (GET_MODE (b));
    2297                 :      153383 :               rtx_insn *copy_of_b = as_a <rtx_insn *> (copy_rtx (insn_b));
    2298                 :      153383 :               rtx set = single_set (copy_of_b);
    2299                 :             : 
    2300                 :      153383 :               SET_DEST (set) = b;
    2301                 :      153383 :               emit_b = PATTERN (copy_of_b);
    2302                 :             :             }
    2303                 :             :           else
    2304                 :             :             {
    2305                 :         230 :               rtx tmp_reg = tmp_b ? tmp_b : gen_reg_rtx (GET_MODE (b));
    2306                 :         230 :               emit_b = gen_rtx_SET (tmp_reg, b);
    2307                 :         230 :               b = tmp_reg;
    2308                 :             :             }
    2309                 :             :         }
    2310                 :             :     }
    2311                 :             : 
    2312                 :      160912 :   modified_in_a = emit_a != NULL_RTX && modified_in_p (orig_b, emit_a);
    2313                 :      160912 :   if (tmp_b && then_bb)
    2314                 :             :     {
    2315                 :      159574 :       FOR_BB_INSNS (then_bb, tmp_insn)
    2316                 :             :         /* Don't check inside insn_a.  We will have changed it to emit_a
    2317                 :             :            with a destination that doesn't conflict.  */
    2318                 :      122495 :         if (!(insn_a && tmp_insn == insn_a)
    2319                 :      207911 :             && modified_in_p (orig_b, tmp_insn))
    2320                 :             :           {
    2321                 :             :             modified_in_a = true;
    2322                 :             :             break;
    2323                 :             :           }
    2324                 :             : 
    2325                 :             :     }
    2326                 :             : 
    2327                 :      160912 :   modified_in_b = emit_b != NULL_RTX && modified_in_p (orig_a, emit_b);
    2328                 :      160912 :   if (tmp_a && else_bb)
    2329                 :             :     {
    2330                 :      708958 :       FOR_BB_INSNS (else_bb, tmp_insn)
    2331                 :             :       /* Don't check inside insn_b.  We will have changed it to emit_b
    2332                 :             :          with a destination that doesn't conflict.  */
    2333                 :      553439 :       if (!(insn_b && tmp_insn == insn_b)
    2334                 :      951359 :           && modified_in_p (orig_a, tmp_insn))
    2335                 :             :         {
    2336                 :             :           modified_in_b = true;
    2337                 :             :           break;
    2338                 :             :         }
    2339                 :             :     }
    2340                 :             : 
    2341                 :             :   /* If insn to set up A clobbers any registers B depends on, try to
    2342                 :             :      swap insn that sets up A with the one that sets up B.  If even
    2343                 :             :      that doesn't help, punt.  */
    2344                 :      160912 :   if (modified_in_a && !modified_in_b)
    2345                 :             :     {
    2346                 :          50 :       if (!noce_emit_bb (emit_b, else_bb, b_simple))
    2347                 :           0 :         goto end_seq_and_fail;
    2348                 :             : 
    2349                 :          50 :       if (!noce_emit_bb (emit_a, then_bb, a_simple))
    2350                 :           0 :         goto end_seq_and_fail;
    2351                 :             :     }
    2352                 :      160862 :   else if (!modified_in_a)
    2353                 :             :     {
    2354                 :      160862 :       if (!noce_emit_bb (emit_a, then_bb, a_simple))
    2355                 :           9 :         goto end_seq_and_fail;
    2356                 :             : 
    2357                 :      160853 :       if (!noce_emit_bb (emit_b, else_bb, b_simple))
    2358                 :         287 :         goto end_seq_and_fail;
    2359                 :             :     }
    2360                 :             :   else
    2361                 :           0 :     goto end_seq_and_fail;
    2362                 :             : 
    2363                 :      160616 :   target = noce_emit_cmove (if_info, x, code, XEXP (cond, 0), XEXP (cond, 1),
    2364                 :             :                             a, b);
    2365                 :             : 
    2366                 :      160616 :   if (! target)
    2367                 :       32625 :     goto end_seq_and_fail;
    2368                 :             : 
    2369                 :             :   /* If we're handling a memory for above, emit the load now.  */
    2370                 :      127991 :   if (is_mem)
    2371                 :             :     {
    2372                 :        2246 :       rtx mem = gen_rtx_MEM (GET_MODE (if_info->x), target);
    2373                 :             : 
    2374                 :             :       /* Copy over flags as appropriate.  */
    2375                 :        2246 :       if (MEM_VOLATILE_P (if_info->a) || MEM_VOLATILE_P (if_info->b))
    2376                 :           0 :         MEM_VOLATILE_P (mem) = 1;
    2377                 :        2246 :       if (MEM_ALIAS_SET (if_info->a) == MEM_ALIAS_SET (if_info->b))
    2378                 :        2215 :         set_mem_alias_set (mem, MEM_ALIAS_SET (if_info->a));
    2379                 :        4492 :       set_mem_align (mem,
    2380                 :        2246 :                      MIN (MEM_ALIGN (if_info->a), MEM_ALIGN (if_info->b)));
    2381                 :             : 
    2382                 :        2246 :       gcc_assert (MEM_ADDR_SPACE (if_info->a) == MEM_ADDR_SPACE (if_info->b));
    2383                 :        2246 :       set_mem_addr_space (mem, MEM_ADDR_SPACE (if_info->a));
    2384                 :             : 
    2385                 :        2246 :       noce_emit_move_insn (if_info->x, mem);
    2386                 :             :     }
    2387                 :      125745 :   else if (target != x)
    2388                 :           0 :     noce_emit_move_insn (x, target);
    2389                 :             : 
    2390                 :      127991 :   ifcvt_seq = end_ifcvt_sequence (if_info);
    2391                 :      127991 :   if (!ifcvt_seq || !targetm.noce_conversion_profitable_p (ifcvt_seq, if_info))
    2392                 :      100347 :     return false;
    2393                 :             : 
    2394                 :       27644 :   emit_insn_before_setloc (ifcvt_seq, if_info->jump,
    2395                 :       27644 :                            INSN_LOCATION (if_info->insn_a));
    2396                 :       27644 :   if_info->transform_name = "noce_try_cmove_arith";
    2397                 :       27644 :   return true;
    2398                 :             : 
    2399                 :       32921 :  end_seq_and_fail:
    2400                 :       32921 :   end_sequence ();
    2401                 :       32921 :   return false;
    2402                 :             : }
    2403                 :             : 
    2404                 :             : /* For most cases, the simplified condition we found is the best
    2405                 :             :    choice, but this is not the case for the min/max/abs transforms.
    2406                 :             :    For these we wish to know that it is A or B in the condition.  */
    2407                 :             : 
    2408                 :             : static rtx
    2409                 :      190172 : noce_get_alt_condition (struct noce_if_info *if_info, rtx target,
    2410                 :             :                         rtx_insn **earliest)
    2411                 :             : {
    2412                 :      190172 :   rtx cond, set;
    2413                 :      190172 :   rtx_insn *insn;
    2414                 :      190172 :   bool reverse;
    2415                 :             : 
    2416                 :             :   /* If target is already mentioned in the known condition, return it.  */
    2417                 :      190172 :   if (reg_mentioned_p (target, if_info->cond))
    2418                 :             :     {
    2419                 :        7710 :       *earliest = if_info->cond_earliest;
    2420                 :        7710 :       return if_info->cond;
    2421                 :             :     }
    2422                 :             : 
    2423                 :      182462 :   set = pc_set (if_info->jump);
    2424                 :      182462 :   cond = XEXP (SET_SRC (set), 0);
    2425                 :      182462 :   reverse
    2426                 :      364924 :     = GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
    2427                 :      182462 :       && label_ref_label (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (if_info->jump);
    2428                 :      182462 :   if (if_info->then_else_reversed)
    2429                 :       21925 :     reverse = !reverse;
    2430                 :             : 
    2431                 :             :   /* If we're looking for a constant, try to make the conditional
    2432                 :             :      have that constant in it.  There are two reasons why it may
    2433                 :             :      not have the constant we want:
    2434                 :             : 
    2435                 :             :      1. GCC may have needed to put the constant in a register, because
    2436                 :             :         the target can't compare directly against that constant.  For
    2437                 :             :         this case, we look for a SET immediately before the comparison
    2438                 :             :         that puts a constant in that register.
    2439                 :             : 
    2440                 :             :      2. GCC may have canonicalized the conditional, for example
    2441                 :             :         replacing "if x < 4" with "if x <= 3".  We can undo that (or
    2442                 :             :         make equivalent types of changes) to get the constants we need
    2443                 :             :         if they're off by one in the right direction.  */
    2444                 :             : 
    2445                 :      182462 :   if (CONST_INT_P (target))
    2446                 :             :     {
    2447                 :       51399 :       enum rtx_code code = GET_CODE (if_info->cond);
    2448                 :       51399 :       rtx op_a = XEXP (if_info->cond, 0);
    2449                 :       51399 :       rtx op_b = XEXP (if_info->cond, 1);
    2450                 :       51399 :       rtx_insn *prev_insn;
    2451                 :             : 
    2452                 :             :       /* First, look to see if we put a constant in a register.  */
    2453                 :       51399 :       prev_insn = prev_nonnote_nondebug_insn (if_info->cond_earliest);
    2454                 :       51399 :       if (prev_insn
    2455                 :       51294 :           && BLOCK_FOR_INSN (prev_insn)
    2456                 :       51294 :              == BLOCK_FOR_INSN (if_info->cond_earliest)
    2457                 :       42884 :           && INSN_P (prev_insn)
    2458                 :       90576 :           && GET_CODE (PATTERN (prev_insn)) == SET)
    2459                 :             :         {
    2460                 :       32445 :           rtx src = find_reg_equal_equiv_note (prev_insn);
    2461                 :       32445 :           if (!src)
    2462                 :       32358 :             src = SET_SRC (PATTERN (prev_insn));
    2463                 :       32445 :           if (CONST_INT_P (src))
    2464                 :             :             {
    2465                 :       21764 :               if (rtx_equal_p (op_a, SET_DEST (PATTERN (prev_insn))))
    2466                 :             :                 op_a = src;
    2467                 :       21439 :               else if (rtx_equal_p (op_b, SET_DEST (PATTERN (prev_insn))))
    2468                 :        2187 :                 op_b = src;
    2469                 :             : 
    2470                 :       21764 :               if (CONST_INT_P (op_a))
    2471                 :             :                 {
    2472                 :         325 :                   std::swap (op_a, op_b);
    2473                 :         325 :                   code = swap_condition (code);
    2474                 :             :                 }
    2475                 :             :             }
    2476                 :             :         }
    2477                 :             : 
    2478                 :             :       /* Now, look to see if we can get the right constant by
    2479                 :             :          adjusting the conditional.  */
    2480                 :       51399 :       if (CONST_INT_P (op_b))
    2481                 :             :         {
    2482                 :       31448 :           HOST_WIDE_INT desired_val = INTVAL (target);
    2483                 :       31448 :           HOST_WIDE_INT actual_val = INTVAL (op_b);
    2484                 :             : 
    2485                 :       31448 :           switch (code)
    2486                 :             :             {
    2487                 :        1150 :             case LT:
    2488                 :        1150 :               if (desired_val != HOST_WIDE_INT_MAX
    2489                 :        1135 :                   && actual_val == desired_val + 1)
    2490                 :             :                 {
    2491                 :         260 :                   code = LE;
    2492                 :         260 :                   op_b = GEN_INT (desired_val);
    2493                 :             :                 }
    2494                 :             :               break;
    2495                 :           6 :             case LE:
    2496                 :           6 :               if (desired_val != HOST_WIDE_INT_MIN
    2497                 :           6 :                   && actual_val == desired_val - 1)
    2498                 :             :                 {
    2499                 :           0 :                   code = LT;
    2500                 :           0 :                   op_b = GEN_INT (desired_val);
    2501                 :             :                 }
    2502                 :             :               break;
    2503                 :        1900 :             case GT:
    2504                 :        1900 :               if (desired_val != HOST_WIDE_INT_MIN
    2505                 :        1900 :                   && actual_val == desired_val - 1)
    2506                 :             :                 {
    2507                 :         384 :                   code = GE;
    2508                 :         384 :                   op_b = GEN_INT (desired_val);
    2509                 :             :                 }
    2510                 :             :               break;
    2511                 :          43 :             case GE:
    2512                 :          43 :               if (desired_val != HOST_WIDE_INT_MAX
    2513                 :          28 :                   && actual_val == desired_val + 1)
    2514                 :             :                 {
    2515                 :           6 :                   code = GT;
    2516                 :           6 :                   op_b = GEN_INT (desired_val);
    2517                 :             :                 }
    2518                 :             :               break;
    2519                 :             :             default:
    2520                 :             :               break;
    2521                 :             :             }
    2522                 :             :         }
    2523                 :             : 
    2524                 :             :       /* If we made any changes, generate a new conditional that is
    2525                 :             :          equivalent to what we started with, but has the right
    2526                 :             :          constants in it.  */
    2527                 :       51399 :       if (code != GET_CODE (if_info->cond)
    2528                 :       50424 :           || op_a != XEXP (if_info->cond, 0)
    2529                 :       50424 :           || op_b != XEXP (if_info->cond, 1))
    2530                 :             :         {
    2531                 :        3162 :           cond = gen_rtx_fmt_ee (code, GET_MODE (cond), op_a, op_b);
    2532                 :        3162 :           *earliest = if_info->cond_earliest;
    2533                 :        3162 :           return cond;
    2534                 :             :         }
    2535                 :             :     }
    2536                 :             : 
    2537                 :      179300 :   cond = canonicalize_condition (if_info->jump, cond, reverse,
    2538                 :             :                                  earliest, target, have_cbranchcc4, true);
    2539                 :      179300 :   if (! cond || ! reg_mentioned_p (target, cond))
    2540                 :      179300 :     return NULL;
    2541                 :             : 
    2542                 :             :   /* We almost certainly searched back to a different place.
    2543                 :             :      Need to re-verify correct lifetimes.  */
    2544                 :             : 
    2545                 :             :   /* X may not be mentioned in the range (cond_earliest, jump].  */
    2546                 :           0 :   for (insn = if_info->jump; insn != *earliest; insn = PREV_INSN (insn))
    2547                 :           0 :     if (INSN_P (insn) && reg_overlap_mentioned_p (if_info->x, PATTERN (insn)))
    2548                 :             :       return NULL;
    2549                 :             : 
    2550                 :             :   /* A and B may not be modified in the range [cond_earliest, jump).  */
    2551                 :           0 :   for (insn = *earliest; insn != if_info->jump; insn = NEXT_INSN (insn))
    2552                 :           0 :     if (INSN_P (insn)
    2553                 :           0 :         && (modified_in_p (if_info->a, insn)
    2554                 :           0 :             || modified_in_p (if_info->b, insn)))
    2555                 :           0 :       return NULL;
    2556                 :             : 
    2557                 :             :   return cond;
    2558                 :             : }
    2559                 :             : 
    2560                 :             : /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc.  */
    2561                 :             : 
    2562                 :             : static bool
    2563                 :      276438 : noce_try_minmax (struct noce_if_info *if_info)
    2564                 :             : {
    2565                 :      276438 :   rtx cond, target;
    2566                 :      276438 :   rtx_insn *earliest, *seq;
    2567                 :      276438 :   enum rtx_code code, op;
    2568                 :      276438 :   bool unsignedp;
    2569                 :             : 
    2570                 :      585454 :   if (!noce_simple_bbs (if_info))
    2571                 :             :     return false;
    2572                 :             : 
    2573                 :             :   /* ??? Reject modes with NaNs or signed zeros since we don't know how
    2574                 :             :      they will be resolved with an SMIN/SMAX.  It wouldn't be too hard
    2575                 :             :      to get the target to tell us...  */
    2576                 :      242848 :   if (HONOR_SIGNED_ZEROS (if_info->x)
    2577                 :      242848 :       || HONOR_NANS (if_info->x))
    2578                 :       53907 :     return false;
    2579                 :             : 
    2580                 :      188941 :   cond = noce_get_alt_condition (if_info, if_info->a, &earliest);
    2581                 :      188941 :   if (!cond)
    2582                 :             :     return false;
    2583                 :             : 
    2584                 :             :   /* Verify the condition is of the form we expect, and canonicalize
    2585                 :             :      the comparison code.  */
    2586                 :       10859 :   code = GET_CODE (cond);
    2587                 :       10859 :   if (rtx_equal_p (XEXP (cond, 0), if_info->a))
    2588                 :             :     {
    2589                 :        2277 :       if (! rtx_equal_p (XEXP (cond, 1), if_info->b))
    2590                 :             :         return false;
    2591                 :             :     }
    2592                 :        8582 :   else if (rtx_equal_p (XEXP (cond, 1), if_info->a))
    2593                 :             :     {
    2594                 :        5675 :       if (! rtx_equal_p (XEXP (cond, 0), if_info->b))
    2595                 :             :         return false;
    2596                 :          37 :       code = swap_condition (code);
    2597                 :             :     }
    2598                 :             :   else
    2599                 :             :     return false;
    2600                 :             : 
    2601                 :             :   /* Determine what sort of operation this is.  Note that the code is for
    2602                 :             :      a taken branch, so the code->operation mapping appears backwards.  */
    2603                 :          61 :   switch (code)
    2604                 :             :     {
    2605                 :             :     case LT:
    2606                 :             :     case LE:
    2607                 :             :     case UNLT:
    2608                 :             :     case UNLE:
    2609                 :             :       op = SMAX;
    2610                 :             :       unsignedp = false;
    2611                 :             :       break;
    2612                 :          18 :     case GT:
    2613                 :          18 :     case GE:
    2614                 :          18 :     case UNGT:
    2615                 :          18 :     case UNGE:
    2616                 :          18 :       op = SMIN;
    2617                 :          18 :       unsignedp = false;
    2618                 :          18 :       break;
    2619                 :           4 :     case LTU:
    2620                 :           4 :     case LEU:
    2621                 :           4 :       op = UMAX;
    2622                 :           4 :       unsignedp = true;
    2623                 :           4 :       break;
    2624                 :          19 :     case GTU:
    2625                 :          19 :     case GEU:
    2626                 :          19 :       op = UMIN;
    2627                 :          19 :       unsignedp = true;
    2628                 :          19 :       break;
    2629                 :             :     default:
    2630                 :             :       return false;
    2631                 :             :     }
    2632                 :             : 
    2633                 :          61 :   start_sequence ();
    2634                 :             : 
    2635                 :          61 :   target = expand_simple_binop (GET_MODE (if_info->x), op,
    2636                 :             :                                 if_info->a, if_info->b,
    2637                 :             :                                 if_info->x, unsignedp, OPTAB_WIDEN);
    2638                 :          61 :   if (! target)
    2639                 :             :     {
    2640                 :           0 :       end_sequence ();
    2641                 :           0 :       return false;
    2642                 :             :     }
    2643                 :          61 :   if (target != if_info->x)
    2644                 :           0 :     noce_emit_move_insn (if_info->x, target);
    2645                 :             : 
    2646                 :          61 :   seq = end_ifcvt_sequence (if_info);
    2647                 :          61 :   if (!seq)
    2648                 :             :     return false;
    2649                 :             : 
    2650                 :          61 :   emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
    2651                 :          61 :   if_info->cond = cond;
    2652                 :          61 :   if_info->cond_earliest = earliest;
    2653                 :          61 :   if_info->rev_cond = NULL_RTX;
    2654                 :          61 :   if_info->transform_name = "noce_try_minmax";
    2655                 :             : 
    2656                 :          61 :   return true;
    2657                 :             : }
    2658                 :             : 
    2659                 :             : /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);",
    2660                 :             :    "if (a < 0) x = ~a; else x = a;" to "x = one_cmpl_abs(a);",
    2661                 :             :    etc.  */
    2662                 :             : 
    2663                 :             : static bool
    2664                 :      276377 : noce_try_abs (struct noce_if_info *if_info)
    2665                 :             : {
    2666                 :      276377 :   rtx cond, target, a, b, c;
    2667                 :      276377 :   rtx_insn *earliest, *seq;
    2668                 :      276377 :   bool negate;
    2669                 :      276377 :   bool one_cmpl = false;
    2670                 :             : 
    2671                 :      585372 :   if (!noce_simple_bbs (if_info))
    2672                 :             :     return false;
    2673                 :             : 
    2674                 :             :   /* Reject modes with signed zeros.  */
    2675                 :      242787 :   if (HONOR_SIGNED_ZEROS (if_info->x))
    2676                 :             :     return false;
    2677                 :             : 
    2678                 :             :   /* Recognize A and B as constituting an ABS or NABS.  The canonical
    2679                 :             :      form is a branch around the negation, taken when the object is the
    2680                 :             :      first operand of a comparison against 0 that evaluates to true.  */
    2681                 :      188884 :   a = if_info->a;
    2682                 :      188884 :   b = if_info->b;
    2683                 :      188884 :   if (GET_CODE (a) == NEG && rtx_equal_p (XEXP (a, 0), b))
    2684                 :             :     negate = false;
    2685                 :      187671 :   else if (GET_CODE (b) == NEG && rtx_equal_p (XEXP (b, 0), a))
    2686                 :             :     {
    2687                 :             :       std::swap (a, b);
    2688                 :             :       negate = true;
    2689                 :             :     }
    2690                 :      187653 :   else if (GET_CODE (a) == NOT && rtx_equal_p (XEXP (a, 0), b))
    2691                 :             :     {
    2692                 :             :       negate = false;
    2693                 :             :       one_cmpl = true;
    2694                 :             :     }
    2695                 :      187653 :   else if (GET_CODE (b) == NOT && rtx_equal_p (XEXP (b, 0), a))
    2696                 :             :     {
    2697                 :             :       std::swap (a, b);
    2698                 :             :       negate = true;
    2699                 :             :       one_cmpl = true;
    2700                 :             :     }
    2701                 :             :   else
    2702                 :      187653 :     return false;
    2703                 :             : 
    2704                 :        1231 :   cond = noce_get_alt_condition (if_info, b, &earliest);
    2705                 :        1231 :   if (!cond)
    2706                 :             :     return false;
    2707                 :             : 
    2708                 :             :   /* Verify the condition is of the form we expect.  */
    2709                 :          13 :   if (rtx_equal_p (XEXP (cond, 0), b))
    2710                 :          13 :     c = XEXP (cond, 1);
    2711                 :           0 :   else if (rtx_equal_p (XEXP (cond, 1), b))
    2712                 :             :     {
    2713                 :           0 :       c = XEXP (cond, 0);
    2714                 :           0 :       negate = !negate;
    2715                 :             :     }
    2716                 :             :   else
    2717                 :             :     return false;
    2718                 :             : 
    2719                 :             :   /* Verify that C is zero.  Search one step backward for a
    2720                 :             :      REG_EQUAL note or a simple source if necessary.  */
    2721                 :          13 :   if (REG_P (c))
    2722                 :             :     {
    2723                 :           0 :       rtx set;
    2724                 :           0 :       rtx_insn *insn = prev_nonnote_nondebug_insn (earliest);
    2725                 :           0 :       if (insn
    2726                 :           0 :           && BLOCK_FOR_INSN (insn) == BLOCK_FOR_INSN (earliest)
    2727                 :           0 :           && (set = single_set (insn))
    2728                 :           0 :           && rtx_equal_p (SET_DEST (set), c))
    2729                 :             :         {
    2730                 :           0 :           rtx note = find_reg_equal_equiv_note (insn);
    2731                 :           0 :           if (note)
    2732                 :           0 :             c = XEXP (note, 0);
    2733                 :             :           else
    2734                 :           0 :             c = SET_SRC (set);
    2735                 :             :         }
    2736                 :             :       else
    2737                 :           0 :         return false;
    2738                 :             :     }
    2739                 :          13 :   if (MEM_P (c)
    2740                 :           0 :       && GET_CODE (XEXP (c, 0)) == SYMBOL_REF
    2741                 :          13 :       && CONSTANT_POOL_ADDRESS_P (XEXP (c, 0)))
    2742                 :           0 :     c = get_pool_constant (XEXP (c, 0));
    2743                 :             : 
    2744                 :             :   /* Work around funny ideas get_condition has wrt canonicalization.
    2745                 :             :      Note that these rtx constants are known to be CONST_INT, and
    2746                 :             :      therefore imply integer comparisons.
    2747                 :             :      The one_cmpl case is more complicated, as we want to handle
    2748                 :             :      only x < 0 ? ~x : x or x >= 0 ? x : ~x to one_cmpl_abs (x)
    2749                 :             :      and x < 0 ? x : ~x or x >= 0 ? ~x : x to ~one_cmpl_abs (x),
    2750                 :             :      but not other cases (x > -1 is equivalent of x >= 0).  */
    2751                 :          13 :   if (c == constm1_rtx && GET_CODE (cond) == GT)
    2752                 :             :     ;
    2753                 :           7 :   else if (c == const1_rtx && GET_CODE (cond) == LT)
    2754                 :             :     {
    2755                 :           0 :       if (one_cmpl)
    2756                 :             :         return false;
    2757                 :             :     }
    2758                 :           7 :   else if (c == CONST0_RTX (GET_MODE (b)))
    2759                 :             :     {
    2760                 :           0 :       if (one_cmpl
    2761                 :           0 :           && GET_CODE (cond) != GE
    2762                 :           0 :           && GET_CODE (cond) != LT)
    2763                 :             :         return false;
    2764                 :             :     }
    2765                 :             :   else
    2766                 :             :     return false;
    2767                 :             : 
    2768                 :             :   /* Determine what sort of operation this is.  */
    2769                 :           6 :   switch (GET_CODE (cond))
    2770                 :             :     {
    2771                 :           0 :     case LT:
    2772                 :           0 :     case LE:
    2773                 :           0 :     case UNLT:
    2774                 :           0 :     case UNLE:
    2775                 :           0 :       negate = !negate;
    2776                 :           0 :       break;
    2777                 :             :     case GT:
    2778                 :             :     case GE:
    2779                 :             :     case UNGT:
    2780                 :             :     case UNGE:
    2781                 :             :       break;
    2782                 :             :     default:
    2783                 :             :       return false;
    2784                 :             :     }
    2785                 :             : 
    2786                 :           6 :   start_sequence ();
    2787                 :           6 :   if (one_cmpl)
    2788                 :           0 :     target = expand_one_cmpl_abs_nojump (GET_MODE (if_info->x), b,
    2789                 :             :                                          if_info->x);
    2790                 :             :   else
    2791                 :           6 :     target = expand_abs_nojump (GET_MODE (if_info->x), b, if_info->x, 1);
    2792                 :             : 
    2793                 :             :   /* ??? It's a quandary whether cmove would be better here, especially
    2794                 :             :      for integers.  Perhaps combine will clean things up.  */
    2795                 :           6 :   if (target && negate)
    2796                 :             :     {
    2797                 :           0 :       if (one_cmpl)
    2798                 :           0 :         target = expand_simple_unop (GET_MODE (target), NOT, target,
    2799                 :             :                                      if_info->x, 0);
    2800                 :             :       else
    2801                 :           0 :         target = expand_simple_unop (GET_MODE (target), NEG, target,
    2802                 :             :                                      if_info->x, 0);
    2803                 :             :     }
    2804                 :             : 
    2805                 :           6 :   if (! target)
    2806                 :             :     {
    2807                 :           0 :       end_sequence ();
    2808                 :           0 :       return false;
    2809                 :             :     }
    2810                 :             : 
    2811                 :           6 :   if (target != if_info->x)
    2812                 :           0 :     noce_emit_move_insn (if_info->x, target);
    2813                 :             : 
    2814                 :           6 :   seq = end_ifcvt_sequence (if_info);
    2815                 :           6 :   if (!seq)
    2816                 :             :     return false;
    2817                 :             : 
    2818                 :           6 :   emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
    2819                 :           6 :   if_info->cond = cond;
    2820                 :           6 :   if_info->cond_earliest = earliest;
    2821                 :           6 :   if_info->rev_cond = NULL_RTX;
    2822                 :           6 :   if_info->transform_name = "noce_try_abs";
    2823                 :             : 
    2824                 :           6 :   return true;
    2825                 :             : }
    2826                 :             : 
    2827                 :             : /* Convert "if (m < 0) x = b; else x = 0;" to "x = (m >> C) & b;".  */
    2828                 :             : 
    2829                 :             : static bool
    2830                 :      206314 : noce_try_sign_mask (struct noce_if_info *if_info)
    2831                 :             : {
    2832                 :      206314 :   rtx cond, t, m, c;
    2833                 :      206314 :   rtx_insn *seq;
    2834                 :      206314 :   machine_mode mode;
    2835                 :      206314 :   enum rtx_code code;
    2836                 :      206314 :   bool t_unconditional;
    2837                 :             : 
    2838                 :      428279 :   if (!noce_simple_bbs (if_info))
    2839                 :             :     return false;
    2840                 :             : 
    2841                 :      179151 :   cond = if_info->cond;
    2842                 :      179151 :   code = GET_CODE (cond);
    2843                 :      179151 :   m = XEXP (cond, 0);
    2844                 :      179151 :   c = XEXP (cond, 1);
    2845                 :             : 
    2846                 :      179151 :   t = NULL_RTX;
    2847                 :      179151 :   if (if_info->a == const0_rtx)
    2848                 :             :     {
    2849                 :        4441 :       if ((code == LT && c == const0_rtx)
    2850                 :        4406 :           || (code == LE && c == constm1_rtx))
    2851                 :          35 :         t = if_info->b;
    2852                 :             :     }
    2853                 :      174710 :   else if (if_info->b == const0_rtx)
    2854                 :             :     {
    2855                 :       20357 :       if ((code == GE && c == const0_rtx)
    2856                 :       20357 :           || (code == GT && c == constm1_rtx))
    2857                 :             :         t = if_info->a;
    2858                 :             :     }
    2859                 :             : 
    2860                 :         139 :   if (! t || side_effects_p (t))
    2861                 :      179012 :     return false;
    2862                 :             : 
    2863                 :             :   /* We currently don't handle different modes.  */
    2864                 :         139 :   mode = GET_MODE (t);
    2865                 :         139 :   if (GET_MODE (m) != mode)
    2866                 :             :     return false;
    2867                 :             : 
    2868                 :             :   /* This is only profitable if T is unconditionally executed/evaluated in the
    2869                 :             :      original insn sequence or T is cheap and can't trap or fault.  The former
    2870                 :             :      happens if B is the non-zero (T) value and if INSN_B was taken from
    2871                 :             :      TEST_BB, or there was no INSN_B which can happen for e.g. conditional
    2872                 :             :      stores to memory.  For the cost computation use the block TEST_BB where
    2873                 :             :      the evaluation will end up after the transformation.  */
    2874                 :          65 :   t_unconditional
    2875                 :         151 :     = (t == if_info->b
    2876                 :          65 :        && (if_info->insn_b == NULL_RTX
    2877                 :           0 :            || BLOCK_FOR_INSN (if_info->insn_b) == if_info->test_bb));
    2878                 :         130 :   if (!(t_unconditional
    2879                 :          65 :         || ((set_src_cost (t, mode, if_info->speed_p)
    2880                 :             :              < COSTS_N_INSNS (2))
    2881                 :          42 :             && !may_trap_or_fault_p (t))))
    2882                 :          44 :     return false;
    2883                 :             : 
    2884                 :          21 :   if (!noce_can_force_operand (t))
    2885                 :             :     return false;
    2886                 :             : 
    2887                 :           0 :   start_sequence ();
    2888                 :             :   /* Use emit_store_flag to generate "m < 0 ? -1 : 0" instead of expanding
    2889                 :             :      "(signed) m >> 31" directly.  This benefits targets with specialized
    2890                 :             :      insns to obtain the signmask, but still uses ashr_optab otherwise.  */
    2891                 :           0 :   m = emit_store_flag (gen_reg_rtx (mode), LT, m, const0_rtx, mode, 0, -1);
    2892                 :           0 :   t = m ? expand_binop (mode, and_optab, m, t, NULL_RTX, 0, OPTAB_DIRECT)
    2893                 :             :         : NULL_RTX;
    2894                 :             : 
    2895                 :           0 :   if (!t)
    2896                 :             :     {
    2897                 :           0 :       end_sequence ();
    2898                 :           0 :       return false;
    2899                 :             :     }
    2900                 :             : 
    2901                 :           0 :   noce_emit_move_insn (if_info->x, t);
    2902                 :             : 
    2903                 :           0 :   seq = end_ifcvt_sequence (if_info);
    2904                 :           0 :   if (!seq)
    2905                 :             :     return false;
    2906                 :             : 
    2907                 :           0 :   emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
    2908                 :           0 :   if_info->transform_name = "noce_try_sign_mask";
    2909                 :             : 
    2910                 :           0 :   return true;
    2911                 :             : }
    2912                 :             : 
    2913                 :             : /*  Check if OP is supported by conditional zero based if conversion,
    2914                 :             :     returning TRUE if satisfied otherwise FALSE.
    2915                 :             : 
    2916                 :             :     OP is the operation to check.  */
    2917                 :             : 
    2918                 :             : static bool
    2919                 :       92233 : noce_cond_zero_binary_op_supported (rtx op)
    2920                 :             : {
    2921                 :       92233 :   enum rtx_code opcode = GET_CODE (op);
    2922                 :             : 
    2923                 :       92233 :   if (opcode == PLUS || opcode == MINUS || opcode == IOR || opcode == XOR
    2924                 :             :       || opcode == ASHIFT || opcode == ASHIFTRT || opcode == LSHIFTRT
    2925                 :             :       || opcode == ROTATE || opcode == ROTATERT || opcode == AND)
    2926                 :        4072 :     return true;
    2927                 :             : 
    2928                 :             :   return false;
    2929                 :             : }
    2930                 :             : 
    2931                 :             : /*  Helper function to return REG itself,
    2932                 :             :     otherwise NULL_RTX for other RTX_CODE.  */
    2933                 :             : 
    2934                 :             : static rtx
    2935                 :        3750 : get_base_reg (rtx exp)
    2936                 :             : {
    2937                 :           0 :   if (REG_P (exp))
    2938                 :           0 :     return exp;
    2939                 :             : 
    2940                 :             :   return NULL_RTX;
    2941                 :             : }
    2942                 :             : 
    2943                 :             : /*  Check if IF-BB and THEN-BB satisfy the condition for conditional zero
    2944                 :             :     based if conversion, returning TRUE if satisfied otherwise FALSE.
    2945                 :             : 
    2946                 :             :     IF_INFO describes the if-conversion scenario under consideration.
    2947                 :             :     COMMON_PTR points to the common REG of canonicalized IF_INFO->A and
    2948                 :             :     IF_INFO->B.
    2949                 :             :     CZERO_CODE_PTR points to the comparison code to use in czero RTX.
    2950                 :             :     A_PTR points to the A expression of canonicalized IF_INFO->A.
    2951                 :             :     TO_REPLACE points to the RTX to be replaced by czero RTX destnation.  */
    2952                 :             : 
    2953                 :             : static bool
    2954                 :      233958 : noce_bbs_ok_for_cond_zero_arith (struct noce_if_info *if_info, rtx *common_ptr,
    2955                 :             :                                  rtx *bin_exp_ptr,
    2956                 :             :                                  enum rtx_code *czero_code_ptr, rtx *a_ptr,
    2957                 :             :                                  rtx **to_replace)
    2958                 :             : {
    2959                 :      233958 :   rtx common = NULL_RTX;
    2960                 :      233958 :   rtx cond = if_info->cond;
    2961                 :      233958 :   rtx a = copy_rtx (if_info->a);
    2962                 :      233958 :   rtx b = copy_rtx (if_info->b);
    2963                 :      233958 :   rtx bin_op1 = NULL_RTX;
    2964                 :      233958 :   enum rtx_code czero_code = UNKNOWN;
    2965                 :      233958 :   bool reverse = false;
    2966                 :      233958 :   rtx op0, op1, bin_exp;
    2967                 :             : 
    2968                 :      486494 :   if (!noce_simple_bbs (if_info))
    2969                 :             :     return false;
    2970                 :             : 
    2971                 :             :   /* COND must be EQ or NE comparision of a reg and 0.  */
    2972                 :      200368 :   if (GET_CODE (cond) != NE && GET_CODE (cond) != EQ)
    2973                 :             :     return false;
    2974                 :      167265 :   if (!REG_P (XEXP (cond, 0)) || !rtx_equal_p (XEXP (cond, 1), const0_rtx))
    2975                 :       82176 :     return false;
    2976                 :             : 
    2977                 :             :   /* Canonicalize x = y : (y op z) to x = (y op z) : y.  */
    2978                 :       85089 :   if (REG_P (a) && noce_cond_zero_binary_op_supported (b))
    2979                 :             :     {
    2980                 :             :       std::swap (a, b);
    2981                 :             :       reverse = !reverse;
    2982                 :             :     }
    2983                 :             : 
    2984                 :             :   /* Check if x = (y op z) : y is supported by czero based ifcvt.  */
    2985                 :       85089 :   if (!(noce_cond_zero_binary_op_supported (a) && REG_P (b)))
    2986                 :             :     return false;
    2987                 :             : 
    2988                 :        1875 :   bin_exp = a;
    2989                 :             : 
    2990                 :             :   /* Canonicalize x = (z op y) : y to x = (y op z) : y */
    2991                 :        1875 :   op1 = get_base_reg (XEXP (bin_exp, 1));
    2992                 :         144 :   if (op1 && rtx_equal_p (op1, b) && COMMUTATIVE_ARITH_P (bin_exp))
    2993                 :           0 :     std::swap (XEXP (bin_exp, 0), XEXP (bin_exp, 1));
    2994                 :             : 
    2995                 :        1875 :   op0 = get_base_reg (XEXP (bin_exp, 0));
    2996                 :        1747 :   if (op0 && rtx_equal_p (op0, b))
    2997                 :             :     {
    2998                 :        1196 :       common = b;
    2999                 :        1196 :       bin_op1 = XEXP (bin_exp, 1);
    3000                 :        2392 :       czero_code = (reverse ^ (GET_CODE (bin_exp) == AND))
    3001                 :        1196 :                      ? noce_reversed_cond_code (if_info)
    3002                 :        1169 :                      : GET_CODE (cond);
    3003                 :             :     }
    3004                 :             :   else
    3005                 :         679 :     return false;
    3006                 :             : 
    3007                 :        1196 :   if (czero_code == UNKNOWN)
    3008                 :             :     return false;
    3009                 :             : 
    3010                 :        1196 :   if (REG_P (bin_op1))
    3011                 :          95 :     *to_replace = &XEXP (bin_exp, 1);
    3012                 :             :   else
    3013                 :             :     return false;
    3014                 :             : 
    3015                 :          95 :   *common_ptr = common;
    3016                 :          95 :   *bin_exp_ptr = bin_exp;
    3017                 :          95 :   *czero_code_ptr = czero_code;
    3018                 :          95 :   *a_ptr = a;
    3019                 :             : 
    3020                 :          95 :   return true;
    3021                 :             : }
    3022                 :             : 
    3023                 :             : /*  Try to covert if-then-else with conditional zero,
    3024                 :             :     returning TURE on success or FALSE on failure.
    3025                 :             :     IF_INFO describes the if-conversion scenario under consideration.  */
    3026                 :             : 
    3027                 :             : static int
    3028                 :      233958 : noce_try_cond_zero_arith (struct noce_if_info *if_info)
    3029                 :             : {
    3030                 :      233958 :   rtx target, rtmp, a;
    3031                 :      233958 :   rtx_insn *seq;
    3032                 :      233958 :   machine_mode mode = GET_MODE (if_info->x);
    3033                 :      233958 :   rtx common = NULL_RTX;
    3034                 :      233958 :   enum rtx_code czero_code = UNKNOWN;
    3035                 :      233958 :   rtx bin_exp = NULL_RTX;
    3036                 :      233958 :   enum rtx_code bin_code = UNKNOWN;
    3037                 :      233958 :   rtx non_zero_op = NULL_RTX;
    3038                 :      233958 :   rtx *to_replace = NULL;
    3039                 :             : 
    3040                 :      233958 :   if (!noce_bbs_ok_for_cond_zero_arith (if_info, &common, &bin_exp, &czero_code,
    3041                 :             :                                         &a, &to_replace))
    3042                 :             :     return false;
    3043                 :             : 
    3044                 :          95 :   start_sequence ();
    3045                 :             : 
    3046                 :          95 :   bin_code = GET_CODE (bin_exp);
    3047                 :             : 
    3048                 :          95 :   if (bin_code == AND)
    3049                 :             :     {
    3050                 :           2 :       rtmp = gen_reg_rtx (mode);
    3051                 :           2 :       noce_emit_move_insn (rtmp, a);
    3052                 :             : 
    3053                 :           2 :       target = noce_emit_czero (if_info, czero_code, common, if_info->x);
    3054                 :           2 :       if (!target)
    3055                 :             :         {
    3056                 :           2 :           end_sequence ();
    3057                 :           2 :           return false;
    3058                 :             :         }
    3059                 :             : 
    3060                 :           0 :       target = expand_simple_binop (mode, IOR, rtmp, target, if_info->x, 0,
    3061                 :             :                                     OPTAB_WIDEN);
    3062                 :           0 :       if (!target)
    3063                 :             :         {
    3064                 :           0 :           end_sequence ();
    3065                 :           0 :           return false;
    3066                 :             :         }
    3067                 :             : 
    3068                 :           0 :       if (target != if_info->x)
    3069                 :           0 :         noce_emit_move_insn (if_info->x, target);
    3070                 :             :     }
    3071                 :             :   else
    3072                 :             :     {
    3073                 :          93 :       non_zero_op = *to_replace;
    3074                 :             :       /* If x is used in both input and out like x = c ? x + z : x,
    3075                 :             :          use a new reg to avoid modifying x  */
    3076                 :          93 :       if (common && rtx_equal_p (common, if_info->x))
    3077                 :          62 :         target = gen_reg_rtx (mode);
    3078                 :             :       else
    3079                 :          31 :         target = if_info->x;
    3080                 :             : 
    3081                 :          93 :       target = noce_emit_czero (if_info, czero_code, non_zero_op, target);
    3082                 :          93 :       if (!target || !to_replace)
    3083                 :             :         {
    3084                 :          93 :           end_sequence ();
    3085                 :          93 :           return false;
    3086                 :             :         }
    3087                 :             : 
    3088                 :           0 :       *to_replace = target;
    3089                 :           0 :       noce_emit_move_insn (if_info->x, a);
    3090                 :             :     }
    3091                 :             : 
    3092                 :           0 :   seq = end_ifcvt_sequence (if_info);
    3093                 :           0 :   if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
    3094                 :           0 :     return false;
    3095                 :             : 
    3096                 :           0 :   emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
    3097                 :           0 :   if_info->transform_name = "noce_try_cond_zero_arith";
    3098                 :           0 :   return true;
    3099                 :             : }
    3100                 :             : 
    3101                 :             : /* Optimize away "if (x & C) x |= C" and similar bit manipulation
    3102                 :             :    transformations.  */
    3103                 :             : 
    3104                 :             : static bool
    3105                 :      276438 : noce_try_bitop (struct noce_if_info *if_info)
    3106                 :             : {
    3107                 :      276438 :   rtx cond, x, a, result;
    3108                 :      276438 :   rtx_insn *seq;
    3109                 :      276438 :   scalar_int_mode mode;
    3110                 :      276438 :   enum rtx_code code;
    3111                 :      276438 :   int bitnum;
    3112                 :             : 
    3113                 :      276438 :   x = if_info->x;
    3114                 :      276438 :   cond = if_info->cond;
    3115                 :      276438 :   code = GET_CODE (cond);
    3116                 :             : 
    3117                 :             :   /* Check for an integer operation.  */
    3118                 :      276438 :   if (!is_a <scalar_int_mode> (GET_MODE (x), &mode))
    3119                 :             :     return false;
    3120                 :             : 
    3121                 :      525789 :   if (!noce_simple_bbs (if_info))
    3122                 :             :     return false;
    3123                 :             : 
    3124                 :             :   /* Check for no else condition.  */
    3125                 :      187129 :   if (! rtx_equal_p (x, if_info->b))
    3126                 :             :     return false;
    3127                 :             : 
    3128                 :             :   /* Check for a suitable condition.  */
    3129                 :       97899 :   if (code != NE && code != EQ)
    3130                 :             :     return false;
    3131                 :       72948 :   if (XEXP (cond, 1) != const0_rtx)
    3132                 :             :     return false;
    3133                 :       53293 :   cond = XEXP (cond, 0);
    3134                 :             : 
    3135                 :             :   /* ??? We could also handle AND here.  */
    3136                 :       53293 :   if (GET_CODE (cond) == ZERO_EXTRACT)
    3137                 :             :     {
    3138                 :        2189 :       if (XEXP (cond, 1) != const1_rtx
    3139                 :         261 :           || !CONST_INT_P (XEXP (cond, 2))
    3140                 :        2450 :           || ! rtx_equal_p (x, XEXP (cond, 0)))
    3141                 :        2184 :         return false;
    3142                 :           5 :       bitnum = INTVAL (XEXP (cond, 2));
    3143                 :           5 :       if (BITS_BIG_ENDIAN)
    3144                 :             :         bitnum = GET_MODE_BITSIZE (mode) - 1 - bitnum;
    3145                 :           5 :       if (bitnum < 0 || bitnum >= HOST_BITS_PER_WIDE_INT)
    3146                 :             :         return false;
    3147                 :             :     }
    3148                 :             :   else
    3149                 :             :     return false;
    3150                 :             : 
    3151                 :           5 :   a = if_info->a;
    3152                 :           5 :   if (GET_CODE (a) == IOR || GET_CODE (a) == XOR)
    3153                 :             :     {
    3154                 :             :       /* Check for "if (X & C) x = x op C".  */
    3155                 :           0 :       if (! rtx_equal_p (x, XEXP (a, 0))
    3156                 :           0 :           || !CONST_INT_P (XEXP (a, 1))
    3157                 :           0 :           || (INTVAL (XEXP (a, 1)) & GET_MODE_MASK (mode))
    3158                 :           0 :              != HOST_WIDE_INT_1U << bitnum)
    3159                 :             :         return false;
    3160                 :             : 
    3161                 :             :       /* if ((x & C) == 0) x |= C; is transformed to x |= C.   */
    3162                 :             :       /* if ((x & C) != 0) x |= C; is transformed to nothing.  */
    3163                 :           0 :       if (GET_CODE (a) == IOR)
    3164                 :           0 :         result = (code == NE) ? a : NULL_RTX;
    3165                 :           0 :       else if (code == NE)
    3166                 :             :         {
    3167                 :             :           /* if ((x & C) == 0) x ^= C; is transformed to x |= C.   */
    3168                 :           0 :           result = gen_int_mode (HOST_WIDE_INT_1 << bitnum, mode);
    3169                 :           0 :           result = simplify_gen_binary (IOR, mode, x, result);
    3170                 :             :         }
    3171                 :             :       else
    3172                 :             :         {
    3173                 :             :           /* if ((x & C) != 0) x ^= C; is transformed to x &= ~C.  */
    3174                 :           0 :           result = gen_int_mode (~(HOST_WIDE_INT_1 << bitnum), mode);
    3175                 :           0 :           result = simplify_gen_binary (AND, mode, x, result);
    3176                 :             :         }
    3177                 :             :     }
    3178                 :           5 :   else if (GET_CODE (a) == AND)
    3179                 :             :     {
    3180                 :             :       /* Check for "if (X & C) x &= ~C".  */
    3181                 :           0 :       if (! rtx_equal_p (x, XEXP (a, 0))
    3182                 :           0 :           || !CONST_INT_P (XEXP (a, 1))
    3183                 :           0 :           || (INTVAL (XEXP (a, 1)) & GET_MODE_MASK (mode))
    3184                 :           0 :              != (~(HOST_WIDE_INT_1 << bitnum) & GET_MODE_MASK (mode)))
    3185                 :             :         return false;
    3186                 :             : 
    3187                 :             :       /* if ((x & C) == 0) x &= ~C; is transformed to nothing.  */
    3188                 :             :       /* if ((x & C) != 0) x &= ~C; is transformed to x &= ~C.  */
    3189                 :           0 :       result = (code == EQ) ? a : NULL_RTX;
    3190                 :             :     }
    3191                 :             :   else
    3192                 :             :     return false;
    3193                 :             : 
    3194                 :           0 :   if (result)
    3195                 :             :     {
    3196                 :           0 :       start_sequence ();
    3197                 :           0 :       noce_emit_move_insn (x, result);
    3198                 :           0 :       seq = end_ifcvt_sequence (if_info);
    3199                 :           0 :       if (!seq)
    3200                 :             :         return false;
    3201                 :             : 
    3202                 :           0 :       emit_insn_before_setloc (seq, if_info->jump,
    3203                 :           0 :                                INSN_LOCATION (if_info->insn_a));
    3204                 :             :     }
    3205                 :           0 :   if_info->transform_name = "noce_try_bitop";
    3206                 :           0 :   return true;
    3207                 :             : }
    3208                 :             : 
    3209                 :             : 
    3210                 :             : /* Similar to get_condition, only the resulting condition must be
    3211                 :             :    valid at JUMP, instead of at EARLIEST.
    3212                 :             : 
    3213                 :             :    If THEN_ELSE_REVERSED is true, the fallthrough does not go to the
    3214                 :             :    THEN block of the caller, and we have to reverse the condition.  */
    3215                 :             : 
    3216                 :             : static rtx
    3217                 :     4033570 : noce_get_condition (rtx_insn *jump, rtx_insn **earliest,
    3218                 :             :                     bool then_else_reversed)
    3219                 :             : {
    3220                 :     4033570 :   rtx cond, set, tmp;
    3221                 :     4033570 :   bool reverse;
    3222                 :             : 
    3223                 :     4033570 :   if (! any_condjump_p (jump))
    3224                 :             :     return NULL_RTX;
    3225                 :             : 
    3226                 :     4033570 :   set = pc_set (jump);
    3227                 :             : 
    3228                 :             :   /* If this branches to JUMP_LABEL when the condition is false,
    3229                 :             :      reverse the condition.  */
    3230                 :     8067140 :   reverse = (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
    3231                 :     4033570 :              && label_ref_label (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (jump));
    3232                 :             : 
    3233                 :             :   /* We may have to reverse because the caller's if block is not canonical,
    3234                 :             :      i.e. the THEN block isn't the fallthrough block for the TEST block
    3235                 :             :      (see find_if_header).  */
    3236                 :     4033570 :   if (then_else_reversed)
    3237                 :     1779363 :     reverse = !reverse;
    3238                 :             : 
    3239                 :             :   /* If the condition variable is a register and is MODE_INT, accept it.  */
    3240                 :             : 
    3241                 :     4033570 :   cond = XEXP (SET_SRC (set), 0);
    3242                 :     4033570 :   tmp = XEXP (cond, 0);
    3243                 :     4032399 :   if (REG_P (tmp) && GET_MODE_CLASS (GET_MODE (tmp)) == MODE_INT
    3244                 :     4033570 :       && (GET_MODE (tmp) != BImode
    3245                 :           0 :           || !targetm.small_register_classes_for_mode_p (BImode)))
    3246                 :             :     {
    3247                 :           0 :       *earliest = jump;
    3248                 :             : 
    3249                 :           0 :       if (reverse)
    3250                 :           0 :         cond = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond)),
    3251                 :             :                                GET_MODE (cond), tmp, XEXP (cond, 1));
    3252                 :           0 :       return cond;
    3253                 :             :     }
    3254                 :             : 
    3255                 :             :   /* Otherwise, fall back on canonicalize_condition to do the dirty
    3256                 :             :      work of manipulating MODE_CC values and COMPARE rtx codes.  */
    3257                 :     4033570 :   tmp = canonicalize_condition (jump, cond, reverse, earliest,
    3258                 :             :                                 NULL_RTX, have_cbranchcc4, true);
    3259                 :             : 
    3260                 :             :   /* We don't handle side-effects in the condition, like handling
    3261                 :             :      REG_INC notes and making sure no duplicate conditions are emitted.  */
    3262                 :     4033570 :   if (tmp != NULL_RTX && side_effects_p (tmp))
    3263                 :             :     return NULL_RTX;
    3264                 :             : 
    3265                 :             :   return tmp;
    3266                 :             : }
    3267                 :             : 
    3268                 :             : /* Return true if OP is ok for if-then-else processing.  */
    3269                 :             : 
    3270                 :             : static bool
    3271                 :     7114190 : noce_operand_ok (const_rtx op)
    3272                 :             : {
    3273                 :     7114190 :   if (side_effects_p (op))
    3274                 :             :     return false;
    3275                 :             : 
    3276                 :             :   /* We special-case memories, so handle any of them with
    3277                 :             :      no address side effects.  */
    3278                 :     7092413 :   if (MEM_P (op))
    3279                 :     1509039 :     return ! side_effects_p (XEXP (op, 0));
    3280                 :             : 
    3281                 :     5583374 :   return ! may_trap_p (op);
    3282                 :             : }
    3283                 :             : 
    3284                 :             : /* Return true iff basic block TEST_BB is valid for noce if-conversion.
    3285                 :             :    The condition used in this if-conversion is in COND.
    3286                 :             :    In practice, check that TEST_BB ends with a single set
    3287                 :             :    x := a and all previous computations
    3288                 :             :    in TEST_BB don't produce any values that are live after TEST_BB.
    3289                 :             :    In other words, all the insns in TEST_BB are there only
    3290                 :             :    to compute a value for x.  Add the rtx cost of the insns
    3291                 :             :    in TEST_BB to COST.  Record whether TEST_BB is a single simple
    3292                 :             :    set instruction in SIMPLE_P.  */
    3293                 :             : 
    3294                 :             : static bool
    3295                 :     2047934 : bb_valid_for_noce_process_p (basic_block test_bb, rtx cond,
    3296                 :             :                               unsigned int *cost, bool *simple_p)
    3297                 :             : {
    3298                 :     2047934 :   if (!test_bb)
    3299                 :             :     return false;
    3300                 :             : 
    3301                 :     2047934 :   rtx_insn *last_insn = last_active_insn (test_bb, false);
    3302                 :     2047934 :   rtx last_set = NULL_RTX;
    3303                 :             : 
    3304                 :     2047934 :   rtx cc = cc_in_cond (cond);
    3305                 :             : 
    3306                 :     2047934 :   if (!insn_valid_noce_process_p (last_insn, cc))
    3307                 :             :     return false;
    3308                 :             : 
    3309                 :             :   /* Punt on blocks ending with asm goto or jumps with other side-effects,
    3310                 :             :      last_active_insn ignores JUMP_INSNs.  */
    3311                 :     1462506 :   if (JUMP_P (BB_END (test_bb)) && !onlyjump_p (BB_END (test_bb)))
    3312                 :             :     return false;
    3313                 :             : 
    3314                 :     1462504 :   last_set = single_set (last_insn);
    3315                 :             : 
    3316                 :     1462504 :   rtx x = SET_DEST (last_set);
    3317                 :     1462504 :   rtx_insn *first_insn = first_active_insn (test_bb);
    3318                 :     1462504 :   rtx first_set = single_set (first_insn);
    3319                 :             : 
    3320                 :     1462504 :   if (!first_set)
    3321                 :             :     return false;
    3322                 :             : 
    3323                 :             :   /* We have a single simple set, that's okay.  */
    3324                 :     1449535 :   bool speed_p = optimize_bb_for_speed_p (test_bb);
    3325                 :             : 
    3326                 :     1449535 :   if (first_insn == last_insn)
    3327                 :             :     {
    3328                 :      530180 :       *simple_p = noce_operand_ok (SET_DEST (first_set));
    3329                 :      530180 :       *cost += pattern_cost (first_set, speed_p);
    3330                 :      530180 :       return *simple_p;
    3331                 :             :     }
    3332                 :             : 
    3333                 :      919355 :   rtx_insn *prev_last_insn = PREV_INSN (last_insn);
    3334                 :      919355 :   gcc_assert (prev_last_insn);
    3335                 :             : 
    3336                 :             :   /* For now, disallow setting x multiple times in test_bb.  */
    3337                 :      919355 :   if (REG_P (x) && reg_set_between_p (x, first_insn, prev_last_insn))
    3338                 :             :     return false;
    3339                 :             : 
    3340                 :      770685 :   bitmap test_bb_temps = BITMAP_ALLOC (&reg_obstack);
    3341                 :             : 
    3342                 :             :   /* The regs that are live out of test_bb.  */
    3343                 :      770685 :   bitmap test_bb_live_out = df_get_live_out (test_bb);
    3344                 :             : 
    3345                 :      770685 :   int potential_cost = pattern_cost (last_set, speed_p);
    3346                 :      770685 :   rtx_insn *insn;
    3347                 :     3606985 :   FOR_BB_INSNS (test_bb, insn)
    3348                 :             :     {
    3349                 :     3485193 :       if (insn != last_insn)
    3350                 :             :         {
    3351                 :     3363401 :           if (!active_insn_p (insn))
    3352                 :     1997366 :             continue;
    3353                 :             : 
    3354                 :     1366035 :           if (!insn_valid_noce_process_p (insn, cc))
    3355                 :      185492 :             goto free_bitmap_and_fail;
    3356                 :             : 
    3357                 :     1180543 :           rtx sset = single_set (insn);
    3358                 :     1180543 :           gcc_assert (sset);
    3359                 :     1180543 :           rtx dest = SET_DEST (sset);
    3360                 :     1180543 :           if (SUBREG_P (dest))
    3361                 :       24219 :             dest = SUBREG_REG (dest);
    3362                 :             : 
    3363                 :     1180543 :           if (contains_mem_rtx_p (SET_SRC (sset))
    3364                 :      814333 :               || !REG_P (dest)
    3365                 :     1909795 :               || reg_overlap_mentioned_p (dest, cond))
    3366                 :      463401 :             goto free_bitmap_and_fail;
    3367                 :             : 
    3368                 :      717142 :           potential_cost += pattern_cost (sset, speed_p);
    3369                 :      717142 :           bitmap_set_bit (test_bb_temps, REGNO (dest));
    3370                 :             :         }
    3371                 :             :     }
    3372                 :             : 
    3373                 :             :   /* If any of the intermediate results in test_bb are live after test_bb
    3374                 :             :      then fail.  */
    3375                 :      121792 :   if (bitmap_intersect_p (test_bb_live_out, test_bb_temps))
    3376                 :       74613 :     goto free_bitmap_and_fail;
    3377                 :             : 
    3378                 :       47179 :   BITMAP_FREE (test_bb_temps);
    3379                 :       47179 :   *cost += potential_cost;
    3380                 :       47179 :   *simple_p = false;
    3381                 :       47179 :   return true;
    3382                 :             : 
    3383                 :      723506 :  free_bitmap_and_fail:
    3384                 :      723506 :   BITMAP_FREE (test_bb_temps);
    3385                 :      723506 :   return false;
    3386                 :             : }
    3387                 :             : 
    3388                 :             : /* Helper function to emit a cmov sequence encapsulated in
    3389                 :             :    start_sequence () and end_sequence ().  If NEED_CMOV is true
    3390                 :             :    we call noce_emit_cmove to create a cmove sequence.  Otherwise emit
    3391                 :             :    a simple move.  If successful, store the first instruction of the
    3392                 :             :    sequence in TEMP_DEST and the sequence costs in SEQ_COST.  */
    3393                 :             : 
    3394                 :             : static rtx_insn*
    3395                 :       99396 : try_emit_cmove_seq (struct noce_if_info *if_info, rtx temp,
    3396                 :             :                     rtx cond, rtx new_val, rtx old_val, bool need_cmov,
    3397                 :             :                     unsigned *cost, rtx *temp_dest,
    3398                 :             :                     rtx cc_cmp = NULL, rtx rev_cc_cmp = NULL)
    3399                 :             : {
    3400                 :       99396 :   rtx_insn *seq = NULL;
    3401                 :       99396 :   *cost = 0;
    3402                 :             : 
    3403                 :       99396 :   rtx x = XEXP (cond, 0);
    3404                 :       99396 :   rtx y = XEXP (cond, 1);
    3405                 :       99396 :   rtx_code cond_code = GET_CODE (cond);
    3406                 :             : 
    3407                 :       99396 :   start_sequence ();
    3408                 :             : 
    3409                 :       99396 :   if (need_cmov)
    3410                 :       94682 :     *temp_dest = noce_emit_cmove (if_info, temp, cond_code,
    3411                 :             :                                   x, y, new_val, old_val, cc_cmp, rev_cc_cmp);
    3412                 :             :   else
    3413                 :             :     {
    3414                 :        4714 :       *temp_dest = temp;
    3415                 :        4714 :       if (if_info->then_else_reversed)
    3416                 :         204 :         noce_emit_move_insn (temp, old_val);
    3417                 :             :       else
    3418                 :        4510 :         noce_emit_move_insn (temp, new_val);
    3419                 :             :     }
    3420                 :             : 
    3421                 :       99396 :   if (*temp_dest != NULL_RTX)
    3422                 :             :     {
    3423                 :       97460 :       seq = get_insns ();
    3424                 :       97460 :       *cost = seq_cost (seq, if_info->speed_p);
    3425                 :             :     }
    3426                 :             : 
    3427                 :       99396 :   end_sequence ();
    3428                 :             : 
    3429                 :       99396 :   return seq;
    3430                 :             : }
    3431                 :             : 
    3432                 :             : /* We have something like:
    3433                 :             : 
    3434                 :             :      if (x > y)
    3435                 :             :        { i = a; j = b; k = c; }
    3436                 :             : 
    3437                 :             :    Make it:
    3438                 :             : 
    3439                 :             :      tmp_i = (x > y) ? a : i;
    3440                 :             :      tmp_j = (x > y) ? b : j;
    3441                 :             :      tmp_k = (x > y) ? c : k;
    3442                 :             :      i = tmp_i;
    3443                 :             :      j = tmp_j;
    3444                 :             :      k = tmp_k;
    3445                 :             : 
    3446                 :             :    Subsequent passes are expected to clean up the extra moves.
    3447                 :             : 
    3448                 :             :    Look for special cases such as writes to one register which are
    3449                 :             :    read back in another SET, as might occur in a swap idiom or
    3450                 :             :    similar.
    3451                 :             : 
    3452                 :             :    These look like:
    3453                 :             : 
    3454                 :             :    if (x > y)
    3455                 :             :      i = a;
    3456                 :             :      j = i;
    3457                 :             : 
    3458                 :             :    Which we want to rewrite to:
    3459                 :             : 
    3460                 :             :      tmp_i = (x > y) ? a : i;
    3461                 :             :      tmp_j = (x > y) ? tmp_i : j;
    3462                 :             :      i = tmp_i;
    3463                 :             :      j = tmp_j;
    3464                 :             : 
    3465                 :             :    We can catch these when looking at (SET x y) by keeping a list of the
    3466                 :             :    registers we would have targeted before if-conversion and looking back
    3467                 :             :    through it for an overlap with Y.  If we find one, we rewire the
    3468                 :             :    conditional set to use the temporary we introduced earlier.
    3469                 :             : 
    3470                 :             :    IF_INFO contains the useful information about the block structure and
    3471                 :             :    jump instructions.  */
    3472                 :             : 
    3473                 :             : static bool
    3474                 :       11257 : noce_convert_multiple_sets (struct noce_if_info *if_info)
    3475                 :             : {
    3476                 :       11257 :   basic_block test_bb = if_info->test_bb;
    3477                 :       11257 :   basic_block then_bb = if_info->then_bb;
    3478                 :       11257 :   basic_block join_bb = if_info->join_bb;
    3479                 :       11257 :   rtx_insn *jump = if_info->jump;
    3480                 :       11257 :   rtx_insn *cond_earliest;
    3481                 :       11257 :   rtx_insn *insn;
    3482                 :             : 
    3483                 :       11257 :   start_sequence ();
    3484                 :             : 
    3485                 :             :   /* Decompose the condition attached to the jump.  */
    3486                 :       11257 :   rtx cond = noce_get_condition (jump, &cond_earliest, false);
    3487                 :       11257 :   rtx x = XEXP (cond, 0);
    3488                 :       11257 :   rtx y = XEXP (cond, 1);
    3489                 :             : 
    3490                 :             :   /* The true targets for a conditional move.  */
    3491                 :       11257 :   auto_vec<rtx> targets;
    3492                 :             :   /* The temporaries introduced to allow us to not consider register
    3493                 :             :      overlap.  */
    3494                 :       11257 :   auto_vec<rtx> temporaries;
    3495                 :             :   /* The insns we've emitted.  */
    3496                 :       11257 :   auto_vec<rtx_insn *> unmodified_insns;
    3497                 :             : 
    3498                 :       11257 :   hash_set<rtx_insn *> need_no_cmov;
    3499                 :       11257 :   hash_map<rtx_insn *, int> rewired_src;
    3500                 :             : 
    3501                 :       11257 :   need_cmov_or_rewire (then_bb, &need_no_cmov, &rewired_src);
    3502                 :             : 
    3503                 :       11257 :   int last_needs_comparison = -1;
    3504                 :             : 
    3505                 :       11257 :   bool ok = noce_convert_multiple_sets_1
    3506                 :       11257 :     (if_info, &need_no_cmov, &rewired_src, &targets, &temporaries,
    3507                 :             :      &unmodified_insns, &last_needs_comparison);
    3508                 :       11257 :   if (!ok)
    3509                 :             :       return false;
    3510                 :             : 
    3511                 :             :   /* If there are insns that overwrite part of the initial
    3512                 :             :      comparison, we can still omit creating temporaries for
    3513                 :             :      the last of them.
    3514                 :             :      As the second try will always create a less expensive,
    3515                 :             :      valid sequence, we do not need to compare and can discard
    3516                 :             :      the first one.  */
    3517                 :       11205 :   if (last_needs_comparison != -1)
    3518                 :             :     {
    3519                 :       11205 :       end_sequence ();
    3520                 :       11205 :       start_sequence ();
    3521                 :       11205 :       ok = noce_convert_multiple_sets_1
    3522                 :       11205 :         (if_info, &need_no_cmov, &rewired_src, &targets, &temporaries,
    3523                 :             :          &unmodified_insns, &last_needs_comparison);
    3524                 :             :       /* Actually we should not fail anymore if we reached here,
    3525                 :             :          but better still check.  */
    3526                 :       11205 :       if (!ok)
    3527                 :             :           return false;
    3528                 :             :     }
    3529                 :             : 
    3530                 :             :   /* We must have seen some sort of insn to insert, otherwise we were
    3531                 :             :      given an empty BB to convert, and we can't handle that.  */
    3532                 :       11205 :   gcc_assert (!unmodified_insns.is_empty ());
    3533                 :             : 
    3534                 :             :   /* Now fixup the assignments.  */
    3535                 :       72008 :   for (unsigned i = 0; i < targets.length (); i++)
    3536                 :       24799 :     if (targets[i] != temporaries[i])
    3537                 :          87 :       noce_emit_move_insn (targets[i], temporaries[i]);
    3538                 :             : 
    3539                 :             :   /* Actually emit the sequence if it isn't too expensive.  */
    3540                 :       11205 :   rtx_insn *seq = get_insns ();
    3541                 :             : 
    3542                 :       11205 :   if (!targetm.noce_conversion_profitable_p (seq, if_info))
    3543                 :             :     {
    3544                 :       10302 :       end_sequence ();
    3545                 :       10302 :       return false;
    3546                 :             :     }
    3547                 :             : 
    3548                 :        2949 :   for (insn = seq; insn; insn = NEXT_INSN (insn))
    3549                 :        2046 :     set_used_flags (insn);
    3550                 :             : 
    3551                 :             :   /* Mark all our temporaries and targets as used.  */
    3552                 :        5430 :   for (unsigned i = 0; i < targets.length (); i++)
    3553                 :             :     {
    3554                 :        1812 :       set_used_flags (temporaries[i]);
    3555                 :        1812 :       set_used_flags (targets[i]);
    3556                 :             :     }
    3557                 :             : 
    3558                 :         903 :   set_used_flags (cond);
    3559                 :         903 :   set_used_flags (x);
    3560                 :         903 :   set_used_flags (y);
    3561                 :             : 
    3562                 :         903 :   unshare_all_rtl_in_chain (seq);
    3563                 :         903 :   end_sequence ();
    3564                 :             : 
    3565                 :         903 :   if (!seq)
    3566                 :             :     return false;
    3567                 :             : 
    3568                 :        2949 :   for (insn = seq; insn; insn = NEXT_INSN (insn))
    3569                 :        2046 :     if (JUMP_P (insn)
    3570                 :        2046 :         || recog_memoized (insn) == -1)
    3571                 :           0 :       return false;
    3572                 :             : 
    3573                 :         903 :   emit_insn_before_setloc (seq, if_info->jump,
    3574                 :         903 :                            INSN_LOCATION (unmodified_insns.last ()));
    3575                 :             : 
    3576                 :             :   /* Clean up THEN_BB and the edges in and out of it.  */
    3577                 :         903 :   remove_edge (find_edge (test_bb, join_bb));
    3578                 :         903 :   remove_edge (find_edge (then_bb, join_bb));
    3579                 :         903 :   redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
    3580                 :         903 :   delete_basic_block (then_bb);
    3581                 :         903 :   num_true_changes++;
    3582                 :             : 
    3583                 :             :   /* Maybe merge blocks now the jump is simple enough.  */
    3584                 :         903 :   if (can_merge_blocks_p (test_bb, join_bb))
    3585                 :             :     {
    3586                 :         293 :       merge_blocks (test_bb, join_bb);
    3587                 :         293 :       num_true_changes++;
    3588                 :             :     }
    3589                 :             : 
    3590                 :         903 :   num_updated_if_blocks++;
    3591                 :         903 :   if_info->transform_name = "noce_convert_multiple_sets";
    3592                 :         903 :   return true;
    3593                 :       11257 : }
    3594                 :             : 
    3595                 :             : /* Helper function for noce_convert_multiple_sets_1.  If store to
    3596                 :             :    DEST can affect P[0] or P[1], clear P[0].  Called via note_stores.  */
    3597                 :             : 
    3598                 :             : static void
    3599                 :       65213 : check_for_cc_cmp_clobbers (rtx dest, const_rtx, void *p0)
    3600                 :             : {
    3601                 :       65213 :   rtx *p = (rtx *) p0;
    3602                 :       65213 :   if (p[0] == NULL_RTX)
    3603                 :             :     return;
    3604                 :       65213 :   if (reg_overlap_mentioned_p (dest, p[0])
    3605                 :       65213 :       || (p[1] && reg_overlap_mentioned_p (dest, p[1])))
    3606                 :          16 :     p[0] = NULL_RTX;
    3607                 :             : }
    3608                 :             : 
    3609                 :             : /* This goes through all relevant insns of IF_INFO->then_bb and tries to
    3610                 :             :    create conditional moves.  In case a simple move sufficis the insn
    3611                 :             :    should be listed in NEED_NO_CMOV.  The rewired-src cases should be
    3612                 :             :    specified via REWIRED_SRC.  TARGETS, TEMPORARIES and UNMODIFIED_INSNS
    3613                 :             :    are specified and used in noce_convert_multiple_sets and should be passed
    3614                 :             :    to this function..  */
    3615                 :             : 
    3616                 :             : static bool
    3617                 :       22462 : noce_convert_multiple_sets_1 (struct noce_if_info *if_info,
    3618                 :             :                               hash_set<rtx_insn *> *need_no_cmov,
    3619                 :             :                               hash_map<rtx_insn *, int> *rewired_src,
    3620                 :             :                               auto_vec<rtx> *targets,
    3621                 :             :                               auto_vec<rtx> *temporaries,
    3622                 :             :                               auto_vec<rtx_insn *> *unmodified_insns,
    3623                 :             :                               int *last_needs_comparison)
    3624                 :             : {
    3625                 :       22462 :   basic_block then_bb = if_info->then_bb;
    3626                 :       22462 :   rtx_insn *jump = if_info->jump;
    3627                 :       22462 :   rtx_insn *cond_earliest;
    3628                 :             : 
    3629                 :             :   /* Decompose the condition attached to the jump.  */
    3630                 :       22462 :   rtx cond = noce_get_condition (jump, &cond_earliest, false);
    3631                 :             : 
    3632                 :       22462 :   rtx cc_cmp = cond_exec_get_condition (jump);
    3633                 :       22462 :   if (cc_cmp)
    3634                 :       22462 :     cc_cmp = copy_rtx (cc_cmp);
    3635                 :       22462 :   rtx rev_cc_cmp = cond_exec_get_condition (jump, /* get_reversed */ true);
    3636                 :       22462 :   if (rev_cc_cmp)
    3637                 :       22462 :     rev_cc_cmp = copy_rtx (rev_cc_cmp);
    3638                 :             : 
    3639                 :       22462 :   rtx_insn *insn;
    3640                 :       22462 :   int count = 0;
    3641                 :             : 
    3642                 :       22462 :   targets->truncate (0);
    3643                 :       22462 :   temporaries->truncate (0);
    3644                 :       22462 :   unmodified_insns->truncate (0);
    3645                 :             : 
    3646                 :       22462 :   bool second_try = *last_needs_comparison != -1;
    3647                 :             : 
    3648                 :      112539 :   FOR_BB_INSNS (then_bb, insn)
    3649                 :             :     {
    3650                 :             :       /* Skip over non-insns.  */
    3651                 :       90129 :       if (!active_insn_p (insn))
    3652                 :       40423 :         continue;
    3653                 :             : 
    3654                 :       49706 :       rtx set = single_set (insn);
    3655                 :       49706 :       gcc_checking_assert (set);
    3656                 :             : 
    3657                 :       49706 :       rtx target = SET_DEST (set);
    3658                 :       49706 :       rtx temp;
    3659                 :             : 
    3660                 :       49706 :       rtx new_val = SET_SRC (set);
    3661                 :       49706 :       if (int *ii = rewired_src->get (insn))
    3662                 :          90 :         new_val = simplify_replace_rtx (new_val, (*targets)[*ii],
    3663                 :          90 :                                         (*temporaries)[*ii]);
    3664                 :       49706 :       rtx old_val = target;
    3665                 :             : 
    3666                 :             :       /* As we are transforming
    3667                 :             :          if (x > y)
    3668                 :             :            {
    3669                 :             :              a = b;
    3670                 :             :              c = d;
    3671                 :             :            }
    3672                 :             :          into
    3673                 :             :            a = (x > y) ...
    3674                 :             :            c = (x > y) ...
    3675                 :             : 
    3676                 :             :          we potentially check x > y before every set.
    3677                 :             :          Even though the check might be removed by subsequent passes, this means
    3678                 :             :          that we cannot transform
    3679                 :             :            if (x > y)
    3680                 :             :              {
    3681                 :             :                x = y;
    3682                 :             :                ...
    3683                 :             :              }
    3684                 :             :          into
    3685                 :             :            x = (x > y) ...
    3686                 :             :            ...
    3687                 :             :          since this would invalidate x and the following to-be-removed checks.
    3688                 :             :          Therefore we introduce a temporary every time we are about to
    3689                 :             :          overwrite a variable used in the check.  Costing of a sequence with
    3690                 :             :          these is going to be inaccurate so only use temporaries when
    3691                 :             :          needed.
    3692                 :             : 
    3693                 :             :          If performing a second try, we know how many insns require a
    3694                 :             :          temporary.  For the last of these, we can omit creating one.  */
    3695                 :       49706 :       if (reg_overlap_mentioned_p (target, cond)
    3696                 :       49706 :           && (!second_try || count < *last_needs_comparison))
    3697                 :        7539 :         temp = gen_reg_rtx (GET_MODE (target));
    3698                 :             :       else
    3699                 :             :         temp = target;
    3700                 :             : 
    3701                 :             :       /* We have identified swap-style idioms before.  A normal
    3702                 :             :          set will need to be a cmov while the first instruction of a swap-style
    3703                 :             :          idiom can be a regular move.  This helps with costing.  */
    3704                 :       49706 :       bool need_cmov = !need_no_cmov->contains (insn);
    3705                 :             : 
    3706                 :             :       /* If we had a non-canonical conditional jump (i.e. one where
    3707                 :             :          the fallthrough is to the "else" case) we need to reverse
    3708                 :             :          the conditional select.  */
    3709                 :       49706 :       if (if_info->then_else_reversed)
    3710                 :       19714 :         std::swap (old_val, new_val);
    3711                 :             : 
    3712                 :             :       /* Try emitting a conditional move passing the backend the
    3713                 :             :          canonicalized comparison.  The backend is then able to
    3714                 :             :          recognize expressions like
    3715                 :             : 
    3716                 :             :            if (x > y)
    3717                 :             :              y = x;
    3718                 :             : 
    3719                 :             :          as min/max and emit an insn, accordingly.  */
    3720                 :       49706 :       unsigned cost1 = 0, cost2 = 0;
    3721                 :       49706 :       rtx_insn *seq, *seq1, *seq2 = NULL;
    3722                 :       49706 :       rtx temp_dest = NULL_RTX, temp_dest1 = NULL_RTX, temp_dest2 = NULL_RTX;
    3723                 :       49706 :       bool read_comparison = false;
    3724                 :             : 
    3725                 :       49706 :       seq1 = try_emit_cmove_seq (if_info, temp, cond,
    3726                 :             :                                  new_val, old_val, need_cmov,
    3727                 :             :                                  &cost1, &temp_dest1);
    3728                 :             : 
    3729                 :             :       /* Here, we try to pass the backend a non-canonicalized cc comparison
    3730                 :             :          as well.  This allows the backend to emit a cmov directly without
    3731                 :             :          creating an additional compare for each.  If successful, costing
    3732                 :             :          is easier and this sequence is usually preferred.  */
    3733                 :       49706 :       if (cc_cmp)
    3734                 :       49690 :         seq2 = try_emit_cmove_seq (if_info, temp, cond,
    3735                 :             :                                    new_val, old_val, need_cmov,
    3736                 :             :                                    &cost2, &temp_dest2, cc_cmp, rev_cc_cmp);
    3737                 :             : 
    3738                 :             :       /* The backend might have created a sequence that uses the
    3739                 :             :          condition.  Check this.  */
    3740                 :       49706 :       rtx_insn *walk = seq2;
    3741                 :      103793 :       while (walk)
    3742                 :             :         {
    3743                 :       59061 :           rtx set = single_set (walk);
    3744                 :             : 
    3745                 :       59061 :           if (!set || !SET_SRC (set))
    3746                 :             :             {
    3747                 :           0 :               walk = NEXT_INSN (walk);
    3748                 :           0 :               continue;
    3749                 :             :             }
    3750                 :             : 
    3751                 :       59061 :           rtx src = SET_SRC (set);
    3752                 :             : 
    3753                 :       59061 :           if (XEXP (set, 1) && GET_CODE (XEXP (set, 1)) == IF_THEN_ELSE)
    3754                 :             :             ; /* We assume that this is the cmove created by the backend that
    3755                 :             :                  naturally uses the condition.  Therefore we ignore it.  */
    3756                 :             :           else
    3757                 :             :             {
    3758                 :       16490 :               if (reg_mentioned_p (XEXP (cond, 0), src)
    3759                 :       16490 :                   || reg_mentioned_p (XEXP (cond, 1), src))
    3760                 :             :                 {
    3761                 :             :                   read_comparison = true;
    3762                 :             :                   break;
    3763                 :             :                 }
    3764                 :             :             }
    3765                 :             : 
    3766                 :       54087 :           walk = NEXT_INSN (walk);
    3767                 :             :         }
    3768                 :             : 
    3769                 :             :       /* Check which version is less expensive.  */
    3770                 :       49706 :       if (seq1 != NULL_RTX && (cost1 <= cost2 || seq2 == NULL_RTX))
    3771                 :             :         {
    3772                 :        5107 :           seq = seq1;
    3773                 :        5107 :           temp_dest = temp_dest1;
    3774                 :        5107 :           if (!second_try)
    3775                 :        2567 :             *last_needs_comparison = count;
    3776                 :             :         }
    3777                 :         342 :       else if (seq2 != NULL_RTX)
    3778                 :             :         {
    3779                 :       44547 :           seq = seq2;
    3780                 :       44547 :           temp_dest = temp_dest2;
    3781                 :       44547 :           if (!second_try && read_comparison)
    3782                 :        1574 :             *last_needs_comparison = count;
    3783                 :             :         }
    3784                 :             :       else
    3785                 :             :         {
    3786                 :             :           /* Nothing worked, bail out.  */
    3787                 :          52 :           end_sequence ();
    3788                 :          52 :           return false;
    3789                 :             :         }
    3790                 :             : 
    3791                 :       49654 :       if (cc_cmp)
    3792                 :             :         {
    3793                 :             :           /* Check if SEQ can clobber registers mentioned in
    3794                 :             :              cc_cmp and/or rev_cc_cmp.  If yes, we need to use
    3795                 :             :              only seq1 from that point on.  */
    3796                 :       49638 :           rtx cc_cmp_pair[2] = { cc_cmp, rev_cc_cmp };
    3797                 :      114835 :           for (walk = seq; walk; walk = NEXT_INSN (walk))
    3798                 :             :             {
    3799                 :       65213 :               note_stores (walk, check_for_cc_cmp_clobbers, cc_cmp_pair);
    3800                 :       65213 :               if (cc_cmp_pair[0] == NULL_RTX)
    3801                 :             :                 {
    3802                 :             :                   cc_cmp = NULL_RTX;
    3803                 :             :                   rev_cc_cmp = NULL_RTX;
    3804                 :             :                   break;
    3805                 :             :                 }
    3806                 :             :             }
    3807                 :             :         }
    3808                 :             : 
    3809                 :             :       /* End the sub sequence and emit to the main sequence.  */
    3810                 :       49654 :       emit_insn (seq);
    3811                 :             : 
    3812                 :             :       /* Bookkeeping.  */
    3813                 :       49654 :       count++;
    3814                 :       49654 :       targets->safe_push (target);
    3815                 :       49654 :       temporaries->safe_push (temp_dest);
    3816                 :       49654 :       unmodified_insns->safe_push (insn);
    3817                 :             :     }
    3818                 :             : 
    3819                 :             :   /* Even if we did not actually need the comparison, we want to make sure
    3820                 :             :      to try a second time in order to get rid of the temporaries.  */
    3821                 :       22410 :   if (*last_needs_comparison == -1)
    3822                 :        7953 :     *last_needs_comparison = 0;
    3823                 :             : 
    3824                 :             : 
    3825                 :             :   return true;
    3826                 :             : }
    3827                 :             : 
    3828                 :             : 
    3829                 :             : 
    3830                 :             : /* Return true iff basic block TEST_BB is comprised of only
    3831                 :             :    (SET (REG) (REG)) insns suitable for conversion to a series
    3832                 :             :    of conditional moves.  Also check that we have more than one set
    3833                 :             :    (other routines can handle a single set better than we would), and
    3834                 :             :    fewer than PARAM_MAX_RTL_IF_CONVERSION_INSNS sets.  While going
    3835                 :             :    through the insns store the sum of their potential costs in COST.  */
    3836                 :             : 
    3837                 :             : static bool
    3838                 :     1038578 : bb_ok_for_noce_convert_multiple_sets (basic_block test_bb, unsigned *cost)
    3839                 :             : {
    3840                 :     1038578 :   rtx_insn *insn;
    3841                 :     1038578 :   unsigned count = 0;
    3842                 :     1038578 :   unsigned param = param_max_rtl_if_conversion_insns;
    3843                 :     1038578 :   bool speed_p = optimize_bb_for_speed_p (test_bb);
    3844                 :     1038578 :   unsigned potential_cost = 0;
    3845                 :             : 
    3846                 :     6556907 :   FOR_BB_INSNS (test_bb, insn)
    3847                 :             :     {
    3848                 :             :       /* Skip over notes etc.  */
    3849                 :     6480475 :       if (!active_insn_p (insn))
    3850                 :     5117480 :         continue;
    3851                 :             : 
    3852                 :             :       /* We only handle SET insns.  */
    3853                 :     1362995 :       rtx set = single_set (insn);
    3854                 :     1362995 :       if (set == NULL_RTX)
    3855                 :             :         return false;
    3856                 :             : 
    3857                 :     1231692 :       rtx dest = SET_DEST (set);
    3858                 :     1231692 :       rtx src = SET_SRC (set);
    3859                 :             : 
    3860                 :             :       /* We can possibly relax this, but for now only handle REG to REG
    3861                 :             :          (including subreg) moves.  This avoids any issues that might come
    3862                 :             :          from introducing loads/stores that might violate data-race-freedom
    3863                 :             :          guarantees.  */
    3864                 :     1231692 :       if (!REG_P (dest))
    3865                 :             :         return false;
    3866                 :             : 
    3867                 :     1105497 :       if (!((REG_P (src) || CONSTANT_P (src))
    3868                 :        2731 :             || (GET_CODE (src) == SUBREG && REG_P (SUBREG_REG (src))
    3869                 :        2718 :               && subreg_lowpart_p (src))))
    3870                 :      693324 :         return false;
    3871                 :             : 
    3872                 :             :       /* Destination must be appropriate for a conditional write.  */
    3873                 :      412173 :       if (!noce_operand_ok (dest))
    3874                 :             :         return false;
    3875                 :             : 
    3876                 :             :       /* We must be able to conditionally move in this mode.  */
    3877                 :      412173 :       if (!can_conditionally_move_p (GET_MODE (dest)))
    3878                 :             :         return false;
    3879                 :             : 
    3880                 :      400849 :       potential_cost += insn_cost (insn, speed_p);
    3881                 :             : 
    3882                 :      400849 :       count++;
    3883                 :             :     }
    3884                 :             : 
    3885                 :       76432 :   *cost += potential_cost;
    3886                 :             : 
    3887                 :             :   /* If we would only put out one conditional move, the other strategies
    3888                 :             :      this pass tries are better optimized and will be more appropriate.
    3889                 :             :      Some targets want to strictly limit the number of conditional moves
    3890                 :             :      that are emitted, they set this through PARAM, we need to respect
    3891                 :             :      that.  */
    3892                 :       76432 :   return count > 1 && count <= param;
    3893                 :             : }
    3894                 :             : 
    3895                 :             : /* Compute average of two given costs weighted by relative probabilities
    3896                 :             :    of respective basic blocks in an IF-THEN-ELSE.  E is the IF-THEN edge.
    3897                 :             :    With P as the probability to take the IF-THEN branch, return
    3898                 :             :    P * THEN_COST + (1 - P) * ELSE_COST.  */
    3899                 :             : static unsigned
    3900                 :      270355 : average_cost (unsigned then_cost, unsigned else_cost, edge e)
    3901                 :             : {
    3902                 :      270355 :   return else_cost + e->probability.apply ((signed) (then_cost - else_cost));
    3903                 :             : }
    3904                 :             : 
    3905                 :             : /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
    3906                 :             :    it without using conditional execution.  Return TRUE if we were successful
    3907                 :             :    at converting the block.  */
    3908                 :             : 
    3909                 :             : static bool
    3910                 :     1779363 : noce_process_if_block (struct noce_if_info *if_info)
    3911                 :             : {
    3912                 :     1779363 :   basic_block test_bb = if_info->test_bb;    /* test block */
    3913                 :     1779363 :   basic_block then_bb = if_info->then_bb;    /* THEN */
    3914                 :     1779363 :   basic_block else_bb = if_info->else_bb;    /* ELSE or NULL */
    3915                 :     1779363 :   basic_block join_bb = if_info->join_bb;    /* JOIN */
    3916                 :     1779363 :   rtx_insn *jump = if_info->jump;
    3917                 :     1779363 :   rtx cond = if_info->cond;
    3918                 :     1779363 :   rtx_insn *insn_a, *insn_b;
    3919                 :     1779363 :   rtx set_a, set_b;
    3920                 :     1779363 :   rtx orig_x, x, a, b;
    3921                 :             : 
    3922                 :             :   /* We're looking for patterns of the form
    3923                 :             : 
    3924                 :             :      (1) if (...) x = a; else x = b;
    3925                 :             :      (2) x = b; if (...) x = a;
    3926                 :             :      (3) if (...) x = a;   // as if with an initial x = x.
    3927                 :             :      (4) if (...) { x = a; y = b; z = c; }  // Like 3, for multiple SETS.
    3928                 :             :      The later patterns require jumps to be more expensive.
    3929                 :             :      For the if (...) x = a; else x = b; case we allow multiple insns
    3930                 :             :      inside the then and else blocks as long as their only effect is
    3931                 :             :      to calculate a value for x.
    3932                 :             :      ??? For future expansion, further expand the "multiple X" rules.  */
    3933                 :             : 
    3934                 :             :   /* First look for multiple SETS.  The original costs already include
    3935                 :             :      a base cost of COSTS_N_INSNS (2): one instruction for the compare
    3936                 :             :      (which we will be needing either way) and one instruction for the
    3937                 :             :      branch.  When comparing costs we want to use the branch instruction
    3938                 :             :      cost and the sets vs. the cmovs generated here.  Therefore subtract
    3939                 :             :      the costs of the compare before checking.
    3940                 :             :      ??? Actually, instead of the branch instruction costs we might want
    3941                 :             :      to use COSTS_N_INSNS (BRANCH_COST ()) as in other places.  */
    3942                 :             : 
    3943                 :     1779363 :   unsigned potential_cost = if_info->original_cost - COSTS_N_INSNS (1);
    3944                 :     1779363 :   unsigned old_cost = if_info->original_cost;
    3945                 :     1779363 :   if (!else_bb
    3946                 :             :       && HAVE_conditional_move
    3947                 :     1779363 :       && bb_ok_for_noce_convert_multiple_sets (then_bb, &potential_cost))
    3948                 :             :     {
    3949                 :             :       /* Temporarily set the original costs to what we estimated so
    3950                 :             :          we can determine if the transformation is worth it.  */
    3951                 :       11257 :       if_info->original_cost = potential_cost;
    3952                 :       11257 :       if (noce_convert_multiple_sets (if_info))
    3953                 :             :         {
    3954                 :         903 :           if (dump_file && if_info->transform_name)
    3955                 :           1 :             fprintf (dump_file, "if-conversion succeeded through %s\n",
    3956                 :             :                      if_info->transform_name);
    3957                 :         903 :           return true;
    3958                 :             :         }
    3959                 :             : 
    3960                 :             :       /* Restore the original costs.  */
    3961                 :       10354 :       if_info->original_cost = old_cost;
    3962                 :             :     }
    3963                 :             : 
    3964                 :     1778460 :   bool speed_p = optimize_bb_for_speed_p (test_bb);
    3965                 :     1778460 :   unsigned int then_cost = 0, else_cost = 0;
    3966                 :     1778460 :   if (!bb_valid_for_noce_process_p (then_bb, cond, &then_cost,
    3967                 :             :                                     &if_info->then_simple))
    3968                 :             :     return false;
    3969                 :             : 
    3970                 :      485937 :   if (else_bb
    3971                 :      485937 :       && !bb_valid_for_noce_process_p (else_bb, cond, &else_cost,
    3972                 :             :                                        &if_info->else_simple))
    3973                 :             :     return false;
    3974                 :             : 
    3975                 :      307885 :   if (speed_p)
    3976                 :      270355 :     if_info->original_cost += average_cost (then_cost, else_cost,
    3977                 :             :                                             find_edge (test_bb, then_bb));
    3978                 :             :   else
    3979                 :       37530 :     if_info->original_cost += then_cost + else_cost;
    3980                 :             : 
    3981                 :      307885 :   insn_a = last_active_insn (then_bb, false);
    3982                 :      307885 :   set_a = single_set (insn_a);
    3983                 :      307885 :   gcc_assert (set_a);
    3984                 :             : 
    3985                 :      307885 :   x = SET_DEST (set_a);
    3986                 :      307885 :   a = SET_SRC (set_a);
    3987                 :             : 
    3988                 :             :   /* Look for the other potential set.  Make sure we've got equivalent
    3989                 :             :      destinations.  */
    3990                 :             :   /* ??? This is overconservative.  Storing to two different mems is
    3991                 :             :      as easy as conditionally computing the address.  Storing to a
    3992                 :             :      single mem merely requires a scratch memory to use as one of the
    3993                 :             :      destination addresses; often the memory immediately below the
    3994                 :             :      stack pointer is available for this.  */
    3995                 :      307885 :   set_b = NULL_RTX;
    3996                 :      307885 :   if (else_bb)
    3997                 :             :     {
    3998                 :       91422 :       insn_b = last_active_insn (else_bb, false);
    3999                 :       91422 :       set_b = single_set (insn_b);
    4000                 :       91422 :       gcc_assert (set_b);
    4001                 :             : 
    4002                 :       91422 :       if (!rtx_interchangeable_p (x, SET_DEST (set_b)))
    4003                 :             :         return false;
    4004                 :             :     }
    4005                 :             :   else
    4006                 :             :     {
    4007                 :      216463 :       insn_b = if_info->cond_earliest;
    4008                 :      560004 :       do
    4009                 :      560004 :         insn_b = prev_nonnote_nondebug_insn (insn_b);
    4010                 :             :       while (insn_b
    4011                 :      557341 :              && (BLOCK_FOR_INSN (insn_b)
    4012                 :      557341 :                  == BLOCK_FOR_INSN (if_info->cond_earliest))
    4013                 :     1249414 :              && !modified_in_p (x, insn_b));
    4014                 :             : 
    4015                 :             :       /* We're going to be moving the evaluation of B down from above
    4016                 :             :          COND_EARLIEST to JUMP.  Make sure the relevant data is still
    4017                 :             :          intact.  */
    4018                 :      216463 :       if (! insn_b
    4019                 :      213800 :           || BLOCK_FOR_INSN (insn_b) != BLOCK_FOR_INSN (if_info->cond_earliest)
    4020                 :      129406 :           || !NONJUMP_INSN_P (insn_b)
    4021                 :      123450 :           || (set_b = single_set (insn_b)) == NULL_RTX
    4022                 :      121807 :           || ! rtx_interchangeable_p (x, SET_DEST (set_b))
    4023                 :      110277 :           || ! noce_operand_ok (SET_SRC (set_b))
    4024                 :      107824 :           || reg_overlap_mentioned_p (x, SET_SRC (set_b))
    4025                 :      106146 :           || modified_between_p (SET_SRC (set_b), insn_b, jump)
    4026                 :             :           /* Avoid extending the lifetime of hard registers on small
    4027                 :             :              register class machines.  */
    4028                 :      103515 :           || (REG_P (SET_SRC (set_b))
    4029                 :       23309 :               && HARD_REGISTER_P (SET_SRC (set_b))
    4030                 :        3554 :               && targetm.small_register_classes_for_mode_p
    4031                 :        3554 :                    (GET_MODE (SET_SRC (set_b))))
    4032                 :             :           /* Likewise with X.  In particular this can happen when
    4033                 :             :              noce_get_condition looks farther back in the instruction
    4034                 :             :              stream than one might expect.  */
    4035                 :       99961 :           || reg_overlap_mentioned_p (x, cond)
    4036                 :       85067 :           || reg_overlap_mentioned_p (x, a)
    4037                 :      294084 :           || modified_between_p (x, insn_b, jump))
    4038                 :             :         {
    4039                 :             :           insn_b = NULL;
    4040                 :             :           set_b = NULL_RTX;
    4041                 :             :         }
    4042                 :             :     }
    4043                 :             : 
    4044                 :             :   /* If x has side effects then only the if-then-else form is safe to
    4045                 :             :      convert.  But even in that case we would need to restore any notes
    4046                 :             :      (such as REG_INC) at then end.  That can be tricky if
    4047                 :             :      noce_emit_move_insn expands to more than one insn, so disable the
    4048                 :             :      optimization entirely for now if there are side effects.  */
    4049                 :      295583 :   if (side_effects_p (x))
    4050                 :             :     return false;
    4051                 :             : 
    4052                 :      295583 :   b = (set_b ? SET_SRC (set_b) : x);
    4053                 :             : 
    4054                 :             :   /* Only operate on register destinations, and even then avoid extending
    4055                 :             :      the lifetime of hard registers on small register class machines.  */
    4056                 :      295583 :   orig_x = x;
    4057                 :      295583 :   if_info->orig_x = orig_x;
    4058                 :      295583 :   if (!REG_P (x)
    4059                 :      295583 :       || (HARD_REGISTER_P (x)
    4060                 :           2 :           && targetm.small_register_classes_for_mode_p (GET_MODE (x))))
    4061                 :             :     {
    4062                 :       59073 :       if (GET_MODE (x) == BLKmode)
    4063                 :             :         return false;
    4064                 :             : 
    4065                 :       58766 :       if (GET_CODE (x) == ZERO_EXTRACT
    4066                 :           2 :           && (!CONST_INT_P (XEXP (x, 1))
    4067                 :           2 :               || !CONST_INT_P (XEXP (x, 2))))
    4068                 :             :         return false;
    4069                 :             : 
    4070                 :       58766 :       x = gen_reg_rtx (GET_MODE (GET_CODE (x) == STRICT_LOW_PART
    4071                 :             :                                  ? XEXP (x, 0) : x));
    4072                 :             :     }
    4073                 :             : 
    4074                 :             :   /* Don't operate on sources that may trap or are volatile.  */
    4075                 :      295276 :   if (! noce_operand_ok (a) || ! noce_operand_ok (b))
    4076                 :           0 :     return false;
    4077                 :             : 
    4078                 :      352412 :  retry:
    4079                 :             :   /* Set up the info block for our subroutines.  */
    4080                 :      352412 :   if_info->insn_a = insn_a;
    4081                 :      352412 :   if_info->insn_b = insn_b;
    4082                 :      352412 :   if_info->x = x;
    4083                 :      352412 :   if_info->a = a;
    4084                 :      352412 :   if_info->b = b;
    4085                 :             : 
    4086                 :             :   /* Try optimizations in some approximation of a useful order.  */
    4087                 :             :   /* ??? Should first look to see if X is live incoming at all.  If it
    4088                 :             :      isn't, we don't need anything but an unconditional set.  */
    4089                 :             : 
    4090                 :             :   /* Look and see if A and B are really the same.  Avoid creating silly
    4091                 :             :      cmove constructs that no one will fix up later.  */
    4092                 :      352412 :   if (noce_simple_bbs (if_info)
    4093                 :      315753 :       && rtx_interchangeable_p (a, b))
    4094                 :             :     {
    4095                 :             :       /* If we have an INSN_B, we don't have to create any new rtl.  Just
    4096                 :             :          move the instruction that we already have.  If we don't have an
    4097                 :             :          INSN_B, that means that A == X, and we've got a noop move.  In
    4098                 :             :          that case don't do anything and let the code below delete INSN_A.  */
    4099                 :         464 :       if (insn_b && else_bb)
    4100                 :             :         {
    4101                 :         455 :           rtx note;
    4102                 :             : 
    4103                 :         455 :           if (else_bb && insn_b == BB_END (else_bb))
    4104                 :         192 :             BB_END (else_bb) = PREV_INSN (insn_b);
    4105                 :         455 :           reorder_insns (insn_b, insn_b, PREV_INSN (jump));
    4106                 :             : 
    4107                 :             :           /* If there was a REG_EQUAL note, delete it since it may have been
    4108                 :             :              true due to this insn being after a jump.  */
    4109                 :         455 :           if ((note = find_reg_note (insn_b, REG_EQUAL, NULL_RTX)) != 0)
    4110                 :          12 :             remove_note (insn_b, note);
    4111                 :             : 
    4112                 :         464 :           insn_b = NULL;
    4113                 :             :         }
    4114                 :             :       /* If we have "x = b; if (...) x = a;", and x has side-effects, then
    4115                 :             :          x must be executed twice.  */
    4116                 :           9 :       else if (insn_b && side_effects_p (orig_x))
    4117                 :             :         return false;
    4118                 :             : 
    4119                 :         464 :       x = orig_x;
    4120                 :         464 :       goto success;
    4121                 :             :     }
    4122                 :             : 
    4123                 :      351948 :   if (!set_b && MEM_P (orig_x))
    4124                 :             :     /* We want to avoid store speculation to avoid cases like
    4125                 :             :          if (pthread_mutex_trylock(mutex))
    4126                 :             :            ++global_variable;
    4127                 :             :        Rather than go to much effort here, we rely on the SSA optimizers,
    4128                 :             :        which do a good enough job these days.  */
    4129                 :             :     return false;
    4130                 :             : 
    4131                 :      295007 :   if (noce_try_move (if_info))
    4132                 :           0 :     goto success;
    4133                 :      295007 :   if (noce_try_ifelse_collapse (if_info))
    4134                 :        2065 :     goto success;
    4135                 :      292942 :   if (noce_try_store_flag (if_info))
    4136                 :       16504 :     goto success;
    4137                 :      276438 :   if (noce_try_bitop (if_info))
    4138                 :           0 :     goto success;
    4139                 :      276438 :   if (noce_try_minmax (if_info))
    4140                 :          61 :     goto success;
    4141                 :      276377 :   if (noce_try_abs (if_info))
    4142                 :           6 :     goto success;
    4143                 :      276371 :   if (noce_try_inverse_constants (if_info))
    4144                 :           0 :     goto success;
    4145                 :      276371 :   if (!targetm.have_conditional_execution ()
    4146                 :      276371 :       && noce_try_store_flag_constants (if_info))
    4147                 :        2035 :     goto success;
    4148                 :      274336 :   if (HAVE_conditional_move
    4149                 :      274336 :       && noce_try_cmove (if_info))
    4150                 :       36131 :     goto success;
    4151                 :      238205 :   if (! targetm.have_conditional_execution ())
    4152                 :             :     {
    4153                 :      238205 :       if (noce_try_addcc (if_info))
    4154                 :        4239 :         goto success;
    4155                 :      233966 :       if (noce_try_store_flag_mask (if_info))
    4156                 :           8 :         goto success;
    4157                 :      233958 :       if (HAVE_conditional_move
    4158                 :      233958 :           && noce_try_cond_zero_arith (if_info))
    4159                 :           0 :         goto success;
    4160                 :      233958 :       if (HAVE_conditional_move
    4161                 :      233958 :           && noce_try_cmove_arith (if_info))
    4162                 :       27644 :         goto success;
    4163                 :      206314 :       if (noce_try_sign_mask (if_info))
    4164                 :           0 :         goto success;
    4165                 :             :     }
    4166                 :             : 
    4167                 :      206314 :   if (!else_bb && set_b)
    4168                 :             :     {
    4169                 :       57136 :       insn_b = NULL;
    4170                 :       57136 :       set_b = NULL_RTX;
    4171                 :       57136 :       b = orig_x;
    4172                 :       57136 :       goto retry;
    4173                 :             :     }
    4174                 :             : 
    4175                 :             :   return false;
    4176                 :             : 
    4177                 :       89157 :  success:
    4178                 :       89157 :   if (dump_file && if_info->transform_name)
    4179                 :           5 :     fprintf (dump_file, "if-conversion succeeded through %s\n",
    4180                 :             :              if_info->transform_name);
    4181                 :             : 
    4182                 :             :   /* If we used a temporary, fix it up now.  */
    4183                 :       89157 :   if (orig_x != x)
    4184                 :             :     {
    4185                 :         704 :       rtx_insn *seq;
    4186                 :             : 
    4187                 :         704 :       start_sequence ();
    4188                 :         704 :       noce_emit_move_insn (orig_x, x);
    4189                 :         704 :       seq = get_insns ();
    4190                 :         704 :       set_used_flags (orig_x);
    4191                 :         704 :       unshare_all_rtl_in_chain (seq);
    4192                 :         704 :       end_sequence ();
    4193                 :             : 
    4194                 :         704 :       emit_insn_before_setloc (seq, BB_END (test_bb), INSN_LOCATION (insn_a));
    4195                 :             :     }
    4196                 :             : 
    4197                 :             :   /* The original THEN and ELSE blocks may now be removed.  The test block
    4198                 :             :      must now jump to the join block.  If the test block and the join block
    4199                 :             :      can be merged, do so.  */
    4200                 :       89157 :   if (else_bb)
    4201                 :             :     {
    4202                 :       26945 :       delete_basic_block (else_bb);
    4203                 :       26945 :       num_true_changes++;
    4204                 :             :     }
    4205                 :             :   else
    4206                 :       62212 :     remove_edge (find_edge (test_bb, join_bb));
    4207                 :             : 
    4208                 :       89157 :   remove_edge (find_edge (then_bb, join_bb));
    4209                 :       89157 :   redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
    4210                 :       89157 :   delete_basic_block (then_bb);
    4211                 :       89157 :   num_true_changes++;
    4212                 :             : 
    4213                 :       89157 :   if (can_merge_blocks_p (test_bb, join_bb))
    4214                 :             :     {
    4215                 :       66553 :       merge_blocks (test_bb, join_bb);
    4216                 :       66553 :       num_true_changes++;
    4217                 :             :     }
    4218                 :             : 
    4219                 :       89157 :   num_updated_if_blocks++;
    4220                 :       89157 :   return true;
    4221                 :             : }
    4222                 :             : 
    4223                 :             : /* Check whether a block is suitable for conditional move conversion.
    4224                 :             :    Every insn must be a simple set of a register to a constant or a
    4225                 :             :    register.  For each assignment, store the value in the pointer map
    4226                 :             :    VALS, keyed indexed by register pointer, then store the register
    4227                 :             :    pointer in REGS.  COND is the condition we will test.  */
    4228                 :             : 
    4229                 :             : static bool
    4230                 :     1733407 : check_cond_move_block (basic_block bb,
    4231                 :             :                        hash_map<rtx, rtx> *vals,
    4232                 :             :                        vec<rtx> *regs,
    4233                 :             :                        rtx cond)
    4234                 :             : {
    4235                 :     1733407 :   rtx_insn *insn;
    4236                 :     1733407 :   rtx cc = cc_in_cond (cond);
    4237                 :             : 
    4238                 :             :    /* We can only handle simple jumps at the end of the basic block.
    4239                 :             :       It is almost impossible to update the CFG otherwise.  */
    4240                 :     1733407 :   insn = BB_END (bb);
    4241                 :     1733407 :   if (JUMP_P (insn) && !onlyjump_p (insn))
    4242                 :             :     return false;
    4243                 :             : 
    4244                 :     8273397 :   FOR_BB_INSNS (bb, insn)
    4245                 :             :     {
    4246                 :     8177240 :       rtx set, dest, src;
    4247                 :             : 
    4248                 :     8177240 :       if (!NONDEBUG_INSN_P (insn) || JUMP_P (insn))
    4249                 :     6371343 :         continue;
    4250                 :     1805897 :       set = single_set (insn);
    4251                 :     1805897 :       if (!set)
    4252                 :     1637203 :         return false;
    4253                 :             : 
    4254                 :     1741422 :       dest = SET_DEST (set);
    4255                 :     1741422 :       src = SET_SRC (set);
    4256                 :     1741422 :       if (!REG_P (dest)
    4257                 :     1741422 :           || (HARD_REGISTER_P (dest)
    4258                 :      262305 :               && targetm.small_register_classes_for_mode_p (GET_MODE (dest))))
    4259                 :      607728 :         return false;
    4260                 :             : 
    4261                 :     1133694 :       if (!CONSTANT_P (src) && !register_operand (src, VOIDmode))
    4262                 :             :         return false;
    4263                 :             : 
    4264                 :      188500 :       if (side_effects_p (src) || side_effects_p (dest))
    4265                 :           0 :         return false;
    4266                 :             : 
    4267                 :      188500 :       if (may_trap_p (src) || may_trap_p (dest))
    4268                 :           0 :         return false;
    4269                 :             : 
    4270                 :             :       /* Don't try to handle this if the source register was
    4271                 :             :          modified earlier in the block.  */
    4272                 :      188500 :       if ((REG_P (src)
    4273                 :       43027 :            && vals->get (src))
    4274                 :      231331 :           || (GET_CODE (src) == SUBREG && REG_P (SUBREG_REG (src))
    4275                 :        5223 :               && vals->get (SUBREG_REG (src))))
    4276                 :         209 :         return false;
    4277                 :             : 
    4278                 :             :       /* Don't try to handle this if the destination register was
    4279                 :             :          modified earlier in the block.  */
    4280                 :      188291 :       if (vals->get (dest))
    4281                 :             :         return false;
    4282                 :             : 
    4283                 :             :       /* Don't try to handle this if the condition uses the
    4284                 :             :          destination register.  */
    4285                 :      188290 :       if (reg_overlap_mentioned_p (dest, cond))
    4286                 :             :         return false;
    4287                 :             : 
    4288                 :             :       /* Don't try to handle this if the source register is modified
    4289                 :             :          later in the block.  */
    4290                 :      176490 :       if (!CONSTANT_P (src)
    4291                 :      176490 :           && modified_between_p (src, insn, NEXT_INSN (BB_END (bb))))
    4292                 :             :         return false;
    4293                 :             : 
    4294                 :             :       /* Skip it if the instruction to be moved might clobber CC.  */
    4295                 :      168694 :       if (cc && set_of (cc, insn))
    4296                 :             :         return false;
    4297                 :             : 
    4298                 :      168694 :       vals->put (dest, src);
    4299                 :             : 
    4300                 :      168694 :       regs->safe_push (dest);
    4301                 :             :     }
    4302                 :             : 
    4303                 :             :   return true;
    4304                 :             : }
    4305                 :             : 
    4306                 :             : /* Find local swap-style idioms in BB and mark the first insn (1)
    4307                 :             :    that is only a temporary as not needing a conditional move as
    4308                 :             :    it is going to be dead afterwards anyway.
    4309                 :             : 
    4310                 :             :      (1) int tmp = a;
    4311                 :             :          a = b;
    4312                 :             :          b = tmp;
    4313                 :             : 
    4314                 :             :          ifcvt
    4315                 :             :          -->
    4316                 :             : 
    4317                 :             :          tmp = a;
    4318                 :             :          a = cond ? b : a_old;
    4319                 :             :          b = cond ? tmp : b_old;
    4320                 :             : 
    4321                 :             :     Additionally, store the index of insns like (2) when a subsequent
    4322                 :             :     SET reads from their destination.
    4323                 :             : 
    4324                 :             :     (2) int c = a;
    4325                 :             :         int d = c;
    4326                 :             : 
    4327                 :             :         ifcvt
    4328                 :             :         -->
    4329                 :             : 
    4330                 :             :         c = cond ? a : c_old;
    4331                 :             :         d = cond ? d : c;     // Need to use c rather than c_old here.
    4332                 :             : */
    4333                 :             : 
    4334                 :             : static void
    4335                 :       11257 : need_cmov_or_rewire (basic_block bb,
    4336                 :             :                      hash_set<rtx_insn *> *need_no_cmov,
    4337                 :             :                      hash_map<rtx_insn *, int> *rewired_src)
    4338                 :             : {
    4339                 :       11257 :   rtx_insn *insn;
    4340                 :       11257 :   int count = 0;
    4341                 :       11257 :   auto_vec<rtx_insn *> insns;
    4342                 :       11257 :   auto_vec<rtx> dests;
    4343                 :             : 
    4344                 :             :   /* Iterate over all SETs, storing the destinations
    4345                 :             :      in DEST.
    4346                 :             :      - If we hit a SET that reads from a destination
    4347                 :             :        that we have seen before and the corresponding register
    4348                 :             :        is dead afterwards, the register does not need to be
    4349                 :             :        moved conditionally.
    4350                 :             :      - If we encounter a previously changed register,
    4351                 :             :        rewire the read to the original source.  */
    4352                 :       56448 :   FOR_BB_INSNS (bb, insn)
    4353                 :             :     {
    4354                 :       45191 :       rtx set, src, dest;
    4355                 :             : 
    4356                 :       45191 :       if (!active_insn_p (insn))
    4357                 :       20247 :         continue;
    4358                 :             : 
    4359                 :       24944 :       set = single_set (insn);
    4360                 :       24944 :       if (set == NULL_RTX)
    4361                 :           0 :         continue;
    4362                 :             : 
    4363                 :       24944 :       src = SET_SRC (set);
    4364                 :       24944 :       if (SUBREG_P (src))
    4365                 :         687 :         src = SUBREG_REG (src);
    4366                 :       24944 :       dest = SET_DEST (set);
    4367                 :             : 
    4368                 :             :       /* Check if the current SET's source is the same
    4369                 :             :          as any previously seen destination.
    4370                 :             :          This is quadratic but the number of insns in BB
    4371                 :             :          is bounded by PARAM_MAX_RTL_IF_CONVERSION_INSNS.  */
    4372                 :       24944 :       if (REG_P (src))
    4373                 :       30873 :         for (int i = count - 1; i >= 0; --i)
    4374                 :       13038 :           if (reg_overlap_mentioned_p (src, dests[i]))
    4375                 :             :             {
    4376                 :        1237 :               if (find_reg_note (insn, REG_DEAD, src) != NULL_RTX)
    4377                 :        1192 :                 need_no_cmov->add (insns[i]);
    4378                 :             :               else
    4379                 :          45 :                 rewired_src->put (insn, i);
    4380                 :             :             }
    4381                 :             : 
    4382                 :       24944 :       insns.safe_push (insn);
    4383                 :       24944 :       dests.safe_push (dest);
    4384                 :             : 
    4385                 :       24944 :       count++;
    4386                 :             :     }
    4387                 :       11257 : }
    4388                 :             : 
    4389                 :             : /* Given a basic block BB suitable for conditional move conversion,
    4390                 :             :    a condition COND, and pointer maps THEN_VALS and ELSE_VALS containing
    4391                 :             :    the register values depending on COND, emit the insns in the block as
    4392                 :             :    conditional moves.  If ELSE_BLOCK is true, THEN_BB was already
    4393                 :             :    processed.  The caller has started a sequence for the conversion.
    4394                 :             :    Return true if successful, false if something goes wrong.  */
    4395                 :             : 
    4396                 :             : static bool
    4397                 :       70741 : cond_move_convert_if_block (struct noce_if_info *if_infop,
    4398                 :             :                             basic_block bb, rtx cond,
    4399                 :             :                             hash_map<rtx, rtx> *then_vals,
    4400                 :             :                             hash_map<rtx, rtx> *else_vals,
    4401                 :             :                             bool else_block_p)
    4402                 :             : {
    4403                 :       70741 :   enum rtx_code code;
    4404                 :       70741 :   rtx_insn *insn;
    4405                 :       70741 :   rtx cond_arg0, cond_arg1;
    4406                 :             : 
    4407                 :       70741 :   code = GET_CODE (cond);
    4408                 :       70741 :   cond_arg0 = XEXP (cond, 0);
    4409                 :       70741 :   cond_arg1 = XEXP (cond, 1);
    4410                 :             : 
    4411                 :      275548 :   FOR_BB_INSNS (bb, insn)
    4412                 :             :     {
    4413                 :      218153 :       rtx set, target, dest, t, e;
    4414                 :             : 
    4415                 :             :       /* ??? Maybe emit conditional debug insn?  */
    4416                 :      218153 :       if (!NONDEBUG_INSN_P (insn) || JUMP_P (insn))
    4417                 :      144216 :         continue;
    4418                 :      106241 :       set = single_set (insn);
    4419                 :      106241 :       gcc_assert (set && REG_P (SET_DEST (set)));
    4420                 :             : 
    4421                 :      106241 :       dest = SET_DEST (set);
    4422                 :             : 
    4423                 :      106241 :       rtx *then_slot = then_vals->get (dest);
    4424                 :      106241 :       rtx *else_slot = else_vals->get (dest);
    4425                 :      106241 :       t = then_slot ? *then_slot : NULL_RTX;
    4426                 :      106241 :       e = else_slot ? *else_slot : NULL_RTX;
    4427                 :             : 
    4428                 :      106241 :       if (else_block_p)
    4429                 :             :         {
    4430                 :             :           /* If this register was set in the then block, we already
    4431                 :             :              handled this case there.  */
    4432                 :       36417 :           if (t)
    4433                 :       32304 :             continue;
    4434                 :        4113 :           t = dest;
    4435                 :        4113 :           gcc_assert (e);
    4436                 :             :         }
    4437                 :             :       else
    4438                 :             :         {
    4439                 :       69824 :           gcc_assert (t);
    4440                 :       69824 :           if (!e)
    4441                 :       37044 :             e = dest;
    4442                 :             :         }
    4443                 :             : 
    4444                 :       73937 :       if (if_infop->cond_inverted)
    4445                 :           0 :         std::swap (t, e);
    4446                 :             : 
    4447                 :       73937 :       target = noce_emit_cmove (if_infop, dest, code, cond_arg0, cond_arg1,
    4448                 :             :                                 t, e);
    4449                 :       73937 :       if (!target)
    4450                 :       13346 :         return false;
    4451                 :             : 
    4452                 :       60591 :       if (target != dest)
    4453                 :           0 :         noce_emit_move_insn (dest, target);
    4454                 :             :     }
    4455                 :             : 
    4456                 :             :   return true;
    4457                 :             : }
    4458                 :             : 
    4459                 :             : /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
    4460                 :             :    it using only conditional moves.  Return TRUE if we were successful at
    4461                 :             :    converting the block.  */
    4462                 :             : 
    4463                 :             : static bool
    4464                 :     1689303 : cond_move_process_if_block (struct noce_if_info *if_info)
    4465                 :             : {
    4466                 :     1689303 :   basic_block test_bb = if_info->test_bb;
    4467                 :     1689303 :   basic_block then_bb = if_info->then_bb;
    4468                 :     1689303 :   basic_block else_bb = if_info->else_bb;
    4469                 :     1689303 :   basic_block join_bb = if_info->join_bb;
    4470                 :     1689303 :   rtx_insn *jump = if_info->jump;
    4471                 :     1689303 :   rtx cond = if_info->cond;
    4472                 :     1689303 :   rtx_insn *seq, *loc_insn;
    4473                 :     1689303 :   int c;
    4474                 :     1689303 :   vec<rtx> then_regs = vNULL;
    4475                 :     1689303 :   vec<rtx> else_regs = vNULL;
    4476                 :     1689303 :   bool success_p = false;
    4477                 :     1689303 :   int limit = param_max_rtl_if_conversion_insns;
    4478                 :             : 
    4479                 :             :   /* Build a mapping for each block to the value used for each
    4480                 :             :      register.  */
    4481                 :     1689303 :   hash_map<rtx, rtx> then_vals;
    4482                 :     1689303 :   hash_map<rtx, rtx> else_vals;
    4483                 :             : 
    4484                 :             :   /* Make sure the blocks are suitable.  */
    4485                 :     1689303 :   if (!check_cond_move_block (then_bb, &then_vals, &then_regs, cond)
    4486                 :     1689303 :       || (else_bb
    4487                 :       44104 :           && !check_cond_move_block (else_bb, &else_vals, &else_regs, cond)))
    4488                 :     1637250 :     goto done;
    4489                 :             : 
    4490                 :             :   /* Make sure the blocks can be used together.  If the same register
    4491                 :             :      is set in both blocks, and is not set to a constant in both
    4492                 :             :      cases, then both blocks must set it to the same register.  We
    4493                 :             :      have already verified that if it is set to a register, that the
    4494                 :             :      source register does not change after the assignment.  Also count
    4495                 :             :      the number of registers set in only one of the blocks.  */
    4496                 :       52053 :   c = 0;
    4497                 :      226578 :   for (rtx reg : then_regs)
    4498                 :             :     {
    4499                 :       72356 :       rtx *then_slot = then_vals.get (reg);
    4500                 :       72356 :       rtx *else_slot = else_vals.get (reg);
    4501                 :             : 
    4502                 :       72356 :       gcc_checking_assert (then_slot);
    4503                 :       72356 :       if (!else_slot)
    4504                 :       37658 :         ++c;
    4505                 :             :       else
    4506                 :             :         {
    4507                 :       34698 :           rtx then_val = *then_slot;
    4508                 :       34698 :           rtx else_val = *else_slot;
    4509                 :        3757 :           if (!CONSTANT_P (then_val) && !CONSTANT_P (else_val)
    4510                 :       36498 :               && !rtx_equal_p (then_val, else_val))
    4511                 :        1635 :             goto done;
    4512                 :             :         }
    4513                 :             :     }
    4514                 :             : 
    4515                 :             :   /* Finish off c for MAX_CONDITIONAL_EXECUTE.  */
    4516                 :      129634 :   for (rtx reg : else_regs)
    4517                 :             :     {
    4518                 :       37344 :       gcc_checking_assert (else_vals.get (reg));
    4519                 :       37344 :       if (!then_vals.get (reg))
    4520                 :        4300 :         ++c;
    4521                 :             :     }
    4522                 :             : 
    4523                 :             :   /* Make sure it is reasonable to convert this block.  What matters
    4524                 :             :      is the number of assignments currently made in only one of the
    4525                 :             :      branches, since if we convert we are going to always execute
    4526                 :             :      them.  */
    4527                 :       50418 :   if (c > MAX_CONDITIONAL_EXECUTE
    4528                 :       50418 :       || c > limit)
    4529                 :          35 :     goto done;
    4530                 :             : 
    4531                 :             :   /* Try to emit the conditional moves.  First do the then block,
    4532                 :             :      then do anything left in the else blocks.  */
    4533                 :       50383 :   start_sequence ();
    4534                 :       50383 :   if (!cond_move_convert_if_block (if_info, then_bb, cond,
    4535                 :             :                                    &then_vals, &else_vals, false)
    4536                 :       50383 :       || (else_bb
    4537                 :       20358 :           && !cond_move_convert_if_block (if_info, else_bb, cond,
    4538                 :             :                                           &then_vals, &else_vals, true)))
    4539                 :             :     {
    4540                 :       13346 :       end_sequence ();
    4541                 :       13346 :       goto done;
    4542                 :             :     }
    4543                 :       37037 :   seq = end_ifcvt_sequence (if_info);
    4544                 :       37037 :   if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
    4545                 :       35316 :     goto done;
    4546                 :             : 
    4547                 :        1721 :   loc_insn = first_active_insn (then_bb);
    4548                 :        1721 :   if (!loc_insn)
    4549                 :             :     {
    4550                 :           0 :       loc_insn = first_active_insn (else_bb);
    4551                 :           0 :       gcc_assert (loc_insn);
    4552                 :             :     }
    4553                 :        1721 :   emit_insn_before_setloc (seq, jump, INSN_LOCATION (loc_insn));
    4554                 :             : 
    4555                 :        1721 :   if (else_bb)
    4556                 :             :     {
    4557                 :        1721 :       delete_basic_block (else_bb);
    4558                 :        1721 :       num_true_changes++;
    4559                 :             :     }
    4560                 :             :   else
    4561                 :           0 :     remove_edge (find_edge (test_bb, join_bb));
    4562                 :             : 
    4563                 :        1721 :   remove_edge (find_edge (then_bb, join_bb));
    4564                 :        1721 :   redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
    4565                 :        1721 :   delete_basic_block (then_bb);
    4566                 :        1721 :   num_true_changes++;
    4567                 :             : 
    4568                 :        1721 :   if (can_merge_blocks_p (test_bb, join_bb))
    4569                 :             :     {
    4570                 :         303 :       merge_blocks (test_bb, join_bb);
    4571                 :         303 :       num_true_changes++;
    4572                 :             :     }
    4573                 :             : 
    4574                 :        1721 :   num_updated_if_blocks++;
    4575                 :        1721 :   success_p = true;
    4576                 :             : 
    4577                 :     1689303 : done:
    4578                 :     1689303 :   then_regs.release ();
    4579                 :     1689303 :   else_regs.release ();
    4580                 :     1689303 :   return success_p;
    4581                 :     1689303 : }
    4582                 :             : 
    4583                 :             : 
    4584                 :             : /* Determine if a given basic block heads a simple IF-THEN-JOIN or an
    4585                 :             :    IF-THEN-ELSE-JOIN block.
    4586                 :             : 
    4587                 :             :    If so, we'll try to convert the insns to not require the branch,
    4588                 :             :    using only transformations that do not require conditional execution.
    4589                 :             : 
    4590                 :             :    Return TRUE if we were successful at converting the block.  */
    4591                 :             : 
    4592                 :             : static bool
    4593                 :     8750542 : noce_find_if_block (basic_block test_bb, edge then_edge, edge else_edge,
    4594                 :             :                     int pass)
    4595                 :             : {
    4596                 :     8750542 :   basic_block then_bb, else_bb, join_bb;
    4597                 :     8750542 :   bool then_else_reversed = false;
    4598                 :     8750542 :   rtx_insn *jump;
    4599                 :     8750542 :   rtx_insn *cond_earliest;
    4600                 :     8750542 :   struct noce_if_info if_info;
    4601                 :     8750542 :   bool speed_p = optimize_bb_for_speed_p (test_bb);
    4602                 :             : 
    4603                 :             :   /* We only ever should get here before reload.  */
    4604                 :     8750542 :   gcc_assert (!reload_completed);
    4605                 :             : 
    4606                 :             :   /* Recognize an IF-THEN-ELSE-JOIN block.  */
    4607                 :     8750542 :   if (single_pred_p (then_edge->dest)
    4608                 :     7131611 :       && single_succ_p (then_edge->dest)
    4609                 :     3087958 :       && single_pred_p (else_edge->dest)
    4610                 :     9004352 :       && single_succ_p (else_edge->dest)
    4611                 :     9789856 :       && single_succ (then_edge->dest) == single_succ (else_edge->dest))
    4612                 :             :     {
    4613                 :             :       then_bb = then_edge->dest;
    4614                 :             :       else_bb = else_edge->dest;
    4615                 :             :       join_bb = single_succ (then_bb);
    4616                 :             :     }
    4617                 :             :   /* Recognize an IF-THEN-JOIN block.  */
    4618                 :     7965038 :   else if (single_pred_p (then_edge->dest)
    4619                 :     9343090 :            && single_succ_p (then_edge->dest)
    4620                 :    10267492 :            && single_succ (then_edge->dest) == else_edge->dest)
    4621                 :             :     {
    4622                 :             :       then_bb = then_edge->dest;
    4623                 :             :       else_bb = NULL_BLOCK;
    4624                 :             :       join_bb = else_edge->dest;
    4625                 :             :     }
    4626                 :             :   /* Recognize an IF-ELSE-JOIN block.  We can have those because the order
    4627                 :             :      of basic blocks in cfglayout mode does not matter, so the fallthrough
    4628                 :             :      edge can go to any basic block (and not just to bb->next_bb, like in
    4629                 :             :      cfgrtl mode).  */
    4630                 :    15699397 :   else if (single_pred_p (else_edge->dest)
    4631                 :    10033436 :            && single_succ_p (else_edge->dest)
    4632                 :     8415311 :            && single_succ (else_edge->dest) == then_edge->dest)
    4633                 :             :     {
    4634                 :             :       /* The noce transformations do not apply to IF-ELSE-JOIN blocks.
    4635                 :             :          To make this work, we have to invert the THEN and ELSE blocks
    4636                 :             :          and reverse the jump condition.  */
    4637                 :             :       then_bb = else_edge->dest;
    4638                 :             :       else_bb = NULL_BLOCK;
    4639                 :             :       join_bb = single_succ (then_bb);
    4640                 :             :       then_else_reversed = true;
    4641                 :             :     }
    4642                 :             :   else
    4643                 :             :     /* Not a form we can handle.  */
    4644                 :             :     return false;
    4645                 :             : 
    4646                 :             :   /* The edges of the THEN and ELSE blocks cannot have complex edges.  */
    4647                 :     1824132 :   if (single_succ_edge (then_bb)->flags & EDGE_COMPLEX)
    4648                 :             :     return false;
    4649                 :     1780394 :   if (else_bb
    4650                 :     1780394 :       && single_succ_edge (else_bb)->flags & EDGE_COMPLEX)
    4651                 :             :     return false;
    4652                 :             : 
    4653                 :     1779586 :   num_possible_if_blocks++;
    4654                 :             : 
    4655                 :     1779586 :   if (dump_file)
    4656                 :             :     {
    4657                 :          90 :       fprintf (dump_file,
    4658                 :             :                "\nIF-THEN%s-JOIN block found, pass %d, test %d, then %d",
    4659                 :             :                (else_bb) ? "-ELSE" : "",
    4660                 :             :                pass, test_bb->index, then_bb->index);
    4661                 :             : 
    4662                 :          53 :       if (else_bb)
    4663                 :          16 :         fprintf (dump_file, ", else %d", else_bb->index);
    4664                 :             : 
    4665                 :          53 :       fprintf (dump_file, ", join %d\n", join_bb->index);
    4666                 :             :     }
    4667                 :             : 
    4668                 :             :   /* If the conditional jump is more than just a conditional
    4669                 :             :      jump, then we cannot do if-conversion on this block.  */
    4670                 :     1779586 :   jump = BB_END (test_bb);
    4671                 :     1779586 :   if (! onlyjump_p (jump))
    4672                 :             :     return false;
    4673                 :             : 
    4674                 :             :   /* Initialize an IF_INFO struct to pass around.  */
    4675                 :     1779363 :   memset (&if_info, 0, sizeof if_info);
    4676                 :     1779363 :   if_info.test_bb = test_bb;
    4677                 :     1779363 :   if_info.then_bb = then_bb;
    4678                 :     1779363 :   if_info.else_bb = else_bb;
    4679                 :     1779363 :   if_info.join_bb = join_bb;
    4680                 :     1779363 :   if_info.cond = noce_get_condition (jump, &cond_earliest,
    4681                 :             :                                      then_else_reversed);
    4682                 :     1779363 :   rtx_insn *rev_cond_earliest;
    4683                 :     3558726 :   if_info.rev_cond = noce_get_condition (jump, &rev_cond_earliest,
    4684                 :     1779363 :                                          !then_else_reversed);
    4685                 :     1779363 :   if (!if_info.cond && !if_info.rev_cond)
    4686                 :             :     return false;
    4687                 :     1779363 :   if (!if_info.cond)
    4688                 :             :     {
    4689                 :           0 :       std::swap (if_info.cond, if_info.rev_cond);
    4690                 :           0 :       std::swap (cond_earliest, rev_cond_earliest);
    4691                 :           0 :       if_info.cond_inverted = true;
    4692                 :             :     }
    4693                 :             :   /* We must be comparing objects whose modes imply the size.  */
    4694                 :     1779363 :   if (GET_MODE (XEXP (if_info.cond, 0)) == BLKmode)
    4695                 :             :     return false;
    4696                 :     1779363 :   gcc_assert (if_info.rev_cond == NULL_RTX
    4697                 :             :               || rev_cond_earliest == cond_earliest);
    4698                 :     1779363 :   if_info.cond_earliest = cond_earliest;
    4699                 :     1779363 :   if_info.jump = jump;
    4700                 :     1779363 :   if_info.then_else_reversed = then_else_reversed;
    4701                 :     1779363 :   if_info.speed_p = speed_p;
    4702                 :     1779363 :   if_info.max_seq_cost
    4703                 :     1779363 :     = targetm.max_noce_ifcvt_seq_cost (then_edge);
    4704                 :             :   /* We'll add in the cost of THEN_BB and ELSE_BB later, when we check
    4705                 :             :      that they are valid to transform.  We can't easily get back to the insn
    4706                 :             :      for COND (and it may not exist if we had to canonicalize to get COND),
    4707                 :             :      and jump_insns are always given a cost of 1 by seq_cost, so treat
    4708                 :             :      both instructions as having cost COSTS_N_INSNS (1).  */
    4709                 :     1779363 :   if_info.original_cost = COSTS_N_INSNS (2);
    4710                 :             : 
    4711                 :             : 
    4712                 :             :   /* Do the real work.  */
    4713                 :             : 
    4714                 :             :   /* ??? noce_process_if_block has not yet been updated to handle
    4715                 :             :      inverted conditions.  */
    4716                 :     1779363 :   if (!if_info.cond_inverted && noce_process_if_block (&if_info))
    4717                 :             :     return true;
    4718                 :             : 
    4719                 :     1689303 :   if (HAVE_conditional_move
    4720                 :     1689303 :       && cond_move_process_if_block (&if_info))
    4721                 :             :     return true;
    4722                 :             : 
    4723                 :             :   return false;
    4724                 :             : }
    4725                 :             : 
    4726                 :             : 
    4727                 :             : /* Merge the blocks and mark for local life update.  */
    4728                 :             : 
    4729                 :             : static void
    4730                 :           0 : merge_if_block (struct ce_if_block * ce_info)
    4731                 :             : {
    4732                 :           0 :   basic_block test_bb = ce_info->test_bb;    /* last test block */
    4733                 :           0 :   basic_block then_bb = ce_info->then_bb;    /* THEN */
    4734                 :           0 :   basic_block else_bb = ce_info->else_bb;    /* ELSE or NULL */
    4735                 :           0 :   basic_block join_bb = ce_info->join_bb;    /* join block */
    4736                 :           0 :   basic_block combo_bb;
    4737                 :             : 
    4738                 :             :   /* All block merging is done into the lower block numbers.  */
    4739                 :             : 
    4740                 :           0 :   combo_bb = test_bb;
    4741                 :           0 :   df_set_bb_dirty (test_bb);
    4742                 :             : 
    4743                 :             :   /* Merge any basic blocks to handle && and || subtests.  Each of
    4744                 :             :      the blocks are on the fallthru path from the predecessor block.  */
    4745                 :           0 :   if (ce_info->num_multiple_test_blocks > 0)
    4746                 :             :     {
    4747                 :           0 :       basic_block bb = test_bb;
    4748                 :           0 :       basic_block last_test_bb = ce_info->last_test_bb;
    4749                 :           0 :       basic_block fallthru = block_fallthru (bb);
    4750                 :             : 
    4751                 :           0 :       do
    4752                 :             :         {
    4753                 :           0 :           bb = fallthru;
    4754                 :           0 :           fallthru = block_fallthru (bb);
    4755                 :           0 :           merge_blocks (combo_bb, bb);
    4756                 :           0 :           num_true_changes++;
    4757                 :             :         }
    4758                 :           0 :       while (bb != last_test_bb);
    4759                 :             :     }
    4760                 :             : 
    4761                 :             :   /* Merge TEST block into THEN block.  Normally the THEN block won't have a
    4762                 :             :      label, but it might if there were || tests.  That label's count should be
    4763                 :             :      zero, and it normally should be removed.  */
    4764                 :             : 
    4765                 :           0 :   if (then_bb)
    4766                 :             :     {
    4767                 :             :       /* If THEN_BB has no successors, then there's a BARRIER after it.
    4768                 :             :          If COMBO_BB has more than one successor (THEN_BB), then that BARRIER
    4769                 :             :          is no longer needed, and in fact it is incorrect to leave it in
    4770                 :             :          the insn stream.  */
    4771                 :           0 :       if (EDGE_COUNT (then_bb->succs) == 0
    4772                 :           0 :           && EDGE_COUNT (combo_bb->succs) > 1)
    4773                 :             :         {
    4774                 :           0 :           rtx_insn *end = NEXT_INSN (BB_END (then_bb));
    4775                 :           0 :           while (end && NOTE_P (end) && !NOTE_INSN_BASIC_BLOCK_P (end))
    4776                 :           0 :             end = NEXT_INSN (end);
    4777                 :             : 
    4778                 :           0 :           if (end && BARRIER_P (end))
    4779                 :           0 :             delete_insn (end);
    4780                 :             :         }
    4781                 :           0 :       merge_blocks (combo_bb, then_bb);
    4782                 :           0 :       num_true_changes++;
    4783                 :             :     }
    4784                 :             : 
    4785                 :             :   /* The ELSE block, if it existed, had a label.  That label count
    4786                 :             :      will almost always be zero, but odd things can happen when labels
    4787                 :             :      get their addresses taken.  */
    4788                 :           0 :   if (else_bb)
    4789                 :             :     {
    4790                 :             :       /* If ELSE_BB has no successors, then there's a BARRIER after it.
    4791                 :             :          If COMBO_BB has more than one successor (ELSE_BB), then that BARRIER
    4792                 :             :          is no longer needed, and in fact it is incorrect to leave it in
    4793                 :             :          the insn stream.  */
    4794                 :           0 :       if (EDGE_COUNT (else_bb->succs) == 0
    4795                 :           0 :           && EDGE_COUNT (combo_bb->succs) > 1)
    4796                 :             :         {
    4797                 :           0 :           rtx_insn *end = NEXT_INSN (BB_END (else_bb));
    4798                 :           0 :           while (end && NOTE_P (end) && !NOTE_INSN_BASIC_BLOCK_P (end))
    4799                 :           0 :             end = NEXT_INSN (end);
    4800                 :             : 
    4801                 :           0 :           if (end && BARRIER_P (end))
    4802                 :           0 :             delete_insn (end);
    4803                 :             :         }
    4804                 :           0 :       merge_blocks (combo_bb, else_bb);
    4805                 :           0 :       num_true_changes++;
    4806                 :             :     }
    4807                 :             : 
    4808                 :             :   /* If there was no join block reported, that means it was not adjacent
    4809                 :             :      to the others, and so we cannot merge them.  */
    4810                 :             : 
    4811                 :           0 :   if (! join_bb)
    4812                 :             :     {
    4813                 :           0 :       rtx_insn *last = BB_END (combo_bb);
    4814                 :             : 
    4815                 :             :       /* The outgoing edge for the current COMBO block should already
    4816                 :             :          be correct.  Verify this.  */
    4817                 :           0 :       if (EDGE_COUNT (combo_bb->succs) == 0)
    4818                 :           0 :         gcc_assert (find_reg_note (last, REG_NORETURN, NULL)
    4819                 :             :                     || (NONJUMP_INSN_P (last)
    4820                 :             :                         && GET_CODE (PATTERN (last)) == TRAP_IF
    4821                 :             :                         && (TRAP_CONDITION (PATTERN (last))
    4822                 :             :                             == const_true_rtx)));
    4823                 :             : 
    4824                 :             :       else
    4825                 :             :       /* There should still be something at the end of the THEN or ELSE
    4826                 :             :          blocks taking us to our final destination.  */
    4827                 :           0 :         gcc_assert (JUMP_P (last)
    4828                 :             :                     || (EDGE_SUCC (combo_bb, 0)->dest
    4829                 :             :                         == EXIT_BLOCK_PTR_FOR_FN (cfun)
    4830                 :             :                         && CALL_P (last)
    4831                 :             :                         && SIBLING_CALL_P (last))
    4832                 :             :                     || ((EDGE_SUCC (combo_bb, 0)->flags & EDGE_EH)
    4833                 :             :                         && can_throw_internal (last)));
    4834                 :             :     }
    4835                 :             : 
    4836                 :             :   /* The JOIN block may have had quite a number of other predecessors too.
    4837                 :             :      Since we've already merged the TEST, THEN and ELSE blocks, we should
    4838                 :             :      have only one remaining edge from our if-then-else diamond.  If there
    4839                 :             :      is more than one remaining edge, it must come from elsewhere.  There
    4840                 :             :      may be zero incoming edges if the THEN block didn't actually join
    4841                 :             :      back up (as with a call to a non-return function).  */
    4842                 :           0 :   else if (EDGE_COUNT (join_bb->preds) < 2
    4843                 :           0 :            && join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
    4844                 :             :     {
    4845                 :             :       /* We can merge the JOIN cleanly and update the dataflow try
    4846                 :             :          again on this pass.*/
    4847                 :           0 :       merge_blocks (combo_bb, join_bb);
    4848                 :           0 :       num_true_changes++;
    4849                 :             :     }
    4850                 :             :   else
    4851                 :             :     {
    4852                 :             :       /* We cannot merge the JOIN.  */
    4853                 :             : 
    4854                 :             :       /* The outgoing edge for the current COMBO block should already
    4855                 :             :          be correct.  Verify this.  */
    4856                 :           0 :       gcc_assert (single_succ_p (combo_bb)
    4857                 :             :                   && single_succ (combo_bb) == join_bb);
    4858                 :             : 
    4859                 :             :       /* Remove the jump and cruft from the end of the COMBO block.  */
    4860                 :           0 :       if (join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
    4861                 :           0 :         tidy_fallthru_edge (single_succ_edge (combo_bb));
    4862                 :             :     }
    4863                 :             : 
    4864                 :           0 :   num_updated_if_blocks++;
    4865                 :           0 : }
    4866                 :             : 
    4867                 :             : /* Find a block ending in a simple IF condition and try to transform it
    4868                 :             :    in some way.  When converting a multi-block condition, put the new code
    4869                 :             :    in the first such block and delete the rest.  Return a pointer to this
    4870                 :             :    first block if some transformation was done.  Return NULL otherwise.  */
    4871                 :             : 
    4872                 :             : static basic_block
    4873                 :    35493094 : find_if_header (basic_block test_bb, int pass)
    4874                 :             : {
    4875                 :    35493094 :   ce_if_block ce_info;
    4876                 :    35493094 :   edge then_edge;
    4877                 :    35493094 :   edge else_edge;
    4878                 :             : 
    4879                 :             :   /* The kind of block we're looking for has exactly two successors.  */
    4880                 :    53419566 :   if (EDGE_COUNT (test_bb->succs) != 2)
    4881                 :             :     return NULL;
    4882                 :             : 
    4883                 :    18219570 :   then_edge = EDGE_SUCC (test_bb, 0);
    4884                 :    18219570 :   else_edge = EDGE_SUCC (test_bb, 1);
    4885                 :             : 
    4886                 :    18219570 :   if (df_get_bb_dirty (then_edge->dest))
    4887                 :             :     return NULL;
    4888                 :    18202210 :   if (df_get_bb_dirty (else_edge->dest))
    4889                 :             :     return NULL;
    4890                 :             : 
    4891                 :             :   /* Neither edge should be abnormal.  */
    4892                 :    18151467 :   if ((then_edge->flags & EDGE_COMPLEX)
    4893                 :    16502624 :       || (else_edge->flags & EDGE_COMPLEX))
    4894                 :             :     return NULL;
    4895                 :             : 
    4896                 :             :   /* Nor exit the loop.  */
    4897                 :    16039728 :   if ((then_edge->flags & EDGE_LOOP_EXIT)
    4898                 :    14777182 :       || (else_edge->flags & EDGE_LOOP_EXIT))
    4899                 :             :     return NULL;
    4900                 :             : 
    4901                 :             :   /* The THEN edge is canonically the one that falls through.  */
    4902                 :    12881032 :   if (then_edge->flags & EDGE_FALLTHRU)
    4903                 :             :     ;
    4904                 :     6375943 :   else if (else_edge->flags & EDGE_FALLTHRU)
    4905                 :             :     std::swap (then_edge, else_edge);
    4906                 :             :   else
    4907                 :             :     /* Otherwise this must be a multiway branch of some sort.  */
    4908                 :             :     return NULL;
    4909                 :             : 
    4910                 :    12880842 :   memset (&ce_info, 0, sizeof (ce_info));
    4911                 :    12880842 :   ce_info.test_bb = test_bb;
    4912                 :    12880842 :   ce_info.then_bb = then_edge->dest;
    4913                 :    12880842 :   ce_info.else_bb = else_edge->dest;
    4914                 :    12880842 :   ce_info.pass = pass;
    4915                 :             : 
    4916                 :             : #ifdef IFCVT_MACHDEP_INIT
    4917                 :             :   IFCVT_MACHDEP_INIT (&ce_info);
    4918                 :             : #endif
    4919                 :             : 
    4920                 :    12880842 :   if (!reload_completed
    4921                 :    12880842 :       && noce_find_if_block (test_bb, then_edge, else_edge, pass))
    4922                 :       91781 :     goto success;
    4923                 :             : 
    4924                 :    12789061 :   if (reload_completed
    4925                 :     4130300 :       && targetm.have_conditional_execution ()
    4926                 :    12789061 :       && cond_exec_find_if_block (&ce_info))
    4927                 :           0 :     goto success;
    4928                 :             : 
    4929                 :    12789061 :   if (targetm.have_trap ()
    4930                 :    12789061 :       && optab_handler (ctrap_optab, word_mode) != CODE_FOR_nothing
    4931                 :    12789061 :       && find_cond_trap (test_bb, then_edge, else_edge))
    4932                 :           0 :     goto success;
    4933                 :             : 
    4934                 :    12789061 :   if (dom_info_state (CDI_POST_DOMINATORS) >= DOM_NO_FAST_QUERY
    4935                 :    12789061 :       && (reload_completed || !targetm.have_conditional_execution ()))
    4936                 :             :     {
    4937                 :    12789061 :       if (find_if_case_1 (test_bb, then_edge, else_edge))
    4938                 :       14774 :         goto success;
    4939                 :    12774287 :       if (find_if_case_2 (test_bb, then_edge, else_edge))
    4940                 :      186543 :         goto success;
    4941                 :             :     }
    4942                 :             : 
    4943                 :             :   return NULL;
    4944                 :             : 
    4945                 :      293098 :  success:
    4946                 :      293098 :   if (dump_file)
    4947                 :          17 :     fprintf (dump_file, "Conversion succeeded on pass %d.\n", pass);
    4948                 :             :   /* Set this so we continue looking.  */
    4949                 :      293098 :   cond_exec_changed_p = true;
    4950                 :      293098 :   return ce_info.test_bb;
    4951                 :             : }
    4952                 :             : 
    4953                 :             : /* Return true if a block has two edges, one of which falls through to the next
    4954                 :             :    block, and the other jumps to a specific block, so that we can tell if the
    4955                 :             :    block is part of an && test or an || test.  Returns either -1 or the number
    4956                 :             :    of non-note, non-jump, non-USE/CLOBBER insns in the block.  */
    4957                 :             : 
    4958                 :             : static int
    4959                 :           0 : block_jumps_and_fallthru (basic_block cur_bb, basic_block target_bb)
    4960                 :             : {
    4961                 :           0 :   edge cur_edge;
    4962                 :           0 :   bool fallthru_p = false;
    4963                 :           0 :   bool jump_p = false;
    4964                 :           0 :   rtx_insn *insn;
    4965                 :           0 :   rtx_insn *end;
    4966                 :           0 :   int n_insns = 0;
    4967                 :           0 :   edge_iterator ei;
    4968                 :             : 
    4969                 :           0 :   if (!cur_bb || !target_bb)
    4970                 :             :     return -1;
    4971                 :             : 
    4972                 :             :   /* If no edges, obviously it doesn't jump or fallthru.  */
    4973                 :           0 :   if (EDGE_COUNT (cur_bb->succs) == 0)
    4974                 :             :     return 0;
    4975                 :             : 
    4976                 :           0 :   FOR_EACH_EDGE (cur_edge, ei, cur_bb->succs)
    4977                 :             :     {
    4978                 :           0 :       if (cur_edge->flags & EDGE_COMPLEX)
    4979                 :             :         /* Anything complex isn't what we want.  */
    4980                 :             :         return -1;
    4981                 :             : 
    4982                 :           0 :       else if (cur_edge->flags & EDGE_FALLTHRU)
    4983                 :             :         fallthru_p = true;
    4984                 :             : 
    4985                 :           0 :       else if (cur_edge->dest == target_bb)
    4986                 :             :         jump_p = true;
    4987                 :             : 
    4988                 :             :       else
    4989                 :             :         return -1;
    4990                 :             :     }
    4991                 :             : 
    4992                 :           0 :   if ((jump_p & fallthru_p) == 0)
    4993                 :             :     return -1;
    4994                 :             : 
    4995                 :             :   /* Don't allow calls in the block, since this is used to group && and ||
    4996                 :             :      together for conditional execution support.  ??? we should support
    4997                 :             :      conditional execution support across calls for IA-64 some day, but
    4998                 :             :      for now it makes the code simpler.  */
    4999                 :           0 :   end = BB_END (cur_bb);
    5000                 :           0 :   insn = BB_HEAD (cur_bb);
    5001                 :             : 
    5002                 :           0 :   while (insn != NULL_RTX)
    5003                 :             :     {
    5004                 :           0 :       if (CALL_P (insn))
    5005                 :             :         return -1;
    5006                 :             : 
    5007                 :           0 :       if (INSN_P (insn)
    5008                 :           0 :           && !JUMP_P (insn)
    5009                 :           0 :           && !DEBUG_INSN_P (insn)
    5010                 :           0 :           && GET_CODE (PATTERN (insn)) != USE
    5011                 :           0 :           && GET_CODE (PATTERN (insn)) != CLOBBER)
    5012                 :           0 :         n_insns++;
    5013                 :             : 
    5014                 :           0 :       if (insn == end)
    5015                 :             :         break;
    5016                 :             : 
    5017                 :           0 :       insn = NEXT_INSN (insn);
    5018                 :             :     }
    5019                 :             : 
    5020                 :             :   return n_insns;
    5021                 :             : }
    5022                 :             : 
    5023                 :             : /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
    5024                 :             :    block.  If so, we'll try to convert the insns to not require the branch.
    5025                 :             :    Return TRUE if we were successful at converting the block.  */
    5026                 :             : 
    5027                 :             : static bool
    5028                 :           0 : cond_exec_find_if_block (struct ce_if_block * ce_info)
    5029                 :             : {
    5030                 :           0 :   basic_block test_bb = ce_info->test_bb;
    5031                 :           0 :   basic_block then_bb = ce_info->then_bb;
    5032                 :           0 :   basic_block else_bb = ce_info->else_bb;
    5033                 :           0 :   basic_block join_bb = NULL_BLOCK;
    5034                 :           0 :   edge cur_edge;
    5035                 :           0 :   basic_block next;
    5036                 :           0 :   edge_iterator ei;
    5037                 :             : 
    5038                 :           0 :   ce_info->last_test_bb = test_bb;
    5039                 :             : 
    5040                 :             :   /* We only ever should get here after reload,
    5041                 :             :      and if we have conditional execution.  */
    5042                 :           0 :   gcc_assert (reload_completed && targetm.have_conditional_execution ());
    5043                 :             : 
    5044                 :             :   /* Discover if any fall through predecessors of the current test basic block
    5045                 :             :      were && tests (which jump to the else block) or || tests (which jump to
    5046                 :             :      the then block).  */
    5047                 :           0 :   if (single_pred_p (test_bb)
    5048                 :           0 :       && single_pred_edge (test_bb)->flags == EDGE_FALLTHRU)
    5049                 :             :     {
    5050                 :           0 :       basic_block bb = single_pred (test_bb);
    5051                 :           0 :       basic_block target_bb;
    5052                 :           0 :       int max_insns = MAX_CONDITIONAL_EXECUTE;
    5053                 :           0 :       int n_insns;
    5054                 :             : 
    5055                 :             :       /* Determine if the preceding block is an && or || block.  */
    5056                 :           0 :       if ((n_insns = block_jumps_and_fallthru (bb, else_bb)) >= 0)
    5057                 :             :         {
    5058                 :           0 :           ce_info->and_and_p = true;
    5059                 :           0 :           target_bb = else_bb;
    5060                 :             :         }
    5061                 :           0 :       else if ((n_insns = block_jumps_and_fallthru (bb, then_bb)) >= 0)
    5062                 :             :         {
    5063                 :           0 :           ce_info->and_and_p = false;
    5064                 :           0 :           target_bb = then_bb;
    5065                 :             :         }
    5066                 :             :       else
    5067                 :             :         target_bb = NULL_BLOCK;
    5068                 :             : 
    5069                 :           0 :       if (target_bb && n_insns <= max_insns)
    5070                 :             :         {
    5071                 :           0 :           int total_insns = 0;
    5072                 :           0 :           int blocks = 0;
    5073                 :             : 
    5074                 :           0 :           ce_info->last_test_bb = test_bb;
    5075                 :             : 
    5076                 :             :           /* Found at least one && or || block, look for more.  */
    5077                 :           0 :           do
    5078                 :             :             {
    5079                 :           0 :               ce_info->test_bb = test_bb = bb;
    5080                 :           0 :               total_insns += n_insns;
    5081                 :           0 :               blocks++;
    5082                 :             : 
    5083                 :           0 :               if (!single_pred_p (bb))
    5084                 :             :                 break;
    5085                 :             : 
    5086                 :           0 :               bb = single_pred (bb);
    5087                 :           0 :               n_insns = block_jumps_and_fallthru (bb, target_bb);
    5088                 :             :             }
    5089                 :           0 :           while (n_insns >= 0 && (total_insns + n_insns) <= max_insns);
    5090                 :             : 
    5091                 :           0 :           ce_info->num_multiple_test_blocks = blocks;
    5092                 :           0 :           ce_info->num_multiple_test_insns = total_insns;
    5093                 :             : 
    5094                 :           0 :           if (ce_info->and_and_p)
    5095                 :           0 :             ce_info->num_and_and_blocks = blocks;
    5096                 :             :           else
    5097                 :           0 :             ce_info->num_or_or_blocks = blocks;
    5098                 :             :         }
    5099                 :             :     }
    5100                 :             : 
    5101                 :             :   /* The THEN block of an IF-THEN combo must have exactly one predecessor,
    5102                 :             :      other than any || blocks which jump to the THEN block.  */
    5103                 :           0 :   if ((EDGE_COUNT (then_bb->preds) - ce_info->num_or_or_blocks) != 1)
    5104                 :             :     return false;
    5105                 :             : 
    5106                 :             :   /* The edges of the THEN and ELSE blocks cannot have complex edges.  */
    5107                 :           0 :   FOR_EACH_EDGE (cur_edge, ei, then_bb->preds)
    5108                 :             :     {
    5109                 :           0 :       if (cur_edge->flags & EDGE_COMPLEX)
    5110                 :             :         return false;
    5111                 :             :     }
    5112                 :             : 
    5113                 :           0 :   FOR_EACH_EDGE (cur_edge, ei, else_bb->preds)
    5114                 :             :     {
    5115                 :           0 :       if (cur_edge->flags & EDGE_COMPLEX)
    5116                 :             :         return false;
    5117                 :             :     }
    5118                 :             : 
    5119                 :             :   /* The THEN block of an IF-THEN combo must have zero or one successors.  */
    5120                 :           0 :   if (EDGE_COUNT (then_bb->succs) > 0
    5121                 :           0 :       && (!single_succ_p (then_bb)
    5122                 :           0 :           || (single_succ_edge (then_bb)->flags & EDGE_COMPLEX)
    5123                 :           0 :           || (epilogue_completed
    5124                 :           0 :               && tablejump_p (BB_END (then_bb), NULL, NULL))))
    5125                 :           0 :     return false;
    5126                 :             : 
    5127                 :             :   /* If the THEN block has no successors, conditional execution can still
    5128                 :             :      make a conditional call.  Don't do this unless the ELSE block has
    5129                 :             :      only one incoming edge -- the CFG manipulation is too ugly otherwise.
    5130                 :             :      Check for the last insn of the THEN block being an indirect jump, which
    5131                 :             :      is listed as not having any successors, but confuses the rest of the CE
    5132                 :             :      code processing.  ??? we should fix this in the future.  */
    5133                 :           0 :   if (EDGE_COUNT (then_bb->succs) == 0)
    5134                 :             :     {
    5135                 :           0 :       if (single_pred_p (else_bb) && else_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
    5136                 :             :         {
    5137                 :           0 :           rtx_insn *last_insn = BB_END (then_bb);
    5138                 :             : 
    5139                 :           0 :           while (last_insn
    5140                 :           0 :                  && NOTE_P (last_insn)
    5141                 :           0 :                  && last_insn != BB_HEAD (then_bb))
    5142                 :           0 :             last_insn = PREV_INSN (last_insn);
    5143                 :             : 
    5144                 :           0 :           if (last_insn
    5145                 :           0 :               && JUMP_P (last_insn)
    5146                 :           0 :               && ! simplejump_p (last_insn))
    5147                 :             :             return false;
    5148                 :             : 
    5149                 :             :           join_bb = else_bb;
    5150                 :             :           else_bb = NULL_BLOCK;
    5151                 :             :         }
    5152                 :             :       else
    5153                 :             :         return false;
    5154                 :             :     }
    5155                 :             : 
    5156                 :             :   /* If the THEN block's successor is the other edge out of the TEST block,
    5157                 :             :      then we have an IF-THEN combo without an ELSE.  */
    5158                 :           0 :   else if (single_succ (then_bb) == else_bb)
    5159                 :             :     {
    5160                 :             :       join_bb = else_bb;
    5161                 :             :       else_bb = NULL_BLOCK;
    5162                 :             :     }
    5163                 :             : 
    5164                 :             :   /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
    5165                 :             :      has exactly one predecessor and one successor, and the outgoing edge
    5166                 :             :      is not complex, then we have an IF-THEN-ELSE combo.  */
    5167                 :           0 :   else if (single_succ_p (else_bb)
    5168                 :           0 :            && single_succ (then_bb) == single_succ (else_bb)
    5169                 :           0 :            && single_pred_p (else_bb)
    5170                 :           0 :            && !(single_succ_edge (else_bb)->flags & EDGE_COMPLEX)
    5171                 :           0 :            && !(epilogue_completed
    5172                 :           0 :                 && tablejump_p (BB_END (else_bb), NULL, NULL)))
    5173                 :           0 :     join_bb = single_succ (else_bb);
    5174                 :             : 
    5175                 :             :   /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination.  */
    5176                 :             :   else
    5177                 :           0 :     return false;
    5178                 :             : 
    5179                 :           0 :   num_possible_if_blocks++;
    5180                 :             : 
    5181                 :           0 :   if (dump_file)
    5182                 :             :     {
    5183                 :           0 :       fprintf (dump_file,
    5184                 :             :                "\nIF-THEN%s block found, pass %d, start block %d "
    5185                 :             :                "[insn %d], then %d [%d]",
    5186                 :             :                (else_bb) ? "-ELSE" : "",
    5187                 :             :                ce_info->pass,
    5188                 :             :                test_bb->index,
    5189                 :           0 :                BB_HEAD (test_bb) ? (int)INSN_UID (BB_HEAD (test_bb)) : -1,
    5190                 :             :                then_bb->index,
    5191                 :           0 :                BB_HEAD (then_bb) ? (int)INSN_UID (BB_HEAD (then_bb)) : -1);
    5192                 :             : 
    5193                 :           0 :       if (else_bb)
    5194                 :           0 :         fprintf (dump_file, ", else %d [%d]",
    5195                 :             :                  else_bb->index,
    5196                 :           0 :                  BB_HEAD (else_bb) ? (int)INSN_UID (BB_HEAD (else_bb)) : -1);
    5197                 :             : 
    5198                 :           0 :       fprintf (dump_file, ", join %d [%d]",
    5199                 :             :                join_bb->index,
    5200                 :           0 :                BB_HEAD (join_bb) ? (int)INSN_UID (BB_HEAD (join_bb)) : -1);
    5201                 :             : 
    5202                 :           0 :       if (ce_info->num_multiple_test_blocks > 0)
    5203                 :           0 :         fprintf (dump_file, ", %d %s block%s last test %d [%d]",
    5204                 :             :                  ce_info->num_multiple_test_blocks,
    5205                 :           0 :                  (ce_info->and_and_p) ? "&&" : "||",
    5206                 :             :                  (ce_info->num_multiple_test_blocks == 1) ? "" : "s",
    5207                 :             :                  ce_info->last_test_bb->index,
    5208                 :           0 :                  ((BB_HEAD (ce_info->last_test_bb))
    5209                 :           0 :                   ? (int)INSN_UID (BB_HEAD (ce_info->last_test_bb))
    5210                 :             :                   : -1));
    5211                 :             : 
    5212                 :           0 :       fputc ('\n', dump_file);
    5213                 :             :     }
    5214                 :             : 
    5215                 :             :   /* Make sure IF, THEN, and ELSE, blocks are adjacent.  Actually, we get the
    5216                 :             :      first condition for free, since we've already asserted that there's a
    5217                 :             :      fallthru edge from IF to THEN.  Likewise for the && and || blocks, since
    5218                 :             :      we checked the FALLTHRU flag, those are already adjacent to the last IF
    5219                 :             :      block.  */
    5220                 :             :   /* ??? As an enhancement, move the ELSE block.  Have to deal with
    5221                 :             :      BLOCK notes, if by no other means than backing out the merge if they
    5222                 :             :      exist.  Sticky enough I don't want to think about it now.  */
    5223                 :           0 :   next = then_bb;
    5224                 :           0 :   if (else_bb && (next = next->next_bb) != else_bb)
    5225                 :             :     return false;
    5226                 :           0 :   if ((next = next->next_bb) != join_bb
    5227                 :           0 :       && join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
    5228                 :             :     {
    5229                 :           0 :       if (else_bb)
    5230                 :             :         join_bb = NULL;
    5231                 :             :       else
    5232                 :             :         return false;
    5233                 :             :     }
    5234                 :             : 
    5235                 :             :   /* Do the real work.  */
    5236                 :             : 
    5237                 :           0 :   ce_info->else_bb = else_bb;
    5238                 :           0 :   ce_info->join_bb = join_bb;
    5239                 :             : 
    5240                 :             :   /* If we have && and || tests, try to first handle combining the && and ||
    5241                 :             :      tests into the conditional code, and if that fails, go back and handle
    5242                 :             :      it without the && and ||, which at present handles the && case if there
    5243                 :             :      was no ELSE block.  */
    5244                 :           0 :   if (cond_exec_process_if_block (ce_info, true))
    5245                 :             :     return true;
    5246                 :             : 
    5247                 :           0 :   if (ce_info->num_multiple_test_blocks)
    5248                 :             :     {
    5249                 :           0 :       cancel_changes (0);
    5250                 :             : 
    5251                 :           0 :       if (cond_exec_process_if_block (ce_info, false))
    5252                 :             :         return true;
    5253                 :             :     }
    5254                 :             : 
    5255                 :             :   return false;
    5256                 :             : }
    5257                 :             : 
    5258                 :             : /* Convert a branch over a trap, or a branch
    5259                 :             :    to a trap, into a conditional trap.  */
    5260                 :             : 
    5261                 :             : static bool
    5262                 :           0 : find_cond_trap (basic_block test_bb, edge then_edge, edge else_edge)
    5263                 :             : {
    5264                 :           0 :   basic_block then_bb = then_edge->dest;
    5265                 :           0 :   basic_block else_bb = else_edge->dest;
    5266                 :           0 :   basic_block other_bb, trap_bb;
    5267                 :           0 :   rtx_insn *trap, *jump;
    5268                 :           0 :   rtx cond;
    5269                 :           0 :   rtx_insn *cond_earliest;
    5270                 :             : 
    5271                 :             :   /* Locate the block with the trap instruction.  */
    5272                 :             :   /* ??? While we look for no successors, we really ought to allow
    5273                 :             :      EH successors.  Need to fix merge_if_block for that to work.  */
    5274                 :           0 :   if ((trap = block_has_only_trap (then_bb)) != NULL)
    5275                 :             :     trap_bb = then_bb, other_bb = else_bb;
    5276                 :           0 :   else if ((trap = block_has_only_trap (else_bb)) != NULL)
    5277                 :             :     trap_bb = else_bb, other_bb = then_bb;
    5278                 :             :   else
    5279                 :             :     return false;
    5280                 :             : 
    5281                 :           0 :   if (dump_file)
    5282                 :             :     {
    5283                 :           0 :       fprintf (dump_file, "\nTRAP-IF block found, start %d, trap %d\n",
    5284                 :             :                test_bb->index, trap_bb->index);
    5285                 :             :     }
    5286                 :             : 
    5287                 :             :   /* If this is not a standard conditional jump, we can't parse it.  */
    5288                 :           0 :   jump = BB_END (test_bb);
    5289                 :           0 :   cond = noce_get_condition (jump, &cond_earliest, then_bb == trap_bb);
    5290                 :           0 :   if (! cond)
    5291                 :             :     return false;
    5292                 :             : 
    5293                 :             :   /* If the conditional jump is more than just a conditional jump, then
    5294                 :             :      we cannot do if-conversion on this block.  Give up for returnjump_p,
    5295                 :             :      changing a conditional return followed by unconditional trap for
    5296                 :             :      conditional trap followed by unconditional return is likely not
    5297                 :             :      beneficial and harder to handle.  */
    5298                 :           0 :   if (! onlyjump_p (jump) || returnjump_p (jump))
    5299                 :           0 :     return false;
    5300                 :             : 
    5301                 :             :   /* We must be comparing objects whose modes imply the size.  */
    5302                 :           0 :   if (GET_MODE (XEXP (cond, 0)) == BLKmode)
    5303                 :             :     return false;
    5304                 :             : 
    5305                 :             :   /* Attempt to generate the conditional trap.  */
    5306                 :           0 :   rtx_insn *seq = gen_cond_trap (GET_CODE (cond), copy_rtx (XEXP (cond, 0)),
    5307                 :             :                                  copy_rtx (XEXP (cond, 1)),
    5308                 :           0 :                                  TRAP_CODE (PATTERN (trap)));
    5309                 :           0 :   if (seq == NULL)
    5310                 :             :     return false;
    5311                 :             : 
    5312                 :             :   /* If that results in an invalid insn, back out.  */
    5313                 :           0 :   for (rtx_insn *x = seq; x; x = NEXT_INSN (x))
    5314                 :           0 :     if (reload_completed
    5315                 :           0 :         ? !valid_insn_p (x)
    5316                 :           0 :         : recog_memoized (x) < 0)
    5317                 :             :       return false;
    5318                 :             : 
    5319                 :             :   /* Emit the new insns before cond_earliest.  */
    5320                 :           0 :   emit_insn_before_setloc (seq, cond_earliest, INSN_LOCATION (trap));
    5321                 :             : 
    5322                 :             :   /* Delete the trap block if possible.  */
    5323                 :           0 :   remove_edge (trap_bb == then_bb ? then_edge : else_edge);
    5324                 :           0 :   df_set_bb_dirty (test_bb);
    5325                 :           0 :   df_set_bb_dirty (then_bb);
    5326                 :           0 :   df_set_bb_dirty (else_bb);
    5327                 :             : 
    5328                 :           0 :   if (EDGE_COUNT (trap_bb->preds) == 0)
    5329                 :             :     {
    5330                 :           0 :       delete_basic_block (trap_bb);
    5331                 :           0 :       num_true_changes++;
    5332                 :             :     }
    5333                 :             : 
    5334                 :             :   /* Wire together the blocks again.  */
    5335                 :           0 :   if (current_ir_type () == IR_RTL_CFGLAYOUT)
    5336                 :           0 :     single_succ_edge (test_bb)->flags |= EDGE_FALLTHRU;
    5337                 :           0 :   else if (trap_bb == then_bb)
    5338                 :             :     {
    5339                 :           0 :       rtx lab = JUMP_LABEL (jump);
    5340                 :           0 :       rtx_insn *seq = targetm.gen_jump (lab);
    5341                 :           0 :       rtx_jump_insn *newjump = emit_jump_insn_after (seq, jump);
    5342                 :           0 :       LABEL_NUSES (lab) += 1;
    5343                 :           0 :       JUMP_LABEL (newjump) = lab;
    5344                 :           0 :       emit_barrier_after (newjump);
    5345                 :             :     }
    5346                 :           0 :   delete_insn (jump);
    5347                 :             : 
    5348                 :           0 :   if (can_merge_blocks_p (test_bb, other_bb))
    5349                 :             :     {
    5350                 :           0 :       merge_blocks (test_bb, other_bb);
    5351                 :           0 :       num_true_changes++;
    5352                 :             :     }
    5353                 :             : 
    5354                 :           0 :   num_updated_if_blocks++;
    5355                 :           0 :   return true;
    5356                 :             : }
    5357                 :             : 
    5358                 :             : /* Subroutine of find_cond_trap: if BB contains only a trap insn,
    5359                 :             :    return it.  */
    5360                 :             : 
    5361                 :             : static rtx_insn *
    5362                 :           0 : block_has_only_trap (basic_block bb)
    5363                 :             : {
    5364                 :           0 :   rtx_insn *trap;
    5365                 :             : 
    5366                 :             :   /* We're not the exit block.  */
    5367                 :           0 :   if (bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
    5368                 :             :     return NULL;
    5369                 :             : 
    5370                 :             :   /* The block must have no successors.  */
    5371                 :           0 :   if (EDGE_COUNT (bb->succs) > 0)
    5372                 :             :     return NULL;
    5373                 :             : 
    5374                 :             :   /* The only instruction in the THEN block must be the trap.  */
    5375                 :           0 :   trap = first_active_insn (bb);
    5376                 :           0 :   if (! (trap == BB_END (bb)
    5377                 :           0 :          && GET_CODE (PATTERN (trap)) == TRAP_IF
    5378                 :           0 :          && TRAP_CONDITION (PATTERN (trap)) == const_true_rtx))
    5379                 :           0 :     return NULL;
    5380                 :             : 
    5381                 :             :   return trap;
    5382                 :             : }
    5383                 :             : 
    5384                 :             : /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
    5385                 :             :    transformable, but not necessarily the other.  There need be no
    5386                 :             :    JOIN block.
    5387                 :             : 
    5388                 :             :    Return TRUE if we were successful at converting the block.
    5389                 :             : 
    5390                 :             :    Cases we'd like to look at:
    5391                 :             : 
    5392                 :             :    (1)
    5393                 :             :         if (test) goto over; // x not live
    5394                 :             :         x = a;
    5395                 :             :         goto label;
    5396                 :             :         over:
    5397                 :             : 
    5398                 :             :    becomes
    5399                 :             : 
    5400                 :             :         x = a;
    5401                 :             :         if (! test) goto label;
    5402                 :             : 
    5403                 :             :    (2)
    5404                 :             :         if (test) goto E; // x not live
    5405                 :             :         x = big();
    5406                 :             :         goto L;
    5407                 :             :         E:
    5408                 :             :         x = b;
    5409                 :             :         goto M;
    5410                 :             : 
    5411                 :             :    becomes
    5412                 :             : 
    5413                 :             :         x = b;
    5414                 :             :         if (test) goto M;
    5415                 :             :         x = big();
    5416                 :             :         goto L;
    5417                 :             : 
    5418                 :             :    (3) // This one's really only interesting for targets that can do
    5419                 :             :        // multiway branching, e.g. IA-64 BBB bundles.  For other targets
    5420                 :             :        // it results in multiple branches on a cache line, which often
    5421                 :             :        // does not sit well with predictors.
    5422                 :             : 
    5423                 :             :         if (test1) goto E; // predicted not taken
    5424                 :             :         x = a;
    5425                 :             :         if (test2) goto F;
    5426                 :             :         ...
    5427                 :             :         E:
    5428                 :             :         x = b;
    5429                 :             :         J:
    5430                 :             : 
    5431                 :             :    becomes
    5432                 :             : 
    5433                 :             :         x = a;
    5434                 :             :         if (test1) goto E;
    5435                 :             :         if (test2) goto F;
    5436                 :             : 
    5437                 :             :    Notes:
    5438                 :             : 
    5439                 :             :    (A) Don't do (2) if the branch is predicted against the block we're
    5440                 :             :    eliminating.  Do it anyway if we can eliminate a branch; this requires
    5441                 :             :    that the sole successor of the eliminated block postdominate the other
    5442                 :             :    side of the if.
    5443                 :             : 
    5444                 :             :    (B) With CE, on (3) we can steal from both sides of the if, creating
    5445                 :             : 
    5446                 :             :         if (test1) x = a;
    5447                 :             :         if (!test1) x = b;
    5448                 :             :         if (test1) goto J;
    5449                 :             :         if (test2) goto F;
    5450                 :             :         ...
    5451                 :             :         J:
    5452                 :             : 
    5453                 :             :    Again, this is most useful if J postdominates.
    5454                 :             : 
    5455                 :             :    (C) CE substitutes for helpful life information.
    5456                 :             : 
    5457                 :             :    (D) These heuristics need a lot of work.  */
    5458                 :             : 
    5459                 :             : /* Tests for case 1 above.  */
    5460                 :             : 
    5461                 :             : static bool
    5462                 :    12789061 : find_if_case_1 (basic_block test_bb, edge then_edge, edge else_edge)
    5463                 :             : {
    5464                 :    12789061 :   basic_block then_bb = then_edge->dest;
    5465                 :    12789061 :   basic_block else_bb = else_edge->dest;
    5466                 :    12789061 :   basic_block new_bb;
    5467                 :    12789061 :   int then_bb_index;
    5468                 :    12789061 :   profile_probability then_prob;
    5469                 :    12789061 :   rtx else_target = NULL_RTX;
    5470                 :             : 
    5471                 :             :   /* If we are partitioning hot/cold basic blocks, we don't want to
    5472                 :             :      mess up unconditional or indirect jumps that cross between hot
    5473                 :             :      and cold sections.
    5474                 :             : 
    5475                 :             :      Basic block partitioning may result in some jumps that appear to
    5476                 :             :      be optimizable (or blocks that appear to be mergeable), but which really
    5477                 :             :      must be left untouched (they are required to make it safely across
    5478                 :             :      partition boundaries).  See  the comments at the top of
    5479                 :             :      bb-reorder.cc:partition_hot_cold_basic_blocks for complete details.  */
    5480                 :             : 
    5481                 :    12789061 :   if ((BB_END (then_bb)
    5482                 :    12789061 :        && JUMP_P (BB_END (then_bb))
    5483                 :     6687494 :        && CROSSING_JUMP_P (BB_END (then_bb)))
    5484                 :    12565207 :       || (JUMP_P (BB_END (test_bb))
    5485                 :    12565207 :           && CROSSING_JUMP_P (BB_END (test_bb)))
    5486                 :    25254453 :       || (BB_END (else_bb)
    5487                 :    12465392 :           && JUMP_P (BB_END (else_bb))
    5488                 :     6248301 :           && CROSSING_JUMP_P (BB_END (else_bb))))
    5489                 :             :     return false;
    5490                 :             : 
    5491                 :             :   /* Verify test_bb ends in a conditional jump with no other side-effects.  */
    5492                 :    12446848 :   if (!onlyjump_p (BB_END (test_bb)))
    5493                 :             :     return false;
    5494                 :             : 
    5495                 :             :   /* THEN has one successor.  */
    5496                 :    24887161 :   if (!single_succ_p (then_bb))
    5497                 :             :     return false;
    5498                 :             : 
    5499                 :             :   /* THEN does not fall through, but is not strange either.  */
    5500                 :     5584110 :   if (single_succ_edge (then_bb)->flags & (EDGE_COMPLEX | EDGE_FALLTHRU))
    5501                 :             :     return false;
    5502                 :             : 
    5503                 :             :   /* THEN has one predecessor.  */
    5504                 :     2170362 :   if (!single_pred_p (then_bb))
    5505                 :             :     return false;
    5506                 :             : 
    5507                 :             :   /* THEN must do something.  */
    5508                 :      989908 :   if (forwarder_block_p (then_bb))
    5509                 :             :     return false;
    5510                 :             : 
    5511                 :      610613 :   num_possible_if_blocks++;
    5512                 :      610613 :   if (dump_file)
    5513                 :           4 :     fprintf (dump_file,
    5514                 :             :              "\nIF-CASE-1 found, start %d, then %d\n",
    5515                 :             :              test_bb->index, then_bb->index);
    5516                 :             : 
    5517                 :      610613 :   then_prob = then_edge->probability.invert ();
    5518                 :             : 
    5519                 :             :   /* We're speculating from the THEN path, we want to make sure the cost
    5520                 :             :      of speculation is within reason.  */
    5521                 :     1163581 :   if (! cheap_bb_rtx_cost_p (then_bb, then_prob,
    5522                 :     1163581 :         COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (then_edge->src),
    5523                 :             :                                     predictable_edge_p (then_edge)))))
    5524                 :             :     return false;
    5525                 :             : 
    5526                 :      117302 :   if (else_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
    5527                 :             :     {
    5528                 :           0 :       rtx_insn *jump = BB_END (else_edge->src);
    5529                 :           0 :       gcc_assert (JUMP_P (jump));
    5530                 :           0 :       else_target = JUMP_LABEL (jump);
    5531                 :             :     }
    5532                 :             : 
    5533                 :             :   /* Registers set are dead, or are predicable.  */
    5534                 :      117302 :   if (! dead_or_predicable (test_bb, then_bb, else_bb,
    5535                 :             :                             single_succ_edge (then_bb), true))
    5536                 :             :     return false;
    5537                 :             : 
    5538                 :             :   /* Conversion went ok, including moving the insns and fixing up the
    5539                 :             :      jump.  Adjust the CFG to match.  */
    5540                 :             : 
    5541                 :             :   /* We can avoid creating a new basic block if then_bb is immediately
    5542                 :             :      followed by else_bb, i.e. deleting then_bb allows test_bb to fall
    5543                 :             :      through to else_bb.  */
    5544                 :             : 
    5545                 :       14774 :   if (then_bb->next_bb == else_bb
    5546                 :        7173 :       && then_bb->prev_bb == test_bb
    5547                 :        7173 :       && else_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
    5548                 :             :     {
    5549                 :        7173 :       redirect_edge_succ (FALLTHRU_EDGE (test_bb), else_bb);
    5550                 :        7173 :       new_bb = 0;
    5551                 :             :     }
    5552                 :        7601 :   else if (else_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
    5553                 :           0 :     new_bb = force_nonfallthru_and_redirect (FALLTHRU_EDGE (test_bb),
    5554                 :             :                                              else_bb, else_target);
    5555                 :             :   else
    5556                 :        7601 :     new_bb = redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb),
    5557                 :             :                                              else_bb);
    5558                 :             : 
    5559                 :       14774 :   df_set_bb_dirty (test_bb);
    5560                 :       14774 :   df_set_bb_dirty (else_bb);
    5561                 :             : 
    5562                 :       14774 :   then_bb_index = then_bb->index;
    5563                 :       14774 :   delete_basic_block (then_bb);
    5564                 :             : 
    5565                 :             :   /* Make rest of code believe that the newly created block is the THEN_BB
    5566                 :             :      block we removed.  */
    5567                 :       14774 :   if (new_bb)
    5568                 :             :     {
    5569                 :        7600 :       df_bb_replace (then_bb_index, new_bb);
    5570                 :             :       /* This should have been done above via force_nonfallthru_and_redirect
    5571                 :             :          (possibly called from redirect_edge_and_branch_force).  */
    5572                 :        7600 :       gcc_checking_assert (BB_PARTITION (new_bb) == BB_PARTITION (test_bb));
    5573                 :             :     }
    5574                 :             : 
    5575                 :       14774 :   num_true_changes++;
    5576                 :       14774 :   num_updated_if_blocks++;
    5577                 :       14774 :   return true;
    5578                 :             : }
    5579                 :             : 
    5580                 :             : /* Test for case 2 above.  */
    5581                 :             : 
    5582                 :             : static bool
    5583                 :    12774287 : find_if_case_2 (basic_block test_bb, edge then_edge, edge else_edge)
    5584                 :             : {
    5585                 :    12774287 :   basic_block then_bb = then_edge->dest;
    5586                 :    12774287 :   basic_block else_bb = else_edge->dest;
    5587                 :    12774287 :   edge else_succ;
    5588                 :    12774287 :   profile_probability then_prob, else_prob;
    5589                 :             : 
    5590                 :             :   /* We do not want to speculate (empty) loop latches.  */
    5591                 :    12774287 :   if (current_loops
    5592                 :     4979178 :       && else_bb->loop_father->latch == else_bb)
    5593                 :             :     return false;
    5594                 :             : 
    5595                 :             :   /* If we are partitioning hot/cold basic blocks, we don't want to
    5596                 :             :      mess up unconditional or indirect jumps that cross between hot
    5597                 :             :      and cold sections.
    5598                 :             : 
    5599                 :             :      Basic block partitioning may result in some jumps that appear to
    5600                 :             :      be optimizable (or blocks that appear to be mergeable), but which really
    5601                 :             :      must be left untouched (they are required to make it safely across
    5602                 :             :      partition boundaries).  See  the comments at the top of
    5603                 :             :      bb-reorder.cc:partition_hot_cold_basic_blocks for complete details.  */
    5604                 :             : 
    5605                 :    12630105 :   if ((BB_END (then_bb)
    5606                 :    12630105 :        && JUMP_P (BB_END (then_bb))
    5607                 :     6600710 :        && CROSSING_JUMP_P (BB_END (then_bb)))
    5608                 :    12406251 :       || (JUMP_P (BB_END (test_bb))
    5609                 :    12406251 :           && CROSSING_JUMP_P (BB_END (test_bb)))
    5610                 :    24936541 :       || (BB_END (else_bb)
    5611                 :    12306436 :           && JUMP_P (BB_END (else_bb))
    5612                 :     6115316 :           && CROSSING_JUMP_P (BB_END (else_bb))))
    5613                 :             :     return false;
    5614                 :             : 
    5615                 :             :   /* Verify test_bb ends in a conditional jump with no other side-effects.  */
    5616                 :    12287892 :   if (!onlyjump_p (BB_END (test_bb)))
    5617                 :             :     return false;
    5618                 :             : 
    5619                 :             :   /* ELSE has one successor.  */
    5620                 :    24574418 :   if (!single_succ_p (else_bb))
    5621                 :             :     return false;
    5622                 :             :   else
    5623                 :     5207463 :     else_succ = single_succ_edge (else_bb);
    5624                 :             : 
    5625                 :             :   /* ELSE outgoing edge is not complex.  */
    5626                 :     5207463 :   if (else_succ->flags & EDGE_COMPLEX)
    5627                 :             :     return false;
    5628                 :             : 
    5629                 :             :   /* ELSE has one predecessor.  */
    5630                 :    10123012 :   if (!single_pred_p (else_bb))
    5631                 :             :     return false;
    5632                 :             : 
    5633                 :             :   /* THEN is not EXIT.  */
    5634                 :     2798577 :   if (then_bb->index < NUM_FIXED_BLOCKS)
    5635                 :             :     return false;
    5636                 :             : 
    5637                 :     2798577 :   else_prob = else_edge->probability;
    5638                 :     2798577 :   then_prob = else_prob.invert ();
    5639                 :             : 
    5640                 :             :   /* ELSE is predicted or SUCC(ELSE) postdominates THEN.  */
    5641                 :     2798577 :   if (else_prob > then_prob)
    5642                 :             :     ;
    5643                 :     1879106 :   else if (else_succ->dest->index < NUM_FIXED_BLOCKS
    5644                 :     1879106 :            || dominated_by_p (CDI_POST_DOMINATORS, then_bb,
    5645                 :             :                               else_succ->dest))
    5646                 :             :     ;
    5647                 :             :   else
    5648                 :             :     return false;
    5649                 :             : 
    5650                 :     2184531 :   num_possible_if_blocks++;
    5651                 :     2184531 :   if (dump_file)
    5652                 :          42 :     fprintf (dump_file,
    5653                 :             :              "\nIF-CASE-2 found, start %d, else %d\n",
    5654                 :             :              test_bb->index, else_bb->index);
    5655                 :             : 
    5656                 :             :   /* We're speculating from the ELSE path, we want to make sure the cost
    5657                 :             :      of speculation is within reason.  */
    5658                 :     4215011 :   if (! cheap_bb_rtx_cost_p (else_bb, else_prob,
    5659                 :     4215011 :         COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (else_edge->src),
    5660                 :             :                                     predictable_edge_p (else_edge)))))
    5661                 :             :     return false;
    5662                 :             : 
    5663                 :             :   /* Registers set are dead, or are predicable.  */
    5664                 :      462055 :   if (! dead_or_predicable (test_bb, else_bb, then_bb, else_succ, false))
    5665                 :             :     return false;
    5666                 :             : 
    5667                 :             :   /* Conversion went ok, including moving the insns and fixing up the
    5668                 :             :      jump.  Adjust the CFG to match.  */
    5669                 :             : 
    5670                 :      186543 :   df_set_bb_dirty (test_bb);
    5671                 :      186543 :   df_set_bb_dirty (then_bb);
    5672                 :      186543 :   delete_basic_block (else_bb);
    5673                 :             : 
    5674                 :      186543 :   num_true_changes++;
    5675                 :      186543 :   num_updated_if_blocks++;
    5676                 :             : 
    5677                 :             :   /* ??? We may now fallthru from one of THEN's successors into a join
    5678                 :             :      block.  Rerun cleanup_cfg?  Examine things manually?  Wait?  */
    5679                 :             : 
    5680                 :      186543 :   return true;
    5681                 :             : }
    5682                 :             : 
    5683                 :             : /* Used by the code above to perform the actual rtl transformations.
    5684                 :             :    Return TRUE if successful.
    5685                 :             : 
    5686                 :             :    TEST_BB is the block containing the conditional branch.  MERGE_BB
    5687                 :             :    is the block containing the code to manipulate.  DEST_EDGE is an
    5688                 :             :    edge representing a jump to the join block; after the conversion,
    5689                 :             :    TEST_BB should be branching to its destination.
    5690                 :             :    REVERSEP is true if the sense of the branch should be reversed.  */
    5691                 :             : 
    5692                 :             : static bool
    5693                 :      579357 : dead_or_predicable (basic_block test_bb, basic_block merge_bb,
    5694                 :             :                     basic_block other_bb, edge dest_edge, bool reversep)
    5695                 :             : {
    5696                 :      579357 :   basic_block new_dest = dest_edge->dest;
    5697                 :      579357 :   rtx_insn *head, *end, *jump;
    5698                 :      579357 :   rtx_insn *earliest = NULL;
    5699                 :      579357 :   rtx old_dest;
    5700                 :      579357 :   bitmap merge_set = NULL;
    5701                 :             :   /* Number of pending changes.  */
    5702                 :      579357 :   int n_validated_changes = 0;
    5703                 :      579357 :   rtx new_dest_label = NULL_RTX;
    5704                 :             : 
    5705                 :      579357 :   jump = BB_END (test_bb);
    5706                 :             : 
    5707                 :             :   /* Find the extent of the real code in the merge block.  */
    5708                 :      579357 :   head = BB_HEAD (merge_bb);
    5709                 :      579357 :   end = BB_END (merge_bb);
    5710                 :             : 
    5711                 :      708188 :   while (DEBUG_INSN_P (end) && end != head)
    5712                 :      128831 :     end = PREV_INSN (end);
    5713                 :             : 
    5714                 :             :   /* If merge_bb ends with a tablejump, predicating/moving insn's
    5715                 :             :      into test_bb and then deleting merge_bb will result in the jumptable
    5716                 :             :      that follows merge_bb being removed along with merge_bb and then we
    5717                 :             :      get an unresolved reference to the jumptable.  */
    5718                 :      579357 :   if (tablejump_p (end, NULL, NULL))
    5719                 :             :     return false;
    5720                 :             : 
    5721                 :      579357 :   if (LABEL_P (head))
    5722                 :      462090 :     head = NEXT_INSN (head);
    5723                 :      579357 :   while (DEBUG_INSN_P (head) && head != end)
    5724                 :           0 :     head = NEXT_INSN (head);
    5725                 :      579357 :   if (NOTE_P (head))
    5726                 :             :     {
    5727                 :      579357 :       if (head == end)
    5728                 :             :         {
    5729                 :       99193 :           head = end = NULL;
    5730                 :       99193 :           goto no_body;
    5731                 :             :         }
    5732                 :      480164 :       head = NEXT_INSN (head);
    5733                 :     1212321 :       while (DEBUG_INSN_P (head) && head != end)
    5734                 :      251993 :         head = NEXT_INSN (head);
    5735                 :             :     }
    5736                 :             : 
    5737                 :      480164 :   if (JUMP_P (end))
    5738                 :             :     {
    5739                 :      168480 :       if (!onlyjump_p (end))
    5740                 :             :         return false;
    5741                 :      129622 :       if (head == end)
    5742                 :             :         {
    5743                 :          13 :           head = end = NULL;
    5744                 :          13 :           goto no_body;
    5745                 :             :         }
    5746                 :      129609 :       end = PREV_INSN (end);
    5747                 :      313503 :       while (DEBUG_INSN_P (end) && end != head)
    5748                 :       54285 :         end = PREV_INSN (end);
    5749                 :             :     }
    5750                 :             : 
    5751                 :             :   /* Don't move frame-related insn across the conditional branch.  This
    5752                 :             :      can lead to one of the paths of the branch having wrong unwind info.  */
    5753                 :      441293 :   if (epilogue_completed)
    5754                 :             :     {
    5755                 :             :       rtx_insn *insn = head;
    5756                 :       63053 :       while (1)
    5757                 :             :         {
    5758                 :      232862 :           if (INSN_P (insn) && RTX_FRAME_RELATED_P (insn))
    5759                 :             :             return false;
    5760                 :      232694 :           if (insn == end)
    5761                 :             :             break;
    5762                 :       63053 :           insn = NEXT_INSN (insn);
    5763                 :       63053 :         }
    5764                 :             :     }
    5765                 :             : 
    5766                 :             :   /* Disable handling dead code by conditional execution if the machine needs
    5767                 :             :      to do anything funny with the tests, etc.  */
    5768                 :             : #ifndef IFCVT_MODIFY_TESTS
    5769                 :      441125 :   if (targetm.have_conditional_execution ())
    5770                 :             :     {
    5771                 :             :       /* In the conditional execution case, we have things easy.  We know
    5772                 :             :          the condition is reversible.  We don't have to check life info
    5773                 :             :          because we're going to conditionally execute the code anyway.
    5774                 :             :          All that's left is making sure the insns involved can actually
    5775                 :             :          be predicated.  */
    5776                 :             : 
    5777                 :           0 :       rtx cond;
    5778                 :             : 
    5779                 :             :       /* If the conditional jump is more than just a conditional jump,
    5780                 :             :          then we cannot do conditional execution conversion on this block.  */
    5781                 :           0 :       if (!onlyjump_p (jump))
    5782                 :           0 :         goto nce;
    5783                 :             : 
    5784                 :           0 :       cond = cond_exec_get_condition (jump);
    5785                 :           0 :       if (! cond)
    5786                 :           0 :         goto nce;
    5787                 :             : 
    5788                 :           0 :       rtx note = find_reg_note (jump, REG_BR_PROB, NULL_RTX);
    5789                 :           0 :       profile_probability prob_val
    5790                 :           0 :           = (note ? profile_probability::from_reg_br_prob_note (XINT (note, 0))
    5791                 :           0 :              : profile_probability::uninitialized ());
    5792                 :             : 
    5793                 :           0 :       if (reversep)
    5794                 :             :         {
    5795                 :           0 :           enum rtx_code rev = reversed_comparison_code (cond, jump);
    5796                 :           0 :           if (rev == UNKNOWN)
    5797                 :           0 :             return false;
    5798                 :           0 :           cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
    5799                 :             :                                  XEXP (cond, 1));
    5800                 :           0 :           prob_val = prob_val.invert ();
    5801                 :             :         }
    5802                 :             : 
    5803                 :           0 :       if (cond_exec_process_insns (NULL, head, end, cond, prob_val, false)
    5804                 :           0 :           && verify_changes (0))
    5805                 :           0 :         n_validated_changes = num_validated_changes ();
    5806                 :             :       else
    5807                 :           0 :         cancel_changes (0);
    5808                 :             : 
    5809                 :           0 :       earliest = jump;
    5810                 :             :     }
    5811                 :      441125 :  nce:
    5812                 :             : #endif
    5813                 :             : 
    5814                 :             :   /* If we allocated new pseudos (e.g. in the conditional move
    5815                 :             :      expander called from noce_emit_cmove), we must resize the
    5816                 :             :      array first.  */
    5817                 :      441125 :   if (max_regno < max_reg_num ())
    5818                 :       88590 :     max_regno = max_reg_num ();
    5819                 :             : 
    5820                 :             :   /* Try the NCE path if the CE path did not result in any changes.  */
    5821                 :      441125 :   if (n_validated_changes == 0)
    5822                 :             :     {
    5823                 :      441125 :       rtx cond;
    5824                 :      441125 :       rtx_insn *insn;
    5825                 :      441125 :       regset live;
    5826                 :      441125 :       bool success;
    5827                 :             : 
    5828                 :             :       /* In the non-conditional execution case, we have to verify that there
    5829                 :             :          are no trapping operations, no calls, no references to memory, and
    5830                 :             :          that any registers modified are dead at the branch site.  */
    5831                 :             : 
    5832                 :      441125 :       if (!any_condjump_p (jump))
    5833                 :             :         return false;
    5834                 :             : 
    5835                 :             :       /* Find the extent of the conditional.  */
    5836                 :      441125 :       cond = noce_get_condition (jump, &earliest, false);
    5837                 :      441125 :       if (!cond)
    5838                 :             :         return false;
    5839                 :             : 
    5840                 :      441125 :       live = BITMAP_ALLOC (&reg_obstack);
    5841                 :      441125 :       simulate_backwards_to_point (merge_bb, live, end);
    5842                 :      441125 :       success = can_move_insns_across (head, end, earliest, jump,
    5843                 :             :                                        merge_bb, live,
    5844                 :             :                                        df_get_live_in (other_bb), NULL);
    5845                 :      441125 :       BITMAP_FREE (live);
    5846                 :      441125 :       if (!success)
    5847                 :             :         return false;
    5848                 :             : 
    5849                 :             :       /* Collect the set of registers set in MERGE_BB.  */
    5850                 :      188643 :       merge_set = BITMAP_ALLOC (&reg_obstack);
    5851                 :             : 
    5852                 :      872929 :       FOR_BB_INSNS (merge_bb, insn)
    5853                 :      684286 :         if (NONDEBUG_INSN_P (insn))
    5854                 :      235779 :           df_simulate_find_defs (insn, merge_set);
    5855                 :             : 
    5856                 :             :       /* If shrink-wrapping, disable this optimization when test_bb is
    5857                 :             :          the first basic block and merge_bb exits.  The idea is to not
    5858                 :             :          move code setting up a return register as that may clobber a
    5859                 :             :          register used to pass function parameters, which then must be
    5860                 :             :          saved in caller-saved regs.  A caller-saved reg requires the
    5861                 :             :          prologue, killing a shrink-wrap opportunity.  */
    5862                 :      188643 :       if ((SHRINK_WRAPPING_ENABLED && !epilogue_completed)
    5863                 :      163385 :           && ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb == test_bb
    5864                 :       26099 :           && single_succ_p (new_dest)
    5865                 :       19535 :           && single_succ (new_dest) == EXIT_BLOCK_PTR_FOR_FN (cfun)
    5866                 :      207456 :           && bitmap_intersect_p (df_get_live_in (new_dest), merge_set))
    5867                 :             :         {
    5868                 :       18809 :           regset return_regs;
    5869                 :       18809 :           unsigned int i;
    5870                 :             : 
    5871                 :       18809 :           return_regs = BITMAP_ALLOC (&reg_obstack);
    5872                 :             : 
    5873                 :             :           /* Start off with the intersection of regs used to pass
    5874                 :             :              params and regs used to return values.  */
    5875                 :     1768046 :           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
    5876                 :     1730428 :             if (FUNCTION_ARG_REGNO_P (i)
    5877                 :     1730428 :                 && targetm.calls.function_value_regno_p (i))
    5878                 :      101359 :               bitmap_set_bit (return_regs, INCOMING_REGNO (i));
    5879                 :             : 
    5880                 :       18809 :           bitmap_and_into (return_regs,
    5881                 :       18809 :                            df_get_live_out (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
    5882                 :       18809 :           bitmap_and_into (return_regs,
    5883                 :       18809 :                            df_get_live_in (EXIT_BLOCK_PTR_FOR_FN (cfun)));
    5884                 :       18809 :           if (!bitmap_empty_p (return_regs))
    5885                 :             :             {
    5886                 :        6255 :               FOR_BB_INSNS_REVERSE (new_dest, insn)
    5887                 :        5549 :                 if (NONDEBUG_INSN_P (insn))
    5888                 :             :                   {
    5889                 :        2751 :                     df_ref def;
    5890                 :             : 
    5891                 :             :                     /* If this insn sets any reg in return_regs, add all
    5892                 :             :                        reg uses to the set of regs we're interested in.  */
    5893                 :        3164 :                     FOR_EACH_INSN_DEF (def, insn)
    5894                 :        1844 :                       if (bitmap_bit_p (return_regs, DF_REF_REGNO (def)))
    5895                 :             :                         {
    5896                 :        1431 :                           df_simulate_uses (insn, return_regs);
    5897                 :        1431 :                           break;
    5898                 :             :                         }
    5899                 :             :                   }
    5900                 :         706 :               if (bitmap_intersect_p (merge_set, return_regs))
    5901                 :             :                 {
    5902                 :         665 :                   BITMAP_FREE (return_regs);
    5903                 :         665 :                   BITMAP_FREE (merge_set);
    5904                 :         665 :                   return false;
    5905                 :             :                 }
    5906                 :             :             }
    5907                 :       18144 :           BITMAP_FREE (return_regs);
    5908                 :             :         }
    5909                 :             :     }
    5910                 :             : 
    5911                 :      287184 :  no_body:
    5912                 :             :   /* We don't want to use normal invert_jump or redirect_jump because
    5913                 :             :      we don't want to delete_insn called.  Also, we want to do our own
    5914                 :             :      change group management.  */
    5915                 :             : 
    5916                 :      287184 :   old_dest = JUMP_LABEL (jump);
    5917                 :      287184 :   if (other_bb != new_dest)
    5918                 :             :     {
    5919                 :      287161 :       if (!any_condjump_p (jump))
    5920                 :           0 :         goto cancel;
    5921                 :             : 
    5922                 :      287161 :       if (JUMP_P (BB_END (dest_edge->src)))
    5923                 :       15662 :         new_dest_label = JUMP_LABEL (BB_END (dest_edge->src));
    5924                 :      271499 :       else if (new_dest == EXIT_BLOCK_PTR_FOR_FN (cfun))
    5925                 :       85867 :         new_dest_label = ret_rtx;
    5926                 :             :       else
    5927                 :      185632 :         new_dest_label = block_label (new_dest);
    5928                 :             : 
    5929                 :      287161 :       rtx_jump_insn *jump_insn = as_a <rtx_jump_insn *> (jump);
    5930                 :      287161 :       if (reversep
    5931                 :      559549 :           ? ! invert_jump_1 (jump_insn, new_dest_label)
    5932                 :      272388 :           : ! redirect_jump_1 (jump_insn, new_dest_label))
    5933                 :           0 :         goto cancel;
    5934                 :             :     }
    5935                 :             : 
    5936                 :      287184 :   if (verify_changes (n_validated_changes))
    5937                 :      201317 :     confirm_change_group ();
    5938                 :             :   else
    5939                 :       85867 :     goto cancel;
    5940                 :             : 
    5941                 :      201317 :   if (other_bb != new_dest)
    5942                 :             :     {
    5943                 :      201294 :       redirect_jump_2 (as_a <rtx_jump_insn *> (jump), old_dest, new_dest_label,
    5944                 :             :                        0, reversep);
    5945                 :             : 
    5946                 :      201294 :       redirect_edge_succ (BRANCH_EDGE (test_bb), new_dest);
    5947                 :      201294 :       if (reversep)
    5948                 :             :         {
    5949                 :       14773 :           std::swap (BRANCH_EDGE (test_bb)->probability,
    5950                 :       14773 :                      FALLTHRU_EDGE (test_bb)->probability);
    5951                 :       14773 :           update_br_prob_note (test_bb);
    5952                 :             :         }
    5953                 :             :     }
    5954                 :             : 
    5955                 :             :   /* Move the insns out of MERGE_BB to before the branch.  */
    5956                 :      201317 :   if (head != NULL)
    5957                 :             :     {
    5958                 :      187976 :       rtx_insn *insn;
    5959                 :             : 
    5960                 :      187976 :       if (end == BB_END (merge_bb))
    5961                 :      156649 :         BB_END (merge_bb) = PREV_INSN (head);
    5962                 :             : 
    5963                 :             :       /* PR 21767: when moving insns above a conditional branch, the REG_EQUAL
    5964                 :             :          notes being moved might become invalid.  */
    5965                 :             :       insn = head;
    5966                 :      225125 :       do
    5967                 :             :         {
    5968                 :      225125 :           rtx note;
    5969                 :             : 
    5970                 :      225125 :           if (! INSN_P (insn))
    5971                 :        2254 :             continue;
    5972                 :      222871 :           note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
    5973                 :      222871 :           if (! note)
    5974                 :      212371 :             continue;
    5975                 :       10500 :           remove_note (insn, note);
    5976                 :      262274 :         } while (insn != end && (insn = NEXT_INSN (insn)));
    5977                 :             : 
    5978                 :             :       /* PR46315: when moving insns above a conditional branch, the REG_EQUAL
    5979                 :             :          notes referring to the registers being set might become invalid.  */
    5980                 :      187976 :       if (merge_set)
    5981                 :             :         {
    5982                 :      187976 :           unsigned i;
    5983                 :      187976 :           bitmap_iterator bi;
    5984                 :             : 
    5985                 :      424940 :           EXECUTE_IF_SET_IN_BITMAP (merge_set, 0, i, bi)
    5986                 :      236964 :             remove_reg_equal_equiv_notes_for_regno (i);
    5987                 :             : 
    5988                 :      187976 :           BITMAP_FREE (merge_set);
    5989                 :             :         }
    5990                 :             : 
    5991                 :      187976 :       reorder_insns (head, end, PREV_INSN (earliest));
    5992                 :             :     }
    5993                 :             : 
    5994                 :             :   /* Remove the jump and edge if we can.  */
    5995                 :      201317 :   if (other_bb == new_dest)
    5996                 :             :     {
    5997                 :          23 :       delete_insn (jump);
    5998                 :          23 :       remove_edge (BRANCH_EDGE (test_bb));
    5999                 :             :       /* ??? Can't merge blocks here, as then_bb is still in use.
    6000                 :             :          At minimum, the merge will get done just before bb-reorder.  */
    6001                 :             :     }
    6002                 :             : 
    6003                 :             :   return true;
    6004                 :             : 
    6005                 :       85867 :  cancel:
    6006                 :       85867 :   cancel_changes (0);
    6007                 :             : 
    6008                 :       85867 :   if (merge_set)
    6009                 :           2 :     BITMAP_FREE (merge_set);
    6010                 :             : 
    6011                 :             :   return false;
    6012                 :             : }
    6013                 :             : 
    6014                 :             : /* Main entry point for all if-conversion.  AFTER_COMBINE is true if
    6015                 :             :    we are after combine pass.  */
    6016                 :             : 
    6017                 :             : static void
    6018                 :     2955005 : if_convert (bool after_combine)
    6019                 :             : {
    6020                 :     2955005 :   basic_block bb;
    6021                 :     2955005 :   int pass;
    6022                 :             : 
    6023                 :     2955005 :   if (optimize == 1)
    6024                 :             :     {
    6025                 :      211956 :       df_live_add_problem ();
    6026                 :      211956 :       df_live_set_all_dirty ();
    6027                 :             :     }
    6028                 :             : 
    6029                 :             :   /* Record whether we are after combine pass.  */
    6030                 :     2955005 :   ifcvt_after_combine = after_combine;
    6031                 :     2955005 :   have_cbranchcc4 = (direct_optab_handler (cbranch_optab, CCmode)
    6032                 :     2955005 :                      != CODE_FOR_nothing);
    6033                 :     2955005 :   num_possible_if_blocks = 0;
    6034                 :     2955005 :   num_updated_if_blocks = 0;
    6035                 :     2955005 :   num_true_changes = 0;
    6036                 :             : 
    6037                 :     2955005 :   loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
    6038                 :     2955005 :   mark_loop_exit_edges ();
    6039                 :     2955005 :   loop_optimizer_finalize ();
    6040                 :     2955005 :   free_dominance_info (CDI_DOMINATORS);
    6041                 :             : 
    6042                 :             :   /* Compute postdominators.  */
    6043                 :     2955005 :   calculate_dominance_info (CDI_POST_DOMINATORS);
    6044                 :             : 
    6045                 :     2955005 :   df_set_flags (DF_LR_RUN_DCE);
    6046                 :             : 
    6047                 :             :   /* Go through each of the basic blocks looking for things to convert.  If we
    6048                 :             :      have conditional execution, we make multiple passes to allow us to handle
    6049                 :             :      IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks.  */
    6050                 :     2955005 :   pass = 0;
    6051                 :     3126116 :   do
    6052                 :             :     {
    6053                 :     3126116 :       df_analyze ();
    6054                 :             :       /* Only need to do dce on the first pass.  */
    6055                 :     3126116 :       df_clear_flags (DF_LR_RUN_DCE);
    6056                 :     3126116 :       cond_exec_changed_p = false;
    6057                 :     3126116 :       pass++;
    6058                 :             : 
    6059                 :             : #ifdef IFCVT_MULTIPLE_DUMPS
    6060                 :     3126116 :       if (dump_file && pass > 1)
    6061                 :          17 :         fprintf (dump_file, "\n\n========== Pass %d ==========\n", pass);
    6062                 :             : #endif
    6063                 :             : 
    6064                 :    38837615 :       FOR_EACH_BB_FN (bb, cfun)
    6065                 :             :         {
    6066                 :             :           basic_block new_bb;
    6067                 :    36004597 :           while (!df_get_bb_dirty (bb)
    6068                 :    71204593 :                  && (new_bb = find_if_header (bb, pass)) != NULL)
    6069                 :             :             bb = new_bb;
    6070                 :             :         }
    6071                 :             : 
    6072                 :             : #ifdef IFCVT_MULTIPLE_DUMPS
    6073                 :     3126116 :       if (dump_file && cond_exec_changed_p)
    6074                 :          17 :         print_rtl_with_bb (dump_file, get_insns (), dump_flags);
    6075                 :             : #endif
    6076                 :             :     }
    6077                 :             :   while (cond_exec_changed_p);
    6078                 :             : 
    6079                 :             : #ifdef IFCVT_MULTIPLE_DUMPS
    6080                 :     2955005 :   if (dump_file)
    6081                 :          85 :     fprintf (dump_file, "\n\n========== no more changes\n");
    6082                 :             : #endif
    6083                 :             : 
    6084                 :     2955005 :   free_dominance_info (CDI_POST_DOMINATORS);
    6085                 :             : 
    6086                 :     2955005 :   if (dump_file)
    6087                 :          85 :     fflush (dump_file);
    6088                 :             : 
    6089                 :     2955005 :   clear_aux_for_blocks ();
    6090                 :             : 
    6091                 :             :   /* If we allocated new pseudos, we must resize the array for sched1.  */
    6092                 :     2955005 :   if (max_regno < max_reg_num ())
    6093                 :      610894 :     max_regno = max_reg_num ();
    6094                 :             : 
    6095                 :             :   /* Write the final stats.  */
    6096                 :     2955005 :   if (dump_file && num_possible_if_blocks > 0)
    6097                 :             :     {
    6098                 :          59 :       fprintf (dump_file,
    6099                 :             :                "\n%d possible IF blocks searched.\n",
    6100                 :             :                num_possible_if_blocks);
    6101                 :          59 :       fprintf (dump_file,
    6102                 :             :                "%d IF blocks converted.\n",
    6103                 :             :                num_updated_if_blocks);
    6104                 :          59 :       fprintf (dump_file,
    6105                 :             :                "%d true changes made.\n\n\n",
    6106                 :             :                num_true_changes);
    6107                 :             :     }
    6108                 :             : 
    6109                 :     2955005 :   if (optimize == 1)
    6110                 :      211956 :     df_remove_problem (df_live);
    6111                 :             : 
    6112                 :             :   /* Some non-cold blocks may now be only reachable from cold blocks.
    6113                 :             :      Fix that up.  */
    6114                 :     2955005 :   fixup_partitions ();
    6115                 :             : 
    6116                 :     2955005 :   checking_verify_flow_info ();
    6117                 :     2955005 : }
    6118                 :             : 
    6119                 :             : /* If-conversion and CFG cleanup.  */
    6120                 :             : static void
    6121                 :      987683 : rest_of_handle_if_conversion (void)
    6122                 :             : {
    6123                 :      987683 :   int flags = 0;
    6124                 :             : 
    6125                 :      987683 :   if (flag_if_conversion)
    6126                 :             :     {
    6127                 :      985001 :       if (dump_file)
    6128                 :             :         {
    6129                 :          33 :           dump_reg_info (dump_file);
    6130                 :          33 :           dump_flow_info (dump_file, dump_flags);
    6131                 :             :         }
    6132                 :      985001 :       cleanup_cfg (CLEANUP_EXPENSIVE);
    6133                 :      985001 :       if_convert (false);
    6134                 :      985001 :       if (num_updated_if_blocks)
    6135                 :             :         /* Get rid of any dead CC-related instructions.  */
    6136                 :      987683 :         flags |= CLEANUP_FORCE_FAST_DCE;
    6137                 :             :     }
    6138                 :             : 
    6139                 :      987683 :   cleanup_cfg (flags);
    6140                 :      987683 : }
    6141                 :             : 
    6142                 :             : namespace {
    6143                 :             : 
    6144                 :             : const pass_data pass_data_rtl_ifcvt =
    6145                 :             : {
    6146                 :             :   RTL_PASS, /* type */
    6147                 :             :   "ce1", /* name */
    6148                 :             :   OPTGROUP_NONE, /* optinfo_flags */
    6149                 :             :   TV_IFCVT, /* tv_id */
    6150                 :             :   0, /* properties_required */
    6151                 :             :   0, /* properties_provided */
    6152                 :             :   0, /* properties_destroyed */
    6153                 :             :   0, /* todo_flags_start */
    6154                 :             :   TODO_df_finish, /* todo_flags_finish */
    6155                 :             : };
    6156                 :             : 
    6157                 :             : class pass_rtl_ifcvt : public rtl_opt_pass
    6158                 :             : {
    6159                 :             : public:
    6160                 :      281914 :   pass_rtl_ifcvt (gcc::context *ctxt)
    6161                 :      563828 :     : rtl_opt_pass (pass_data_rtl_ifcvt, ctxt)
    6162                 :             :   {}
    6163                 :             : 
    6164                 :             :   /* opt_pass methods: */
    6165                 :     1426773 :   bool gate (function *) final override
    6166                 :             :     {
    6167                 :     1426773 :       return (optimize > 0) && dbg_cnt (if_conversion);
    6168                 :             :     }
    6169                 :             : 
    6170                 :      987683 :   unsigned int execute (function *) final override
    6171                 :             :     {
    6172                 :      987683 :       rest_of_handle_if_conversion ();
    6173                 :      987683 :       return 0;
    6174                 :             :     }
    6175                 :             : 
    6176                 :             : }; // class pass_rtl_ifcvt
    6177                 :             : 
    6178                 :             : } // anon namespace
    6179                 :             : 
    6180                 :             : rtl_opt_pass *
    6181                 :      281914 : make_pass_rtl_ifcvt (gcc::context *ctxt)
    6182                 :             : {
    6183                 :      281914 :   return new pass_rtl_ifcvt (ctxt);
    6184                 :             : }
    6185                 :             : 
    6186                 :             : 
    6187                 :             : /* Rerun if-conversion, as combine may have simplified things enough
    6188                 :             :    to now meet sequence length restrictions.  */
    6189                 :             : 
    6190                 :             : namespace {
    6191                 :             : 
    6192                 :             : const pass_data pass_data_if_after_combine =
    6193                 :             : {
    6194                 :             :   RTL_PASS, /* type */
    6195                 :             :   "ce2", /* name */
    6196                 :             :   OPTGROUP_NONE, /* optinfo_flags */
    6197                 :             :   TV_IFCVT, /* tv_id */
    6198                 :             :   0, /* properties_required */
    6199                 :             :   0, /* properties_provided */
    6200                 :             :   0, /* properties_destroyed */
    6201                 :             :   0, /* todo_flags_start */
    6202                 :             :   TODO_df_finish, /* todo_flags_finish */
    6203                 :             : };
    6204                 :             : 
    6205                 :             : class pass_if_after_combine : public rtl_opt_pass
    6206                 :             : {
    6207                 :             : public:
    6208                 :      281914 :   pass_if_after_combine (gcc::context *ctxt)
    6209                 :      563828 :     : rtl_opt_pass (pass_data_if_after_combine, ctxt)
    6210                 :             :   {}
    6211                 :             : 
    6212                 :             :   /* opt_pass methods: */
    6213                 :     1426773 :   bool gate (function *) final override
    6214                 :             :     {
    6215                 :      987684 :       return optimize > 0 && flag_if_conversion
    6216                 :     2411775 :         && dbg_cnt (if_after_combine);
    6217                 :             :     }
    6218                 :             : 
    6219                 :      985001 :   unsigned int execute (function *) final override
    6220                 :             :     {
    6221                 :      985001 :       if_convert (true);
    6222                 :      985001 :       return 0;
    6223                 :             :     }
    6224                 :             : 
    6225                 :             : }; // class pass_if_after_combine
    6226                 :             : 
    6227                 :             : } // anon namespace
    6228                 :             : 
    6229                 :             : rtl_opt_pass *
    6230                 :      281914 : make_pass_if_after_combine (gcc::context *ctxt)
    6231                 :             : {
    6232                 :      281914 :   return new pass_if_after_combine (ctxt);
    6233                 :             : }
    6234                 :             : 
    6235                 :             : 
    6236                 :             : namespace {
    6237                 :             : 
    6238                 :             : const pass_data pass_data_if_after_reload =
    6239                 :             : {
    6240                 :             :   RTL_PASS, /* type */
    6241                 :             :   "ce3", /* name */
    6242                 :             :   OPTGROUP_NONE, /* optinfo_flags */
    6243                 :             :   TV_IFCVT2, /* tv_id */
    6244                 :             :   0, /* properties_required */
    6245                 :             :   0, /* properties_provided */
    6246                 :             :   0, /* properties_destroyed */
    6247                 :             :   0, /* todo_flags_start */
    6248                 :             :   TODO_df_finish, /* todo_flags_finish */
    6249                 :             : };
    6250                 :             : 
    6251                 :             : class pass_if_after_reload : public rtl_opt_pass
    6252                 :             : {
    6253                 :             : public:
    6254                 :      281914 :   pass_if_after_reload (gcc::context *ctxt)
    6255                 :      563828 :     : rtl_opt_pass (pass_data_if_after_reload, ctxt)
    6256                 :             :   {}
    6257                 :             : 
    6258                 :             :   /* opt_pass methods: */
    6259                 :     1426773 :   bool gate (function *) final override
    6260                 :             :     {
    6261                 :      987684 :       return optimize > 0 && flag_if_conversion2
    6262                 :     2411777 :         && dbg_cnt (if_after_reload);
    6263                 :             :     }
    6264                 :             : 
    6265                 :      985003 :   unsigned int execute (function *) final override
    6266                 :             :     {
    6267                 :      985003 :       if_convert (true);
    6268                 :      985003 :       return 0;
    6269                 :             :     }
    6270                 :             : 
    6271                 :             : }; // class pass_if_after_reload
    6272                 :             : 
    6273                 :             : } // anon namespace
    6274                 :             : 
    6275                 :             : rtl_opt_pass *
    6276                 :      281914 : make_pass_if_after_reload (gcc::context *ctxt)
    6277                 :             : {
    6278                 :      281914 :   return new pass_if_after_reload (ctxt);
    6279                 :             : }
        

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.