OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [libcpp/] [macro.c] - Diff between revs 816 and 826

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 816 Rev 826
/* Part of CPP library.  (Macro and #define handling.)
/* Part of CPP library.  (Macro and #define handling.)
   Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1998,
   Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1998,
   1999, 2000, 2001, 2002, 2003, 2004, 2005,
   1999, 2000, 2001, 2002, 2003, 2004, 2005,
   2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   Written by Per Bothner, 1994.
   Written by Per Bothner, 1994.
   Based on CCCP program by Paul Rubin, June 1986
   Based on CCCP program by Paul Rubin, June 1986
   Adapted to ANSI C, Richard Stallman, Jan 1987
   Adapted to ANSI C, Richard Stallman, Jan 1987
 
 
This program is free software; you can redistribute it and/or modify it
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your option) any
Free Software Foundation; either version 3, or (at your option) any
later version.
later version.
 
 
This program is distributed in the hope that it will be useful,
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING3.  If not see
along with this program; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.
<http://www.gnu.org/licenses/>.
 
 
 In other words, you are welcome to use, share and improve this program.
 In other words, you are welcome to use, share and improve this program.
 You are forbidden to forbid anyone else to use, share and improve
 You are forbidden to forbid anyone else to use, share and improve
 what you give them.   Help stamp out software-hoarding!  */
 what you give them.   Help stamp out software-hoarding!  */
 
 
#include "config.h"
#include "config.h"
#include "system.h"
#include "system.h"
#include "cpplib.h"
#include "cpplib.h"
#include "internal.h"
#include "internal.h"
 
 
typedef struct macro_arg macro_arg;
typedef struct macro_arg macro_arg;
struct macro_arg
struct macro_arg
{
{
  const cpp_token **first;      /* First token in unexpanded argument.  */
  const cpp_token **first;      /* First token in unexpanded argument.  */
  const cpp_token **expanded;   /* Macro-expanded argument.  */
  const cpp_token **expanded;   /* Macro-expanded argument.  */
  const cpp_token *stringified; /* Stringified argument.  */
  const cpp_token *stringified; /* Stringified argument.  */
  unsigned int count;           /* # of tokens in argument.  */
  unsigned int count;           /* # of tokens in argument.  */
  unsigned int expanded_count;  /* # of tokens in expanded argument.  */
  unsigned int expanded_count;  /* # of tokens in expanded argument.  */
};
};
 
 
/* Macro expansion.  */
/* Macro expansion.  */
 
 
static int enter_macro_context (cpp_reader *, cpp_hashnode *,
static int enter_macro_context (cpp_reader *, cpp_hashnode *,
                                const cpp_token *);
                                const cpp_token *);
static int builtin_macro (cpp_reader *, cpp_hashnode *);
static int builtin_macro (cpp_reader *, cpp_hashnode *);
static void push_ptoken_context (cpp_reader *, cpp_hashnode *, _cpp_buff *,
static void push_ptoken_context (cpp_reader *, cpp_hashnode *, _cpp_buff *,
                                 const cpp_token **, unsigned int);
                                 const cpp_token **, unsigned int);
static _cpp_buff *collect_args (cpp_reader *, const cpp_hashnode *,
static _cpp_buff *collect_args (cpp_reader *, const cpp_hashnode *,
                                _cpp_buff **);
                                _cpp_buff **);
static cpp_context *next_context (cpp_reader *);
static cpp_context *next_context (cpp_reader *);
static const cpp_token *padding_token (cpp_reader *, const cpp_token *);
static const cpp_token *padding_token (cpp_reader *, const cpp_token *);
static void expand_arg (cpp_reader *, macro_arg *);
static void expand_arg (cpp_reader *, macro_arg *);
static const cpp_token *new_string_token (cpp_reader *, uchar *, unsigned int);
static const cpp_token *new_string_token (cpp_reader *, uchar *, unsigned int);
static const cpp_token *stringify_arg (cpp_reader *, macro_arg *);
static const cpp_token *stringify_arg (cpp_reader *, macro_arg *);
static void paste_all_tokens (cpp_reader *, const cpp_token *);
static void paste_all_tokens (cpp_reader *, const cpp_token *);
static bool paste_tokens (cpp_reader *, const cpp_token **, const cpp_token *);
static bool paste_tokens (cpp_reader *, const cpp_token **, const cpp_token *);
static void replace_args (cpp_reader *, cpp_hashnode *, cpp_macro *,
static void replace_args (cpp_reader *, cpp_hashnode *, cpp_macro *,
                          macro_arg *);
                          macro_arg *);
static _cpp_buff *funlike_invocation_p (cpp_reader *, cpp_hashnode *,
static _cpp_buff *funlike_invocation_p (cpp_reader *, cpp_hashnode *,
                                        _cpp_buff **);
                                        _cpp_buff **);
static bool create_iso_definition (cpp_reader *, cpp_macro *);
static bool create_iso_definition (cpp_reader *, cpp_macro *);
 
 
/* #define directive parsing and handling.  */
/* #define directive parsing and handling.  */
 
 
static cpp_token *alloc_expansion_token (cpp_reader *, cpp_macro *);
static cpp_token *alloc_expansion_token (cpp_reader *, cpp_macro *);
static cpp_token *lex_expansion_token (cpp_reader *, cpp_macro *);
static cpp_token *lex_expansion_token (cpp_reader *, cpp_macro *);
static bool warn_of_redefinition (cpp_reader *, const cpp_hashnode *,
static bool warn_of_redefinition (cpp_reader *, const cpp_hashnode *,
                                  const cpp_macro *);
                                  const cpp_macro *);
static bool parse_params (cpp_reader *, cpp_macro *);
static bool parse_params (cpp_reader *, cpp_macro *);
static void check_trad_stringification (cpp_reader *, const cpp_macro *,
static void check_trad_stringification (cpp_reader *, const cpp_macro *,
                                        const cpp_string *);
                                        const cpp_string *);
 
 
/* Emits a warning if NODE is a macro defined in the main file that
/* Emits a warning if NODE is a macro defined in the main file that
   has not been used.  */
   has not been used.  */
int
int
_cpp_warn_if_unused_macro (cpp_reader *pfile, cpp_hashnode *node,
_cpp_warn_if_unused_macro (cpp_reader *pfile, cpp_hashnode *node,
                           void *v ATTRIBUTE_UNUSED)
                           void *v ATTRIBUTE_UNUSED)
{
{
  if (node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
  if (node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
    {
    {
      cpp_macro *macro = node->value.macro;
      cpp_macro *macro = node->value.macro;
 
 
      if (!macro->used
      if (!macro->used
          && MAIN_FILE_P (linemap_lookup (pfile->line_table, macro->line)))
          && MAIN_FILE_P (linemap_lookup (pfile->line_table, macro->line)))
        cpp_error_with_line (pfile, CPP_DL_WARNING, macro->line, 0,
        cpp_error_with_line (pfile, CPP_DL_WARNING, macro->line, 0,
                             "macro \"%s\" is not used", NODE_NAME (node));
                             "macro \"%s\" is not used", NODE_NAME (node));
    }
    }
 
 
  return 1;
  return 1;
}
}
 
 
/* Allocates and returns a CPP_STRING token, containing TEXT of length
/* Allocates and returns a CPP_STRING token, containing TEXT of length
   LEN, after null-terminating it.  TEXT must be in permanent storage.  */
   LEN, after null-terminating it.  TEXT must be in permanent storage.  */
static const cpp_token *
static const cpp_token *
new_string_token (cpp_reader *pfile, unsigned char *text, unsigned int len)
new_string_token (cpp_reader *pfile, unsigned char *text, unsigned int len)
{
{
  cpp_token *token = _cpp_temp_token (pfile);
  cpp_token *token = _cpp_temp_token (pfile);
 
 
  text[len] = '\0';
  text[len] = '\0';
  token->type = CPP_STRING;
  token->type = CPP_STRING;
  token->val.str.len = len;
  token->val.str.len = len;
  token->val.str.text = text;
  token->val.str.text = text;
  token->flags = 0;
  token->flags = 0;
  return token;
  return token;
}
}
 
 
static const char * const monthnames[] =
static const char * const monthnames[] =
{
{
  "Jan", "Feb", "Mar", "Apr", "May", "Jun",
  "Jan", "Feb", "Mar", "Apr", "May", "Jun",
  "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
  "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
};
 
 
/* Helper function for builtin_macro.  Returns the text generated by
/* Helper function for builtin_macro.  Returns the text generated by
   a builtin macro. */
   a builtin macro. */
const uchar *
const uchar *
_cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node)
_cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node)
{
{
  const struct line_map *map;
  const struct line_map *map;
  const uchar *result = NULL;
  const uchar *result = NULL;
  linenum_type number = 1;
  linenum_type number = 1;
 
 
  switch (node->value.builtin)
  switch (node->value.builtin)
    {
    {
    default:
    default:
      cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
      cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
                 NODE_NAME (node));
                 NODE_NAME (node));
      break;
      break;
 
 
    case BT_TIMESTAMP:
    case BT_TIMESTAMP:
      {
      {
        cpp_buffer *pbuffer = cpp_get_buffer (pfile);
        cpp_buffer *pbuffer = cpp_get_buffer (pfile);
        if (pbuffer->timestamp == NULL)
        if (pbuffer->timestamp == NULL)
          {
          {
            /* Initialize timestamp value of the assotiated file. */
            /* Initialize timestamp value of the assotiated file. */
            struct _cpp_file *file = cpp_get_file (pbuffer);
            struct _cpp_file *file = cpp_get_file (pbuffer);
            if (file)
            if (file)
              {
              {
                /* Generate __TIMESTAMP__ string, that represents
                /* Generate __TIMESTAMP__ string, that represents
                   the date and time of the last modification
                   the date and time of the last modification
                   of the current source file. The string constant
                   of the current source file. The string constant
                   looks like "Sun Sep 16 01:03:52 1973".  */
                   looks like "Sun Sep 16 01:03:52 1973".  */
                struct tm *tb = NULL;
                struct tm *tb = NULL;
                struct stat *st = _cpp_get_file_stat (file);
                struct stat *st = _cpp_get_file_stat (file);
                if (st)
                if (st)
                  tb = localtime (&st->st_mtime);
                  tb = localtime (&st->st_mtime);
                if (tb)
                if (tb)
                  {
                  {
                    char *str = asctime (tb);
                    char *str = asctime (tb);
                    size_t len = strlen (str);
                    size_t len = strlen (str);
                    unsigned char *buf = _cpp_unaligned_alloc (pfile, len + 2);
                    unsigned char *buf = _cpp_unaligned_alloc (pfile, len + 2);
                    buf[0] = '"';
                    buf[0] = '"';
                    strcpy ((char *) buf + 1, str);
                    strcpy ((char *) buf + 1, str);
                    buf[len] = '"';
                    buf[len] = '"';
                    pbuffer->timestamp = buf;
                    pbuffer->timestamp = buf;
                  }
                  }
                else
                else
                  {
                  {
                    cpp_errno (pfile, CPP_DL_WARNING,
                    cpp_errno (pfile, CPP_DL_WARNING,
                        "could not determine file timestamp");
                        "could not determine file timestamp");
                    pbuffer->timestamp = UC"\"??? ??? ?? ??:??:?? ????\"";
                    pbuffer->timestamp = UC"\"??? ??? ?? ??:??:?? ????\"";
                  }
                  }
              }
              }
          }
          }
        result = pbuffer->timestamp;
        result = pbuffer->timestamp;
      }
      }
      break;
      break;
    case BT_FILE:
    case BT_FILE:
    case BT_BASE_FILE:
    case BT_BASE_FILE:
      {
      {
        unsigned int len;
        unsigned int len;
        const char *name;
        const char *name;
        uchar *buf;
        uchar *buf;
        map = linemap_lookup (pfile->line_table, pfile->line_table->highest_line);
        map = linemap_lookup (pfile->line_table, pfile->line_table->highest_line);
 
 
        if (node->value.builtin == BT_BASE_FILE)
        if (node->value.builtin == BT_BASE_FILE)
          while (! MAIN_FILE_P (map))
          while (! MAIN_FILE_P (map))
            map = INCLUDED_FROM (pfile->line_table, map);
            map = INCLUDED_FROM (pfile->line_table, map);
 
 
        name = map->to_file;
        name = map->to_file;
        len = strlen (name);
        len = strlen (name);
        buf = _cpp_unaligned_alloc (pfile, len * 2 + 3);
        buf = _cpp_unaligned_alloc (pfile, len * 2 + 3);
        result = buf;
        result = buf;
        *buf = '"';
        *buf = '"';
        buf = cpp_quote_string (buf + 1, (const unsigned char *) name, len);
        buf = cpp_quote_string (buf + 1, (const unsigned char *) name, len);
        *buf++ = '"';
        *buf++ = '"';
        *buf = '\0';
        *buf = '\0';
      }
      }
      break;
      break;
 
 
    case BT_INCLUDE_LEVEL:
    case BT_INCLUDE_LEVEL:
      /* The line map depth counts the primary source as level 1, but
      /* The line map depth counts the primary source as level 1, but
         historically __INCLUDE_DEPTH__ has called the primary source
         historically __INCLUDE_DEPTH__ has called the primary source
         level 0.  */
         level 0.  */
      number = pfile->line_table->depth - 1;
      number = pfile->line_table->depth - 1;
      break;
      break;
 
 
    case BT_SPECLINE:
    case BT_SPECLINE:
      map = &pfile->line_table->maps[pfile->line_table->used-1];
      map = &pfile->line_table->maps[pfile->line_table->used-1];
      /* If __LINE__ is embedded in a macro, it must expand to the
      /* If __LINE__ is embedded in a macro, it must expand to the
         line of the macro's invocation, not its definition.
         line of the macro's invocation, not its definition.
         Otherwise things like assert() will not work properly.  */
         Otherwise things like assert() will not work properly.  */
      number = SOURCE_LINE (map,
      number = SOURCE_LINE (map,
                            CPP_OPTION (pfile, traditional)
                            CPP_OPTION (pfile, traditional)
                            ? pfile->line_table->highest_line
                            ? pfile->line_table->highest_line
                            : pfile->cur_token[-1].src_loc);
                            : pfile->cur_token[-1].src_loc);
      break;
      break;
 
 
      /* __STDC__ has the value 1 under normal circumstances.
      /* __STDC__ has the value 1 under normal circumstances.
         However, if (a) we are in a system header, (b) the option
         However, if (a) we are in a system header, (b) the option
         stdc_0_in_system_headers is true (set by target config), and
         stdc_0_in_system_headers is true (set by target config), and
         (c) we are not in strictly conforming mode, then it has the
         (c) we are not in strictly conforming mode, then it has the
         value 0.  (b) and (c) are already checked in cpp_init_builtins.  */
         value 0.  (b) and (c) are already checked in cpp_init_builtins.  */
    case BT_STDC:
    case BT_STDC:
      if (cpp_in_system_header (pfile))
      if (cpp_in_system_header (pfile))
        number = 0;
        number = 0;
      else
      else
        number = 1;
        number = 1;
      break;
      break;
 
 
    case BT_DATE:
    case BT_DATE:
    case BT_TIME:
    case BT_TIME:
      if (pfile->date == NULL)
      if (pfile->date == NULL)
        {
        {
          /* Allocate __DATE__ and __TIME__ strings from permanent
          /* Allocate __DATE__ and __TIME__ strings from permanent
             storage.  We only do this once, and don't generate them
             storage.  We only do this once, and don't generate them
             at init time, because time() and localtime() are very
             at init time, because time() and localtime() are very
             slow on some systems.  */
             slow on some systems.  */
          time_t tt;
          time_t tt;
          struct tm *tb = NULL;
          struct tm *tb = NULL;
 
 
          /* (time_t) -1 is a legitimate value for "number of seconds
          /* (time_t) -1 is a legitimate value for "number of seconds
             since the Epoch", so we have to do a little dance to
             since the Epoch", so we have to do a little dance to
             distinguish that from a genuine error.  */
             distinguish that from a genuine error.  */
          errno = 0;
          errno = 0;
          tt = time(NULL);
          tt = time(NULL);
          if (tt != (time_t)-1 || errno == 0)
          if (tt != (time_t)-1 || errno == 0)
            tb = localtime (&tt);
            tb = localtime (&tt);
 
 
          if (tb)
          if (tb)
            {
            {
              pfile->date = _cpp_unaligned_alloc (pfile,
              pfile->date = _cpp_unaligned_alloc (pfile,
                                                  sizeof ("\"Oct 11 1347\""));
                                                  sizeof ("\"Oct 11 1347\""));
              sprintf ((char *) pfile->date, "\"%s %2d %4d\"",
              sprintf ((char *) pfile->date, "\"%s %2d %4d\"",
                       monthnames[tb->tm_mon], tb->tm_mday,
                       monthnames[tb->tm_mon], tb->tm_mday,
                       tb->tm_year + 1900);
                       tb->tm_year + 1900);
 
 
              pfile->time = _cpp_unaligned_alloc (pfile,
              pfile->time = _cpp_unaligned_alloc (pfile,
                                                  sizeof ("\"12:34:56\""));
                                                  sizeof ("\"12:34:56\""));
              sprintf ((char *) pfile->time, "\"%02d:%02d:%02d\"",
              sprintf ((char *) pfile->time, "\"%02d:%02d:%02d\"",
                       tb->tm_hour, tb->tm_min, tb->tm_sec);
                       tb->tm_hour, tb->tm_min, tb->tm_sec);
            }
            }
          else
          else
            {
            {
              cpp_errno (pfile, CPP_DL_WARNING,
              cpp_errno (pfile, CPP_DL_WARNING,
                         "could not determine date and time");
                         "could not determine date and time");
 
 
              pfile->date = UC"\"??? ?? ????\"";
              pfile->date = UC"\"??? ?? ????\"";
              pfile->time = UC"\"??:??:??\"";
              pfile->time = UC"\"??:??:??\"";
            }
            }
        }
        }
 
 
      if (node->value.builtin == BT_DATE)
      if (node->value.builtin == BT_DATE)
        result = pfile->date;
        result = pfile->date;
      else
      else
        result = pfile->time;
        result = pfile->time;
      break;
      break;
 
 
    case BT_COUNTER:
    case BT_COUNTER:
      if (CPP_OPTION (pfile, directives_only) && pfile->state.in_directive)
      if (CPP_OPTION (pfile, directives_only) && pfile->state.in_directive)
        cpp_error (pfile, CPP_DL_ERROR,
        cpp_error (pfile, CPP_DL_ERROR,
            "__COUNTER__ expanded inside directive with -fdirectives-only");
            "__COUNTER__ expanded inside directive with -fdirectives-only");
      number = pfile->counter++;
      number = pfile->counter++;
      break;
      break;
    }
    }
 
 
  if (result == NULL)
  if (result == NULL)
    {
    {
      /* 21 bytes holds all NUL-terminated unsigned 64-bit numbers.  */
      /* 21 bytes holds all NUL-terminated unsigned 64-bit numbers.  */
      result = _cpp_unaligned_alloc (pfile, 21);
      result = _cpp_unaligned_alloc (pfile, 21);
      sprintf ((char *) result, "%u", number);
      sprintf ((char *) result, "%u", number);
    }
    }
 
 
  return result;
  return result;
}
}
 
 
/* Convert builtin macros like __FILE__ to a token and push it on the
/* Convert builtin macros like __FILE__ to a token and push it on the
   context stack.  Also handles _Pragma, for which a new token may not
   context stack.  Also handles _Pragma, for which a new token may not
   be created.  Returns 1 if it generates a new token context, 0 to
   be created.  Returns 1 if it generates a new token context, 0 to
   return the token to the caller.  */
   return the token to the caller.  */
