ソースコードの推敲
[YACASL2.git] / src / casl2.c
index 7ec14fa..c272d05 100644 (file)
@@ -1,10 +1,17 @@
-#include "casl2.h"
-#include "assemble.h"
-#include "exec.h"
+#include <stdio.h>
+#include <stdlib.h>
+
 #define _GNU_SOURCE
 #include <getopt.h>
 
-/* casl2コマンドのオプション */
+#include "cmem.h"
+#include "cerr.h"
+#include "assemble.h"
+#include "exec.h"
+
+/**
+ * casl2コマンドのオプション
+ */
 static struct option longopts[] = {
     { "source", no_argument, NULL, 's' },
     { "label", no_argument, NULL, 'l' },
@@ -23,48 +30,48 @@ static struct option longopts[] = {
     { 0, 0, 0, 0 },
 };
 
-/* casl2のエラー定義 */
+/**
+ * casl2のエラー定義
+ */
 CERR cerr_casl2[] = {
     { 126, "no source file" },
 };
-bool addcerrlist_casl2()
-{
-    return addcerrlist(sizeof(cerr_casl2), cerr_casl2);
-}
-
-/* 指定されたファイルにアセンブル結果を書込 */
-void outassemble(const char *file) {
-    FILE *fp;
 
-    if((fp = fopen(file, "w")) == NULL) {
-        perror(file);
-        exit(-1);
-    }
-    fwrite(memory, sizeof(WORD), progprop->end, fp);
-    fclose(fp);
+/**
+ * CASL IIのエラーをエラーリストに追加
+ */
+void addcerrlist_casl2()
+{
+    addcerrlist(ARRAYSIZE(cerr_casl2), cerr_casl2);
 }
 
-/* アセンブル結果を書き込むファイルの名前 */
-const char *objfile_name(const char *str)
+/**
+ * アセンブル結果を書き込むファイルの名前
+ */
+static const char *objfile_name(const char *str)
 {
     const char *default_name = "a.o";
     return (str == NULL) ? default_name : str;
 }
 
-/* casl2コマンドのメイン */
+/**
+ *  casl2コマンドのメイン
+ */
 int main(int argc, char *argv[])
 {
-    int opt, i, status = 0;
+    int memsize = DEFAULT_MEMSIZE, clocks = DEFAULT_CLOCKS;
+    int status = 0, opt, i;
     PASS pass;
     bool res = false;
     WORD beginptr[argc];
     char *objfile = NULL;
     const char *usage =
-        "Usage: %s [-slLaAtTdh] [-oO<OBJECTFILE>] [-M <MEMORYSIZE>] [-C <CLOCKS>] FILE ...\n";
+        "Usage: %s [-slLaAtTdh] [-oO[<OBJECTFILE>]] [-M <MEMORYSIZE>] [-C <CLOCKS>] FILE1[ FILE2  ...]\n";
 
-    /* エラーの初期化 */
-    cerr = malloc_chk(sizeof(CERR), "cerr");
+    cerr_init();
     addcerrlist_casl2();
+    addcerrlist_assemble();
+    addcerrlist_exec();
     /* オプションの処理 */
     while((opt = getopt_long(argc, argv, "tTdslLao::O::AM:C:h", longopts, NULL)) != -1) {
         switch(opt) {
@@ -123,19 +130,19 @@ int main(int argc, char *argv[])
         exit(-1);
     }
     /* COMET II仮想マシンのリセット */
-    reset();
+    reset(memsize, clocks);
     /* アセンブル。ラベル表作成のため、2回行う */
     for(pass = FIRST; pass <= SECOND; pass++) {
         if(pass == FIRST) {
-            create_cmdtype_code();        /* å\91½ä»¤ã\81¨å\91½ä»¤タイプがキーのハッシュ表を作成 */
-            asprop = malloc_chk(sizeof(ASPROP), "asprop");
+            create_cmdtype_code();        /* å\91½ä»¤ã\81®å\90\8då\89\8dã\81¨タイプがキーのハッシュ表を作成 */
+            asptr = malloc_chk(sizeof(ASPTR), "asptr"); /* アセンブル時のプロパティ用の領域確保 */
         }
         for(i = optind; i < argc; i++) {
             /* データの格納開始位置 */
             if(pass == FIRST) {
-                beginptr[i] = asprop->ptr;
+                beginptr[i] = asptr->ptr;
             } else if(pass == SECOND) {
-                asprop->ptr = beginptr[i];
+                asptr->ptr = beginptr[i];
             }
             if(execmode.trace == true || execmode.dump == true || asmode.src == true ||
                asmode.label == true || asmode.asdetail == true)
@@ -143,6 +150,7 @@ int main(int argc, char *argv[])
                 fprintf(stdout, "\nAssemble %s (%d)\n", argv[i], pass);
             }
             if((res = assemble(argv[i], pass)) == false) {
+                freecerr();            /* エラーの解放 */
                 exit(-1);
             }
         }
@@ -154,18 +162,20 @@ int main(int argc, char *argv[])
             }
         }
         if(pass == SECOND) {
-            free_cmdtype_code();    /* 命令と命令タイプがキーのハッシュ表を解放 */
             freelabel();            /* ラベルハッシュ表を解放 */
+            free_cmdtype_code();    /* 命令の名前とタイプがキーのハッシュ表を解放 */
+            FREE(asptr);       /* アセンブル時のプロパティを解放 */
         }
     }
     if(res == true) {
         if(objfile != NULL) {
             outassemble(objfile);
+            FREE(objfile);
         }
         if(asmode.onlyassemble == false) {
-            create_code_type();    /* å\91½ä»¤ã\81¨å\91½ä»¤タイプがキーのハッシュ表を作成 */
+            create_code_type();    /* å\91½ä»¤ã\81®ã\82³ã\83¼ã\83\89ã\81¨タイプがキーのハッシュ表を作成 */
             res = exec();          /* プログラム実行 */
-            free_code_type();      /* å\91½ä»¤ã\81¨å\91½ä»¤タイプがキーのハッシュ表を解放 */
+            free_code_type();      /* å\91½ä»¤ã\81®ã\82³ã\83¼ã\83\89ã\81¨タイプがキーのハッシュ表を解放 */
         }
     }
     /* COMET II仮想マシンのシャットダウン */
@@ -173,7 +183,6 @@ int main(int argc, char *argv[])
     if(cerr->num > 0) {
         status = -1;
     }
-    /* エラーの解放 */
-    freecerr();
+    freecerr();            /* エラーの解放 */
     return status;
 }