#ifndef YACASL2_ASSEMBLE_INCLUDED
#define YACASL2_ASSEMBLE_INCLUDED
-/* CASL IIの制限 */
+/* CASL IIの仕様 */
+enum {
+ LABELSIZE = 8, /* ラベルの最大文字数 */
+ OPDSIZE = 40, /* オペラントの最大数。CASL IIシミュレータの制限 */
+};
+
+/* YACASL2の制限 */
enum {
LINESIZE = 1024, /* 行の最大文字数 */
TOKENSIZE = 256, /* トークンの最大文字数 */
- LABELSIZE = 8, /* ラベルの最大文字数 */
- LABELTABSIZE = 256, /* ラベルの最大数 */
- OPDSIZE = 40, /* オペラントの最大数 */
};
/* アセンブルモード */
char *cmd;
} CMDARRAY;
+/* ラベル配列 */
+typedef struct {
+ char *prog;
+ char *label;
+ WORD adr;
+} LABELARRAY;
+
/* ラベル表 */
typedef struct _LABELTAB {
struct _LABELTAB *next;
WORD adr;
} LABELTAB;
+enum {
+ LABELTABSIZE = 251, /* ラベル表のサイズ */
+};
+
/* アセンブラが、1回目か、2回目か、を表す */
typedef enum {
FIRST = 0,
#include "casl2.h"
#include "assemble.h"
-LABELTAB *labels[LABELTABSIZE];
+int labelcnt = 0; /* ラベル数 */
+LABELTAB *labels[LABELTABSIZE]; /* ラベル表 */
/* プログラム名とラベルに対応するハッシュ値を返す */
unsigned labelhash(const char *prog, const char *label)
setcerr(101, label); /* label already defined */
return false;
}
- np = (LABELTAB *) malloc(sizeof(*np));
+ np = malloc(sizeof(*np));
if(np == NULL || (np->label = strdup(label)) == NULL ||
(prog != NULL && (np->prog = strdup(prog)) == NULL))
{
if(prog != NULL) {
keys[i++] = strdup(prog);
}
- keys[i] = strdup(label);;
+ labelcnt++;
+ keys[i] = strdup(label);
hashval = labelhash(prog, label);
np->next = labels[hashval];
labels[hashval] = np;
return true;
}
+int compare_adr(const void *a, const void *b)
+{
+ return (**(const LABELARRAY **)a).adr - (**(const LABELARRAY **)b).adr;
+}
+
/* ラベル表を表示する */
void printlabel()
{
- int i;
- LABELTAB *np;
+ int i, asize = 0;
+ LABELTAB *np = malloc(sizeof(LABELTAB *));
+ LABELARRAY **ar = malloc(labelcnt * sizeof(LABELARRAY **));
+
for(i = 0; i < LABELTABSIZE; i++) {
for(np = labels[i]; np != NULL; np = np->next) {
- if(np->prog == NULL) {
- fprintf(stdout, "%s ---> #%04X\n", np->label, np->adr);
- } else {
- fprintf(stdout, "%s.%s ---> #%04X\n", np->prog, np->label, np->adr);
- }
+ ar[asize] = malloc(sizeof(LABELARRAY *));
+ ar[asize]->prog = (np->prog == NULL ? NULL : strdup(np->prog));
+ ar[asize]->label = strdup(np->label);
+ ar[asize]->adr = np->adr;
+ asize++;
+ }
+ }
+ qsort(ar, asize, sizeof(*ar), compare_adr);
+ for(i = 0; i < asize; i++) {
+ if(ar[i]->prog != NULL) {
+ fprintf(stdout, "%s.", ar[i]->prog);
}
+ fprintf(stdout, "%s ---> #%04X\n", ar[i]->label, ar[i]->adr);
}
}
int i;
LABELTAB *np, *nq;
for(i = 0; i < LABELTABSIZE; i++) {
- for(np = labels[i]; np != NULL; np = nq){
+ for(np = labels[i]; np != NULL; np = nq) {
nq = np->next;
free(np->prog);
free(np->label);