Commit 6072a4f5 by Richard Stallman

Changed some decls.

From-SVN: r2020
parent f847fb39
/* -*-c-*- */
/* Copyright (C) 1989, 1992 Free Software Foundation, Inc. /* Copyright (C) 1989, 1992 Free Software Foundation, Inc.
This file is part of GNU CC. This file is part of GNU CC.
...@@ -25,10 +23,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -25,10 +23,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
the executable file might be covered by the GNU General Public License. */ the executable file might be covered by the GNU General Public License. */
/* /*
$Header: /usr/user/dennis_glatting/ObjC/c-runtime/dispatch/RCS/hash.c,v 0.13 1992/08/18 04:46:58 dglattin Exp $ $Header: /home/fsf/rms/c-runtime/dispatch/RCS/hash.c,v 0.14 1992/08/31 21:09:15 dglattin Exp rms $
$Author: dglattin $ $Author: dglattin $
$Date: 1992/08/18 04:46:58 $ $Date: 1992/08/31 21:09:15 $
$Log: hash.c,v $ $Log: hash.c,v $
* Revision 0.14 1992/08/31 21:09:15 dglattin
* minor documentation changes.
*
* Revision 0.13 1992/08/18 04:46:58 dglattin * Revision 0.13 1992/08/18 04:46:58 dglattin
* Saving a working version before release. * Saving a working version before release.
* *
...@@ -52,22 +53,22 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -52,22 +53,22 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
* the efficiency gained didn't out weight the grossness of the code. * the efficiency gained didn't out weight the grossness of the code.
* *
* Revision 0.7 1991/11/23 22:18:29 dennisg * Revision 0.7 1991/11/23 22:18:29 dennisg
* deleted hashIndex() and moved it to hash-inline.h * deleted hashIndex and moved it to hash-inline.h
* converted hash_value_for_key () to a inline and moved it to hash-inline.h. * converted hash_value_for_key to a inline and moved it to hash-inline.h.
* *
* Revision 0.6 1991/11/21 22:27:06 dennisg * Revision 0.6 1991/11/21 22:27:06 dennisg
* changed hash value calculation. * changed hash value calculation.
* func name changed from hashValue () to hashIndex(). the * func name changed from hashValue to hashIndex. the
* func really calculated a index anyway. * func really calculated a index anyway.
* changed hash func impl. essentially it was calculating a hash value * changed hash func impl. essentially it was calculating a hash value
* from a hash value. this is a implementation thing. * from a hash value. this is a implementation thing.
* *
* Revision 0.5 1991/11/20 23:29:20 dennisg * Revision 0.5 1991/11/20 23:29:20 dennisg
* converted hashIndex() to a inline. * converted hashIndex to a inline.
* *
* Revision 0.4 1991/11/19 12:34:41 dennisg * Revision 0.4 1991/11/19 12:34:41 dennisg
* bug in hash_delete (). It was using void* to obtain nodes to * bug in hash_delete. It was using void* to obtain nodes to
* pass to hash_remove (). The value passed to hash_removed () is a * pass to hash_remove. The value passed to hash_removed is a
* entry from the node structure rather than the node itself. Using * entry from the node structure rather than the node itself. Using
* void* removed compiler checking. * void* removed compiler checking.
* Modified to implement cache expansion. * Modified to implement cache expansion.
...@@ -84,53 +85,49 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -84,53 +85,49 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
*/ */
#include <hash.h> #include "config.h"
#include <objc.h> #include "hash.h"
#include <objcP.h> #include "objc.h"
#include <objc-protoP.h> #include "objcP.h"
#include "objc-protoP.h"
#include <assert.h> #include "assert.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
/* These two macros determine /* These two macros determine when a hash table is full and
when a hash table is full and by how much it should be expanded respectively.
by how much it should be
expanded respectively.
These equations are These equations are percentages. */
percentages. */
#define FULLNESS(cache) \ #define FULLNESS(cache) \
((((cache)->sizeOfHash * 75 ) / 100) <= (cache)->entriesInHash) ((((cache)->sizeOfHash * 75) / 100) <= (cache)->entriesInHash)
#define EXPANSION(cache) \ #define EXPANSION(cache) \
((cache)->sizeOfHash * 2 ) ((cache)->sizeOfHash * 2)
Cache_t Cache_t
hash_new (u_int sizeOfHash, HashFunc aHashFunc, CompareFunc aCompareFunc) { hash_new (u_int sizeOfHash, HashFunc aHashFunc, CompareFunc aCompareFunc)
{
Cache_t retCache; Cache_t retCache;
/* Pass me a value greater than 0 and a power of 2. */ /* Pass me a value greater than 0 and a power of 2. */
assert(sizeOfHash); assert (sizeOfHash);
assert( !(sizeOfHash & (sizeOfHash - 1))); assert (!(sizeOfHash & (sizeOfHash - 1)));
/* Allocate the cache structure. calloc () insures /* Allocate the cache structure. calloc insures
its initialization for default values. */ its initialization for default values. */
retCache = calloc (1, sizeof (Cache)); retCache = (Cache_t) calloc (1, sizeof (Cache));
assert(retCache); assert (retCache);
/* Allocate the array of buckets for the cache. /* Allocate the array of buckets for the cache.
calloc() initializes all of the pointers to NULL. */ calloc initializes all of the pointers to NULL. */
retCache->theNodeTable = calloc (sizeOfHash, sizeof (CacheNode_t)); retCache->theNodeTable
assert(retCache->theNodeTable); = (CacheNode_t *) calloc (sizeOfHash, sizeof (CacheNode_t));
assert (retCache->theNodeTable);
retCache->sizeOfHash = sizeOfHash; retCache->sizeOfHash = sizeOfHash;
/* This should work for all processor architectures? */ /* This should work for all processor architectures? */
retCache->mask = ( sizeOfHash - 1 ); retCache->mask = (sizeOfHash - 1);
/* Store the hashing function so that codes can be computed. */ /* Store the hashing function so that codes can be computed. */
retCache->hashFunc = aHashFunc; retCache->hashFunc = aHashFunc;
...@@ -144,8 +141,8 @@ hash_new (u_int sizeOfHash, HashFunc aHashFunc, CompareFunc aCompareFunc) { ...@@ -144,8 +141,8 @@ hash_new (u_int sizeOfHash, HashFunc aHashFunc, CompareFunc aCompareFunc) {
void void
hash_delete (Cache_t theCache) { hash_delete (Cache_t theCache)
{
CacheNode_t aNode; CacheNode_t aNode;
...@@ -160,37 +157,37 @@ hash_delete (Cache_t theCache) { ...@@ -160,37 +157,37 @@ hash_delete (Cache_t theCache) {
void void
hash_add (Cache_t* theCache, void* aKey, void* aValue) { hash_add (Cache_t *theCache, void *aKey, void *aValue)
{
u_int indx = (*(*theCache)->hashFunc)(*theCache, aKey);
CacheNode_t aCacheNode = (CacheNode_t) calloc (1, sizeof (CacheNode));
u_int indx = (* (*theCache)->hashFunc)(*theCache, aKey);
CacheNode_t aCacheNode = calloc (1, sizeof (CacheNode));
assert (aCacheNode);
assert(aCacheNode);
/* Initialize the new node. */ /* Initialize the new node. */
aCacheNode->theKey = aKey; aCacheNode->theKey = aKey;
aCacheNode->theValue = aValue; aCacheNode->theValue = aValue;
aCacheNode->nextNode = (* (*theCache)->theNodeTable)[ indx ]; aCacheNode->nextNode = (*(*theCache)->theNodeTable) [indx];
/* Debugging. /* Debugging.
Check the list for another key. */ Check the list for another key. */
#ifdef DEBUG #ifdef DEBUG
{ CacheNode_t checkHashNode = (* (*theCache)->theNodeTable)[ indx ]; { CacheNode_t checkHashNode = (*(*theCache)->theNodeTable) [indx];
while (checkHashNode) { while (checkHashNode) {
assert(checkHashNode->theKey != aKey); assert (checkHashNode->theKey != aKey);
checkHashNode = checkHashNode->nextNode; checkHashNode = checkHashNode->nextNode;
} }
} }
#endif #endif
/* Install the node as the first element on the list. */ /* Install the node as the first element on the list. */
(* (*theCache)->theNodeTable)[ indx ] = aCacheNode; (*(*theCache)->theNodeTable) [indx] = aCacheNode;
/* Bump the number of entries in the cache. */ /* Bump the number of entries in the cache. */
++ (*theCache)->entriesInHash; ++(*theCache)->entriesInHash;
/* Check the hash table's fullness. We're going /* Check the hash table's fullness. We're going
to expand if it is above the fullness level. */ to expand if it is above the fullness level. */
...@@ -224,18 +221,18 @@ hash_add (Cache_t* theCache, void* aKey, void* aValue) { ...@@ -224,18 +221,18 @@ hash_add (Cache_t* theCache, void* aKey, void* aValue) {
void void
hash_remove (Cache_t theCache, void* aKey) { hash_remove (Cache_t theCache, void *aKey)
{
u_int indx = (*theCache->hashFunc)(theCache, aKey); u_int indx = (*theCache->hashFunc)(theCache, aKey);
CacheNode_t aCacheNode = (*theCache->theNodeTable)[ indx ]; CacheNode_t aCacheNode = (*theCache->theNodeTable) [indx];
/* We assume there is an entry in the table. Error if it is not. */ /* We assume there is an entry in the table. Error if it is not. */
assert(aCacheNode); assert (aCacheNode);
/* Special case. First element is the key/value pair to be removed. */ /* Special case. First element is the key/value pair to be removed. */
if ((*theCache->compareFunc)(aCacheNode->theKey, aKey)) { if ((*theCache->compareFunc)(aCacheNode->theKey, aKey)) {
(*theCache->theNodeTable)[ indx ] = aCacheNode->nextNode; (*theCache->theNodeTable) [indx] = aCacheNode->nextNode;
free (aCacheNode); free (aCacheNode);
} else { } else {
...@@ -251,7 +248,7 @@ hash_remove (Cache_t theCache, void* aKey) { ...@@ -251,7 +248,7 @@ hash_remove (Cache_t theCache, void* aKey) {
} else } else
prevHashNode = aCacheNode, aCacheNode = aCacheNode->nextNode; prevHashNode = aCacheNode, aCacheNode = aCacheNode->nextNode;
} while (!removed && aCacheNode); } while (!removed && aCacheNode);
assert(removed); assert (removed);
} }
/* Decrement the number of entries in the hash table. */ /* Decrement the number of entries in the hash table. */
...@@ -260,8 +257,8 @@ hash_remove (Cache_t theCache, void* aKey) { ...@@ -260,8 +257,8 @@ hash_remove (Cache_t theCache, void* aKey) {
CacheNode_t CacheNode_t
hash_next (Cache_t theCache, CacheNode_t aCacheNode) { hash_next (Cache_t theCache, CacheNode_t aCacheNode)
{
CacheNode_t theCacheNode = aCacheNode; CacheNode_t theCacheNode = aCacheNode;
...@@ -286,8 +283,8 @@ hash_next (Cache_t theCache, CacheNode_t aCacheNode) { ...@@ -286,8 +283,8 @@ hash_next (Cache_t theCache, CacheNode_t aCacheNode) {
/* Scan the remainder of the buckets looking for an entry /* Scan the remainder of the buckets looking for an entry
at the head of the list. Return the first item found. */ at the head of the list. Return the first item found. */
while (theCache->lastBucket < theCache->sizeOfHash) while (theCache->lastBucket < theCache->sizeOfHash)
if ((*theCache->theNodeTable)[ theCache->lastBucket ]) if ((*theCache->theNodeTable) [theCache->lastBucket])
return (*theCache->theNodeTable)[ theCache->lastBucket ]; return (*theCache->theNodeTable) [theCache->lastBucket];
else else
++theCache->lastBucket; ++theCache->lastBucket;
...@@ -302,12 +299,12 @@ hash_next (Cache_t theCache, CacheNode_t aCacheNode) { ...@@ -302,12 +299,12 @@ hash_next (Cache_t theCache, CacheNode_t aCacheNode) {
* Given key, return its value. Return NULL if the * Given key, return its value. Return NULL if the
* key/value pair isn't in the hash. * key/value pair isn't in the hash.
*/ */
void* void *
hash_value_for_key (Cache_t theCache, void* aKey) { hash_value_for_key (Cache_t theCache, void *aKey)
{
CacheNode_t aCacheNode = CacheNode_t aCacheNode
(*theCache->theNodeTable)[(*theCache->hashFunc)(theCache, aKey)]; = (*theCache->theNodeTable) [(*theCache->hashFunc)(theCache, aKey)];
void* retVal = NULL; void *retVal = NULL;
if (aCacheNode) if (aCacheNode)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment