From 139eabae9dd59c9cd1ae53adc5866e905e5c18ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 19 May 2007 19:21:14 +0000 Subject: [PATCH] --- main.cpp | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 60 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index b6ad95206..ae40c6ccd 100644 --- a/main.cpp +++ b/main.cpp @@ -34,6 +34,7 @@ struct STATEMENT MALLOC, FREE, NEW, DELETE, NEWARRAY, DELETEARRAY, + LOOP, ENDLOOP, IF, ELSE, ELSEIF, ENDIF, RETURN, CONTINUE, BREAK}; etype Type; @@ -66,6 +67,9 @@ void WarningIsDigit(); // Redundant code void WarningRedundantCode(); +// Warning upon: if (condition); +void WarningIf(); + //--------------------------------------------------------------------------- static void CppCheck(const char FileName[]); @@ -143,6 +147,9 @@ static void CppCheck(const char FileName[]) // if (a) delete a; WarningRedundantCode(); + // if (condition); + WarningIf(); + // Clean up tokens.. while (tokens) { @@ -638,7 +645,7 @@ void CreateStatementList() } else if (indentlevel >= 1) { - bool hasif = false; + bool hasif = false, hasloop = false; if (strcmp(tok->str,"if")==0) { @@ -654,6 +661,14 @@ void CreateStatementList() AppendStatement(STATEMENT::ELSE, tok); } + else if (strcmp(tok->str,"do")==0 || + strcmp(tok->str,"while")==0 || + strcmp(tok->str,"for")==0) + { + AppendStatement(STATEMENT::LOOP, tok); + hasloop = true; + } + // Declaring variables.. if (IsName(tok->str) && strcmp(tok->str,"delete") && strcmp(tok->str,"return")) { @@ -810,6 +825,10 @@ void CreateStatementList() { AppendStatement(STATEMENT::ENDIF, tok); } + else if (hasloop) + { + AppendStatement(STATEMENT::ENDLOOP, tok); + } } } @@ -1189,6 +1208,11 @@ void CheckMemoryLeak() case STATEMENT::ELSEIF: case STATEMENT::ELSE: // Conditional statements.. + iflevel++; + break; + + case STATEMENT::ENDIF: + iflevel--; break; case STATEMENT::MALLOC: @@ -1839,3 +1863,38 @@ void WarningRedundantCode() + +//--------------------------------------------------------------------------- +// if (condition); +//--------------------------------------------------------------------------- + +void WarningIf() +{ + for (TOKEN *tok = tokens; tok; tok = tok->next) + { + if (strcmp(tok->str,"if")==0) + { + int parlevel = 0; + for (;tok;tok=tok->next) + { + if (tok->str[0]=='(') + parlevel++; + else if (tok->str[0]==')') + { + parlevel--; + if (parlevel<=0) + { + if (strcmp(getstr(tok,1), ";") == 0) + { + std::ostringstream ostr; + ostr << FileLine(tok) << ": Found \"if (condition);\""; + ReportErr(ostr.str()); + } + break; + } + } + } + } + } +} +