cppcheck/tools
Rikard Falkeborn afe05d019c dmake: Improve dependency detection of external and cli includes (#2163)
Previously, external files were not searched at all, and dependencies
on header files in cli was not taken into account for test files.

To add dependency of headers in externals, we also need to search for
includes with angular brackets.
2019-09-10 10:32:36 +02:00
..
test start_donate_cpu_client_productive.sh: Update client script regularly. 2019-03-06 08:41:16 +01:00
triage Suppress Code semantic and syntax warnings (#1936) 2019-06-30 21:43:25 +02:00
astyle_client.py astyle_client: reformat given source files 2019-06-27 09:24:22 +02:00
astyle_server.py astyle: minor tweaks in client/server scripts 2019-06-26 20:38:21 +02:00
ci.py Improve Python code 2017-06-04 22:51:48 +02:00
clang-ast.cpp
compare-ast-clang-and-cppcheck.py
compare.cs
daca2-download.py .travis.yml: Check more Python scripts with pylint (#2019) 2019-07-24 21:09:53 +02:00
daca2-getpackages.py daca2-getpackages: more protection when it goes wrong 2019-03-27 06:41:35 +01:00
daca2-logs2git.sh
dmake.cpp dmake: Improve dependency detection of external and cli includes (#2163) 2019-09-10 10:32:36 +02:00
dmake.sln
dmake.vcxproj dmake: Fix windows project and build (#1091) 2018-02-17 06:31:12 +01:00
donate-cpu-server.py donate-cpu-server.py: Get rid of hard-coded paths (#2159) 2019-09-10 07:58:37 +02:00
donate-cpu.py donate-cpu: Only check libraries once (#2158) 2019-09-09 13:42:57 +02:00
extract_and_run_more_tests.sh
extracttests.py
generate_and_run_more_tests.sh
generate_cfg_tests.cpp
git-pre-commit-cppcheck
listErrorsWithoutCWE.py
matchcompiler.py Remove 'unsigned' in match compiler 2019-07-15 13:49:35 +02:00
parse-glibc.py
pr.py Use library to track container lifetimes 2019-08-15 20:36:25 +02:00
readme.md tools/readme.md: short description of astyle-client 2019-06-30 19:20:29 +02:00
reduce.py reduce.py: Improved help text 2019-03-03 20:18:54 +01:00
run-coverity.sh fix run-coverity.sh script. It will run in the cppcheck-devinfo folder from now on. 2019-09-04 17:12:03 +02:00
run_more_tests.sh Make generate_and_run_more_tests happy 2019-08-18 15:13:00 +02:00
test_matchcompiler.py
test_showtimetop5.sh Correct script 2017-05-03 21:09:20 +02:00
testrunnerify_code.sh
times-tags.sh
times-vs.py Improve Python code 2017-06-04 22:51:48 +02:00
times.c
times.sh Makefile: Add one more flag 'MATCHCOMPILER=yes' 2019-06-23 13:43:09 +02:00
trac-keywords.py

readme.md

Cppcheck developer and build tools

##¤ * tools/astyle-client.py

With this tool you can astyle-format arbitrary cpp/header files even if you do not have astyle on your computer.

astyle on a server is used.

Example usage:

python tools/astyle-client.py lib/token.cpp

The file is reformatted and a status message is written that says if there were any changes or not.

This script is a lot slower than running astyle locally on your computer.

* 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 MATCHCOMPILER=yes

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.py

Script that reduces code for a hang/false positive.

* tools/times.sh

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