static int
static int
builtin_macro (cpp_reader *pfile, cpp_hashnode *node)
builtin_macro (cpp_reader *pfile, cpp_hashnode *node)
{
{
  const uchar *buf;
  const uchar *buf;
  size_t len;
  size_t len;
  char *nbuf;
  char *nbuf;
 
 
  if (node->value.builtin == BT_PRAGMA)
  if (node->value.builtin == BT_PRAGMA)
    {
    {
      /* Don't interpret _Pragma within directives.  The standard is
      /* Don't interpret _Pragma within directives.  The standard is
         not clear on this, but to me this makes most sense.  */
         not clear on this, but to me this makes most sense.  */
      if (pfile->state.in_directive)
      if (pfile->state.in_directive)
        return 0;
        return 0;
 
 
      return _cpp_do__Pragma (pfile);
      return _cpp_do__Pragma (pfile);
    }
    }
 
 
  buf = _cpp_builtin_macro_text (pfile, node);
  buf = _cpp_builtin_macro_text (pfile, node);
  len = ustrlen (buf);
  len = ustrlen (buf);
  nbuf = (char *) alloca (len + 1);
  nbuf = (char *) alloca (len + 1);
  memcpy (nbuf, buf, len);
  memcpy (nbuf, buf, len);
  nbuf[len]='\n';
  nbuf[len]='\n';
 
 
  cpp_push_buffer (pfile, (uchar *) nbuf, len, /* from_stage3 */ true);
  cpp_push_buffer (pfile, (uchar *) nbuf, len, /* from_stage3 */ true);
  _cpp_clean_line (pfile);
  _cpp_clean_line (pfile);
 
 
  /* Set pfile->cur_token as required by _cpp_lex_direct.  */
  /* Set pfile->cur_token as required by _cpp_lex_direct.  */
  pfile->cur_token = _cpp_temp_token (pfile);
  pfile->cur_token = _cpp_temp_token (pfile);
  _cpp_push_token_context (pfile, NULL, _cpp_lex_direct (pfile), 1);
  _cpp_push_token_context (pfile, NULL, _cpp_lex_direct (pfile), 1);
  if (pfile->buffer->cur != pfile->buffer->rlimit)
  if (pfile->buffer->cur != pfile->buffer->rlimit)
    cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
    cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
               NODE_NAME (node));
               NODE_NAME (node));
  _cpp_pop_buffer (pfile);
  _cpp_pop_buffer (pfile);
 
 
  return 1;
  return 1;
}
}
 
 
/* Copies SRC, of length LEN, to DEST, adding backslashes before all
/* Copies SRC, of length LEN, to DEST, adding backslashes before all
   backslashes and double quotes. DEST must be of sufficient size.
   backslashes and double quotes. DEST must be of sufficient size.
   Returns a pointer to the end of the string.  */
   Returns a pointer to the end of the string.  */
uchar *
uchar *
cpp_quote_string (uchar *dest, const uchar *src, unsigned int len)
cpp_quote_string (uchar *dest, const uchar *src, unsigned int len)
{
{
  while (len--)
  while (len--)
    {
    {
      uchar c = *src++;
      uchar c = *src++;
 
 
      if (c == '\\' || c == '"')
      if (c == '\\' || c == '"')
        {
        {
          *dest++ = '\\';
          *dest++ = '\\';
          *dest++ = c;
          *dest++ = c;
        }
        }
      else
      else
          *dest++ = c;
          *dest++ = c;
    }
    }
 
 
  return dest;
  return dest;
}
}
 
 
/* Convert a token sequence ARG to a single string token according to
/* Convert a token sequence ARG to a single string token according to
   the rules of the ISO C #-operator.  */
   the rules of the ISO C #-operator.  */
static const cpp_token *
static const cpp_token *
stringify_arg (cpp_reader *pfile, macro_arg *arg)
stringify_arg (cpp_reader *pfile, macro_arg *arg)
{
{
  unsigned char *dest;
  unsigned char *dest;
  unsigned int i, escape_it, backslash_count = 0;
  unsigned int i, escape_it, backslash_count = 0;
  const cpp_token *source = NULL;
  const cpp_token *source = NULL;
  size_t len;
  size_t len;
 
 
  if (BUFF_ROOM (pfile->u_buff) < 3)
  if (BUFF_ROOM (pfile->u_buff) < 3)
    _cpp_extend_buff (pfile, &pfile->u_buff, 3);
    _cpp_extend_buff (pfile, &pfile->u_buff, 3);
  dest = BUFF_FRONT (pfile->u_buff);
  dest = BUFF_FRONT (pfile->u_buff);
  *dest++ = '"';
  *dest++ = '"';
 
 
  /* Loop, reading in the argument's tokens.  */
  /* Loop, reading in the argument's tokens.  */
  for (i = 0; i < arg->count; i++)
  for (i = 0; i < arg->count; i++)
    {
    {
      const cpp_token *token = arg->first[i];
      const cpp_token *token = arg->first[i];
 
 
      if (token->type == CPP_PADDING)
      if (token->type == CPP_PADDING)
        {
        {
          if (source == NULL
          if (source == NULL
              || (!(source->flags & PREV_WHITE)
              || (!(source->flags & PREV_WHITE)
                  && token->val.source == NULL))
                  && token->val.source == NULL))
            source = token->val.source;
            source = token->val.source;
          continue;
          continue;
        }
        }
 
 
      escape_it = (token->type == CPP_STRING || token->type == CPP_CHAR
      escape_it = (token->type == CPP_STRING || token->type == CPP_CHAR
                   || token->type == CPP_WSTRING || token->type == CPP_WCHAR
                   || token->type == CPP_WSTRING || token->type == CPP_WCHAR
                   || token->type == CPP_STRING32 || token->type == CPP_CHAR32
                   || token->type == CPP_STRING32 || token->type == CPP_CHAR32
                   || token->type == CPP_STRING16 || token->type == CPP_CHAR16
                   || token->type == CPP_STRING16 || token->type == CPP_CHAR16
                   || token->type == CPP_UTF8STRING);
                   || token->type == CPP_UTF8STRING);
 
 
      /* Room for each char being written in octal, initial space and
      /* Room for each char being written in octal, initial space and
         final quote and NUL.  */
         final quote and NUL.  */
      len = cpp_token_len (token);
      len = cpp_token_len (token);
      if (escape_it)
      if (escape_it)
        len *= 4;
        len *= 4;
      len += 3;
      len += 3;
 
 
      if ((size_t) (BUFF_LIMIT (pfile->u_buff) - dest) < len)
      if ((size_t) (BUFF_LIMIT (pfile->u_buff) - dest) < len)
        {
        {
          size_t len_so_far = dest - BUFF_FRONT (pfile->u_buff);
          size_t len_so_far = dest - BUFF_FRONT (pfile->u_buff);
          _cpp_extend_buff (pfile, &pfile->u_buff, len);
          _cpp_extend_buff (pfile, &pfile->u_buff, len);
          dest = BUFF_FRONT (pfile->u_buff) + len_so_far;
          dest = BUFF_FRONT (pfile->u_buff) + len_so_far;
        }
        }
 
 
      /* Leading white space?  */
      /* Leading white space?  */
      if (dest - 1 != BUFF_FRONT (pfile->u_buff))
      if (dest - 1 != BUFF_FRONT (pfile->u_buff))
        {
        {
          if (source == NULL)
          if (source == NULL)
            source = token;
            source = token;
          if (source->flags & PREV_WHITE)
          if (source->flags & PREV_WHITE)
            *dest++ = ' ';
            *dest++ = ' ';
        }
        }
      source = NULL;
      source = NULL;
 
 
      if (escape_it)
      if (escape_it)
        {
        {
          _cpp_buff *buff = _cpp_get_buff (pfile, len);
          _cpp_buff *buff = _cpp_get_buff (pfile, len);
          unsigned char *buf = BUFF_FRONT (buff);
          unsigned char *buf = BUFF_FRONT (buff);
          len = cpp_spell_token (pfile, token, buf, true) - buf;
          len = cpp_spell_token (pfile, token, buf, true) - buf;
          dest = cpp_quote_string (dest, buf, len);
          dest = cpp_quote_string (dest, buf, len);
          _cpp_release_buff (pfile, buff);
          _cpp_release_buff (pfile, buff);
        }
        }
      else
      else
        dest = cpp_spell_token (pfile, token, dest, true);
        dest = cpp_spell_token (pfile, token, dest, true);
 
 
      if (token->type == CPP_OTHER && token->val.str.text[0] == '\\')
      if (token->type == CPP_OTHER && token->val.str.text[0] == '\\')
        backslash_count++;
        backslash_count++;
      else
      else
        backslash_count = 0;
        backslash_count = 0;
    }
    }
 
 
  /* Ignore the final \ of invalid string literals.  */
  /* Ignore the final \ of invalid string literals.  */
  if (backslash_count & 1)
  if (backslash_count & 1)
    {
    {
      cpp_error (pfile, CPP_DL_WARNING,
      cpp_error (pfile, CPP_DL_WARNING,
                 "invalid string literal, ignoring final '\\'");
                 "invalid string literal, ignoring final '\\'");
      dest--;
      dest--;
    }
    }
 
 
  /* Commit the memory, including NUL, and return the token.  */
  /* Commit the memory, including NUL, and return the token.  */
  *dest++ = '"';
  *dest++ = '"';
  len = dest - BUFF_FRONT (pfile->u_buff);
  len = dest - BUFF_FRONT (pfile->u_buff);
  BUFF_FRONT (pfile->u_buff) = dest + 1;
  BUFF_FRONT (pfile->u_buff) = dest + 1;
  return new_string_token (pfile, dest - len, len);
  return new_string_token (pfile, dest - len, len);
}
}
 
 
/* Try to paste two tokens.  On success, return nonzero.  In any
/* Try to paste two tokens.  On success, return nonzero.  In any
   case, PLHS is updated to point to the pasted token, which is
   case, PLHS is updated to point to the pasted token, which is
   guaranteed to not have the PASTE_LEFT flag set.  */
   guaranteed to not have the PASTE_LEFT flag set.  */
static bool
static bool
paste_tokens (cpp_reader *pfile, const cpp_token **plhs, const cpp_token *rhs)
paste_tokens (cpp_reader *pfile, const cpp_token **plhs, const cpp_token *rhs)
{
{
  unsigned char *buf, *end, *lhsend;
  unsigned char *buf, *end, *lhsend;
  cpp_token *lhs;
  cpp_token *lhs;
  unsigned int len;
  unsigned int len;
 
 
  len = cpp_token_len (*plhs) + cpp_token_len (rhs) + 1;
  len = cpp_token_len (*plhs) + cpp_token_len (rhs) + 1;
  buf = (unsigned char *) alloca (len);
  buf = (unsigned char *) alloca (len);
  end = lhsend = cpp_spell_token (pfile, *plhs, buf, false);
  end = lhsend = cpp_spell_token (pfile, *plhs, buf, false);
 
 
  /* Avoid comment headers, since they are still processed in stage 3.
  /* Avoid comment headers, since they are still processed in stage 3.
     It is simpler to insert a space here, rather than modifying the
     It is simpler to insert a space here, rather than modifying the
     lexer to ignore comments in some circumstances.  Simply returning
     lexer to ignore comments in some circumstances.  Simply returning
     false doesn't work, since we want to clear the PASTE_LEFT flag.  */
     false doesn't work, since we want to clear the PASTE_LEFT flag.  */
  if ((*plhs)->type == CPP_DIV && rhs->type != CPP_EQ)
  if ((*plhs)->type == CPP_DIV && rhs->type != CPP_EQ)
    *end++ = ' ';
    *end++ = ' ';
  /* In one obscure case we might see padding here.  */
  /* In one obscure case we might see padding here.  */
  if (rhs->type != CPP_PADDING)
  if (rhs->type != CPP_PADDING)
    end = cpp_spell_token (pfile, rhs, end, false);
    end = cpp_spell_token (pfile, rhs, end, false);
  *end = '\n';
  *end = '\n';
 
 
  cpp_push_buffer (pfile, buf, end - buf, /* from_stage3 */ true);
  cpp_push_buffer (pfile, buf, end - buf, /* from_stage3 */ true);
  _cpp_clean_line (pfile);
  _cpp_clean_line (pfile);
 
 
  /* Set pfile->cur_token as required by _cpp_lex_direct.  */
  /* Set pfile->cur_token as required by _cpp_lex_direct.  */
  pfile->cur_token = _cpp_temp_token (pfile);
  pfile->cur_token = _cpp_temp_token (pfile);
  lhs = _cpp_lex_direct (pfile);
  lhs = _cpp_lex_direct (pfile);
  if (pfile->buffer->cur != pfile->buffer->rlimit)
  if (pfile->buffer->cur != pfile->buffer->rlimit)
    {
    {
      source_location saved_loc = lhs->src_loc;
      source_location saved_loc = lhs->src_loc;
 
 
      _cpp_pop_buffer (pfile);
      _cpp_pop_buffer (pfile);
      _cpp_backup_tokens (pfile, 1);
      _cpp_backup_tokens (pfile, 1);
      *lhsend = '\0';
      *lhsend = '\0';
 
 
      /* We have to remove the PASTE_LEFT flag from the old lhs, but
      /* We have to remove the PASTE_LEFT flag from the old lhs, but
         we want to keep the new location.  */
         we want to keep the new location.  */
      *lhs = **plhs;
      *lhs = **plhs;
      *plhs = lhs;
      *plhs = lhs;
      lhs->src_loc = saved_loc;
      lhs->src_loc = saved_loc;
      lhs->flags &= ~PASTE_LEFT;
      lhs->flags &= ~PASTE_LEFT;
 
 
      /* Mandatory error for all apart from assembler.  */
      /* Mandatory error for all apart from assembler.  */
      if (CPP_OPTION (pfile, lang) != CLK_ASM)
      if (CPP_OPTION (pfile, lang) != CLK_ASM)
        cpp_error (pfile, CPP_DL_ERROR,
        cpp_error (pfile, CPP_DL_ERROR,
         "pasting \"%s\" and \"%s\" does not give a valid preprocessing token",
         "pasting \"%s\" and \"%s\" does not give a valid preprocessing token",
                   buf, cpp_token_as_text (pfile, rhs));
                   buf, cpp_token_as_text (pfile, rhs));
      return false;
      return false;
    }
    }
 
 
  *plhs = lhs;
  *plhs = lhs;
  _cpp_pop_buffer (pfile);
  _cpp_pop_buffer (pfile);
  return true;
  return true;
}
}
 
 
/* Handles an arbitrarily long sequence of ## operators, with initial
/* Handles an arbitrarily long sequence of ## operators, with initial
   operand LHS.  This implementation is left-associative,
   operand LHS.  This implementation is left-associative,
   non-recursive, and finishes a paste before handling succeeding
   non-recursive, and finishes a paste before handling succeeding
   ones.  If a paste fails, we back up to the RHS of the failing ##
   ones.  If a paste fails, we back up to the RHS of the failing ##
   operator before pushing the context containing the result of prior
   operator before pushing the context containing the result of prior
   successful pastes, with the effect that the RHS appears in the
   successful pastes, with the effect that the RHS appears in the
   output stream after the pasted LHS normally.  */
   output stream after the pasted LHS normally.  */
