/* * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands. * See the copyright notice in the ACK home directory, in the file "Copyright". */ /* $Header$ */ #include #include "private.h" #include "../lpass1/l_lint.h" #include "../lpass1/l_class.h" #include "class.h" #include "inpdef.h" extern char *strcpy(); #define streq(s1,s2) (strcmp(s1, s2) == 0) PRIVATE char cur_name[NAMESIZE]; PRIVATE struct inpdef *dot, *lib, *ext, *sta; PRIVATE chk_def(); PRIVATE ext_decls(); PRIVATE ext_def(); PRIVATE get_dot(); PRIVATE init(); PRIVATE lib_def(); PRIVATE one_ext_decl(); PRIVATE one_func_call(); PRIVATE one_var_usage(); PRIVATE stat_def(); PRIVATE statics(); PRIVATE usage(); #define same_name() (dot && streq(cur_name, dot->id_name)) #define same_obj(stnr) (same_name() && dot->id_statnr == stnr) #define defdec(id) (is_class(id, CL_DEF) ? "defined" : "declared") #define funvar(id) (is_class(id, CL_FUNC) ? "function" : "variable") /******** M A I N ********/ main(argc, argv) char *argv[]; { init(argc, argv); dot = new_inpdef(); get_dot(); while (dot) { if (lib) { free_inpdef(lib); lib = 0; } if (ext) { free_inpdef(ext); ext = 0; } strcpy(cur_name, dot->id_name); lib_def(); ext_def(); ext_decls(); usage(0); if (ext) chk_def(ext); statics(); if (same_name()) { /* there are more lines for this name that have not been absorbed */ panic("sequence error in intermediate file"); } } } char loptions[128]; static char *table[] = {0}; PRIVATE init(argc, argv) char *argv[]; { /* * Parse options * Prepare standard input for reading using the input-package */ char *result; init_class(); while (argc > 1 && argv[1][0] == '-') { register char *arg = &argv[1][1]; register char ch; while (ch = *arg++) { switch (ch) { case 'u': /* don't report situations like "defined/declared but not used" */ case 'X': /* ??? prints incoming inpdefs */ default: /* and any other */ loptions[ch] = 1; break; } } argc--, argv++; } if (!InsertFile((char *)0, table, &result)) panic("InsertFile() fails"); } PRIVATE get_dot() { if (!get_id(dot)) { free_inpdef(dot); dot = 0; cur_name[0] = '\0'; } } /******** L I B R A R Y ********/ PRIVATE lib_def() { if (same_obj(0) && is_class(dot, CL_LIB)) { lib = dot; dot = new_inpdef(); get_dot(); } while (same_obj(0) && is_class(dot, CL_LIB)) { report(">%L: multiple definition of %s in library", dot, dot->id_name); get_dot(); } } /******** E X T E R N ********/ PRIVATE ext_def() { if (same_obj(0) && is_class(dot, CL_EXT|CL_DEF)) { if (lib) { report("%L: %s %s also defined in library %L", dot, funvar(dot), dot->id_name, lib); } ext = dot; dot = new_inpdef(); get_dot(); } while (same_obj(0) && is_class(dot, CL_EXT|CL_DEF)) { report("%L: %s %s also defined at %L", dot, funvar(dot), dot->id_name, ext); get_dot(); } } PRIVATE ext_decls() { while (same_obj(0) && dot->id_class == EFDC) { one_ext_decl("function", "variable", CL_VAR); } while (same_obj(0) && dot->id_class == EVDC) { one_ext_decl("variable", "function", CL_FUNC); } while (same_obj(0) && dot->id_class == IFDC) { one_ext_decl("function", "variable", CL_VAR); } } PRIVATE one_ext_decl(kind, other_kind, other_class) char *kind; char *other_kind; int other_class; { struct inpdef *def = ext ? ext : lib ? lib : 0; if (!def) { /* the declaration will have to serve */ ext = dot; dot = new_inpdef(); get_dot(); return; } if (is_class(def, other_class)) { /* e.g.: function FFF declared as variable at ... */ report("%L: %s %s %s as %s at %L", dot, kind, dot->id_name, defdec(def), other_kind, def); /* no further testing possible */ get_dot(); return; } if (!type_equal(dot->id_type, def->id_type)) { /* e.g.: type of variable VVV defined differently at ... */ report("%L: type of %s %s %s differently at %L", dot, kind, dot->id_name, defdec(def), def); } get_dot(); } /******** U S A G E ********/ PRIVATE usage(stnr) int stnr; { register struct inpdef *def = stnr ? sta : ext ? ext : lib ? lib : 0; register int VU_count = 0; register int VU_samefile = 0; while (same_obj(stnr) && dot->id_class == FC) { one_func_call(def); } while (same_obj(stnr) && dot->id_class == VU) { VU_count++; if (def && streq(def->id_file, dot->id_file)) { VU_samefile++; } one_var_usage(def); } if (def && loptions['h']) { register char *fn = def->id_file; if ( stnr == 0 && VU_count == 1 && VU_samefile == 1 && def == ext && !is_class(ext, CL_IMPL) && streq(&fn[strlen(fn)-2], ".c") ) { report("%L: extern %s could be declared static", def, def->id_name); } } } PRIVATE one_func_call(def) struct inpdef *def; { if (!def) { if (!loptions['u']) { report("%L: function %s used but not defined", dot, dot->id_name); } get_dot(); return; } def->id_called = 1; if (def->id_args) { chk_args(dot, def); if ( dot->id_valused == USED && def->id_valreturned == NOVALRETURNED ) { report("%L: value of %s is used, but none is returned at %L", dot, dot->id_name, def); } } switch (dot->id_valused) { case USED: def->id_used = 1; break; case IGNORED: def->id_ignored = 1; break; case VOIDED: def->id_voided = 1; break; default: panic("invalid dot->id_valused in one_func_call()"); break; } get_dot(); } PRIVATE one_var_usage(def) struct inpdef *def; { if (!def) { if (!loptions['u']) { report("%L: variable %s used but not defined", dot, dot->id_name); } get_dot(); return; } def->id_called = 1; get_dot(); } /******** S T A T I C ********/ PRIVATE statics() { while (same_name()) { int stnr = dot->id_statnr; if (stnr == 0) panic("sequence error in input"); if (sta) { free_inpdef(sta); sta = 0; } stat_def(stnr); usage(stnr); if (sta) chk_def(sta); if (same_obj(stnr)) panic("sequence error in input"); } } PRIVATE stat_def(stnr) int stnr; { if (same_obj(stnr) && is_class(dot, CL_STAT|CL_DEF)) { if (lib) { report("%L: %s %s also defined in library %L", dot, funvar(dot), dot->id_name, lib); } if (ext) { if (!streq(dot->id_file, ext->id_file)) { report("%L: %s %s also %s at %L", dot, funvar(dot), dot->id_name, defdec(ext), ext); } } sta = dot; dot = new_inpdef(); get_dot(); } while (same_obj(stnr) && is_class(dot, CL_STAT|CL_DEF)) { report("%L: %s %s also defined at %L", dot, funvar(dot), dot->id_name, sta); get_dot(); } } PRIVATE chk_def(def) struct inpdef *def; { if (!def) return; if (!def->id_called) { if (streq(def->id_name, "main")) { /* silent */ } else if (ext && is_class(ext, CL_LIB)) { /* silent */ } else { if (!loptions['u']) { report("%L: %s %s %s but not used", def, funvar(def), def->id_name, defdec(def)); } } } if (is_class(def, CL_DEF|CL_FUNC)) { if ( def->id_valreturned == VALRETURNED && def->id_called && def->id_ignored ) { report("%L: %s returns value which is %s ignored", def, def->id_name, (def->id_used || def->id_voided) ? "sometimes" : "always"); } } } /******** D E B U G G I N G ********/ print_id(name, id) char *name; struct inpdef *id; { print("%s: %s, %s, %04d, \"%s\", %d, %s", name, id->id_class == LFDF ? "LFDF" : id->id_class == LVDF ? "LVDF" : id->id_class == EFDF ? "EFDF" : id->id_class == EVDF ? "EVDF" : id->id_class == EFDC ? "EFDC" : id->id_class == EVDC ? "EVDC" : id->id_class == IFDC ? "IFDC" : id->id_class == SFDF ? "SFDF" : id->id_class == SVDF ? "SVDF" : id->id_class == FC ? "FC" : id->id_class == VU ? "VU" : "", id->id_name, id->id_statnr, id->id_file, id->id_line, id->id_type ); if (is_class(id, CL_FUNC|CL_DEF) || is_class(id, CL_FUNC|CL_USAGE)) { print(", %d, %s, %s", id->id_nrargs, id->id_nrargs == 0 ? "" : id->id_argtps, id->id_class == FC ? (id->id_valused == USED ? "USED" : id->id_valused == IGNORED ? "IGNORED" : id->id_valused == VOIDED ? "VOIDED" : "") : (id->id_valreturned == NOVALRETURNED ? "NOVALRETURNED" : id->id_valreturned == VALRETURNED ? "VALRETURNED" : id->id_valreturned == NORETURN ? "NORETURN" : "" ) ); } print("\n"); }