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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [gdb/] [macrotab.c] - Diff between revs 827 and 840

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

Rev 827 Rev 840
/* C preprocessor macro tables for GDB.
/* C preprocessor macro tables for GDB.
   Copyright (C) 2002, 2007, 2008 Free Software Foundation, Inc.
   Copyright (C) 2002, 2007, 2008 Free Software Foundation, Inc.
   Contributed by Red Hat, Inc.
   Contributed by Red Hat, Inc.
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   This program is free software; you can redistribute it and/or modify
   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
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any 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.  If not, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#include "defs.h"
#include "defs.h"
#include "gdb_obstack.h"
#include "gdb_obstack.h"
#include "splay-tree.h"
#include "splay-tree.h"
#include "symtab.h"
#include "symtab.h"
#include "symfile.h"
#include "symfile.h"
#include "objfiles.h"
#include "objfiles.h"
#include "macrotab.h"
#include "macrotab.h"
#include "gdb_assert.h"
#include "gdb_assert.h"
#include "bcache.h"
#include "bcache.h"
#include "complaints.h"
#include "complaints.h"
 
 


/* The macro table structure.  */
/* The macro table structure.  */
 
 
struct macro_table
struct macro_table
{
{
  /* The obstack this table's data should be allocated in, or zero if
  /* The obstack this table's data should be allocated in, or zero if
     we should use xmalloc.  */
     we should use xmalloc.  */
  struct obstack *obstack;
  struct obstack *obstack;
 
 
  /* The bcache we should use to hold macro names, argument names, and
  /* The bcache we should use to hold macro names, argument names, and
     definitions, or zero if we should use xmalloc.  */
     definitions, or zero if we should use xmalloc.  */
  struct bcache *bcache;
  struct bcache *bcache;
 
 
  /* The main source file for this compilation unit --- the one whose
  /* The main source file for this compilation unit --- the one whose
     name was given to the compiler.  This is the root of the
     name was given to the compiler.  This is the root of the
     #inclusion tree; everything else is #included from here.  */
     #inclusion tree; everything else is #included from here.  */
  struct macro_source_file *main_source;
  struct macro_source_file *main_source;
 
 
  /* The table of macro definitions.  This is a splay tree (an ordered
  /* The table of macro definitions.  This is a splay tree (an ordered
     binary tree that stays balanced, effectively), sorted by macro
     binary tree that stays balanced, effectively), sorted by macro
     name.  Where a macro gets defined more than once (presumably with
     name.  Where a macro gets defined more than once (presumably with
     an #undefinition in between), we sort the definitions by the
     an #undefinition in between), we sort the definitions by the
     order they would appear in the preprocessor's output.  That is,
     order they would appear in the preprocessor's output.  That is,
     if `a.c' #includes `m.h' and then #includes `n.h', and both
     if `a.c' #includes `m.h' and then #includes `n.h', and both
     header files #define X (with an #undef somewhere in between),
     header files #define X (with an #undef somewhere in between),
     then the definition from `m.h' appears in our splay tree before
     then the definition from `m.h' appears in our splay tree before
     the one from `n.h'.
     the one from `n.h'.
 
 
     The splay tree's keys are `struct macro_key' pointers;
     The splay tree's keys are `struct macro_key' pointers;
     the values are `struct macro_definition' pointers.
     the values are `struct macro_definition' pointers.
 
 
     The splay tree, its nodes, and the keys and values are allocated
     The splay tree, its nodes, and the keys and values are allocated
     in obstack, if it's non-zero, or with xmalloc otherwise.  The
     in obstack, if it's non-zero, or with xmalloc otherwise.  The
     macro names, argument names, argument name arrays, and definition
     macro names, argument names, argument name arrays, and definition
     strings are all allocated in bcache, if non-zero, or with xmalloc
     strings are all allocated in bcache, if non-zero, or with xmalloc
     otherwise.  */
     otherwise.  */
  splay_tree definitions;
  splay_tree definitions;
};
};
 
 
 
 


/* Allocation and freeing functions.  */
/* Allocation and freeing functions.  */
 
 
/* Allocate SIZE bytes of memory appropriately for the macro table T.
/* Allocate SIZE bytes of memory appropriately for the macro table T.
   This just checks whether T has an obstack, or whether its pieces
   This just checks whether T has an obstack, or whether its pieces
   should be allocated with xmalloc.  */
   should be allocated with xmalloc.  */
static void *
static void *
macro_alloc (int size, struct macro_table *t)
macro_alloc (int size, struct macro_table *t)
{
{
  if (t->obstack)
  if (t->obstack)
    return obstack_alloc (t->obstack, size);
    return obstack_alloc (t->obstack, size);
  else
  else
    return xmalloc (size);
    return xmalloc (size);
}
}
 
 
 
 
static void
static void
macro_free (void *object, struct macro_table *t)
macro_free (void *object, struct macro_table *t)
{
{
  if (t->obstack)
  if (t->obstack)
    /* There are cases where we need to remove entries from a macro
    /* There are cases where we need to remove entries from a macro
       table, even when reading debugging information.  This should be
       table, even when reading debugging information.  This should be
       rare, and there's no easy way to free arbitrary data from an
       rare, and there's no easy way to free arbitrary data from an
       obstack, so we just leak it.  */
       obstack, so we just leak it.  */
    ;
    ;
  else
  else
    xfree (object);
    xfree (object);
}
}
 
 
 
 
/* If the macro table T has a bcache, then cache the LEN bytes at ADDR
/* If the macro table T has a bcache, then cache the LEN bytes at ADDR
   there, and return the cached copy.  Otherwise, just xmalloc a copy
   there, and return the cached copy.  Otherwise, just xmalloc a copy
   of the bytes, and return a pointer to that.  */
   of the bytes, and return a pointer to that.  */
static const void *
static const void *
macro_bcache (struct macro_table *t, const void *addr, int len)
macro_bcache (struct macro_table *t, const void *addr, int len)
{
{
  if (t->bcache)
  if (t->bcache)
    return bcache (addr, len, t->bcache);
    return bcache (addr, len, t->bcache);
  else
  else
    {
    {
      void *copy = xmalloc (len);
      void *copy = xmalloc (len);
      memcpy (copy, addr, len);
      memcpy (copy, addr, len);
      return copy;
      return copy;
    }
    }
}
}
 
 
 
 
/* If the macro table T has a bcache, cache the null-terminated string
/* If the macro table T has a bcache, cache the null-terminated string
   S there, and return a pointer to the cached copy.  Otherwise,
   S there, and return a pointer to the cached copy.  Otherwise,
   xmalloc a copy and return that.  */
   xmalloc a copy and return that.  */