static void
static void
paste_all_tokens (cpp_reader *pfile, const cpp_token *lhs)
paste_all_tokens (cpp_reader *pfile, const cpp_token *lhs)
{
{
  const cpp_token *rhs;
  const cpp_token *rhs;
  cpp_context *context = pfile->context;
  cpp_context *context = pfile->context;
 
 
  do
  do
    {
    {
      /* Take the token directly from the current context.  We can do
      /* Take the token directly from the current context.  We can do
         this, because we are in the replacement list of either an
         this, because we are in the replacement list of either an
         object-like macro, or a function-like macro with arguments
         object-like macro, or a function-like macro with arguments
         inserted.  In either case, the constraints to #define
         inserted.  In either case, the constraints to #define
         guarantee we have at least one more token.  */
         guarantee we have at least one more token.  */
      if (context->direct_p)
      if (context->direct_p)
        rhs = FIRST (context).token++;
        rhs = FIRST (context).token++;
      else
      else
        rhs = *FIRST (context).ptoken++;
        rhs = *FIRST (context).ptoken++;
 
 
      if (rhs->type == CPP_PADDING)
      if (rhs->type == CPP_PADDING)
        {
        {
          if (rhs->flags & PASTE_LEFT)
          if (rhs->flags & PASTE_LEFT)
            abort ();
            abort ();
        }
        }
      if (!paste_tokens (pfile, &lhs, rhs))
      if (!paste_tokens (pfile, &lhs, rhs))
        break;
        break;
    }
    }
  while (rhs->flags & PASTE_LEFT);
  while (rhs->flags & PASTE_LEFT);
 
 
  /* Put the resulting token in its own context.  */
  /* Put the resulting token in its own context.  */
  _cpp_push_token_context (pfile, NULL, lhs, 1);
  _cpp_push_token_context (pfile, NULL, lhs, 1);
}
}
 
 
/* Returns TRUE if the number of arguments ARGC supplied in an
/* Returns TRUE if the number of arguments ARGC supplied in an
   invocation of the MACRO referenced by NODE is valid.  An empty
   invocation of the MACRO referenced by NODE is valid.  An empty
   invocation to a macro with no parameters should pass ARGC as zero.
   invocation to a macro with no parameters should pass ARGC as zero.
 
 
   Note that MACRO cannot necessarily be deduced from NODE, in case
   Note that MACRO cannot necessarily be deduced from NODE, in case
   NODE was redefined whilst collecting arguments.  */
   NODE was redefined whilst collecting arguments.  */
bool
bool
_cpp_arguments_ok (cpp_reader *pfile, cpp_macro *macro, const cpp_hashnode *node, unsigned int argc)
_cpp_arguments_ok (cpp_reader *pfile, cpp_macro *macro, const cpp_hashnode *node, unsigned int argc)
{
{
  if (argc == macro->paramc)
  if (argc == macro->paramc)
    return true;
    return true;
 
 
  if (argc < macro->paramc)
  if (argc < macro->paramc)
    {
    {
      /* As an extension, a rest argument is allowed to not appear in
      /* As an extension, a rest argument is allowed to not appear in
         the invocation at all.
         the invocation at all.
         e.g. #define debug(format, args...) something
         e.g. #define debug(format, args...) something
         debug("string");
         debug("string");
 
 
         This is exactly the same as if there had been an empty rest
         This is exactly the same as if there had been an empty rest
         argument - debug("string", ).  */
         argument - debug("string", ).  */
 
 
      if (argc + 1 == macro->paramc && macro->variadic)
      if (argc + 1 == macro->paramc && macro->variadic)
        {
        {
          if (CPP_PEDANTIC (pfile) && ! macro->syshdr)
          if (CPP_PEDANTIC (pfile) && ! macro->syshdr)
            cpp_error (pfile, CPP_DL_PEDWARN,
            cpp_error (pfile, CPP_DL_PEDWARN,
                       "ISO C99 requires rest arguments to be used");
                       "ISO C99 requires rest arguments to be used");
          return true;
          return true;
        }
        }
 
 
      cpp_error (pfile, CPP_DL_ERROR,
      cpp_error (pfile, CPP_DL_ERROR,
                 "macro \"%s\" requires %u arguments, but only %u given",
                 "macro \"%s\" requires %u arguments, but only %u given",
                 NODE_NAME (node), macro->paramc, argc);
                 NODE_NAME (node), macro->paramc, argc);
    }
    }
  else
  else
    cpp_error (pfile, CPP_DL_ERROR,
    cpp_error (pfile, CPP_DL_ERROR,
               "macro \"%s\" passed %u arguments, but takes just %u",
               "macro \"%s\" passed %u arguments, but takes just %u",
               NODE_NAME (node), argc, macro->paramc);
               NODE_NAME (node), argc, macro->paramc);
 
 
  return false;
  return false;
}
}
 
 
/* Reads and returns the arguments to a function-like macro
/* Reads and returns the arguments to a function-like macro
   invocation.  Assumes the opening parenthesis has been processed.
   invocation.  Assumes the opening parenthesis has been processed.
   If there is an error, emits an appropriate diagnostic and returns
   If there is an error, emits an appropriate diagnostic and returns
   NULL.  Each argument is terminated by a CPP_EOF token, for the
   NULL.  Each argument is terminated by a CPP_EOF token, for the
   future benefit of expand_arg().  If there are any deferred
   future benefit of expand_arg().  If there are any deferred
   #pragma directives among macro arguments, store pointers to the
   #pragma directives among macro arguments, store pointers to the
   CPP_PRAGMA ... CPP_PRAGMA_EOL tokens into *PRAGMA_BUFF buffer.  */
   CPP_PRAGMA ... CPP_PRAGMA_EOL tokens into *PRAGMA_BUFF buffer.  */
static _cpp_buff *
static _cpp_buff *
collect_args (cpp_reader *pfile, const cpp_hashnode *node,
collect_args (cpp_reader *pfile, const cpp_hashnode *node,
              _cpp_buff **pragma_buff)
              _cpp_buff **pragma_buff)
{
{
  _cpp_buff *buff, *base_buff;
  _cpp_buff *buff, *base_buff;
  cpp_macro *macro;
  cpp_macro *macro;
  macro_arg *args, *arg;
  macro_arg *args, *arg;
  const cpp_token *token;
  const cpp_token *token;
  unsigned int argc;
  unsigned int argc;
 
 
  macro = node->value.macro;
  macro = node->value.macro;
  if (macro->paramc)
  if (macro->paramc)
    argc = macro->paramc;
    argc = macro->paramc;
  else
  else
    argc = 1;
    argc = 1;
  buff = _cpp_get_buff (pfile, argc * (50 * sizeof (cpp_token *)
  buff = _cpp_get_buff (pfile, argc * (50 * sizeof (cpp_token *)
                                       + sizeof (macro_arg)));
                                       + sizeof (macro_arg)));
  base_buff = buff;
  base_buff = buff;
  args = (macro_arg *) buff->base;
  args = (macro_arg *) buff->base;
  memset (args, 0, argc * sizeof (macro_arg));
  memset (args, 0, argc * sizeof (macro_arg));
  buff->cur = (unsigned char *) &args[argc];
  buff->cur = (unsigned char *) &args[argc];
  arg = args, argc = 0;
  arg = args, argc = 0;
 
 
  /* Collect the tokens making up each argument.  We don't yet know
  /* Collect the tokens making up each argument.  We don't yet know
     how many arguments have been supplied, whether too many or too
     how many arguments have been supplied, whether too many or too
     few.  Hence the slightly bizarre usage of "argc" and "arg".  */
     few.  Hence the slightly bizarre usage of "argc" and "arg".  */
  do
  do
    {
    {
      unsigned int paren_depth = 0;
      unsigned int paren_depth = 0;
      unsigned int ntokens = 0;
      unsigned int ntokens = 0;
 
 
      argc++;
      argc++;
      arg->first = (const cpp_token **) buff->cur;
      arg->first = (const cpp_token **) buff->cur;
 
 
      for (;;)
      for (;;)
        {
        {
          /* Require space for 2 new tokens (including a CPP_EOF).  */
          /* Require space for 2 new tokens (including a CPP_EOF).  */
          if ((unsigned char *) &arg->first[ntokens + 2] > buff->limit)
          if ((unsigned char *) &arg->first[ntokens + 2] > buff->limit)
            {
            {
              buff = _cpp_append_extend_buff (pfile, buff,
              buff = _cpp_append_extend_buff (pfile, buff,
                                              1000 * sizeof (cpp_token *));
                                              1000 * sizeof (cpp_token *));
              arg->first = (const cpp_token **) buff->cur;
              arg->first = (const cpp_token **) buff->cur;
            }
            }
 
 
          token = cpp_get_token (pfile);
          token = cpp_get_token (pfile);
 
 
          if (token->type == CPP_PADDING)
          if (token->type == CPP_PADDING)
            {
            {
              /* Drop leading padding.  */
              /* Drop leading padding.  */
              if (ntokens == 0)
              if (ntokens == 0)
                continue;
                continue;
            }
            }
          else if (token->type == CPP_OPEN_PAREN)
          else if (token->type == CPP_OPEN_PAREN)
            paren_depth++;
            paren_depth++;
          else if (token->type == CPP_CLOSE_PAREN)
          else if (token->type == CPP_CLOSE_PAREN)
            {
            {
              if (paren_depth-- == 0)
              if (paren_depth-- == 0)
                break;
                break;
            }
            }
          else if (token->type == CPP_COMMA)
          else if (token->type == CPP_COMMA)
            {
            {
              /* A comma does not terminate an argument within
              /* A comma does not terminate an argument within
                 parentheses or as part of a variable argument.  */
                 parentheses or as part of a variable argument.  */
              if (paren_depth == 0
              if (paren_depth == 0
                  && ! (macro->variadic && argc == macro->paramc))
                  && ! (macro->variadic && argc == macro->paramc))
                break;
                break;
            }
            }
          else if (token->type == CPP_EOF
          else if (token->type == CPP_EOF
                   || (token->type == CPP_HASH && token->flags & BOL))
                   || (token->type == CPP_HASH && token->flags & BOL))
            break;
            break;
          else if (token->type == CPP_PRAGMA)
          else if (token->type == CPP_PRAGMA)
            {
            {
              cpp_token *newtok = _cpp_temp_token (pfile);
              cpp_token *newtok = _cpp_temp_token (pfile);
 
 
              /* CPP_PRAGMA token lives in directive_result, which will
              /* CPP_PRAGMA token lives in directive_result, which will
                 be overwritten on the next directive.  */
                 be overwritten on the next directive.  */
              *newtok = *token;
              *newtok = *token;
              token = newtok;
              token = newtok;
              do
              do
                {
                {
                  if (*pragma_buff == NULL
                  if (*pragma_buff == NULL
                      || BUFF_ROOM (*pragma_buff) < sizeof (cpp_token *))
                      || BUFF_ROOM (*pragma_buff) < sizeof (cpp_token *))
                    {
                    {
                      _cpp_buff *next;
                      _cpp_buff *next;
                      if (*pragma_buff == NULL)
                      if (*pragma_buff == NULL)
                        *pragma_buff
                        *pragma_buff
                          = _cpp_get_buff (pfile, 32 * sizeof (cpp_token *));
                          = _cpp_get_buff (pfile, 32 * sizeof (cpp_token *));
                      else
                      else
                        {
                        {
                          next = *pragma_buff;
                          next = *pragma_buff;
                          *pragma_buff
                          *pragma_buff
                            = _cpp_get_buff (pfile,
                            = _cpp_get_buff (pfile,
                                             (BUFF_FRONT (*pragma_buff)
                                             (BUFF_FRONT (*pragma_buff)
                                              - (*pragma_buff)->base) * 2);
                                              - (*pragma_buff)->base) * 2);
                          (*pragma_buff)->next = next;
                          (*pragma_buff)->next = next;
                        }
                        }
                    }
                    }
                  *(const cpp_token **) BUFF_FRONT (*pragma_buff) = token;
                  *(const cpp_token **) BUFF_FRONT (*pragma_buff) = token;
                  BUFF_FRONT (*pragma_buff) += sizeof (cpp_token *);
                  BUFF_FRONT (*pragma_buff) += sizeof (cpp_token *);
                  if (token->type == CPP_PRAGMA_EOL)
                  if (token->type == CPP_PRAGMA_EOL)
                    break;
                    break;
                  token = cpp_get_token (pfile);
                  token = cpp_get_token (pfile);
                }
                }
              while (token->type != CPP_EOF);
              while (token->type != CPP_EOF);
 
 
              /* In deferred pragmas parsing_args and prevent_expansion
              /* In deferred pragmas parsing_args and prevent_expansion
                 had been changed, reset it.  */
                 had been changed, reset it.  */
              pfile->state.parsing_args = 2;
              pfile->state.parsing_args = 2;
              pfile->state.prevent_expansion = 1;
              pfile->state.prevent_expansion = 1;
 
 
              if (token->type == CPP_EOF)
              if (token->type == CPP_EOF)
                break;
                break;
              else
              else
                continue;
                continue;
            }
            }
 
 
          arg->first[ntokens++] = token;
          arg->first[ntokens++] = token;
        }
        }
 
 
      /* Drop trailing padding.  */
      /* Drop trailing padding.  */
      while (ntokens > 0 && arg->first[ntokens - 1]->type == CPP_PADDING)
      while (ntokens > 0 && arg->first[ntokens - 1]->type == CPP_PADDING)
        ntokens--;
        ntokens--;
 
 
      arg->count = ntokens;
      arg->count = ntokens;
      arg->first[ntokens] = &pfile->eof;
      arg->first[ntokens] = &pfile->eof;
 
 
      /* Terminate the argument.  Excess arguments loop back and
      /* Terminate the argument.  Excess arguments loop back and
         overwrite the final legitimate argument, before failing.  */
         overwrite the final legitimate argument, before failing.  */
      if (argc <= macro->paramc)
      if (argc <= macro->paramc)
        {
        {
          buff->cur = (unsigned char *) &arg->first[ntokens + 1];
          buff->cur = (unsigned char *) &arg->first[ntokens + 1];
          if (argc != macro->paramc)
          if (argc != macro->paramc)
            arg++;
            arg++;
        }
        }
    }
    }
  while (token->type != CPP_CLOSE_PAREN && token->type != CPP_EOF);
  while (token->type != CPP_CLOSE_PAREN && token->type != CPP_EOF);
 
 
  if (token->type == CPP_EOF)
  if (token->type == CPP_EOF)
    {
    {
      /* We still need the CPP_EOF to end directives, and to end
      /* We still need the CPP_EOF to end directives, and to end
         pre-expansion of a macro argument.  Step back is not
         pre-expansion of a macro argument.  Step back is not
         unconditional, since we don't want to return a CPP_EOF to our
         unconditional, since we don't want to return a CPP_EOF to our
         callers at the end of an -include-d file.  */
         callers at the end of an -include-d file.  */
      if (pfile->context->prev || pfile->state.in_directive)
      if (pfile->context->prev || pfile->state.in_directive)
        _cpp_backup_tokens (pfile, 1);
        _cpp_backup_tokens (pfile, 1);
      cpp_error (pfile, CPP_DL_ERROR,
      cpp_error (pfile, CPP_DL_ERROR,
                 "unterminated argument list invoking macro \"%s\"",
                 "unterminated argument list invoking macro \"%s\"",
                 NODE_NAME (node));
                 NODE_NAME (node));
    }
    }
  else
  else
    {
    {
      /* A single empty argument is counted as no argument.  */
      /* A single empty argument is counted as no argument.  */
      if (argc == 1 && macro->paramc == 0 && args[0].count == 0)
      if (argc == 1 && macro->paramc == 0 && args[0].count == 0)
        argc = 0;
        argc = 0;
      if (_cpp_arguments_ok (pfile, macro, node, argc))
      if (_cpp_arguments_ok (pfile, macro, node, argc))
        {
        {
          /* GCC has special semantics for , ## b where b is a varargs
          /* GCC has special semantics for , ## b where b is a varargs
             parameter: we remove the comma if b was omitted entirely.
             parameter: we remove the comma if b was omitted entirely.
             If b was merely an empty argument, the comma is retained.
             If b was merely an empty argument, the comma is retained.
             If the macro takes just one (varargs) parameter, then we
             If the macro takes just one (varargs) parameter, then we
             retain the comma only if we are standards conforming.
             retain the comma only if we are standards conforming.
 
 
             If FIRST is NULL replace_args () swallows the comma.  */
             If FIRST is NULL replace_args () swallows the comma.  */
          if (macro->variadic && (argc < macro->paramc
          if (macro->variadic && (argc < macro->paramc
                                  || (argc == 1 && args[0].count == 0
                                  || (argc == 1 && args[0].count == 0
                                      && !CPP_OPTION (pfile, std))))
                                      && !CPP_OPTION (pfile, std))))
            args[macro->paramc - 1].first = NULL;
            args[macro->paramc - 1].first = NULL;
          return base_buff;
          return base_buff;
        }
        }
    }
    }
 
 
  /* An error occurred.  */
  /* An error occurred.  */
  _cpp_release_buff (pfile, base_buff);
  _cpp_release_buff (pfile, base_buff);
  return NULL;
  return NULL;
}
}
 
 
/* Search for an opening parenthesis to the macro of NODE, in such a
/* Search for an opening parenthesis to the macro of NODE, in such a
   way that, if none is found, we don't lose the information in any
   way that, if none is found, we don't lose the information in any
   intervening padding tokens.  If we find the parenthesis, collect
   intervening padding tokens.  If we find the parenthesis, collect
   the arguments and return the buffer containing them.  PRAGMA_BUFF
   the arguments and return the buffer containing them.  PRAGMA_BUFF
   argument is the same as in collect_args.  */
   argument is the same as in collect_args.  */
