(root)/
glibc-2.38/
sysdeps/
sparc/
dl-procinfo.c
       1  /* Data for Linux/sparc version of processor capability information.
       2     Copyright (C) 2002-2023 Free Software Foundation, Inc.
       3     This file is part of the GNU C Library.
       4  
       5     The GNU C Library is free software; you can redistribute it and/or
       6     modify it under the terms of the GNU Lesser General Public
       7     License as published by the Free Software Foundation; either
       8     version 2.1 of the License, or (at your option) any later version.
       9  
      10     The GNU C Library is distributed in the hope that it will be useful,
      11     but WITHOUT ANY WARRANTY; without even the implied warranty of
      12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      13     Lesser General Public License for more details.
      14  
      15     You should have received a copy of the GNU Lesser General Public
      16     License along with the GNU C Library; if not, see
      17     <https://www.gnu.org/licenses/>.  */
      18  
      19  /* This information must be kept in sync with the _DL_HWCAP_COUNT
      20     definition in procinfo.h.
      21  
      22     If anything should be added here check whether the size of each string
      23     is still ok with the given array size.
      24  
      25     All the #ifdefs in the definitions ar equite irritating but
      26     necessary if we want to avoid duplicating the information.  There
      27     are three different modes:
      28  
      29     - PROCINFO_DECL is defined.  This means we are only interested in
      30       declarations.
      31  
      32     - PROCINFO_DECL is not defined:
      33  
      34       + if SHARED is defined the file is included in an array
      35         initializer.  The .element = { ... } syntax is needed.
      36  
      37       + if SHARED is not defined a normal array initialization is
      38         needed.
      39    */
      40  
      41  #ifndef PROCINFO_CLASS
      42  #define PROCINFO_CLASS
      43  #endif
      44  
      45  #if !defined PROCINFO_DECL && defined SHARED
      46    ._dl_sparc_cap_flags
      47  #else
      48  PROCINFO_CLASS const char _dl_sparc_cap_flags[28][11]
      49  #endif
      50  #ifndef PROCINFO_DECL
      51    = { "flush", "stbar", "swap", "muldiv", "v9", "ultra3", "v9v", "v9v2",
      52        "mul32", "div32", "fsmuld", "v8plus", "popc", "vis", "vis2",
      53        "ASIBlkInit", "fmaf", "vis3", "hpc", "random", "trans", "fjfmau",
      54        "ima", "cspare", "pause", "cbcond", "crypto", "adp" }
      55  #endif
      56  #if !defined SHARED || defined PROCINFO_DECL
      57  ;
      58  #else
      59  ,
      60  #endif
      61  
      62  #undef PROCINFO_DECL
      63  #undef PROCINFO_CLASS