static const char *
static const char *
macro_bcache_str (struct macro_table *t, const char *s)
macro_bcache_str (struct macro_table *t, const char *s)
{
{
  return (char *) macro_bcache (t, s, strlen (s) + 1);
  return (char *) macro_bcache (t, s, strlen (s) + 1);
}
}
 
 
 
 
/* Free a possibly bcached object OBJ.  That is, if the macro table T
/* Free a possibly bcached object OBJ.  That is, if the macro table T
   has a bcache, do nothing; otherwise, xfree OBJ.  */
   has a bcache, do nothing; otherwise, xfree OBJ.  */
static void
static void
macro_bcache_free (struct macro_table *t, void *obj)
macro_bcache_free (struct macro_table *t, void *obj)
{
{
  if (t->bcache)
  if (t->bcache)
    /* There are cases where we need to remove entries from a macro
    /* There are cases where we need to remove entries from a macro
       table, even when reading debugging information.  This should be
       table, even when reading debugging information.  This should be
       rare, and there's no easy way to free data from a bcache, so we
       rare, and there's no easy way to free data from a bcache, so we
       just leak it.  */
       just leak it.  */
    ;
    ;
  else
  else
    xfree (obj);
    xfree (obj);
}
}
 
 
 
 


/* Macro tree keys, w/their comparison, allocation, and freeing functions.  */
/* Macro tree keys, w/their comparison, allocation, and freeing functions.  */
 
 
/* A key in the splay tree.  */
/* A key in the splay tree.  */
struct macro_key
struct macro_key
{
{
  /* The table we're in.  We only need this in order to free it, since
  /* The table we're in.  We only need this in order to free it, since
     the splay tree library's key and value freeing functions require
     the splay tree library's key and value freeing functions require
     that the key or value contain all the information needed to free
     that the key or value contain all the information needed to free
     themselves.  */
     themselves.  */
  struct macro_table *table;
  struct macro_table *table;
 
 
  /* The name of the macro.  This is in the table's bcache, if it has
  /* The name of the macro.  This is in the table's bcache, if it has
     one. */
     one. */
  const char *name;
  const char *name;
 
 
  /* The source file and line number where the definition's scope
  /* The source file and line number where the definition's scope
     begins.  This is also the line of the definition itself.  */
     begins.  This is also the line of the definition itself.  */
  struct macro_source_file *start_file;
  struct macro_source_file *start_file;
  int start_line;
  int start_line;
 
 
  /* The first source file and line after the definition's scope.
  /* The first source file and line after the definition's scope.
     (That is, the scope does not include this endpoint.)  If end_file
     (That is, the scope does not include this endpoint.)  If end_file
     is zero, then the definition extends to the end of the
     is zero, then the definition extends to the end of the
     compilation unit.  */
     compilation unit.  */
  struct macro_source_file *end_file;
  struct macro_source_file *end_file;
  int end_line;
  int end_line;
};
};
 
 
 
 
/* Return the #inclusion depth of the source file FILE.  This is the
/* Return the #inclusion depth of the source file FILE.  This is the
   number of #inclusions it took to reach this file.  For the main
   number of #inclusions it took to reach this file.  For the main
   source file, the #inclusion depth is zero; for a file it #includes
   source file, the #inclusion depth is zero; for a file it #includes
   directly, the depth would be one; and so on.  */
   directly, the depth would be one; and so on.  */
static int
static int
inclusion_depth (struct macro_source_file *file)
inclusion_depth (struct macro_source_file *file)
{
{
  int depth;
  int depth;
 
 
  for (depth = 0; file->included_by; depth++)
  for (depth = 0; file->included_by; depth++)
    file = file->included_by;
    file = file->included_by;
 
 
  return depth;
  return depth;
}
}
 
 
 
 
/* Compare two source locations (from the same compilation unit).
/* Compare two source locations (from the same compilation unit).
   This is part of the comparison function for the tree of
   This is part of the comparison function for the tree of
   definitions.
   definitions.
 
 
   LINE1 and LINE2 are line numbers in the source files FILE1 and
   LINE1 and LINE2 are line numbers in the source files FILE1 and
   FILE2.  Return a value:
   FILE2.  Return a value:
   - less than zero if {LINE,FILE}1 comes before {LINE,FILE}2,
   - less than zero if {LINE,FILE}1 comes before {LINE,FILE}2,
   - greater than zero if {LINE,FILE}1 comes after {LINE,FILE}2, or
   - greater than zero if {LINE,FILE}1 comes after {LINE,FILE}2, or
   - zero if they are equal.
   - zero if they are equal.
 
 
   When the two locations are in different source files --- perhaps
   When the two locations are in different source files --- perhaps
   one is in a header, while another is in the main source file --- we
   one is in a header, while another is in the main source file --- we
   order them by where they would appear in the fully pre-processed
   order them by where they would appear in the fully pre-processed
   sources, where all the #included files have been substituted into
   sources, where all the #included files have been substituted into
   their places.  */
   their places.  */