static _cpp_buff *
static _cpp_buff *
funlike_invocation_p (cpp_reader *pfile, cpp_hashnode *node,
funlike_invocation_p (cpp_reader *pfile, cpp_hashnode *node,
                      _cpp_buff **pragma_buff)
                      _cpp_buff **pragma_buff)
{
{
  const cpp_token *token, *padding = NULL;
  const cpp_token *token, *padding = NULL;
 
 
  for (;;)
  for (;;)
    {
    {
      token = cpp_get_token (pfile);
      token = cpp_get_token (pfile);
      if (token->type != CPP_PADDING)
      if (token->type != CPP_PADDING)
        break;
        break;
      if (padding == NULL
      if (padding == NULL
          || (!(padding->flags & PREV_WHITE) && token->val.source == NULL))
          || (!(padding->flags & PREV_WHITE) && token->val.source == NULL))
        padding = token;
        padding = token;
    }
    }
 
 
  if (token->type == CPP_OPEN_PAREN)
  if (token->type == CPP_OPEN_PAREN)
    {
    {
      pfile->state.parsing_args = 2;
      pfile->state.parsing_args = 2;
      return collect_args (pfile, node, pragma_buff);
      return collect_args (pfile, node, pragma_buff);
    }
    }
 
 
  /* CPP_EOF can be the end of macro arguments, or the end of the
  /* CPP_EOF can be the end of macro arguments, or the end of the
     file.  We mustn't back up over the latter.  Ugh.  */
     file.  We mustn't back up over the latter.  Ugh.  */
  if (token->type != CPP_EOF || token == &pfile->eof)
  if (token->type != CPP_EOF || token == &pfile->eof)
    {
    {
      /* Back up.  We may have skipped padding, in which case backing
      /* Back up.  We may have skipped padding, in which case backing
         up more than one token when expanding macros is in general
         up more than one token when expanding macros is in general
         too difficult.  We re-insert it in its own context.  */
         too difficult.  We re-insert it in its own context.  */
      _cpp_backup_tokens (pfile, 1);
      _cpp_backup_tokens (pfile, 1);
      if (padding)
      if (padding)
        _cpp_push_token_context (pfile, NULL, padding, 1);
        _cpp_push_token_context (pfile, NULL, padding, 1);
    }
    }
 
 
  return NULL;
  return NULL;
}
}
 
 
/* Return the real number of tokens in the expansion of MACRO.  */
/* Return the real number of tokens in the expansion of MACRO.  */
static inline unsigned int
static inline unsigned int
macro_real_token_count (const cpp_macro *macro)
macro_real_token_count (const cpp_macro *macro)
{
{
  unsigned int i;
  unsigned int i;
  if (__builtin_expect (!macro->extra_tokens, true))
  if (__builtin_expect (!macro->extra_tokens, true))
    return macro->count;
    return macro->count;
  for (i = 0; i < macro->count; i++)
  for (i = 0; i < macro->count; i++)
    if (macro->exp.tokens[i].type == CPP_PASTE)
    if (macro->exp.tokens[i].type == CPP_PASTE)
      return i;
      return i;
  abort ();
  abort ();
}
}
 
 
/* Push the context of a macro with hash entry NODE onto the context
/* Push the context of a macro with hash entry NODE onto the context
   stack.  If we can successfully expand the macro, we push a context
   stack.  If we can successfully expand the macro, we push a context
   containing its yet-to-be-rescanned replacement list and return one.
   containing its yet-to-be-rescanned replacement list and return one.
   If there were additionally any unexpanded deferred #pragma directives
   If there were additionally any unexpanded deferred #pragma directives
   among macro arguments, push another context containing the
   among macro arguments, push another context containing the
   pragma tokens before the yet-to-be-rescanned replacement list
   pragma tokens before the yet-to-be-rescanned replacement list
   and return two.  Otherwise, we don't push a context and return zero.  */
   and return two.  Otherwise, we don't push a context and return zero.  */
static int
static int
enter_macro_context (cpp_reader *pfile, cpp_hashnode *node,
enter_macro_context (cpp_reader *pfile, cpp_hashnode *node,
                     const cpp_token *result)
                     const cpp_token *result)
{
{
  /* The presence of a macro invalidates a file's controlling macro.  */
  /* The presence of a macro invalidates a file's controlling macro.  */
  pfile->mi_valid = false;
  pfile->mi_valid = false;
 
 
  pfile->state.angled_headers = false;
  pfile->state.angled_headers = false;
 
 
  if ((node->flags & NODE_BUILTIN) && !(node->flags & NODE_USED))
  if ((node->flags & NODE_BUILTIN) && !(node->flags & NODE_USED))
    {
    {
      node->flags |= NODE_USED;
      node->flags |= NODE_USED;
      if (pfile->cb.used_define)
      if (pfile->cb.used_define)
        pfile->cb.used_define (pfile, pfile->directive_line, node);
        pfile->cb.used_define (pfile, pfile->directive_line, node);
    }
    }
 
 
  /* Handle standard macros.  */
  /* Handle standard macros.  */
  if (! (node->flags & NODE_BUILTIN))
  if (! (node->flags & NODE_BUILTIN))
    {
    {
      cpp_macro *macro = node->value.macro;
      cpp_macro *macro = node->value.macro;
      _cpp_buff *pragma_buff = NULL;
      _cpp_buff *pragma_buff = NULL;
 
 
      if (macro->fun_like)
      if (macro->fun_like)
        {
        {
          _cpp_buff *buff;
          _cpp_buff *buff;
 
 
          pfile->state.prevent_expansion++;
          pfile->state.prevent_expansion++;
          pfile->keep_tokens++;
          pfile->keep_tokens++;
          pfile->state.parsing_args = 1;
          pfile->state.parsing_args = 1;
          buff = funlike_invocation_p (pfile, node, &pragma_buff);
          buff = funlike_invocation_p (pfile, node, &pragma_buff);
          pfile->state.parsing_args = 0;
          pfile->state.parsing_args = 0;
          pfile->keep_tokens--;
          pfile->keep_tokens--;
          pfile->state.prevent_expansion--;
          pfile->state.prevent_expansion--;
 
 
          if (buff == NULL)
          if (buff == NULL)
            {
            {
              if (CPP_WTRADITIONAL (pfile) && ! node->value.macro->syshdr)
              if (CPP_WTRADITIONAL (pfile) && ! node->value.macro->syshdr)
                cpp_error (pfile, CPP_DL_WARNING,
                cpp_error (pfile, CPP_DL_WARNING,
 "function-like macro \"%s\" must be used with arguments in traditional C",
 "function-like macro \"%s\" must be used with arguments in traditional C",
                           NODE_NAME (node));
                           NODE_NAME (node));
 
 
              if (pragma_buff)
              if (pragma_buff)
                _cpp_release_buff (pfile, pragma_buff);
                _cpp_release_buff (pfile, pragma_buff);
 
 
              return 0;
              return 0;
            }
            }
 
 
          if (macro->paramc > 0)
          if (macro->paramc > 0)
            replace_args (pfile, node, macro, (macro_arg *) buff->base);
            replace_args (pfile, node, macro, (macro_arg *) buff->base);
          _cpp_release_buff (pfile, buff);
          _cpp_release_buff (pfile, buff);
        }
        }
 
 
      /* Disable the macro within its expansion.  */
      /* Disable the macro within its expansion.  */
      node->flags |= NODE_DISABLED;
      node->flags |= NODE_DISABLED;
 
 
      if (!(node->flags & NODE_USED))
      if (!(node->flags & NODE_USED))
        {
        {
          node->flags |= NODE_USED;
          node->flags |= NODE_USED;
          if (pfile->cb.used_define)
          if (pfile->cb.used_define)
            pfile->cb.used_define (pfile, pfile->directive_line, node);
            pfile->cb.used_define (pfile, pfile->directive_line, node);
        }
        }
 
 
      if (pfile->cb.used)
      if (pfile->cb.used)
        pfile->cb.used (pfile, result->src_loc, node);
        pfile->cb.used (pfile, result->src_loc, node);
 
 
      macro->used = 1;
      macro->used = 1;
 
 
      if (macro->paramc == 0)
      if (macro->paramc == 0)
        _cpp_push_token_context (pfile, node, macro->exp.tokens,
        _cpp_push_token_context (pfile, node, macro->exp.tokens,
                                 macro_real_token_count (macro));
                                 macro_real_token_count (macro));
 
 
      if (pragma_buff)
      if (pragma_buff)
        {
        {
          if (!pfile->state.in_directive)
          if (!pfile->state.in_directive)
            _cpp_push_token_context (pfile, NULL,
            _cpp_push_token_context (pfile, NULL,
                                     padding_token (pfile, result), 1);
                                     padding_token (pfile, result), 1);
          do
          do
            {
            {
              _cpp_buff *tail = pragma_buff->next;
              _cpp_buff *tail = pragma_buff->next;
              pragma_buff->next = NULL;
              pragma_buff->next = NULL;
              push_ptoken_context (pfile, NULL, pragma_buff,
              push_ptoken_context (pfile, NULL, pragma_buff,
                                   (const cpp_token **) pragma_buff->base,
                                   (const cpp_token **) pragma_buff->base,
                                   ((const cpp_token **) BUFF_FRONT (pragma_buff)
                                   ((const cpp_token **) BUFF_FRONT (pragma_buff)
                                    - (const cpp_token **) pragma_buff->base));
                                    - (const cpp_token **) pragma_buff->base));
              pragma_buff = tail;
              pragma_buff = tail;
            }
            }
          while (pragma_buff != NULL);
          while (pragma_buff != NULL);
          return 2;
          return 2;
        }
        }
 
 
      return 1;
      return 1;
    }
    }
 
 
  /* Handle built-in macros and the _Pragma operator.  */
  /* Handle built-in macros and the _Pragma operator.  */
  return builtin_macro (pfile, node);
  return builtin_macro (pfile, node);
}
}
 
 
/* Replace the parameters in a function-like macro of NODE with the
/* Replace the parameters in a function-like macro of NODE with the
   actual ARGS, and place the result in a newly pushed token context.
   actual ARGS, and place the result in a newly pushed token context.
   Expand each argument before replacing, unless it is operated upon
   Expand each argument before replacing, unless it is operated upon
   by the # or ## operators.  */
   by the # or ## operators.  */
static void
static void
replace_args (cpp_reader *pfile, cpp_hashnode *node, cpp_macro *macro, macro_arg *args)
replace_args (cpp_reader *pfile, cpp_hashnode *node, cpp_macro *macro, macro_arg *args)
{
{
  unsigned int i, total;
  unsigned int i, total;
  const cpp_token *src, *limit;
  const cpp_token *src, *limit;
  const cpp_token **dest, **first;
  const cpp_token **dest, **first;
  macro_arg *arg;
  macro_arg *arg;
  _cpp_buff *buff;
  _cpp_buff *buff;
  unsigned int count;
  unsigned int count;
 
 
  /* First, fully macro-expand arguments, calculating the number of
  /* First, fully macro-expand arguments, calculating the number of
     tokens in the final expansion as we go.  The ordering of the if
     tokens in the final expansion as we go.  The ordering of the if
     statements below is subtle; we must handle stringification before
     statements below is subtle; we must handle stringification before
     pasting.  */
     pasting.  */
  count = macro_real_token_count (macro);
  count = macro_real_token_count (macro);
  total = count;
  total = count;
  limit = macro->exp.tokens + count;
  limit = macro->exp.tokens + count;
 
 
  for (src = macro->exp.tokens; src < limit; src++)
  for (src = macro->exp.tokens; src < limit; src++)
    if (src->type == CPP_MACRO_ARG)
    if (src->type == CPP_MACRO_ARG)
      {
      {
        /* Leading and trailing padding tokens.  */
        /* Leading and trailing padding tokens.  */
        total += 2;
        total += 2;
 
 
        /* We have an argument.  If it is not being stringified or
        /* We have an argument.  If it is not being stringified or
           pasted it is macro-replaced before insertion.  */
           pasted it is macro-replaced before insertion.  */
        arg = &args[src->val.macro_arg.arg_no - 1];
        arg = &args[src->val.macro_arg.arg_no - 1];
 
 
        if (src->flags & STRINGIFY_ARG)
        if (src->flags & STRINGIFY_ARG)
          {
          {
            if (!arg->stringified)
            if (!arg->stringified)
              arg->stringified = stringify_arg (pfile, arg);
              arg->stringified = stringify_arg (pfile, arg);
          }
          }
        else if ((src->flags & PASTE_LEFT)
        else if ((src->flags & PASTE_LEFT)
                 || (src > macro->exp.tokens && (src[-1].flags & PASTE_LEFT)))
                 || (src > macro->exp.tokens && (src[-1].flags & PASTE_LEFT)))
          total += arg->count - 1;
          total += arg->count - 1;
        else
        else
          {
          {
            if (!arg->expanded)
            if (!arg->expanded)
              expand_arg (pfile, arg);
              expand_arg (pfile, arg);
            total += arg->expanded_count - 1;
            total += arg->expanded_count - 1;
          }
          }
      }
      }
 
 
  /* Now allocate space for the expansion, copy the tokens and replace
  /* Now allocate space for the expansion, copy the tokens and replace
     the arguments.  */
     the arguments.  */
  buff = _cpp_get_buff (pfile, total * sizeof (cpp_token *));
  buff = _cpp_get_buff (pfile, total * sizeof (cpp_token *));
  first = (const cpp_token **) buff->base;
  first = (const cpp_token **) buff->base;
  dest = first;
  dest = first;
 
 
  for (src = macro->exp.tokens; src < limit; src++)
  for (src = macro->exp.tokens; src < limit; src++)
    {
    {
      unsigned int count;
      unsigned int count;
      const cpp_token **from, **paste_flag;
      const cpp_token **from, **paste_flag;
 
 
      if (src->type != CPP_MACRO_ARG)
      if (src->type != CPP_MACRO_ARG)
        {
        {
          *dest++ = src;
          *dest++ = src;
          continue;
          continue;
        }
        }
 
 
      paste_flag = 0;
      paste_flag = 0;
      arg = &args[src->val.macro_arg.arg_no - 1];
      arg = &args[src->val.macro_arg.arg_no - 1];
      if (src->flags & STRINGIFY_ARG)
      if (src->flags & STRINGIFY_ARG)
        count = 1, from = &arg->stringified;
        count = 1, from = &arg->stringified;
      else if (src->flags & PASTE_LEFT)
      else if (src->flags & PASTE_LEFT)
        count = arg->count, from = arg->first;
        count = arg->count, from = arg->first;
      else if (src != macro->exp.tokens && (src[-1].flags & PASTE_LEFT))
      else if (src != macro->exp.tokens && (src[-1].flags & PASTE_LEFT))
        {
        {
          count = arg->count, from = arg->first;
          count = arg->count, from = arg->first;
          if (dest != first)
          if (dest != first)
            {
            {
              if (dest[-1]->type == CPP_COMMA
              if (dest[-1]->type == CPP_COMMA
                  && macro->variadic
                  && macro->variadic
                  && src->val.macro_arg.arg_no == macro->paramc)
                  && src->val.macro_arg.arg_no == macro->paramc)
                {
                {
                  /* Swallow a pasted comma if from == NULL, otherwise
                  /* Swallow a pasted comma if from == NULL, otherwise
                     drop the paste flag.  */
                     drop the paste flag.  */
                  if (from == NULL)
                  if (from == NULL)
                    dest--;
                    dest--;
                  else
                  else
                    paste_flag = dest - 1;
                    paste_flag = dest - 1;
                }
                }
              /* Remove the paste flag if the RHS is a placemarker.  */
              /* Remove the paste flag if the RHS is a placemarker.  */
              else if (count == 0)
              else if (count == 0)
                paste_flag = dest - 1;
                paste_flag = dest - 1;
            }
            }
        }
        }
      else
      else
        count = arg->expanded_count, from = arg->expanded;
        count = arg->expanded_count, from = arg->expanded;
 
 
      /* Padding on the left of an argument (unless RHS of ##).  */
      /* Padding on the left of an argument (unless RHS of ##).  */
      if ((!pfile->state.in_directive || pfile->state.directive_wants_padding)
      if ((!pfile->state.in_directive || pfile->state.directive_wants_padding)
          && src != macro->exp.tokens && !(src[-1].flags & PASTE_LEFT))
          && src != macro->exp.tokens && !(src[-1].flags & PASTE_LEFT))
        *dest++ = padding_token (pfile, src);
        *dest++ = padding_token (pfile, src);
 
 
      if (count)
      if (count)
        {
        {
          memcpy (dest, from, count * sizeof (cpp_token *));
          memcpy (dest, from, count * sizeof (cpp_token *));
          dest += count;
          dest += count;
 
 
          /* With a non-empty argument on the LHS of ##, the last
          /* With a non-empty argument on the LHS of ##, the last
             token should be flagged PASTE_LEFT.  */
             token should be flagged PASTE_LEFT.  */
          if (src->flags & PASTE_LEFT)
          if (src->flags & PASTE_LEFT)
            paste_flag = dest - 1;
            paste_flag = dest - 1;
        }
        }
      else if (CPP_PEDANTIC (pfile) && ! macro->syshdr
      else if (CPP_PEDANTIC (pfile) && ! macro->syshdr
               && ! CPP_OPTION (pfile, c99)
               && ! CPP_OPTION (pfile, c99)
               && ! cpp_in_system_header (pfile))
               && ! cpp_in_system_header (pfile))
        {
        {
          cpp_error (pfile, CPP_DL_PEDWARN,
          cpp_error (pfile, CPP_DL_PEDWARN,
                     "invoking macro %s argument %d: "
                     "invoking macro %s argument %d: "
                     "empty macro arguments are undefined"
                     "empty macro arguments are undefined"
                     " in ISO C90 and ISO C++98",
                     " in ISO C90 and ISO C++98",
                     NODE_NAME (node),
                     NODE_NAME (node),
                     src->val.macro_arg.arg_no);
                     src->val.macro_arg.arg_no);
        }
        }
 
 
      /* Avoid paste on RHS (even case count == 0).  */
      /* Avoid paste on RHS (even case count == 0).  */
      if (!pfile->state.in_directive && !(src->flags & PASTE_LEFT))
      if (!pfile->state.in_directive && !(src->flags & PASTE_LEFT))
        *dest++ = &pfile->avoid_paste;
        *dest++ = &pfile->avoid_paste;
 
 
      /* Add a new paste flag, or remove an unwanted one.  */
      /* Add a new paste flag, or remove an unwanted one.  */
      if (paste_flag)
      if (paste_flag)
        {
        {
          cpp_token *token = _cpp_temp_token (pfile);
          cpp_token *token = _cpp_temp_token (pfile);
          token->type = (*paste_flag)->type;
          token->type = (*paste_flag)->type;
          token->val = (*paste_flag)->val;
          token->val = (*paste_flag)->val;
          if (src->flags & PASTE_LEFT)
          if (src->flags & PASTE_LEFT)
            token->flags = (*paste_flag)->flags | PASTE_LEFT;
            token->flags = (*paste_flag)->flags | PASTE_LEFT;
          else
          else
            token->flags = (*paste_flag)->flags & ~PASTE_LEFT;
            token->flags = (*paste_flag)->flags & ~PASTE_LEFT;
          *paste_flag = token;
          *paste_flag = token;
        }
        }
    }
    }
 
 
  /* Free the expanded arguments.  */
  /* Free the expanded arguments.  */
  for (i = 0; i < macro->paramc; i++)
  for (i = 0; i < macro->paramc; i++)
    if (args[i].expanded)
    if (args[i].expanded)
      free (args[i].expanded);
      free (args[i].expanded);
 
 
  push_ptoken_context (pfile, node, buff, first, dest - first);
  push_ptoken_context (pfile, node, buff, first, dest - first);
}
}
 
 
/* Return a special padding token, with padding inherited from SOURCE.  */
/* Return a special padding token, with padding inherited from SOURCE.  */
static const cpp_token *
static const cpp_token *
padding_token (cpp_reader *pfile, const cpp_token *source)
padding_token (cpp_reader *pfile, const cpp_token *source)
{
{
  cpp_token *result = _cpp_temp_token (pfile);
  cpp_token *result = _cpp_temp_token (pfile);
 
 
  result->type = CPP_PADDING;
  result->type = CPP_PADDING;
 
 
  /* Data in GCed data structures cannot be made const so far, so we
  /* Data in GCed data structures cannot be made const so far, so we
     need a cast here.  */
     need a cast here.  */
  result->val.source = (cpp_token *) source;
  result->val.source = (cpp_token *) source;
  result->flags = 0;
  result->flags = 0;
  return result;
  return result;
}
}
 
 
/* Get a new uninitialized context.  Create a new one if we cannot
/* Get a new uninitialized context.  Create a new one if we cannot
   re-use an old one.  */
   re-use an old one.  */
