X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcasl2.c;h=d17922ca607d618dc77109e159c669611af73319;hb=d644fa5efb63608e59b9f7b84c7806c91c970b5d;hp=139e6b919ec139237f58c13107d752976783777d;hpb=650f92bf8dfdd0095db993f71f9e3867e7119acc;p=YACASL2.git diff --git a/src/casl2.c b/src/casl2.c index 139e6b9..d17922c 100644 --- a/src/casl2.c +++ b/src/casl2.c @@ -1,10 +1,17 @@ -#include "casl2.h" -#include "assemble.h" -#include "exec.h" +#include +#include + #define _GNU_SOURCE #include -/* casl2コマンドのオプション */ +#include "assemble.h" +#include "exec.h" +#include "cerr.h" +#include "cmem.h" + +/** + * casl2コマンドのオプション + */ static struct option longopts[] = { { "source", no_argument, NULL, 's' }, { "label", no_argument, NULL, 'l' }, @@ -23,48 +30,38 @@ static struct option longopts[] = { { 0, 0, 0, 0 }, }; -/* casl2のエラー定義 */ -CERR cerr_casl2[] = { - { 126, "source file is not specified" }, +/** + * casl2のエラー定義 + */ +static 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); -} -/* アセンブル結果を書き込むファイルの名前 */ -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] [-M ] [-C ] FILE ...\n"; + "Usage: %s [-slLaAtTdh] [-oO[]] [-M ] [-C ] FILE1[ FILE2 ...]\n"; - /* エラーの初期化 */ - cerr = malloc_chk(sizeof(CERR), "cerr"); - addcerrlist_casl2(); + cerr_init(); + addcerrlist(sizeof(cerr_casl2), cerr_casl2); /* オプションの処理 */ while((opt = getopt_long(argc, argv, "tTdslLao::O::AM:C:h", longopts, NULL)) != -1) { switch(opt) { @@ -118,17 +115,17 @@ int main(int argc, char *argv[]) } /* ソースファイルが指定されていない場合は終了 */ if(argv[optind] == NULL) { - setcerr(126, NULL); /* source file is not specified */ + setcerr(126, NULL); /* no source file */ fprintf(stderr, "CASL2 error - %d: %s\n", cerr->num, cerr->msg); exit(-1); } /* COMET II仮想マシンのリセット */ - reset(); + reset(memsize, clocks); /* アセンブル。ラベル表作成のため、2回行う */ for(pass = FIRST; pass <= SECOND; pass++) { if(pass == FIRST) { - create_cmdtype_code(); /* 命令と命令タイプがキーのハッシュ表を作成 */ - asprop = malloc_chk(sizeof(ASPROP), "asprop"); + create_cmdtype_code(); /* 命令の名前とタイプがキーのハッシュ表を作成 */ + asprop = malloc_chk(sizeof(ASPROP), "asprop"); /* アセンブル時のプロパティ用の領域確保 */ } for(i = optind; i < argc; i++) { /* データの格納開始位置 */ @@ -137,6 +134,7 @@ int main(int argc, char *argv[]) } else if(pass == SECOND) { asprop->ptr = beginptr[i]; } + asprop->prog = NULL; if(execmode.trace == true || execmode.dump == true || asmode.src == true || asmode.label == true || asmode.asdetail == true) { @@ -154,8 +152,10 @@ int main(int argc, char *argv[]) } } if(pass == SECOND) { - free_cmdtype_code(); /* 命令と命令タイプがキーのハッシュ表を解放 */ freelabel(); /* ラベルハッシュ表を解放 */ + free_chk(asprop->prog, "asprop.prog"); /* プログラム名を解放 */ + free_chk(asprop, "asprop"); /* アセンブル時のプロパティを解放 */ + free_cmdtype_code(); /* 命令の名前とタイプがキーのハッシュ表を解放 */ } } if(res == true) { @@ -163,9 +163,9 @@ int main(int argc, char *argv[]) outassemble(objfile); } if(asmode.onlyassemble == false) { - create_code_type(); /* 命令と命令タイプがキーのハッシュ表を作成 */ + create_code_type(); /* 命令のコードとタイプがキーのハッシュ表を作成 */ res = exec(); /* プログラム実行 */ - free_code_type(); /* 命令と命令タイプがキーのハッシュ表を解放 */ + free_code_type(); /* 命令のコードとタイプがキーのハッシュ表を解放 */ } } /* COMET II仮想マシンのシャットダウン */ @@ -173,6 +173,7 @@ int main(int argc, char *argv[]) if(cerr->num > 0) { status = -1; } + free_chk(objfile, "objfile"); /* エラーの解放 */ freecerr(); return status;