2008-12-18 22:28:57 +01:00
|
|
|
/*
|
2009-01-21 21:04:20 +01:00
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2009-05-30 07:48:12 +02:00
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
2008-12-18 22:28:57 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-12-18 22:28:57 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// Check for dangerous division..
|
|
|
|
// such as "svar / uvar". Treating "svar" as unsigned data is not good
|
|
|
|
|
|
|
|
|
2009-01-06 15:18:36 +01:00
|
|
|
#include "../src/tokenize.h"
|
|
|
|
#include "../src/checkother.h"
|
2008-12-18 22:28:57 +01:00
|
|
|
#include "testsuite.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
extern std::ostringstream errout;
|
|
|
|
|
|
|
|
class TestDivision : public TestFixture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestDivision() : TestFixture("TestDivision")
|
|
|
|
{ }
|
|
|
|
|
|
|
|
private:
|
2009-09-15 20:46:47 +02:00
|
|
|
void check(const char code[], bool style = true, bool all = true)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Tokenize..
|
|
|
|
Tokenizer tokenizer;
|
|
|
|
std::istringstream istr(code);
|
2009-01-05 16:49:57 +01:00
|
|
|
tokenizer.tokenize(istr, "test.cpp");
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
// Clear the error buffer..
|
|
|
|
errout.str("");
|
|
|
|
|
2009-01-12 18:12:14 +01:00
|
|
|
Settings settings;
|
2009-09-15 20:46:47 +02:00
|
|
|
settings._showAll = all;
|
|
|
|
settings._checkCodingStyle = style;
|
2009-01-12 18:12:14 +01:00
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
// Check for unsigned divisions..
|
2009-03-20 18:16:21 +01:00
|
|
|
CheckOther checkOther(&tokenizer, &settings, this);
|
2009-07-05 22:16:43 +02:00
|
|
|
checkOther.checkUnsignedDivision();
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void run()
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
TEST_CASE(division1);
|
|
|
|
TEST_CASE(division2);
|
|
|
|
TEST_CASE(division3);
|
|
|
|
TEST_CASE(division4);
|
|
|
|
TEST_CASE(division5);
|
|
|
|
TEST_CASE(division6);
|
|
|
|
TEST_CASE(division7);
|
2009-09-15 20:46:47 +02:00
|
|
|
TEST_CASE(division8);
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void division1()
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
check("void f()\n"
|
|
|
|
"{\n"
|
|
|
|
" int ivar = -2;\n"
|
|
|
|
" unsigned int uvar = 2;\n"
|
|
|
|
" return ivar / uvar;\n"
|
|
|
|
"}\n");
|
2009-09-15 20:46:47 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:5]: (possible style) Division with signed and unsigned operators\n", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void division2()
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
check("void f()\n"
|
|
|
|
"{\n"
|
|
|
|
" int ivar = -2;\n"
|
|
|
|
" unsigned int uvar = 2;\n"
|
|
|
|
" return uvar / ivar;\n"
|
|
|
|
"}\n");
|
2009-09-15 20:46:47 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:5]: (possible style) Division with signed and unsigned operators\n", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void division3()
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
check("typedef int s32;\n"
|
|
|
|
"typedef unsigned int u32;\n"
|
|
|
|
"void f()\n"
|
|
|
|
"{\n"
|
|
|
|
" s32 ivar = -2;\n"
|
|
|
|
" u32 uvar = 2;\n"
|
|
|
|
" return uvar / ivar;\n"
|
|
|
|
"}\n");
|
2009-09-15 20:46:47 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:7]: (possible style) Division with signed and unsigned operators\n", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void division4()
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
check("void f1()\n"
|
|
|
|
"{\n"
|
|
|
|
" int i1;\n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
|
|
|
"void f2(unsigned int i1)\n"
|
|
|
|
"{\n"
|
|
|
|
" unsigned int i2;\n"
|
2009-05-07 22:17:29 +02:00
|
|
|
" result = i2 / i1;}\n"
|
2009-01-05 16:49:57 +01:00
|
|
|
);
|
2009-06-05 02:39:36 +02:00
|
|
|
ASSERT_EQUALS("", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void division5()
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
check("#define USER_HASH (16)\n"
|
|
|
|
"void foo()\n"
|
|
|
|
"{\n"
|
|
|
|
" unsigned int val = 32;\n"
|
2009-05-07 22:17:29 +02:00
|
|
|
" val = val / USER_HASH;}\n"
|
2009-01-05 16:49:57 +01:00
|
|
|
);
|
2009-06-05 02:39:36 +02:00
|
|
|
ASSERT_EQUALS("", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void division6()
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
check("void foo()\n"
|
|
|
|
"{\n"
|
|
|
|
" unsigned int val = 32;\n"
|
2009-05-07 22:17:29 +02:00
|
|
|
" int i = val / -2; }\n"
|
2009-01-05 16:49:57 +01:00
|
|
|
);
|
2009-05-31 21:48:55 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:4]: (error) Unsigned division. The result will be wrong.\n", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void division7()
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
check("void foo()\n"
|
|
|
|
"{\n"
|
|
|
|
" unsigned int val = 32;\n"
|
2009-05-07 22:17:29 +02:00
|
|
|
" int i = -96 / val; }\n"
|
2009-01-05 16:49:57 +01:00
|
|
|
);
|
2009-05-31 21:48:55 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:4]: (error) Unsigned division. The result will be wrong.\n", errout.str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
2009-09-15 20:46:47 +02:00
|
|
|
|
|
|
|
void division8()
|
|
|
|
{
|
|
|
|
check("void foo(int b)\n"
|
|
|
|
"{\n"
|
|
|
|
" if (b > 0)\n"
|
|
|
|
" {\n"
|
|
|
|
" unsigned int a;\n"
|
|
|
|
" unsigned int c = a / b;\n"
|
2009-09-22 18:51:52 +02:00
|
|
|
" }\n"
|
|
|
|
"}\n", false, true);
|
2009-09-15 20:46:47 +02:00
|
|
|
ASSERT_EQUALS("", errout.str());
|
|
|
|
|
|
|
|
check("void foo(int b)\n"
|
|
|
|
"{\n"
|
|
|
|
" if (b > 0)\n"
|
|
|
|
" {\n"
|
|
|
|
" unsigned int a;\n"
|
|
|
|
" unsigned int c = a / b;\n"
|
2009-09-22 18:51:52 +02:00
|
|
|
" }\n"
|
|
|
|
"}\n", true, false);
|
2009-09-15 20:46:47 +02:00
|
|
|
ASSERT_EQUALS("", errout.str());
|
|
|
|
|
|
|
|
check("void foo(int b)\n"
|
|
|
|
"{\n"
|
|
|
|
" if (b > 0)\n"
|
|
|
|
" {\n"
|
|
|
|
" unsigned int a;\n"
|
|
|
|
" unsigned int c = a / b;\n"
|
2009-09-22 18:51:52 +02:00
|
|
|
" }\n"
|
|
|
|
"}\n", true, true);
|
2009-09-15 20:46:47 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:6]: (possible style) Division with signed and unsigned operators\n", errout.str());
|
2009-10-11 16:52:35 +02:00
|
|
|
|
|
|
|
check("void a(int i) { }\n"
|
|
|
|
"int foo( unsigned int sz )\n"
|
|
|
|
"{\n"
|
|
|
|
" register unsigned int i=1;\n"
|
|
|
|
" return i/sz;\n"
|
|
|
|
"}\n", true, true);
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
2009-09-15 20:46:47 +02:00
|
|
|
}
|
2008-12-18 22:28:57 +01:00
|
|
|
};
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
REGISTER_TEST(TestDivision)
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
|