READMEのCASL II仕様書へのリンクを修正
[YACASL2.git] / src / casl2.c
index 35f9a80..c7ef4f0 100644 (file)
-#include "casl2.h"
+#include "package.h"
 #include "assemble.h"
 #include "exec.h"
-#define _GNU_SOURCE
-#include <getopt.h>
 
-/* casl2コマンドのオプション */
+/**
+ * @brief CASL IIのエラーをエラーリストに追加
+ *
+ * @return なし
+ */
+void addcerrlist_casl2();
+
+/**
+ * @brief アセンブル結果を書き込むファイルの名前
+ *
+ * @return ファイル名
+ *
+ * @param *str ファイル名
+ */
+char *objfile_name(const char *str);
+
+/**
+ * @brief casl2コマンドのオプション
+ */
 static struct option longopts[] = {
-    {"source", no_argument, NULL, 's'},
-    {"label", no_argument, NULL, 'l'},
-    {"labelonly", no_argument, NULL, 'L'},
-    {"assembledetail", no_argument, NULL, 'a'},
-    {"assembledetailonly", no_argument, NULL, 'A'},
-    {"assembleout", optional_argument, NULL, 'o'},
-    {"assembleoutonly", optional_argument, NULL, 'O'},
-    {"trace", no_argument, NULL, 't'},
-    {"tracearithmetic", no_argument, NULL, 't'},
-    {"tracelogical", no_argument, NULL, 'T'},
-    {"dump", no_argument, NULL, 'd'},
-    {"memorysize", required_argument, NULL, 'M'},
-    {"clocks", required_argument, NULL, 'C'},
-    {"help", no_argument, NULL, 'h'},
-    {0, 0, 0, 0},
+    { "source", no_argument, NULL, 's' },
+    { "label", no_argument, NULL, 'l' },
+    { "labelonly", no_argument, NULL, 'L' },
+    { "assembledetail", no_argument, NULL, 'a' },
+    { "assembledetailonly", no_argument, NULL, 'A' },
+    { "assembleout", optional_argument, NULL, 'o' },
+    { "assembleoutonly", optional_argument, NULL, 'O' },
+    { "trace", no_argument, NULL, 't' },
+    { "tracearithmetic", no_argument, NULL, 't' },
+    { "tracelogical", no_argument, NULL, 'T' },
+    { "dump", no_argument, NULL, 'd' },
+    { "monitor", no_argument, NULL, 'm' },
+    { "memorysize", required_argument, NULL, 'M' },
+    { "clocks", required_argument, NULL, 'C' },
+    { "version", no_argument, NULL, 'v' },
+    { "help", no_argument, NULL, 'h' },
+    { 0, 0, 0, 0 },
 };
 
