-dump vs -dumpfin; to see the IR before and after finalizing functions

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-21 21:53:38 +01:00
parent 42135f1322
commit 6983142c4d
3 changed files with 11 additions and 1 deletions

View file

@ -830,6 +830,7 @@ extern const char *opts_output; /* -o file */
extern int opts_standard;
extern bool opts_debug;
extern bool opts_memchk;
extern bool opts_dumpfin;
extern bool opts_dump;
extern bool opts_werror;
extern bool opts_forcecrc;

5
main.c
View file

@ -32,6 +32,7 @@ const char *opts_output = "progs.dat";
int opts_standard = COMPILER_GMQCC;
bool opts_debug = false;
bool opts_memchk = false;
bool opts_dumpfin = false;
bool opts_dump = false;
bool opts_werror = false;
bool opts_forcecrc = false;
@ -237,6 +238,10 @@ static bool options_parse(int argc, char **argv) {
opts_dump = true;
continue;
}
if (!strcmp(argv[0]+1, "dumpfin")) {
opts_dumpfin = true;
continue;
}
if (!strcmp(argv[0]+1, "memchk")) {
opts_memchk = true;
continue;

View file

@ -3921,6 +3921,10 @@ bool parser_finish(const char *output)
ir_builder_delete(ir);
return false;
}
}
if (opts_dump)
ir_builder_dump(ir, con_out);
for (i = 0; i < vec_size(parser->functions); ++i) {
if (!ir_function_finalize(parser->functions[i]->ir_func)) {
con_out("failed to finalize function %s\n", parser->functions[i]->name);
ir_builder_delete(ir);
@ -3929,7 +3933,7 @@ bool parser_finish(const char *output)
}
if (retval) {
if (opts_dump)
if (opts_dumpfin)
ir_builder_dump(ir, con_out);
generate_checksum(parser);