static cpp_context *
static cpp_context *
next_context (cpp_reader *pfile)
next_context (cpp_reader *pfile)
{
{
  cpp_context *result = pfile->context->next;
  cpp_context *result = pfile->context->next;
 
 
  if (result == 0)
  if (result == 0)
    {
    {
      result = XNEW (cpp_context);
      result = XNEW (cpp_context);
      result->prev = pfile->context;
      result->prev = pfile->context;
      result->next = 0;
      result->next = 0;
      pfile->context->next = result;
      pfile->context->next = result;
    }
    }
 
 
  pfile->context = result;
  pfile->context = result;
  return result;
  return result;
}
}
 
 
/* Push a list of pointers to tokens.  */
/* Push a list of pointers to tokens.  */
static void
static void
push_ptoken_context (cpp_reader *pfile, cpp_hashnode *macro, _cpp_buff *buff,
push_ptoken_context (cpp_reader *pfile, cpp_hashnode *macro, _cpp_buff *buff,
                     const cpp_token **first, unsigned int count)
                     const cpp_token **first, unsigned int count)
{
{
  cpp_context *context = next_context (pfile);
  cpp_context *context = next_context (pfile);
 
 
  context->direct_p = false;
  context->direct_p = false;
  context->macro = macro;
  context->macro = macro;
  context->buff = buff;
  context->buff = buff;
  FIRST (context).ptoken = first;
  FIRST (context).ptoken = first;
  LAST (context).ptoken = first + count;
  LAST (context).ptoken = first + count;
}
}
 
 
/* Push a list of tokens.  */
/* Push a list of tokens.  */
void
void
_cpp_push_token_context (cpp_reader *pfile, cpp_hashnode *macro,
_cpp_push_token_context (cpp_reader *pfile, cpp_hashnode *macro,
                         const cpp_token *first, unsigned int count)
                         const cpp_token *first, unsigned int count)
{
{
  cpp_context *context = next_context (pfile);
  cpp_context *context = next_context (pfile);
 
 
  context->direct_p = true;
  context->direct_p = true;
  context->macro = macro;
  context->macro = macro;
  context->buff = NULL;
  context->buff = NULL;
  FIRST (context).token = first;
  FIRST (context).token = first;
  LAST (context).token = first + count;
  LAST (context).token = first + count;
}
}
 
 
/* Push a traditional macro's replacement text.  */
/* Push a traditional macro's replacement text.  */
void
void
_cpp_push_text_context (cpp_reader *pfile, cpp_hashnode *macro,
_cpp_push_text_context (cpp_reader *pfile, cpp_hashnode *macro,
                        const uchar *start, size_t len)
                        const uchar *start, size_t len)
{
{
  cpp_context *context = next_context (pfile);
  cpp_context *context = next_context (pfile);
 
 
  context->direct_p = true;
  context->direct_p = true;
  context->macro = macro;
  context->macro = macro;
  context->buff = NULL;
  context->buff = NULL;
  CUR (context) = start;
  CUR (context) = start;
  RLIMIT (context) = start + len;
  RLIMIT (context) = start + len;
  macro->flags |= NODE_DISABLED;
  macro->flags |= NODE_DISABLED;
}
}
 
 
/* Expand an argument ARG before replacing parameters in a
/* Expand an argument ARG before replacing parameters in a
   function-like macro.  This works by pushing a context with the
   function-like macro.  This works by pushing a context with the
   argument's tokens, and then expanding that into a temporary buffer
   argument's tokens, and then expanding that into a temporary buffer
   as if it were a normal part of the token stream.  collect_args()
   as if it were a normal part of the token stream.  collect_args()
   has terminated the argument's tokens with a CPP_EOF so that we know
   has terminated the argument's tokens with a CPP_EOF so that we know
   when we have fully expanded the argument.  */
   when we have fully expanded the argument.  */
static void
static void
expand_arg (cpp_reader *pfile, macro_arg *arg)
expand_arg (cpp_reader *pfile, macro_arg *arg)
{
{
  unsigned int capacity;
  unsigned int capacity;
  bool saved_warn_trad;
  bool saved_warn_trad;
 
 
  if (arg->count == 0)
  if (arg->count == 0)
    return;
    return;
 
 
  /* Don't warn about funlike macros when pre-expanding.  */
  /* Don't warn about funlike macros when pre-expanding.  */
  saved_warn_trad = CPP_WTRADITIONAL (pfile);
  saved_warn_trad = CPP_WTRADITIONAL (pfile);
  CPP_WTRADITIONAL (pfile) = 0;
  CPP_WTRADITIONAL (pfile) = 0;
 
 
  /* Loop, reading in the arguments.  */
  /* Loop, reading in the arguments.  */
  capacity = 256;
  capacity = 256;
  arg->expanded = XNEWVEC (const cpp_token *, capacity);
  arg->expanded = XNEWVEC (const cpp_token *, capacity);
 
 
  push_ptoken_context (pfile, NULL, NULL, arg->first, arg->count + 1);
  push_ptoken_context (pfile, NULL, NULL, arg->first, arg->count + 1);
  for (;;)
  for (;;)
    {
    {
      const cpp_token *token;
      const cpp_token *token;
 
 
      if (arg->expanded_count + 1 >= capacity)
      if (arg->expanded_count + 1 >= capacity)
        {
        {
          capacity *= 2;
          capacity *= 2;
          arg->expanded = XRESIZEVEC (const cpp_token *, arg->expanded,
          arg->expanded = XRESIZEVEC (const cpp_token *, arg->expanded,
                                      capacity);
                                      capacity);
        }
        }
 
 
      token = cpp_get_token (pfile);
      token = cpp_get_token (pfile);
 
 
      if (token->type == CPP_EOF)
      if (token->type == CPP_EOF)
        break;
        break;
 
 
      arg->expanded[arg->expanded_count++] = token;
      arg->expanded[arg->expanded_count++] = token;
    }
    }
 
 
  _cpp_pop_context (pfile);
  _cpp_pop_context (pfile);
 
 
  CPP_WTRADITIONAL (pfile) = saved_warn_trad;
  CPP_WTRADITIONAL (pfile) = saved_warn_trad;
}
}
 
 
/* Pop the current context off the stack, re-enabling the macro if the
/* Pop the current context off the stack, re-enabling the macro if the
   context represented a macro's replacement list.  The context
   context represented a macro's replacement list.  The context
   structure is not freed so that we can re-use it later.  */
   structure is not freed so that we can re-use it later.  */
void
void
_cpp_pop_context (cpp_reader *pfile)
_cpp_pop_context (cpp_reader *pfile)
{
{
  cpp_context *context = pfile->context;
  cpp_context *context = pfile->context;
 
 
  if (context->macro)
  if (context->macro)
    context->macro->flags &= ~NODE_DISABLED;
    context->macro->flags &= ~NODE_DISABLED;
 
 
  if (context->buff)
  if (context->buff)
    _cpp_release_buff (pfile, context->buff);
    _cpp_release_buff (pfile, context->buff);
 
 
  pfile->context = context->prev;
  pfile->context = context->prev;
}
}
 
 
/* External routine to get a token.  Also used nearly everywhere
/* External routine to get a token.  Also used nearly everywhere
   internally, except for places where we know we can safely call
   internally, except for places where we know we can safely call
   _cpp_lex_token directly, such as lexing a directive name.
   _cpp_lex_token directly, such as lexing a directive name.
 
 
   Macro expansions and directives are transparently handled,
   Macro expansions and directives are transparently handled,
   including entering included files.  Thus tokens are post-macro
   including entering included files.  Thus tokens are post-macro
   expansion, and after any intervening directives.  External callers
   expansion, and after any intervening directives.  External callers
   see CPP_EOF only at EOF.  Internal callers also see it when meeting
   see CPP_EOF only at EOF.  Internal callers also see it when meeting
   a directive inside a macro call, when at the end of a directive and
   a directive inside a macro call, when at the end of a directive and
   state.in_directive is still 1, and at the end of argument
   state.in_directive is still 1, and at the end of argument
   pre-expansion.  */
   pre-expansion.  */
const cpp_token *
const cpp_token *
cpp_get_token (cpp_reader *pfile)
cpp_get_token (cpp_reader *pfile)
{
{
  const cpp_token *result;
  const cpp_token *result;
  bool can_set = pfile->set_invocation_location;
  bool can_set = pfile->set_invocation_location;
  pfile->set_invocation_location = false;
  pfile->set_invocation_location = false;
 
 
  for (;;)
  for (;;)
    {
    {
      cpp_hashnode *node;
      cpp_hashnode *node;
      cpp_context *context = pfile->context;
      cpp_context *context = pfile->context;
 
 
      /* Context->prev == 0 <=> base context.  */
      /* Context->prev == 0 <=> base context.  */
      if (!context->prev)
      if (!context->prev)
        result = _cpp_lex_token (pfile);
        result = _cpp_lex_token (pfile);
      else if (FIRST (context).token != LAST (context).token)
      else if (FIRST (context).token != LAST (context).token)
        {
        {
          if (context->direct_p)
          if (context->direct_p)
            result = FIRST (context).token++;
            result = FIRST (context).token++;
          else
          else
            result = *FIRST (context).ptoken++;
            result = *FIRST (context).ptoken++;
 
 
          if (result->flags & PASTE_LEFT)
          if (result->flags & PASTE_LEFT)
            {
            {
              paste_all_tokens (pfile, result);
              paste_all_tokens (pfile, result);
              if (pfile->state.in_directive)
              if (pfile->state.in_directive)
                continue;
                continue;
              return padding_token (pfile, result);
              return padding_token (pfile, result);
            }
            }
        }
        }
      else
      else
        {
        {
          _cpp_pop_context (pfile);
          _cpp_pop_context (pfile);
          if (pfile->state.in_directive)
          if (pfile->state.in_directive)
            continue;
            continue;
          return &pfile->avoid_paste;
          return &pfile->avoid_paste;
        }
        }
 
 
      if (pfile->state.in_directive && result->type == CPP_COMMENT)
      if (pfile->state.in_directive && result->type == CPP_COMMENT)
        continue;
        continue;
 
 
      if (result->type != CPP_NAME)
      if (result->type != CPP_NAME)
        break;
        break;
 
 
      node = result->val.node.node;
      node = result->val.node.node;
 
 
      if (node->type != NT_MACRO || (result->flags & NO_EXPAND))
      if (node->type != NT_MACRO || (result->flags & NO_EXPAND))
        break;
        break;
 
 
      if (!(node->flags & NODE_DISABLED))
      if (!(node->flags & NODE_DISABLED))
        {
        {
          int ret = 0;
          int ret = 0;
          /* If not in a macro context, and we're going to start an
          /* If not in a macro context, and we're going to start an
             expansion, record the location.  */
             expansion, record the location.  */
          if (can_set && !context->macro)
          if (can_set && !context->macro)
            pfile->invocation_location = result->src_loc;
            pfile->invocation_location = result->src_loc;
          if (pfile->state.prevent_expansion)
          if (pfile->state.prevent_expansion)
            break;
            break;
 
 
          /* Conditional macros require that a predicate be evaluated
          /* Conditional macros require that a predicate be evaluated
             first.  */
             first.  */
          if ((node->flags & NODE_CONDITIONAL) != 0)
          if ((node->flags & NODE_CONDITIONAL) != 0)
            {
            {
              if (pfile->cb.macro_to_expand)
              if (pfile->cb.macro_to_expand)
                {
                {
                  bool whitespace_after;
                  bool whitespace_after;
                  const cpp_token *peek_tok = cpp_peek_token (pfile, 0);
                  const cpp_token *peek_tok = cpp_peek_token (pfile, 0);
 
 
                  whitespace_after = (peek_tok->type == CPP_PADDING
                  whitespace_after = (peek_tok->type == CPP_PADDING
                                      || (peek_tok->flags & PREV_WHITE));
                                      || (peek_tok->flags & PREV_WHITE));
                  node = pfile->cb.macro_to_expand (pfile, result);
                  node = pfile->cb.macro_to_expand (pfile, result);
                  if (node)
                  if (node)
                    ret = enter_macro_context (pfile, node, result);
                    ret = enter_macro_context (pfile, node, result);
                  else if (whitespace_after)
                  else if (whitespace_after)
                    {
                    {
                      /* If macro_to_expand hook returned NULL and it
                      /* If macro_to_expand hook returned NULL and it
                         ate some tokens, see if we don't need to add
                         ate some tokens, see if we don't need to add
                         a padding token in between this and the
                         a padding token in between this and the
                         next token.  */
                         next token.  */
                      peek_tok = cpp_peek_token (pfile, 0);
                      peek_tok = cpp_peek_token (pfile, 0);
                      if (peek_tok->type != CPP_PADDING
                      if (peek_tok->type != CPP_PADDING
                          && (peek_tok->flags & PREV_WHITE) == 0)
                          && (peek_tok->flags & PREV_WHITE) == 0)
                        _cpp_push_token_context (pfile, NULL,
                        _cpp_push_token_context (pfile, NULL,
                                                 padding_token (pfile,
                                                 padding_token (pfile,
                                                                peek_tok), 1);
                                                                peek_tok), 1);
                    }
                    }
                }
                }
            }
            }
          else
          else
            ret = enter_macro_context (pfile, node, result);
            ret = enter_macro_context (pfile, node, result);
          if (ret)
          if (ret)
            {
            {
              if (pfile->state.in_directive || ret == 2)
              if (pfile->state.in_directive || ret == 2)
                continue;
                continue;
              return padding_token (pfile, result);
              return padding_token (pfile, result);
            }
            }
        }
        }
      else
      else
        {
        {
          /* Flag this token as always unexpandable.  FIXME: move this
          /* Flag this token as always unexpandable.  FIXME: move this
             to collect_args()?.  */
             to collect_args()?.  */
          cpp_token *t = _cpp_temp_token (pfile);
          cpp_token *t = _cpp_temp_token (pfile);
          t->type = result->type;
          t->type = result->type;
          t->flags = result->flags | NO_EXPAND;
          t->flags = result->flags | NO_EXPAND;
          t->val = result->val;
          t->val = result->val;
          result = t;
          result = t;
        }
        }
 
 
      break;
      break;
    }
    }
 
 
  return result;
  return result;
}
}
 
 
/* Like cpp_get_token, but also returns a location separate from the
/* Like cpp_get_token, but also returns a location separate from the
   one provided by the returned token.  LOC is an out parameter; *LOC
   one provided by the returned token.  LOC is an out parameter; *LOC
   is set to the location "as expected by the user".  This matters
   is set to the location "as expected by the user".  This matters
   when a token results from macro expansion -- the token's location
   when a token results from macro expansion -- the token's location
   will indicate where the macro is defined, but *LOC will be the
   will indicate where the macro is defined, but *LOC will be the
   location of the start of the expansion.  */
   location of the start of the expansion.  */
