Daniel Marjamäki
|
32e569704b
|
executeCommand in CppCheckExecutor or QCheckThread
|
2020-05-19 16:04:40 +02:00 |
PKEuS
|
baca1fbe04
|
Fixed compilation: Added missing include
|
2020-05-19 14:32:50 +02:00 |
PKEuS
|
22884888fb
|
Optimization: Improved performance of ForwardAnalyzer by adding some pre-checks and combining conditions
|
2020-05-19 13:48:15 +02:00 |
PKEuS
|
c155062cf2
|
Optimization: Speed up SymbolDatabase creation and Tokenizer::findGarbageCode() by using Token::isKeyword() for pre-checks
|
2020-05-19 13:48:15 +02:00 |
PKEuS
|
f6788c0472
|
Fixed Token::isKeyword: Actually set this flag to a reasonable value in all code paths
|
2020-05-19 13:47:25 +02:00 |
PKEuS
|
c9d8f607df
|
Optimization: Reduced peak memory usage (30% in my test case) by immediately deleting simplecpp::TokenList while creating the cppcheck TokenList.
|
2020-05-19 12:08:17 +02:00 |
amai2012
|
d78ff975a0
|
Run dmake
|
2020-05-19 10:11:56 +02:00 |
Daniel Marjamäki
|
37646c9ffb
|
revert accidental mode changes
|
2020-05-19 10:05:14 +02:00 |
PKEuS
|
09a30bd6b5
|
Optimization: Speed up Tokenizer::findGarbageCode() (by 15% in my test case) by avoiding iterating through token list multiple times
|
2020-05-19 08:54:47 +02:00 |
PKEuS
|
a9cea9ad7c
|
Fixed compilation (next attempt): Added more missing includes
|
2020-05-19 08:53:38 +02:00 |
PKEuS
|
f0ac0c8675
|
Optimization: Remove simplecpp::TokenList as soon as cppecheck TokenList was created. This saves memory while checks are running (20% in my test case), although not peak memory
|
2020-05-19 08:41:05 +02:00 |
PKEuS
|
ade253a730
|
Optimization: Reduced memory consumption of token list
- allocate memory for mTemplateSimplifierPointers only if necessary
- reordered member variables in TokenImpl
|
2020-05-19 08:40:24 +02:00 |
PKEuS
|
c409daf918
|
Fixed compilation: Added missing include
|
2020-05-19 08:38:51 +02:00 |
PKEuS
|
4948f85460
|
Visual Studio: Updated solution
- Enable several compiler warnings again
- Let __cplusplus have a reasonable value
|
2020-05-19 08:35:13 +02:00 |
PKEuS
|
d6390dbd14
|
Optimization: Improved performance of simplifyTypedef for code with lots of typedefs
20% performance gain when checking ExtremeTuxRacer sourcecode (with glext.h available)
|
2020-05-19 08:35:13 +02:00 |
Philipp Kloke
|
32923b7ac5
|
Refactorization: Fixed a couple of compiler warnings about reusing variable names
|
2020-05-19 08:35:12 +02:00 |
PKEuS
|
793ed68029
|
Refactorization: Moved code from header to source
- from utils.h to new utils.cpp
- from token.h to token.cpp
- from valueflow.h to valueflow.cpp
- from errorlogger.h to errorlogger.cpp
|
2020-05-19 08:35:12 +02:00 |
Daniel Marjamäki
|
65e9f6210c
|
CLI: Tweak execution of python addons
|
2020-05-19 08:14:56 +02:00 |
Daniel Marjamäki
|
259724d6e3
|
astyle formatting
[ci skip]
|
2020-05-18 19:53:35 +02:00 |
shaneasd
|
7bfd686f04
|
Fix #9700 duplicateBranch false positive from missing scope operator :: in ast (#2646)
|
2020-05-18 19:31:13 +02:00 |
Daniel Marjamäki
|
f6f489ea49
|
Try to make AppVeyor happy
|
2020-05-18 09:51:47 +02:00 |
Daniel Marjamäki
|
aa7a4b8372
|
Try to make AppVeyor happy
|
2020-05-18 08:24:17 +02:00 |
Daniel Marjamäki
|
a0f2fda53a
|
Addons: If normal python fails, try 'python'
|
2020-05-18 07:44:46 +02:00 |
Daniel Marjamäki
|
2ef538c171
|
Tweak paths when executing addons in Cppcheck
|
2020-05-17 21:45:37 +02:00 |
Daniel Marjamäki
|
9eda399323
|
Less strict unknownMacro
|
2020-05-17 19:12:16 +02:00 |
Daniel Marjamäki
|
547d1b158e
|
Fixed #9723 (GUI: inline suppressions does not work for addons)
|
2020-05-17 16:50:13 +02:00 |
Daniel Marjamäki
|
871cf379d5
|
ExprData: Better handling of ternary operator
|
2020-05-15 21:34:52 +02:00 |
Daniel Marjamäki
|
76f4fae806
|
Bug hunting; Started to activate some itc tests for uninitialized variables
|
2020-05-15 20:58:33 +02:00 |
Daniel Marjamäki
|
57e9036186
|
Cppcheck --addon command should use python3 by default. It can be overridden if needed.
|
2020-05-15 14:33:35 +02:00 |
Daniel Marjamäki
|
e508950f4f
|
ExprEngine; Activate bug hunting analysis for uninitialized variables/data. This analysis is pretty experimental right now.
|
2020-05-15 11:25:56 +02:00 |
Daniel Marjamäki
|
275c8e84d2
|
Set development version 2.0.99
|
2020-05-15 11:15:34 +02:00 |
versat
|
2fd2edd3f9
|
astyle formatting
[ci skip]
|
2020-05-14 18:18:14 +02:00 |
Oliver Stöneberg
|
a0317477c9
|
utils.h: avoid unnecessary string creation in isStringCharLiteral() (#2638)
* utils.h: avoid unnecessary string creation in isStringCharLiteral()
reduces Ir from 541 to 63 in a test
* dmake
|
2020-05-14 14:45:35 +02:00 |
Paul Fultz II
|
d123279fc1
|
Fix issue 9709: ValueFlow: variable value is not known (#2643)
|
2020-05-14 14:10:32 +02:00 |
Daniel Marjamäki
|
0799d74071
|
Tweak Z3 version checks
|
2020-05-12 17:01:16 +02:00 |
Daniel Marjamäki
|
3e650c311b
|
Remove NEW_Z3 macro
|
2020-05-12 16:57:07 +02:00 |
Daniel Marjamäki
|
046f8eb6c6
|
ExprEngine: improved handling when lhs/rhs for && has unknown value
|
2020-05-10 22:50:23 +02:00 |
Oliver Stöneberg
|
e0e50139cb
|
cleaned up includes based on include-what-you-use (#2632)
* cleaned up includes based on include-what-you-use
* token.cpp: fixed -Wextra-semi-stmt warning
|
2020-05-10 16:45:45 +02:00 |
Daniel Marjamäki
|
dc32f428ff
|
Set Cppcheck version
|
2020-05-10 11:28:31 +02:00 |
Daniel Marjamäki
|
08ddd84780
|
Update copyright year
|
2020-05-10 11:16:32 +02:00 |
Daniel Marjamäki
|
3e0218299b
|
Revert "Update copyright year"
This reverts commit 6eec6c4bd5 .
|
2020-05-10 11:13:05 +02:00 |
Daniel Marjamäki
|
6eec6c4bd5
|
Update copyright year
|
2020-05-10 11:11:34 +02:00 |
Daniel Marjamäki
|
137f262300
|
Fix Token::isImpossibleIntValue
|
2020-05-09 10:30:19 +02:00 |
Daniel Marjamäki
|
d4169f04d5
|
Bug hunting; Avoid false warnings for impossible values
|
2020-05-08 17:42:56 +02:00 |
Daniel Marjamäki
|
ab8bf81f03
|
ValueFlow: Try to clarify debug output for impossible values
|
2020-05-08 16:13:55 +02:00 |
Daniel Marjamäki
|
02d88cb191
|
Travis: Run TestExprEngine tests
|
2020-05-08 12:21:22 +02:00 |
Daniel Marjamäki
|
4779cb124e
|
Fixed #9649 (False positive: uninitialized struct member)
|
2020-05-07 22:27:18 +02:00 |
Daniel Marjamäki
|
00d1091506
|
Tokenizer: operator handling, fix tests
|
2020-05-04 23:00:51 +02:00 |
Daniel Marjamäki
|
06cb0e99d1
|
Tokenizer: Fix syntax error when operator* is called
|
2020-05-04 21:33:30 +02:00 |
Daniel Marjamäki
|
8c57055a0b
|
Try to make Travis happy
|
2020-05-03 20:46:29 +02:00 |