static int
static int
compare_locations (struct macro_source_file *file1, int line1,
compare_locations (struct macro_source_file *file1, int line1,
                   struct macro_source_file *file2, int line2)
                   struct macro_source_file *file2, int line2)
{
{
  /* We want to treat positions in an #included file as coming *after*
  /* We want to treat positions in an #included file as coming *after*
     the line containing the #include, but *before* the line after the
     the line containing the #include, but *before* the line after the
     include.  As we walk up the #inclusion tree toward the main
     include.  As we walk up the #inclusion tree toward the main
     source file, we update fileX and lineX as we go; includedX
     source file, we update fileX and lineX as we go; includedX
     indicates whether the original position was from the #included
     indicates whether the original position was from the #included
     file.  */
     file.  */
  int included1 = 0;
  int included1 = 0;
  int included2 = 0;
  int included2 = 0;
 
 
  /* If a file is zero, that means "end of compilation unit."  Handle
  /* If a file is zero, that means "end of compilation unit."  Handle
     that specially.  */
     that specially.  */
  if (! file1)
  if (! file1)
    {
    {
      if (! file2)
      if (! file2)
        return 0;
        return 0;
      else
      else
        return 1;
        return 1;
    }
    }
  else if (! file2)
  else if (! file2)
    return -1;
    return -1;
 
 
  /* If the two files are not the same, find their common ancestor in
  /* If the two files are not the same, find their common ancestor in
     the #inclusion tree.  */
     the #inclusion tree.  */
  if (file1 != file2)
  if (file1 != file2)
    {
    {
      /* If one file is deeper than the other, walk up the #inclusion
      /* If one file is deeper than the other, walk up the #inclusion
         chain until the two files are at least at the same *depth*.
         chain until the two files are at least at the same *depth*.
         Then, walk up both files in synchrony until they're the same
         Then, walk up both files in synchrony until they're the same
         file.  That file is the common ancestor.  */
         file.  That file is the common ancestor.  */
      int depth1 = inclusion_depth (file1);
      int depth1 = inclusion_depth (file1);
      int depth2 = inclusion_depth (file2);
      int depth2 = inclusion_depth (file2);
 
 
      /* Only one of these while loops will ever execute in any given
      /* Only one of these while loops will ever execute in any given
         case.  */
         case.  */
      while (depth1 > depth2)
      while (depth1 > depth2)
        {
        {
          line1 = file1->included_at_line;
          line1 = file1->included_at_line;
          file1 = file1->included_by;
          file1 = file1->included_by;
          included1 = 1;
          included1 = 1;
          depth1--;
          depth1--;
        }
        }
      while (depth2 > depth1)
      while (depth2 > depth1)
        {
        {
          line2 = file2->included_at_line;
          line2 = file2->included_at_line;
          file2 = file2->included_by;
          file2 = file2->included_by;
          included2 = 1;
          included2 = 1;
          depth2--;
          depth2--;
        }
        }
 
 
      /* Now both file1 and file2 are at the same depth.  Walk toward
      /* Now both file1 and file2 are at the same depth.  Walk toward
         the root of the tree until we find where the branches meet.  */
         the root of the tree until we find where the branches meet.  */
      while (file1 != file2)
      while (file1 != file2)
        {
        {
          line1 = file1->included_at_line;
          line1 = file1->included_at_line;
          file1 = file1->included_by;
          file1 = file1->included_by;
          /* At this point, we know that the case the includedX flags
          /* At this point, we know that the case the includedX flags
             are trying to deal with won't come up, but we'll just
             are trying to deal with won't come up, but we'll just
             maintain them anyway.  */
             maintain them anyway.  */
          included1 = 1;
          included1 = 1;
 
 
          line2 = file2->included_at_line;
          line2 = file2->included_at_line;
          file2 = file2->included_by;
          file2 = file2->included_by;
          included2 = 1;
          included2 = 1;
 
 
          /* Sanity check.  If file1 and file2 are really from the
          /* Sanity check.  If file1 and file2 are really from the
             same compilation unit, then they should both be part of
             same compilation unit, then they should both be part of
             the same tree, and this shouldn't happen.  */
             the same tree, and this shouldn't happen.  */
          gdb_assert (file1 && file2);
          gdb_assert (file1 && file2);
        }
        }
    }
    }
 
 
  /* Now we've got two line numbers in the same file.  */
  /* Now we've got two line numbers in the same file.  */
  if (line1 == line2)
  if (line1 == line2)
    {
    {
      /* They can't both be from #included files.  Then we shouldn't
      /* They can't both be from #included files.  Then we shouldn't
         have walked up this far.  */
         have walked up this far.  */
      gdb_assert (! included1 || ! included2);
      gdb_assert (! included1 || ! included2);
 
 
      /* Any #included position comes after a non-#included position
      /* Any #included position comes after a non-#included position
         with the same line number in the #including file.  */
         with the same line number in the #including file.  */
      if (included1)
      if (included1)
        return 1;
        return 1;
      else if (included2)
      else if (included2)
        return -1;
        return -1;
      else
      else
        return 0;
        return 0;
    }
    }
  else
  else
    return line1 - line2;
    return line1 - line2;
}
}
 
 
 
 
/* Compare a macro key KEY against NAME, the source file FILE, and
/* Compare a macro key KEY against NAME, the source file FILE, and
   line number LINE.
   line number LINE.
 
 
   Sort definitions by name; for two definitions with the same name,
   Sort definitions by name; for two definitions with the same name,
   place the one whose definition comes earlier before the one whose
   place the one whose definition comes earlier before the one whose
   definition comes later.
   definition comes later.
 
 
   Return -1, 0, or 1 if key comes before, is identical to, or comes
   Return -1, 0, or 1 if key comes before, is identical to, or comes
   after NAME, FILE, and LINE.  */
   after NAME, FILE, and LINE.  */
static int
static int
key_compare (struct macro_key *key,
key_compare (struct macro_key *key,
             const char *name, struct macro_source_file *file, int line)
             const char *name, struct macro_source_file *file, int line)
{
{
  int names = strcmp (key->name, name);
  int names = strcmp (key->name, name);
  if (names)
  if (names)
    return names;
    return names;
 
 
  return compare_locations (key->start_file, key->start_line,
  return compare_locations (key->start_file, key->start_line,
                            file, line);
                            file, line);
}
}
 
 
 
 
/* The macro tree comparison function, typed for the splay tree
/* The macro tree comparison function, typed for the splay tree
   library's happiness.  */
   library's happiness.  */
static int
static int
macro_tree_compare (splay_tree_key untyped_key1,
macro_tree_compare (splay_tree_key untyped_key1,
                    splay_tree_key untyped_key2)
                    splay_tree_key untyped_key2)
{
{
  struct macro_key *key1 = (struct macro_key *) untyped_key1;
  struct macro_key *key1 = (struct macro_key *) untyped_key1;
  struct macro_key *key2 = (struct macro_key *) untyped_key2;
  struct macro_key *key2 = (struct macro_key *) untyped_key2;
 
 
  return key_compare (key1, key2->name, key2->start_file, key2->start_line);
  return key_compare (key1, key2->name, key2->start_file, key2->start_line);
}
}
 
 
 
 
/* Construct a new macro key node for a macro in table T whose name is
/* Construct a new macro key node for a macro in table T whose name is
   NAME, and whose scope starts at LINE in FILE; register the name in
   NAME, and whose scope starts at LINE in FILE; register the name in
   the bcache.  */
   the bcache.  */