const cpp_token *
const cpp_token *
cpp_get_token_with_location (cpp_reader *pfile, source_location *loc)
cpp_get_token_with_location (cpp_reader *pfile, source_location *loc)
{
{
  const cpp_token *result;
  const cpp_token *result;
 
 
  pfile->set_invocation_location = true;
  pfile->set_invocation_location = true;
  result = cpp_get_token (pfile);
  result = cpp_get_token (pfile);
  if (pfile->context->macro)
  if (pfile->context->macro)
    *loc = pfile->invocation_location;
    *loc = pfile->invocation_location;
  else
  else
    *loc = result->src_loc;
    *loc = result->src_loc;
 
 
  return result;
  return result;
}
}
 
 
/* Returns true if we're expanding an object-like macro that was
/* Returns true if we're expanding an object-like macro that was
   defined in a system header.  Just checks the macro at the top of
   defined in a system header.  Just checks the macro at the top of
   the stack.  Used for diagnostic suppression.  */
   the stack.  Used for diagnostic suppression.  */
int
int
cpp_sys_macro_p (cpp_reader *pfile)
cpp_sys_macro_p (cpp_reader *pfile)
{
{
  cpp_hashnode *node = pfile->context->macro;
  cpp_hashnode *node = pfile->context->macro;
 
 
  return node && node->value.macro && node->value.macro->syshdr;
  return node && node->value.macro && node->value.macro->syshdr;
}
}
 
 
/* Read each token in, until end of the current file.  Directives are
/* Read each token in, until end of the current file.  Directives are
   transparently processed.  */
   transparently processed.  */
void
void
cpp_scan_nooutput (cpp_reader *pfile)
cpp_scan_nooutput (cpp_reader *pfile)
{
{
  /* Request a CPP_EOF token at the end of this file, rather than
  /* Request a CPP_EOF token at the end of this file, rather than
     transparently continuing with the including file.  */
     transparently continuing with the including file.  */
  pfile->buffer->return_at_eof = true;
  pfile->buffer->return_at_eof = true;
 
 
  pfile->state.discarding_output++;
  pfile->state.discarding_output++;
  pfile->state.prevent_expansion++;
  pfile->state.prevent_expansion++;
 
 
  if (CPP_OPTION (pfile, traditional))
  if (CPP_OPTION (pfile, traditional))
    while (_cpp_read_logical_line_trad (pfile))
    while (_cpp_read_logical_line_trad (pfile))
      ;
      ;
  else
  else
    while (cpp_get_token (pfile)->type != CPP_EOF)
    while (cpp_get_token (pfile)->type != CPP_EOF)
      ;
      ;
 
 
  pfile->state.discarding_output--;
  pfile->state.discarding_output--;
  pfile->state.prevent_expansion--;
  pfile->state.prevent_expansion--;
}
}
 
 
/* Step back one or more tokens obtained from the lexer.  */
/* Step back one or more tokens obtained from the lexer.  */
void
void
_cpp_backup_tokens_direct (cpp_reader *pfile, unsigned int count)
_cpp_backup_tokens_direct (cpp_reader *pfile, unsigned int count)
{
{
  pfile->lookaheads += count;
  pfile->lookaheads += count;
  while (count--)
  while (count--)
    {
    {
      pfile->cur_token--;
      pfile->cur_token--;
      if (pfile->cur_token == pfile->cur_run->base
      if (pfile->cur_token == pfile->cur_run->base
          /* Possible with -fpreprocessed and no leading #line.  */
          /* Possible with -fpreprocessed and no leading #line.  */
          && pfile->cur_run->prev != NULL)
          && pfile->cur_run->prev != NULL)
        {
        {
          pfile->cur_run = pfile->cur_run->prev;
          pfile->cur_run = pfile->cur_run->prev;
          pfile->cur_token = pfile->cur_run->limit;
          pfile->cur_token = pfile->cur_run->limit;
        }
        }
    }
    }
}
}
 
 
/* Step back one (or more) tokens.  Can only step back more than 1 if
/* Step back one (or more) tokens.  Can only step back more than 1 if
   they are from the lexer, and not from macro expansion.  */
   they are from the lexer, and not from macro expansion.  */
void
void
_cpp_backup_tokens (cpp_reader *pfile, unsigned int count)
_cpp_backup_tokens (cpp_reader *pfile, unsigned int count)
{
{
  if (pfile->context->prev == NULL)
  if (pfile->context->prev == NULL)
    _cpp_backup_tokens_direct (pfile, count);
    _cpp_backup_tokens_direct (pfile, count);
  else
  else
    {
    {
      if (count != 1)
      if (count != 1)
        abort ();
        abort ();
      if (pfile->context->direct_p)
      if (pfile->context->direct_p)
        FIRST (pfile->context).token--;
        FIRST (pfile->context).token--;
      else
      else
        FIRST (pfile->context).ptoken--;
        FIRST (pfile->context).ptoken--;
    }
    }
}
}
 
 
/* #define directive parsing and handling.  */
/* #define directive parsing and handling.  */
 
 
/* Returns nonzero if a macro redefinition warning is required.  */
/* Returns nonzero if a macro redefinition warning is required.  */
static bool
static bool
warn_of_redefinition (cpp_reader *pfile, const cpp_hashnode *node,
warn_of_redefinition (cpp_reader *pfile, const cpp_hashnode *node,
                      const cpp_macro *macro2)
                      const cpp_macro *macro2)
{
{
  const cpp_macro *macro1;
  const cpp_macro *macro1;
  unsigned int i;
  unsigned int i;
 
 
  /* Some redefinitions need to be warned about regardless.  */
  /* Some redefinitions need to be warned about regardless.  */
  if (node->flags & NODE_WARN)
  if (node->flags & NODE_WARN)
    return true;
    return true;
 
 
  /* Suppress warnings for builtins that lack the NODE_WARN flag.  */
  /* Suppress warnings for builtins that lack the NODE_WARN flag.  */
  if (node->flags & NODE_BUILTIN)
  if (node->flags & NODE_BUILTIN)
    return false;
    return false;
 
 
  /* Redefinitions of conditional (context-sensitive) macros, on
  /* Redefinitions of conditional (context-sensitive) macros, on
     the other hand, must be allowed silently.  */
     the other hand, must be allowed silently.  */
  if (node->flags & NODE_CONDITIONAL)
  if (node->flags & NODE_CONDITIONAL)
    return false;
    return false;
 
 
  /* Redefinition of a macro is allowed if and only if the old and new
  /* Redefinition of a macro is allowed if and only if the old and new
     definitions are the same.  (6.10.3 paragraph 2).  */
     definitions are the same.  (6.10.3 paragraph 2).  */
  macro1 = node->value.macro;
  macro1 = node->value.macro;
 
 
  /* Don't check count here as it can be different in valid
  /* Don't check count here as it can be different in valid
     traditional redefinitions with just whitespace differences.  */
     traditional redefinitions with just whitespace differences.  */
  if (macro1->paramc != macro2->paramc
  if (macro1->paramc != macro2->paramc
      || macro1->fun_like != macro2->fun_like
      || macro1->fun_like != macro2->fun_like
      || macro1->variadic != macro2->variadic)
      || macro1->variadic != macro2->variadic)
    return true;
    return true;
 
 
  /* Check parameter spellings.  */
  /* Check parameter spellings.  */
  for (i = 0; i < macro1->paramc; i++)
  for (i = 0; i < macro1->paramc; i++)
    if (macro1->params[i] != macro2->params[i])
    if (macro1->params[i] != macro2->params[i])
      return true;
      return true;
 
 
  /* Check the replacement text or tokens.  */
  /* Check the replacement text or tokens.  */
  if (CPP_OPTION (pfile, traditional))
  if (CPP_OPTION (pfile, traditional))
    return _cpp_expansions_different_trad (macro1, macro2);
    return _cpp_expansions_different_trad (macro1, macro2);
 
 
  if (macro1->count != macro2->count)
  if (macro1->count != macro2->count)
    return true;
    return true;
 
 
  for (i = 0; i < macro1->count; i++)
  for (i = 0; i < macro1->count; i++)
    if (!_cpp_equiv_tokens (&macro1->exp.tokens[i], &macro2->exp.tokens[i]))
    if (!_cpp_equiv_tokens (&macro1->exp.tokens[i], &macro2->exp.tokens[i]))
      return true;
      return true;
 
 
  return false;
  return false;
}
}
 
 
/* Free the definition of hashnode H.  */
/* Free the definition of hashnode H.  */
void
void
_cpp_free_definition (cpp_hashnode *h)
_cpp_free_definition (cpp_hashnode *h)
{
{
  /* Macros and assertions no longer have anything to free.  */
  /* Macros and assertions no longer have anything to free.  */
  h->type = NT_VOID;
  h->type = NT_VOID;
  /* Clear builtin flag in case of redefinition.  */
  /* Clear builtin flag in case of redefinition.  */
  h->flags &= ~(NODE_BUILTIN | NODE_DISABLED | NODE_USED);
  h->flags &= ~(NODE_BUILTIN | NODE_DISABLED | NODE_USED);
}
}
 
 
/* Save parameter NODE to the parameter list of macro MACRO.  Returns
/* Save parameter NODE to the parameter list of macro MACRO.  Returns
   zero on success, nonzero if the parameter is a duplicate.  */
   zero on success, nonzero if the parameter is a duplicate.  */
bool
bool
_cpp_save_parameter (cpp_reader *pfile, cpp_macro *macro, cpp_hashnode *node)
_cpp_save_parameter (cpp_reader *pfile, cpp_macro *macro, cpp_hashnode *node)
{
{
  unsigned int len;
  unsigned int len;
  /* Constraint 6.10.3.6 - duplicate parameter names.  */
  /* Constraint 6.10.3.6 - duplicate parameter names.  */
  if (node->flags & NODE_MACRO_ARG)
  if (node->flags & NODE_MACRO_ARG)
    {
    {
      cpp_error (pfile, CPP_DL_ERROR, "duplicate macro parameter \"%s\"",
      cpp_error (pfile, CPP_DL_ERROR, "duplicate macro parameter \"%s\"",
                 NODE_NAME (node));
                 NODE_NAME (node));
      return true;
      return true;
    }
    }
 
 
  if (BUFF_ROOM (pfile->a_buff)
  if (BUFF_ROOM (pfile->a_buff)
      < (macro->paramc + 1) * sizeof (cpp_hashnode *))
      < (macro->paramc + 1) * sizeof (cpp_hashnode *))
    _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_hashnode *));
    _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_hashnode *));
 
 
  ((cpp_hashnode **) BUFF_FRONT (pfile->a_buff))[macro->paramc++] = node;
  ((cpp_hashnode **) BUFF_FRONT (pfile->a_buff))[macro->paramc++] = node;
  node->flags |= NODE_MACRO_ARG;
  node->flags |= NODE_MACRO_ARG;
  len = macro->paramc * sizeof (union _cpp_hashnode_value);
  len = macro->paramc * sizeof (union _cpp_hashnode_value);
  if (len > pfile->macro_buffer_len)
  if (len > pfile->macro_buffer_len)
    {
    {
      pfile->macro_buffer = XRESIZEVEC (unsigned char, pfile->macro_buffer,
      pfile->macro_buffer = XRESIZEVEC (unsigned char, pfile->macro_buffer,
                                        len);
                                        len);
      pfile->macro_buffer_len = len;
      pfile->macro_buffer_len = len;
    }
    }
  ((union _cpp_hashnode_value *) pfile->macro_buffer)[macro->paramc - 1]
  ((union _cpp_hashnode_value *) pfile->macro_buffer)[macro->paramc - 1]
    = node->value;
    = node->value;
 
 
  node->value.arg_index  = macro->paramc;
  node->value.arg_index  = macro->paramc;
  return false;
  return false;
}
}
 
 
/* Check the syntax of the parameters in a MACRO definition.  Returns
/* Check the syntax of the parameters in a MACRO definition.  Returns
   false if an error occurs.  */
   false if an error occurs.  */
static bool
static bool
parse_params (cpp_reader *pfile, cpp_macro *macro)
parse_params (cpp_reader *pfile, cpp_macro *macro)
{
{
  unsigned int prev_ident = 0;
  unsigned int prev_ident = 0;
 
 
  for (;;)
  for (;;)
    {
    {
      const cpp_token *token = _cpp_lex_token (pfile);
      const cpp_token *token = _cpp_lex_token (pfile);
 
 
      switch (token->type)
      switch (token->type)
        {
        {
        default:
        default:
          /* Allow/ignore comments in parameter lists if we are
          /* Allow/ignore comments in parameter lists if we are
             preserving comments in macro expansions.  */
             preserving comments in macro expansions.  */
          if (token->type == CPP_COMMENT
          if (token->type == CPP_COMMENT
              && ! CPP_OPTION (pfile, discard_comments_in_macro_exp))
              && ! CPP_OPTION (pfile, discard_comments_in_macro_exp))
            continue;
            continue;
 
 
          cpp_error (pfile, CPP_DL_ERROR,
          cpp_error (pfile, CPP_DL_ERROR,
                     "\"%s\" may not appear in macro parameter list",
                     "\"%s\" may not appear in macro parameter list",
                     cpp_token_as_text (pfile, token));
                     cpp_token_as_text (pfile, token));
          return false;
          return false;
 
 
        case CPP_NAME:
        case CPP_NAME:
          if (prev_ident)
          if (prev_ident)
            {
            {
              cpp_error (pfile, CPP_DL_ERROR,
              cpp_error (pfile, CPP_DL_ERROR,
                         "macro parameters must be comma-separated");
                         "macro parameters must be comma-separated");
              return false;
              return false;
            }
            }
          prev_ident = 1;
          prev_ident = 1;
 
 
          if (_cpp_save_parameter (pfile, macro, token->val.node.node))
          if (_cpp_save_parameter (pfile, macro, token->val.node.node))
            return false;
            return false;
          continue;
          continue;
 
 
        case CPP_CLOSE_PAREN:
        case CPP_CLOSE_PAREN:
          if (prev_ident || macro->paramc == 0)
          if (prev_ident || macro->paramc == 0)
            return true;
            return true;
 
 
          /* Fall through to pick up the error.  */
          /* Fall through to pick up the error.  */
        case CPP_COMMA:
        case CPP_COMMA:
          if (!prev_ident)
          if (!prev_ident)
            {
            {
              cpp_error (pfile, CPP_DL_ERROR, "parameter name missing");
              cpp_error (pfile, CPP_DL_ERROR, "parameter name missing");
              return false;
              return false;
            }
            }
          prev_ident = 0;
          prev_ident = 0;
          continue;
          continue;
 
 
        case CPP_ELLIPSIS:
        case CPP_ELLIPSIS:
          macro->variadic = 1;
          macro->variadic = 1;
          if (!prev_ident)
          if (!prev_ident)
            {
            {
              _cpp_save_parameter (pfile, macro,
              _cpp_save_parameter (pfile, macro,
                                   pfile->spec_nodes.n__VA_ARGS__);
                                   pfile->spec_nodes.n__VA_ARGS__);
              pfile->state.va_args_ok = 1;
              pfile->state.va_args_ok = 1;
              if (! CPP_OPTION (pfile, c99)
              if (! CPP_OPTION (pfile, c99)
                  && CPP_OPTION (pfile, pedantic)
                  && CPP_OPTION (pfile, pedantic)
                  && CPP_OPTION (pfile, warn_variadic_macros))
                  && CPP_OPTION (pfile, warn_variadic_macros))
                cpp_error (pfile, CPP_DL_PEDWARN,
                cpp_error (pfile, CPP_DL_PEDWARN,
                           "anonymous variadic macros were introduced in C99");
                           "anonymous variadic macros were introduced in C99");
            }
            }
          else if (CPP_OPTION (pfile, pedantic)
          else if (CPP_OPTION (pfile, pedantic)
                   && CPP_OPTION (pfile, warn_variadic_macros))
                   && CPP_OPTION (pfile, warn_variadic_macros))
            cpp_error (pfile, CPP_DL_PEDWARN,
            cpp_error (pfile, CPP_DL_PEDWARN,
                       "ISO C does not permit named variadic macros");
                       "ISO C does not permit named variadic macros");
 
 
          /* We're at the end, and just expect a closing parenthesis.  */
          /* We're at the end, and just expect a closing parenthesis.  */
          token = _cpp_lex_token (pfile);
          token = _cpp_lex_token (pfile);
          if (token->type == CPP_CLOSE_PAREN)
          if (token->type == CPP_CLOSE_PAREN)
            return true;
            return true;
          /* Fall through.  */
          /* Fall through.  */
 
 
        case CPP_EOF:
        case CPP_EOF:
          cpp_error (pfile, CPP_DL_ERROR, "missing ')' in macro parameter list");
          cpp_error (pfile, CPP_DL_ERROR, "missing ')' in macro parameter list");
          return false;
          return false;
        }
        }
    }
    }
}
}
 
 
/* Allocate room for a token from a macro's replacement list.  */
/* Allocate room for a token from a macro's replacement list.  */
static cpp_token *
static cpp_token *
alloc_expansion_token (cpp_reader *pfile, cpp_macro *macro)
alloc_expansion_token (cpp_reader *pfile, cpp_macro *macro)
{
{
  if (BUFF_ROOM (pfile->a_buff) < (macro->count + 1) * sizeof (cpp_token))
  if (BUFF_ROOM (pfile->a_buff) < (macro->count + 1) * sizeof (cpp_token))
    _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_token));
    _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_token));
 
 
  return &((cpp_token *) BUFF_FRONT (pfile->a_buff))[macro->count++];
  return &((cpp_token *) BUFF_FRONT (pfile->a_buff))[macro->count++];
}
}
 
 
/* Lex a token from the expansion of MACRO, but mark parameters as we
/* Lex a token from the expansion of MACRO, but mark parameters as we
   find them and warn of traditional stringification.  */
   find them and warn of traditional stringification.  */
