| 10 |  | #include "copyright.h" | 
| 11 |  |  | 
| 12 |  | #include  "standard.h" | 
| 13 | – |  | 
| 13 |  | #include  "object.h" | 
| 15 | – |  | 
| 14 |  | #include  "otypes.h" | 
| 15 |  |  | 
| 16 |  |  | 
| 17 |  | static struct ohtab { | 
| 18 | < | int  hsiz;                      /* current table size */ | 
| 19 | < | OBJECT  *htab;                  /* table, if allocated */ | 
| 18 | > | int     hsiz;                   /* current table size */ | 
| 19 | > | OBJECT  *htab;                  /* table, if allocated */ | 
| 20 |  | }  modtab = {100, NULL}, objtab = {1000, NULL}; /* modifiers and objects */ | 
| 21 |  |  | 
| 22 |  | static int  otndx(char *, struct ohtab *); | 
| 27 |  | OBJREC  *op | 
| 28 |  | ) | 
| 29 |  | { | 
| 30 | < | int  i, j; | 
| 30 | > | #ifndef ONCACHESIZ | 
| 31 | > | #define ONCACHESIZ      907     /* keep a cache of previous searches */ | 
| 32 | > | #endif | 
| 33 | > | static OBJECT   oncache[ONCACHESIZ]; | 
| 34 | > | const int       ent = (size_t)op % ONCACHESIZ;  /* hash on pointer */ | 
| 35 | > | int             i, lastblock; | 
| 36 |  |  | 
| 37 | < | for (i = nobjects>>OBJBLKSHFT; i >= 0; i--) { | 
| 38 | < | j = op - objblock[i]; | 
| 39 | < | if ((j >= 0) & (j < OBJBLKSIZ)) | 
| 40 | < | return((i<<OBJBLKSHFT) + j); | 
| 41 | < | } | 
| 42 | < | return(OVOID); | 
| 37 | > | #if OVOID != 0                  /* clear cache on first call */ | 
| 38 | > | for (i = ONCACHESIZ*(!oncache[0] & !oncache[1]); i--; ) | 
| 39 | > | oncache[i] = OVOID; | 
| 40 | > | #endif | 
| 41 | > | /* is this pointer in cache? */ | 
| 42 | > | if ((oncache[ent] != OVOID) & (oncache[ent] < nobjects) && | 
| 43 | > | objptr(oncache[ent]) == op) | 
| 44 | > | return(oncache[ent]);           /* matches previous search */ | 
| 45 | > | /* else search for our block from first */ | 
| 46 | > | lastblock = (nobjects-1)>>OBJBLKSHFT; | 
| 47 | > | for (i = 0; i <= lastblock; i++) | 
| 48 | > | if ((objblock[i] <= op) & (op < objblock[i]+OBJBLKSIZ)) { | 
| 49 | > | /* found it -- cache corresponding index */ | 
| 50 | > | oncache[ent] = ((OBJECT)i << OBJBLKSHFT) + | 
| 51 | > | (op - objblock[i]); | 
| 52 | > | return(oncache[ent]); | 
| 53 | > | } | 
| 54 | > | return(OVOID);          /* not allocated -- may still be valid */ | 
| 55 |  | } | 
| 56 |  |  | 
| 57 |  |  | 
| 62 |  | ) | 
| 63 |  | { | 
| 64 |  | OBJREC  *op; | 
| 65 | < | int  i; | 
| 65 | > | OBJECT  i; | 
| 66 |  |  | 
| 67 |  | i = modifier(mname);            /* try hash table first */ | 
| 68 |  | if ((obj == OVOID) | (i < obj)) | 
| 69 |  | return(i); | 
| 70 |  | for (i = obj; i-- > 0; ) {      /* need to search */ | 
| 71 |  | op = objptr(i); | 
| 72 | < | if (ismodifier(op->otype) && op->oname[0] == mname[0] && | 
| 73 | < | !strcmp(op->oname, mname)) | 
| 72 | > | if ((ismodifier(op->otype) != 0) & (op->oname[0] == mname[0]) | 
| 73 | > | && !strcmp(op->oname, mname)) | 
| 74 |  | return(i); | 
| 75 |  | } | 
| 76 |  | return(OVOID); | 
| 204 |  |  | 
| 205 |  |  | 
| 206 |  | void | 
| 207 | < | clearobjndx(void)               /* clear object hash tables */ | 
| 207 | > | truncobjndx(void)               /* remove bogus table entries past end */ | 
| 208 |  | { | 
| 209 | < | if (modtab.htab != NULL) { | 
| 210 | < | free((void *)modtab.htab); | 
| 211 | < | modtab.htab = NULL; | 
| 212 | < | modtab.hsiz = 100; | 
| 209 | > | int     ndx; | 
| 210 | > |  | 
| 211 | > | if (nobjects <= 0) { | 
| 212 | > | if (modtab.htab != NULL) { | 
| 213 | > | free(modtab.htab); | 
| 214 | > | modtab.htab = NULL; | 
| 215 | > | modtab.hsiz = 100; | 
| 216 | > | } | 
| 217 | > | if (objtab.htab != NULL) { | 
| 218 | > | free(objtab.htab); | 
| 219 | > | objtab.htab = NULL; | 
| 220 | > | objtab.hsiz = 100; | 
| 221 | > | } | 
| 222 | > | return; | 
| 223 |  | } | 
| 224 | < | if (objtab.htab != NULL) { | 
| 225 | < | free((void *)objtab.htab); | 
| 226 | < | objtab.htab = NULL; | 
| 227 | < | objtab.hsiz = 100; | 
| 228 | < | } | 
| 224 | > | for (ndx = modtab.hsiz*(modtab.htab != NULL); ndx--; ) | 
| 225 | > | if (modtab.htab[ndx] >= nobjects) | 
| 226 | > | modtab.htab[ndx] = OVOID; | 
| 227 | > |  | 
| 228 | > | for (ndx = objtab.hsiz*(objtab.htab != NULL); ndx--; ) | 
| 229 | > | if (objtab.htab[ndx] >= nobjects) | 
| 230 | > | objtab.htab[ndx] = OVOID; | 
| 231 |  | } | 
| 232 |  |  | 
| 233 |  |  | 
| 237 |  | ) | 
| 238 |  | { | 
| 239 |  | static int  hsiztab[] = { | 
| 240 | < | 251, 509, 1021, 2039, 4093, 8191, 16381, 0 | 
| 240 | > | 251, 509, 1021, 2039, 4093, 8191, 16381, | 
| 241 | > | 32749, 65521, 131071, 262139, 0 | 
| 242 |  | }; | 
| 243 |  | int  *hsp; | 
| 244 |  |  | 
| 255 |  | struct ohtab  *tab | 
| 256 |  | ) | 
| 257 |  | { | 
| 258 | + | char    *onm; | 
| 259 |  | OBJECT  *oldhtab; | 
| 260 |  | int  hval, i; | 
| 261 |  | int  ndx; | 
| 274 |  | tryagain: | 
| 275 |  | for (i = 0; i < tab->hsiz; i++) { | 
| 276 |  | ndx = (hval + (unsigned long)i*i) % tab->hsiz; | 
| 277 | < | if (tab->htab[ndx] == OVOID || | 
| 249 | < | !strcmp(objptr(tab->htab[ndx])->oname, name)) | 
| 277 | > | if (tab->htab[ndx] == OVOID) | 
| 278 |  | return(ndx); | 
| 279 | + | onm = objptr(tab->htab[ndx])->oname; | 
| 280 | + | if (onm != NULL && !strcmp(onm, name)) | 
| 281 | + | return(ndx); | 
| 282 |  | } | 
| 283 |  | /* table is full, reallocate */ | 
| 284 |  | oldhtab = tab->htab; | 
| 286 |  | tab->htab = NULL; | 
| 287 |  | while (ndx--) | 
| 288 |  | if (oldhtab[ndx] != OVOID) { | 
| 289 | < | i = otndx(objptr(oldhtab[ndx])->oname, tab); | 
| 289 | > | onm = objptr(oldhtab[ndx])->oname; | 
| 290 | > | if (onm == NULL) | 
| 291 | > | continue; | 
| 292 | > | i = otndx(onm, tab); | 
| 293 |  | tab->htab[i] = oldhtab[ndx]; | 
| 294 |  | } | 
| 295 | < | free((void *)oldhtab); | 
| 295 | > | free(oldhtab); | 
| 296 |  | goto tryagain;                  /* should happen only once! */ | 
| 297 |  | } |