123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- #include "ns-eel-int.h"
- #define NBPW 16
- #define EOF (-1)
- #define YYERRORVAL 256
- static int llset(compileContext *ctx);
- static int llinp(compileContext *ctx, char **exp);
- static int lexgetc(char **exp)
- {
- char c= **exp;
- if (c) (*exp)++;
- return( c != 0 ? c : -1);
- }
- static int tst__b(register int c, char tab[])
- {
- return (tab[(c >> 3) & 037] & (1 << (c & 07)) );
- }
- int nseel_gettoken(compileContext *ctx, char *lltb, int lltbsiz)
- {
- register char *lp, *tp, *ep;
- tp = lltb;
- ep = tp+lltbsiz-1;
- for (lp = ctx->llbuf; lp < ctx->llend && tp < ep;)
- *tp++ = *lp++;
- *tp = 0;
- return(tp-lltb);
- }
- int nseel_yylex(compileContext *ctx, char **exp)
- {
- register int c, st;
- int final, l, llk, i;
- register struct lextab *lp;
- char *cp;
- while (1)
- {
- llk = 0;
- if (llset(ctx)) return(0);
- st = 0;
- final = -1;
- lp = &nseel_lextab;
- do {
- if (lp->lllook && (l = lp->lllook[st])) {
- for (c=0; c<NBPW; c++)
- if (l&(1<<c))
- ctx->llsave[c] = ctx->llp1;
- llk++;
- }
- if ((i = lp->llfinal[st]) != -1) {
- final = i;
- ctx->llend = ctx->llp1;
- }
- if ((c = llinp(ctx,exp)) < 0)
- break;
- if ((cp = lp->llbrk) && llk==0 && tst__b(c, cp)) {
- ctx->llp1--;
- break;
- }
- } while ((st = (*lp->llmove)(lp, c, st)) != -1);
- if (ctx->llp2 < ctx->llp1)
- ctx->llp2 = ctx->llp1;
- if (final == -1) {
- ctx->llend = ctx->llp1;
- if (st == 0 && c < 0)
- return(0);
- if ((cp = lp->llill) && tst__b(c, cp)) {
- continue;
- }
- return(YYERRORVAL);
- }
- if ((c = (final >> 11) & 037))
- ctx->llend = ctx->llsave[c-1];
- if ((c = (*lp->llactr)(ctx,final&03777)) >= 0)
- return(c);
- }
- }
- void nseel_llinit(compileContext *ctx)
- {
- ctx->llp1 = ctx->llp2 = ctx->llend = ctx->llbuf;
- ctx->llebuf = ctx->llbuf + sizeof(ctx->llbuf);
- ctx->lleof = ctx->yyline = 0;
- }
- static int llinp(compileContext *ctx, char **exp)
- {
- register int c;
- register struct lextab *lp;
- register char *cp;
- lp = &nseel_lextab;
- cp = lp->llign;
- for (;;) {
-
- c = (ctx->llp1 < ctx->llp2) ? *ctx->llp1 & 0377 : (ctx->lleof) ? EOF : lexgetc(exp);
- if (c >= 0) {
- if (cp && tst__b(c, cp))
- continue;
- if (ctx->llp1 >= ctx->llebuf) {
- return -1;
- }
- *ctx->llp1++ = c;
- } else
- ctx->lleof = 1;
- return(c);
- }
- }
- static int llset(compileContext *ctx)
- {
- register char *lp1, *lp2;
- for (lp1 = ctx->llbuf, lp2 = ctx->llend; lp2 < ctx->llp2;)
- *lp1++ = *lp2++;
- ctx->llend = ctx->llp1 = ctx->llbuf;
- ctx->llp2 = lp1;
- return(ctx->lleof && lp1 == ctx->llbuf);
- }
|