X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=error.c;h=2a3df9671ceea479b0620131128711cd3783c1ca;hb=55ab14981b02ca79f7696b39a82aa2cfa0045e59;hp=d0edaf400240ef95a6270aa566af8a9a690d7d27;hpb=cbc8347d4ffea164ca05b03e4e3be39945be8777;p=rmac diff --git a/error.c b/error.c index d0edaf4..2a3df96 100644 --- a/error.c +++ b/error.c @@ -8,8 +8,19 @@ #include "error.h" #include +#include #include "listing.h" -#include "token.h" +char * interror_msg[] = { + "Unknown internal error", // Error not referenced, should not be displayed + "Unknown internal error", // Error not referenced, should not be displayed + "Bad MULTX entry in chrtab", // Error #2 + "Unknown internal error", // Error not referenced, should not be displayed + "Bad fixup type", // Error #4 + "Bad operator in expression stream", // Error #5 + "Can't find generated code in section", // Error #6 + "Fixup (loc) out of range" // Error #7 + "Absolute top filename found" // Error #8 +}; // Exported variables int errcnt; // Error count @@ -18,7 +29,6 @@ char * err_fname; // Name of error message file // Internal variables static long unused; // For supressing 'write' warnings - // // Report error if not at EOL // @@ -39,7 +49,6 @@ int ErrorIfNotAtEOL(void) return 0; } - // // Cannot create a file // @@ -49,7 +58,6 @@ void CantCreateFile(const char * fn) exit(1); } - // // Setup for error message // o Create error listing file (if necessary) @@ -75,7 +83,6 @@ void err_setup(void) } } - // // Display error message (uses printf() style variable arguments) // @@ -102,7 +109,37 @@ int error(const char * text, ...) sprintf(buf1, "%s %d: Error: %s\n", curfname, curlineno, buf); break; case SRC_IMACRO: - sprintf(buf1, "%s %d: Error: %s\n", curfname, cur_inobj->inobj.imacro->im_macro->lineList->lineno, buf); + { + // This is basically SetFilenameForErrorReporting() but we don't + // call it here as it will clobber curfname. That function is used + // during fixups only so it really doesn't matter at that point... + char * filename; + FILEREC * fr; + uint16_t fnum = cur_inobj->inobj.imacro->im_macro->cfileno; + + // Check for absolute top filename (this should never happen) + if (fnum == -1) + interror(8); + else + { + fr = filerec; + + // Advance to the correct record... + while (fr != NULL && fnum != 0) + { + fr = fr->frec_next; + fnum--; + } + } + // Check for file # record not found (this should never happen either) + if (fr == NULL) + interror(8); + + filename = fr->frec_name; + + sprintf(buf1, "%s %d: Error: %s\nCalled from: %s %d\n", filename, cur_inobj->inobj.imacro->im_macro->lineList->lineno, buf, + curfname, curlineno); + } break; case SRC_IREPT: sprintf(buf1, "%s %d: Error: %s\n", curfname, cur_inobj->inobj.irept->lineno, buf); @@ -124,7 +161,6 @@ int error(const char * text, ...) return ERROR; } - // // Display warning message (uses printf() style variable arguments) // @@ -154,7 +190,6 @@ int warn(const char * text, ...) return OK; } - int fatal(const char * s) { char buf[EBUFSIZ]; @@ -174,13 +209,12 @@ int fatal(const char * s) exit(1); } - int interror(int n) { char buf[EBUFSIZ]; err_setup(); - sprintf(buf, "%s %d: Internal error #%d\n", curfname, curlineno, n); + sprintf(buf, "%s %d: Internal error #%d: %s\n", curfname, curlineno, n, interror_msg[n]); if (listing > 0) ship_ln(buf); @@ -192,4 +226,3 @@ int interror(int n) exit(1); } -