identifiers.c 3.91 KB
Newer Older
1
/* Hash tables for the CPP library.
2
   Copyright (C) 1986-2018 Free Software Foundation, Inc.
Per Bothner committed
3
   Written by Per Bothner, 1994.
Jeff Law committed
4
   Based on CCCP program by Paul Rubin, June 1986
Per Bothner committed
5 6 7 8
   Adapted to ANSI C, Richard Stallman, Jan 1987

This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
9
Free Software Foundation; either version 3, or (at your option) any
Per Bothner committed
10 11 12 13 14 15 16 17
later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
18 19
along with this program; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.
Per Bothner committed
20 21 22 23 24

 In other words, you are welcome to use, share and improve this program.
 You are forbidden to forbid anyone else to use, share and improve
 what you give them.   Help stamp out software-hoarding!  */

25 26
#include "config.h"
#include "system.h"
Per Bothner committed
27
#include "cpplib.h"
28
#include "internal.h"
29

30
static hashnode alloc_node (cpp_hash_table *);
Per Bothner committed
31

32 33
/* Return an identifier node for hashtable.c.  Used by cpplib except
   when integrated with the C front ends.  */
34
static hashnode
35
alloc_node (cpp_hash_table *table)
36
{
37
  cpp_hashnode *node;
38

39
  node = XOBNEW (&table->pfile->hash_ob, cpp_hashnode);
40
  memset (node, 0, sizeof (cpp_hashnode));
41
  return HT_NODE (node);
42 43
}

44 45
/* Set up the identifier hash table.  Use TABLE if non-null, otherwise
   create our own.  */
Zack Weinberg committed
46
void
47
_cpp_init_hashtable (cpp_reader *pfile, cpp_hash_table *table)
48
{
49 50
  struct spec_nodes *s;

51
  if (table == NULL)
52
    {
53 54
      pfile->our_hashtable = 1;
      table = ht_create (13);	/* 8K (=2^13) entries.  */
55
      table->alloc_node = alloc_node;
56

57
      obstack_specify_allocation (&pfile->hash_ob, 0, 0, xmalloc, free);
58
    }
Zack Weinberg committed
59

60 61
  table->pfile = pfile;
  pfile->hash_table = table;
62 63 64 65 66 67 68 69 70 71 72

  /* Now we can initialize things that use the hash table.  */
  _cpp_init_directives (pfile);
  _cpp_init_internal_pragmas (pfile);

  s = &pfile->spec_nodes;
  s->n_defined		= cpp_lookup (pfile, DSC("defined"));
  s->n_true		= cpp_lookup (pfile, DSC("true"));
  s->n_false		= cpp_lookup (pfile, DSC("false"));
  s->n__VA_ARGS__       = cpp_lookup (pfile, DSC("__VA_ARGS__"));
  s->n__VA_ARGS__->flags |= NODE_DIAGNOSTIC;
Tom Tromey committed
73 74
  s->n__VA_OPT__        = cpp_lookup (pfile, DSC("__VA_OPT__"));
  s->n__VA_OPT__->flags |= NODE_DIAGNOSTIC;
75 76
  s->n__has_include__   = cpp_lookup (pfile, DSC("__has_include__"));
  s->n__has_include_next__ = cpp_lookup (pfile, DSC("__has_include_next__"));
77 78
}

79 80
/* Tear down the identifier hash table.  */
void
81
_cpp_destroy_hashtable (cpp_reader *pfile)
82
{
83
  if (pfile->our_hashtable)
84
    {
85
      ht_destroy (pfile->hash_table);
86
      obstack_free (&pfile->hash_ob, 0);
87
    }
88 89
}

90 91
/* Returns the hash entry for the STR of length LEN, creating one
   if necessary.  */
Zack Weinberg committed
92
cpp_hashnode *
93
cpp_lookup (cpp_reader *pfile, const unsigned char *str, unsigned int len)
94
{
95 96
  /* ht_lookup cannot return NULL.  */
  return CPP_HASHNODE (ht_lookup (pfile->hash_table, str, len, HT_ALLOC));
97
}
98

99 100
/* Determine whether the str STR, of length LEN, is a defined macro.  */
int
101
cpp_defined (cpp_reader *pfile, const unsigned char *str, int len)
102
{
103
  cpp_hashnode *node;
104

105
  node = CPP_HASHNODE (ht_lookup (pfile->hash_table, str, len, HT_NO_INSERT));
106

107 108
  /* If it's of type NT_MACRO, it cannot be poisoned.  */
  return node && node->type == NT_MACRO;
109 110
}

111 112 113 114 115
/* We don't need a proxy since the hash table's identifier comes first
   in cpp_hashnode.  However, in case this is ever changed, we have a
   static assertion for it.  */
extern char proxy_assertion_broken[offsetof (struct cpp_hashnode, ident) == 0 ? 1 : -1];

116 117
/* For all nodes in the hashtable, callback CB with parameters PFILE,
   the node, and V.  */
118
void
119
cpp_forall_identifiers (cpp_reader *pfile, cpp_cb cb, void *v)
120
{
121
  ht_forall (pfile->hash_table, (ht_cb) cb, v);
122
}