LCOV - code coverage report
Current view: top level - gcc - optabs-tree.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 86.3 % 284 245
Test Date: 2024-12-21 13:15:12 Functions: 100.0 % 13 13
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /* Tree-based target query functions relating to optabs
       2                 :             :    Copyright (C) 1987-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 under
       7                 :             : the terms of the GNU General Public License as published by the Free
       8                 :             : Software Foundation; either version 3, or (at your option) any later
       9                 :             : version.
      10                 :             : 
      11                 :             : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
      12                 :             : WARRANTY; without even the implied warranty of MERCHANTABILITY or
      13                 :             : FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      14                 :             : for more details.
      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                 :             : 
      21                 :             : #include "config.h"
      22                 :             : #include "system.h"
      23                 :             : #include "coretypes.h"
      24                 :             : #include "target.h"
      25                 :             : #include "insn-codes.h"
      26                 :             : #include "rtl.h"
      27                 :             : #include "tree.h"
      28                 :             : #include "memmodel.h"
      29                 :             : #include "optabs.h"
      30                 :             : #include "optabs-tree.h"
      31                 :             : #include "stor-layout.h"
      32                 :             : #include "internal-fn.h"
      33                 :             : 
      34                 :             : /* Return the optab used for computing the operation given by the tree code,
      35                 :             :    CODE and the tree EXP.  This function is not always usable (for example, it
      36                 :             :    cannot give complete results for multiplication or division) but probably
      37                 :             :    ought to be relied on more widely throughout the expander.  */
      38                 :             : optab
      39                 :     8878903 : optab_for_tree_code (enum tree_code code, const_tree type,
      40                 :             :                      enum optab_subtype subtype)
      41                 :             : {
      42                 :     8878903 :   bool trapv;
      43                 :     8878903 :   switch (code)
      44                 :             :     {
      45                 :             :     case BIT_AND_EXPR:
      46                 :             :       return and_optab;
      47                 :             : 
      48                 :      209637 :     case BIT_IOR_EXPR:
      49                 :      209637 :       return ior_optab;
      50                 :             : 
      51                 :        6215 :     case BIT_NOT_EXPR:
      52                 :        6215 :       return one_cmpl_optab;
      53                 :             : 
      54                 :       43795 :     case BIT_XOR_EXPR:
      55                 :       43795 :       return xor_optab;
      56                 :             : 
      57                 :        2600 :     case MULT_HIGHPART_EXPR:
      58                 :        2600 :       return TYPE_UNSIGNED (type) ? umul_highpart_optab : smul_highpart_optab;
      59                 :             : 
      60                 :         176 :     case CEIL_MOD_EXPR:
      61                 :         176 :     case FLOOR_MOD_EXPR:
      62                 :         176 :     case ROUND_MOD_EXPR:
      63                 :             :       /* {s,u}mod_optab implements TRUNC_MOD_EXPR.  For scalar modes,
      64                 :             :          expansion has code to adjust TRUNC_MOD_EXPR into the desired other
      65                 :             :          modes, but for vector modes it does not.  The adjustment code
      66                 :             :          should be instead emitted in tree-vect-patterns.cc.  */
      67                 :         176 :       if (VECTOR_TYPE_P (type))
      68                 :             :         return unknown_optab;
      69                 :             :       /* FALLTHRU */
      70                 :       36777 :     case TRUNC_MOD_EXPR:
      71                 :       36777 :       return TYPE_UNSIGNED (type) ? umod_optab : smod_optab;
      72                 :             : 
      73                 :           0 :     case CEIL_DIV_EXPR:
      74                 :           0 :     case FLOOR_DIV_EXPR:
      75                 :           0 :     case ROUND_DIV_EXPR:
      76                 :             :       /* {,u}{s,u}div_optab implements {TRUNC,EXACT}_DIV_EXPR or RDIV_EXPR.
      77                 :             :          For scalar modes, expansion has code to adjust TRUNC_DIV_EXPR
      78                 :             :          into the desired other modes, but for vector modes it does not.
      79                 :             :          The adjustment code should be instead emitted in
      80                 :             :          tree-vect-patterns.cc.  */
      81                 :           0 :       if (VECTOR_TYPE_P (type))
      82                 :             :         return unknown_optab;
      83                 :             :       /* FALLTHRU */
      84                 :       68470 :     case RDIV_EXPR:
      85                 :       68470 :     case TRUNC_DIV_EXPR:
      86                 :       68470 :     case EXACT_DIV_EXPR:
      87                 :       68470 :       if (TYPE_SATURATING (type))
      88                 :           0 :         return TYPE_UNSIGNED (type) ? usdiv_optab : ssdiv_optab;
      89                 :       68470 :       return TYPE_UNSIGNED (type) ? udiv_optab : sdiv_optab;
      90                 :             : 
      91                 :      597144 :     case LSHIFT_EXPR:
      92                 :      597144 :       if (VECTOR_TYPE_P (type))
      93                 :             :         {
      94                 :      597109 :           if (subtype == optab_vector)
      95                 :      287081 :             return TYPE_SATURATING (type) ? unknown_optab : vashl_optab;
      96                 :             : 
      97                 :      310028 :           gcc_assert (subtype == optab_scalar);
      98                 :             :         }
      99                 :      310063 :       if (TYPE_SATURATING (type))
     100                 :           0 :         return TYPE_UNSIGNED (type) ? usashl_optab : ssashl_optab;
     101                 :             :       return ashl_optab;
     102                 :             : 
     103                 :      181175 :     case RSHIFT_EXPR:
     104                 :      181175 :       if (VECTOR_TYPE_P (type))
     105                 :             :         {
     106                 :      181147 :           if (subtype == optab_vector)
     107                 :       85634 :             return TYPE_UNSIGNED (type) ? vlshr_optab : vashr_optab;
     108                 :             : 
     109                 :       95513 :           gcc_assert (subtype == optab_scalar);
     110                 :             :         }
     111                 :       95541 :       return TYPE_UNSIGNED (type) ? lshr_optab : ashr_optab;
     112                 :             : 
     113                 :         392 :     case LROTATE_EXPR:
     114                 :         392 :       if (VECTOR_TYPE_P (type))
     115                 :             :         {
     116                 :         392 :           if (subtype == optab_vector)
     117                 :             :             return vrotl_optab;
     118                 :             : 
     119                 :         160 :           gcc_assert (subtype == optab_scalar);
     120                 :             :         }
     121                 :             :       return rotl_optab;
     122                 :             : 
     123                 :        7980 :     case RROTATE_EXPR:
     124                 :        7980 :       if (VECTOR_TYPE_P (type))
     125                 :             :         {
     126                 :        7980 :           if (subtype == optab_vector)
     127                 :             :             return vrotr_optab;
     128                 :             : 
     129                 :        3981 :           gcc_assert (subtype == optab_scalar);
     130                 :             :         }
     131                 :             :       return rotr_optab;
     132                 :             : 
     133                 :       78153 :     case MAX_EXPR:
     134                 :       78153 :       return TYPE_UNSIGNED (type) ? umax_optab : smax_optab;
     135                 :             : 
     136                 :       40704 :     case MIN_EXPR:
     137                 :       40704 :       return TYPE_UNSIGNED (type) ? umin_optab : smin_optab;
     138                 :             : 
     139                 :             :     case POINTER_PLUS_EXPR:
     140                 :             :       return add_optab;
     141                 :             : 
     142                 :             :     case POINTER_DIFF_EXPR:
     143                 :             :       return sub_optab;
     144                 :             : 
     145                 :           0 :     case REALIGN_LOAD_EXPR:
     146                 :           0 :       return vec_realign_load_optab;
     147                 :             : 
     148                 :        1582 :     case WIDEN_SUM_EXPR:
     149                 :        1582 :       return TYPE_UNSIGNED (type) ? usum_widen_optab : ssum_widen_optab;
     150                 :             : 
     151                 :        1173 :     case DOT_PROD_EXPR:
     152                 :        1173 :       {
     153                 :        1173 :         if (subtype == optab_vector_mixed_sign)
     154                 :             :           return usdot_prod_optab;
     155                 :             : 
     156                 :         869 :         return (TYPE_UNSIGNED (type) ? udot_prod_optab : sdot_prod_optab);
     157                 :             :       }
     158                 :             : 
     159                 :         475 :     case SAD_EXPR:
     160                 :         475 :       return TYPE_UNSIGNED (type) ? usad_optab : ssad_optab;
     161                 :             : 
     162                 :       29333 :     case WIDEN_MULT_PLUS_EXPR:
     163                 :       29333 :       return (TYPE_UNSIGNED (type)
     164                 :       29333 :               ? (TYPE_SATURATING (type)
     165                 :       21318 :                  ? usmadd_widen_optab : umadd_widen_optab)
     166                 :        8015 :               : (TYPE_SATURATING (type)
     167                 :        8015 :                  ? ssmadd_widen_optab : smadd_widen_optab));
     168                 :             : 
     169                 :         510 :     case WIDEN_MULT_MINUS_EXPR:
     170                 :         510 :       return (TYPE_UNSIGNED (type)
     171                 :         510 :               ? (TYPE_SATURATING (type)
     172                 :         414 :                  ? usmsub_widen_optab : umsub_widen_optab)
     173                 :          96 :               : (TYPE_SATURATING (type)
     174                 :          96 :                  ? ssmsub_widen_optab : smsub_widen_optab));
     175                 :             : 
     176                 :      159776 :     case VEC_WIDEN_MULT_HI_EXPR:
     177                 :      159776 :       return (TYPE_UNSIGNED (type)
     178                 :      159776 :               ? vec_widen_umult_hi_optab : vec_widen_smult_hi_optab);
     179                 :             : 
     180                 :      159769 :     case VEC_WIDEN_MULT_LO_EXPR:
     181                 :      159769 :       return (TYPE_UNSIGNED (type)
     182                 :      159769 :               ? vec_widen_umult_lo_optab : vec_widen_smult_lo_optab);
     183                 :             : 
     184                 :       43880 :     case VEC_WIDEN_MULT_EVEN_EXPR:
     185                 :       43880 :       return (TYPE_UNSIGNED (type)
     186                 :       43880 :               ? vec_widen_umult_even_optab : vec_widen_smult_even_optab);
     187                 :             : 
     188                 :       43880 :     case VEC_WIDEN_MULT_ODD_EXPR:
     189                 :       43880 :       return (TYPE_UNSIGNED (type)
     190                 :       43880 :               ? vec_widen_umult_odd_optab : vec_widen_smult_odd_optab);
     191                 :             : 
     192                 :        9510 :     case VEC_WIDEN_LSHIFT_HI_EXPR:
     193                 :        9510 :       return (TYPE_UNSIGNED (type)
     194                 :        9510 :               ? vec_widen_ushiftl_hi_optab : vec_widen_sshiftl_hi_optab);
     195                 :             : 
     196                 :        9510 :     case VEC_WIDEN_LSHIFT_LO_EXPR:
     197                 :        9510 :       return (TYPE_UNSIGNED (type)
     198                 :        9510 :               ? vec_widen_ushiftl_lo_optab : vec_widen_sshiftl_lo_optab);
     199                 :             : 
     200                 :       49649 :     case VEC_UNPACK_HI_EXPR:
     201                 :       49649 :       return (TYPE_UNSIGNED (type)
     202                 :       49649 :               ? vec_unpacku_hi_optab : vec_unpacks_hi_optab);
     203                 :             : 
     204                 :       49094 :     case VEC_UNPACK_LO_EXPR:
     205                 :       49094 :       return (TYPE_UNSIGNED (type)
     206                 :       49094 :               ? vec_unpacku_lo_optab : vec_unpacks_lo_optab);
     207                 :             : 
     208                 :        7574 :     case VEC_UNPACK_FLOAT_HI_EXPR:
     209                 :             :       /* The signedness is determined from input operand.  */
     210                 :        7574 :       return (TYPE_UNSIGNED (type)
     211                 :        7574 :               ? vec_unpacku_float_hi_optab : vec_unpacks_float_hi_optab);
     212                 :             : 
     213                 :        7574 :     case VEC_UNPACK_FLOAT_LO_EXPR:
     214                 :             :       /* The signedness is determined from input operand.  */
     215                 :        7574 :       return (TYPE_UNSIGNED (type)
     216                 :        7574 :               ? vec_unpacku_float_lo_optab : vec_unpacks_float_lo_optab);
     217                 :             : 
     218                 :         629 :     case VEC_UNPACK_FIX_TRUNC_HI_EXPR:
     219                 :             :       /* The signedness is determined from output operand.  */
     220                 :         629 :       return (TYPE_UNSIGNED (type)
     221                 :         629 :               ? vec_unpack_ufix_trunc_hi_optab
     222                 :             :               : vec_unpack_sfix_trunc_hi_optab);
     223                 :             : 
     224                 :         629 :     case VEC_UNPACK_FIX_TRUNC_LO_EXPR:
     225                 :             :       /* The signedness is determined from output operand.  */
     226                 :         629 :       return (TYPE_UNSIGNED (type)
     227                 :         629 :               ? vec_unpack_ufix_trunc_lo_optab
     228                 :             :               : vec_unpack_sfix_trunc_lo_optab);
     229                 :             : 
     230                 :       49658 :     case VEC_PACK_TRUNC_EXPR:
     231                 :       49658 :       return vec_pack_trunc_optab;
     232                 :             : 
     233                 :           0 :     case VEC_PACK_SAT_EXPR:
     234                 :           0 :       return TYPE_UNSIGNED (type) ? vec_pack_usat_optab : vec_pack_ssat_optab;
     235                 :             : 
     236                 :        1288 :     case VEC_PACK_FIX_TRUNC_EXPR:
     237                 :             :       /* The signedness is determined from output operand.  */
     238                 :        1288 :       return (TYPE_UNSIGNED (type)
     239                 :        1288 :               ? vec_pack_ufix_trunc_optab : vec_pack_sfix_trunc_optab);
     240                 :             : 
     241                 :         183 :     case VEC_PACK_FLOAT_EXPR:
     242                 :             :       /* The signedness is determined from input operand.  */
     243                 :         183 :       return (TYPE_UNSIGNED (type)
     244                 :         183 :               ? vec_packu_float_optab : vec_packs_float_optab);
     245                 :             : 
     246                 :           0 :     case VEC_DUPLICATE_EXPR:
     247                 :           0 :       return vec_duplicate_optab;
     248                 :             : 
     249                 :           0 :     case VEC_SERIES_EXPR:
     250                 :           0 :       return vec_series_optab;
     251                 :             : 
     252                 :     5657529 :     default:
     253                 :     5657529 :       break;
     254                 :             :     }
     255                 :             : 
     256                 :     5657529 :   trapv = INTEGRAL_TYPE_P (type) && TYPE_OVERFLOW_TRAPS (type);
     257                 :     5657529 :   switch (code)
     258                 :             :     {
     259                 :     3967843 :     case PLUS_EXPR:
     260                 :     3967843 :       if (TYPE_SATURATING (type))
     261                 :           0 :         return TYPE_UNSIGNED (type) ? usadd_optab : ssadd_optab;
     262                 :     3967843 :       return trapv ? addv_optab : add_optab;
     263                 :             : 
     264                 :      789324 :     case MINUS_EXPR:
     265                 :      789324 :       if (TYPE_SATURATING (type))
     266                 :           0 :         return TYPE_UNSIGNED (type) ? ussub_optab : sssub_optab;
     267                 :      789324 :       return trapv ? subv_optab : sub_optab;
     268                 :             : 
     269                 :      740117 :     case MULT_EXPR:
     270                 :      740117 :       if (TYPE_SATURATING (type))
     271                 :           0 :         return TYPE_UNSIGNED (type) ? usmul_optab : ssmul_optab;
     272                 :      740117 :       return trapv ? smulv_optab : smul_optab;
     273                 :             : 
     274                 :       58928 :     case NEGATE_EXPR:
     275                 :       58928 :       if (TYPE_SATURATING (type))
     276                 :           0 :         return TYPE_UNSIGNED (type) ? usneg_optab : ssneg_optab;
     277                 :       58928 :       return trapv ? negv_optab : neg_optab;
     278                 :             : 
     279                 :        1160 :     case ABS_EXPR:
     280                 :        1160 :       return trapv ? absv_optab : abs_optab;
     281                 :             : 
     282                 :             :     case ABSU_EXPR:
     283                 :             :       return abs_optab;
     284                 :             :     default:
     285                 :             :       return unknown_optab;
     286                 :             :     }
     287                 :             : }
     288                 :             : 
     289                 :             : /* Check whether an operation represented by CODE is a 'half' widening operation
     290                 :             :    in which the input vector type has half the number of bits of the output
     291                 :             :    vector type e.g. V8QI->V8HI.
     292                 :             : 
     293                 :             :    This is handled by widening the inputs using NOP_EXPRs then using a
     294                 :             :    non-widening stmt e.g. MINUS_EXPR.  RTL fusing converts these to the widening
     295                 :             :    hardware instructions if supported.
     296                 :             : 
     297                 :             :    The more typical case (handled in supportable_widening_operation) is where
     298                 :             :    the input vector type has the same number of bits as the output vector type.
     299                 :             :    In this case half the elements of the input vectors must be processed at a
     300                 :             :    time into respective vector outputs with elements twice as wide i.e. a
     301                 :             :    'hi'/'lo' pair using codes such as VEC_WIDEN_MINUS_HI/LO.
     302                 :             : 
     303                 :             :    Supported widening operations:
     304                 :             :     WIDEN_MULT_EXPR
     305                 :             :     WIDEN_LSHIFT_EXPR
     306                 :             : 
     307                 :             :    Output:
     308                 :             :    - CODE1 - The non-widened code, which will be used after the inputs are
     309                 :             :      converted to the wide type.  */
     310                 :             : bool
     311                 :         221 : supportable_half_widening_operation (enum tree_code code, tree vectype_out,
     312                 :             :                                      tree vectype_in, enum tree_code *code1)
     313                 :             : {
     314                 :         221 :   machine_mode m1,m2;
     315                 :         221 :   enum tree_code dummy_code;
     316                 :         221 :   optab op;
     317                 :             : 
     318                 :         221 :   gcc_assert (VECTOR_TYPE_P (vectype_out) && VECTOR_TYPE_P (vectype_in));
     319                 :             : 
     320                 :         221 :   m1 = TYPE_MODE (vectype_out);
     321                 :         221 :   m2 = TYPE_MODE (vectype_in);
     322                 :             : 
     323                 :         221 :   if (!VECTOR_MODE_P (m1) || !VECTOR_MODE_P (m2))
     324                 :             :     return false;
     325                 :             : 
     326                 :         221 :   if (maybe_ne (TYPE_VECTOR_SUBPARTS (vectype_in),
     327                 :         442 :                   TYPE_VECTOR_SUBPARTS (vectype_out)))
     328                 :             :     return false;
     329                 :             : 
     330                 :         221 :   switch (code)
     331                 :             :     {
     332                 :           0 :     case WIDEN_LSHIFT_EXPR:
     333                 :           0 :       *code1 = LSHIFT_EXPR;
     334                 :           0 :       break;
     335                 :         221 :     case WIDEN_MULT_EXPR:
     336                 :         221 :       *code1 = MULT_EXPR;
     337                 :         221 :       break;
     338                 :             :     default:
     339                 :             :       return false;
     340                 :             :     }
     341                 :             : 
     342                 :         221 :   if (!supportable_convert_operation (NOP_EXPR, vectype_out, vectype_in,
     343                 :             :                                      &dummy_code))
     344                 :             :     return false;
     345                 :             : 
     346                 :         189 :   op = optab_for_tree_code (*code1, vectype_out, optab_vector);
     347                 :         189 :   return (optab_handler (op, TYPE_MODE (vectype_out)) != CODE_FOR_nothing);
     348                 :             : }
     349                 :             : 
     350                 :             : /* Function supportable_convert_operation
     351                 :             : 
     352                 :             :    Check whether an operation represented by the code CODE is a
     353                 :             :    convert operation that is supported by the target platform in
     354                 :             :    vector form (i.e., when operating on arguments of type VECTYPE_IN
     355                 :             :    producing a result of type VECTYPE_OUT).
     356                 :             : 
     357                 :             :    Convert operations we currently support directly are FIX_TRUNC and FLOAT.
     358                 :             :    This function checks if these operations are supported
     359                 :             :    by the target platform directly (via vector tree-codes).
     360                 :             : 
     361                 :             :    Output:
     362                 :             :    - CODE1 is code of vector operation to be used when
     363                 :             :    vectorizing the operation, if available.  */
     364                 :             : 
     365                 :             : bool
     366                 :       61744 : supportable_convert_operation (enum tree_code code,
     367                 :             :                                tree vectype_out, tree vectype_in,
     368                 :             :                                enum tree_code *code1)
     369                 :             : {
     370                 :       61744 :   machine_mode m1,m2;
     371                 :       61744 :   bool truncp;
     372                 :             : 
     373                 :       61744 :   gcc_assert (VECTOR_TYPE_P (vectype_out) && VECTOR_TYPE_P (vectype_in));
     374                 :             : 
     375                 :       61744 :   m1 = TYPE_MODE (vectype_out);
     376                 :       61744 :   m2 = TYPE_MODE (vectype_in);
     377                 :             : 
     378                 :       61744 :   if (!VECTOR_MODE_P (m1) || !VECTOR_MODE_P (m2))
     379                 :             :     return false;
     380                 :             : 
     381                 :             :   /* First check if we can done conversion directly.  */
     382                 :       61608 :   if ((code == FIX_TRUNC_EXPR
     383                 :        1512 :        && can_fix_p (m1,m2,TYPE_UNSIGNED (vectype_out), &truncp)
     384                 :             :           != CODE_FOR_nothing)
     385                 :       61964 :       || (code == FLOAT_EXPR
     386                 :        7416 :           && can_float_p (m1,m2,TYPE_UNSIGNED (vectype_in))
     387                 :             :              != CODE_FOR_nothing))
     388                 :             :     {
     389                 :        8234 :       *code1 = code;
     390                 :        8234 :       return true;
     391                 :             :     }
     392                 :             : 
     393                 :      106748 :   if (GET_MODE_UNIT_PRECISION (m1) > GET_MODE_UNIT_PRECISION (m2)
     394                 :       53374 :       && can_extend_p (m1, m2, TYPE_UNSIGNED (vectype_in)))
     395                 :             :     {
     396                 :        5363 :       *code1 = code;
     397                 :        5363 :       return true;
     398                 :             :     }
     399                 :             : 
     400                 :       96022 :   if (GET_MODE_UNIT_PRECISION (m1) < GET_MODE_UNIT_PRECISION (m2)
     401                 :       53457 :       && convert_optab_handler (trunc_optab, m1, m2) != CODE_FOR_nothing)
     402                 :             :     {
     403                 :        3128 :       *code1 = code;
     404                 :        3128 :       return true;
     405                 :             :     }
     406                 :             : 
     407                 :             :   return false;
     408                 :             : }
     409                 :             : 
     410                 :             : /* Return true iff vec_cmp_optab/vec_cmpu_optab can handle a vector comparison
     411                 :             :    for code CODE, comparing operands of type VALUE_TYPE and producing a result
     412                 :             :    of type MASK_TYPE.  */
     413                 :             : 
     414                 :             : static bool
     415                 :     1130776 : vec_cmp_icode_p (tree value_type, tree mask_type, enum tree_code code)
     416                 :             : {
     417                 :     1130776 :   enum rtx_code rcode = get_rtx_code_1 (code, TYPE_UNSIGNED (value_type));
     418                 :     1130776 :   if (rcode == UNKNOWN)
     419                 :             :     return false;
     420                 :             : 
     421                 :     1130776 :   return can_vec_cmp_compare_p (rcode, TYPE_MODE (value_type),
     422                 :     2261552 :                                 TYPE_MODE (mask_type));
     423                 :             : }
     424                 :             : 
     425                 :             : /* Return true iff vec_cmpeq_optab can handle a vector comparison for code
     426                 :             :    CODE, comparing operands of type VALUE_TYPE and producing a result of type
     427                 :             :    MASK_TYPE.  */
     428                 :             : 
     429                 :             : static bool
     430                 :      304959 : vec_cmp_eq_icode_p (tree value_type, tree mask_type, enum tree_code code)
     431                 :             : {
     432                 :      304959 :   if (code != EQ_EXPR && code != NE_EXPR)
     433                 :             :     return false;
     434                 :             : 
     435                 :      158574 :   return get_vec_cmp_eq_icode (TYPE_MODE (value_type), TYPE_MODE (mask_type))
     436                 :      158574 :          != CODE_FOR_nothing;
     437                 :             : }
     438                 :             : 
     439                 :             : /* Return TRUE if appropriate vector insn is available
     440                 :             :    for vector comparison expr with vector type VALUE_TYPE
     441                 :             :    and resulting mask with MASK_TYPE.  */
     442                 :             : 
     443                 :             : bool
     444                 :     1130776 : expand_vec_cmp_expr_p (tree value_type, tree mask_type, enum tree_code code)
     445                 :             : {
     446                 :     1130776 :   return vec_cmp_icode_p (value_type, mask_type, code)
     447                 :     1130776 :          || vec_cmp_eq_icode_p (value_type, mask_type, code);
     448                 :             : }
     449                 :             : 
     450                 :             : /* Return TRUE iff, appropriate vector insns are available
     451                 :             :    for vector cond expr with vector type VALUE_TYPE and a comparison
     452                 :             :    with operand vector types in CMP_OP_TYPE.  */
     453                 :             : 
     454                 :             : bool
     455                 :       44942 : expand_vec_cond_expr_p (tree value_type, tree cmp_op_type)
     456                 :             : {
     457                 :       44942 :   if (VECTOR_BOOLEAN_TYPE_P (cmp_op_type)
     458                 :      134826 :       && get_vcond_mask_icode (TYPE_MODE (value_type),
     459                 :       44942 :                                TYPE_MODE (cmp_op_type)) != CODE_FOR_nothing)
     460                 :             :     return true;
     461                 :             : 
     462                 :             :   return false;
     463                 :             : }
     464                 :             : 
     465                 :             : /* Use the current target and options to initialize
     466                 :             :    TREE_OPTIMIZATION_OPTABS (OPTNODE).  */
     467                 :             : 
     468                 :             : void
     469                 :     1613558 : init_tree_optimization_optabs (tree optnode)
     470                 :             : {
     471                 :             :   /* Quick exit if we have already computed optabs for this target.  */
     472                 :     1613558 :   if (TREE_OPTIMIZATION_BASE_OPTABS (optnode) == this_target_optabs)
     473                 :             :     return;
     474                 :             : 
     475                 :             :   /* Forget any previous information and set up for the current target.  */
     476                 :       24166 :   TREE_OPTIMIZATION_BASE_OPTABS (optnode) = this_target_optabs;
     477                 :       24166 :   struct target_optabs *tmp_optabs = (struct target_optabs *)
     478                 :       24166 :     TREE_OPTIMIZATION_OPTABS (optnode);
     479                 :       24166 :   if (tmp_optabs)
     480                 :         429 :     memset (tmp_optabs, 0, sizeof (struct target_optabs));
     481                 :             :   else
     482                 :       23737 :     tmp_optabs = ggc_cleared_alloc<target_optabs> ();
     483                 :             : 
     484                 :             :   /* Generate a new set of optabs into tmp_optabs.  */
     485                 :       24166 :   init_all_optabs (tmp_optabs);
     486                 :             : 
     487                 :             :   /* If the optabs changed, record it.  */
     488                 :       24166 :   if (memcmp (tmp_optabs, this_target_optabs, sizeof (struct target_optabs)))
     489                 :       11361 :     TREE_OPTIMIZATION_OPTABS (optnode) = tmp_optabs;
     490                 :             :   else
     491                 :             :     {
     492                 :       12805 :       TREE_OPTIMIZATION_OPTABS (optnode) = NULL;
     493                 :       12805 :       ggc_free (tmp_optabs);
     494                 :             :     }
     495                 :             : }
     496                 :             : 
     497                 :             : /* Return TRUE if the target has support for vector right shift of an
     498                 :             :    operand of type TYPE.  If OT_TYPE is OPTAB_DEFAULT, check for existence
     499                 :             :    of a shift by either a scalar or a vector.  Otherwise, check only
     500                 :             :    for a shift that matches OT_TYPE.  */
     501                 :             : 
     502                 :             : bool
     503                 :       34533 : target_supports_op_p (tree type, enum tree_code code,
     504                 :             :                       enum optab_subtype ot_subtype)
     505                 :             : {
     506                 :       34533 :   optab ot = optab_for_tree_code (code, type, ot_subtype);
     507                 :       34533 :   return ot != unknown_optab && can_implement_p (ot, TYPE_MODE (type));
     508                 :             : }
     509                 :             : 
     510                 :             : /* Return true if the target has support for masked load/store.
     511                 :             :    We can support masked load/store by either mask{load,store}
     512                 :             :    or mask_len_{load,store}.
     513                 :             :    This helper function checks whether target supports masked
     514                 :             :    load/store and return corresponding IFN in the last argument
     515                 :             :    (IFN_MASK_{LOAD,STORE} or IFN_MASK_LEN_{LOAD,STORE}).
     516                 :             :    If there is support and ELSVALS is nonzero store the possible else values
     517                 :             :    in the vector it points to.  */
     518                 :             : 
     519                 :             : bool
     520                 :       32932 : target_supports_mask_load_store_p (machine_mode mode, machine_mode mask_mode,
     521                 :             :                                    bool is_load, internal_fn *ifn,
     522                 :             :                                    vec<int> *elsvals)
     523                 :             : {
     524                 :       32932 :   optab op = is_load ? maskload_optab : maskstore_optab;
     525                 :        6956 :   optab len_op = is_load ? mask_len_load_optab : mask_len_store_optab;
     526                 :       32932 :   enum insn_code icode;
     527                 :       32932 :   if ((icode = convert_optab_handler (op, mode, mask_mode))
     528                 :             :       != CODE_FOR_nothing)
     529                 :             :     {
     530                 :        5822 :       if (ifn)
     531                 :        1553 :         *ifn = is_load ? IFN_MASK_LOAD : IFN_MASK_STORE;
     532                 :        5822 :       if (elsvals && is_load)
     533                 :        1511 :         get_supported_else_vals (icode,
     534                 :        1511 :                                  internal_fn_else_index (IFN_MASK_LOAD),
     535                 :             :                                  *elsvals);
     536                 :        5822 :       return true;
     537                 :             :     }
     538                 :       27110 :   else if ((icode = convert_optab_handler (len_op, mode, mask_mode))
     539                 :             :            != CODE_FOR_nothing)
     540                 :             :     {
     541                 :           0 :       if (ifn)
     542                 :           0 :         *ifn = is_load ? IFN_MASK_LEN_LOAD : IFN_MASK_LEN_STORE;
     543                 :           0 :       if (elsvals && is_load)
     544                 :           0 :         get_supported_else_vals (icode,
     545                 :           0 :                                  internal_fn_else_index (IFN_MASK_LEN_LOAD),
     546                 :             :                                  *elsvals);
     547                 :           0 :       return true;
     548                 :             :     }
     549                 :             :   return false;
     550                 :             : }
     551                 :             : 
     552                 :             : /* Return true if target supports vector masked load/store for mode.
     553                 :             :    An additional output in the last argument which is the IFN pointer.
     554                 :             :    We set IFN as MASK_{LOAD,STORE} or MASK_LEN_{LOAD,STORE} according
     555                 :             :    which optab is supported in the target.
     556                 :             :    If there is support and ELSVALS is nonzero store the possible else values
     557                 :             :    in the vector it points to.  */
     558                 :             : 
     559                 :             : bool
     560                 :       14323 : can_vec_mask_load_store_p (machine_mode mode,
     561                 :             :                            machine_mode mask_mode,
     562                 :             :                            bool is_load,
     563                 :             :                            internal_fn *ifn,
     564                 :             :                            vec<int> *elsvals)
     565                 :             : {
     566                 :       14323 :   machine_mode vmode;
     567                 :             : 
     568                 :             :   /* If mode is vector mode, check it directly.  */
     569                 :       14323 :   if (VECTOR_MODE_P (mode))
     570                 :        3852 :     return target_supports_mask_load_store_p (mode, mask_mode, is_load, ifn,
     571                 :        3852 :                                               elsvals);
     572                 :             : 
     573                 :             :   /* Otherwise, return true if there is some vector mode with
     574                 :             :      the mask load/store supported.  */
     575                 :             : 
     576                 :             :   /* See if there is any chance the mask load or store might be
     577                 :             :      vectorized.  If not, punt.  */
     578                 :       10471 :   scalar_mode smode;
     579                 :       10471 :   if (!is_a <scalar_mode> (mode, &smode))
     580                 :             :     return false;
     581                 :             : 
     582                 :       10471 :   vmode = targetm.vectorize.preferred_simd_mode (smode);
     583                 :        1882 :   if (VECTOR_MODE_P (vmode)
     584                 :       10309 :       && targetm.vectorize.get_mask_mode (vmode).exists (&mask_mode)
     585                 :       20780 :       && target_supports_mask_load_store_p (vmode, mask_mode, is_load, ifn,
     586                 :             :                                             elsvals))
     587                 :        2080 :     return true;
     588                 :             : 
     589                 :        8391 :   auto_vector_modes vector_modes;
     590                 :        8391 :   targetm.vectorize.autovectorize_vector_modes (&vector_modes, true);
     591                 :       48945 :   for (machine_mode base_mode : vector_modes)
     592                 :       23772 :     if (related_vector_mode (base_mode, smode).exists (&vmode)
     593                 :       42543 :         && targetm.vectorize.get_mask_mode (vmode).exists (&mask_mode)
     594                 :       18771 :         && target_supports_mask_load_store_p (vmode, mask_mode, is_load, ifn,
     595                 :             :                                               elsvals))
     596                 :           0 :       return true;
     597                 :             :   return false;
     598                 :        8391 : }
     599                 :             : 
     600                 :             : /* Return true if the target has support for len load/store.
     601                 :             :    We can support len load/store by either len_{load,store}
     602                 :             :    or mask_len_{load,store}.
     603                 :             :    This helper function checks whether target supports len
     604                 :             :    load/store and return corresponding IFN in the last argument
     605                 :             :    (IFN_LEN_{LOAD,STORE} or IFN_MASK_LEN_{LOAD,STORE}).
     606                 :             :    If there is support and ELSVALS is nonzero store thepossible
     607                 :             :    else values in the vector it points to.  */
     608                 :             : 
     609                 :             : static bool
     610                 :         214 : target_supports_len_load_store_p (machine_mode mode, bool is_load,
     611                 :             :                                   internal_fn *ifn, vec<int> *elsvals)
     612                 :             : {
     613                 :         214 :   optab op = is_load ? len_load_optab : len_store_optab;
     614                 :          52 :   optab masked_op = is_load ? mask_len_load_optab : mask_len_store_optab;
     615                 :             : 
     616                 :         214 :   if (direct_optab_handler (op, mode))
     617                 :             :     {
     618                 :           0 :       if (ifn)
     619                 :           0 :         *ifn = is_load ? IFN_LEN_LOAD : IFN_LEN_STORE;
     620                 :           0 :       return true;
     621                 :             :     }
     622                 :         214 :   machine_mode mask_mode;
     623                 :         214 :   enum insn_code icode;
     624                 :         428 :   if (targetm.vectorize.get_mask_mode (mode).exists (&mask_mode)
     625                 :         214 :       && ((icode = convert_optab_handler (masked_op, mode, mask_mode))
     626                 :             :           != CODE_FOR_nothing))
     627                 :             :     {
     628                 :           0 :       if (ifn)
     629                 :           0 :         *ifn = is_load ? IFN_MASK_LEN_LOAD : IFN_MASK_LEN_STORE;
     630                 :           0 :       if (elsvals && is_load)
     631                 :           0 :         get_supported_else_vals (icode,
     632                 :           0 :                                  internal_fn_else_index (IFN_MASK_LEN_LOAD),
     633                 :             :                                  *elsvals);
     634                 :           0 :       return true;
     635                 :             :     }
     636                 :             :   return false;
     637                 :             : }
     638                 :             : 
     639                 :             : /* If target supports vector load/store with length for vector mode MODE,
     640                 :             :    return the corresponding vector mode, otherwise return opt_machine_mode ().
     641                 :             :    There are two flavors for vector load/store with length, one is to measure
     642                 :             :    length with bytes, the other is to measure length with lanes.
     643                 :             :    As len_{load,store} optabs point out, for the flavor with bytes, we use
     644                 :             :    VnQI to wrap the other supportable same size vector modes.
     645                 :             :    An additional output in the last argument which is the IFN pointer.
     646                 :             :    We set IFN as LEN_{LOAD,STORE} or MASK_LEN_{LOAD,STORE} according
     647                 :             :    which optab is supported in the target.
     648                 :             :    If there is support and ELSVALS is nonzero store the possible else values
     649                 :             :    in the vector it points to.  */
     650                 :             : 
     651                 :             : opt_machine_mode
     652                 :         107 : get_len_load_store_mode (machine_mode mode, bool is_load, internal_fn *ifn,
     653                 :             :                          vec<int> *elsvals)
     654                 :             : {
     655                 :         107 :   gcc_assert (VECTOR_MODE_P (mode));
     656                 :             : 
     657                 :             :   /* Check if length in lanes supported for this mode directly.  */
     658                 :         107 :   if (target_supports_len_load_store_p (mode, is_load, ifn, elsvals))
     659                 :           0 :     return mode;
     660                 :             : 
     661                 :             :   /* Check if length in bytes supported for same vector size VnQI.  */
     662                 :         107 :   machine_mode vmode;
     663                 :         214 :   poly_uint64 nunits = GET_MODE_SIZE (mode);
     664                 :         107 :   if (related_vector_mode (mode, QImode, nunits).exists (&vmode)
     665                 :         107 :       && target_supports_len_load_store_p (vmode, is_load, ifn, elsvals))
     666                 :           0 :     return vmode;
     667                 :             : 
     668                 :         107 :   return opt_machine_mode ();
     669                 :             : }
        

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.