FSF GCC merge 02/23/03
[official-gcc.git] / gcc / cpphash.c
blob77bf9c07439e95f72335b9dd20ee3bd08c9dcd52
1 /* Hash tables for the CPP library.
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1998,
3 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4 Written by Per Bothner, 1994.
5 Based on CCCP program by Paul Rubin, June 1986
6 Adapted to ANSI C, Richard Stallman, Jan 1987
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
11 later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 In other words, you are welcome to use, share and improve this program.
23 You are forbidden to forbid anyone else to use, share and improve
24 what you give them. Help stamp out software-hoarding! */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "cpplib.h"
31 #include "cpphash.h"
33 static cpp_hashnode *alloc_node PARAMS ((hash_table *));
35 /* Return an identifier node for hashtable.c. Used by cpplib except
36 when integrated with the C front ends. */
37 static cpp_hashnode *
38 alloc_node (table)
39 hash_table *table;
41 cpp_hashnode *node;
43 node = (cpp_hashnode *) obstack_alloc (&table->pfile->hash_ob,
44 sizeof (cpp_hashnode));
45 memset ((PTR) node, 0, sizeof (cpp_hashnode));
46 return node;
49 /* Set up the identifier hash table. Use TABLE if non-null, otherwise
50 create our own. */
51 void
52 _cpp_init_hashtable (pfile, table)
53 cpp_reader *pfile;
54 hash_table *table;
56 struct spec_nodes *s;
58 if (table == NULL)
60 pfile->our_hashtable = 1;
61 table = ht_create (13); /* 8K (=2^13) entries. */
62 table->alloc_node = (hashnode (*) PARAMS ((hash_table *))) alloc_node;
63 gcc_obstack_init (&pfile->hash_ob);
66 table->pfile = pfile;
67 pfile->hash_table = table;
69 /* Now we can initialize things that use the hash table. */
70 _cpp_init_directives (pfile);
71 _cpp_init_internal_pragmas (pfile);
73 s = &pfile->spec_nodes;
74 s->n_defined = cpp_lookup (pfile, DSC("defined"));
75 s->n_true = cpp_lookup (pfile, DSC("true"));
76 s->n_false = cpp_lookup (pfile, DSC("false"));
77 s->n__VA_ARGS__ = cpp_lookup (pfile, DSC("__VA_ARGS__"));
78 s->n__VA_ARGS__->flags |= NODE_DIAGNOSTIC;
81 /* Tear down the identifier hash table. */
82 void
83 _cpp_destroy_hashtable (pfile)
84 cpp_reader *pfile;
86 if (pfile->our_hashtable)
88 ht_destroy (pfile->hash_table);
89 obstack_free (&pfile->hash_ob, 0);
93 /* Returns the hash entry for the STR of length LEN, creating one
94 if necessary. */
95 cpp_hashnode *
96 cpp_lookup (pfile, str, len)
97 cpp_reader *pfile;
98 const unsigned char *str;
99 unsigned int len;
101 /* ht_lookup cannot return NULL. */
102 return CPP_HASHNODE (ht_lookup (pfile->hash_table, str, len, HT_ALLOC));
105 /* Determine whether the str STR, of length LEN, is a defined macro. */
107 cpp_defined (pfile, str, len)
108 cpp_reader *pfile;
109 const unsigned char *str;
110 int len;
112 cpp_hashnode *node;
114 node = CPP_HASHNODE (ht_lookup (pfile->hash_table, str, len, HT_NO_INSERT));
116 /* If it's of type NT_MACRO, it cannot be poisoned. */
117 return node && node->type == NT_MACRO;
120 /* For all nodes in the hashtable, callback CB with parameters PFILE,
121 the node, and V. */
122 void
123 cpp_forall_identifiers (pfile, cb, v)
124 cpp_reader *pfile;
125 cpp_cb cb;
126 PTR v;
128 /* We don't need a proxy since the hash table's identifier comes
129 first in cpp_hashnode. */
130 ht_forall (pfile->hash_table, (ht_cb) cb, v);