-/* アセンブルモード: src, label, onlylabel, asdetail, onlyassemble */
-ASMODE asmode = {false, false, false, false, false};
-/* 実行モード: trace, logical, dump */
-EXECMODE execmode = {false, false, false};
-
-/* エラー番号とエラーメッセージ */
-CERRARRAY cerr[] = {
-    { 101, "label already defined" },
-    { 102, "label table is full" },
-    { 103, "label not found" },
-    { 104, "label length is too long" },
-    { 105, "no command in the line" },
-    { 106, "operand count mismatch" },
-    { 107, "no label in START" },
-    { 108, "not command of operand \"r\"" },
-    { 109, "not command of operand \"r1,r2\"" },
-    { 110, "not command of operand \"r,adr[,x]\"" },
-    { 111, "not command of operand \"adr[,x]\"" },
-    { 112, "not command of no operand" },
-    { 113, "command not defined" },
-    { 114, "not integer" },
-    { 115, "not hex" },
-    { 116, "out of hex range" },
-    { 117, "operand is too many" },
-    { 118, "operand length is too long" },
-    { 119, "out of COMET II memory" },
-    { 120, "GR0 in operand x" },
-    { 121, "cannot get operand token" },
-    { 122, "cannot create hash table" },
-    { 123, "illegal string" },
-    { 124, "more than one character in literal" },
-    { 201, "execute - out of COMET II memory" },
-    { 202, "SVC input - out of Input memory" },
-    { 203, "SVC output - out of COMET II memory" },
-    { 204, "Program Register (PR) - out of COMET II memory" },
-    { 205, "Stack Pointer (SP) - cannot allocate stack buffer" },
-    { 206, "Address - out of COMET II memory" },
-    { 207, "Stack Pointer (SP) - out of COMET II memory" },
-    { 0, NULL },
+/**
+ * @brief casl2のエラー定義
+ */
+CERR cerr_casl2[] = {
+    { 126, "no source file" },
+    { 127, "invalid option" },
 };
 
-/* 指定されたファイルにアセンブル結果を書込 */
-void outassemble(const char *file) {
-    FILE *fp;
-    if((fp = fopen(file, "w")) == NULL) {
-        perror(file);
-        exit(-1);
-    }
-    fwrite(memory, sizeof(WORD), endptr, fp);
-    fclose(fp);
+void addcerrlist_casl2()
+{
+    addcerrlist(ARRAYSIZE(cerr_casl2), cerr_casl2);
 }
 
-/* アセンブル結果を書き込むファイルの名前 */
-const char *objfile_name(const char *str)
+char *objfile_name(const char *name)
 {
     const char *default_name = "a.o";
-
-    if(optarg == NULL) {
-        return default_name;
-    } else {
-        return str;
-    }
+    return strdup_chk(
+        (name == NULL || !name[0]) ? default_name : name,
+        "objfile_name"
+        );
 }
 
-/* casl2コマンドのメイン */
+/**
+ * @brief casl2コマンドのメイン
+ *
+ * @return 正常終了時は0、エラー発生時は1
+ *
+ * @param argc コマンドライン引数の数
+ * @param *argv[] コマンドライン引数の配列
+ */
 int main(int argc, char *argv[])
 {
-    int opt, i;
-    PASS pass;
-    bool status = false;
-    WORD beginptr[argc];
+    int memsize = DEFAULT_MEMSIZE;
+    int clocks = DEFAULT_CLOCKS;
+    int opt = 0;
+    int stat = 0;
+    int asfilecnt = 0;
+    char **asfile = NULL;
     char *objfile = NULL;
+    const char *version = PACKAGE_VERSION;
+    const char *cmdversion = "casl2 of YACASL2 version %s\n";
     const char *usage =
-        "Usage: %s [-slLaAtTdh] [-oO<OUTFILE>] [-M <memorysize>] [-C <clocks>] FILE ...\n";
+        "Usage: %s [-slLaAtTdmvh] [-oO[<OBJECTFILE>]] [-M <MEMORYSIZE>] [-C <CLOCKS>] FILE1[ FILE2  ...]\n";
+
+    /* エラーの定義 */
+    cerr_init();
+    addcerrlist_casl2();
+    addcerrlist_assemble();
+    addcerrlist_exec();
 
-    while((opt = getopt_long(argc, argv, "tTdslLao::O::AM:C:h", longopts, NULL)) != -1) {
+    /* オプションの処理 */
+    while((opt = getopt_long(argc, argv, "tTdslLmao::O::AM:C:vh", longopts, NULL)) != -1) {
         switch(opt) {
         case 's':
-            (&asmode)->src = true;
+            asmode.src = true;
             break;
         case 'l':
-            (&asmode)->label = true;
+            asmode.label = true;
             break;
         case 'L':
-            (&asmode)->label = true;
-            (&asmode)->onlylabel = true;
+            asmode.label = true;
+            asmode.onlylabel = true;
             break;
         case 'a':
-            (&asmode)->asdetail = true;
+            asmode.asdetail = true;
             break;
         case 'A':
-            (&asmode)->asdetail = true;
-            (&asmode)->onlyassemble = true;
+            asmode.asdetail = true;
+            asmode.onlyassemble = true;
             break;
         case 'o':
-            objfile = strdup(objfile_name(optarg));
+            objfile = objfile_name(optarg);
             break;
         case 'O':
-            (&asmode)->onlyassemble = true;
-            objfile = strdup(objfile_name(optarg));
+            asmode.onlyassemble = true;
+            objfile = objfile_name(optarg);
             break;
         case 't':
-            (&execmode)->trace = true;
+            execmode.trace = true;
             break;
         case 'T':
-            (&execmode)->trace = true;
-            (&execmode)->logical = true;
+            execmode.trace = true;
+            execmode.logical = true;
             break;
         case 'd':
-            (&execmode)->dump = true;
+            execmode.dump = true;
+            break;
+        case 'm':
+            execmode.step = true;
             break;
         case 'M':
             memsize = atoi(optarg);
@@ -140,64 +137,53 @@ int main(int argc, char *argv[])
         case 'C':
             clocks = atoi(optarg);
             break;
+        case 'v':
+            fprintf(stdout, cmdversion, version);
+            goto casl2fin;
         case 'h':
             fprintf(stdout, usage, argv[0]);
-            return 0;
+            goto casl2fin;
         case '?':
             fprintf(stderr, usage, argv[0]);
-            exit(-1);
+            setcerr(212, "");    /* invalid option */
+            goto casl2fin;
         }
     }
+
     /* ソースファイルが指定されていない場合は終了 */
     if(argv[optind] == NULL) {
-        fprintf(stderr, "source file is not specified\n");
-        exit(-1);
+        setcerr(126, "");    /* no source file */
+        fprintf(stderr, "casl2 error - %d: %s\n", cerr->num, cerr->msg);
+        goto casl2fin;
     }
-    /* COMET II仮想マシンのリセット */
-    reset();
-    /* アセンブル。ラベル表作成のため、2回行う */
-    for(pass = FIRST; pass <= SECOND; pass++) {
-        for(i = optind; i < argc; i++) {
-            /* データの格納開始位置 */
-            if(pass == FIRST) {
-                beginptr[i] = ptr;
-            } else if(pass == SECOND) {
-                ptr = beginptr[i];
-            }
-            if((&execmode)->trace == true || (&execmode)->dump == true ||
-               (&asmode)->src == true || (&asmode)->label == true ||
-               (&asmode)->asdetail == true)
-            {
-                fprintf(stdout, "\nAssemble %s (%d)\n", argv[i], pass);
-            }
-            if((status = assemble(argv[i], pass)) == false) {
-                freelabel();    /* ラベル表の解放 */
-                if(cerrno > 0) {
-                    freecerr();    /* エラーの解放 */
-                }
-                exit(-1);
-            }
-        }
-        if(pass == FIRST && (&asmode)->label == true) {
-            fprintf(stdout, "\nLabel::::\n");
-            printlabel();
-            if((&asmode)->onlylabel == true) {
-                return 0;
-            }
-        }
+    create_cmdtable(HASH_CMDTYPE);                 /* 命令の名前とタイプがキーのハッシュ表を作成 */
+    reset(memsize, clocks);                        /* 仮想マシンCOMET IIのリセット */
+    asfilecnt = argc - optind;
+    asfile = calloc_chk(asfilecnt, sizeof(char *), "asfile");
+    for(int i = 0; i < asfilecnt; i++) {           /* 引数からファイル名配列を取得 */
+        asfile[i] = argv[optind + i];
     }
-    freelabel();    /* ラベル表の解放 */
-    if(status == true) {
-        if(objfile != NULL) {
-            outassemble(objfile);
-        }
-        if((&asmode)->onlyassemble == false) {
-            exec();    /* プログラム実行 */
-        }
+    /* アセンブル */
+    if(assemble(asfilecnt, asfile, 0) == false || asmode.onlylabel == true) {
+        goto shutdown;
+    }
+    /* オブジェクトファイル名が指定されている場合は、アセンブル結果をオブジェクトファイルに出力 */
+    if(objfile != NULL) {
+        outassemble(objfile);
+    }
+    /* onlyassembleモード以外の場合、仮想マシンCOMET IIを実行 */
+    if(asmode.onlyassemble == false) {
+        exec();                                    /* 仮想マシンCOMET IIの実行 */
     }
-    if(cerrno > 0) {
-        freecerr();
-        exit(-1);
+shutdown:
+    shutdown();                                   /* 仮想マシンCOMET IIのシャットダウン */
+casl2fin:
+    FREE(objfile);
+    FREE(asfile);
+    free_cmdtable(HASH_CMDTYPE);
+    if(cerr->num > 0) {
+        stat = 1;
     }
-    return 0;
+    freecerr();                                    /* エラーの解放 */
+    return stat;
 }