1984-07-02 15:35:56 +00:00
|
|
|
/*
|
1987-03-10 01:26:51 +00:00
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
1984-07-02 15:35:56 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ip_spec.h"
|
|
|
|
#include <stdio.h>
|
2019-03-17 14:41:25 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
1991-08-27 09:45:37 +00:00
|
|
|
#include <em_spec.h>
|
|
|
|
#include <em_flag.h>
|
1984-07-02 15:35:56 +00:00
|
|
|
|
|
|
|
/* This program reads the human readable interpreter specification
|
2019-03-17 14:41:25 +00:00
|
|
|
and produces a efficient machine representation that can be
|
|
|
|
translated by a C-compiler.
|
|
|
|
*/
|
1984-07-02 15:35:56 +00:00
|
|
|
|
|
|
|
#define NOTAB 600 /* The max no of interpreter specs */
|
|
|
|
#define ESCAP 256
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
struct opform intable[NOTAB];
|
|
|
|
struct opform *lastform = intable - 1;
|
1984-07-02 15:35:56 +00:00
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
int nerror = 0;
|
|
|
|
int atend = 0;
|
|
|
|
int line = 1;
|
|
|
|
int maxinsl = 0;
|
1984-07-02 15:35:56 +00:00
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
extern char em_mnem[][4];
|
|
|
|
char esca[] = "escape";
|
1984-07-02 15:35:56 +00:00
|
|
|
#define ename(no) ((no)==ESCAP?esca:em_mnem[(no)])
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
extern char em_flag[];
|
|
|
|
|
|
|
|
|
|
|
|
/* Forward declarations */
|
|
|
|
static int readchar(void);
|
|
|
|
static void pushback(int);
|
|
|
|
static void readin(void);
|
|
|
|
static char *ident(void);
|
|
|
|
static int getmnem(char *);
|
|
|
|
static void writeout(void);
|
|
|
|
static void checkall(void);
|
|
|
|
static void chkc(int, int, int);
|
|
|
|
static void ckop(int, int, int, int);
|
|
|
|
static int oplength(struct opform *);
|
|
|
|
static void check(int);
|
|
|
|
static int decflag(char *);
|
|
|
|
int compare(const void *, const void *);
|
|
|
|
|
|
|
|
static void error(char *format, ...);
|
|
|
|
static void mess(char *format, ...);
|
|
|
|
static void fatal(char *format, ...);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
if (argc > 1)
|
|
|
|
{
|
|
|
|
if (freopen(argv[1], "r", stdin) == NULL)
|
|
|
|
{
|
|
|
|
fatal("Cannot open %s", argv[1]);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
if (argc > 2)
|
|
|
|
{
|
|
|
|
if (freopen(argv[2], "w", stdout) == NULL)
|
|
|
|
{
|
|
|
|
fatal("Cannot create %s", argv[2]);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
if (argc > 3)
|
|
|
|
{
|
|
|
|
fatal("%s [ file [ file ] ]", argv[0]);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
atend = 0;
|
1984-07-02 15:35:56 +00:00
|
|
|
readin();
|
2019-03-17 14:41:25 +00:00
|
|
|
atend = 1;
|
1984-07-02 15:35:56 +00:00
|
|
|
checkall();
|
2019-03-17 14:41:25 +00:00
|
|
|
if (nerror == 0)
|
|
|
|
{
|
1984-07-02 15:35:56 +00:00
|
|
|
writeout();
|
|
|
|
}
|
1987-03-09 12:55:24 +00:00
|
|
|
exit(nerror);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static void readin(void)
|
|
|
|
{
|
|
|
|
register struct opform *nextform;
|
|
|
|
char *firstid;
|
|
|
|
register int maxl;
|
|
|
|
|
|
|
|
maxl = 0;
|
|
|
|
for (nextform = intable; !feof(stdin) && nextform < &intable[NOTAB];)
|
|
|
|
{
|
|
|
|
firstid = ident();
|
|
|
|
if (*firstid == '\n' || feof(stdin))
|
|
|
|
continue;
|
|
|
|
lastform = nextform;
|
|
|
|
nextform->i_opcode = getmnem(firstid);
|
|
|
|
nextform->i_flag = decflag(ident());
|
|
|
|
switch (nextform->i_flag & OPTYPE)
|
|
|
|
{
|
1984-07-02 15:35:56 +00:00
|
|
|
case OPMINI:
|
|
|
|
case OPSHORT:
|
2019-03-17 14:41:25 +00:00
|
|
|
nextform->i_num = atoi(ident());
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
nextform->i_low = atoi(ident());
|
|
|
|
if (*ident() != '\n')
|
|
|
|
{
|
|
|
|
int c;
|
1984-07-02 15:35:56 +00:00
|
|
|
error("End of line expected");
|
2019-03-17 14:41:25 +00:00
|
|
|
while ((c = readchar()) != '\n' && c != EOF)
|
|
|
|
;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
if (oplength(nextform) > maxl)
|
|
|
|
maxl = oplength(nextform);
|
|
|
|
nextform++;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
if (!feof(stdin))
|
|
|
|
fatal("Internal table too small");
|
|
|
|
maxinsl = maxl;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static char *ident(void)
|
|
|
|
{
|
1984-07-02 15:35:56 +00:00
|
|
|
/* skip spaces and tabs, anything up to space,tab or eof is
|
2019-03-17 14:41:25 +00:00
|
|
|
a identifier.
|
|
|
|
Anything from # to end-of-line is an end-of-line.
|
|
|
|
End-of-line is an identifier all by itself.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static char array[200];
|
|
|
|
register int c;
|
|
|
|
register char *cc;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
c = readchar();
|
|
|
|
} while (c == ' ' || c == '\t');
|
|
|
|
for (cc = array; cc < &array[(sizeof array) - 1]; cc++)
|
|
|
|
{
|
|
|
|
if (c == '#')
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
c = readchar();
|
|
|
|
} while (c != '\n' && c != EOF);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
*cc = c;
|
|
|
|
if (c == '\n' && cc == array)
|
|
|
|
break;
|
|
|
|
c = readchar();
|
|
|
|
if (c == '\n')
|
|
|
|
{
|
|
|
|
pushback(c);
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
if (c == ' ' || c == '\t' || c == EOF)
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
*++cc = 0;
|
|
|
|
return array;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static int getmnem(char *str)
|
|
|
|
{
|
|
|
|
char (*ptr)[4];
|
1984-07-02 15:35:56 +00:00
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
for (ptr = em_mnem; *ptr <= &em_mnem[sp_lmnem - sp_fmnem][0]; ptr++)
|
|
|
|
{
|
|
|
|
if (strcmp(*ptr, str) == 0)
|
|
|
|
return (ptr - em_mnem);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
error("Illegal mnemonic");
|
|
|
|
return 0;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
/* VARARGS1 */
|
|
|
|
static void error(char *format, ...)
|
|
|
|
{
|
|
|
|
va_list argptr;
|
|
|
|
if (!atend)
|
|
|
|
fprintf(stderr, "line %d: ", line);
|
|
|
|
va_start(argptr, format);
|
|
|
|
vfprintf(stderr, format, argptr);
|
|
|
|
va_end(argptr);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
nerror++;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
/* VARARGS1 */
|
|
|
|
static void mess(char *format, ...)
|
|
|
|
{
|
|
|
|
va_list argptr;
|
|
|
|
if (!atend)
|
|
|
|
fprintf(stderr, "line %d: ", line);
|
|
|
|
va_start(argptr, format);
|
|
|
|
vfprintf(stderr, format, argptr);
|
|
|
|
va_end(argptr);
|
|
|
|
fprintf(stderr, "\n");
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
/* VARARGS1 */
|
|
|
|
static void fatal(char *format, ...)
|
|
|
|
{
|
|
|
|
va_list argptr;
|
|
|
|
if (!atend)
|
|
|
|
fprintf(stderr, "line %d: ", line);
|
|
|
|
va_start(argptr, format);
|
|
|
|
vfprintf(stderr, format, argptr);
|
|
|
|
va_end(argptr);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
exit(EXIT_FAILURE);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define ILLGL -1
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static void check(int val)
|
|
|
|
{
|
|
|
|
if (val != ILLGL)
|
|
|
|
error("Illegal flag combination");
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static int decflag(char *str)
|
|
|
|
{
|
|
|
|
int type;
|
|
|
|
int escape;
|
|
|
|
int range;
|
|
|
|
int wordm;
|
|
|
|
int notzero;
|
|
|
|
|
|
|
|
type = escape = range = wordm = notzero = ILLGL;
|
|
|
|
while (*str)
|
|
|
|
switch (*str++)
|
|
|
|
{
|
|
|
|
case 'm':
|
|
|
|
check(type);
|
|
|
|
type = OPMINI;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
check(type);
|
|
|
|
type = OPSHORT;
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
check(type);
|
|
|
|
type = OPNO;
|
|
|
|
break;
|
|
|
|
case '1':
|
|
|
|
check(type);
|
|
|
|
type = OP8;
|
|
|
|
break;
|
|
|
|
case '2':
|
|
|
|
check(type);
|
|
|
|
type = OP16;
|
|
|
|
break;
|
|
|
|
case '4':
|
|
|
|
check(type);
|
|
|
|
type = OP32;
|
|
|
|
break;
|
|
|
|
case '8':
|
|
|
|
check(type);
|
|
|
|
type = OP64;
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
check(type);
|
|
|
|
type = OP16U;
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
check(escape);
|
|
|
|
escape = 0;
|
|
|
|
break;
|
|
|
|
case 'N':
|
|
|
|
check(range);
|
|
|
|
range = 2;
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
check(range);
|
|
|
|
range = 1;
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
check(wordm);
|
|
|
|
wordm = 0;
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
check(notzero);
|
|
|
|
notzero = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("Unknown flag");
|
|
|
|
}
|
|
|
|
if (type == ILLGL)
|
|
|
|
error("Type must be specified");
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case OP64:
|
|
|
|
case OP32:
|
|
|
|
if (escape != ILLGL)
|
|
|
|
error("Conflicting escapes");
|
|
|
|
escape = ILLGL;
|
|
|
|
case OP16:
|
|
|
|
case OP16U:
|
|
|
|
case OP8:
|
|
|
|
case OPSHORT:
|
|
|
|
case OPNO:
|
|
|
|
if (notzero != ILLGL)
|
|
|
|
mess("Improbable OPNZ");
|
|
|
|
if (type == OPNO && range != ILLGL)
|
|
|
|
{
|
|
|
|
mess("No operand in range");
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
if (escape != ILLGL)
|
|
|
|
type |= OPESC;
|
|
|
|
if (wordm != ILLGL)
|
|
|
|
type |= OPWORD;
|
|
|
|
switch (range)
|
|
|
|
{
|
|
|
|
case ILLGL:
|
|
|
|
type |= OP_BOTH;
|
|
|
|
if (type == OPMINI || type == OPSHORT)
|
|
|
|
error("Minies and shorties must have P or N");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
type |= OP_POS;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
type |= OP_NEG;
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
if (notzero != ILLGL)
|
|
|
|
type |= OPNZ;
|
|
|
|
return type;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static void writeout(void)
|
|
|
|
{
|
|
|
|
register struct opform *next;
|
|
|
|
int elem[sp_lmnem - sp_fmnem + 1 + 1];
|
|
|
|
/* for each op points to first of descr. */
|
|
|
|
register int i, currop;
|
|
|
|
int nch;
|
|
|
|
|
|
|
|
qsort(intable, (lastform - intable) + 1, sizeof intable[0], compare);
|
|
|
|
|
|
|
|
printf("int\tmaxinsl\t= %d ;\n", maxinsl);
|
|
|
|
currop = -1;
|
|
|
|
nch = 0;
|
|
|
|
printf("char opchoice[] = {\n");
|
|
|
|
for (next = intable; next <= lastform; next++)
|
|
|
|
{
|
|
|
|
if ((next->i_opcode & 0377) != currop)
|
|
|
|
{
|
|
|
|
for (currop++; currop < (next->i_opcode & 0377); currop++)
|
|
|
|
{
|
|
|
|
elem[currop] = nch;
|
|
|
|
error("Missing opcode %s", em_mnem[currop]);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
elem[currop] = nch;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
printf("%d, %d,", next->i_flag & 0377, next->i_low & 0377);
|
|
|
|
nch += 2;
|
|
|
|
switch (next->i_flag & OPTYPE)
|
|
|
|
{
|
|
|
|
case OPMINI:
|
|
|
|
case OPSHORT:
|
|
|
|
printf("%d,", next->i_num & 0377);
|
|
|
|
nch++;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
printf("\n");
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
for (currop++; currop <= sp_lmnem - sp_fmnem; currop++)
|
|
|
|
{
|
|
|
|
elem[currop] = nch;
|
|
|
|
error("Missing opcode %s", em_mnem[currop]);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
elem[sp_lmnem - sp_fmnem + 1] = nch;
|
1984-07-02 15:35:56 +00:00
|
|
|
printf("0 } ;\n\nchar *opindex[] = {\n");
|
2019-03-25 16:59:16 +00:00
|
|
|
for (i = 0; i < sp_lmnem - sp_fmnem + 1; i++)
|
2019-03-17 14:41:25 +00:00
|
|
|
{
|
|
|
|
printf(" &opchoice[%d], /* %d = %s */\n", elem[i], i, em_mnem[i]);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-30 16:53:09 +00:00
|
|
|
printf(" &opchoice[%d], /* %d = %s */\n", elem[sp_lmnem - sp_fmnem + 1],
|
|
|
|
sp_lmnem - sp_fmnem + 1, "");
|
2019-03-17 14:41:25 +00:00
|
|
|
printf("} ;\n");
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
int compare(const void *a1, const void *b1)
|
|
|
|
{
|
|
|
|
struct opform *a = (struct opform *)(a1);
|
|
|
|
struct opform *b = (struct opform *)(b1);
|
|
|
|
|
|
|
|
if (a->i_opcode != b->i_opcode)
|
|
|
|
{
|
|
|
|
return (a->i_opcode & 0377) - (b->i_opcode & 0377);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
return oplength(a) - oplength(b);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static int oplength(struct opform *a)
|
|
|
|
{
|
|
|
|
int cnt;
|
|
|
|
|
|
|
|
cnt = 1;
|
|
|
|
if (a->i_flag & OPESC)
|
|
|
|
cnt++;
|
|
|
|
switch (a->i_flag & OPTYPE)
|
|
|
|
{
|
|
|
|
case OPNO:
|
|
|
|
case OPMINI:
|
|
|
|
break;
|
|
|
|
case OP8:
|
|
|
|
case OPSHORT:
|
|
|
|
cnt++;
|
|
|
|
break;
|
|
|
|
case OP16U:
|
|
|
|
case OP16:
|
|
|
|
cnt += 2;
|
|
|
|
break;
|
|
|
|
case OP32:
|
|
|
|
cnt += 5;
|
|
|
|
break;
|
|
|
|
case OP64:
|
|
|
|
cnt += 9;
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
return cnt;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ----------- checking --------------*/
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
int ecodes[256], codes[256], lcodes[256];
|
1984-07-02 15:35:56 +00:00
|
|
|
|
|
|
|
#define NMNEM (sp_lmnem-sp_fmnem+1)
|
|
|
|
#define MUST 1
|
|
|
|
#define MAY 2
|
|
|
|
#define FORB 3
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
char negc[NMNEM], zc[NMNEM], posc[NMNEM];
|
|
|
|
|
|
|
|
static void checkall(void)
|
|
|
|
{
|
|
|
|
register int i, flag;
|
|
|
|
register struct opform *next;
|
|
|
|
int opc, low;
|
|
|
|
|
|
|
|
for (i = 0; i < NMNEM; i++)
|
|
|
|
negc[i] = zc[i] = posc[i] = 0;
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
lcodes[i] = codes[i] = ecodes[i] = -1;
|
|
|
|
codes[254] = codes[255] = ESCAP;
|
|
|
|
|
|
|
|
atend = 0;
|
|
|
|
line = 0;
|
|
|
|
for (next = intable; next <= lastform; next++)
|
|
|
|
{
|
|
|
|
line++;
|
|
|
|
flag = next->i_flag & 0377;
|
|
|
|
opc = next->i_opcode & 0377;
|
|
|
|
low = next->i_low & 0377;
|
|
|
|
chkc(flag, low, opc);
|
|
|
|
switch (flag & OPTYPE)
|
|
|
|
{
|
|
|
|
case OPNO:
|
|
|
|
zc[opc]++;
|
|
|
|
break;
|
|
|
|
case OPMINI:
|
|
|
|
case OPSHORT:
|
|
|
|
for (i = 1; i < ((next->i_num) & 0377); i++)
|
|
|
|
{
|
|
|
|
chkc(flag, low + i, opc);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
if (!(em_flag[opc] & PAR_G) && (flag & OPRANGE) == OP_BOTH)
|
|
|
|
{
|
|
|
|
mess("Mini's and shorties should have P or N");
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
break;
|
|
|
|
case OP8:
|
|
|
|
error("OP8 is removed");
|
|
|
|
break;
|
|
|
|
case OP16:
|
|
|
|
if (flag & OP_NEG)
|
|
|
|
negc[opc]++;
|
|
|
|
else if (flag & OP_POS)
|
|
|
|
posc[opc]++;
|
|
|
|
break;
|
|
|
|
case OP16U:
|
|
|
|
case OP32:
|
|
|
|
case OP64:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("Illegal type");
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
atend = 1;
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
if (codes[i] == -1)
|
|
|
|
{
|
|
|
|
mess("interpreter opcode %d not used", i);
|
|
|
|
}
|
|
|
|
for (opc = 0; opc < NMNEM; opc++)
|
|
|
|
{
|
|
|
|
switch (em_flag[opc] & EM_PAR)
|
|
|
|
{
|
|
|
|
case PAR_NO:
|
|
|
|
ckop(opc, MUST, FORB, FORB);
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
case PAR_C:
|
|
|
|
case PAR_D:
|
|
|
|
case PAR_F:
|
|
|
|
case PAR_B:
|
2019-03-17 14:41:25 +00:00
|
|
|
ckop(opc, FORB, MAY, MAY);
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
case PAR_N:
|
|
|
|
case PAR_G:
|
|
|
|
case PAR_S:
|
|
|
|
case PAR_Z:
|
|
|
|
case PAR_O:
|
|
|
|
case PAR_P:
|
2019-03-17 14:41:25 +00:00
|
|
|
ckop(opc, FORB, MAY, FORB);
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
case PAR_R:
|
2019-03-17 14:41:25 +00:00
|
|
|
ckop(opc, FORB, MAY, FORB);
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
case PAR_L:
|
2019-03-17 14:41:25 +00:00
|
|
|
ckop(opc, FORB, MUST, MUST);
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
case PAR_W:
|
2019-03-17 14:41:25 +00:00
|
|
|
ckop(opc, MUST, MAY, FORB);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("Unknown instruction type of %s", ename(opc));
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static void chkc(int flag, int icode, int emc)
|
|
|
|
{
|
|
|
|
if (flag & OPESC)
|
|
|
|
{
|
|
|
|
if (ecodes[icode] != -1)
|
|
|
|
{
|
|
|
|
mess("Escaped opcode %d used by %s and %s", icode, ename(emc),
|
|
|
|
ename(ecodes[icode]));
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
ecodes[icode] = emc;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
else
|
|
|
|
switch (flag & OPTYPE)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
if (codes[icode] != -1)
|
|
|
|
{
|
|
|
|
mess("Opcode %d used by %s and %s", icode, ename(emc),
|
|
|
|
ename(codes[icode]));
|
|
|
|
}
|
|
|
|
codes[icode] = emc;
|
|
|
|
break;
|
|
|
|
case OP32:
|
|
|
|
case OP64:
|
|
|
|
if (lcodes[icode] != -1)
|
|
|
|
{
|
|
|
|
mess("Long opcode %d used by %s and %s", icode, ename(emc),
|
|
|
|
ename(codes[icode]));
|
|
|
|
}
|
|
|
|
lcodes[icode] = emc;
|
|
|
|
break;
|
|
|
|
}
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static void ckop(int emc, int zf, int pf, int nf)
|
|
|
|
{
|
|
|
|
if (zc[emc] > 1)
|
|
|
|
mess("More then one OPNO for %s", ename(emc));
|
|
|
|
if (posc[emc] > 1)
|
|
|
|
mess("More then one OP16(pos) for %s", ename(emc));
|
|
|
|
if (negc[emc] > 1)
|
|
|
|
mess("More then one OP16(neg) for %s", ename(emc));
|
|
|
|
switch (zf)
|
|
|
|
{
|
1984-07-02 15:35:56 +00:00
|
|
|
case MUST:
|
2019-03-17 14:41:25 +00:00
|
|
|
if (zc[emc] == 0)
|
|
|
|
mess("No OPNO for %s", ename(emc));
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
case FORB:
|
2019-03-17 14:41:25 +00:00
|
|
|
if (zc[emc] == 1)
|
|
|
|
mess("Forbidden OPNO for %s", ename(emc));
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
switch (pf)
|
|
|
|
{
|
1984-07-02 15:35:56 +00:00
|
|
|
case MUST:
|
2019-03-17 14:41:25 +00:00
|
|
|
if (posc[emc] == 0)
|
|
|
|
mess("No OP16(pos) for %s", ename(emc));
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
case FORB:
|
2019-03-17 14:41:25 +00:00
|
|
|
if (posc[emc] == 1)
|
|
|
|
mess("Forbidden OP16(pos) for %s", ename(emc));
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
switch (nf)
|
|
|
|
{
|
1984-07-02 15:35:56 +00:00
|
|
|
case MUST:
|
2019-03-17 14:41:25 +00:00
|
|
|
if (negc[emc] == 0)
|
|
|
|
mess("No OP16(neg) for %s", ename(emc));
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
case FORB:
|
2019-03-17 14:41:25 +00:00
|
|
|
if (negc[emc] == 1)
|
|
|
|
mess("Forbidden OP16(neg) for %s", ename(emc));
|
|
|
|
break;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static int pushchar;
|
|
|
|
static int pushf;
|
1984-07-02 15:35:56 +00:00
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static int readchar(void)
|
|
|
|
{
|
|
|
|
int c;
|
1984-07-02 15:35:56 +00:00
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
if (pushf)
|
|
|
|
{
|
|
|
|
pushf = 0;
|
|
|
|
c = pushchar;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (feof(stdin))
|
|
|
|
return EOF;
|
|
|
|
c = getc(stdin);
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
if (c == '\n')
|
|
|
|
line++;
|
|
|
|
return c;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 14:41:25 +00:00
|
|
|
static void pushback(int c)
|
|
|
|
{
|
|
|
|
if (pushf)
|
|
|
|
{
|
|
|
|
fatal("Double pushback");
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|
2019-03-17 14:41:25 +00:00
|
|
|
pushf++;
|
|
|
|
pushchar = c;
|
|
|
|
if (c == '\n')
|
|
|
|
line--;
|
1984-07-02 15:35:56 +00:00
|
|
|
}
|