2016-01-16 18:52:34 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2018-06-10 22:07:21 +02:00
|
|
|
* Copyright (C) 2007-2018 Cppcheck team.
|
2016-01-16 18:52:34 +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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-05-27 04:33:47 +02:00
|
|
|
|
2016-01-16 18:52:34 +01:00
|
|
|
#include "astutils.h"
|
2016-01-16 19:08:51 +01:00
|
|
|
#include "settings.h"
|
2016-01-16 18:52:34 +01:00
|
|
|
#include "testsuite.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
#include "token.h"
|
|
|
|
#include "tokenize.h"
|
|
|
|
#include "tokenlist.h"
|
2016-01-16 18:52:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
class TestAstUtils : public TestFixture {
|
|
|
|
public:
|
|
|
|
TestAstUtils() : TestFixture("TestAstUtils") {
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2018-05-15 16:37:40 +02:00
|
|
|
void run() override {
|
2016-01-16 18:52:34 +01:00
|
|
|
TEST_CASE(isReturnScope);
|
2017-09-11 13:45:36 +02:00
|
|
|
TEST_CASE(isVariableChanged);
|
2017-09-20 22:09:09 +02:00
|
|
|
TEST_CASE(isVariableChangedByFunctionCall);
|
2016-01-16 18:52:34 +01:00
|
|
|
}
|
|
|
|
|
2016-01-17 12:38:49 +01:00
|
|
|
bool isReturnScope(const char code[], int offset) {
|
2016-01-16 19:08:51 +01:00
|
|
|
Settings settings;
|
|
|
|
Tokenizer tokenizer(&settings, this);
|
2016-01-16 18:52:34 +01:00
|
|
|
std::istringstream istr(code);
|
2016-01-17 12:38:49 +01:00
|
|
|
tokenizer.tokenize(istr, "test.cpp");
|
|
|
|
const Token * const tok = (offset < 0)
|
|
|
|
? tokenizer.list.back()->tokAt(1+offset)
|
|
|
|
: tokenizer.tokens()->tokAt(offset);
|
|
|
|
return ::isReturnScope(tok);
|
2016-01-16 18:52:34 +01:00
|
|
|
}
|
|
|
|
|
2016-01-16 19:08:51 +01:00
|
|
|
void isReturnScope() {
|
2016-01-17 12:38:49 +01:00
|
|
|
ASSERT_EQUALS(true, isReturnScope("void f() { if (a) { return; } }", -2));
|
|
|
|
ASSERT_EQUALS(true, isReturnScope("void f() { if (a) { return (ab){0}; } }", -2)); // #7103
|
|
|
|
ASSERT_EQUALS(false, isReturnScope("void f() { if (a) { return (ab){0}; } }", -4)); // #7103
|
2016-01-18 15:39:20 +01:00
|
|
|
ASSERT_EQUALS(true, isReturnScope("void f() { if (a) { {throw new string(x);}; } }", -4)); // #7144
|
|
|
|
ASSERT_EQUALS(true, isReturnScope("void f() { if (a) { {throw new string(x);}; } }", -2)); // #7144
|
2016-01-16 18:52:34 +01:00
|
|
|
}
|
2017-09-11 13:45:36 +02:00
|
|
|
|
|
|
|
bool isVariableChanged(const char code[], const char startPattern[], const char endPattern[]) {
|
|
|
|
Settings settings;
|
|
|
|
Tokenizer tokenizer(&settings, this);
|
|
|
|
std::istringstream istr(code);
|
|
|
|
tokenizer.tokenize(istr, "test.cpp");
|
|
|
|
const Token * const tok1 = Token::findsimplematch(tokenizer.tokens(), startPattern);
|
|
|
|
const Token * const tok2 = Token::findsimplematch(tokenizer.tokens(), endPattern);
|
2018-04-18 17:45:43 +02:00
|
|
|
return ::isVariableChanged(tok1,tok2,1,false,&settings,true);
|
2017-09-11 13:45:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void isVariableChanged() {
|
2017-09-12 22:42:10 +02:00
|
|
|
// #8211 - no lhs for >> , do not crash
|
2018-04-18 17:45:43 +02:00
|
|
|
isVariableChanged("void f() {\n"
|
|
|
|
" int b;\n"
|
|
|
|
" if (b) { (int)((INTOF(8))result >> b); }\n"
|
|
|
|
"}", "if", "}");
|
2017-09-11 13:45:36 +02:00
|
|
|
}
|
2017-09-20 22:09:09 +02:00
|
|
|
|
|
|
|
bool isVariableChangedByFunctionCall(const char code[], const char pattern[], bool *inconclusive) {
|
|
|
|
Settings settings;
|
|
|
|
Tokenizer tokenizer(&settings, this);
|
|
|
|
std::istringstream istr(code);
|
|
|
|
tokenizer.tokenize(istr, "test.cpp");
|
|
|
|
const Token * const argtok = Token::findmatch(tokenizer.tokens(), pattern);
|
|
|
|
return ::isVariableChangedByFunctionCall(argtok, &settings, inconclusive);
|
|
|
|
}
|
|
|
|
|
|
|
|
void isVariableChangedByFunctionCall() {
|
|
|
|
const char *code;
|
|
|
|
bool inconclusive;
|
|
|
|
|
|
|
|
// #8271 - template method
|
|
|
|
code = "void f(int x) {\n"
|
|
|
|
" a<int>(x);\n"
|
|
|
|
"}";
|
|
|
|
inconclusive = false;
|
|
|
|
ASSERT_EQUALS(false, isVariableChangedByFunctionCall(code, "x ) ;", &inconclusive));
|
|
|
|
ASSERT_EQUALS(true, inconclusive);
|
|
|
|
}
|
2016-01-16 18:52:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
REGISTER_TEST(TestAstUtils)
|