*/
void cerr_init()
{
- cerr = malloc_chk(sizeof(CERR), "cerr");
+ cerr = malloc_chk(sizeof(CERR *), "cerr");
cerr->num = 0;
}
/**
* エラーリストを作成または追加する
*/
-void addcerrlist(int newerrc, CERR newerrv[])
+void addcerrlist(int errc, CERR errv[])
{
int i;
- CERRLIST *p = NULL, *q;
+ CERRLIST *p = NULL, *q = malloc_chk(sizeof(CERRLIST *), "cerrlist");
- assert(newerrc > 0 && newerrv != NULL);
- for(i = 0; i < newerrc; i++) {
+ assert(errc > 0 && errv != NULL);
+ for(i = 0; i < errc; i++) {
if(p == NULL) {
- p = q = malloc_chk(sizeof(CERRLIST), "cerrlist");
+ p = q;
} else {
- p = p->next = malloc_chk(sizeof(CERRLIST), "cerrlist.next");
+ p = p->next = malloc_chk(sizeof(CERRLIST *), "cerrlist.next");
}
- p->cerr = &newerrv[i];
+ p->cerr = &errv[i];
p->next = NULL;
}
p->next = cerrlist;
unsigned hashval;
/* 命令名を設定 */
- keys[0] = malloc_chk(sizeof(HKEY), "hash_cmdtype.keys[0]");
+ keys[0] = malloc_chk(sizeof(HKEY *), "hash_cmdtype.keys[0]");
keys[0]->type = CHARS;
keys[0]->val.s = strdup_chk(cmd, "keys[0].val.s");
/* 命令タイプを設定 */
- keys[1] = malloc_chk(sizeof(HKEY), "hash_cmdtype.keys[1]");
+ keys[1] = malloc_chk(sizeof(HKEY *), "hash_cmdtype.keys[1]");
keys[1]->type = INT;
keys[1]->val.i = (int)(type & 070);
/* ハッシュ値の計算 */
cmdtabsize = comet2cmdsize; /* ハッシュ表のサイズ */
cmdtype_code = calloc_chk(cmdtabsize, sizeof(CMDTAB *), "cmdtype_code");
for(i = 0; i < comet2cmdsize; i++) {
- p = malloc_chk(sizeof(CMDTAB), "create_cmdtype_code.p");
+ p = malloc_chk(sizeof(CMDTAB *), "create_cmdtype_code.p");
hashval = hash_cmdtype(comet2cmd[i].name, comet2cmd[i].type); /* ハッシュ値の生成 */
p->next = cmdtype_code[hashval]; /* ハッシュ表に値を追加 */
p->cmd = &comet2cmd[i];
unsigned h;
/* 命令コードを設定 */
- keys[0] = malloc_chk(sizeof(HKEY), "hash_code.key");
+ keys[0] = malloc_chk(sizeof(HKEY *), "hash_code.key");
keys[0]->type = INT;
keys[0]->val.i = (int)(code >> 8);
h = hash(1, keys, cmdtabsize);
cmdtabsize = comet2cmdsize; /* ハッシュ表のサイズ */
code_type = calloc_chk(comet2cmdsize, sizeof(CMDTAB *), "code_type");
for(i = 0; i < comet2cmdsize; i++) {
- p = malloc_chk(sizeof(CMDTAB), "code_type.p");
+ p = malloc_chk(sizeof(CMDTAB *), "code_type.p");
hashval = hash_code((&comet2cmd[i])->code); /* ハッシュ値の生成 */
p->next = code_type[hashval]; /* ハッシュ表に値を追加 */
p->cmd = &comet2cmd[i];
static int labelcnt = 0; /* ラベル数 */
static LABELTAB *labels[LABELTABSIZE]; /* ラベル表 */
+/**
+ * ラベルのエラー定義
+ */
+static CERR cerr_label[] = {
+ { 101, "label already defined" },
+ { 102, "label table is full" },
+ { 103, "label not found" },
+};
+
+/**
+ * ラベルのエラーをエラーリストに追加
+ */
+void addcerrlist_label()
+{
+ addcerrlist(ARRAYSIZE(cerr_label), cerr_label);
+}
+
/**
* プログラム名とラベルに対応するハッシュ値を返す
*/
bool addlabel(const char *prog, const char *label, WORD adr)
{
assert(label != NULL);
- LABELTAB *np;
+ LABELTAB *p;
unsigned hashval;
/* 登録されたラベルを検索。すでに登録されている場合はエラー発生 */
return false;
}
/* メモリを確保 */
- np = malloc_chk(sizeof(LABELTAB), "labels.next");
+ p = malloc_chk(sizeof(LABELTAB), "labels.next");
/* プログラム名を設定 */
if(prog == NULL) {
- np->prog = NULL;
+ p->prog = NULL;
} else {
- np->prog = strdup_chk(prog, "labels.prog");
+ p->prog = strdup_chk(prog, "labels.prog");
}
/* ラベルを設定 */
- np->label = strdup_chk(label, "labels.label");
+ p->label = strdup_chk(label, "labels.label");
/* アドレスを設定 */
- np->adr = adr;
+ p->adr = adr;
/* ラベル数を設定 */
labelcnt++;
/* ハッシュ表へ追加 */
hashval = labelhash(prog, label);
- np->next = labels[hashval];
- labels[hashval] = np;
+ p->next = labels[hashval];
+ labels[hashval] = p;
return true;
}
*/
void printlabel()
{
- int i, asize = 0;
+ int i, s = 0;
LABELTAB *p;
- LABELARRAY *ar[labelcnt];
+ LABELARRAY *l[labelcnt];
for(i = 0; i < LABELTABSIZE; i++) {
for(p = labels[i]; p != NULL; p = p->next) {
assert(p->label != NULL);
- ar[asize] = malloc_chk(sizeof(LABELARRAY), "ar[]");
+ l[s] = malloc_chk(sizeof(LABELARRAY), "l[]");
if(p->prog == NULL) {
- ar[asize]->prog = NULL;
+ l[s]->prog = NULL;
} else {
- ar[asize]->prog = strdup_chk(p->prog, "ar[].prog");
+ l[s]->prog = strdup_chk(p->prog, "l[].prog");
}
- ar[asize]->label = strdup_chk(p->label, "ar[].label");
- ar[asize++]->adr = p->adr;
+ l[s]->label = strdup_chk(p->label, "l[].label");
+ l[s++]->adr = p->adr;
}
}
- qsort(ar, asize, sizeof(*ar), compare_adr);
- for(i = 0; i < asize; i++) {
- if(ar[i]->prog != NULL) {
- fprintf(stdout, "%s.", ar[i]->prog);
+ qsort(l, s, sizeof(*l), compare_adr);
+ for(i = 0; i < s; i++) {
+ if(l[i]->prog != NULL) {
+ fprintf(stdout, "%s.", l[i]->prog);
}
- fprintf(stdout, "%s ---> #%04X\n", ar[i]->label, ar[i]->adr);
+ fprintf(stdout, "%s ---> #%04X\n", l[i]->label, l[i]->adr);
}
}