Don't bailout for noreturn functions in checkRedundantAssignments outside switch.

This commit is contained in:
PKEuS 2012-09-03 12:03:30 +02:00
parent b6c1528566
commit 27cafd495a
2 changed files with 30 additions and 31 deletions

View File

@ -705,7 +705,7 @@ void CheckOther::checkRedundantAssignment()
redundantCopyError(it->second, tok, param1->str()); redundantCopyError(it->second, tok, param1->str());
} }
} }
} else { } else if (scope->type == Scope::eSwitch) { // Avoid false positives if noreturn function is called in switch
const Function* func = symbolDatabase->findFunctionByToken(_tokenizer->getFunctionTokenByName(tok->str().c_str())); const Function* func = symbolDatabase->findFunctionByToken(_tokenizer->getFunctionTokenByName(tok->str().c_str()));
if (!func || !func->hasBody) { if (!func || !func->hasBody) {
varAssignments.clear(); varAssignments.clear();
@ -721,6 +721,9 @@ void CheckOther::checkRedundantAssignment()
varAssignments.clear(); varAssignments.clear();
memAssignments.clear(); memAssignments.clear();
} }
} else { // Noreturn functions outside switch don't cause problems
eraseNotLocalArg(varAssignments, symbolDatabase);
eraseNotLocalArg(memAssignments, symbolDatabase);
} }
} }
} }

View File

@ -1553,6 +1553,22 @@ private:
"}\n"); "}\n");
ASSERT_EQUALS("", errout.str()); ASSERT_EQUALS("", errout.str());
check("void bar() {}\n" // bar isn't noreturn
"void foo()\n"
"{\n"
" int y = 1;\n"
" switch (x)\n"
" {\n"
" case 2:\n"
" y = 2;\n"
" bar();\n"
" case 3:\n"
" y = 3;\n"
" }\n"
" bar(y);\n"
"}\n");
ASSERT_EQUALS("[test.cpp:8] -> [test.cpp:11]: (warning) Variable 'y' is reassigned a value before the old one has been used. This might indicate a missing 'break;'.\n", errout.str());
check("void foo(char *str, int a)\n" check("void foo(char *str, int a)\n"
"{\n" "{\n"
" switch (a)\n" " switch (a)\n"
@ -6045,16 +6061,14 @@ private:
ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:4]: (performance) Variable 'bar' is reassigned a value before the old one has been used.\n", errout.str()); ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:4]: (performance) Variable 'bar' is reassigned a value before the old one has been used.\n", errout.str());
// Tests with function call between assignment // Tests with function call between assignment
check("void bar() {}\n" check("void f(int i) {\n"
"void f(int i) {\n"
" i = 1;\n" " i = 1;\n"
" bar();\n" " bar();\n"
" i = 1;\n" " i = 1;\n"
"}"); "}");
ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:5]: (performance) Variable 'i' is reassigned a value before the old one has been used.\n", errout.str()); ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:4]: (performance) Variable 'i' is reassigned a value before the old one has been used.\n", errout.str());
check("void bar() {}\n" check("int i;\n"
"int i;\n"
"void f() {\n" "void f() {\n"
" i = 1;\n" " i = 1;\n"
" bar();\n" // Global variable might be accessed in bar() " bar();\n" // Global variable might be accessed in bar()
@ -6062,21 +6076,13 @@ private:
"}"); "}");
ASSERT_EQUALS("", errout.str()); ASSERT_EQUALS("", errout.str());
check("void bar() {}\n" check("void f() {\n"
"void f() {\n"
" int i;\n" " int i;\n"
" i = 1;\n" " i = 1;\n"
" bar();\n" " bar();\n"
" i = 1;\n" " i = 1;\n"
"}"); "}");
ASSERT_EQUALS("[test.cpp:4] -> [test.cpp:6]: (performance) Variable 'i' is reassigned a value before the old one has been used.\n", errout.str()); ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:5]: (performance) Variable 'i' is reassigned a value before the old one has been used.\n", errout.str());
check("void f(int i) {\n"
" i = 1;\n"
" bar();\n" // Unknown function - can be noreturn
" i = 1;\n"
"}");
ASSERT_EQUALS("", errout.str());
check("void bar(int i) {}\n" check("void bar(int i) {}\n"
"void f(int i) {\n" "void f(int i) {\n"
@ -6149,16 +6155,14 @@ private:
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:4]: (performance) Buffer 'a' is being written before its old content has been used.\n", errout.str()); ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:4]: (performance) Buffer 'a' is being written before its old content has been used.\n", errout.str());
// Tests with function call between copy // Tests with function call between copy
check("void bar() {}\n" check("void f(void* a) {\n"
"void f(void* a) {\n"
" snprintf(a, foo, bar);\n" " snprintf(a, foo, bar);\n"
" bar();\n" " bar();\n"
" memset(a, 0, size);\n" " memset(a, 0, size);\n"
"}"); "}");
ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:5]: (performance) Buffer 'a' is being written before its old content has been used.\n", errout.str()); ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:4]: (performance) Buffer 'a' is being written before its old content has been used.\n", errout.str());
check("void bar() {}\n" check("void* a;\n"
"void* a;\n"
"void f() {\n" "void f() {\n"
" memset(a, 0, size);\n" " memset(a, 0, size);\n"
" bar();\n" // Global variable might be accessed in bar() " bar();\n" // Global variable might be accessed in bar()
@ -6166,21 +6170,13 @@ private:
"}"); "}");
ASSERT_EQUALS("", errout.str()); ASSERT_EQUALS("", errout.str());
check("void bar() {}\n" check("void f() {\n"
"void f() {\n"
" void* a = foo();\n" " void* a = foo();\n"
" memset(a, 0, size);\n" " memset(a, 0, size);\n"
" bar();\n" " bar();\n"
" memset(a, 0, size);\n" " memset(a, 0, size);\n"
"}"); "}");
ASSERT_EQUALS("[test.cpp:4] -> [test.cpp:6]: (performance) Buffer 'a' is being written before its old content has been used.\n", errout.str()); ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:5]: (performance) Buffer 'a' is being written before its old content has been used.\n", errout.str());
check("void f(void* a) {\n"
" memset(a, 0, size);\n"
" bar();\n" // Unknown function - can be noreturn
" memset(a, 0, size);\n"
"}");
ASSERT_EQUALS("", errout.str());
check("void bar(void* a) {}\n" check("void bar(void* a) {}\n"
"void f(void* a) {\n" "void f(void* a) {\n"