LCOV - code coverage report
Current view: top level - gcc/cp - lex.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 93.5 % 463 433
Test Date: 2024-12-21 13:15:12 Functions: 92.3 % 39 36
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /* Separate lexical analyzer for GNU C++.
       2                 :             :    Copyright (C) 1987-2024 Free Software Foundation, Inc.
       3                 :             :    Hacked by Michael Tiemann (tiemann@cygnus.com)
       4                 :             : 
       5                 :             : This file is part of GCC.
       6                 :             : 
       7                 :             : GCC is free software; you can redistribute it and/or modify
       8                 :             : it under the terms of the GNU General Public License as published by
       9                 :             : the Free Software Foundation; either version 3, or (at your option)
      10                 :             : any later version.
      11                 :             : 
      12                 :             : GCC is distributed in the hope that it will be useful,
      13                 :             : but WITHOUT ANY WARRANTY; without even the implied warranty of
      14                 :             : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      15                 :             : GNU General Public License for more details.
      16                 :             : 
      17                 :             : You should have received a copy of the GNU General Public License
      18                 :             : along with GCC; see the file COPYING3.  If not see
      19                 :             : <http://www.gnu.org/licenses/>.  */
      20                 :             : 
      21                 :             : 
      22                 :             : /* This file is the lexical analyzer for GNU C++.  */
      23                 :             : 
      24                 :             : #include "config.h"
      25                 :             : /* For use with name_hint.  */
      26                 :             : #include "system.h"
      27                 :             : #include "coretypes.h"
      28                 :             : #include "cp-tree.h"
      29                 :             : #include "stringpool.h"
      30                 :             : #include "c-family/c-pragma.h"
      31                 :             : #include "c-family/c-objc.h"
      32                 :             : #include "gcc-rich-location.h"
      33                 :             : #include "cp-name-hint.h"
      34                 :             : #include "langhooks.h"
      35                 :             : 
      36                 :             : static int interface_strcmp (const char *);
      37                 :             : static void init_cp_traits (void);
      38                 :             : static void init_cp_pragma (void);
      39                 :             : 
      40                 :             : static tree parse_strconst_pragma (const char *, int);
      41                 :             : static void handle_pragma_vtable (cpp_reader *);
      42                 :             : static void handle_pragma_unit (cpp_reader *);
      43                 :             : static void handle_pragma_interface (cpp_reader *);
      44                 :             : static void handle_pragma_implementation (cpp_reader *);
      45                 :             : 
      46                 :             : static void init_operators (void);
      47                 :             : static void copy_lang_type (tree);
      48                 :             : 
      49                 :             : /* A constraint that can be tested at compile time.  */
      50                 :             : #define CONSTRAINT(name, expr) extern int constraint_##name [(expr) ? 1 : -1]
      51                 :             : 
      52                 :             : /* Functions and data structures for #pragma interface.
      53                 :             : 
      54                 :             :    `#pragma implementation' means that the main file being compiled
      55                 :             :    is considered to implement (provide) the classes that appear in
      56                 :             :    its main body.  I.e., if this is file "foo.cc", and class `bar'
      57                 :             :    is defined in "foo.cc", then we say that "foo.cc implements bar".
      58                 :             : 
      59                 :             :    All main input files "implement" themselves automagically.
      60                 :             : 
      61                 :             :    `#pragma interface' means that unless this file (of the form "foo.h"
      62                 :             :    is not presently being included by file "foo.cc", the
      63                 :             :    CLASSTYPE_INTERFACE_ONLY bit gets set.  The effect is that none
      64                 :             :    of the vtables nor any of the inline functions defined in foo.h
      65                 :             :    will ever be output.
      66                 :             : 
      67                 :             :    There are cases when we want to link files such as "defs.h" and
      68                 :             :    "main.cc".  In this case, we give "defs.h" a `#pragma interface',
      69                 :             :    and "main.cc" has `#pragma implementation "defs.h"'.  */
      70                 :             : 
      71                 :             : struct impl_files
      72                 :             : {
      73                 :             :   const char *filename;
      74                 :             :   struct impl_files *next;
      75                 :             : };
      76                 :             : 
      77                 :             : static struct impl_files *impl_file_chain;
      78                 :             : 
      79                 :             : void
      80                 :       92525 : cxx_finish (void)
      81                 :             : {
      82                 :       92525 :   c_common_finish ();
      83                 :       92525 : }
      84                 :             : 
      85                 :             : ovl_op_info_t ovl_op_info[2][OVL_OP_MAX] =
      86                 :             :   {
      87                 :             :     {
      88                 :             :       {NULL_TREE, NULL, NULL, ERROR_MARK, OVL_OP_ERROR_MARK, 0},
      89                 :             :       {NULL_TREE, NULL, NULL, NOP_EXPR, OVL_OP_NOP_EXPR, 0},
      90                 :             : #define DEF_OPERATOR(NAME, CODE, MANGLING, FLAGS) \
      91                 :             :       {NULL_TREE, NAME, MANGLING, CODE, OVL_OP_##CODE, FLAGS},
      92                 :             : #define OPERATOR_TRANSITION }, {                        \
      93                 :             :       {NULL_TREE, NULL, NULL, ERROR_MARK, OVL_OP_ERROR_MARK, 0},
      94                 :             : #include "operators.def"
      95                 :             :     }
      96                 :             :   };
      97                 :             : unsigned char ovl_op_mapping[MAX_TREE_CODES];
      98                 :             : unsigned char ovl_op_alternate[OVL_OP_MAX];
      99                 :             : 
     100                 :             : /* The trait table, declared in cp-tree.h.  */
     101                 :             : const cp_trait cp_traits[] =
     102                 :             : {
     103                 :             : #define DEFTRAIT(TCC, CODE, NAME, ARITY) \
     104                 :             :   { NAME, CPTK_##CODE, ARITY, (TCC == tcc_type) },
     105                 :             : #include "cp-trait.def"
     106                 :             : #undef DEFTRAIT
     107                 :             : };
     108                 :             : /* The trait table cannot have more than 255 (addr_space_t) entries since
     109                 :             :    the index is retrieved through IDENTIFIER_CP_INDEX.  */
     110                 :             : static_assert(ARRAY_SIZE (cp_traits) <= 255,
     111                 :             :               "cp_traits array cannot have more than 255 entries");
     112                 :             : 
     113                 :             : /* Get the name of the kind of identifier T.  */
     114                 :             : 
     115                 :             : const char *
     116                 :           0 : get_identifier_kind_name (tree id)
     117                 :             : {
     118                 :             :   /* Keep in sync with cp_id_kind enumeration.  */
     119                 :           0 :   static const char *const names[cik_max] = {
     120                 :             :     "normal", "keyword", "constructor", "destructor",
     121                 :             :     "simple-op", "assign-op", "conv-op", "<reserved>udlit-op"
     122                 :             :   };
     123                 :             : 
     124                 :           0 :   unsigned kind = 0;
     125                 :           0 :   kind |= IDENTIFIER_KIND_BIT_2 (id) << 2;
     126                 :           0 :   kind |= IDENTIFIER_KIND_BIT_1 (id) << 1;
     127                 :           0 :   kind |= IDENTIFIER_KIND_BIT_0 (id) << 0;
     128                 :             : 
     129                 :           0 :   return names[kind];
     130                 :             : }
     131                 :             : 
     132                 :             : /* Set the identifier kind, which we expect to currently be zero.  */
     133                 :             : 
     134                 :             : void
     135                 :    24164819 : set_identifier_kind (tree id, cp_identifier_kind kind)
     136                 :             : {
     137                 :    24164819 :   gcc_checking_assert (!IDENTIFIER_KIND_BIT_2 (id)
     138                 :             :                        & !IDENTIFIER_KIND_BIT_1 (id)
     139                 :             :                        & !IDENTIFIER_KIND_BIT_0 (id));
     140                 :    24164819 :   IDENTIFIER_KIND_BIT_2 (id) |= (kind >> 2) & 1;
     141                 :    24164819 :   IDENTIFIER_KIND_BIT_1 (id) |= (kind >> 1) & 1;
     142                 :    24164819 :   IDENTIFIER_KIND_BIT_0 (id) |= (kind >> 0) & 1;
     143                 :    24164819 : }
     144                 :             : 
     145                 :             : /* Create and tag the internal operator name for the overloaded
     146                 :             :    operator PTR describes.  */
     147                 :             : 
     148                 :             : static tree
     149                 :     5191368 : set_operator_ident (ovl_op_info_t *ptr)
     150                 :             : {
     151                 :     5191368 :   char buffer[32];
     152                 :    10382736 :   size_t len = snprintf (buffer, sizeof (buffer), "operator%s%s",
     153                 :     5191368 :                          &" "[ptr->name[0] && ptr->name[0] != '_'
     154                 :     5191368 :                               && !ISALPHA (ptr->name[0])],
     155                 :     5191368 :                          ptr->name);
     156                 :     5191368 :   gcc_checking_assert (len < sizeof (buffer));
     157                 :             : 
     158                 :     5191368 :   tree ident = get_identifier_with_length (buffer, len);
     159                 :     5191368 :   ptr->identifier = ident;
     160                 :             : 
     161                 :     5191368 :   return ident;
     162                 :             : }
     163                 :             : 
     164                 :             : /* Initialize data structures that keep track of operator names.  */
     165                 :             : 
     166                 :             : static void
     167                 :       92703 : init_operators (void)
     168                 :             : {
     169                 :             :   /* We rely on both these being zero.  */
     170                 :       92703 :   gcc_checking_assert (!OVL_OP_ERROR_MARK && !ERROR_MARK);
     171                 :             : 
     172                 :             :   /* This loop iterates backwards because we need to move the
     173                 :             :      assignment operators down to their correct slots.  I.e. morally
     174                 :             :      equivalent to an overlapping memmove where dest > src.  Slot
     175                 :             :      zero is for error_mark, so hae no operator. */
     176                 :     5376774 :   for (unsigned ix = OVL_OP_MAX; --ix;)
     177                 :             :     {
     178                 :     5284071 :       ovl_op_info_t *op_ptr = &ovl_op_info[false][ix];
     179                 :             : 
     180                 :     5284071 :       if (op_ptr->name)
     181                 :             :         {
     182                 :     4171635 :           tree ident = set_operator_ident (op_ptr);
     183                 :     4171635 :           if (unsigned index = IDENTIFIER_CP_INDEX (ident))
     184                 :             :             {
     185                 :      556218 :               ovl_op_info_t *bin_ptr = &ovl_op_info[false][index];
     186                 :             : 
     187                 :             :               /* They should only differ in unary/binary ness.  */
     188                 :      556218 :               gcc_checking_assert ((op_ptr->flags ^ bin_ptr->flags)
     189                 :             :                                    == OVL_OP_FLAG_AMBIARY);
     190                 :      556218 :               bin_ptr->flags |= op_ptr->flags;
     191                 :      556218 :               ovl_op_alternate[index] = ix;
     192                 :             :             }
     193                 :             :           else
     194                 :             :             {
     195                 :     3615417 :               IDENTIFIER_CP_INDEX (ident) = ix;
     196                 :     3615417 :               set_identifier_kind (ident, cik_simple_op);
     197                 :             :             }
     198                 :             :         }
     199                 :     5284071 :       if (op_ptr->tree_code)
     200                 :             :         {
     201                 :     5284071 :           gcc_checking_assert (op_ptr->ovl_op_code == ix
     202                 :             :                                && !ovl_op_mapping[op_ptr->tree_code]);
     203                 :     5284071 :           ovl_op_mapping[op_ptr->tree_code] = op_ptr->ovl_op_code;
     204                 :             :         }
     205                 :             : 
     206                 :     5284071 :       ovl_op_info_t *as_ptr = &ovl_op_info[true][ix];
     207                 :     5284071 :       if (as_ptr->name)
     208                 :             :         {
     209                 :             :           /* These will be placed at the start of the array, move to
     210                 :             :              the correct slot and initialize.  */
     211                 :     1019733 :           if (as_ptr->ovl_op_code != ix)
     212                 :             :             {
     213                 :      927030 :               ovl_op_info_t *dst_ptr = &ovl_op_info[true][as_ptr->ovl_op_code];
     214                 :      927030 :               gcc_assert (as_ptr->ovl_op_code > ix && !dst_ptr->tree_code);
     215                 :      927030 :               memcpy (dst_ptr, as_ptr, sizeof (*dst_ptr));
     216                 :      927030 :               memset (as_ptr, 0, sizeof (*as_ptr));
     217                 :      927030 :               as_ptr = dst_ptr;
     218                 :             :             }
     219                 :             : 
     220                 :     1019733 :           tree ident = set_operator_ident (as_ptr);
     221                 :     1019733 :           gcc_checking_assert (!IDENTIFIER_CP_INDEX (ident));
     222                 :     1019733 :           IDENTIFIER_CP_INDEX (ident) = as_ptr->ovl_op_code;
     223                 :     1019733 :           set_identifier_kind (ident, cik_assign_op);
     224                 :             : 
     225                 :     1019733 :           gcc_checking_assert (!ovl_op_mapping[as_ptr->tree_code]
     226                 :             :                                || (ovl_op_mapping[as_ptr->tree_code]
     227                 :             :                                    == as_ptr->ovl_op_code));
     228                 :     1019733 :           ovl_op_mapping[as_ptr->tree_code] = as_ptr->ovl_op_code;
     229                 :             :         }
     230                 :             :     }
     231                 :       92703 : }
     232                 :             : 
     233                 :             : /* Initialize the reserved words.  */
     234                 :             : 
     235                 :             : void
     236                 :       92703 : init_reswords (void)
     237                 :             : {
     238                 :       92703 :   unsigned int i;
     239                 :       92703 :   tree id;
     240                 :       92703 :   int mask = 0;
     241                 :             : 
     242                 :       92703 :   if (cxx_dialect < cxx11)
     243                 :       13673 :     mask |= D_CXX11;
     244                 :       92703 :   if (cxx_dialect < cxx20)
     245                 :       64275 :     mask |= D_CXX20;
     246                 :       92703 :   if (!flag_concepts)
     247                 :       64089 :     mask |= D_CXX_CONCEPTS;
     248                 :       92703 :   if (!flag_coroutines)
     249                 :       63330 :     mask |= D_CXX_COROUTINES;
     250                 :       92703 :   if (!flag_modules)
     251                 :       88822 :     mask |= D_CXX_MODULES;
     252                 :       92703 :   if (!flag_tm)
     253                 :       92370 :     mask |= D_TRANSMEM;
     254                 :       92703 :   if (!flag_char8_t)
     255                 :       64217 :     mask |= D_CXX_CHAR8_T;
     256                 :       92703 :   if (flag_no_asm)
     257                 :           3 :     mask |= D_ASM | D_EXT | D_EXT11;
     258                 :       92703 :   if (flag_no_gnu_keywords)
     259                 :       48317 :     mask |= D_EXT | D_EXT11;
     260                 :             : 
     261                 :             :   /* The Objective-C keywords are all context-dependent.  */
     262                 :       92703 :   mask |= D_OBJC;
     263                 :             : 
     264                 :       92703 :   ridpointers = ggc_cleared_vec_alloc<tree> ((int) RID_MAX);
     265                 :    21136284 :   for (i = 0; i < num_c_common_reswords; i++)
     266                 :             :     {
     267                 :    21043581 :       if (c_common_reswords[i].disable & D_CONLY)
     268                 :     4357041 :         continue;
     269                 :    16686540 :       id = get_identifier (c_common_reswords[i].word);
     270                 :    16686540 :       C_SET_RID_CODE (id, c_common_reswords[i].rid);
     271                 :    16686540 :       ridpointers [(int) c_common_reswords[i].rid] = id;
     272                 :    16686540 :       if (! (c_common_reswords[i].disable & mask))
     273                 :    12202704 :         set_identifier_kind (id, cik_keyword);
     274                 :             :     }
     275                 :             : 
     276                 :      185406 :   for (i = 0; i < NUM_INT_N_ENTS; i++)
     277                 :             :     {
     278                 :       92703 :       char name[50];
     279                 :       92703 :       sprintf (name, "__int%d", int_n_data[i].bitsize);
     280                 :       92703 :       id = get_identifier (name);
     281                 :       92703 :       C_SET_RID_CODE (id, RID_FIRST_INT_N + i);
     282                 :       92703 :       set_identifier_kind (id, cik_keyword);
     283                 :             : 
     284                 :       92703 :       sprintf (name, "__int%d__", int_n_data[i].bitsize);
     285                 :       92703 :       id = get_identifier (name);
     286                 :       92703 :       C_SET_RID_CODE (id, RID_FIRST_INT_N + i);
     287                 :       92703 :       set_identifier_kind (id, cik_keyword);
     288                 :             :     }
     289                 :             : 
     290                 :       92703 :   if (flag_openmp)
     291                 :             :     {
     292                 :        3428 :       id = get_identifier ("omp_all_memory");
     293                 :        3428 :       C_SET_RID_CODE (id, RID_OMP_ALL_MEMORY);
     294                 :        3428 :       set_identifier_kind (id, cik_keyword);
     295                 :        3428 :       ridpointers [RID_OMP_ALL_MEMORY] = id;
     296                 :             :     }
     297                 :       92703 : }
     298                 :             : 
     299                 :             : /* Initialize the C++ traits.  */
     300                 :             : static void
     301                 :       92703 : init_cp_traits (void)
     302                 :             : {
     303                 :       92703 :   tree id;
     304                 :             : 
     305                 :     6396507 :   for (unsigned int i = 0; i < ARRAY_SIZE (cp_traits); ++i)
     306                 :             :     {
     307                 :     6303804 :       id = get_identifier (cp_traits[i].name);
     308                 :     6303804 :       IDENTIFIER_CP_INDEX (id) = cp_traits[i].kind;
     309                 :     6303804 :       set_identifier_kind (id, cik_trait);
     310                 :             :     }
     311                 :             : 
     312                 :             :   /* An alias for __is_same.  */
     313                 :       92703 :   id = get_identifier ("__is_same_as");
     314                 :       92703 :   IDENTIFIER_CP_INDEX (id) = CPTK_IS_SAME;
     315                 :       92703 :   set_identifier_kind (id, cik_trait);
     316                 :       92703 : }
     317                 :             : 
     318                 :             : static void
     319                 :       91454 : init_cp_pragma (void)
     320                 :             : {
     321                 :       91454 :   c_register_pragma (0, "vtable", handle_pragma_vtable);
     322                 :       91454 :   c_register_pragma (0, "unit", handle_pragma_unit);
     323                 :       91454 :   c_register_pragma (0, "interface", handle_pragma_interface);
     324                 :       91454 :   c_register_pragma (0, "implementation", handle_pragma_implementation);
     325                 :       91454 :   c_register_pragma ("GCC", "interface", handle_pragma_interface);
     326                 :       91454 :   c_register_pragma ("GCC", "implementation", handle_pragma_implementation);
     327                 :       91454 : }
     328                 :             : 
     329                 :             : /* TRUE if a code represents a statement.  */
     330                 :             : 
     331                 :             : bool statement_code_p[MAX_TREE_CODES];
     332                 :             : 
     333                 :             : /* Initialize the C++ front end.  This function is very sensitive to
     334                 :             :    the exact order that things are done here.  It would be nice if the
     335                 :             :    initialization done by this routine were moved to its subroutines,
     336                 :             :    and the ordering dependencies clarified and reduced.  */
     337                 :             : bool
     338                 :       92703 : cxx_init (void)
     339                 :             : {
     340                 :       92703 :   location_t saved_loc;
     341                 :       92703 :   unsigned int i;
     342                 :       92703 :   static const enum tree_code stmt_codes[] = {
     343                 :             :    CTOR_INITIALIZER,    TRY_BLOCK,      HANDLER,
     344                 :             :    EH_SPEC_BLOCK,       USING_STMT,     TAG_DEFN,
     345                 :             :    IF_STMT,             CLEANUP_STMT,   FOR_STMT,
     346                 :             :    RANGE_FOR_STMT,      WHILE_STMT,     DO_STMT,
     347                 :             :    BREAK_STMT,          CONTINUE_STMT,  SWITCH_STMT,
     348                 :             :    EXPR_STMT,           OMP_DEPOBJ
     349                 :             :   };
     350                 :             : 
     351                 :       92703 :   memset (&statement_code_p, 0, sizeof (statement_code_p));
     352                 :     1668654 :   for (i = 0; i < ARRAY_SIZE (stmt_codes); i++)
     353                 :     1575951 :     statement_code_p[stmt_codes[i]] = true;
     354                 :             : 
     355                 :       92703 :   saved_loc = input_location;
     356                 :       92703 :   input_location = BUILTINS_LOCATION;
     357                 :             : 
     358                 :       92703 :   init_reswords ();
     359                 :       92703 :   init_cp_traits ();
     360                 :       92703 :   init_tree ();
     361                 :       92703 :   init_cp_semantics ();
     362                 :       92703 :   init_operators ();
     363                 :       92703 :   init_method ();
     364                 :             : 
     365                 :       92703 :   current_function_decl = NULL;
     366                 :             : 
     367                 :       92703 :   class_type_node = ridpointers[(int) RID_CLASS];
     368                 :             : 
     369                 :       92703 :   cxx_init_decl_processing ();
     370                 :             : 
     371                 :       92703 :   if (c_common_init () == false)
     372                 :             :     {
     373                 :        1213 :       input_location = saved_loc;
     374                 :        1213 :       return false;
     375                 :             :     }
     376                 :             : 
     377                 :       91454 :   init_cp_pragma ();
     378                 :             : 
     379                 :       91454 :   input_location = saved_loc;
     380                 :       91454 :   return true;
     381                 :             : }
     382                 :             : 
     383                 :             : /* Return nonzero if S is not considered part of an
     384                 :             :    INTERFACE/IMPLEMENTATION pair.  Otherwise, return 0.  */
     385                 :             : 
     386                 :             : static int
     387                 :          79 : interface_strcmp (const char* s)
     388                 :             : {
     389                 :             :   /* Set the interface/implementation bits for this scope.  */
     390                 :          79 :   struct impl_files *ifiles;
     391                 :          79 :   const char *s1;
     392                 :             : 
     393                 :          91 :   for (ifiles = impl_file_chain; ifiles; ifiles = ifiles->next)
     394                 :             :     {
     395                 :          48 :       const char *t1 = ifiles->filename;
     396                 :          48 :       s1 = s;
     397                 :             : 
     398                 :          48 :       if (*s1 == 0 || filename_ncmp (s1, t1, 1) != 0)
     399                 :           6 :         continue;
     400                 :             : 
     401                 :         462 :       while (*s1 != 0 && filename_ncmp (s1, t1, 1) == 0)
     402                 :         420 :         s1++, t1++;
     403                 :             : 
     404                 :             :       /* A match.  */
     405                 :          42 :       if (*s1 == *t1)
     406                 :             :         return 0;
     407                 :             : 
     408                 :             :       /* Don't get faked out by xxx.yyy.cc vs xxx.zzz.cc.  */
     409                 :          18 :       if (strchr (s1, '.') || strchr (t1, '.'))
     410                 :           6 :         continue;
     411                 :             : 
     412                 :          12 :       if (*s1 == '\0' || s1[-1] != '.' || t1[-1] != '.')
     413                 :           0 :         continue;
     414                 :             : 
     415                 :             :       /* A match.  */
     416                 :             :       return 0;
     417                 :             :     }
     418                 :             : 
     419                 :             :   /* No matches.  */
     420                 :             :   return 1;
     421                 :             : }
     422                 :             : 
     423                 :             : /* We've just read a cpp-token, figure out our next state.  Hey, this
     424                 :             :    is a hand-coded co-routine!  */
     425                 :             : 
     426                 :             : struct module_token_filter
     427                 :             : {
     428                 :             :   enum state
     429                 :             :   {
     430                 :             :    idle,
     431                 :             :    module_first,
     432                 :             :    module_cont,
     433                 :             :    module_end,
     434                 :             :   };
     435                 :             : 
     436                 :             :   enum state state : 8;
     437                 :             :   bool is_import : 1;
     438                 :             :   bool got_export : 1;
     439                 :             :   bool got_colon : 1;
     440                 :             :   bool want_dot : 1;
     441                 :             : 
     442                 :             :   location_t token_loc;
     443                 :             :   cpp_reader *reader;
     444                 :             :   module_state *module;
     445                 :             :   module_state *import;
     446                 :             : 
     447                 :        3881 :   module_token_filter (cpp_reader *reader)
     448                 :        3881 :     : state (idle), is_import (false),
     449                 :        3881 :     got_export (false), got_colon (false), want_dot (false),
     450                 :        3881 :     token_loc (UNKNOWN_LOCATION),
     451                 :        3881 :     reader (reader), module (NULL), import (NULL)
     452                 :             :   {
     453                 :             :   };
     454                 :             : 
     455                 :             :   /* Process the next token.  Note we cannot see CPP_EOF inside a
     456                 :             :      pragma -- a CPP_PRAGMA_EOL always happens.  */
     457                 :    39539037 :   uintptr_t resume (int type, int keyword, tree value, location_t loc)
     458                 :             :   {
     459                 :    39539037 :     unsigned res = 0;
     460                 :             : 
     461                 :    39539037 :     switch (state)
     462                 :             :       {
     463                 :    39525100 :       case idle:
     464                 :    39525100 :         if (type == CPP_KEYWORD)
     465                 :     6711547 :           switch (keyword)
     466                 :             :             {
     467                 :             :             default:
     468                 :             :               break;
     469                 :             : 
     470                 :        1708 :             case RID__EXPORT:
     471                 :        1708 :               got_export = true;
     472                 :        1708 :               res = lang_hooks::PT_begin_pragma;
     473                 :        1708 :               break;
     474                 :             : 
     475                 :        2087 :             case RID__IMPORT:
     476                 :        2087 :               is_import = true;
     477                 :             :               /* FALLTHRU */
     478                 :        4218 :             case RID__MODULE:
     479                 :        4218 :               state = module_first;
     480                 :        4218 :               want_dot = false;
     481                 :        4218 :               got_colon = false;
     482                 :        4218 :               token_loc = loc;
     483                 :        4218 :               import = NULL;
     484                 :        4218 :               if (!got_export)
     485                 :        4218 :                 res = lang_hooks::PT_begin_pragma;
     486                 :             :               break;
     487                 :             :             }
     488                 :             :         break;
     489                 :             : 
     490                 :        4233 :       case module_first:
     491                 :        4233 :         if (is_import && type == CPP_HEADER_NAME)
     492                 :             :           {
     493                 :             :             /* A header name.  The preprocessor will have already
     494                 :             :                done include searching and canonicalization.  */
     495                 :         825 :             state = module_end;
     496                 :         825 :             goto header_unit;
     497                 :             :           }
     498                 :             : 
     499                 :        3408 :         if (type == CPP_PADDING || type == CPP_COMMENT)
     500                 :             :           break;
     501                 :             : 
     502                 :        3393 :         state = module_cont;
     503                 :        3393 :         if (type == CPP_COLON && module)
     504                 :             :           {
     505                 :         187 :             got_colon = true;
     506                 :         187 :             import = module;
     507                 :         187 :             break;
     508                 :             :           }
     509                 :             :         /* FALLTHROUGH  */
     510                 :             : 
     511                 :        7533 :       case module_cont:
     512                 :        7533 :         switch (type)
     513                 :             :           {
     514                 :             :           case CPP_PADDING:
     515                 :             :           case CPP_COMMENT:
     516                 :             :             break;
     517                 :             : 
     518                 :        3381 :           default:
     519                 :             :             /* If we ever need to pay attention to attributes for
     520                 :             :                header modules, more logic will be needed.  */
     521                 :        3381 :             state = module_end;
     522                 :        3381 :             break;
     523                 :             : 
     524                 :         223 :           case CPP_COLON:
     525                 :         223 :             if (got_colon)
     526                 :           0 :               state = module_end;
     527                 :         223 :             got_colon = true;
     528                 :             :             /* FALLTHROUGH  */
     529                 :         510 :           case CPP_DOT:
     530                 :         510 :             if (!want_dot)
     531                 :           9 :               state = module_end;
     532                 :         510 :             want_dot = false;
     533                 :         510 :             break;
     534                 :             : 
     535                 :           3 :           case CPP_PRAGMA_EOL:
     536                 :           3 :             goto module_end;
     537                 :             : 
     538                 :        3558 :           case CPP_NAME:
     539                 :        3558 :             if (want_dot)
     540                 :             :               {
     541                 :             :                 /* Got name instead of [.:].  */
     542                 :           0 :                 state = module_end;
     543                 :           0 :                 break;
     544                 :             :               }
     545                 :        3558 :           header_unit:
     546                 :        4383 :             import = get_module (value, import, got_colon);
     547                 :        4383 :             want_dot = true;
     548                 :        4383 :             break;
     549                 :             :           }
     550                 :             :         break;
     551                 :             : 
     552                 :        5377 :       case module_end:
     553                 :        5377 :         if (type == CPP_PRAGMA_EOL)
     554                 :             :           {
     555                 :        4215 :           module_end:;
     556                 :             :             /* End of the directive, handle the name.  */
     557                 :        4218 :             if (import && (is_import || !flag_header_unit))
     558                 :        7800 :               if (module_state *m
     559                 :        3900 :                   = preprocess_module (import, token_loc, module != NULL,
     560                 :        3900 :                                        is_import, got_export, reader))
     561                 :        1795 :                 if (!module)
     562                 :        1780 :                   module = m;
     563                 :             : 
     564                 :        4218 :             is_import = got_export = false;
     565                 :        4218 :             state = idle;
     566                 :             :           }
     567                 :             :         break;
     568                 :             :       }
     569                 :             : 
     570                 :    39539037 :     return res;
     571                 :             :   }
     572                 :             : };
     573                 :             : 
     574                 :             : /* Initialize or teardown.  */
     575                 :             : 
     576                 :             : uintptr_t
     577                 :        8894 : module_token_cdtor (cpp_reader *pfile, uintptr_t data_)
     578                 :             : {
     579                 :        8894 :   if (module_token_filter *filter = reinterpret_cast<module_token_filter *> (data_))
     580                 :             :     {
     581                 :        3881 :       preprocessed_module (pfile);
     582                 :        3878 :       delete filter;
     583                 :        3878 :       data_ = 0;
     584                 :             :     }
     585                 :        5013 :   else if (modules_p ())
     586                 :        3881 :     data_ = reinterpret_cast<uintptr_t > (new module_token_filter (pfile));
     587                 :             : 
     588                 :        8891 :   return data_;
     589                 :             : }
     590                 :             : 
     591                 :             : uintptr_t
     592                 :    39539037 : module_token_lang (int type, int keyword, tree value, location_t loc,
     593                 :             :                    uintptr_t data_)
     594                 :             : {
     595                 :    39539037 :   module_token_filter *filter = reinterpret_cast<module_token_filter *> (data_);
     596                 :    39539037 :   return filter->resume (type, keyword, value, loc);
     597                 :             : }
     598                 :             : 
     599                 :             : uintptr_t
     600                 :      740689 : module_token_pre (cpp_reader *pfile, const cpp_token *tok, uintptr_t data_)
     601                 :             : {
     602                 :      740689 :   if (!tok)
     603                 :        1354 :     return module_token_cdtor (pfile, data_);
     604                 :             : 
     605                 :      739335 :   int type = tok->type;
     606                 :      739335 :   int keyword = RID_MAX;
     607                 :      739335 :   tree value = NULL_TREE;
     608                 :             : 
     609                 :      739335 :   if (tok->type == CPP_NAME)
     610                 :             :     {
     611                 :      319311 :       value = HT_IDENT_TO_GCC_IDENT (HT_NODE (tok->val.node.node));
     612                 :      319311 :       if (IDENTIFIER_KEYWORD_P (value))
     613                 :             :         {
     614                 :      122646 :           keyword = C_RID_CODE (value);
     615                 :      122646 :           type = CPP_KEYWORD;
     616                 :             :         }
     617                 :             :     }
     618                 :      420024 :   else if (tok->type == CPP_HEADER_NAME)
     619                 :          45 :     value = build_string (tok->val.str.len, (const char *)tok->val.str.text);
     620                 :             : 
     621                 :      739335 :   return module_token_lang (type, keyword, value, tok->src_loc, data_);
     622                 :             : }
     623                 :             : 
     624                 :             : /* Parse a #pragma whose sole argument is a string constant.
     625                 :             :    If OPT is true, the argument is optional.  */
     626                 :             : static tree
     627                 :         121 : parse_strconst_pragma (const char* name, int opt)
     628                 :             : {
     629                 :         121 :   tree result, x;
     630                 :         121 :   enum cpp_ttype t;
     631                 :             : 
     632                 :         121 :   t = pragma_lex (&result);
     633                 :         121 :   if (t == CPP_STRING)
     634                 :             :     {
     635                 :          48 :       if (pragma_lex (&x) != CPP_EOF)
     636                 :           0 :         warning (0, "junk at end of %<#pragma %s%>", name);
     637                 :          48 :       return result;
     638                 :             :     }
     639                 :             : 
     640                 :          73 :   if (t == CPP_EOF && opt)
     641                 :             :     return NULL_TREE;
     642                 :             : 
     643                 :           0 :   error ("invalid %<#pragma %s%>", name);
     644                 :           0 :   return error_mark_node;
     645                 :             : }
     646                 :             : 
     647                 :             : static void
     648                 :           0 : handle_pragma_vtable (cpp_reader* /*dfile*/)
     649                 :             : {
     650                 :           0 :   parse_strconst_pragma ("vtable", 0);
     651                 :           0 :   sorry ("%<#pragma vtable%> no longer supported");
     652                 :           0 : }
     653                 :             : 
     654                 :             : static void
     655                 :           0 : handle_pragma_unit (cpp_reader* /*dfile*/)
     656                 :             : {
     657                 :             :   /* Validate syntax, but don't do anything.  */
     658                 :           0 :   parse_strconst_pragma ("unit", 0);
     659                 :           0 : }
     660                 :             : 
     661                 :             : static void
     662                 :          79 : handle_pragma_interface (cpp_reader* /*dfile*/)
     663                 :             : {
     664                 :          79 :   tree fname = parse_strconst_pragma ("interface", 1);
     665                 :          79 :   struct c_fileinfo *finfo;
     666                 :          79 :   const char *filename;
     667                 :             : 
     668                 :          79 :   if (fname == error_mark_node)
     669                 :             :     return;
     670                 :          79 :   else if (fname == 0)
     671                 :          61 :     filename = lbasename (LOCATION_FILE (input_location));
     672                 :             :   else
     673                 :          18 :     filename = TREE_STRING_POINTER (fname);
     674                 :             : 
     675                 :          79 :   finfo = get_fileinfo (LOCATION_FILE (input_location));
     676                 :             : 
     677                 :          79 :   if (impl_file_chain == 0)
     678                 :             :     {
     679                 :             :       /* If this is zero at this point, then we are
     680                 :             :          auto-implementing.  */
     681                 :          34 :       if (main_input_filename == 0)
     682                 :           0 :         main_input_filename = LOCATION_FILE (input_location);
     683                 :             :     }
     684                 :             : 
     685                 :          79 :   finfo->interface_only = interface_strcmp (filename);
     686                 :             :   /* If MULTIPLE_SYMBOL_SPACES is set, we cannot assume that we can see
     687                 :             :      a definition in another file.  */
     688                 :          79 :   if (!MULTIPLE_SYMBOL_SPACES || !finfo->interface_only)
     689                 :          79 :     finfo->interface_unknown = 0;
     690                 :             : }
     691                 :             : 
     692                 :             : /* Note that we have seen a #pragma implementation for the key MAIN_FILENAME.
     693                 :             :    We used to only allow this at toplevel, but that restriction was buggy
     694                 :             :    in older compilers and it seems reasonable to allow it in the headers
     695                 :             :    themselves, too.  It only needs to precede the matching #p interface.
     696                 :             : 
     697                 :             :    We don't touch finfo->interface_only or finfo->interface_unknown;
     698                 :             :    the user must specify a matching #p interface for this to have
     699                 :             :    any effect.  */
     700                 :             : 
     701                 :             : static void
     702                 :          42 : handle_pragma_implementation (cpp_reader* /*dfile*/)
     703                 :             : {
     704                 :          42 :   tree fname = parse_strconst_pragma ("implementation", 1);
     705                 :          42 :   const char *filename;
     706                 :          42 :   struct impl_files *ifiles = impl_file_chain;
     707                 :             : 
     708                 :          42 :   if (fname == error_mark_node)
     709                 :             :     return;
     710                 :             : 
     711                 :          42 :   if (fname == 0)
     712                 :             :     {
     713                 :          12 :       if (main_input_filename)
     714                 :             :         filename = main_input_filename;
     715                 :             :       else
     716                 :           0 :         filename = LOCATION_FILE (input_location);
     717                 :          12 :       filename = lbasename (filename);
     718                 :             :     }
     719                 :             :   else
     720                 :             :     {
     721                 :          30 :       filename = TREE_STRING_POINTER (fname);
     722                 :          30 :       if (cpp_included_before (parse_in, filename, input_location))
     723                 :           3 :         warning (0, "%<#pragma implementation%> for %qs appears after "
     724                 :             :                  "file is included", filename);
     725                 :             :     }
     726                 :             : 
     727                 :          45 :   for (; ifiles; ifiles = ifiles->next)
     728                 :             :     {
     729                 :           3 :       if (! filename_cmp (ifiles->filename, filename))
     730                 :             :         break;
     731                 :             :     }
     732                 :          42 :   if (ifiles == 0)
     733                 :             :     {
     734                 :          42 :       ifiles = XNEW (struct impl_files);
     735                 :          42 :       ifiles->filename = xstrdup (filename);
     736                 :          42 :       ifiles->next = impl_file_chain;
     737                 :          42 :       impl_file_chain = ifiles;
     738                 :             :     }
     739                 :             : }
     740                 :             : 
     741                 :             : /* Issue an error message indicating that the lookup of NAME (an
     742                 :             :    IDENTIFIER_NODE) failed.  Returns the ERROR_MARK_NODE.  */
     743                 :             : 
     744                 :             : tree
     745                 :        1735 : unqualified_name_lookup_error (tree name, location_t loc)
     746                 :             : {
     747                 :        1735 :   if (loc == UNKNOWN_LOCATION)
     748                 :        1282 :     loc = cp_expr_loc_or_input_loc (name);
     749                 :             : 
     750                 :        1735 :   if (IDENTIFIER_ANY_OP_P (name))
     751                 :           9 :     error_at (loc, "%qD not defined", name);
     752                 :             :   else
     753                 :             :     {
     754                 :        1726 :       if (!objc_diagnose_private_ivar (name))
     755                 :             :         {
     756                 :        1726 :           auto_diagnostic_group d;
     757                 :        1726 :           name_hint hint = suggest_alternatives_for (loc, name, true);
     758                 :        1726 :           if (const char *suggestion = hint.suggestion ())
     759                 :             :             {
     760                 :         247 :               gcc_rich_location richloc (loc);
     761                 :         247 :               richloc.add_fixit_replace (suggestion);
     762                 :         247 :               error_at (&richloc,
     763                 :             :                         "%qD was not declared in this scope; did you mean %qs?",
     764                 :             :                         name, suggestion);
     765                 :         247 :             }
     766                 :             :           else
     767                 :        1479 :             error_at (loc, "%qD was not declared in this scope", name);
     768                 :        1726 :         }
     769                 :             :       /* Prevent repeated error messages by creating a VAR_DECL with
     770                 :             :          this NAME in the innermost block scope.  */
     771                 :        1726 :       if (local_bindings_p ())
     772                 :             :         {
     773                 :        1346 :           tree decl = build_decl (loc, VAR_DECL, name, error_mark_node);
     774                 :        1346 :           TREE_USED (decl) = true;
     775                 :        1346 :           pushdecl (decl);
     776                 :             :         }
     777                 :             :     }
     778                 :             : 
     779                 :        1735 :   return error_mark_node;
     780                 :             : }
     781                 :             : 
     782                 :             : /* Like unqualified_name_lookup_error, but NAME_EXPR is an unqualified-id
     783                 :             :    NAME, encapsulated with its location in a CP_EXPR, used as a function.
     784                 :             :    Returns an appropriate expression for NAME.  */
     785                 :             : 
     786                 :             : tree
     787                 :         518 : unqualified_fn_lookup_error (cp_expr name_expr)
     788                 :             : {
     789                 :         518 :   tree name = name_expr.get_value ();
     790                 :         518 :   location_t loc = name_expr.get_location ();
     791                 :         518 :   if (loc == UNKNOWN_LOCATION)
     792                 :          57 :     loc = input_location;
     793                 :             : 
     794                 :         518 :   if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
     795                 :           1 :     name = TREE_OPERAND (name, 0);
     796                 :             : 
     797                 :         518 :   if (processing_template_decl)
     798                 :             :     {
     799                 :             :       /* In a template, it is invalid to write "f()" or "f(3)" if no
     800                 :             :          declaration of "f" is available.  Historically, G++ and most
     801                 :             :          other compilers accepted that usage since they deferred all name
     802                 :             :          lookup until instantiation time rather than doing unqualified
     803                 :             :          name lookup at template definition time; explain to the user what
     804                 :             :          is going wrong.
     805                 :             : 
     806                 :             :          Note that we have the exact wording of the following message in
     807                 :             :          the manual (trouble.texi, node "Name lookup"), so they need to
     808                 :             :          be kept in synch.  */
     809                 :          65 :       auto_diagnostic_group d;
     810                 :          65 :       permerror (loc, "there are no arguments to %qD that depend on a template "
     811                 :             :                  "parameter, so a declaration of %qD must be available",
     812                 :             :                  name, name);
     813                 :             : 
     814                 :          65 :       if (!flag_permissive)
     815                 :             :         {
     816                 :          47 :           static bool hint;
     817                 :          47 :           if (!hint)
     818                 :             :             {
     819                 :          38 :               inform (loc, "(if you use %<-fpermissive%>, G++ will accept your "
     820                 :             :                       "code, but allowing the use of an undeclared name is "
     821                 :             :                       "deprecated)");
     822                 :          38 :               hint = true;
     823                 :             :             }
     824                 :             :         }
     825                 :          65 :       return name;
     826                 :          65 :     }
     827                 :             : 
     828                 :         453 :   return unqualified_name_lookup_error (name, loc);
     829                 :             : }
     830                 :             : 
     831                 :             : 
     832                 :             : /* Hasher for the conversion operator name hash table.  */
     833                 :             : struct conv_type_hasher : ggc_ptr_hash<tree_node>
     834                 :             : {
     835                 :             :   /* Hash NODE, an identifier node in the table.  TYPE_UID is
     836                 :             :      suitable, as we're not concerned about matching canonicalness
     837                 :             :      here.  */
     838                 :    11446431 :   static hashval_t hash (tree node)
     839                 :             :   {
     840                 :    11446431 :     return (hashval_t) TYPE_UID (TREE_TYPE (node));
     841                 :             :   }
     842                 :             : 
     843                 :             :   /* Compare NODE, an identifier node in the table, against TYPE, an
     844                 :             :      incoming TYPE being looked up.  */
     845                 :    13452942 :   static bool equal (tree node, tree type)
     846                 :             :   {
     847                 :    13452942 :     return TREE_TYPE (node) == type;
     848                 :             :   }
     849                 :             : };
     850                 :             : 
     851                 :             : /* This hash table maps TYPEs to the IDENTIFIER for a conversion
     852                 :             :    operator to TYPE.  The nodes are IDENTIFIERs whose TREE_TYPE is the
     853                 :             :    TYPE.  */
     854                 :             : 
     855                 :             : static GTY (()) hash_table<conv_type_hasher> *conv_type_names;
     856                 :             : 
     857                 :             : /* Return an identifier for a conversion operator to TYPE.  We can get
     858                 :             :    from the returned identifier to the type.  We store TYPE, which is
     859                 :             :    not necessarily the canonical type,  which allows us to report the
     860                 :             :    form the user used in error messages.  All these identifiers are
     861                 :             :    not in the identifier hash table, and have the same string name.
     862                 :             :    These IDENTIFIERS are not in the identifier hash table, and all
     863                 :             :    have the same IDENTIFIER_STRING.  */
     864                 :             : 
     865                 :             : tree
     866                 :     2236941 : make_conv_op_name (tree type)
     867                 :             : {
     868                 :     2236941 :   if (type == error_mark_node)
     869                 :             :     return error_mark_node;
     870                 :             : 
     871                 :     2236938 :   if (conv_type_names == NULL)
     872                 :       18378 :     conv_type_names = hash_table<conv_type_hasher>::create_ggc (31);
     873                 :             : 
     874                 :     2236938 :   tree *slot = conv_type_names->find_slot_with_hash
     875                 :     2236938 :     (type, (hashval_t) TYPE_UID (type), INSERT);
     876                 :     2236938 :   tree identifier = *slot;
     877                 :     2236938 :   if (!identifier)
     878                 :             :     {
     879                 :             :       /* Create a raw IDENTIFIER outside of the identifier hash
     880                 :             :          table.  */
     881                 :      891230 :       identifier = copy_node (conv_op_identifier);
     882                 :             : 
     883                 :             :       /* Just in case something managed to bind.  */
     884                 :      891230 :       IDENTIFIER_BINDING (identifier) = NULL;
     885                 :             : 
     886                 :             :       /* Hang TYPE off the identifier so it can be found easily later
     887                 :             :          when performing conversions.  */
     888                 :      891230 :       TREE_TYPE (identifier) = type;
     889                 :             : 
     890                 :      891230 :       *slot = identifier;
     891                 :             :     }
     892                 :             : 
     893                 :             :   return identifier;
     894                 :             : }
     895                 :             : 
     896                 :             : /* Wrapper around build_lang_decl_loc(). Should gradually move to
     897                 :             :    build_lang_decl_loc() and then rename build_lang_decl_loc() back to
     898                 :             :    build_lang_decl().  */
     899                 :             : 
     900                 :             : tree
     901                 :   231627518 : build_lang_decl (enum tree_code code, tree name, tree type)
     902                 :             : {
     903                 :   231627518 :   return build_lang_decl_loc (input_location, code, name, type);
     904                 :             : }
     905                 :             : 
     906                 :             : /* Build a decl from CODE, NAME, TYPE declared at LOC, and then add
     907                 :             :    DECL_LANG_SPECIFIC info to the result.  */
     908                 :             : 
     909                 :             : tree
     910                 :   430628018 : build_lang_decl_loc (location_t loc, enum tree_code code, tree name, tree type)
     911                 :             : {
     912                 :   430628018 :   tree t;
     913                 :             : 
     914                 :   430628018 :   t = build_decl (loc, code, name, type);
     915                 :   430628018 :   retrofit_lang_decl (t);
     916                 :             : 
     917                 :   430628018 :   return t;
     918                 :             : }
     919                 :             : 
     920                 :             : /* Maybe add a raw lang_decl to T, a decl.  Return true if it needed
     921                 :             :    one.  */
     922                 :             : 
     923                 :             : bool
     924                 :   912855710 : maybe_add_lang_decl_raw (tree t, bool decomp_p)
     925                 :             : {
     926                 :   912855710 :   size_t size;
     927                 :   912855710 :   lang_decl_selector sel;
     928                 :             : 
     929                 :   912855710 :   if (decomp_p)
     930                 :             :     sel = lds_decomp, size = sizeof (struct lang_decl_decomp);
     931                 :   912647487 :   else if (TREE_CODE (t) == FUNCTION_DECL)
     932                 :             :     sel = lds_fn, size = sizeof (struct lang_decl_fn);
     933                 :             :   else if (TREE_CODE (t) == NAMESPACE_DECL)
     934                 :             :     sel = lds_ns, size = sizeof (struct lang_decl_ns);
     935                 :             :   else if (TREE_CODE (t) == PARM_DECL)
     936                 :             :     sel = lds_parm, size = sizeof (struct lang_decl_parm);
     937                 :             :   else if (LANG_DECL_HAS_MIN (t))
     938                 :             :     sel = lds_min, size = sizeof (struct lang_decl_min);
     939                 :             :   else
     940                 :             :     return false;
     941                 :             : 
     942                 :   912855710 :   struct lang_decl *ld
     943                 :   912855710 :     = (struct lang_decl *) ggc_internal_cleared_alloc (size);
     944                 :             : 
     945                 :   912855710 :   ld->u.base.selector = sel;
     946                 :   912855710 :   DECL_LANG_SPECIFIC (t) = ld;
     947                 :             : 
     948                 :   912855710 :   if (sel == lds_ns)
     949                 :             :     /* Who'd create a namespace, only to put nothing in it?  */
     950                 :      912984 :     ld->u.ns.bindings = hash_table<named_decl_hash>::create_ggc (499);
     951                 :             : 
     952                 :             :   if (GATHER_STATISTICS)
     953                 :             :     {
     954                 :             :       tree_node_counts[(int)lang_decl] += 1;
     955                 :             :       tree_node_sizes[(int)lang_decl] += size;
     956                 :             :     }
     957                 :             :   return true;
     958                 :             : }
     959                 :             : 
     960                 :             : /* T has just had a decl_lang_specific added.  Initialize its
     961                 :             :    linkage.  */
     962                 :             : 
     963                 :             : static void
     964                 :   909771556 : set_decl_linkage (tree t)
     965                 :             : {
     966                 :   909771556 :   if (current_lang_name == lang_name_cplusplus
     967                 :   909771556 :       || decl_linkage (t) == lk_none)
     968                 :   675099269 :     SET_DECL_LANGUAGE (t, lang_cplusplus);
     969                 :   234672287 :   else if (current_lang_name == lang_name_c)
     970                 :   234672287 :     SET_DECL_LANGUAGE (t, lang_c);
     971                 :             :   else
     972                 :           0 :     gcc_unreachable ();
     973                 :   909771556 : }
     974                 :             : 
     975                 :             : /* T is a VAR_DECL node that needs to be a decomposition of BASE.  */
     976                 :             : 
     977                 :             : void
     978                 :      428334 : fit_decomposition_lang_decl (tree t, tree base)
     979                 :             : {
     980                 :      428334 :   if (struct lang_decl *orig_ld = DECL_LANG_SPECIFIC (t))
     981                 :             :     {
     982                 :      222520 :       if (orig_ld->u.base.selector == lds_min)
     983                 :             :         {
     984                 :         956 :           maybe_add_lang_decl_raw (t, true);
     985                 :         956 :           memcpy (DECL_LANG_SPECIFIC (t), orig_ld,
     986                 :             :                   sizeof (struct lang_decl_min));
     987                 :             :           /* Reset selector, which will have been bashed by the
     988                 :             :              memcpy.  */
     989                 :         956 :           DECL_LANG_SPECIFIC (t)->u.base.selector = lds_decomp;
     990                 :             :         }
     991                 :             :       else
     992                 :      221564 :         gcc_checking_assert (orig_ld->u.base.selector == lds_decomp);
     993                 :             :     }
     994                 :             :   else
     995                 :             :     {
     996                 :      205814 :       maybe_add_lang_decl_raw (t, true);
     997                 :      205814 :       set_decl_linkage (t);
     998                 :             :     }
     999                 :             : 
    1000                 :      428334 :   DECL_DECOMP_BASE (t) = base;
    1001                 :      428334 : }
    1002                 :             : 
    1003                 :             : /* Add DECL_LANG_SPECIFIC info to T, if it needs one.  Generally
    1004                 :             :    every C++ decl needs one, but C builtins etc do not.   */
    1005                 :             : 
    1006                 :             : void
    1007                 :  1111266584 : retrofit_lang_decl (tree t)
    1008                 :             : {
    1009                 :  1111266584 :   if (DECL_LANG_SPECIFIC (t))
    1010                 :             :     return;
    1011                 :             : 
    1012                 :   909565742 :   if (maybe_add_lang_decl_raw (t, false))
    1013                 :   909565742 :     set_decl_linkage (t);
    1014                 :             : }
    1015                 :             : 
    1016                 :             : void
    1017                 :   658182045 : cxx_dup_lang_specific_decl (tree node)
    1018                 :             : {
    1019                 :   658182045 :   int size;
    1020                 :             : 
    1021                 :   658182045 :   if (! DECL_LANG_SPECIFIC (node))
    1022                 :             :     return;
    1023                 :             : 
    1024                 :   486499591 :   switch (DECL_LANG_SPECIFIC (node)->u.base.selector)
    1025                 :             :     {
    1026                 :             :     case lds_min:
    1027                 :             :       size = sizeof (struct lang_decl_min);
    1028                 :             :       break;
    1029                 :             :     case lds_fn:
    1030                 :             :       size = sizeof (struct lang_decl_fn);
    1031                 :             :       break;
    1032                 :             :     case lds_ns:
    1033                 :             :       size = sizeof (struct lang_decl_ns);
    1034                 :             :       break;
    1035                 :             :     case lds_parm:
    1036                 :             :       size = sizeof (struct lang_decl_parm);
    1037                 :             :       break;
    1038                 :             :     case lds_decomp:
    1039                 :             :       size = sizeof (struct lang_decl_decomp);
    1040                 :             :       break;
    1041                 :           0 :     default:
    1042                 :           0 :       gcc_unreachable ();
    1043                 :             :     }
    1044                 :             : 
    1045                 :   486499591 :   struct lang_decl *ld = (struct lang_decl *) ggc_internal_alloc (size);
    1046                 :   486499591 :   memcpy (ld, DECL_LANG_SPECIFIC (node), size);
    1047                 :   486499591 :   DECL_LANG_SPECIFIC (node) = ld;
    1048                 :             : 
    1049                 :             :   /* Directly clear some flags that do not apply to the copy
    1050                 :             :      (module_purview_p still does).  */
    1051                 :   486499591 :   ld->u.base.module_entity_p = false;
    1052                 :   486499591 :   ld->u.base.module_import_p = false;
    1053                 :   486499591 :   ld->u.base.module_keyed_decls_p = false;
    1054                 :             : 
    1055                 :   486499591 :   if (GATHER_STATISTICS)
    1056                 :             :     {
    1057                 :             :       tree_node_counts[(int)lang_decl] += 1;
    1058                 :             :       tree_node_sizes[(int)lang_decl] += size;
    1059                 :             :     }
    1060                 :             : }
    1061                 :             : 
    1062                 :             : /* Copy DECL, including any language-specific parts.  */
    1063                 :             : 
    1064                 :             : tree
    1065                 :   389218045 : copy_decl (tree decl MEM_STAT_DECL)
    1066                 :             : {
    1067                 :   389218045 :   tree copy;
    1068                 :             : 
    1069                 :   389218045 :   copy = copy_node (decl PASS_MEM_STAT);
    1070                 :   389218045 :   cxx_dup_lang_specific_decl (copy);
    1071                 :   389218045 :   return copy;
    1072                 :             : }
    1073                 :             : 
    1074                 :             : /* Replace the shared language-specific parts of NODE with a new copy.  */
    1075                 :             : 
    1076                 :             : static void
    1077                 :    11608388 : copy_lang_type (tree node)
    1078                 :             : {
    1079                 :    11608388 :   if (! TYPE_LANG_SPECIFIC (node))
    1080                 :             :     return;
    1081                 :             : 
    1082                 :           0 :   auto *lt = (struct lang_type *) ggc_internal_alloc (sizeof (struct lang_type));
    1083                 :             : 
    1084                 :           0 :   memcpy (lt, TYPE_LANG_SPECIFIC (node), (sizeof (struct lang_type)));
    1085                 :           0 :   TYPE_LANG_SPECIFIC (node) = lt;
    1086                 :             : 
    1087                 :           0 :   if (GATHER_STATISTICS)
    1088                 :             :     {
    1089                 :             :       tree_node_counts[(int)lang_type] += 1;
    1090                 :             :       tree_node_sizes[(int)lang_type] += sizeof (struct lang_type);
    1091                 :             :     }
    1092                 :             : }
    1093                 :             : 
    1094                 :             : /* Copy TYPE, including any language-specific parts.  */
    1095                 :             : 
    1096                 :             : tree
    1097                 :    11608388 : copy_type (tree type MEM_STAT_DECL)
    1098                 :             : {
    1099                 :    11608388 :   tree copy;
    1100                 :             : 
    1101                 :    11608388 :   copy = copy_node (type PASS_MEM_STAT);
    1102                 :    11608388 :   copy_lang_type (copy);
    1103                 :    11608388 :   return copy;
    1104                 :             : }
    1105                 :             : 
    1106                 :             : /* Add a raw lang_type to T, a type, should it need one.  */
    1107                 :             : 
    1108                 :             : bool
    1109                 :   632321366 : maybe_add_lang_type_raw (tree t)
    1110                 :             : {
    1111                 :   632321366 :   if (!RECORD_OR_UNION_CODE_P (TREE_CODE (t)))
    1112                 :             :     return false;
    1113                 :             : 
    1114                 :   104621087 :   auto *lt = (struct lang_type *) (ggc_internal_cleared_alloc
    1115                 :   104621087 :                                    (sizeof (struct lang_type)));
    1116                 :   104621087 :   TYPE_LANG_SPECIFIC (t) = lt;
    1117                 :             : 
    1118                 :   104621087 :   if (GATHER_STATISTICS)
    1119                 :             :     {
    1120                 :             :       tree_node_counts[(int)lang_type] += 1;
    1121                 :             :       tree_node_sizes[(int)lang_type] += sizeof (struct lang_type);
    1122                 :             :     }
    1123                 :             : 
    1124                 :   104621087 :   return true;
    1125                 :             : }
    1126                 :             : 
    1127                 :             : tree
    1128                 :   632086299 : cxx_make_type (enum tree_code code MEM_STAT_DECL)
    1129                 :             : {
    1130                 :   632086299 :   tree t = make_node (code PASS_MEM_STAT);
    1131                 :             : 
    1132                 :   632086299 :   if (maybe_add_lang_type_raw (t))
    1133                 :             :     {
    1134                 :             :       /* Set up some flags that give proper default behavior.  */
    1135                 :   104386020 :       struct c_fileinfo *finfo =
    1136                 :   104386020 :         get_fileinfo (LOCATION_FILE (input_location));
    1137                 :   104386020 :       SET_CLASSTYPE_INTERFACE_UNKNOWN_X (t, finfo->interface_unknown);
    1138                 :   104386020 :       CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
    1139                 :             :     }
    1140                 :             : 
    1141                 :   632086299 :   if (code == RECORD_TYPE || code == UNION_TYPE)
    1142                 :   104386020 :     TYPE_CXX_ODR_P (t) = 1;
    1143                 :             : 
    1144                 :   632086299 :   return t;
    1145                 :             : }
    1146                 :             : 
    1147                 :             : /* A wrapper without the memory stats for LANG_HOOKS_MAKE_TYPE.  */
    1148                 :             : 
    1149                 :             : tree
    1150                 :      122440 : cxx_make_type_hook (enum tree_code code)
    1151                 :             : {
    1152                 :      122440 :   return cxx_make_type (code);
    1153                 :             : }
    1154                 :             : 
    1155                 :             : tree
    1156                 :   104263573 : make_class_type (enum tree_code code MEM_STAT_DECL)
    1157                 :             : {
    1158                 :   104263573 :   tree t = cxx_make_type (code PASS_MEM_STAT);
    1159                 :   104263573 :   SET_CLASS_TYPE_P (t, 1);
    1160                 :   104263573 :   return t;
    1161                 :             : }
    1162                 :             : 
    1163                 :             : /* Returns true if we are currently in the main source file, or in a
    1164                 :             :    template instantiation started from the main source file.  */
    1165                 :             : 
    1166                 :             : bool
    1167                 :         144 : in_main_input_context (void)
    1168                 :             : {
    1169                 :         144 :   struct tinst_level *tl = outermost_tinst_level();
    1170                 :             : 
    1171                 :         144 :   if (tl)
    1172                 :           9 :     return filename_cmp (main_input_filename,
    1173                 :          18 :                          LOCATION_FILE (tl->locus)) == 0;
    1174                 :             :   else
    1175                 :         135 :     return filename_cmp (main_input_filename, LOCATION_FILE (input_location)) == 0;
    1176                 :             : }
    1177                 :             : 
    1178                 :             : #include "gt-cp-lex.h"
        

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.