/***** spin: pangen1.c *****/ /* Copyright (c) 1991-2000 by Lucent Technologies - Bell Laboratories */ /* All Rights Reserved. This software is for educational purposes only. */ /* Permission is given to distribute this code provided that this intro- */ /* ductory message is not removed and no monies are exchanged. */ /* No guarantee is expressed or implied by the distribution of this code. */ /* Software written by Gerard J. Holzmann as part of the book: */ /* `Design and Validation of Computer Protocols,' ISBN 0-13-539925-4, */ /* Prentice Hall, Englewood Cliffs, NJ, 07632. */ /* Send bug-reports and/or questions to: gerard@research.bell-labs.com */ #include "spin.h" #ifdef PC #include "y_tab.h" #else #include "y.tab.h" #endif #include "pangen1.h" #include "pangen3.h" extern FILE *tc, *th, *tt; extern Label *labtab; extern Ordered *all_names; extern ProcList *rdy; extern Queue *qtab; extern Symbol *Fname; extern int lineno, verbose, Pid, separate; extern int nrRdy, nqs, mst, Mpars, claimnr, eventmapnr; extern short has_sorted, has_random, has_provided; int Npars=0, u_sync=0, u_async=0; static Symbol *LstSet=ZS; static int acceptors=0, progressors=0, nBits=0; static int Types[] = { UNSIGNED, BIT, BYTE, CHAN, MTYPE, SHORT, INT, STRUCT }; static int doglobal(char *, int); static void dohidden(void); static void do_init(FILE *, Symbol *); static void end_labs(Symbol *, int); static void put_ptype(char *, int, int, int); static void tc_predef_np(void); static void put_pinit(ProcList *); void walk_struct(FILE *, int, char *, Symbol *, char *, char *, char *); static void reverse_names(ProcList *p) { if (!p) return; reverse_names(p->nxt); fprintf(th, " \"%s\",\n", p->n->name); } void genheader(void) { ProcList *p; int i; if (separate == 2) goto here; fprintf(th, "#define SYNC %d\n", u_sync); fprintf(th, "#define ASYNC %d\n\n", u_async); putunames(th); fprintf(tc, "short Air[] = { "); for (p = rdy, i=0; p; p = p->nxt, i++) fprintf(tc, "%s (short) Air%d", (p!=rdy)?",":"", i); fprintf(tc, ", (short) Air%d", i); /* np_ */ fprintf(tc, " };\n"); fprintf(th, "char *procname[] = {\n"); reverse_names(rdy); fprintf(th, " \":np_:\",\n"); fprintf(th, "};\n\n"); here: for (p = rdy; p; p = p->nxt) put_ptype(p->n->name, p->tn, mst, nrRdy+1); /* +1 for np_ */ put_ptype("np_", nrRdy, mst, nrRdy+1); ntimes(th, 0, 1, Head0); if (separate == 2) { ntimes(th, 0, 1, Head1); LstSet = ZS; (void) doglobal("", PUTV); fprintf(th, " uchar sv[VECTORSZ];\n"); fprintf(th, "} State;\n\n"); } else { ntimes(th, 0, 1, Header); ntimes(th, 0, 1, Head1); LstSet = ZS; (void) doglobal("", PUTV); fprintf(th, " uchar sv[VECTORSZ];\n"); fprintf(th, "} State;\n\n"); dohidden(); } } void genaddproc(void) { ProcList *p; int i; if (separate ==2) goto shortcut; fprintf(tc, "int\naddproc(int n"); for (i = 0; i < Npars; i++) fprintf(tc, ", int par%d", i); ntimes(tc, 0, 1, Addp0); ntimes(tc, 1, nrRdy+1, R5); /* +1 for np_ */ ntimes(tc, 0, 1, Addp1); if (has_provided) { fprintf(tt, "\nint\nprovided(int II, int ot, "); fprintf(tt, "int tt, Trans *t)\n"); fprintf(tt, "{\n\tswitch(ot) {\n"); } shortcut: tc_predef_np(); for (p = rdy; p; p = p->nxt) { Pid = p->tn; put_pinit(p); } if (separate == 2) return; Pid = 0; if (has_provided) { fprintf(tt, "\tdefault: return 1; /* e.g., a claim */\n"); fprintf(tt, "\t}\n\treturn 0;\n}\n"); } ntimes(tc, i, i+1, R6); if (separate == 0) ntimes(tc, 1, nrRdy+1, R5); /* +1 for np_ */ else ntimes(tc, 1, nrRdy, R5); ntimes(tc, 0, 1, R8a); } void genother(void) { ProcList *p; switch (separate) { case 2: if (claimnr >= 0) ntimes(tc, claimnr, claimnr+1, R0); /* claim only */ break; case 1: ntimes(tc, 0, 1, Code0); ntimes(tc, 0, claimnr, R0); /* all except claim */ ntimes(tc, claimnr+1, nrRdy, R0); break; case 0: ntimes(tc, 0, 1, Code0); ntimes(tc, 0, nrRdy+1, R0); /* +1 for np_ */ break; } for (p = rdy; p; p = p->nxt) end_labs(p->n, p->tn); switch (separate) { case 2: if (claimnr >= 0) ntimes(tc, claimnr, claimnr+1, R0a); /* claim only */ return; case 1: ntimes(tc, 0, claimnr, R0a); /* all except claim */ ntimes(tc, claimnr+1, nrRdy, R0a); fprintf(tc, " if (state_tables)\n"); fprintf(tc, " ini_claim(%d, 0);\n", claimnr); break; case 0: ntimes(tc, 0, nrRdy, R0a); /* all */ break; } ntimes(tc, 0, 1, R0b); if (separate == 1 && acceptors == 0) acceptors = 1; /* assume at least 1 acceptstate */ ntimes(th, acceptors, acceptors+1, Code1); ntimes(th, progressors, progressors+1, Code3); ntimes(th, nrRdy+1, nrRdy+2, R2); /* +1 for np_ */ fprintf(tc, " iniglobals();\n"); ntimes(tc, 0, 1, Code2); ntimes(tc, 0, nrRdy, R4); fprintf(tc, "}\n\n"); fprintf(tc, "void\n"); fprintf(tc, "iniglobals(void)\n{\n"); if (doglobal("", INIV) > 0) { fprintf(tc, "#ifdef VAR_RANGES\n"); (void) doglobal("logval(\"", LOGV); fprintf(tc, "#endif\n"); } ntimes(tc, 1, nqs+1, R3); fprintf(tc, "\tMaxbody = max(Maxbody, sizeof(State)-VECTORSZ);"); fprintf(tc, "\n}\n\n"); } void gensvmap(void) { ntimes(tc, 0, 1, SvMap); } static struct { char *s, *t; int n, m, p; } ln[] = { {"end", "stopstate", 3, 0, 0}, {"progress", "progstate", 8, 0, 1}, {"accept", "accpstate", 6, 1, 0}, {0, 0, 0, 0, 0}, }; static void end_labs(Symbol *s, int i) { int oln = lineno; Symbol *ofn = Fname; Label *l; int j; char foo[128]; if ((i == claimnr && separate == 1) || (i != claimnr && separate == 2)) return; for (l = labtab; l; l = l->nxt) for (j = 0; ln[j].n; j++) if (strncmp(l->s->name, ln[j].s, ln[j].n) == 0 && strcmp(l->c->name, s->name) == 0) { fprintf(tc, "\t%s[%d][%d] = 1;\n", ln[j].t, i, l->e->seqno); acceptors += ln[j].m; progressors += ln[j].p; if (l->e->status & D_ATOM) { sprintf(foo, "%s label inside d_step", ln[j].s); goto complain; } if (l->e->status & ATOM) { sprintf(foo, "%s label inside atomic", ln[j].s); complain: lineno = l->e->n->ln; Fname = l->e->n->fn; printf("spin: %3d:%s, warning, %s - is invisible\n", lineno, Fname?Fname->name:"-", foo); } } /* visible states -- through remote refs: */ for (l = labtab; l; l = l->nxt) if (l->visible && strcmp(l->s->context->name, s->name) == 0) fprintf(tc, "\tvisstate[%d][%d] = 1;\n", i, l->e->seqno); lineno = oln; Fname = ofn; } void ntimes(FILE *fd, int n, int m, char *c[]) { int i, j; for (j = 0; c[j]; j++) for (i = n; i < m; i++) { fprintf(fd, c[j], i, i, i, i, i, i); fprintf(fd, "\n"); } } void prehint(Symbol *s) { Lextok *n; printf("spin: warning, "); if (!s) return; n = (s->context != ZS)?s->context->ini:s->ini; if (n) printf("line %3d %s, ", n->ln, n->fn->name); } void checktype(Symbol *sp, char *s) { char buf[128]; int i; if (!s || (sp->type != BYTE && sp->type != SHORT && sp->type != INT)) return; if (sp->hidden&16) /* formal parameter */ { ProcList *p; Lextok *f, *t; int posnr = 0; for (p = rdy; p; p = p->nxt) if (p->n->name && strcmp(s, p->n->name) == 0) break; if (p) for (f = p->p; f; f = f->rgt) /* list of types */ for (t = f->lft; t; t = t->rgt, posnr++) if (t->sym && strcmp(t->sym->name, sp->name) == 0) { checkrun(sp, posnr); return; } } else if (!(sp->hidden&4)) { if (!(verbose&32)) return; sputtype(buf, sp->type); i = strlen(buf); while (buf[--i] == ' ') buf[i] = '\0'; prehint(sp); if (sp->context) printf("proctype %s:", s); else printf("global"); printf(" '%s %s' could be declared 'bit %s'\n", buf, sp->name, sp->name); } else if (sp->type != BYTE && !(sp->hidden&8)) { if (!(verbose&32)) return; sputtype(buf, sp->type); i = strlen(buf); while (buf[--i] == ' ') buf[i] = '\0'; prehint(sp); if (sp->context) printf("proctype %s:", s); else printf("global"); printf(" '%s %s' could be declared 'byte %s'\n", buf, sp->name, sp->name); } } int dolocal(FILE *ofd, char *pre, int dowhat, int p, char *s, char *how) { int h, j, k=0; extern int nr_errs; Ordered *walk; Symbol *sp; char buf[64], buf2[128], buf3[128]; for (j = 0; j < 8; j++) for (h = 0; h <= 1; h++) for (walk = all_names; walk; walk = walk->next) { sp = walk->entry; if (sp->context && !sp->owner && sp->type == Types[j] && ((h == 0 && sp->nel == 1) || (h == 1 && sp->nel > 1)) && strcmp(s, sp->context->name) == 0) { switch (dowhat) { case LOGV: if (sp->type == CHAN && verbose == 0) break; sprintf(buf, "%s%s:", pre, s); { sprintf(buf2, "\", ((P%d *)pptr(h))->", p); sprintf(buf3, ");\n", p); } do_var(ofd, dowhat, "", sp, buf, buf2, buf3); break; case INIV: checktype(sp, s); /* fall through */ if (sp->hidden&16) { k++; break; } case PUTV: sprintf(buf, "((P%d *)pptr(h))->", p); do_var(ofd, dowhat, buf, sp, "", " = ", ";\n"); k++; break; } if (strcmp(s, ":never:") == 0) { printf("error: %s defines local %s\n", s, sp->name); nr_errs++; } } } return k; } static int doglobal(char *pre, int dowhat) { Ordered *walk; Symbol *sp; int j, cnt = 0; for (j = 0; j < 8; j++) for (walk = all_names; walk; walk = walk->next) { sp = walk->entry; if (!sp->context && !sp->owner /* && !(sp->hidden&1) */ && sp->type == Types[j]) { if (Types[j] != MTYPE || !ismtype(sp->name)) switch (dowhat) { case LOGV: if (sp->type == CHAN && verbose == 0) break; if (sp->hidden&1) break; do_var(tc, dowhat, "", sp, pre, "\", now.", ");\n"); break; case INIV: checktype(sp, (char *) 0); cnt++; /* fall through */ case PUTV: do_var(tc, dowhat, (sp->hidden&1)?"":"now.", sp, "", " = ", ";\n"); break; } } } return cnt; } static void dohidden(void) { Ordered *walk; Symbol *sp; int j; for (j = 0; j < 8; j++) for (walk = all_names; walk; walk = walk->next) { sp = walk->entry; if ((sp->hidden&1) && sp->type == Types[j]) { if (sp->context || sp->owner) fatal("cannot hide non-globals (%s)", sp->name); if (sp->type == CHAN) fatal("cannot hide channels (%s)", sp->name); fprintf(th, "/* hidden variable: */"); typ2c(sp); } } fprintf(th, "int _; /* a predefined write-only variable */\n\n"); } void do_var(FILE *ofd, int dowhat, char *s, Symbol *sp, char *pre, char *sep, char *ter) { int i; switch(dowhat) { case PUTV: if (sp->hidden&1) break; typ2c(sp); break; case LOGV: case INIV: if (sp->type == STRUCT) { /* struct may contain a chan */ walk_struct(ofd, dowhat, s, sp, pre, sep, ter); break; } if (!sp->ini && dowhat != LOGV) /* it defaults to 0 */ break; if (sp->nel == 1) { fprintf(ofd, "\t\t%s%s%s%s", pre, s, sp->name, sep); if (dowhat == LOGV) fprintf(ofd, "%s%s", s, sp->name); else do_init(ofd, sp); fprintf(ofd, "%s", ter); } else for (i = 0; i < sp->nel; i++) { fprintf(ofd, "\t\t%s%s%s[%d]%s", pre, s, sp->name, i, sep); if (dowhat == LOGV) fprintf(ofd, "%s%s[%d]", s, sp->name, i); else do_init(ofd, sp); fprintf(ofd, "%s", ter); } break; } } static void do_init(FILE *ofd, Symbol *sp) { int i; extern Queue *ltab[]; if (sp->ini && sp->type == CHAN && ((i = qmake(sp)) > 0)) { if (sp->ini->ntyp == CHAN) fprintf(ofd, "addqueue(%d, %d)", i, ltab[i-1]->nslots == 0); else fprintf(ofd, "%d", i); } else putstmnt(ofd, sp->ini, 0); } static int blog(int n) /* for small log2 without rounding problems */ { int m=1, r=2; while (r < n) { m++; r *= 2; } return 1+m; } static void put_ptype(char *s, int i, int m0, int m1) { int k; fprintf(th, "typedef struct P%d { /* %s */\n", i, s); fprintf(th, " unsigned _pid : 8; /* 0..255 */\n"); fprintf(th, " unsigned _t : %d; /* proctype */\n", blog(m1)); fprintf(th, " unsigned _p : %d; /* state */\n", blog(m0)); LstSet = ZS; nBits = 8 + blog(m1) + blog(m0); k = dolocal(tc, "", PUTV, i, s, ""); /* includes pars */ fprintf(th, "} P%d;\n", i); if (!LstSet && k > 0) fprintf(th, "#define Air%d 0\n", i); else { fprintf(th, "#define Air%d (sizeof(P%d) - ", i, i); if (k == 0) { fprintf(th, "%d", (nBits+7)/8); goto done; } if ((LstSet->type != BIT && LstSet->type != UNSIGNED) || LstSet->nel != 1) { fprintf(th, "Offsetof(P%d, %s%s) - %d*sizeof(", i, LstSet->name, #if 1 "", #else (LstSet->nel > 1)?"[0]":"", #endif LstSet->nel); } switch(LstSet->type) { case UNSIGNED: fprintf(th, "%d", (nBits+7)/8); break; case BIT: if (LstSet->nel == 1) { fprintf(th, "%d", (nBits+7)/8); break; } /* else fall through */ case MTYPE: case BYTE: case CHAN: fprintf(th, "uchar)"); break; case SHORT: fprintf(th, "short)"); break; case INT: fprintf(th, "int)"); break; default: fatal("cannot happen Air %s", LstSet->name); } done: fprintf(th, ")\n"); } } static void tc_predef_np(void) { int i = nrRdy; /* 1+ highest proctype nr */ fprintf(th, "#define _NP_ %d\n", i); if (separate == 2) fprintf(th, "extern "); fprintf(th, "uchar reached%d[3]; /* np_ */\n", i); fprintf(th, "#define nstates%d 3 /* np_ */\n", i); fprintf(th, "#define endstate%d 2 /* np_ */\n\n", i); fprintf(th, "#define start%d 0 /* np_ */\n", i); fprintf(tc, "\tcase %d: /* np_ */\n", i); if (separate == 1) { fprintf(tc, "\t\tini_claim(%d, h);\n", i); } else { fprintf(tc, "\t\t((P%d *)pptr(h))->_t = %d;\n", i, i); fprintf(tc, "\t\t((P%d *)pptr(h))->_p = 0;\n", i); fprintf(tc, "\t\treached%d[0] = 1;\n", i); fprintf(tc, "\t\taccpstate[%d][1] = 1;\n", i); } fprintf(tc, "\t\tbreak;\n"); } static void put_pinit(ProcList *P) { Lextok *fp, *fpt, *t; Element *e = P->s->frst; Symbol *s = P->n; Lextok *p = P->p; int i = P->tn; int ini, j, k; if (i == claimnr && separate == 1) { fprintf(tc, "\tcase %d: /* %s */\n", i, s->name); fprintf(tc, "\t\tini_claim(%d, h);\n", i); fprintf(tc, "\t\tbreak;\n"); return; } if (i != claimnr && separate == 2) return; ini = huntele(e, e->status)->seqno; fprintf(th, "#define start%d %d\n", i, ini); if (i == claimnr) fprintf(th, "#define start_claim %d\n", ini); if (i == eventmapnr) fprintf(th, "#define start_event %d\n", ini); fprintf(tc, "\tcase %d: /* %s */\n", i, s->name); fprintf(tc, "\t\t((P%d *)pptr(h))->_t = %d;\n", i, i); fprintf(tc, "\t\t((P%d *)pptr(h))->_p = %d;", i, ini); fprintf(tc, " reached%d[%d]=1;\n", i, ini); if (has_provided) { fprintf(tt, "\tcase %d: /* %s */\n\t\t", i, s->name); if (P->prov) { fprintf(tt, "if ("); putstmnt(tt, P->prov, 0); fprintf(tt, ")\n\t\t\t"); } fprintf(tt, "return 1;\n"); if (P->prov) fprintf(tt, "\t\tbreak;\n"); } fprintf(tc, "\t\t/* params: */\n"); for (fp = p, j=0; fp; fp = fp->rgt) for (fpt = fp->lft; fpt; fpt = fpt->rgt, j++) { t = (fpt->ntyp == ',') ? fpt->lft : fpt; if (t->sym->nel != 1) { lineno = t->ln; Fname = t->fn; fatal("array in parameter list, %s", t->sym->name); } fprintf(tc, "\t\t((P%d *)pptr(h))->", i); if (t->sym->type == STRUCT) { if (full_name(tc, t, t->sym, 1)) { lineno = t->ln; Fname = t->fn; fatal("hidden array in parameter, %s", t->sym->name); } } else fprintf(tc, "%s", t->sym->name); fprintf(tc, " = par%d;\n", j); } fprintf(tc, "\t\t/* locals: */\n"); k = dolocal(tc, "", INIV, i, s->name, ""); if (k > 0) { fprintf(tc, "#ifdef VAR_RANGES\n"); (void) dolocal(tc, "logval(\"", LOGV, i, s->name, ""); fprintf(tc, "#endif\n"); } dumpclaims(tc, i, s->name); fprintf(tc, "\t break;\n"); } Element * huntstart(Element *f) { Element *e = f; if (e->n) { if (e->n->ntyp == '.' && e->nxt) e = e->nxt; else if (e->n->ntyp == ATOMIC || e->n->ntyp == D_STEP || e->n->ntyp == NON_ATOMIC) e->n->sl->this->last->nxt = e->nxt; else if (e->n->ntyp == UNLESS) return e->sub->this->frst; } return e; } Element * huntele(Element *f, int o) { Element *g, *e = f; int cnt; /* a precaution against loops */ if (e) for (cnt=0; cnt < 10 && e->n; cnt++) { switch (e->n->ntyp) { case GOTO: g = get_lab(e->n,1); cross_dsteps(e->n, g->n); break; case '.': case BREAK: if (!e->nxt) return e; g = e->nxt; break; case UNLESS: g = huntele(e->sub->this->frst, o); break; case D_STEP: case ATOMIC: case NON_ATOMIC: e->n->sl->this->last->nxt = e->nxt; default: /* fall through */ return e; } if ((o & ATOM) && !(g->status & ATOM)) return e; e = g; } return e; } void typ2c(Symbol *sp) { int wsbits = sizeof(long)*8; /* wordsize in bits */ switch (sp->type) { case UNSIGNED: if (sp->hidden&1) fprintf(th, "\tuchar %s;", sp->name); else fprintf(th, "\tunsigned %s : %d", sp->name, sp->nbits); LstSet = sp; if (nBits%wsbits > 0 && wsbits - nBits%wsbits < sp->nbits) { /* must padd to a word-boundary */ nBits += wsbits - nBits%wsbits; } nBits += sp->nbits; break; case BIT: if (sp->nel == 1 && !(sp->hidden&1)) { fprintf(th, "\tunsigned %s : 1", sp->name); LstSet = sp; nBits++; break; } /* else fall through */ printf("spin: warning: bit-array %s[%d] mapped to byte-array\n", sp->name, sp->nel); nBits += 8*sp->nel; /* mapped onto array of uchars */ case MTYPE: case BYTE: case CHAN: /* good for up to 255 channels */ fprintf(th, "\tuchar %s", sp->name); LstSet = sp; break; case SHORT: fprintf(th, "\tshort %s", sp->name); LstSet = sp; break; case INT: fprintf(th, "\tint %s", sp->name); LstSet = sp; break; case STRUCT: if (!sp->Snm) fatal("undeclared structure element %s", sp->name); fprintf(th, "\tstruct %s %s", sp->Snm->name, sp->name); LstSet = ZS; break; case PREDEF: return; default: fatal("variable %s undeclared", sp->name); } if (sp->nel != 1) fprintf(th, "[%d]", sp->nel); fprintf(th, ";\n"); } static void ncases(FILE *fd, int p, int n, int m, char *c[]) { int i, j; for (j = 0; c[j]; j++) for (i = n; i < m; i++) { fprintf(fd, c[j], i, p, i); fprintf(fd, "\n"); } } void genaddqueue(void) { char buf0[256]; int j; Queue *q; ntimes(tc, 0, 1, Addq0); fprintf(th, "short q_flds[%d];\n", nqs+1); fprintf(th, "short q_max[%d];\n", nqs+1); for (q = qtab; q; q = q->nxt) { j = q->qid; fprintf(tc, "\tcase %d: j = sizeof(Q%d);", j, j); fprintf(tc, " q_flds[%d] = %d;", j, q->nflds); fprintf(tc, " q_max[%d] = %d;", j, max(1,q->nslots)); fprintf(tc, " break;\n"); ntimes(th, j, j+1, R9); for (j = 0; j < q->nflds; j++) { switch (q->fld_width[j]) { case BIT: if (q->nflds != 1) { fprintf(th, "\t\tunsigned"); fprintf(th, " fld%d : 1;\n", j); break; } /* else fall through: smaller struct */ case MTYPE: case CHAN: case BYTE: fprintf(th, "\t\tuchar fld%d;\n", j); break; case SHORT: fprintf(th, "\t\tshort fld%d;\n", j); break; case INT: fprintf(th, "\t\tint fld%d;\n", j); break; default: fatal("bad channel spec", ""); } } fprintf(th, " } contents[%d];\n", max(1, q->nslots)); fprintf(th, "} Q%d;\n", q->qid); } ntimes(th, 0, 1, R10); ntimes(tc, 0, 1, Addq1); if (has_random) { fprintf(th, "int Q_has(int"); for (j = 0; j < Mpars; j++) fprintf(th, ", int, int"); fprintf(th, ");\n"); fprintf(tc, "int\nQ_has(int into"); for (j = 0; j < Mpars; j++) fprintf(tc, ", int want%d, int fld%d", j, j); fprintf(tc, ")\n"); fprintf(tc, "{ int i;\n\n"); fprintf(tc, " if (!into--)\n"); fprintf(tc, " uerror(\"ref to unknown chan "); fprintf(tc, "(recv-poll)\");\n\n"); fprintf(tc, " if (into >= now._nr_qs || into < 0)\n"); fprintf(tc, " Uerror(\"qrecv bad queue#\");\n\n"); fprintf(tc, " for (i = 0; i < ((Q0 *)qptr(into))->Qlen;"); fprintf(tc, " i++)\n"); fprintf(tc, " {\n"); for (j = 0; j < Mpars; j++) { fprintf(tc, " if (want%d && ", j); fprintf(tc, "qrecv(into+1, i, %d, 0) != fld%d)\n", j, j); fprintf(tc, " continue;\n"); } fprintf(tc, " return i+1;\n"); fprintf(tc, " }\n"); fprintf(tc, " return 0;\n"); fprintf(tc, "}\n"); } fprintf(tc, "void\nqsend(int into, int sorted"); for (j = 0; j < Mpars; j++) fprintf(tc, ", int fld%d", j); fprintf(tc, ")\n"); ntimes(tc, 0, 1, Addq11); for (q = qtab; q; q = q->nxt) { sprintf(buf0, "((Q%d *)z)->", q->qid); fprintf(tc, "\tcase %d:%s\n", q->qid, (q->nslots)?"":" /* =rv= */"); if (q->nslots == 0) /* reset handshake point */ fprintf(tc, "\t\t(trpt+2)->o_m = 0;\n"); if (has_sorted) { fprintf(tc, "\t\tif (!sorted) goto append%d;\n", q->qid); fprintf(tc, "\t\tfor (j = 0; j < %sQlen; j++)\n", buf0); fprintf(tc, "\t\t{\t/* find insertion point */\n"); sprintf(buf0, "((Q%d *)z)->contents[j].fld", q->qid); for (j = 0; j < q->nflds; j++) { fprintf(tc, "\t\t\tif (fld%d > %s%d) continue;\n", j, buf0, j); fprintf(tc, "\t\t\tif (fld%d < %s%d) ", j, buf0, j); fprintf(tc, "goto found%d;\n\n", q->qid); } fprintf(tc, "\t\t}\n"); fprintf(tc, "\tfound%d:\n", q->qid); sprintf(buf0, "((Q%d *)z)->", q->qid); fprintf(tc, "\t\tfor (k = %sQlen - 1; k >= j; k--)\n", buf0); fprintf(tc, "\t\t{\t/* shift up */\n"); for (j = 0; j < q->nflds; j++) { fprintf(tc, "\t\t\t%scontents[k+1].fld%d = ", buf0, j); fprintf(tc, "%scontents[k].fld%d;\n", buf0, j); } fprintf(tc, "\t\t}\n"); fprintf(tc, "\tappend%d:\t/* insert in slot j */\n", q->qid); } fprintf(tc, "\t\t(trpt+1)->bup.oval = j;\n"); fprintf(tc, "\t\t%sQlen = %sQlen + 1;\n", buf0, buf0); sprintf(buf0, "((Q%d *)z)->contents[j].fld", q->qid); for (j = 0; j < q->nflds; j++) fprintf(tc, "\t\t%s%d = fld%d;\n", buf0, j, j); fprintf(tc, "\t\tbreak;\n"); } ntimes(tc, 0, 1, Addq2); for (q = qtab; q; q = q->nxt) fprintf(tc, "\tcase %d: return %d;\n", q->qid, (!q->nslots)); ntimes(tc, 0, 1, Addq3); for (q = qtab; q; q = q->nxt) fprintf(tc, "\tcase %d: return (q_sz(from) == %d);\n", q->qid, max(1, q->nslots)); ntimes(tc, 0, 1, Addq4); for (q = qtab; q; q = q->nxt) { sprintf(buf0, "((Q%d *)z)->", q->qid); fprintf(tc, " case %d:%s\n\t\t", q->qid, (q->nslots)?"":" /* =rv= */"); if (q->nflds == 1) { fprintf(tc, "if (fld == 0) r = %s", buf0); fprintf(tc, "contents[slot].fld0;\n"); } else { fprintf(tc, "switch (fld) {\n"); ncases(tc, q->qid, 0, q->nflds, R12); fprintf(tc, "\t\tdefault: Uerror"); fprintf(tc, "(\"too many fields in recv\");\n"); fprintf(tc, "\t\t}\n"); } fprintf(tc, "\t\tif (done)\n"); fprintf(tc, "\t\t{ j = %sQlen;\n", buf0); fprintf(tc, "\t\t %sQlen = --j;\n", buf0); fprintf(tc, "\t\t for (k=slot; kcontents", q->qid); for (j = 0; j < q->nflds; j++) { fprintf(tc, "\t%s[k].fld%d = \n", buf0, j); fprintf(tc, "\t\t%s[k+1].fld%d;\n", buf0, j); } fprintf(tc, "\t\t }\n"); for (j = 0; j < q->nflds; j++) fprintf(tc, "%s[j].fld%d = 0;\n", buf0, j); fprintf(tc, "\t\t\tif (fld+1 != %d)\n\t\t\t", q->nflds); fprintf(tc, "\tuerror(\"missing pars in receive\");\n"); /* incompletely received msgs cannot be unrecv'ed */ fprintf(tc, "\t\t}\n"); fprintf(tc, "\t\tbreak;\n"); } ntimes(tc, 0, 1, Addq5); for (q = qtab; q; q = q->nxt) fprintf(tc, " case %d: j = sizeof(Q%d); break;\n", q->qid, q->qid); ntimes(tc, 0, 1, R8b); ntimes(th, 0, 1, Proto); /* tag on function prototypes */ fprintf(th, "void qsend(int, int"); for (j = 0; j < Mpars; j++) fprintf(th, ", int"); fprintf(th, ");\n"); fprintf(th, "#define Addproc(x) addproc(x"); for (j = 0; j < Npars; j++) fprintf(th, ", 0"); fprintf(th, ")\n"); }