48cc2f4deb6d9dbe8779628c688dbd16a6f9441d
[dragonfly.git] / usr.bin / xlint / lint2 / hash.c
1 /*      $NetBSD: hash.c,v 1.2 1995/07/03 21:24:47 cgd Exp $     */
2
3 /*
4  * Copyright (c) 1994, 1995 Jochen Pohl
5  * All Rights Reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by Jochen Pohl for
18  *      The NetBSD Project.
19  * 4. The name of the author may not be used to endorse or promote products
20  *    derived from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  * $NetBSD: hash.c,v 1.2 1995/07/03 21:24:47 cgd Exp $
34  * $DragonFly: src/usr.bin/xlint/lint2/hash.c,v 1.3 2003/11/03 19:14:36 eirikn Exp $
35  */
36
37 #include <stddef.h>
38 #include <string.h>
39 #include <limits.h>
40
41 #include "lint2.h"
42
43 /* pointer to hash table, initialized in inithash() */
44 static  hte_t   **htab;
45
46 static  int     hash __P((const char *));
47
48 /*
49  * Initialize hash table.
50  */
51 void
52 inithash()
53 {
54         htab = xcalloc(HSHSIZ2, sizeof (hte_t *));
55 }
56
57 /*
58  * Compute hash value from a string.
59  */
60 static int
61 hash(s)
62         const   char *s;
63 {
64         u_int   v;
65         const   u_char *us;
66
67         v = 0;
68         for (us = (const u_char *)s; *us != '\0'; us++) {
69                 v = (v << sizeof (v)) + *us;
70                 v ^= v >> (sizeof (v) * CHAR_BIT - sizeof (v));
71         }
72         return (v % HSHSIZ2);
73 }
74
75 /*
76  * Look for a hash table entry. If no hash table entry for the
77  * given name exists and mknew is set, create a new one.
78  */
79 hte_t *
80 hsearch(s, mknew)
81         const   char *s;
82         int     mknew;
83 {
84         int     h;
85         hte_t   *hte;
86
87         h = hash(s);
88         for (hte = htab[h]; hte != NULL; hte = hte->h_link) {
89                 if (strcmp(hte->h_name, s) == 0)
90                         break;
91         }
92
93         if (hte != NULL || !mknew)
94                 return (hte);
95
96         /* create a new hte */
97         hte = xalloc(sizeof (hte_t));
98         hte->h_name = xstrdup(s);
99         hte->h_lsym = &hte->h_syms;
100         hte->h_lcall = &hte->h_calls;
101         hte->h_lusym = &hte->h_usyms;
102         hte->h_link = htab[h];
103         htab[h] = hte;
104
105         return (hte);
106 }
107
108 /*
109  * Call function f for each name in the hash table.
110  */
111 void
112 forall(f)
113         void    (*f) __P((hte_t *));
114 {
115         int     i;
116         hte_t   *hte;
117
118         for (i = 0; i < HSHSIZ2; i++) {
119                 for (hte = htab[i]; hte != NULL; hte = hte->h_link)
120                         (*f)(hte);
121         }
122 }