static struct macro_key *
static struct macro_key *
new_macro_key (struct macro_table *t,
new_macro_key (struct macro_table *t,
               const char *name,
               const char *name,
               struct macro_source_file *file,
               struct macro_source_file *file,
               int line)
               int line)
{
{
  struct macro_key *k = macro_alloc (sizeof (*k), t);
  struct macro_key *k = macro_alloc (sizeof (*k), t);
 
 
  memset (k, 0, sizeof (*k));
  memset (k, 0, sizeof (*k));
  k->table = t;
  k->table = t;
  k->name = macro_bcache_str (t, name);
  k->name = macro_bcache_str (t, name);
  k->start_file = file;
  k->start_file = file;
  k->start_line = line;
  k->start_line = line;
  k->end_file = 0;
  k->end_file = 0;
 
 
  return k;
  return k;
}
}
 
 
 
 
static void
static void
macro_tree_delete_key (void *untyped_key)
macro_tree_delete_key (void *untyped_key)
{
{
  struct macro_key *key = (struct macro_key *) untyped_key;
  struct macro_key *key = (struct macro_key *) untyped_key;
 
 
  macro_bcache_free (key->table, (char *) key->name);
  macro_bcache_free (key->table, (char *) key->name);
  macro_free (key, key->table);
  macro_free (key, key->table);
}
}
 
 
 
 


/* Building and querying the tree of #included files.  */
/* Building and querying the tree of #included files.  */
 
 
 
 
/* Allocate and initialize a new source file structure.  */
/* Allocate and initialize a new source file structure.  */
static struct macro_source_file *
static struct macro_source_file *
new_source_file (struct macro_table *t,
new_source_file (struct macro_table *t,
                 const char *filename)
                 const char *filename)
{
{
  /* Get space for the source file structure itself.  */
  /* Get space for the source file structure itself.  */
  struct macro_source_file *f = macro_alloc (sizeof (*f), t);
  struct macro_source_file *f = macro_alloc (sizeof (*f), t);
 
 
  memset (f, 0, sizeof (*f));
  memset (f, 0, sizeof (*f));
  f->table = t;
  f->table = t;
  f->filename = macro_bcache_str (t, filename);
  f->filename = macro_bcache_str (t, filename);
  f->includes = 0;
  f->includes = 0;
 
 
  return f;
  return f;
}
}
 
 
 
 
/* Free a source file, and all the source files it #included.  */
/* Free a source file, and all the source files it #included.  */
static void
static void
free_macro_source_file (struct macro_source_file *src)
free_macro_source_file (struct macro_source_file *src)
{
{
  struct macro_source_file *child, *next_child;
  struct macro_source_file *child, *next_child;
 
 
  /* Free this file's children.  */
  /* Free this file's children.  */
  for (child = src->includes; child; child = next_child)
  for (child = src->includes; child; child = next_child)
    {
    {
      next_child = child->next_included;
      next_child = child->next_included;
      free_macro_source_file (child);
      free_macro_source_file (child);
    }
    }
 
 
  macro_bcache_free (src->table, (char *) src->filename);
  macro_bcache_free (src->table, (char *) src->filename);
  macro_free (src, src->table);
  macro_free (src, src->table);
}
}
 
 
 
 
struct macro_source_file *
struct macro_source_file *
macro_set_main (struct macro_table *t,
macro_set_main (struct macro_table *t,
                const char *filename)
                const char *filename)
{
{
  /* You can't change a table's main source file.  What would that do
  /* You can't change a table's main source file.  What would that do
     to the tree?  */
     to the tree?  */
  gdb_assert (! t->main_source);
  gdb_assert (! t->main_source);
 
 
  t->main_source = new_source_file (t, filename);
  t->main_source = new_source_file (t, filename);
 
 
  return t->main_source;
  return t->main_source;
}
}
 
 
 
 
struct macro_source_file *
struct macro_source_file *
macro_main (struct macro_table *t)
macro_main (struct macro_table *t)
{
{
  gdb_assert (t->main_source);
  gdb_assert (t->main_source);
 
 
  return t->main_source;
  return t->main_source;
}
}
 
 
 
 
struct macro_source_file *
struct macro_source_file *
macro_include (struct macro_source_file *source,
macro_include (struct macro_source_file *source,
               int line,
               int line,
               const char *included)
               const char *included)
{
{
  struct macro_source_file *new;
  struct macro_source_file *new;
  struct macro_source_file **link;
  struct macro_source_file **link;
 
 
  /* Find the right position in SOURCE's `includes' list for the new
  /* Find the right position in SOURCE's `includes' list for the new
     file.  Skip inclusions at earlier lines, until we find one at the
     file.  Skip inclusions at earlier lines, until we find one at the
     same line or later --- or until the end of the list.  */
     same line or later --- or until the end of the list.  */
  for (link = &source->includes;
  for (link = &source->includes;
       *link && (*link)->included_at_line < line;
       *link && (*link)->included_at_line < line;
       link = &(*link)->next_included)
       link = &(*link)->next_included)
    ;
    ;
 
 
  /* Did we find another file already #included at the same line as
  /* Did we find another file already #included at the same line as
     the new one?  */
     the new one?  */
  if (*link && line == (*link)->included_at_line)
  if (*link && line == (*link)->included_at_line)
    {
    {
      /* This means the compiler is emitting bogus debug info.  (GCC
      /* This means the compiler is emitting bogus debug info.  (GCC
         circa March 2002 did this.)  It also means that the splay
         circa March 2002 did this.)  It also means that the splay
         tree ordering function, macro_tree_compare, will abort,
         tree ordering function, macro_tree_compare, will abort,
         because it can't tell which #inclusion came first.  But GDB
         because it can't tell which #inclusion came first.  But GDB
         should tolerate bad debug info.  So:
         should tolerate bad debug info.  So:
 
 
         First, squawk.  */
         First, squawk.  */
      complaint (&symfile_complaints,
      complaint (&symfile_complaints,
                 _("both `%s' and `%s' allegedly #included at %s:%d"), included,
                 _("both `%s' and `%s' allegedly #included at %s:%d"), included,
                 (*link)->filename, source->filename, line);
                 (*link)->filename, source->filename, line);
 
 
      /* Now, choose a new, unoccupied line number for this
      /* Now, choose a new, unoccupied line number for this
         #inclusion, after the alleged #inclusion line.  */
         #inclusion, after the alleged #inclusion line.  */
      while (*link && line == (*link)->included_at_line)
      while (*link && line == (*link)->included_at_line)
        {
        {
          /* This line number is taken, so try the next line.  */
          /* This line number is taken, so try the next line.  */
          line++;
          line++;
          link = &(*link)->next_included;
          link = &(*link)->next_included;
        }
        }
    }
    }
 
 
  /* At this point, we know that LINE is an unused line number, and
  /* At this point, we know that LINE is an unused line number, and
     *LINK points to the entry an #inclusion at that line should
     *LINK points to the entry an #inclusion at that line should
     precede.  */
     precede.  */
  new = new_source_file (source->table, included);
  new = new_source_file (source->table, included);
  new->included_by = source;
  new->included_by = source;
  new->included_at_line = line;
  new->included_at_line = line;
  new->next_included = *link;
  new->next_included = *link;
  *link = new;
  *link = new;
 
 
  return new;
  return new;
}
}
 
 
 
 
struct macro_source_file *
struct macro_source_file *
macro_lookup_inclusion (struct macro_source_file *source, const char *name)
macro_lookup_inclusion (struct macro_source_file *source, const char *name)
{
{
  /* Is SOURCE itself named NAME?  */
  /* Is SOURCE itself named NAME?  */
  if (strcmp (name, source->filename) == 0)
  if (strcmp (name, source->filename) == 0)
    return source;
    return source;
 
 
  /* The filename in the source structure is probably a full path, but
  /* The filename in the source structure is probably a full path, but
     NAME could be just the final component of the name.  */
     NAME could be just the final component of the name.  */
  {
  {
    int name_len = strlen (name);
    int name_len = strlen (name);
    int src_name_len = strlen (source->filename);
    int src_name_len = strlen (source->filename);
 
 
    /* We do mean < here, and not <=; if the lengths are the same,
    /* We do mean < here, and not <=; if the lengths are the same,
       then the strcmp above should have triggered, and we need to
       then the strcmp above should have triggered, and we need to
       check for a slash here.  */
       check for a slash here.  */
    if (name_len < src_name_len
    if (name_len < src_name_len
        && source->filename[src_name_len - name_len - 1] == '/'
        && source->filename[src_name_len - name_len - 1] == '/'
        && strcmp (name, source->filename + src_name_len - name_len) == 0)
        && strcmp (name, source->filename + src_name_len - name_len) == 0)
      return source;
      return source;
  }
  }
 
 
  /* It's not us.  Try all our children, and return the lowest.  */
  /* It's not us.  Try all our children, and return the lowest.  */
  {
  {
    struct macro_source_file *child;
    struct macro_source_file *child;
    struct macro_source_file *best = NULL;
    struct macro_source_file *best = NULL;
    int best_depth = 0;
    int best_depth = 0;
 
 
    for (child = source->includes; child; child = child->next_included)
    for (child = source->includes; child; child = child->next_included)
      {
      {
        struct macro_source_file *result
        struct macro_source_file *result
          = macro_lookup_inclusion (child, name);
          = macro_lookup_inclusion (child, name);
 
 
        if (result)
        if (result)
          {
          {
            int result_depth = inclusion_depth (result);
            int result_depth = inclusion_depth (result);
 
 
            if (! best || result_depth < best_depth)
            if (! best || result_depth < best_depth)
              {
              {
                best = result;
                best = result;
                best_depth = result_depth;
                best_depth = result_depth;
              }
              }
          }
          }
      }
      }
 
 
    return best;
    return best;
  }
  }
}
}
 
 
 
 


