Home | History | Annotate | Line # | Download | only in gdb
macroexp.c revision 1.11
      1 /* C preprocessor macro expansion for GDB.
      2    Copyright (C) 2002-2024 Free Software Foundation, Inc.
      3    Contributed by Red Hat, Inc.
      4 
      5    This file is part of GDB.
      6 
      7    This program is free software; you can redistribute it and/or modify
      8    it under the terms of the GNU General Public License as published by
      9    the Free Software Foundation; either version 3 of the License, or
     10    (at your option) any later version.
     11 
     12    This program is distributed in the hope that it will be useful,
     13    but WITHOUT ANY WARRANTY; without even the implied warranty of
     14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15    GNU General Public License for more details.
     16 
     17    You should have received a copy of the GNU General Public License
     18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
     19 
     20 #include "gdbsupport/gdb_obstack.h"
     21 #include "macrotab.h"
     22 #include "macroexp.h"
     23 #include "macroscope.h"
     24 #include "c-lang.h"
     25 
     26 
     27 
     28 
     30 /* A string type that we can use to refer to substrings of other
     31    strings.  */
     32 
     33 struct shared_macro_buffer
     34 {
     35   /* An array of characters.  This buffer is a pointer into some
     36      larger string and thus we can't assume in that the text is
     37      null-terminated.  */
     38   const char *text;
     39 
     40   /* The number of characters in the string.  */
     41   int len;
     42 
     43   /* For detecting token splicing.
     44 
     45      This is the index in TEXT of the first character of the token
     46      that abuts the end of TEXT.  If TEXT contains no tokens, then we
     47      set this equal to LEN.  If TEXT ends in whitespace, then there is
     48      no token abutting the end of TEXT (it's just whitespace), and
     49      again, we set this equal to LEN.  We set this to -1 if we don't
     50      know the nature of TEXT.  */
     51   int last_token = -1;
     52 
     53   /* If this buffer is holding the result from get_token, then this
     54      is non-zero if it is an identifier token, zero otherwise.  */
     55   int is_identifier = 0;
     56 
     57   shared_macro_buffer ()
     58     : text (NULL),
     59       len (0)
     60   {
     61   }
     62 
     63   /* Set the macro buffer to refer to the LEN bytes at ADDR, as a
     64      shared substring.  */
     65   shared_macro_buffer (const char *addr, int len)
     66   {
     67     set_shared (addr, len);
     68   }
     69 
     70   /* Set the macro buffer to refer to the LEN bytes at ADDR, as a
     71      shared substring.  */
     72   void set_shared (const char *addr, int len_)
     73   {
     74     text = addr;
     75     len = len_;
     76   }
     77 };
     78 
     79 /* A string type that we can resize and quickly append to.  */
     80 
     81 struct growable_macro_buffer
     82 {
     83   /* An array of characters.  The first LEN bytes are the real text,
     84      but there are SIZE bytes allocated to the array.  */
     85   char *text;
     86 
     87   /* The number of characters in the string.  */
     88   int len;
     89 
     90   /* The number of characters allocated to the string.  */
     91   int size;
     92 
     93   /* For detecting token splicing.
     94 
     95      This is the index in TEXT of the first character of the token
     96      that abuts the end of TEXT.  If TEXT contains no tokens, then we
     97      set this equal to LEN.  If TEXT ends in whitespace, then there is
     98      no token abutting the end of TEXT (it's just whitespace), and
     99      again, we set this equal to LEN.  We set this to -1 if we don't
    100      know the nature of TEXT.  */
    101   int last_token = -1;
    102 
    103   /* Set the macro buffer to the empty string, guessing that its
    104      final contents will fit in N bytes.  (It'll get resized if it
    105      doesn't, so the guess doesn't have to be right.)  Allocate the
    106      initial storage with xmalloc.  */
    107   explicit growable_macro_buffer (int n)
    108     : len (0),
    109       size (n)
    110   {
    111     if (n > 0)
    112       text = (char *) xmalloc (n);
    113     else
    114       text = NULL;
    115   }
    116 
    117   DISABLE_COPY_AND_ASSIGN (growable_macro_buffer);
    118 
    119   ~growable_macro_buffer ()
    120   {
    121     xfree (text);
    122   }
    123 
    124   /* Release the text of the buffer to the caller.  */
    125   gdb::unique_xmalloc_ptr<char> release ()
    126   {
    127     gdb_assert (size);
    128     char *result = text;
    129     text = NULL;
    130     return gdb::unique_xmalloc_ptr<char> (result);
    131   }
    132 
    133   /* Resize the buffer to be at least N bytes long.  */
    134   void resize_buffer (int n)
    135   {
    136     if (size == 0)
    137       size = n;
    138     else
    139       while (size <= n)
    140 	size *= 2;
    141 
    142     text = (char *) xrealloc (text, size);
    143   }
    144 
    145   /* Append the character C to the buffer.  */
    146   void appendc (int c)
    147   {
    148     int new_len = len + 1;
    149 
    150     if (new_len > size)
    151       resize_buffer (new_len);
    152 
    153     text[len] = c;
    154     len = new_len;
    155   }
    156 
    157   /* Append the COUNT bytes at ADDR to the buffer.  */
    158   void appendmem (const char *addr, int count)
    159   {
    160     int new_len = len + count;
    161 
    162     if (new_len > size)
    163       resize_buffer (new_len);
    164 
    165     memcpy (text + len, addr, count);
    166     len = new_len;
    167   }
    168 };
    169 
    170 
    171 
    172 /* Recognizing preprocessor tokens.  */
    174 
    175 
    176 int
    177 macro_is_whitespace (int c)
    178 {
    179   return (c == ' '
    180 	  || c == '\t'
    181 	  || c == '\n'
    182 	  || c == '\v'
    183 	  || c == '\f');
    184 }
    185 
    186 
    187 int
    188 macro_is_digit (int c)
    189 {
    190   return ('0' <= c && c <= '9');
    191 }
    192 
    193 
    194 int
    195 macro_is_identifier_nondigit (int c)
    196 {
    197   return (c == '_'
    198 	  || ('a' <= c && c <= 'z')
    199 	  || ('A' <= c && c <= 'Z'));
    200 }
    201 
    202 
    203 static void
    204 set_token (shared_macro_buffer *tok, const char *start, const char *end)
    205 {
    206   tok->set_shared (start, end - start);
    207   tok->last_token = 0;
    208 
    209   /* Presumed; get_identifier may overwrite this.  */
    210   tok->is_identifier = 0;
    211 }
    212 
    213 
    214 static int
    215 get_comment (shared_macro_buffer *tok, const char *p, const char *end)
    216 {
    217   if (p + 2 > end)
    218     return 0;
    219   else if (p[0] == '/'
    220 	   && p[1] == '*')
    221     {
    222       const char *tok_start = p;
    223 
    224       p += 2;
    225 
    226       for (; p < end; p++)
    227 	if (p + 2 <= end
    228 	    && p[0] == '*'
    229 	    && p[1] == '/')
    230 	  {
    231 	    p += 2;
    232 	    set_token (tok, tok_start, p);
    233 	    return 1;
    234 	  }
    235 
    236       error (_("Unterminated comment in macro expansion."));
    237     }
    238   else if (p[0] == '/'
    239 	   && p[1] == '/')
    240     {
    241       const char *tok_start = p;
    242 
    243       p += 2;
    244       for (; p < end; p++)
    245 	if (*p == '\n')
    246 	  break;
    247 
    248       set_token (tok, tok_start, p);
    249       return 1;
    250     }
    251   else
    252     return 0;
    253 }
    254 
    255 
    256 static int
    257 get_identifier (shared_macro_buffer *tok, const char *p, const char *end)
    258 {
    259   if (p < end
    260       && macro_is_identifier_nondigit (*p))
    261     {
    262       const char *tok_start = p;
    263 
    264       while (p < end
    265 	     && (macro_is_identifier_nondigit (*p)
    266 		 || macro_is_digit (*p)))
    267 	p++;
    268 
    269       set_token (tok, tok_start, p);
    270       tok->is_identifier = 1;
    271       return 1;
    272     }
    273   else
    274     return 0;
    275 }
    276 
    277 
    278 static int
    279 get_pp_number (shared_macro_buffer *tok, const char *p, const char *end)
    280 {
    281   if (p < end
    282       && (macro_is_digit (*p)
    283 	  || (*p == '.'
    284 	      && p + 2 <= end
    285 	      && macro_is_digit (p[1]))))
    286     {
    287       const char *tok_start = p;
    288 
    289       while (p < end)
    290 	{
    291 	  if (p + 2 <= end
    292 	      && strchr ("eEpP", *p)
    293 	      && (p[1] == '+' || p[1] == '-'))
    294 	    p += 2;
    295 	  else if (macro_is_digit (*p)
    296 		   || macro_is_identifier_nondigit (*p)
    297 		   || *p == '.')
    298 	    p++;
    299 	  else
    300 	    break;
    301 	}
    302 
    303       set_token (tok, tok_start, p);
    304       return 1;
    305     }
    306   else
    307     return 0;
    308 }
    309 
    310 
    311 
    312 /* If the text starting at P going up to (but not including) END
    313    starts with a character constant, set *TOK to point to that
    314    character constant, and return 1.  Otherwise, return zero.
    315    Signal an error if it contains a malformed or incomplete character
    316    constant.  */
    317 static int
    318 get_character_constant (shared_macro_buffer *tok,
    319 			const char *p, const char *end)
    320 {
    321   /* ISO/IEC 9899:1999 (E)  Section 6.4.4.4  paragraph 1
    322      But of course, what really matters is that we handle it the same
    323      way GDB's C/C++ lexer does.  So we call parse_escape in utils.c
    324      to handle escape sequences.  */
    325   if ((p + 1 <= end && *p == '\'')
    326       || (p + 2 <= end
    327 	  && (p[0] == 'L' || p[0] == 'u' || p[0] == 'U')
    328 	  && p[1] == '\''))
    329     {
    330       const char *tok_start = p;
    331       int char_count = 0;
    332 
    333       if (*p == '\'')
    334 	p++;
    335       else if (*p == 'L' || *p == 'u' || *p == 'U')
    336 	p += 2;
    337       else
    338 	gdb_assert_not_reached ("unexpected character constant");
    339 
    340       for (;;)
    341 	{
    342 	  if (p >= end)
    343 	    error (_("Unmatched single quote."));
    344 	  else if (*p == '\'')
    345 	    {
    346 	      if (!char_count)
    347 		error (_("A character constant must contain at least one "
    348 		       "character."));
    349 	      p++;
    350 	      break;
    351 	    }
    352 	  else if (*p == '\\')
    353 	    {
    354 	      const char *s, *o;
    355 
    356 	      s = o = ++p;
    357 	      char_count += c_parse_escape (&s, NULL);
    358 	      p += s - o;
    359 	    }
    360 	  else
    361 	    {
    362 	      p++;
    363 	      char_count++;
    364 	    }
    365 	}
    366 
    367       set_token (tok, tok_start, p);
    368       return 1;
    369     }
    370   else
    371     return 0;
    372 }
    373 
    374 
    375 /* If the text starting at P going up to (but not including) END
    376    starts with a string literal, set *TOK to point to that string
    377    literal, and return 1.  Otherwise, return zero.  Signal an error if
    378    it contains a malformed or incomplete string literal.  */
    379 static int
    380 get_string_literal (shared_macro_buffer *tok, const char *p, const char *end)
    381 {
    382   if ((p + 1 <= end
    383        && *p == '"')
    384       || (p + 2 <= end
    385 	  && (p[0] == 'L' || p[0] == 'u' || p[0] == 'U')
    386 	  && p[1] == '"'))
    387     {
    388       const char *tok_start = p;
    389 
    390       if (*p == '"')
    391 	p++;
    392       else if (*p == 'L' || *p == 'u' || *p == 'U')
    393 	p += 2;
    394       else
    395 	gdb_assert_not_reached ("unexpected string literal");
    396 
    397       for (;;)
    398 	{
    399 	  if (p >= end)
    400 	    error (_("Unterminated string in expression."));
    401 	  else if (*p == '"')
    402 	    {
    403 	      p++;
    404 	      break;
    405 	    }
    406 	  else if (*p == '\n')
    407 	    error (_("Newline characters may not appear in string "
    408 		   "constants."));
    409 	  else if (*p == '\\')
    410 	    {
    411 	      const char *s, *o;
    412 
    413 	      s = o = ++p;
    414 	      c_parse_escape (&s, NULL);
    415 	      p += s - o;
    416 	    }
    417 	  else
    418 	    p++;
    419 	}
    420 
    421       set_token (tok, tok_start, p);
    422       return 1;
    423     }
    424   else
    425     return 0;
    426 }
    427 
    428 
    429 static int
    430 get_punctuator (shared_macro_buffer *tok, const char *p, const char *end)
    431 {
    432   /* Here, speed is much less important than correctness and clarity.  */
    433 
    434   /* ISO/IEC 9899:1999 (E)  Section 6.4.6  Paragraph 1.
    435      Note that this table is ordered in a special way.  A punctuator
    436      which is a prefix of another punctuator must appear after its
    437      "extension".  Otherwise, the wrong token will be returned.  */
    438   static const char * const punctuators[] = {
    439     "[", "]", "(", ")", "{", "}", "?", ";", ",", "~",
    440     "...", ".",
    441     "->", "--", "-=", "-",
    442     "++", "+=", "+",
    443     "*=", "*",
    444     "!=", "!",
    445     "&&", "&=", "&",
    446     "/=", "/",
    447     "%>", "%:%:", "%:", "%=", "%",
    448     "^=", "^",
    449     "##", "#",
    450     ":>", ":",
    451     "||", "|=", "|",
    452     "<<=", "<<", "<=", "<:", "<%", "<",
    453     ">>=", ">>", ">=", ">",
    454     "==", "=",
    455     0
    456   };
    457 
    458   int i;
    459 
    460   if (p + 1 <= end)
    461     {
    462       for (i = 0; punctuators[i]; i++)
    463 	{
    464 	  const char *punctuator = punctuators[i];
    465 
    466 	  if (p[0] == punctuator[0])
    467 	    {
    468 	      int len = strlen (punctuator);
    469 
    470 	      if (p + len <= end
    471 		  && ! memcmp (p, punctuator, len))
    472 		{
    473 		  set_token (tok, p, p + len);
    474 		  return 1;
    475 		}
    476 	    }
    477 	}
    478     }
    479 
    480   return 0;
    481 }
    482 
    483 
    484 /* Peel the next preprocessor token off of SRC, and put it in TOK.
    485    Mutate TOK to refer to the first token in SRC, and mutate SRC to
    486    refer to the text after that token.  The resulting TOK will point
    487    into the same string SRC does.  Initialize TOK's last_token field.
    488    Return non-zero if we succeed, or 0 if we didn't find any more
    489    tokens in SRC.  */
    490 
    491 static int
    492 get_token (shared_macro_buffer *tok, shared_macro_buffer *src)
    493 {
    494   const char *p = src->text;
    495   const char *end = p + src->len;
    496 
    497   /* From the ISO C standard, ISO/IEC 9899:1999 (E), section 6.4:
    498 
    499      preprocessing-token:
    500 	 header-name
    501 	 identifier
    502 	 pp-number
    503 	 character-constant
    504 	 string-literal
    505 	 punctuator
    506 	 each non-white-space character that cannot be one of the above
    507 
    508      We don't have to deal with header-name tokens, since those can
    509      only occur after a #include, which we will never see.  */
    510 
    511   while (p < end)
    512     if (macro_is_whitespace (*p))
    513       p++;
    514     else if (get_comment (tok, p, end))
    515       p += tok->len;
    516     else if (get_pp_number (tok, p, end)
    517 	     || get_character_constant (tok, p, end)
    518 	     || get_string_literal (tok, p, end)
    519 	     /* Note: the grammar in the standard seems to be
    520 		ambiguous: L'x' can be either a wide character
    521 		constant, or an identifier followed by a normal
    522 		character constant.  By trying `get_identifier' after
    523 		we try get_character_constant and get_string_literal,
    524 		we give the wide character syntax precedence.  Now,
    525 		since GDB doesn't handle wide character constants
    526 		anyway, is this the right thing to do?  */
    527 	     || get_identifier (tok, p, end)
    528 	     || get_punctuator (tok, p, end))
    529       {
    530 	/* How many characters did we consume, including whitespace?  */
    531 	int consumed = p - src->text + tok->len;
    532 
    533 	src->text += consumed;
    534 	src->len -= consumed;
    535 	return 1;
    536       }
    537     else
    538       {
    539 	/* We have found a "non-whitespace character that cannot be
    540 	   one of the above."  Make a token out of it.  */
    541 	int consumed;
    542 
    543 	set_token (tok, p, p + 1);
    544 	consumed = p - src->text + tok->len;
    545 	src->text += consumed;
    546 	src->len -= consumed;
    547 	return 1;
    548       }
    549 
    550   return 0;
    551 }
    552 
    553 
    554 
    555 /* Appending token strings, with and without splicing  */
    557 
    558 
    559 /* Append the macro buffer SRC to the end of DEST, and ensure that
    560    doing so doesn't splice the token at the end of SRC with the token
    561    at the beginning of DEST.  SRC and DEST must have their last_token
    562    fields set.  Upon return, DEST's last_token field is set correctly.
    563 
    564    For example:
    565 
    566    If DEST is "(" and SRC is "y", then we can return with
    567    DEST set to "(y" --- we've simply appended the two buffers.
    568 
    569    However, if DEST is "x" and SRC is "y", then we must not return
    570    with DEST set to "xy" --- that would splice the two tokens "x" and
    571    "y" together to make a single token "xy".  However, it would be
    572    fine to return with DEST set to "x y".  Similarly, "<" and "<" must
    573    yield "< <", not "<<", etc.  */
    574 static void
    575 append_tokens_without_splicing (growable_macro_buffer *dest,
    576 				shared_macro_buffer *src)
    577 {
    578   int original_dest_len = dest->len;
    579   shared_macro_buffer dest_tail, new_token;
    580 
    581   gdb_assert (src->last_token != -1);
    582   gdb_assert (dest->last_token != -1);
    583 
    584   /* First, just try appending the two, and call get_token to see if
    585      we got a splice.  */
    586   dest->appendmem (src->text, src->len);
    587 
    588   /* If DEST originally had no token abutting its end, then we can't
    589      have spliced anything, so we're done.  */
    590   if (dest->last_token == original_dest_len)
    591     {
    592       dest->last_token = original_dest_len + src->last_token;
    593       return;
    594     }
    595 
    596   /* Set DEST_TAIL to point to the last token in DEST, followed by
    597      all the stuff we just appended.  */
    598   dest_tail.set_shared (dest->text + dest->last_token,
    599 			dest->len - dest->last_token);
    600 
    601   /* Re-parse DEST's last token.  We know that DEST used to contain
    602      at least one token, so if it doesn't contain any after the
    603      append, then we must have spliced "/" and "*" or "/" and "/" to
    604      make a comment start.  (Just for the record, I got this right
    605      the first time.  This is not a bug fix.)  */
    606   if (get_token (&new_token, &dest_tail)
    607       && (new_token.text + new_token.len
    608 	  == dest->text + original_dest_len))
    609     {
    610       /* No splice, so we're done.  */
    611       dest->last_token = original_dest_len + src->last_token;
    612       return;
    613     }
    614 
    615   /* Okay, a simple append caused a splice.  Let's chop dest back to
    616      its original length and try again, but separate the texts with a
    617      space.  */
    618   dest->len = original_dest_len;
    619   dest->appendc (' ');
    620   dest->appendmem (src->text, src->len);
    621 
    622   dest_tail.set_shared (dest->text + dest->last_token,
    623 			dest->len - dest->last_token);
    624 
    625   /* Try to re-parse DEST's last token, as above.  */
    626   if (get_token (&new_token, &dest_tail)
    627       && (new_token.text + new_token.len
    628 	  == dest->text + original_dest_len))
    629     {
    630       /* No splice, so we're done.  */
    631       dest->last_token = original_dest_len + 1 + src->last_token;
    632       return;
    633     }
    634 
    635   /* As far as I know, there's no case where inserting a space isn't
    636      enough to prevent a splice.  */
    637   internal_error (_("unable to avoid splicing tokens during macro expansion"));
    638 }
    639 
    640 /* Stringify an argument, and insert it into DEST.  ARG is the text to
    641    stringify; it is LEN bytes long.  */
    642 
    643 static void
    644 stringify (growable_macro_buffer *dest, const char *arg, int len)
    645 {
    646   /* Trim initial whitespace from ARG.  */
    647   while (len > 0 && macro_is_whitespace (*arg))
    648     {
    649       ++arg;
    650       --len;
    651     }
    652 
    653   /* Trim trailing whitespace from ARG.  */
    654   while (len > 0 && macro_is_whitespace (arg[len - 1]))
    655     --len;
    656 
    657   /* Insert the string.  */
    658   dest->appendc ('"');
    659   while (len > 0)
    660     {
    661       /* We could try to handle strange cases here, like control
    662 	 characters, but there doesn't seem to be much point.  */
    663       if (macro_is_whitespace (*arg))
    664 	{
    665 	  /* Replace a sequence of whitespace with a single space.  */
    666 	  dest->appendc (' ');
    667 	  while (len > 1 && macro_is_whitespace (arg[1]))
    668 	    {
    669 	      ++arg;
    670 	      --len;
    671 	    }
    672 	}
    673       else if (*arg == '\\' || *arg == '"')
    674 	{
    675 	  dest->appendc ('\\');
    676 	  dest->appendc (*arg);
    677 	}
    678       else
    679 	dest->appendc (*arg);
    680       ++arg;
    681       --len;
    682     }
    683   dest->appendc ('"');
    684   dest->last_token = dest->len;
    685 }
    686 
    687 /* See macroexp.h.  */
    688 
    689 gdb::unique_xmalloc_ptr<char>
    690 macro_stringify (const char *str)
    691 {
    692   int len = strlen (str);
    693   growable_macro_buffer buffer (len);
    694 
    695   stringify (&buffer, str, len);
    696   buffer.appendc ('\0');
    697 
    698   return buffer.release ();
    699 }
    700 
    701 
    702 /* Expanding macros!  */
    704 
    705 
    706 /* A singly-linked list of the names of the macros we are currently
    707    expanding --- for detecting expansion loops.  */
    708 struct macro_name_list {
    709   const char *name;
    710   struct macro_name_list *next;
    711 };
    712 
    713 
    714 /* Return non-zero if we are currently expanding the macro named NAME,
    715    according to LIST; otherwise, return zero.
    716 
    717    You know, it would be possible to get rid of all the NO_LOOP
    718    arguments to these functions by simply generating a new lookup
    719    function and baton which refuses to find the definition for a
    720    particular macro, and otherwise delegates the decision to another
    721    function/baton pair.  But that makes the linked list of excluded
    722    macros chained through untyped baton pointers, which will make it
    723    harder to debug.  :(  */
    724 static int
    725 currently_rescanning (struct macro_name_list *list, const char *name)
    726 {
    727   for (; list; list = list->next)
    728     if (strcmp (name, list->name) == 0)
    729       return 1;
    730 
    731   return 0;
    732 }
    733 
    734 
    735 /* Gather the arguments to a macro expansion.
    736 
    737    NAME is the name of the macro being invoked.  (It's only used for
    738    printing error messages.)
    739 
    740    Assume that SRC is the text of the macro invocation immediately
    741    following the macro name.  For example, if we're processing the
    742    text foo(bar, baz), then NAME would be foo and SRC will be (bar,
    743    baz).
    744 
    745    If SRC doesn't start with an open paren ( token at all, return
    746    false, leave SRC unchanged, and don't set *ARGS_PTR to anything.
    747 
    748    If SRC doesn't contain a properly terminated argument list, then
    749    raise an error.
    750 
    751    For a variadic macro, NARGS holds the number of formal arguments to
    752    the macro.  For a GNU-style variadic macro, this should be the
    753    number of named arguments.  For a non-variadic macro, NARGS should
    754    be -1.
    755 
    756    Otherwise, return true and set *ARGS_PTR to a vector of macro
    757    buffers referring to the argument texts.  The macro buffers share
    758    their text with SRC, and their last_token fields are initialized.
    759 
    760    NOTE WELL: if SRC starts with a open paren ( token followed
    761    immediately by a close paren ) token (e.g., the invocation looks
    762    like "foo()"), we treat that as one argument, which happens to be
    763    the empty list of tokens.  The caller should keep in mind that such
    764    a sequence of tokens is a valid way to invoke one-parameter
    765    function-like macros, but also a valid way to invoke zero-parameter
    766    function-like macros.  Eeew.
    767 
    768    Consume the tokens from SRC; after this call, SRC contains the text
    769    following the invocation.  */
    770 
    771 static bool
    772 gather_arguments (const char *name, shared_macro_buffer *src, int nargs,
    773 		  std::vector<shared_macro_buffer> *args_ptr)
    774 {
    775   shared_macro_buffer tok;
    776   std::vector<shared_macro_buffer> args;
    777 
    778   /* Does SRC start with an opening paren token?  Read from a copy of
    779      SRC, so SRC itself is unaffected if we don't find an opening
    780      paren.  */
    781   {
    782     shared_macro_buffer temp (src->text, src->len);
    783 
    784     if (! get_token (&tok, &temp)
    785 	|| tok.len != 1
    786 	|| tok.text[0] != '(')
    787       return false;
    788   }
    789 
    790   /* Consume SRC's opening paren.  */
    791   get_token (&tok, src);
    792 
    793   for (;;)
    794     {
    795       int depth;
    796 
    797       /* Initialize the next argument.  */
    798       shared_macro_buffer *arg = &args.emplace_back ();
    799       set_token (arg, src->text, src->text);
    800 
    801       /* Gather the argument's tokens.  */
    802       depth = 0;
    803       for (;;)
    804 	{
    805 	  if (! get_token (&tok, src))
    806 	    error (_("Malformed argument list for macro `%s'."), name);
    807 
    808 	  /* Is tok an opening paren?  */
    809 	  if (tok.len == 1 && tok.text[0] == '(')
    810 	    depth++;
    811 
    812 	  /* Is tok is a closing paren?  */
    813 	  else if (tok.len == 1 && tok.text[0] == ')')
    814 	    {
    815 	      /* If it's a closing paren at the top level, then that's
    816 		 the end of the argument list.  */
    817 	      if (depth == 0)
    818 		{
    819 		  /* In the varargs case, the last argument may be
    820 		     missing.  Add an empty argument in this case.  */
    821 		  if (nargs != -1 && args.size () == nargs - 1)
    822 		    {
    823 		      arg = &args.emplace_back ();
    824 		      set_token (arg, src->text, src->text);
    825 		    }
    826 
    827 		  *args_ptr = std::move (args);
    828 		  return true;
    829 		}
    830 
    831 	      depth--;
    832 	    }
    833 
    834 	  /* If tok is a comma at top level, then that's the end of
    835 	     the current argument.  However, if we are handling a
    836 	     variadic macro and we are computing the last argument, we
    837 	     want to include the comma and remaining tokens.  */
    838 	  else if (tok.len == 1 && tok.text[0] == ',' && depth == 0
    839 		   && (nargs == -1 || args.size () < nargs))
    840 	    break;
    841 
    842 	  /* Extend the current argument to enclose this token.  If
    843 	     this is the current argument's first token, leave out any
    844 	     leading whitespace, just for aesthetics.  */
    845 	  if (arg->len == 0)
    846 	    {
    847 	      arg->text = tok.text;
    848 	      arg->len = tok.len;
    849 	      arg->last_token = 0;
    850 	    }
    851 	  else
    852 	    {
    853 	      arg->len = (tok.text + tok.len) - arg->text;
    854 	      arg->last_token = tok.text - arg->text;
    855 	    }
    856 	}
    857     }
    858 }
    859 
    860 
    861 /* The `expand' and `substitute_args' functions both invoke `scan'
    862    recursively, so we need a forward declaration somewhere.  */
    863 static void scan (growable_macro_buffer *dest,
    864 		  shared_macro_buffer *src,
    865 		  struct macro_name_list *no_loop,
    866 		  const macro_scope &scope);
    867 
    868 /* A helper function for substitute_args.
    869 
    870    ARGV is a vector of all the arguments; ARGC is the number of
    871    arguments.  IS_VARARGS is true if the macro being substituted is a
    872    varargs macro; in this case VA_ARG_NAME is the name of the
    873    "variable" argument.  VA_ARG_NAME is ignored if IS_VARARGS is
    874    false.
    875 
    876    If the token TOK is the name of a parameter, return the parameter's
    877    index.  If TOK is not an argument, return -1.  */
    878 
    879 static int
    880 find_parameter (const shared_macro_buffer *tok,
    881 		int is_varargs, const shared_macro_buffer *va_arg_name,
    882 		int argc, const char * const *argv)
    883 {
    884   int i;
    885 
    886   if (! tok->is_identifier)
    887     return -1;
    888 
    889   for (i = 0; i < argc; ++i)
    890     if (tok->len == strlen (argv[i])
    891 	&& !memcmp (tok->text, argv[i], tok->len))
    892       return i;
    893 
    894   if (is_varargs && tok->len == va_arg_name->len
    895       && ! memcmp (tok->text, va_arg_name->text, tok->len))
    896     return argc - 1;
    897 
    898   return -1;
    899 }
    900 
    901 /* Helper function for substitute_args that gets the next token and
    902    updates the passed-in state variables.  */
    903 
    904 static void
    905 get_next_token_for_substitution (shared_macro_buffer *replacement_list,
    906 				 shared_macro_buffer *token,
    907 				 const char **start,
    908 				 shared_macro_buffer *lookahead,
    909 				 const char **lookahead_start,
    910 				 int *lookahead_valid,
    911 				 bool *keep_going)
    912 {
    913   if (!*lookahead_valid)
    914     *keep_going = false;
    915   else
    916     {
    917       *keep_going = true;
    918       *token = *lookahead;
    919       *start = *lookahead_start;
    920       *lookahead_start = replacement_list->text;
    921       *lookahead_valid = get_token (lookahead, replacement_list);
    922     }
    923 }
    924 
    925 /* Given the macro definition DEF, being invoked with the actual
    926    arguments given by ARGV, substitute the arguments into the
    927    replacement list, and store the result in DEST.
    928 
    929    IS_VARARGS should be true if DEF is a varargs macro.  In this case,
    930    VA_ARG_NAME should be the name of the "variable" argument -- either
    931    __VA_ARGS__ for c99-style varargs, or the final argument name, for
    932    GNU-style varargs.  If IS_VARARGS is false, this parameter is
    933    ignored.
    934 
    935    If it is necessary to expand macro invocations in one of the
    936    arguments, use LOOKUP_FUNC and LOOKUP_BATON to find the macro
    937    definitions, and don't expand invocations of the macros listed in
    938    NO_LOOP.  */
    939 
    940 static void
    941 substitute_args (growable_macro_buffer *dest,
    942 		 struct macro_definition *def,
    943 		 int is_varargs, const shared_macro_buffer *va_arg_name,
    944 		 const std::vector<shared_macro_buffer> &argv,
    945 		 struct macro_name_list *no_loop,
    946 		 const macro_scope &scope)
    947 {
    948   /* The token we are currently considering.  */
    949   shared_macro_buffer tok;
    950   /* The replacement list's pointer from just before TOK was lexed.  */
    951   const char *original_rl_start;
    952   /* We have a single lookahead token to handle token splicing.  */
    953   shared_macro_buffer lookahead;
    954   /* The lookahead token might not be valid.  */
    955   int lookahead_valid;
    956   /* The replacement list's pointer from just before LOOKAHEAD was
    957      lexed.  */
    958   const char *lookahead_rl_start;
    959 
    960   /* A macro buffer for the macro's replacement list.  */
    961   shared_macro_buffer replacement_list (def->replacement,
    962 					strlen (def->replacement));
    963 
    964   gdb_assert (dest->len == 0);
    965   dest->last_token = 0;
    966 
    967   original_rl_start = replacement_list.text;
    968   if (! get_token (&tok, &replacement_list))
    969     return;
    970   lookahead_rl_start = replacement_list.text;
    971   lookahead_valid = get_token (&lookahead, &replacement_list);
    972 
    973   /* __VA_OPT__ state variable.  The states are:
    974      0 - nothing happening
    975      1 - saw __VA_OPT__
    976      >= 2 in __VA_OPT__, the value encodes the parenthesis depth.  */
    977   unsigned vaopt_state = 0;
    978 
    979   for (bool keep_going = true;
    980        keep_going;
    981        get_next_token_for_substitution (&replacement_list,
    982 					&tok,
    983 					&original_rl_start,
    984 					&lookahead,
    985 					&lookahead_rl_start,
    986 					&lookahead_valid,
    987 					&keep_going))
    988     {
    989       bool token_is_vaopt = (tok.len == 10
    990 			     && startswith (tok.text, "__VA_OPT__"));
    991 
    992       if (vaopt_state > 0)
    993 	{
    994 	  if (token_is_vaopt)
    995 	    error (_("__VA_OPT__ cannot appear inside __VA_OPT__"));
    996 	  else if (tok.len == 1 && tok.text[0] == '(')
    997 	    {
    998 	      ++vaopt_state;
    999 	      /* We just entered __VA_OPT__, so don't emit this
   1000 		 token.  */
   1001 	      continue;
   1002 	    }
   1003 	  else if (vaopt_state == 1)
   1004 	    error (_("__VA_OPT__ must be followed by an open parenthesis"));
   1005 	  else if (tok.len == 1 && tok.text[0] == ')')
   1006 	    {
   1007 	      --vaopt_state;
   1008 	      if (vaopt_state == 1)
   1009 		{
   1010 		  /* Done with __VA_OPT__.  */
   1011 		  vaopt_state = 0;
   1012 		  /* Don't emit.  */
   1013 		  continue;
   1014 		}
   1015 	    }
   1016 
   1017 	  /* If __VA_ARGS__ is empty, then drop the contents of
   1018 	     __VA_OPT__.  */
   1019 	  if (argv.back ().len == 0)
   1020 	    continue;
   1021 	}
   1022       else if (token_is_vaopt)
   1023 	{
   1024 	  if (!is_varargs)
   1025 	    error (_("__VA_OPT__ is only valid in a variadic macro"));
   1026 	  vaopt_state = 1;
   1027 	  /* Don't emit this token.  */
   1028 	  continue;
   1029 	}
   1030 
   1031       /* Just for aesthetics.  If we skipped some whitespace, copy
   1032 	 that to DEST.  */
   1033       if (tok.text > original_rl_start)
   1034 	{
   1035 	  dest->appendmem (original_rl_start, tok.text - original_rl_start);
   1036 	  dest->last_token = dest->len;
   1037 	}
   1038 
   1039       /* Is this token the stringification operator?  */
   1040       if (tok.len == 1
   1041 	  && tok.text[0] == '#')
   1042 	{
   1043 	  int arg;
   1044 
   1045 	  if (!lookahead_valid)
   1046 	    error (_("Stringification operator requires an argument."));
   1047 
   1048 	  arg = find_parameter (&lookahead, is_varargs, va_arg_name,
   1049 				def->argc, def->argv);
   1050 	  if (arg == -1)
   1051 	    error (_("Argument to stringification operator must name "
   1052 		     "a macro parameter."));
   1053 
   1054 	  stringify (dest, argv[arg].text, argv[arg].len);
   1055 
   1056 	  /* Read one token and let the loop iteration code handle the
   1057 	     rest.  */
   1058 	  lookahead_rl_start = replacement_list.text;
   1059 	  lookahead_valid = get_token (&lookahead, &replacement_list);
   1060 	}
   1061       /* Is this token the splicing operator?  */
   1062       else if (tok.len == 2
   1063 	       && tok.text[0] == '#'
   1064 	       && tok.text[1] == '#')
   1065 	error (_("Stray splicing operator"));
   1066       /* Is the next token the splicing operator?  */
   1067       else if (lookahead_valid
   1068 	       && lookahead.len == 2
   1069 	       && lookahead.text[0] == '#'
   1070 	       && lookahead.text[1] == '#')
   1071 	{
   1072 	  int finished = 0;
   1073 	  int prev_was_comma = 0;
   1074 
   1075 	  /* Note that GCC warns if the result of splicing is not a
   1076 	     token.  In the debugger there doesn't seem to be much
   1077 	     benefit from doing this.  */
   1078 
   1079 	  /* Insert the first token.  */
   1080 	  if (tok.len == 1 && tok.text[0] == ',')
   1081 	    prev_was_comma = 1;
   1082 	  else
   1083 	    {
   1084 	      int arg = find_parameter (&tok, is_varargs, va_arg_name,
   1085 					def->argc, def->argv);
   1086 
   1087 	      if (arg != -1)
   1088 		dest->appendmem (argv[arg].text, argv[arg].len);
   1089 	      else
   1090 		dest->appendmem (tok.text, tok.len);
   1091 	    }
   1092 
   1093 	  /* Apply a possible sequence of ## operators.  */
   1094 	  for (;;)
   1095 	    {
   1096 	      if (! get_token (&tok, &replacement_list))
   1097 		error (_("Splicing operator at end of macro"));
   1098 
   1099 	      /* Handle a comma before a ##.  If we are handling
   1100 		 varargs, and the token on the right hand side is the
   1101 		 varargs marker, and the final argument is empty or
   1102 		 missing, then drop the comma.  This is a GNU
   1103 		 extension.  There is one ambiguous case here,
   1104 		 involving pedantic behavior with an empty argument,
   1105 		 but we settle that in favor of GNU-style (GCC uses an
   1106 		 option).  If we aren't dealing with varargs, we
   1107 		 simply insert the comma.  */
   1108 	      if (prev_was_comma)
   1109 		{
   1110 		  if (! (is_varargs
   1111 			 && tok.len == va_arg_name->len
   1112 			 && !memcmp (tok.text, va_arg_name->text, tok.len)
   1113 			 && argv.back ().len == 0))
   1114 		    dest->appendmem (",", 1);
   1115 		  prev_was_comma = 0;
   1116 		}
   1117 
   1118 	      /* Insert the token.  If it is a parameter, insert the
   1119 		 argument.  If it is a comma, treat it specially.  */
   1120 	      if (tok.len == 1 && tok.text[0] == ',')
   1121 		prev_was_comma = 1;
   1122 	      else
   1123 		{
   1124 		  int arg = find_parameter (&tok, is_varargs, va_arg_name,
   1125 					    def->argc, def->argv);
   1126 
   1127 		  if (arg != -1)
   1128 		    dest->appendmem (argv[arg].text, argv[arg].len);
   1129 		  else
   1130 		    dest->appendmem (tok.text, tok.len);
   1131 		}
   1132 
   1133 	      /* Now read another token.  If it is another splice, we
   1134 		 loop.  */
   1135 	      original_rl_start = replacement_list.text;
   1136 	      if (! get_token (&tok, &replacement_list))
   1137 		{
   1138 		  finished = 1;
   1139 		  break;
   1140 		}
   1141 
   1142 	      if (! (tok.len == 2
   1143 		     && tok.text[0] == '#'
   1144 		     && tok.text[1] == '#'))
   1145 		break;
   1146 	    }
   1147 
   1148 	  if (prev_was_comma)
   1149 	    {
   1150 	      /* We saw a comma.  Insert it now.  */
   1151 	      dest->appendmem (",", 1);
   1152 	    }
   1153 
   1154 	  dest->last_token = dest->len;
   1155 	  if (finished)
   1156 	    lookahead_valid = 0;
   1157 	  else
   1158 	    {
   1159 	      /* Set up for the loop iterator.  */
   1160 	      lookahead = tok;
   1161 	      lookahead_rl_start = original_rl_start;
   1162 	      lookahead_valid = 1;
   1163 	    }
   1164 	}
   1165       else
   1166 	{
   1167 	  /* Is this token an identifier?  */
   1168 	  int substituted = 0;
   1169 	  int arg = find_parameter (&tok, is_varargs, va_arg_name,
   1170 				    def->argc, def->argv);
   1171 
   1172 	  if (arg != -1)
   1173 	    {
   1174 	      /* Expand any macro invocations in the argument text,
   1175 		 and append the result to dest.  Remember that scan
   1176 		 mutates its source, so we need to scan a new buffer
   1177 		 referring to the argument's text, not the argument
   1178 		 itself.  */
   1179 	      shared_macro_buffer arg_src (argv[arg].text, argv[arg].len);
   1180 	      scan (dest, &arg_src, no_loop, scope);
   1181 	      substituted = 1;
   1182 	    }
   1183 
   1184 	  /* If it wasn't a parameter, then just copy it across.  */
   1185 	  if (! substituted)
   1186 	    append_tokens_without_splicing (dest, &tok);
   1187 	}
   1188     }
   1189 
   1190   if (vaopt_state > 0)
   1191     error (_("Unterminated __VA_OPT__"));
   1192 }
   1193 
   1194 
   1195 /* Expand a call to a macro named ID, whose definition is DEF.  Append
   1196    its expansion to DEST.  SRC is the input text following the ID
   1197    token.  We are currently rescanning the expansions of the macros
   1198    named in NO_LOOP; don't re-expand them.  Use LOOKUP_FUNC and
   1199    LOOKUP_BATON to find definitions for any nested macro references.
   1200 
   1201    Return 1 if we decided to expand it, zero otherwise.  (If it's a
   1202    function-like macro name that isn't followed by an argument list,
   1203    we don't expand it.)  If we return zero, leave SRC unchanged.  */
   1204 static int
   1205 expand (const char *id,
   1206 	struct macro_definition *def,
   1207 	growable_macro_buffer *dest,
   1208 	shared_macro_buffer *src,
   1209 	struct macro_name_list *no_loop,
   1210 	const macro_scope &scope)
   1211 {
   1212   struct macro_name_list new_no_loop;
   1213 
   1214   /* Create a new node to be added to the front of the no-expand list.
   1215      This list is appropriate for re-scanning replacement lists, but
   1216      it is *not* appropriate for scanning macro arguments; invocations
   1217      of the macro whose arguments we are gathering *do* get expanded
   1218      there.  */
   1219   new_no_loop.name = id;
   1220   new_no_loop.next = no_loop;
   1221 
   1222   /* What kind of macro are we expanding?  */
   1223   if (def->kind == macro_object_like)
   1224     {
   1225       shared_macro_buffer replacement_list (def->replacement,
   1226 					    strlen (def->replacement));
   1227 
   1228       scan (dest, &replacement_list, &new_no_loop, scope);
   1229       return 1;
   1230     }
   1231   else if (def->kind == macro_function_like)
   1232     {
   1233       shared_macro_buffer va_arg_name;
   1234       int is_varargs = 0;
   1235 
   1236       if (def->argc >= 1)
   1237 	{
   1238 	  if (strcmp (def->argv[def->argc - 1], "...") == 0)
   1239 	    {
   1240 	      /* In C99-style varargs, substitution is done using
   1241 		 __VA_ARGS__.  */
   1242 	      va_arg_name.set_shared ("__VA_ARGS__", strlen ("__VA_ARGS__"));
   1243 	      is_varargs = 1;
   1244 	    }
   1245 	  else
   1246 	    {
   1247 	      int len = strlen (def->argv[def->argc - 1]);
   1248 
   1249 	      if (len > 3
   1250 		  && strcmp (def->argv[def->argc - 1] + len - 3, "...") == 0)
   1251 		{
   1252 		  /* In GNU-style varargs, the name of the
   1253 		     substitution parameter is the name of the formal
   1254 		     argument without the "...".  */
   1255 		  va_arg_name.set_shared (def->argv[def->argc - 1], len - 3);
   1256 		  is_varargs = 1;
   1257 		}
   1258 	    }
   1259 	}
   1260 
   1261       std::vector<shared_macro_buffer> argv;
   1262       /* If we couldn't find any argument list, then we don't expand
   1263 	 this macro.  */
   1264       if (!gather_arguments (id, src, is_varargs ? def->argc : -1,
   1265 			     &argv))
   1266 	return 0;
   1267 
   1268       /* Check that we're passing an acceptable number of arguments for
   1269 	 this macro.  */
   1270       if (argv.size () != def->argc)
   1271 	{
   1272 	  if (is_varargs && argv.size () >= def->argc - 1)
   1273 	    {
   1274 	      /* Ok.  */
   1275 	    }
   1276 	  /* Remember that a sequence of tokens like "foo()" is a
   1277 	     valid invocation of a macro expecting either zero or one
   1278 	     arguments.  */
   1279 	  else if (! (argv.size () == 1
   1280 		      && argv[0].len == 0
   1281 		      && def->argc == 0))
   1282 	    error (_("Wrong number of arguments to macro `%s' "
   1283 		   "(expected %d, got %d)."),
   1284 		   id, def->argc, int (argv.size ()));
   1285 	}
   1286 
   1287       /* Note that we don't expand macro invocations in the arguments
   1288 	 yet --- we let subst_args take care of that.  Parameters that
   1289 	 appear as operands of the stringifying operator "#" or the
   1290 	 splicing operator "##" don't get macro references expanded,
   1291 	 so we can't really tell whether it's appropriate to macro-
   1292 	 expand an argument until we see how it's being used.  */
   1293       growable_macro_buffer substituted (0);
   1294       substitute_args (&substituted, def, is_varargs, &va_arg_name,
   1295 		       argv, no_loop, scope);
   1296 
   1297       /* Now `substituted' is the macro's replacement list, with all
   1298 	 argument values substituted into it properly.	Re-scan it for
   1299 	 macro references, but don't expand invocations of this macro.
   1300 
   1301 	 We create a new buffer, `substituted_src', which points into
   1302 	 `substituted', and scan that.	We can't scan `substituted'
   1303 	 itself, since the tokenization process moves the buffer's
   1304 	 text pointer around, and we still need to be able to find
   1305 	 `substituted's original text buffer after scanning it so we
   1306 	 can free it.  */
   1307       shared_macro_buffer substituted_src (substituted.text, substituted.len);
   1308       scan (dest, &substituted_src, &new_no_loop, scope);
   1309 
   1310       return 1;
   1311     }
   1312   else
   1313     internal_error (_("bad macro definition kind"));
   1314 }
   1315 
   1316 
   1317 /* If the single token in SRC_FIRST followed by the tokens in SRC_REST
   1318    constitute a macro invocation not forbidden in NO_LOOP, append its
   1319    expansion to DEST and return non-zero.  Otherwise, return zero, and
   1320    leave DEST unchanged.
   1321 
   1322    SRC_FIRST must be a string built by get_token.  */
   1323 static int
   1324 maybe_expand (growable_macro_buffer *dest,
   1325 	      shared_macro_buffer *src_first,
   1326 	      shared_macro_buffer *src_rest,
   1327 	      struct macro_name_list *no_loop,
   1328 	      const macro_scope &scope)
   1329 {
   1330   /* Is this token an identifier?  */
   1331   if (src_first->is_identifier)
   1332     {
   1333       /* Make a null-terminated copy of it, since that's what our
   1334 	 lookup function expects.  */
   1335       std::string id (src_first->text, src_first->len);
   1336 
   1337       /* If we're currently re-scanning the result of expanding
   1338 	 this macro, don't expand it again.  */
   1339       if (! currently_rescanning (no_loop, id.c_str ()))
   1340 	{
   1341 	  /* Does this identifier have a macro definition in scope?  */
   1342 	  macro_definition *def = standard_macro_lookup (id.c_str (), scope);
   1343 
   1344 	  if (def && expand (id.c_str (), def, dest, src_rest, no_loop, scope))
   1345 	    return 1;
   1346 	}
   1347     }
   1348 
   1349   return 0;
   1350 }
   1351 
   1352 
   1353 /* Expand macro references in SRC, appending the results to DEST.
   1354    Assume we are re-scanning the result of expanding the macros named
   1355    in NO_LOOP, and don't try to re-expand references to them.  */
   1356 
   1357 static void
   1358 scan (growable_macro_buffer *dest,
   1359       shared_macro_buffer *src,
   1360       struct macro_name_list *no_loop,
   1361       const macro_scope &scope)
   1362 {
   1363 
   1364   for (;;)
   1365     {
   1366       shared_macro_buffer tok;
   1367       const char *original_src_start = src->text;
   1368 
   1369       /* Find the next token in SRC.  */
   1370       if (! get_token (&tok, src))
   1371 	break;
   1372 
   1373       /* Just for aesthetics.  If we skipped some whitespace, copy
   1374 	 that to DEST.  */
   1375       if (tok.text > original_src_start)
   1376 	{
   1377 	  dest->appendmem (original_src_start, tok.text - original_src_start);
   1378 	  dest->last_token = dest->len;
   1379 	}
   1380 
   1381       if (! maybe_expand (dest, &tok, src, no_loop, scope))
   1382 	/* We didn't end up expanding tok as a macro reference, so
   1383 	   simply append it to dest.  */
   1384 	append_tokens_without_splicing (dest, &tok);
   1385     }
   1386 
   1387   /* Just for aesthetics.  If there was any trailing whitespace in
   1388      src, copy it to dest.  */
   1389   if (src->len)
   1390     {
   1391       dest->appendmem (src->text, src->len);
   1392       dest->last_token = dest->len;
   1393     }
   1394 }
   1395 
   1396 
   1397 gdb::unique_xmalloc_ptr<char>
   1398 macro_expand (const char *source, const macro_scope &scope)
   1399 {
   1400   shared_macro_buffer src (source, strlen (source));
   1401 
   1402   growable_macro_buffer dest (0);
   1403   dest.last_token = 0;
   1404 
   1405   scan (&dest, &src, 0, scope);
   1406 
   1407   dest.appendc ('\0');
   1408 
   1409   return dest.release ();
   1410 }
   1411 
   1412 
   1413 gdb::unique_xmalloc_ptr<char>
   1414 macro_expand_once (const char *source, const macro_scope &scope)
   1415 {
   1416   error (_("Expand-once not implemented yet."));
   1417 }
   1418 
   1419 gdb::unique_xmalloc_ptr<char>
   1420 macro_expand_next (const char **lexptr, const macro_scope &scope)
   1421 {
   1422   shared_macro_buffer tok;
   1423 
   1424   /* Set up SRC to refer to the input text, pointed to by *lexptr.  */
   1425   shared_macro_buffer src (*lexptr, strlen (*lexptr));
   1426 
   1427   /* Set up DEST to receive the expansion, if there is one.  */
   1428   growable_macro_buffer dest (0);
   1429   dest.last_token = 0;
   1430 
   1431   /* Get the text's first preprocessing token.  */
   1432   if (! get_token (&tok, &src))
   1433     return nullptr;
   1434 
   1435   /* If it's a macro invocation, expand it.  */
   1436   if (maybe_expand (&dest, &tok, &src, 0, scope))
   1437     {
   1438       /* It was a macro invocation!  Package up the expansion as a
   1439 	 null-terminated string and return it.  Set *lexptr to the
   1440 	 start of the next token in the input.  */
   1441       dest.appendc ('\0');
   1442       *lexptr = src.text;
   1443       return dest.release ();
   1444     }
   1445   else
   1446     {
   1447       /* It wasn't a macro invocation.  */
   1448       return nullptr;
   1449     }
   1450 }
   1451