static cpp_token *
static cpp_token *
lex_expansion_token (cpp_reader *pfile, cpp_macro *macro)
lex_expansion_token (cpp_reader *pfile, cpp_macro *macro)
{
{
  cpp_token *token, *saved_cur_token;
  cpp_token *token, *saved_cur_token;
 
 
  saved_cur_token = pfile->cur_token;
  saved_cur_token = pfile->cur_token;
  pfile->cur_token = alloc_expansion_token (pfile, macro);
  pfile->cur_token = alloc_expansion_token (pfile, macro);
  token = _cpp_lex_direct (pfile);
  token = _cpp_lex_direct (pfile);
  pfile->cur_token = saved_cur_token;
  pfile->cur_token = saved_cur_token;
 
 
  /* Is this a parameter?  */
  /* Is this a parameter?  */
  if (token->type == CPP_NAME
  if (token->type == CPP_NAME
      && (token->val.node.node->flags & NODE_MACRO_ARG) != 0)
      && (token->val.node.node->flags & NODE_MACRO_ARG) != 0)
    {
    {
      token->type = CPP_MACRO_ARG;
      token->type = CPP_MACRO_ARG;
      token->val.macro_arg.arg_no = token->val.node.node->value.arg_index;
      token->val.macro_arg.arg_no = token->val.node.node->value.arg_index;
    }
    }
  else if (CPP_WTRADITIONAL (pfile) && macro->paramc > 0
  else if (CPP_WTRADITIONAL (pfile) && macro->paramc > 0
           && (token->type == CPP_STRING || token->type == CPP_CHAR))
           && (token->type == CPP_STRING || token->type == CPP_CHAR))
    check_trad_stringification (pfile, macro, &token->val.str);
    check_trad_stringification (pfile, macro, &token->val.str);
 
 
  return token;
  return token;
}
}
 
 
static bool
static bool
create_iso_definition (cpp_reader *pfile, cpp_macro *macro)
create_iso_definition (cpp_reader *pfile, cpp_macro *macro)
{
{
  cpp_token *token;
  cpp_token *token;
  const cpp_token *ctoken;
  const cpp_token *ctoken;
  bool following_paste_op = false;
  bool following_paste_op = false;
  const char *paste_op_error_msg =
  const char *paste_op_error_msg =
    N_("'##' cannot appear at either end of a macro expansion");
    N_("'##' cannot appear at either end of a macro expansion");
  unsigned int num_extra_tokens = 0;
  unsigned int num_extra_tokens = 0;
 
 
  /* Get the first token of the expansion (or the '(' of a
  /* Get the first token of the expansion (or the '(' of a
     function-like macro).  */
     function-like macro).  */
  ctoken = _cpp_lex_token (pfile);
  ctoken = _cpp_lex_token (pfile);
 
 
  if (ctoken->type == CPP_OPEN_PAREN && !(ctoken->flags & PREV_WHITE))
  if (ctoken->type == CPP_OPEN_PAREN && !(ctoken->flags & PREV_WHITE))
    {
    {
      bool ok = parse_params (pfile, macro);
      bool ok = parse_params (pfile, macro);
      macro->params = (cpp_hashnode **) BUFF_FRONT (pfile->a_buff);
      macro->params = (cpp_hashnode **) BUFF_FRONT (pfile->a_buff);
      if (!ok)
      if (!ok)
        return false;
        return false;
 
 
      /* Success.  Commit or allocate the parameter array.  */
      /* Success.  Commit or allocate the parameter array.  */
      if (pfile->hash_table->alloc_subobject)
      if (pfile->hash_table->alloc_subobject)
        {
        {
          cpp_hashnode **params =
          cpp_hashnode **params =
            (cpp_hashnode **) pfile->hash_table->alloc_subobject
            (cpp_hashnode **) pfile->hash_table->alloc_subobject
            (sizeof (cpp_hashnode *) * macro->paramc);
            (sizeof (cpp_hashnode *) * macro->paramc);
          memcpy (params, macro->params,
          memcpy (params, macro->params,
                  sizeof (cpp_hashnode *) * macro->paramc);
                  sizeof (cpp_hashnode *) * macro->paramc);
          macro->params = params;
          macro->params = params;
        }
        }
      else
      else
        BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->params[macro->paramc];
        BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->params[macro->paramc];
      macro->fun_like = 1;
      macro->fun_like = 1;
    }
    }
  else if (ctoken->type != CPP_EOF && !(ctoken->flags & PREV_WHITE))
  else if (ctoken->type != CPP_EOF && !(ctoken->flags & PREV_WHITE))
    {
    {
      /* While ISO C99 requires whitespace before replacement text
      /* While ISO C99 requires whitespace before replacement text
         in a macro definition, ISO C90 with TC1 allows there characters
         in a macro definition, ISO C90 with TC1 allows there characters
         from the basic source character set.  */
         from the basic source character set.  */
      if (CPP_OPTION (pfile, c99))
      if (CPP_OPTION (pfile, c99))
        cpp_error (pfile, CPP_DL_PEDWARN,
        cpp_error (pfile, CPP_DL_PEDWARN,
                   "ISO C99 requires whitespace after the macro name");
                   "ISO C99 requires whitespace after the macro name");
      else
      else
        {
        {
          int warntype = CPP_DL_WARNING;
          int warntype = CPP_DL_WARNING;
          switch (ctoken->type)
          switch (ctoken->type)
            {
            {
            case CPP_ATSIGN:
            case CPP_ATSIGN:
            case CPP_AT_NAME:
            case CPP_AT_NAME:
            case CPP_OBJC_STRING:
            case CPP_OBJC_STRING:
              /* '@' is not in basic character set.  */
              /* '@' is not in basic character set.  */
              warntype = CPP_DL_PEDWARN;
              warntype = CPP_DL_PEDWARN;
              break;
              break;
            case CPP_OTHER:
            case CPP_OTHER:
              /* Basic character set sans letters, digits and _.  */
              /* Basic character set sans letters, digits and _.  */
              if (strchr ("!\"#%&'()*+,-./:;<=>?[\\]^{|}~",
              if (strchr ("!\"#%&'()*+,-./:;<=>?[\\]^{|}~",
                          ctoken->val.str.text[0]) == NULL)
                          ctoken->val.str.text[0]) == NULL)
                warntype = CPP_DL_PEDWARN;
                warntype = CPP_DL_PEDWARN;
              break;
              break;
            default:
            default:
              /* All other tokens start with a character from basic
              /* All other tokens start with a character from basic
                 character set.  */
                 character set.  */
              break;
              break;
            }
            }
          cpp_error (pfile, warntype,
          cpp_error (pfile, warntype,
                     "missing whitespace after the macro name");
                     "missing whitespace after the macro name");
        }
        }
    }
    }
 
 
  if (macro->fun_like)
  if (macro->fun_like)
    token = lex_expansion_token (pfile, macro);
    token = lex_expansion_token (pfile, macro);
  else
  else
    {
    {
      token = alloc_expansion_token (pfile, macro);
      token = alloc_expansion_token (pfile, macro);
      *token = *ctoken;
      *token = *ctoken;
    }
    }
 
 
  for (;;)
  for (;;)
    {
    {
      /* Check the stringifying # constraint 6.10.3.2.1 of
      /* Check the stringifying # constraint 6.10.3.2.1 of
         function-like macros when lexing the subsequent token.  */
         function-like macros when lexing the subsequent token.  */
      if (macro->count > 1 && token[-1].type == CPP_HASH && macro->fun_like)
      if (macro->count > 1 && token[-1].type == CPP_HASH && macro->fun_like)
        {
        {
          if (token->type == CPP_MACRO_ARG)
          if (token->type == CPP_MACRO_ARG)
            {
            {
              if (token->flags & PREV_WHITE)
              if (token->flags & PREV_WHITE)
                token->flags |= SP_PREV_WHITE;
                token->flags |= SP_PREV_WHITE;
              if (token[-1].flags & DIGRAPH)
              if (token[-1].flags & DIGRAPH)
                token->flags |= SP_DIGRAPH;
                token->flags |= SP_DIGRAPH;
              token->flags &= ~PREV_WHITE;
              token->flags &= ~PREV_WHITE;
              token->flags |= STRINGIFY_ARG;
              token->flags |= STRINGIFY_ARG;
              token->flags |= token[-1].flags & PREV_WHITE;
              token->flags |= token[-1].flags & PREV_WHITE;
              token[-1] = token[0];
              token[-1] = token[0];
              macro->count--;
              macro->count--;
            }
            }
          /* Let assembler get away with murder.  */
          /* Let assembler get away with murder.  */
          else if (CPP_OPTION (pfile, lang) != CLK_ASM)
          else if (CPP_OPTION (pfile, lang) != CLK_ASM)
            {
            {
              cpp_error (pfile, CPP_DL_ERROR,
              cpp_error (pfile, CPP_DL_ERROR,
                         "'#' is not followed by a macro parameter");
                         "'#' is not followed by a macro parameter");
              return false;
              return false;
            }
            }
        }
        }
 
 
      if (token->type == CPP_EOF)
      if (token->type == CPP_EOF)
        {
        {
          /* Paste operator constraint 6.10.3.3.1:
          /* Paste operator constraint 6.10.3.3.1:
             Token-paste ##, can appear in both object-like and
             Token-paste ##, can appear in both object-like and
             function-like macros, but not at the end.  */
             function-like macros, but not at the end.  */
          if (following_paste_op)
          if (following_paste_op)
            {
            {
              cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
              cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
              return false;
              return false;
            }
            }
          break;
          break;
        }
        }
 
 
      /* Paste operator constraint 6.10.3.3.1.  */
      /* Paste operator constraint 6.10.3.3.1.  */
      if (token->type == CPP_PASTE)
      if (token->type == CPP_PASTE)
        {
        {
          /* Token-paste ##, can appear in both object-like and
          /* Token-paste ##, can appear in both object-like and
             function-like macros, but not at the beginning.  */
             function-like macros, but not at the beginning.  */
          if (macro->count == 1)
          if (macro->count == 1)
            {
            {
              cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
              cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
              return false;
              return false;
            }
            }
 
 
          if (token[-1].flags & PASTE_LEFT)
          if (token[-1].flags & PASTE_LEFT)
            {
            {
              macro->extra_tokens = 1;
              macro->extra_tokens = 1;
              num_extra_tokens++;
              num_extra_tokens++;
              token->val.token_no = macro->count - 1;
              token->val.token_no = macro->count - 1;
            }
            }
          else
          else
            {
            {
              --macro->count;
              --macro->count;
              token[-1].flags |= PASTE_LEFT;
              token[-1].flags |= PASTE_LEFT;
              if (token->flags & DIGRAPH)
              if (token->flags & DIGRAPH)
                token[-1].flags |= SP_DIGRAPH;
                token[-1].flags |= SP_DIGRAPH;
              if (token->flags & PREV_WHITE)
              if (token->flags & PREV_WHITE)
                token[-1].flags |= SP_PREV_WHITE;
                token[-1].flags |= SP_PREV_WHITE;
            }
            }
        }
        }
 
 
      following_paste_op = (token->type == CPP_PASTE);
      following_paste_op = (token->type == CPP_PASTE);
      token = lex_expansion_token (pfile, macro);
      token = lex_expansion_token (pfile, macro);
    }
    }
 
 
  macro->exp.tokens = (cpp_token *) BUFF_FRONT (pfile->a_buff);
  macro->exp.tokens = (cpp_token *) BUFF_FRONT (pfile->a_buff);
  macro->traditional = 0;
  macro->traditional = 0;
 
 
  /* Don't count the CPP_EOF.  */
  /* Don't count the CPP_EOF.  */
  macro->count--;
  macro->count--;
 
 
  /* Clear whitespace on first token for warn_of_redefinition().  */
  /* Clear whitespace on first token for warn_of_redefinition().  */
  if (macro->count)
  if (macro->count)
    macro->exp.tokens[0].flags &= ~PREV_WHITE;
    macro->exp.tokens[0].flags &= ~PREV_WHITE;
 
 
  /* Commit or allocate the memory.  */
  /* Commit or allocate the memory.  */
  if (pfile->hash_table->alloc_subobject)
  if (pfile->hash_table->alloc_subobject)
    {
    {
      cpp_token *tokns =
      cpp_token *tokns =
        (cpp_token *) pfile->hash_table->alloc_subobject (sizeof (cpp_token)
        (cpp_token *) pfile->hash_table->alloc_subobject (sizeof (cpp_token)
                                                          * macro->count);
                                                          * macro->count);
      if (num_extra_tokens)
      if (num_extra_tokens)
        {
        {
          /* Place second and subsequent ## or %:%: tokens in
          /* Place second and subsequent ## or %:%: tokens in
             sequences of consecutive such tokens at the end of the
             sequences of consecutive such tokens at the end of the
             list to preserve information about where they appear, how
             list to preserve information about where they appear, how
             they are spelt and whether they are preceded by
             they are spelt and whether they are preceded by
             whitespace without otherwise interfering with macro
             whitespace without otherwise interfering with macro
             expansion.  */
             expansion.  */
          cpp_token *normal_dest = tokns;
          cpp_token *normal_dest = tokns;
          cpp_token *extra_dest = tokns + macro->count - num_extra_tokens;
          cpp_token *extra_dest = tokns + macro->count - num_extra_tokens;
          unsigned int i;
          unsigned int i;
          for (i = 0; i < macro->count; i++)
          for (i = 0; i < macro->count; i++)
            {
            {
              if (macro->exp.tokens[i].type == CPP_PASTE)
              if (macro->exp.tokens[i].type == CPP_PASTE)
                *extra_dest++ = macro->exp.tokens[i];
                *extra_dest++ = macro->exp.tokens[i];
              else
              else
                *normal_dest++ = macro->exp.tokens[i];
                *normal_dest++ = macro->exp.tokens[i];
            }
            }
        }
        }
      else
      else
        memcpy (tokns, macro->exp.tokens, sizeof (cpp_token) * macro->count);
        memcpy (tokns, macro->exp.tokens, sizeof (cpp_token) * macro->count);
      macro->exp.tokens = tokns;
      macro->exp.tokens = tokns;
    }
    }
  else
  else
    BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->exp.tokens[macro->count];
    BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->exp.tokens[macro->count];
 
 
  return true;
  return true;
}
}
 
 
/* Parse a macro and save its expansion.  Returns nonzero on success.  */
/* Parse a macro and save its expansion.  Returns nonzero on success.  */
bool
bool
_cpp_create_definition (cpp_reader *pfile, cpp_hashnode *node)
_cpp_create_definition (cpp_reader *pfile, cpp_hashnode *node)
{
{
  cpp_macro *macro;
  cpp_macro *macro;
  unsigned int i;
  unsigned int i;
  bool ok;
  bool ok;
 
 
  if (pfile->hash_table->alloc_subobject)
  if (pfile->hash_table->alloc_subobject)
    macro = (cpp_macro *) pfile->hash_table->alloc_subobject
    macro = (cpp_macro *) pfile->hash_table->alloc_subobject
      (sizeof (cpp_macro));
      (sizeof (cpp_macro));
  else
  else
    macro = (cpp_macro *) _cpp_aligned_alloc (pfile, sizeof (cpp_macro));
    macro = (cpp_macro *) _cpp_aligned_alloc (pfile, sizeof (cpp_macro));
  macro->line = pfile->directive_line;
  macro->line = pfile->directive_line;
  macro->params = 0;
  macro->params = 0;
  macro->paramc = 0;
  macro->paramc = 0;
  macro->variadic = 0;
  macro->variadic = 0;
  macro->used = !CPP_OPTION (pfile, warn_unused_macros);
  macro->used = !CPP_OPTION (pfile, warn_unused_macros);
  macro->count = 0;
  macro->count = 0;
  macro->fun_like = 0;
  macro->fun_like = 0;
  macro->extra_tokens = 0;
  macro->extra_tokens = 0;
  /* To suppress some diagnostics.  */
  /* To suppress some diagnostics.  */
  macro->syshdr = pfile->buffer && pfile->buffer->sysp != 0;
  macro->syshdr = pfile->buffer && pfile->buffer->sysp != 0;
 
 
  if (CPP_OPTION (pfile, traditional))
  if (CPP_OPTION (pfile, traditional))
    ok = _cpp_create_trad_definition (pfile, macro);
    ok = _cpp_create_trad_definition (pfile, macro);
  else
  else
    {
    {
      ok = create_iso_definition (pfile, macro);
      ok = create_iso_definition (pfile, macro);
 
 
      /* We set the type for SEEN_EOL() in directives.c.
      /* We set the type for SEEN_EOL() in directives.c.
 
 
         Longer term we should lex the whole line before coming here,
         Longer term we should lex the whole line before coming here,
         and just copy the expansion.  */
         and just copy the expansion.  */
 
 
      /* Stop the lexer accepting __VA_ARGS__.  */
      /* Stop the lexer accepting __VA_ARGS__.  */
      pfile->state.va_args_ok = 0;
      pfile->state.va_args_ok = 0;
    }
    }
 
 
  /* Clear the fast argument lookup indices.  */
  /* Clear the fast argument lookup indices.  */
  for (i = macro->paramc; i-- > 0; )
  for (i = macro->paramc; i-- > 0; )
    {
    {
      struct cpp_hashnode *node = macro->params[i];
      struct cpp_hashnode *node = macro->params[i];
      node->flags &= ~ NODE_MACRO_ARG;
      node->flags &= ~ NODE_MACRO_ARG;
      node->value = ((union _cpp_hashnode_value *) pfile->macro_buffer)[i];
      node->value = ((union _cpp_hashnode_value *) pfile->macro_buffer)[i];
    }
    }
 
 
  if (!ok)
  if (!ok)
    return ok;
    return ok;
 
 
  if (node->type == NT_MACRO)
  if (node->type == NT_MACRO)
    {
    {
      if (CPP_OPTION (pfile, warn_unused_macros))
      if (CPP_OPTION (pfile, warn_unused_macros))
        _cpp_warn_if_unused_macro (pfile, node, NULL);
        _cpp_warn_if_unused_macro (pfile, node, NULL);
 
 
      if (warn_of_redefinition (pfile, node, macro))
      if (warn_of_redefinition (pfile, node, macro))
        {
        {
          bool warned;
          bool warned;
          warned = cpp_error_with_line (pfile, CPP_DL_PEDWARN,
          warned = cpp_error_with_line (pfile, CPP_DL_PEDWARN,
                                        pfile->directive_line, 0,
                                        pfile->directive_line, 0,
                                        "\"%s\" redefined", NODE_NAME (node));
                                        "\"%s\" redefined", NODE_NAME (node));
 
 
          if (warned && node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
          if (warned && node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
            cpp_error_with_line (pfile, CPP_DL_NOTE,
            cpp_error_with_line (pfile, CPP_DL_NOTE,
                                 node->value.macro->line, 0,
                                 node->value.macro->line, 0,
                         "this is the location of the previous definition");
                         "this is the location of the previous definition");
        }
        }
    }
    }
 
 
  if (node->type != NT_VOID)
  if (node->type != NT_VOID)
    _cpp_free_definition (node);
    _cpp_free_definition (node);
 
 
  /* Enter definition in hash table.  */
  /* Enter definition in hash table.  */
  node->type = NT_MACRO;
  node->type = NT_MACRO;
  node->value.macro = macro;
  node->value.macro = macro;
  if (! ustrncmp (NODE_NAME (node), DSC ("__STDC_"))
  if (! ustrncmp (NODE_NAME (node), DSC ("__STDC_"))
      && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_FORMAT_MACROS")
      && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_FORMAT_MACROS")
      /* __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS are mentioned
      /* __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS are mentioned
         in the C standard, as something that one must use in C++.
         in the C standard, as something that one must use in C++.
         However DR#593 indicates that these aren't actually mentioned
         However DR#593 indicates that these aren't actually mentioned
         in the C++ standard.  We special-case them anyway.  */
         in the C++ standard.  We special-case them anyway.  */
      && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_LIMIT_MACROS")
      && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_LIMIT_MACROS")
      && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_CONSTANT_MACROS"))
      && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_CONSTANT_MACROS"))
    node->flags |= NODE_WARN;
    node->flags |= NODE_WARN;
 
 
  /* If user defines one of the conditional macros, remove the
  /* If user defines one of the conditional macros, remove the
     conditional flag */
     conditional flag */
  node->flags &= ~NODE_CONDITIONAL;
  node->flags &= ~NODE_CONDITIONAL;
 
 
  return ok;
  return ok;
}
}
 
 
/* Warn if a token in STRING matches one of a function-like MACRO's
/* Warn if a token in STRING matches one of a function-like MACRO's
   parameters.  */
   parameters.  */
static void
static void
check_trad_stringification (cpp_reader *pfile, const cpp_macro *macro,
check_trad_stringification (cpp_reader *pfile, const cpp_macro *macro,
                            const cpp_string *string)
                            const cpp_string *string)
{
{
  unsigned int i, len;
  unsigned int i, len;
  const uchar *p, *q, *limit;
  const uchar *p, *q, *limit;
 
 
  /* Loop over the string.  */
  /* Loop over the string.  */
  limit = string->text + string->len - 1;
  limit = string->text + string->len - 1;
  for (p = string->text + 1; p < limit; p = q)
  for (p = string->text + 1; p < limit; p = q)
    {
    {
      /* Find the start of an identifier.  */
      /* Find the start of an identifier.  */
      while (p < limit && !is_idstart (*p))
      while (p < limit && !is_idstart (*p))
        p++;
        p++;
 
 
      /* Find the end of the identifier.  */
      /* Find the end of the identifier.  */
      q = p;
      q = p;
      while (q < limit && is_idchar (*q))
      while (q < limit && is_idchar (*q))
        q++;
        q++;
 
 
      len = q - p;
      len = q - p;
 
 
      /* Loop over the function macro arguments to see if the
      /* Loop over the function macro arguments to see if the
         identifier inside the string matches one of them.  */
         identifier inside the string matches one of them.  */
      for (i = 0; i < macro->paramc; i++)
      for (i = 0; i < macro->paramc; i++)
        {
        {
          const cpp_hashnode *node = macro->params[i];
          const cpp_hashnode *node = macro->params[i];
 
 
          if (NODE_LEN (node) == len
          if (NODE_LEN (node) == len
              && !memcmp (p, NODE_NAME (node), len))
              && !memcmp (p, NODE_NAME (node), len))
            {
            {
              cpp_error (pfile, CPP_DL_WARNING,
              cpp_error (pfile, CPP_DL_WARNING,
           "macro argument \"%s\" would be stringified in traditional C",
           "macro argument \"%s\" would be stringified in traditional C",
                         NODE_NAME (node));
                         NODE_NAME (node));
              break;
              break;
            }
            }
        }
        }
    }
    }
}
}
 
 
/* Returns the name, arguments and expansion of a macro, in a format
/* Returns the name, arguments and expansion of a macro, in a format
   suitable to be read back in again, and therefore also for DWARF 2
   suitable to be read back in again, and therefore also for DWARF 2
   debugging info.  e.g. "PASTE(X, Y) X ## Y", or "MACNAME EXPANSION".
   debugging info.  e.g. "PASTE(X, Y) X ## Y", or "MACNAME EXPANSION".
   Caller is expected to generate the "#define" bit if needed.  The
   Caller is expected to generate the "#define" bit if needed.  The
   returned text is temporary, and automatically freed later.  */
   returned text is temporary, and automatically freed later.  */
const unsigned char *
const unsigned char *
cpp_macro_definition (cpp_reader *pfile, const cpp_hashnode *node)
cpp_macro_definition (cpp_reader *pfile, const cpp_hashnode *node)
{
{
  unsigned int i, len;
  unsigned int i, len;
  const cpp_macro *macro = node->value.macro;
  const cpp_macro *macro = node->value.macro;
  unsigned char *buffer;
  unsigned char *buffer;
 
 
  if (node->type != NT_MACRO || (node->flags & NODE_BUILTIN))
  if (node->type != NT_MACRO || (node->flags & NODE_BUILTIN))
    {
    {
      cpp_error (pfile, CPP_DL_ICE,
      cpp_error (pfile, CPP_DL_ICE,
                 "invalid hash type %d in cpp_macro_definition", node->type);
                 "invalid hash type %d in cpp_macro_definition", node->type);
      return 0;
      return 0;
    }
    }
 
 
  /* Calculate length.  */
  /* Calculate length.  */
  len = NODE_LEN (node) + 2;                    /* ' ' and NUL.  */
  len = NODE_LEN (node) + 2;                    /* ' ' and NUL.  */
  if (macro->fun_like)
  if (macro->fun_like)
    {
    {
      len += 4;         /* "()" plus possible final ".." of named
      len += 4;         /* "()" plus possible final ".." of named
                           varargs (we have + 1 below).  */
                           varargs (we have + 1 below).  */
      for (i = 0; i < macro->paramc; i++)
      for (i = 0; i < macro->paramc; i++)
        len += NODE_LEN (macro->params[i]) + 1; /* "," */
        len += NODE_LEN (macro->params[i]) + 1; /* "," */
    }
    }
 
 
  /* This should match below where we fill in the buffer.  */
  /* This should match below where we fill in the buffer.  */
  if (CPP_OPTION (pfile, traditional))
  if (CPP_OPTION (pfile, traditional))
    len += _cpp_replacement_text_len (macro);
    len += _cpp_replacement_text_len (macro);
  else
  else
    {
    {
      unsigned int count = macro_real_token_count (macro);
      unsigned int count = macro_real_token_count (macro);
      for (i = 0; i < count; i++)
      for (i = 0; i < count; i++)
        {
        {
          cpp_token *token = &macro->exp.tokens[i];
          cpp_token *token = &macro->exp.tokens[i];
 
 
          if (token->type == CPP_MACRO_ARG)
          if (token->type == CPP_MACRO_ARG)
            len += NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]);
            len += NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]);
          else
          else
            len += cpp_token_len (token);
            len += cpp_token_len (token);
 
 
          if (token->flags & STRINGIFY_ARG)
          if (token->flags & STRINGIFY_ARG)
            len++;                      /* "#" */
            len++;                      /* "#" */
          if (token->flags & PASTE_LEFT)
          if (token->flags & PASTE_LEFT)
            len += 3;           /* " ##" */
            len += 3;           /* " ##" */
          if (token->flags & PREV_WHITE)
          if (token->flags & PREV_WHITE)
            len++;              /* " " */
            len++;              /* " " */
        }
        }
    }
    }
 
 
  if (len > pfile->macro_buffer_len)
  if (len > pfile->macro_buffer_len)
    {
    {
      pfile->macro_buffer = XRESIZEVEC (unsigned char,
      pfile->macro_buffer = XRESIZEVEC (unsigned char,
                                        pfile->macro_buffer, len);
                                        pfile->macro_buffer, len);
      pfile->macro_buffer_len = len;
      pfile->macro_buffer_len = len;
    }
    }
 
 
  /* Fill in the buffer.  Start with the macro name.  */
  /* Fill in the buffer.  Start with the macro name.  */
  buffer = pfile->macro_buffer;
  buffer = pfile->macro_buffer;
  memcpy (buffer, NODE_NAME (node), NODE_LEN (node));
  memcpy (buffer, NODE_NAME (node), NODE_LEN (node));
  buffer += NODE_LEN (node);
  buffer += NODE_LEN (node);
 
 
  /* Parameter names.  */
  /* Parameter names.  */
  if (macro->fun_like)
  if (macro->fun_like)
    {
    {
      *buffer++ = '(';
      *buffer++ = '(';
      for (i = 0; i < macro->paramc; i++)
      for (i = 0; i < macro->paramc; i++)
        {
        {
          cpp_hashnode *param = macro->params[i];
          cpp_hashnode *param = macro->params[i];
 
 
          if (param != pfile->spec_nodes.n__VA_ARGS__)
          if (param != pfile->spec_nodes.n__VA_ARGS__)
            {
            {
              memcpy (buffer, NODE_NAME (param), NODE_LEN (param));
              memcpy (buffer, NODE_NAME (param), NODE_LEN (param));
              buffer += NODE_LEN (param);
              buffer += NODE_LEN (param);
            }
            }
 
 
          if (i + 1 < macro->paramc)
          if (i + 1 < macro->paramc)
            /* Don't emit a space after the comma here; we're trying
            /* Don't emit a space after the comma here; we're trying
               to emit a Dwarf-friendly definition, and the Dwarf spec
               to emit a Dwarf-friendly definition, and the Dwarf spec
               forbids spaces in the argument list.  */
               forbids spaces in the argument list.  */
            *buffer++ = ',';
            *buffer++ = ',';
          else if (macro->variadic)
          else if (macro->variadic)
            *buffer++ = '.', *buffer++ = '.', *buffer++ = '.';
            *buffer++ = '.', *buffer++ = '.', *buffer++ = '.';
        }
        }
      *buffer++ = ')';
      *buffer++ = ')';
    }
    }
 
 
  /* The Dwarf spec requires a space after the macro name, even if the
  /* The Dwarf spec requires a space after the macro name, even if the
     definition is the empty string.  */
     definition is the empty string.  */
  *buffer++ = ' ';
  *buffer++ = ' ';
 
 
  if (CPP_OPTION (pfile, traditional))
  if (CPP_OPTION (pfile, traditional))
    buffer = _cpp_copy_replacement_text (macro, buffer);
    buffer = _cpp_copy_replacement_text (macro, buffer);
  else if (macro->count)
  else if (macro->count)
  /* Expansion tokens.  */
  /* Expansion tokens.  */
    {
    {
      unsigned int count = macro_real_token_count (macro);
      unsigned int count = macro_real_token_count (macro);
      for (i = 0; i < count; i++)
      for (i = 0; i < count; i++)
        {
        {
          cpp_token *token = &macro->exp.tokens[i];
          cpp_token *token = &macro->exp.tokens[i];
 
 
          if (token->flags & PREV_WHITE)
          if (token->flags & PREV_WHITE)
            *buffer++ = ' ';
            *buffer++ = ' ';
          if (token->flags & STRINGIFY_ARG)
          if (token->flags & STRINGIFY_ARG)
            *buffer++ = '#';
            *buffer++ = '#';
 
 
          if (token->type == CPP_MACRO_ARG)
          if (token->type == CPP_MACRO_ARG)
            {
            {
              memcpy (buffer,
              memcpy (buffer,
                      NODE_NAME (macro->params[token->val.macro_arg.arg_no - 1]),
                      NODE_NAME (macro->params[token->val.macro_arg.arg_no - 1]),
                      NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]));
                      NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]));
              buffer += NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]);
              buffer += NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]);
            }
            }
          else
          else
            buffer = cpp_spell_token (pfile, token, buffer, false);
            buffer = cpp_spell_token (pfile, token, buffer, false);
 
 
          if (token->flags & PASTE_LEFT)
          if (token->flags & PASTE_LEFT)
            {
            {
              *buffer++ = ' ';
              *buffer++ = ' ';
              *buffer++ = '#';
              *buffer++ = '#';
              *buffer++ = '#';
              *buffer++ = '#';
              /* Next has PREV_WHITE; see _cpp_create_definition.  */
              /* Next has PREV_WHITE; see _cpp_create_definition.  */
            }
            }
        }
        }
    }
    }
 
 
  *buffer = '\0';
  *buffer = '\0';
  return pfile->macro_buffer;
  return pfile->macro_buffer;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.