/* Registering and looking up macro definitions.  */
/* Registering and looking up macro definitions.  */
 
 
 
 
/* Construct a definition for a macro in table T.  Cache all strings,
/* Construct a definition for a macro in table T.  Cache all strings,
   and the macro_definition structure itself, in T's bcache.  */
   and the macro_definition structure itself, in T's bcache.  */
static struct macro_definition *
static struct macro_definition *
new_macro_definition (struct macro_table *t,
new_macro_definition (struct macro_table *t,
                      enum macro_kind kind,
                      enum macro_kind kind,
                      int argc, const char **argv,
                      int argc, const char **argv,
                      const char *replacement)
                      const char *replacement)
{
{
  struct macro_definition *d = macro_alloc (sizeof (*d), t);
  struct macro_definition *d = macro_alloc (sizeof (*d), t);
 
 
  memset (d, 0, sizeof (*d));
  memset (d, 0, sizeof (*d));
  d->table = t;
  d->table = t;
  d->kind = kind;
  d->kind = kind;
  d->replacement = macro_bcache_str (t, replacement);
  d->replacement = macro_bcache_str (t, replacement);
 
 
  if (kind == macro_function_like)
  if (kind == macro_function_like)
    {
    {
      int i;
      int i;
      const char **cached_argv;
      const char **cached_argv;
      int cached_argv_size = argc * sizeof (*cached_argv);
      int cached_argv_size = argc * sizeof (*cached_argv);
 
 
      /* Bcache all the arguments.  */
      /* Bcache all the arguments.  */
      cached_argv = alloca (cached_argv_size);
      cached_argv = alloca (cached_argv_size);
      for (i = 0; i < argc; i++)
      for (i = 0; i < argc; i++)
        cached_argv[i] = macro_bcache_str (t, argv[i]);
        cached_argv[i] = macro_bcache_str (t, argv[i]);
 
 
      /* Now bcache the array of argument pointers itself.  */
      /* Now bcache the array of argument pointers itself.  */
      d->argv = macro_bcache (t, cached_argv, cached_argv_size);
      d->argv = macro_bcache (t, cached_argv, cached_argv_size);
      d->argc = argc;
      d->argc = argc;
    }
    }
 
 
  /* We don't bcache the entire definition structure because it's got
  /* We don't bcache the entire definition structure because it's got
     a pointer to the macro table in it; since each compilation unit
     a pointer to the macro table in it; since each compilation unit
     has its own macro table, you'd only get bcache hits for identical
     has its own macro table, you'd only get bcache hits for identical
     definitions within a compilation unit, which seems unlikely.
     definitions within a compilation unit, which seems unlikely.
 
 
     "So, why do macro definitions have pointers to their macro tables
     "So, why do macro definitions have pointers to their macro tables
     at all?"  Well, when the splay tree library wants to free a
     at all?"  Well, when the splay tree library wants to free a
     node's value, it calls the value freeing function with nothing
     node's value, it calls the value freeing function with nothing
     but the value itself.  It makes the (apparently reasonable)
     but the value itself.  It makes the (apparently reasonable)
     assumption that the value carries enough information to free
     assumption that the value carries enough information to free
     itself.  But not all macro tables have bcaches, so not all macro
     itself.  But not all macro tables have bcaches, so not all macro
     definitions would be bcached.  There's no way to tell whether a
     definitions would be bcached.  There's no way to tell whether a
     given definition is bcached without knowing which table the
     given definition is bcached without knowing which table the
     definition belongs to.  ...  blah.  The thing's only sixteen
     definition belongs to.  ...  blah.  The thing's only sixteen
     bytes anyway, and we can still bcache the name, args, and
     bytes anyway, and we can still bcache the name, args, and
     definition, so we just don't bother bcaching the definition
     definition, so we just don't bother bcaching the definition
     structure itself.  */
     structure itself.  */
  return d;
  return d;
}
}
 
 
 
 
/* Free a macro definition.  */
/* Free a macro definition.  */
static void
static void
macro_tree_delete_value (void *untyped_definition)
macro_tree_delete_value (void *untyped_definition)
{
{
  struct macro_definition *d = (struct macro_definition *) untyped_definition;
  struct macro_definition *d = (struct macro_definition *) untyped_definition;
  struct macro_table *t = d->table;
  struct macro_table *t = d->table;
 
 
  if (d->kind == macro_function_like)
  if (d->kind == macro_function_like)
    {
    {
      int i;
      int i;
 
 
      for (i = 0; i < d->argc; i++)
      for (i = 0; i < d->argc; i++)
        macro_bcache_free (t, (char *) d->argv[i]);
        macro_bcache_free (t, (char *) d->argv[i]);
      macro_bcache_free (t, (char **) d->argv);
      macro_bcache_free (t, (char **) d->argv);
    }
    }
 
 
  macro_bcache_free (t, (char *) d->replacement);
  macro_bcache_free (t, (char *) d->replacement);
  macro_free (d, t);
  macro_free (d, t);
}
}
 
 
 
 
/* Find the splay tree node for the definition of NAME at LINE in
/* Find the splay tree node for the definition of NAME at LINE in
   SOURCE, or zero if there is none.  */
   SOURCE, or zero if there is none.  */
