]> git.ipfire.org Git - thirdparty/gcc.git/blame - libcpp/identifiers.cc
Add overflow API for plus minus mult on range
[thirdparty/gcc.git] / libcpp / identifiers.cc
CommitLineData
2a967f3d 1/* Hash tables for the CPP library.
83ffe9cd 2 Copyright (C) 1986-2023 Free Software Foundation, Inc.
7f2935c7 3 Written by Per Bothner, 1994.
38e01259 4 Based on CCCP program by Paul Rubin, June 1986
7f2935c7
PB
5 Adapted to ANSI C, Richard Stallman, Jan 1987
6
7This program is free software; you can redistribute it and/or modify it
8under the terms of the GNU General Public License as published by the
748086b7 9Free Software Foundation; either version 3, or (at your option) any
7f2935c7
PB
10later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
748086b7
JJ
18along with this program; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>.
7f2935c7
PB
20
21 In other words, you are welcome to use, share and improve this program.
22 You are forbidden to forbid anyone else to use, share and improve
23 what you give them. Help stamp out software-hoarding! */
24
b04cd507
KG
25#include "config.h"
26#include "system.h"
7f2935c7 27#include "cpplib.h"
4f4e53dd 28#include "internal.h"
e38992e8 29
0823efed 30static hashnode alloc_node (cpp_hash_table *);
7f2935c7 31
2a967f3d
NB
32/* Return an identifier node for hashtable.c. Used by cpplib except
33 when integrated with the C front ends. */
2bf41bf0 34static hashnode
0823efed 35alloc_node (cpp_hash_table *table)
2964d54f 36{
2a967f3d 37 cpp_hashnode *node;
df383483 38
c3f829c1 39 node = XOBNEW (&table->pfile->hash_ob, cpp_hashnode);
fad205ff 40 memset (node, 0, sizeof (cpp_hashnode));
2bf41bf0 41 return HT_NODE (node);
d9e0bd53
ZW
42}
43
2a967f3d
NB
44/* Set up the identifier hash table. Use TABLE if non-null, otherwise
45 create our own. */
711b8824 46void
0823efed 47_cpp_init_hashtable (cpp_reader *pfile, cpp_hash_table *table)
6de1e2a9 48{
f5e99456
NB
49 struct spec_nodes *s;
50
2a967f3d 51 if (table == NULL)
6de1e2a9 52 {
2a967f3d
NB
53 pfile->our_hashtable = 1;
54 table = ht_create (13); /* 8K (=2^13) entries. */
2bf41bf0 55 table->alloc_node = alloc_node;
43839642 56
19a9ba64 57 obstack_specify_allocation (&pfile->hash_ob, 0, 0, xmalloc, free);
b30892f9 58 }
711b8824 59
2a967f3d
NB
60 table->pfile = pfile;
61 pfile->hash_table = table;
f5e99456
NB
62
63 /* Now we can initialize things that use the hash table. */
64 _cpp_init_directives (pfile);
65 _cpp_init_internal_pragmas (pfile);
66
67 s = &pfile->spec_nodes;
f5e99456
NB
68 s->n_defined = cpp_lookup (pfile, DSC("defined"));
69 s->n_true = cpp_lookup (pfile, DSC("true"));
70 s->n_false = cpp_lookup (pfile, DSC("false"));
f5e99456
NB
71 s->n__VA_ARGS__ = cpp_lookup (pfile, DSC("__VA_ARGS__"));
72 s->n__VA_ARGS__->flags |= NODE_DIAGNOSTIC;
fb771b9d
TT
73 s->n__VA_OPT__ = cpp_lookup (pfile, DSC("__VA_OPT__"));
74 s->n__VA_OPT__->flags |= NODE_DIAGNOSTIC;
ad1a3914 75 /* __has_include{,_next} are inited in cpp_init_builtins. */
ba412f14
ZW
76}
77
2a967f3d 78/* Tear down the identifier hash table. */
2a967f3d 79void
6cf87ca4 80_cpp_destroy_hashtable (cpp_reader *pfile)
ba412f14 81{
2a967f3d 82 if (pfile->our_hashtable)
b30892f9 83 {
bef985f3 84 ht_destroy (pfile->hash_table);
2a967f3d 85 obstack_free (&pfile->hash_ob, 0);
b30892f9 86 }
45b966db
ZW
87}
88
2a967f3d
NB
89/* Returns the hash entry for the STR of length LEN, creating one
90 if necessary. */
711b8824 91cpp_hashnode *
6cf87ca4 92cpp_lookup (cpp_reader *pfile, const unsigned char *str, unsigned int len)
6de1e2a9 93{
2a967f3d
NB
94 /* ht_lookup cannot return NULL. */
95 return CPP_HASHNODE (ht_lookup (pfile->hash_table, str, len, HT_ALLOC));
d9e0bd53 96}
3caee4a8 97
2a967f3d 98/* Determine whether the str STR, of length LEN, is a defined macro. */
2a967f3d 99int
6cf87ca4 100cpp_defined (cpp_reader *pfile, const unsigned char *str, int len)
d9e0bd53 101{
2a967f3d 102 cpp_hashnode *node;
3caee4a8 103
2a967f3d 104 node = CPP_HASHNODE (ht_lookup (pfile->hash_table, str, len, HT_NO_INSERT));
d35364d1 105
3f6677f4
NS
106 /* If it's a macro, it cannot have been poisoned. */
107 return node && cpp_macro_p (node);
d35364d1
ZW
108}
109
2bf41bf0
TT
110/* We don't need a proxy since the hash table's identifier comes first
111 in cpp_hashnode. However, in case this is ever changed, we have a
112 static assertion for it. */
113extern char proxy_assertion_broken[offsetof (struct cpp_hashnode, ident) == 0 ? 1 : -1];
114
2a967f3d
NB
115/* For all nodes in the hashtable, callback CB with parameters PFILE,
116 the node, and V. */
d35364d1 117void
6cf87ca4 118cpp_forall_identifiers (cpp_reader *pfile, cpp_cb cb, void *v)
d35364d1 119{
2a967f3d 120 ht_forall (pfile->hash_table, (ht_cb) cb, v);
a949941c 121}