rege_dfa.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:17k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * DFA routines
  3.  * This file is #included by regexec.c.
  4.  *
  5.  * Copyright (c) 1998, 1999 Henry Spencer.  All rights reserved.
  6.  * 
  7.  * Development of this software was funded, in part, by Cray Research Inc.,
  8.  * UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics
  9.  * Corporation, none of whom are responsible for the results.  The author
  10.  * thanks all of them. 
  11.  * 
  12.  * Redistribution and use in source and binary forms -- with or without
  13.  * modification -- are permitted for any purpose, provided that
  14.  * redistributions in source form retain this entire copyright notice and
  15.  * indicate the origin and nature of any modifications.
  16.  * 
  17.  * I'd appreciate being given credit for this package in the documentation
  18.  * of software which uses it, but that is not a requirement.
  19.  * 
  20.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
  21.  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  22.  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
  23.  * HENRY SPENCER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  24.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  25.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  26.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  27.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  28.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  29.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30.  *
  31.  */
  32. /*
  33.  - longest - longest-preferred matching engine
  34.  ^ static chr *longest(struct vars *, struct dfa *, chr *, chr *, int *);
  35.  */
  36. static chr * /* endpoint, or NULL */
  37. longest(v, d, start, stop, hitstopp)
  38. struct vars *v; /* used only for debug and exec flags */
  39. struct dfa *d;
  40. chr *start; /* where the match should start */
  41. chr *stop; /* match must end at or before here */
  42. int *hitstopp; /* record whether hit v->stop, if non-NULL */
  43. {
  44. chr *cp;
  45. chr *realstop = (stop == v->stop) ? stop : stop + 1;
  46. color co;
  47. struct sset *css;
  48. struct sset *ss;
  49. chr *post;
  50. int i;
  51. struct colormap *cm = d->cm;
  52. /* initialize */
  53. css = initialize(v, d, start);
  54. cp = start;
  55. if (hitstopp != NULL)
  56. *hitstopp = 0;
  57. /* startup */
  58. FDEBUG(("+++ startup +++n"));
  59. if (cp == v->start) {
  60. co = d->cnfa->bos[(v->eflags&REG_NOTBOL) ? 0 : 1];
  61. FDEBUG(("color %ldn", (long)co));
  62. } else {
  63. co = GETCOLOR(cm, *(cp - 1));
  64. FDEBUG(("char %c, color %ldn", (char)*(cp-1), (long)co));
  65. }
  66. css = miss(v, d, css, co, cp, start);
  67. if (css == NULL)
  68. return NULL;
  69. css->lastseen = cp;
  70. /* main loop */
  71. if (v->eflags&REG_FTRACE)
  72. while (cp < realstop) {
  73. FDEBUG(("+++ at c%d +++n", css - d->ssets));
  74. co = GETCOLOR(cm, *cp);
  75. FDEBUG(("char %c, color %ldn", (char)*cp, (long)co));
  76. ss = css->outs[co];
  77. if (ss == NULL) {
  78. ss = miss(v, d, css, co, cp+1, start);
  79. if (ss == NULL)
  80. break; /* NOTE BREAK OUT */
  81. }
  82. cp++;
  83. ss->lastseen = cp;
  84. css = ss;
  85. }
  86. else
  87. while (cp < realstop) {
  88. co = GETCOLOR(cm, *cp);
  89. ss = css->outs[co];
  90. if (ss == NULL) {
  91. ss = miss(v, d, css, co, cp+1, start);
  92. if (ss == NULL)
  93. break; /* NOTE BREAK OUT */
  94. }
  95. cp++;
  96. ss->lastseen = cp;
  97. css = ss;
  98. }
  99. /* shutdown */
  100. FDEBUG(("+++ shutdown at c%d +++n", css - d->ssets));
  101. if (cp == v->stop && stop == v->stop) {
  102. if (hitstopp != NULL)
  103. *hitstopp = 1;
  104. co = d->cnfa->eos[(v->eflags&REG_NOTEOL) ? 0 : 1];
  105. FDEBUG(("color %ldn", (long)co));
  106. ss = miss(v, d, css, co, cp, start);
  107. /* special case:  match ended at eol? */
  108. if (ss != NULL && (ss->flags&POSTSTATE))
  109. return cp;
  110. else if (ss != NULL)
  111. ss->lastseen = cp; /* to be tidy */
  112. }
  113. /* find last match, if any */
  114. post = d->lastpost;
  115. for (ss = d->ssets, i = d->nssused; i > 0; ss++, i--)
  116. if ((ss->flags&POSTSTATE) && post != ss->lastseen &&
  117. (post == NULL || post < ss->lastseen))
  118. post = ss->lastseen;
  119. if (post != NULL) /* found one */
  120. return post - 1;
  121. return NULL;
  122. }
  123. /*
  124.  - shortest - shortest-preferred matching engine
  125.  ^ static chr *shortest(struct vars *, struct dfa *, chr *, chr *, chr *,
  126.  ^  chr **, int *);
  127.  */
  128. static chr * /* endpoint, or NULL */
  129. shortest(v, d, start, min, max, coldp, hitstopp)
  130. struct vars *v;
  131. struct dfa *d;
  132. chr *start; /* where the match should start */
  133. chr *min; /* match must end at or after here */
  134. chr *max; /* match must end at or before here */
  135. chr **coldp; /* store coldstart pointer here, if nonNULL */
  136. int *hitstopp; /* record whether hit v->stop, if non-NULL */
  137. {
  138. chr *cp;
  139. chr *realmin = (min == v->stop) ? min : min + 1;
  140. chr *realmax = (max == v->stop) ? max : max + 1;
  141. color co;
  142. struct sset *css;
  143. struct sset *ss;
  144. struct colormap *cm = d->cm;
  145. /* initialize */
  146. css = initialize(v, d, start);
  147. cp = start;
  148. if (hitstopp != NULL)
  149. *hitstopp = 0;
  150. /* startup */
  151. FDEBUG(("--- startup ---n"));
  152. if (cp == v->start) {
  153. co = d->cnfa->bos[(v->eflags&REG_NOTBOL) ? 0 : 1];
  154. FDEBUG(("color %ldn", (long)co));
  155. } else {
  156. co = GETCOLOR(cm, *(cp - 1));
  157. FDEBUG(("char %c, color %ldn", (char)*(cp-1), (long)co));
  158. }
  159. css = miss(v, d, css, co, cp, start);
  160. if (css == NULL)
  161. return NULL;
  162. css->lastseen = cp;
  163. ss = css;
  164. /* main loop */
  165. if (v->eflags&REG_FTRACE)
  166. while (cp < realmax) {
  167. FDEBUG(("--- at c%d ---n", css - d->ssets));
  168. co = GETCOLOR(cm, *cp);
  169. FDEBUG(("char %c, color %ldn", (char)*cp, (long)co));
  170. ss = css->outs[co];
  171. if (ss == NULL) {
  172. ss = miss(v, d, css, co, cp+1, start);
  173. if (ss == NULL)
  174. break; /* NOTE BREAK OUT */
  175. }
  176. cp++;
  177. ss->lastseen = cp;
  178. css = ss;
  179. if ((ss->flags&POSTSTATE) && cp >= realmin)
  180. break; /* NOTE BREAK OUT */
  181. }
  182. else
  183. while (cp < realmax) {
  184. co = GETCOLOR(cm, *cp);
  185. ss = css->outs[co];
  186. if (ss == NULL) {
  187. ss = miss(v, d, css, co, cp+1, start);
  188. if (ss == NULL)
  189. break; /* NOTE BREAK OUT */
  190. }
  191. cp++;
  192. ss->lastseen = cp;
  193. css = ss;
  194. if ((ss->flags&POSTSTATE) && cp >= realmin)
  195. break; /* NOTE BREAK OUT */
  196. }
  197. if (ss == NULL)
  198. return NULL;
  199. if (coldp != NULL) /* report last no-progress state set, if any */
  200. *coldp = lastcold(v, d);
  201. if ((ss->flags&POSTSTATE) && cp > min) {
  202. assert(cp >= realmin);
  203. cp--;
  204. } else if (cp == v->stop && max == v->stop) {
  205. co = d->cnfa->eos[(v->eflags&REG_NOTEOL) ? 0 : 1];
  206. FDEBUG(("color %ldn", (long)co));
  207. ss = miss(v, d, css, co, cp, start);
  208. /* match might have ended at eol */
  209. if ((ss == NULL || !(ss->flags&POSTSTATE)) && hitstopp != NULL)
  210. *hitstopp = 1;
  211. }
  212. if (ss == NULL || !(ss->flags&POSTSTATE))
  213. return NULL;
  214. return cp;
  215. }
  216. /*
  217.  - lastcold - determine last point at which no progress had been made
  218.  ^ static chr *lastcold(struct vars *, struct dfa *);
  219.  */
  220. static chr * /* endpoint, or NULL */
  221. lastcold(v, d)
  222. struct vars *v;
  223. struct dfa *d;
  224. {
  225. struct sset *ss;
  226. chr *nopr;
  227. int i;
  228. nopr = d->lastnopr;
  229. if (nopr == NULL)
  230. nopr = v->start;
  231. for (ss = d->ssets, i = d->nssused; i > 0; ss++, i--)
  232. if ((ss->flags&NOPROGRESS) && nopr < ss->lastseen)
  233. nopr = ss->lastseen;
  234. return nopr;
  235. }
  236. /*
  237.  - newdfa - set up a fresh DFA
  238.  ^ static struct dfa *newdfa(struct vars *, struct cnfa *,
  239.  ^  struct colormap *, struct smalldfa *);
  240.  */
  241. static struct dfa *
  242. newdfa(v, cnfa, cm, small)
  243. struct vars *v;
  244. struct cnfa *cnfa;
  245. struct colormap *cm;
  246. struct smalldfa *small; /* preallocated space, may be NULL */
  247. {
  248. struct dfa *d;
  249. size_t nss = cnfa->nstates * 2;
  250. int wordsper = (cnfa->nstates + UBITS - 1) / UBITS;
  251. struct smalldfa *smallwas = small;
  252. assert(cnfa != NULL && cnfa->nstates != 0);
  253. if (nss <= FEWSTATES && cnfa->ncolors <= FEWCOLORS) {
  254. assert(wordsper == 1);
  255. if (small == NULL) {
  256. small = (struct smalldfa *)MALLOC(
  257. sizeof(struct smalldfa));
  258. if (small == NULL) {
  259. ERR(REG_ESPACE);
  260. return NULL;
  261. }
  262. }
  263. d = &small->dfa;
  264. d->ssets = small->ssets;
  265. d->statesarea = small->statesarea;
  266. d->work = &d->statesarea[nss];
  267. d->outsarea = small->outsarea;
  268. d->incarea = small->incarea;
  269. d->cptsmalloced = 0;
  270. d->mallocarea = (smallwas == NULL) ? (char *)small : NULL;
  271. } else {
  272. d = (struct dfa *)MALLOC(sizeof(struct dfa));
  273. if (d == NULL) {
  274. ERR(REG_ESPACE);
  275. return NULL;
  276. }
  277. d->ssets = (struct sset *)MALLOC(nss * sizeof(struct sset));
  278. d->statesarea = (unsigned *)MALLOC((nss+WORK) * wordsper *
  279. sizeof(unsigned));
  280. d->work = &d->statesarea[nss * wordsper];
  281. d->outsarea = (struct sset **)MALLOC(nss * cnfa->ncolors *
  282. sizeof(struct sset *));
  283. d->incarea = (struct arcp *)MALLOC(nss * cnfa->ncolors *
  284. sizeof(struct arcp));
  285. d->cptsmalloced = 1;
  286. d->mallocarea = (char *)d;
  287. if (d->ssets == NULL || d->statesarea == NULL ||
  288. d->outsarea == NULL || d->incarea == NULL) {
  289. freedfa(d);
  290. ERR(REG_ESPACE);
  291. return NULL;
  292. }
  293. }
  294. d->nssets = (v->eflags&REG_SMALL) ? 7 : nss;
  295. d->nssused = 0;
  296. d->nstates = cnfa->nstates;
  297. d->ncolors = cnfa->ncolors;
  298. d->wordsper = wordsper;
  299. d->cnfa = cnfa;
  300. d->cm = cm;
  301. d->lastpost = NULL;
  302. d->lastnopr = NULL;
  303. d->search = d->ssets;
  304. /* initialization of sset fields is done as needed */
  305. return d;
  306. }
  307. /*
  308.  - freedfa - free a DFA
  309.  ^ static VOID freedfa(struct dfa *);
  310.  */
  311. static VOID
  312. freedfa(d)
  313. struct dfa *d;
  314. {
  315. if (d->cptsmalloced) {
  316. if (d->ssets != NULL)
  317. FREE(d->ssets);
  318. if (d->statesarea != NULL)
  319. FREE(d->statesarea);
  320. if (d->outsarea != NULL)
  321. FREE(d->outsarea);
  322. if (d->incarea != NULL)
  323. FREE(d->incarea);
  324. }
  325. if (d->mallocarea != NULL)
  326. FREE(d->mallocarea);
  327. }
  328. /*
  329.  - hash - construct a hash code for a bitvector
  330.  * There are probably better ways, but they're more expensive.
  331.  ^ static unsigned hash(unsigned *, int);
  332.  */
  333. static unsigned
  334. hash(uv, n)
  335. unsigned *uv;
  336. int n;
  337. {
  338. int i;
  339. unsigned h;
  340. h = 0;
  341. for (i = 0; i < n; i++)
  342. h ^= uv[i];
  343. return h;
  344. }
  345. /*
  346.  - initialize - hand-craft a cache entry for startup, otherwise get ready
  347.  ^ static struct sset *initialize(struct vars *, struct dfa *, chr *);
  348.  */
  349. static struct sset *
  350. initialize(v, d, start)
  351. struct vars *v; /* used only for debug flags */
  352. struct dfa *d;
  353. chr *start;
  354. {
  355. struct sset *ss;
  356. int i;
  357. /* is previous one still there? */
  358. if (d->nssused > 0 && (d->ssets[0].flags&STARTER))
  359. ss = &d->ssets[0];
  360. else { /* no, must (re)build it */
  361. ss = getvacant(v, d, start, start);
  362. for (i = 0; i < d->wordsper; i++)
  363. ss->states[i] = 0;
  364. BSET(ss->states, d->cnfa->pre);
  365. ss->hash = HASH(ss->states, d->wordsper);
  366. assert(d->cnfa->pre != d->cnfa->post);
  367. ss->flags = STARTER|LOCKED|NOPROGRESS;
  368. /* lastseen dealt with below */
  369. }
  370. for (i = 0; i < d->nssused; i++)
  371. d->ssets[i].lastseen = NULL;
  372. ss->lastseen = start; /* maybe untrue, but harmless */
  373. d->lastpost = NULL;
  374. d->lastnopr = NULL;
  375. return ss;
  376. }
  377. /*
  378.  - miss - handle a cache miss
  379.  ^ static struct sset *miss(struct vars *, struct dfa *, struct sset *,
  380.  ^  pcolor, chr *, chr *);
  381.  */
  382. static struct sset * /* NULL if goes to empty set */
  383. miss(v, d, css, co, cp, start)
  384. struct vars *v; /* used only for debug flags */
  385. struct dfa *d;
  386. struct sset *css;
  387. pcolor co;
  388. chr *cp; /* next chr */
  389. chr *start; /* where the attempt got started */
  390. {
  391. struct cnfa *cnfa = d->cnfa;
  392. int i;
  393. unsigned h;
  394. struct carc *ca;
  395. struct sset *p;
  396. int ispost;
  397. int noprogress;
  398. int gotstate;
  399. int dolacons;
  400. int sawlacons;
  401. /* for convenience, we can be called even if it might not be a miss */
  402. if (css->outs[co] != NULL) {
  403. FDEBUG(("hitn"));
  404. return css->outs[co];
  405. }
  406. FDEBUG(("missn"));
  407. /* first, what set of states would we end up in? */
  408. for (i = 0; i < d->wordsper; i++)
  409. d->work[i] = 0;
  410. ispost = 0;
  411. noprogress = 1;
  412. gotstate = 0;
  413. for (i = 0; i < d->nstates; i++)
  414. if (ISBSET(css->states, i))
  415. for (ca = cnfa->states[i]+1; ca->co != COLORLESS; ca++)
  416. if (ca->co == co) {
  417. BSET(d->work, ca->to);
  418. gotstate = 1;
  419. if (ca->to == cnfa->post)
  420. ispost = 1;
  421. if (!cnfa->states[ca->to]->co)
  422. noprogress = 0;
  423. FDEBUG(("%d -> %dn", i, ca->to));
  424. }
  425. dolacons = (gotstate) ? (cnfa->flags&HASLACONS) : 0;
  426. sawlacons = 0;
  427. while (dolacons) { /* transitive closure */
  428. dolacons = 0;
  429. for (i = 0; i < d->nstates; i++)
  430. if (ISBSET(d->work, i))
  431. for (ca = cnfa->states[i]+1; ca->co != COLORLESS;
  432. ca++) {
  433. if (ca->co <= cnfa->ncolors)
  434. continue; /* NOTE CONTINUE */
  435. sawlacons = 1;
  436. if (ISBSET(d->work, ca->to))
  437. continue; /* NOTE CONTINUE */
  438. if (!lacon(v, cnfa, cp, ca->co))
  439. continue; /* NOTE CONTINUE */
  440. BSET(d->work, ca->to);
  441. dolacons = 1;
  442. if (ca->to == cnfa->post)
  443. ispost = 1;
  444. if (!cnfa->states[ca->to]->co)
  445. noprogress = 0;
  446. FDEBUG(("%d :> %dn", i, ca->to));
  447. }
  448. }
  449. if (!gotstate)
  450. return NULL;
  451. h = HASH(d->work, d->wordsper);
  452. /* next, is that in the cache? */
  453. for (p = d->ssets, i = d->nssused; i > 0; p++, i--)
  454. if (HIT(h, d->work, p, d->wordsper)) {
  455. FDEBUG(("cached c%dn", p - d->ssets));
  456. break; /* NOTE BREAK OUT */
  457. }
  458. if (i == 0) { /* nope, need a new cache entry */
  459. p = getvacant(v, d, cp, start);
  460. assert(p != css);
  461. for (i = 0; i < d->wordsper; i++)
  462. p->states[i] = d->work[i];
  463. p->hash = h;
  464. p->flags = (ispost) ? POSTSTATE : 0;
  465. if (noprogress)
  466. p->flags |= NOPROGRESS;
  467. /* lastseen to be dealt with by caller */
  468. }
  469. if (!sawlacons) { /* lookahead conds. always cache miss */
  470. FDEBUG(("c%d[%d]->c%dn", css - d->ssets, co, p - d->ssets));
  471. css->outs[co] = p;
  472. css->inchain[co] = p->ins;
  473. p->ins.ss = css;
  474. p->ins.co = (color)co;
  475. }
  476. return p;
  477. }
  478. /*
  479.  - lacon - lookahead-constraint checker for miss()
  480.  ^ static int lacon(struct vars *, struct cnfa *, chr *, pcolor);
  481.  */
  482. static int /* predicate:  constraint satisfied? */
  483. lacon(v, pcnfa, cp, co)
  484. struct vars *v;
  485. struct cnfa *pcnfa; /* parent cnfa */
  486. chr *cp;
  487. pcolor co; /* "color" of the lookahead constraint */
  488. {
  489. int n;
  490. struct subre *sub;
  491. struct dfa *d;
  492. struct smalldfa sd;
  493. chr *end;
  494. n = co - pcnfa->ncolors;
  495. assert(n < v->g->nlacons && v->g->lacons != NULL);
  496. FDEBUG(("=== testing lacon %dn", n));
  497. sub = &v->g->lacons[n];
  498. d = newdfa(v, &sub->cnfa, &v->g->cmap, &sd);
  499. if (d == NULL) {
  500. ERR(REG_ESPACE);
  501. return 0;
  502. }
  503. end = longest(v, d, cp, v->stop, (int *)NULL);
  504. freedfa(d);
  505. FDEBUG(("=== lacon %d match %dn", n, (end != NULL)));
  506. return (sub->subno) ? (end != NULL) : (end == NULL);
  507. }
  508. /*
  509.  - getvacant - get a vacant state set
  510.  * This routine clears out the inarcs and outarcs, but does not otherwise
  511.  * clear the innards of the state set -- that's up to the caller.
  512.  ^ static struct sset *getvacant(struct vars *, struct dfa *, chr *, chr *);
  513.  */
  514. static struct sset *
  515. getvacant(v, d, cp, start)
  516. struct vars *v; /* used only for debug flags */
  517. struct dfa *d;
  518. chr *cp;
  519. chr *start;
  520. {
  521. int i;
  522. struct sset *ss;
  523. struct sset *p;
  524. struct arcp ap;
  525. struct arcp lastap = {NULL, 0}; /* silence gcc 4 warning */
  526. color co;
  527. ss = pickss(v, d, cp, start);
  528. assert(!(ss->flags&LOCKED));
  529. /* clear out its inarcs, including self-referential ones */
  530. ap = ss->ins;
  531. while ((p = ap.ss) != NULL) {
  532. co = ap.co;
  533. FDEBUG(("zapping c%d's %ld outarcn", p - d->ssets, (long)co));
  534. p->outs[co] = NULL;
  535. ap = p->inchain[co];
  536. p->inchain[co].ss = NULL; /* paranoia */
  537. }
  538. ss->ins.ss = NULL;
  539. /* take it off the inarc chains of the ssets reached by its outarcs */
  540. for (i = 0; i < d->ncolors; i++) {
  541. p = ss->outs[i];
  542. assert(p != ss); /* not self-referential */
  543. if (p == NULL)
  544. continue; /* NOTE CONTINUE */
  545. FDEBUG(("del outarc %d from c%d's in chnn", i, p - d->ssets));
  546. if (p->ins.ss == ss && p->ins.co == i)
  547. p->ins = ss->inchain[i];
  548. else {
  549. assert(p->ins.ss != NULL);
  550. for (ap = p->ins; ap.ss != NULL &&
  551. !(ap.ss == ss && ap.co == i);
  552. ap = ap.ss->inchain[ap.co])
  553. lastap = ap;
  554. assert(ap.ss != NULL);
  555. lastap.ss->inchain[lastap.co] = ss->inchain[i];
  556. }
  557. ss->outs[i] = NULL;
  558. ss->inchain[i].ss = NULL;
  559. }
  560. /* if ss was a success state, may need to remember location */
  561. if ((ss->flags&POSTSTATE) && ss->lastseen != d->lastpost &&
  562. (d->lastpost == NULL || d->lastpost < ss->lastseen))
  563. d->lastpost = ss->lastseen;
  564. /* likewise for a no-progress state */
  565. if ((ss->flags&NOPROGRESS) && ss->lastseen != d->lastnopr &&
  566. (d->lastnopr == NULL || d->lastnopr < ss->lastseen))
  567. d->lastnopr = ss->lastseen;
  568. return ss;
  569. }
  570. /*
  571.  - pickss - pick the next stateset to be used
  572.  ^ static struct sset *pickss(struct vars *, struct dfa *, chr *, chr *);
  573.  */
  574. static struct sset *
  575. pickss(v, d, cp, start)
  576. struct vars *v; /* used only for debug flags */
  577. struct dfa *d;
  578. chr *cp;
  579. chr *start;
  580. {
  581. int i;
  582. struct sset *ss;
  583. struct sset *end;
  584. chr *ancient;
  585. /* shortcut for cases where cache isn't full */
  586. if (d->nssused < d->nssets) {
  587. i = d->nssused;
  588. d->nssused++;
  589. ss = &d->ssets[i];
  590. FDEBUG(("new c%dn", i));
  591. /* set up innards */
  592. ss->states = &d->statesarea[i * d->wordsper];
  593. ss->flags = 0;
  594. ss->ins.ss = NULL;
  595. ss->ins.co = WHITE; /* give it some value */
  596. ss->outs = &d->outsarea[i * d->ncolors];
  597. ss->inchain = &d->incarea[i * d->ncolors];
  598. for (i = 0; i < d->ncolors; i++) {
  599. ss->outs[i] = NULL;
  600. ss->inchain[i].ss = NULL;
  601. }
  602. return ss;
  603. }
  604. /* look for oldest, or old enough anyway */
  605. if (cp - start > d->nssets*2/3) /* oldest 33% are expendable */
  606. ancient = cp - d->nssets*2/3;
  607. else
  608. ancient = start;
  609. for (ss = d->search, end = &d->ssets[d->nssets]; ss < end; ss++)
  610. if ((ss->lastseen == NULL || ss->lastseen < ancient) &&
  611. !(ss->flags&LOCKED)) {
  612. d->search = ss + 1;
  613. FDEBUG(("replacing c%dn", ss - d->ssets));
  614. return ss;
  615. }
  616. for (ss = d->ssets, end = d->search; ss < end; ss++)
  617. if ((ss->lastseen == NULL || ss->lastseen < ancient) &&
  618. !(ss->flags&LOCKED)) {
  619. d->search = ss + 1;
  620. FDEBUG(("replacing c%dn", ss - d->ssets));
  621. return ss;
  622. }
  623. /* nobody's old enough?!? -- something's really wrong */
  624. FDEBUG(("can't find victim to replace!n"));
  625. assert(NOTREACHED);
  626. ERR(REG_ASSERT);
  627. return d->ssets;
  628. }