X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fcasl2.c;h=d17922ca607d618dc77109e159c669611af73319;hp=7ec14fa3d7499b11602e4d1cbffb89a31b69684c;hb=d1f82970bf7d41db2fea11b08cd8e308f6cb8138;hpb=3aab1400bc11c15975b3094ac44e02c73a8c3d04 diff --git a/src/casl2.c b/src/casl2.c index 7ec14fa..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[] = { +/** + * 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) { @@ -123,12 +120,12 @@ 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(); /* 命令と命令タイプがキーのハッシュ表を作成 */ - 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;