static splay_tree_node
static splay_tree_node
find_definition (const char *name,
find_definition (const char *name,
                 struct macro_source_file *file,
                 struct macro_source_file *file,
                 int line)
                 int line)
{
{
  struct macro_table *t = file->table;
  struct macro_table *t = file->table;
  splay_tree_node n;
  splay_tree_node n;
 
 
  /* Construct a macro_key object, just for the query.  */
  /* Construct a macro_key object, just for the query.  */
  struct macro_key query;
  struct macro_key query;
 
 
  query.name = name;
  query.name = name;
  query.start_file = file;
  query.start_file = file;
  query.start_line = line;
  query.start_line = line;
  query.end_file = NULL;
  query.end_file = NULL;
 
 
  n = splay_tree_lookup (t->definitions, (splay_tree_key) &query);
  n = splay_tree_lookup (t->definitions, (splay_tree_key) &query);
  if (! n)
  if (! n)
    {
    {
      /* It's okay for us to do two queries like this: the real work
      /* It's okay for us to do two queries like this: the real work
         of the searching is done when we splay, and splaying the tree
         of the searching is done when we splay, and splaying the tree
         a second time at the same key is a constant time operation.
         a second time at the same key is a constant time operation.
         If this still bugs you, you could always just extend the
         If this still bugs you, you could always just extend the
         splay tree library with a predecessor-or-equal operation, and
         splay tree library with a predecessor-or-equal operation, and
         use that.  */
         use that.  */
      splay_tree_node pred = splay_tree_predecessor (t->definitions,
      splay_tree_node pred = splay_tree_predecessor (t->definitions,
                                                     (splay_tree_key) &query);
                                                     (splay_tree_key) &query);
 
 
      if (pred)
      if (pred)
        {
        {
          /* Make sure this predecessor actually has the right name.
          /* Make sure this predecessor actually has the right name.
             We just want to search within a given name's definitions.  */
             We just want to search within a given name's definitions.  */
          struct macro_key *found = (struct macro_key *) pred->key;
          struct macro_key *found = (struct macro_key *) pred->key;
 
 
          if (strcmp (found->name, name) == 0)
          if (strcmp (found->name, name) == 0)
            n = pred;
            n = pred;
        }
        }
    }
    }
 
 
  if (n)
  if (n)
    {
    {
      struct macro_key *found = (struct macro_key *) n->key;
      struct macro_key *found = (struct macro_key *) n->key;
 
 
      /* Okay, so this definition has the right name, and its scope
      /* Okay, so this definition has the right name, and its scope
         begins before the given source location.  But does its scope
         begins before the given source location.  But does its scope
         end after the given source location?  */
         end after the given source location?  */
      if (compare_locations (file, line, found->end_file, found->end_line) < 0)
      if (compare_locations (file, line, found->end_file, found->end_line) < 0)
        return n;
        return n;
      else
      else
        return 0;
        return 0;
    }
    }
  else
  else
    return 0;
    return 0;
}
}
 
 
 
 
/* If NAME already has a definition in scope at LINE in SOURCE, return
/* If NAME already has a definition in scope at LINE in SOURCE, return
   the key.  If the old definition is different from the definition
   the key.  If the old definition is different from the definition
   given by KIND, ARGC, ARGV, and REPLACEMENT, complain, too.
   given by KIND, ARGC, ARGV, and REPLACEMENT, complain, too.
   Otherwise, return zero.  (ARGC and ARGV are meaningless unless KIND
   Otherwise, return zero.  (ARGC and ARGV are meaningless unless KIND
   is `macro_function_like'.)  */
   is `macro_function_like'.)  */
static struct macro_key *
static struct macro_key *
check_for_redefinition (struct macro_source_file *source, int line,
check_for_redefinition (struct macro_source_file *source, int line,
                        const char *name, enum macro_kind kind,
                        const char *name, enum macro_kind kind,
                        int argc, const char **argv,
                        int argc, const char **argv,
                        const char *replacement)
                        const char *replacement)
{
{
  splay_tree_node n = find_definition (name, source, line);
  splay_tree_node n = find_definition (name, source, line);
 
 
  if (n)
  if (n)
    {
    {
      struct macro_key *found_key = (struct macro_key *) n->key;
      struct macro_key *found_key = (struct macro_key *) n->key;
      struct macro_definition *found_def
      struct macro_definition *found_def
        = (struct macro_definition *) n->value;
        = (struct macro_definition *) n->value;
      int same = 1;
      int same = 1;
 
 
      /* Is this definition the same as the existing one?
      /* Is this definition the same as the existing one?
         According to the standard, this comparison needs to be done
         According to the standard, this comparison needs to be done
         on lists of tokens, not byte-by-byte, as we do here.  But
         on lists of tokens, not byte-by-byte, as we do here.  But
         that's too hard for us at the moment, and comparing
         that's too hard for us at the moment, and comparing
         byte-by-byte will only yield false negatives (i.e., extra
         byte-by-byte will only yield false negatives (i.e., extra
         warning messages), not false positives (i.e., unnoticed
         warning messages), not false positives (i.e., unnoticed
         definition changes).  */
         definition changes).  */
      if (kind != found_def->kind)
      if (kind != found_def->kind)
        same = 0;
        same = 0;
      else if (strcmp (replacement, found_def->replacement))
      else if (strcmp (replacement, found_def->replacement))
        same = 0;
        same = 0;
      else if (kind == macro_function_like)
      else if (kind == macro_function_like)
        {
        {
          if (argc != found_def->argc)
          if (argc != found_def->argc)
            same = 0;
            same = 0;
          else
          else
            {
            {
              int i;
              int i;
 
 
              for (i = 0; i < argc; i++)
              for (i = 0; i < argc; i++)
                if (strcmp (argv[i], found_def->argv[i]))
                if (strcmp (argv[i], found_def->argv[i]))
                  same = 0;
                  same = 0;
            }
            }
        }
        }
 
 
      if (! same)
      if (! same)
        {
        {
          complaint (&symfile_complaints,
          complaint (&symfile_complaints,
                     _("macro `%s' redefined at %s:%d; original definition at %s:%d"),
                     _("macro `%s' redefined at %s:%d; original definition at %s:%d"),
                     name, source->filename, line,
                     name, source->filename, line,
                     found_key->start_file->filename, found_key->start_line);
                     found_key->start_file->filename, found_key->start_line);
        }
        }
 
 
      return found_key;
      return found_key;
    }
    }
  else
  else
    return 0;
    return 0;
}
}
 
 
 
 
void
void
macro_define_object (struct macro_source_file *source, int line,
macro_define_object (struct macro_source_file *source, int line,
                     const char *name, const char *replacement)
                     const char *name, const char *replacement)
{
{
  struct macro_table *t = source->table;
  struct macro_table *t = source->table;
  struct macro_key *k;
  struct macro_key *k;
  struct macro_definition *d;
  struct macro_definition *d;
 
 
  k = check_for_redefinition (source, line,
  k = check_for_redefinition (source, line,
                              name, macro_object_like,
                              name, macro_object_like,
                              0, 0,
                              0, 0,
                              replacement);
                              replacement);
 
 
  /* If we're redefining a symbol, and the existing key would be
  /* If we're redefining a symbol, and the existing key would be
     identical to our new key, then the splay_tree_insert function
     identical to our new key, then the splay_tree_insert function
     will try to delete the old definition.  When the definition is
     will try to delete the old definition.  When the definition is
     living on an obstack, this isn't a happy thing.
     living on an obstack, this isn't a happy thing.
 
 
     Since this only happens in the presence of questionable debug
     Since this only happens in the presence of questionable debug
     info, we just ignore all definitions after the first.  The only
     info, we just ignore all definitions after the first.  The only
     case I know of where this arises is in GCC's output for
     case I know of where this arises is in GCC's output for
     predefined macros, and all the definitions are the same in that
     predefined macros, and all the definitions are the same in that
     case.  */
     case.  */
  if (k && ! key_compare (k, name, source, line))
  if (k && ! key_compare (k, name, source, line))
    return;
    return;
 
 
  k = new_macro_key (t, name, source, line);
  k = new_macro_key (t, name, source, line);
  d = new_macro_definition (t, macro_object_like, 0, 0, replacement);
  d = new_macro_definition (t, macro_object_like, 0, 0, replacement);
  splay_tree_insert (t->definitions, (splay_tree_key) k, (splay_tree_value) d);
  splay_tree_insert (t->definitions, (splay_tree_key) k, (splay_tree_value) d);
}
}
 
 
 
 
void
void
macro_define_function (struct macro_source_file *source, int line,
macro_define_function (struct macro_source_file *source, int line,
                       const char *name, int argc, const char **argv,
                       const char *name, int argc, const char **argv,
                       const char *replacement)
                       const char *replacement)
{
{
  struct macro_table *t = source->table;
  struct macro_table *t = source->table;
  struct macro_key *k;
  struct macro_key *k;
  struct macro_definition *d;
  struct macro_definition *d;
 
 
  k = check_for_redefinition (source, line,
  k = check_for_redefinition (source, line,
                              name, macro_function_like,
                              name, macro_function_like,
                              argc, argv,
                              argc, argv,
                              replacement);
                              replacement);
 
 
  /* See comments about duplicate keys in macro_define_object.  */
  /* See comments about duplicate keys in macro_define_object.  */
  if (k && ! key_compare (k, name, source, line))
  if (k && ! key_compare (k, name, source, line))
    return;
    return;
 
 
  /* We should also check here that all the argument names in ARGV are
  /* We should also check here that all the argument names in ARGV are
     distinct.  */
     distinct.  */
 
 
  k = new_macro_key (t, name, source, line);
  k = new_macro_key (t, name, source, line);
  d = new_macro_definition (t, macro_function_like, argc, argv, replacement);
  d = new_macro_definition (t, macro_function_like, argc, argv, replacement);
  splay_tree_insert (t->definitions, (splay_tree_key) k, (splay_tree_value) d);
  splay_tree_insert (t->definitions, (splay_tree_key) k, (splay_tree_value) d);
}
}
 
 
 
 
void
void
macro_undef (struct macro_source_file *source, int line,
macro_undef (struct macro_source_file *source, int line,
             const char *name)
             const char *name)
{
{
  splay_tree_node n = find_definition (name, source, line);
  splay_tree_node n = find_definition (name, source, line);
 
 
  if (n)
  if (n)
    {
    {
      struct macro_key *key = (struct macro_key *) n->key;
      struct macro_key *key = (struct macro_key *) n->key;
 
 
      /* If we're removing a definition at exactly the same point that
      /* If we're removing a definition at exactly the same point that
         we defined it, then just delete the entry altogether.  GCC
         we defined it, then just delete the entry altogether.  GCC
         4.1.2 will generate DWARF that says to do this if you pass it
         4.1.2 will generate DWARF that says to do this if you pass it
         arguments like '-DFOO -UFOO -DFOO=2'.  */
         arguments like '-DFOO -UFOO -DFOO=2'.  */
      if (source == key->start_file
      if (source == key->start_file
          && line == key->start_line)
          && line == key->start_line)
        splay_tree_remove (source->table->definitions, n->key);
        splay_tree_remove (source->table->definitions, n->key);
 
 
      else
      else
        {
        {
          /* This function is the only place a macro's end-of-scope
          /* This function is the only place a macro's end-of-scope
             location gets set to anything other than "end of the
             location gets set to anything other than "end of the
             compilation unit" (i.e., end_file is zero).  So if this
             compilation unit" (i.e., end_file is zero).  So if this
             macro already has its end-of-scope set, then we're
             macro already has its end-of-scope set, then we're
             probably seeing a second #undefinition for the same
             probably seeing a second #undefinition for the same
             #definition.  */
             #definition.  */
          if (key->end_file)
          if (key->end_file)
            {
            {
              complaint (&symfile_complaints,
              complaint (&symfile_complaints,
                         _("macro '%s' is #undefined twice,"
                         _("macro '%s' is #undefined twice,"
                           " at %s:%d and %s:%d"),
                           " at %s:%d and %s:%d"),
                         name,
                         name,
                         source->filename, line,
                         source->filename, line,
                         key->end_file->filename, key->end_line);
                         key->end_file->filename, key->end_line);
            }
            }
 
 
          /* Whether or not we've seen a prior #undefinition, wipe out
          /* Whether or not we've seen a prior #undefinition, wipe out
             the old ending point, and make this the ending point.  */
             the old ending point, and make this the ending point.  */
          key->end_file = source;
          key->end_file = source;
          key->end_line = line;
          key->end_line = line;
        }
        }
    }
    }
  else
  else
    {
    {
      /* According to the ISO C standard, an #undef for a symbol that
      /* According to the ISO C standard, an #undef for a symbol that
         has no macro definition in scope is ignored.  So we should
         has no macro definition in scope is ignored.  So we should
         ignore it too.  */
         ignore it too.  */
#if 0
#if 0
      complaint (&symfile_complaints,
      complaint (&symfile_complaints,
                 _("no definition for macro `%s' in scope to #undef at %s:%d"),
                 _("no definition for macro `%s' in scope to #undef at %s:%d"),
                 name, source->filename, line);
                 name, source->filename, line);
#endif
#endif
    }
    }
}
}
 
 
 
 
struct macro_definition *
struct macro_definition *
macro_lookup_definition (struct macro_source_file *source,
macro_lookup_definition (struct macro_source_file *source,
                         int line, const char *name)
                         int line, const char *name)
{
{
  splay_tree_node n = find_definition (name, source, line);
  splay_tree_node n = find_definition (name, source, line);
 
 
  if (n)
  if (n)
    return (struct macro_definition *) n->value;
    return (struct macro_definition *) n->value;
  else
  else
    return 0;
    return 0;
}
}
 
 
 
 
struct macro_source_file *
struct macro_source_file *
macro_definition_location (struct macro_source_file *source,
macro_definition_location (struct macro_source_file *source,
                           int line,
                           int line,
                           const char *name,
                           const char *name,
                           int *definition_line)
                           int *definition_line)
{
{
  splay_tree_node n = find_definition (name, source, line);
  splay_tree_node n = find_definition (name, source, line);
 
 
  if (n)
  if (n)
    {
    {
      struct macro_key *key = (struct macro_key *) n->key;
      struct macro_key *key = (struct macro_key *) n->key;
      *definition_line = key->start_line;
      *definition_line = key->start_line;
      return key->start_file;
      return key->start_file;
    }
    }
  else
  else
    return 0;
    return 0;
}
}
 
 
 
 


