cppcheck/tools
Daniel Marjamäki 1b29a99e45 tools: refactoring daca2 2015-08-21 15:46:10 +02:00
..
argparse.py autopep8 formatting 2013-10-18 17:35:59 +02:00
aws.py PEP8 fixes. 2014-03-11 17:42:14 +02:00
ci.py PEP8 fixes. 2015-04-20 21:11:45 +03:00
daca2-addons.py tools: refactoring daca2 2015-08-21 15:46:10 +02:00
daca2-download.py PEP8 fixes. 2015-04-20 21:11:45 +03:00
daca2-report.py daca2-report: handle \r also 2015-04-29 17:23:24 +02:00
daca2.py daca2: enable exception-handling and drop valgrind from list of skipped packages 2015-08-01 17:41:26 +02:00
dmake.cpp Make DB2MAN overridable 2015-08-17 19:31:08 +03:00
dmake.vcproj Tools: Update VS project file. 2011-08-11 23:40:10 +03:00
extract_and_run_more_tests.sh Testing: extract testcases, edit comparisons, run cppcheck, compare results 2015-07-22 09:52:24 +02:00
extracttests.py Testing: extract testcases, edit comparisons, run cppcheck, compare results 2015-07-22 09:52:24 +02:00
generate_and_run_more_tests.sh generate_and_run_more_tests: Add testuninitvar 2015-07-26 11:29:02 +02:00
matchcompiler.py PEP8 fixes. 2015-08-21 11:59:52 +03:00
parse-glibc.py PEP8 fixes. 2015-04-20 21:11:45 +03:00
readme.md PEP8 fixes. 2015-08-21 11:59:52 +03:00
reduce.cpp reduce: fix cppcheck style remark about CppcheckExecutor not being explicit. 2015-04-07 01:58:10 +02:00
run_more_tests.sh generate_and_run_more_tests.sh: Refactoring 2015-07-22 13:44:08 +02:00
rundaca2.py tools: refactoring daca2 2015-08-21 15:46:10 +02:00
test_matchcompiler.py PEP8 fixes. 2015-08-21 11:59:52 +03:00
test_showtimetop5.sh Trim tailing spaces and convert tabs to spaces. 2014-03-18 17:00:28 +02:00
times-tags.sh PEP8 fixes. 2015-08-21 11:59:52 +03:00
times.c tools/times: modified script to allow longer dataseries 2013-07-21 13:16:34 +02:00
times.sh times.sh: create a variable which can be changed to alter the iterations/how often we run cppcheck on one commit (default: 4). 2014-08-31 11:10:55 +02:00
tools.pro Add general PRO file for console builds. 2012-06-18 09:28:32 +03:00

readme.md

Cppcheck developer and build tools

* tools/matchcompiler.py

The matchcompiler.py is a build script that performs a few code transformations to .cpp files under the lib directory. These transformations are related to the use of Token::Match() function and are intended to improve code performance. The transformed files are saved on the build directory. This tool is silently used when building the code with SRCDIR=build, that is:

$ cd path/to/cppcheck
$ make SRCDIR=build

Here is a simple example of the matchcompiler.py optimization. Suppose there is a file example.cpp under lib/:

// lib/example.cpp
void f1() {
    Token::Match(tok, "abc");
}

void f2() {
    const char *abc = "abc";
    Token::Match(tok, abc);
}

If you manually run matchcompiler.py from the main directory:

$ cd path/to/cppcheck
$ python tools/matchcompiler.py

A file example.cpp will be generated on the build directory:

// build/example.cpp
#include "token.h"
#include "errorlogger.h"
#include <string>
#include <cstring>
static const std::string matchStr1("abc");
// pattern: abc
static bool match1(const Token* tok) {
    if (!tok || !(tok->str()==matchStr1)/* abc */)
        return false;
    return true;
}
void f1() {
    match1(tok);
}

void f2() {
    const char *abc = "abc";
    Token::Match(tok, abc);
}

From this we can see that the usage of Token::Match() in f1() has been optimized, whereas the one in f2() couldn't be optimized (the string wasn't inline on the Token::Match() call). The developer doesn't need to use this tool during development but should be aware of these optimizations. Building with this optimization, cppcheck can get a boost of 2x of speed-up.

* tools/dmake.cpp

Automatically generates the main Makefile for Cppcheck (the main Makefile should not be modified manually). To build and run the dmake tool execute:

$ cd path/to/cppcheck
$ make dmake
$ ./dmake

* tools/reduce.cpp

Cppcheck tool that reduces code for a hang/false positive. To build the tool run:

$ cd path/to/cppcheck
$ make reduce

* tools/times.sh

Script to generate a times.log file that contains timing information of the last 20 revisions.