index
:
mana/paranucker
master
Paranoid static code analyzer for C/C++ Regular Users should NOT download this.
root
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
analysis
Age
Commit message (
Expand
)
Author
Files
Lines
2015-07-20
Fix handling "var = new Type" if Type have virtual destructor.
Andrei Karas
1
-14
/
+45
2015-07-20
Improve call function handling.
Andrei Karas
2
-22
/
+34
2015-07-20
Detect what variable is null after if with both branches set variable to null...
Andrei Karas
1
-0
/
+8
2015-07-20
Allow detect if variable was assigned nullptr.
Andrei Karas
1
-0
/
+5
2015-07-20
Detect what variable is non null after if with both branches set variable to ...
Andrei Karas
1
-1
/
+13
2015-07-20
Add ability for detect what variable will be non null after if block (in else...
Andrei Karas
3
-5
/
+21
2015-07-20
If in if/while body changed any variable, outside of body it removed from kno...
Andrei Karas
3
-0
/
+16
2015-07-19
Handle situation like this: "type var = nullptr". Here var will be known as n...
Andrei Karas
3
-0
/
+16
2015-07-19
Fix ability for detect what variable will be non null after while block.
Andrei Karas
1
-1
/
+3
2015-07-19
Add ability for detect what variable will be non null after if block.
Andrei Karas
3
-0
/
+41
2015-07-18
Fix detecting sub nodes in MODIFY_EXPR.
Andrei Karas
1
-3
/
+6
2015-07-13
Add ability to detect return from operator new as non null pointer.
Andrei Karas
1
-1
/
+3
2015-07-10
Fix false positive like this: ptr = ptr->val;
Andrei Karas
1
-4
/
+9
2015-07-10
Add analysis for CONTINUE_STMT node.
Andrei Karas
4
-4
/
+27
2015-07-10
Unlink assigned variable in if/while body.
Andrei Karas
2
-10
/
+19
2015-07-10
Fix false positives in second check in while condition.
Andrei Karas
1
-0
/
+2
2015-07-10
Disable check for useless checks in second check in while condition.
Andrei Karas
2
-4
/
+8
2015-07-10
In WHILE_STMT also check condition after while body.
Andrei Karas
1
-0
/
+5
2015-07-10
Add ability to check variables assigned in if/while and check outside of this...
Andrei Karas
3
-22
/
+20
2015-07-08
Add WHILE_STMT node analysis.
Andrei Karas
5
-1
/
+119
2015-07-06
Track variable for checking null pointer assigned from function call only if ...
Andrei Karas
1
-0
/
+16
2015-07-06
Add way to track variables if to it was assigned function result.
Andrei Karas
6
-11
/
+129
2015-07-05
Add non null function arguments to knownVars and knownNonNullVars collections.
Andrei Karas
1
-1
/
+5
2015-07-05
Remove old commented code from statement analysis.
Andrei Karas
1
-20
/
+0
2015-07-05
Fix analysis for BIND_EPXR nodes.
Andrei Karas
2
-3
/
+3
2015-07-04
Fix false positive in complex conditions like if (expr1 || expr2 || expr3)
Andrei Karas
1
-23
/
+7
2015-07-04
Fix most issues with linked vars.
Andrei Karas
3
-33
/
+99
2015-07-03
Fix some issues with linked vars.
Andrei Karas
3
-51
/
+80
2015-07-03
Add to debug pseudo function collections linkedVars and linkedReverseVars.
Andrei Karas
1
-4
/
+53
2015-07-03
Remove all variables from knownVars if both branches in if returned.
Andrei Karas
1
-1
/
+3
2015-07-03
Fix collections after IF_STMT or other conditions.
Andrei Karas
2
-13
/
+33
2015-07-03
Fix warning about wrong internal collection.
Andrei Karas
1
-1
/
+1
2015-07-03
Add incomplete implimentation for checkedElse* sets.
Andrei Karas
6
-14
/
+73
2015-07-03
Rename checkedNullVars into checkedThenNullVars and checkedNonNullVars into c...
Andrei Karas
6
-74
/
+74
2015-07-03
Try to fix false positives. Still not all issues fixed.
Andrei Karas
4
-16
/
+69
2015-07-02
If add new variable into linked vars, add it also to knownVars set.
Andrei Karas
1
-0
/
+1
2015-07-02
Add into function for linking variables also update for knownVars sets.
Andrei Karas
2
-3
/
+26
2015-07-02
Remove variable from checked vars if variable assigned unknown expression.
Andrei Karas
1
-10
/
+20
2015-07-02
Ignore analysis for node CALL_EXPR if enabled plugin command findargs.
Andrei Karas
1
-0
/
+3
2015-07-02
Remove var from knownVars collections if to var assigned "garbage" value.
Andrei Karas
1
-0
/
+3
2015-07-02
Fix knownVars collection again.
Andrei Karas
1
-4
/
+10
2015-07-02
Fix knownVars collections after exit from IF_STMT with return in some/all bra...
Andrei Karas
1
-1
/
+8
2015-07-01
Some fixes for known vars collections.
Andrei Karas
2
-3
/
+11
2015-07-01
Add way for check internall collections by pseudo function call from code.
Andrei Karas
5
-0
/
+239
2015-07-01
Move collection manipulation functions into separate file.
Andrei Karas
6
-166
/
+235
2015-07-01
Move report functions into separate file.
Andrei Karas
7
-112
/
+187
2015-07-01
Add macroses isIn and IsNotIn.
Andrei Karas
3
-33
/
+33
2015-07-01
Report useless checks if variable was checked for null and non null in all ca...
Andrei Karas
1
-3
/
+6
2015-07-01
Fix different issues in useless variables checks.
Andrei Karas
2
-11
/
+22
2015-07-01
Add addNullVar function. Improve a bit analysis for MODIFY_EXPR.
Andrei Karas
3
-20
/
+30
[prev]
[next]