/* Creating and freeing macro tables.  */
/* Creating and freeing macro tables.  */
 
 
 
 
struct macro_table *
struct macro_table *
new_macro_table (struct obstack *obstack,
new_macro_table (struct obstack *obstack,
                 struct bcache *b)
                 struct bcache *b)
{
{
  struct macro_table *t;
  struct macro_table *t;
 
 
  /* First, get storage for the `struct macro_table' itself.  */
  /* First, get storage for the `struct macro_table' itself.  */
  if (obstack)
  if (obstack)
    t = obstack_alloc (obstack, sizeof (*t));
    t = obstack_alloc (obstack, sizeof (*t));
  else
  else
    t = xmalloc (sizeof (*t));
    t = xmalloc (sizeof (*t));
 
 
  memset (t, 0, sizeof (*t));
  memset (t, 0, sizeof (*t));
  t->obstack = obstack;
  t->obstack = obstack;
  t->bcache = b;
  t->bcache = b;
  t->main_source = NULL;
  t->main_source = NULL;
  t->definitions = (splay_tree_new_with_allocator
  t->definitions = (splay_tree_new_with_allocator
                    (macro_tree_compare,
                    (macro_tree_compare,
                     ((splay_tree_delete_key_fn) macro_tree_delete_key),
                     ((splay_tree_delete_key_fn) macro_tree_delete_key),
                     ((splay_tree_delete_value_fn) macro_tree_delete_value),
                     ((splay_tree_delete_value_fn) macro_tree_delete_value),
                     ((splay_tree_allocate_fn) macro_alloc),
                     ((splay_tree_allocate_fn) macro_alloc),
                     ((splay_tree_deallocate_fn) macro_free),
                     ((splay_tree_deallocate_fn) macro_free),
                     t));
                     t));
 
 
  return t;
  return t;
}
}
 
 
 
 
void
void
free_macro_table (struct macro_table *table)
free_macro_table (struct macro_table *table)
{
{
  /* Free the source file tree.  */
  /* Free the source file tree.  */
  free_macro_source_file (table->main_source);
  free_macro_source_file (table->main_source);
 
 
  /* Free the table of macro definitions.  */
  /* Free the table of macro definitions.  */
  splay_tree_delete (table->definitions);
  splay_tree_delete (table->definitions);
}
}
 
 

powered by: WebSVN 2.1.0

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