X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fcasl2.c;h=14f372cf4b575f2068b31bc9e8e9ff4d62415606;hp=e2d8cc5d1f0b567098209a8a133eac1fe37c044f;hb=a639337a9aa30a059c1695ab1701b8714fd26193;hpb=712486afe58b10ef37c5fa915de889ab8d1dd6cd diff --git a/src/casl2.c b/src/casl2.c index e2d8cc5..14f372c 100644 --- a/src/casl2.c +++ b/src/casl2.c @@ -1,96 +1,105 @@ -#include "casl2.h" -#include "assemble.h" -#include "exec.h" +#include +#include + #define _GNU_SOURCE #include -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}, +#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' }, + { "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 }, }; -ASMODE asmode = {false, false, false, false, false}; -EXECMODE execmode = {false, false, false}; +/** + * casl2のエラー定義 + */ +CERR cerr_casl2[] = { + { 126, "no source file" }, +}; -/* 指定されたファイルにCOMET II仮想メモリ(アセンブル結果)を書込 */ -void outassemble(char *file) { - FILE *fp; - if((fp = fopen(file, "w")) == NULL) { - perror(file); - exit(-1); - } - fwrite(memory, sizeof(WORD), endptr, fp); - fclose(fp); +/** + * アセンブル結果を書き込むファイルの名前 + */ +static const char *objfile_name(const char *str) +{ + const char *default_name = "a.o"; + return (str == NULL) ? default_name : str; } +/** + * casl2コマンドのメイン + */ int main(int argc, char *argv[]) { - int opt, i; + int memsize = DEFAULT_MEMSIZE, clocks = DEFAULT_CLOCKS; + int status = 0, opt, i; PASS pass; - bool status = false; + bool res = false; WORD beginptr[argc]; char *objfile = NULL; - const char *default_objfile = "a.o"; const char *usage = - "Usage: %s [-slLaAtTdh] [-oO] [-M ] [-C ] FILE ...\n"; + "Usage: %s [-slLaAtTdh] [-oO[]] [-M ] [-C ] FILE1[ FILE2 ...]\n"; + cerr_init(); + addcerrlist(ARRAYSIZE(cerr_casl2), cerr_casl2); + addcerrlist_assemble(); + addcerrlist_exec(); + /* オプションの処理 */ while((opt = getopt_long(argc, argv, "tTdslLao::O::AM:C:h", longopts, NULL)) != -1) { switch(opt) { case 's': - (&asmode)->srcmode = true; + asmode.src = true; break; case 'l': - (&asmode)->labelmode = true; + asmode.label = true; break; case 'L': - (&asmode)->labelmode = true; - (&asmode)->onlylabelmode = true; + asmode.label = true; + asmode.onlylabel = true; break; case 'a': - (&asmode)->asdetailmode = true; + asmode.asdetail = true; break; case 'A': - (&asmode)->onlyassemblemode = true; - (&asmode)->asdetailmode = true; + asmode.asdetail = true; + asmode.onlyassemble = true; break; case 'o': - if(optarg == NULL) { - objfile = strdup(default_objfile); - } else { - objfile = strdup(optarg); - } + objfile = strdup_chk(objfile_name(optarg), "objfile"); break; case 'O': - (&asmode)->onlyassemblemode = true; - if(optarg == NULL) { - objfile = strdup(default_objfile); - } else { - objfile = strdup(optarg); - } + asmode.onlyassemble = true; + objfile = strdup_chk(objfile_name(optarg), "objfile"); break; case 't': - (&execmode)->tracemode = true; + execmode.trace = true; break; case 'T': - (&execmode)->tracemode = true; - (&execmode)->logicalmode = true; + execmode.trace = true; + execmode.logical = true; break; case 'd': - (&execmode)->dumpmode = true; + execmode.dump = true; break; case 'M': memsize = atoi(optarg); @@ -106,55 +115,68 @@ int main(int argc, char *argv[]) exit(-1); } } + /* ソースファイルが指定されていない場合は終了 */ if(argv[optind] == NULL) { - fprintf(stderr, "source file is not specified\n"); + setcerr(126, NULL); /* no source file */ + fprintf(stderr, "CASL2 error - %d: %s\n", cerr->num, cerr->msg); exit(-1); } - /* ソースファイルが指定されていない場合は終了 */ - reset(); + /* COMET II仮想マシンのリセット */ + reset(memsize, clocks); /* アセンブル。ラベル表作成のため、2回行う */ for(pass = FIRST; pass <= SECOND; pass++) { + if(pass == FIRST) { + create_cmdtype_code(); /* 命令の名前とタイプがキーのハッシュ表を作成 */ + asptr = malloc_chk(sizeof(asptr), "asptr"); /* アセンブル時のプロパティ用の領域確保 */ + } for(i = optind; i < argc; i++) { /* データの格納開始位置 */ if(pass == FIRST) { - beginptr[i] = ptr; + beginptr[i] = asptr->ptr; } else if(pass == SECOND) { - ptr = beginptr[i]; + asptr->ptr = beginptr[i]; } - if((&execmode)->tracemode == true || (&execmode)->dumpmode == true || - (&asmode)->srcmode == true || (&asmode)->labelmode == true || - (&asmode)->asdetailmode == true) + asptr->prog = NULL; + 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(); /* エラーの解放 */ - } + if((res = assemble(argv[i], pass)) == false) { + freecerr(); /* エラーの解放 */ exit(-1); } } - if(pass == FIRST && (&asmode)->labelmode == true) { + if(pass == FIRST && asmode.label == true) { fprintf(stdout, "\nLabel::::\n"); printlabel(); - if((&asmode)->onlylabelmode == true) { + if(asmode.onlylabel == true) { return 0; } } + if(pass == SECOND) { + freelabel(); /* ラベルハッシュ表を解放 */ + free_chk(asptr->prog, "asptr.prog"); /* プログラム名を解放 */ + free_chk(asptr, "asptr"); /* アセンブル時のプロパティを解放 */ + free_cmdtype_code(); /* 命令の名前とタイプがキーのハッシュ表を解放 */ + } } - freelabel(); /* ラベル表の解放 */ - if(status == true) { + if(res == true) { if(objfile != NULL) { outassemble(objfile); + free_chk(objfile, "objfile"); } - if((&asmode)->onlyassemblemode == false) { - exec(); /* プログラム実行 */ + if(asmode.onlyassemble == false) { + create_code_type(); /* 命令のコードとタイプがキーのハッシュ表を作成 */ + res = exec(); /* プログラム実行 */ + free_code_type(); /* 命令のコードとタイプがキーのハッシュ表を解放 */ } } - if(cerrno > 0) { - freecerr(); - exit(-1); + /* COMET II仮想マシンのシャットダウン */ + shutdown(); + if(cerr->num > 0) { + status = -1; } - return 0; + freecerr(); /* エラーの解放 */ + return status; }