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
/
expression.cpp
Age
Commit message (
Expand
)
Author
Files
Lines
2015-07-23
Add some missing checks for null pointers.
Andrei Karas
1
-0
/
+6
2015-07-23
Check right part of MODIFY_EXPR node.
Andrei Karas
1
-0
/
+4
2015-07-23
Do not check for null pointers variables with vptr.
Andrei Karas
1
-0
/
+17
2015-07-23
Fix some false positive with getting address from pointer variable.
Andrei Karas
1
-0
/
+6
2015-07-23
Fix some false positive with calling function.
Andrei Karas
1
-4
/
+18
2015-07-23
Dont check variable type on PARM_DECL also add unknown vars to known.
Andrei Karas
1
-8
/
+22
2015-07-23
Check all variables before using for pointer type.
Andrei Karas
1
-1
/
+35
2015-07-23
Remove null checks from COMPONENT_REF node. But add check in different parent...
Andrei Karas
1
-3
/
+92
2015-07-22
Allow detect some kind of empty pointer variables or if assigned unknown value.
Andrei Karas
1
-11
/
+19
2015-07-22
Allow detect as non null if to pointer assigned address from some var.
Andrei Karas
1
-0
/
+14
2015-07-21
Track new pointer variables if variable not have initial value.
Andrei Karas
1
-0
/
+6
2015-07-21
Track variables as non null if to pointer variable assigned non zero value.
Andrei Karas
1
-2
/
+5
2015-07-21
Fix false positives with detecting variables as pointers in VAR_DECL nodes.
Andrei Karas
1
-0
/
+3
2015-07-20
Fix detection for normal variables as pointers.
Andrei Karas
1
-2
/
+5
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
1
-22
/
+33
2015-07-20
Allow detect if variable was assigned nullptr.
Andrei Karas
1
-0
/
+5
2015-07-19
Handle situation like this: "type var = nullptr". Here var will be known as n...
Andrei Karas
1
-0
/
+2
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 ability to check variables assigned in if/while and check outside of this...
Andrei Karas
1
-1
/
+2
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
1
-4
/
+74
2015-07-05
Fix analysis for BIND_EPXR nodes.
Andrei Karas
1
-2
/
+2
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
1
-12
/
+3
2015-07-03
Fix collections after IF_STMT or other conditions.
Andrei Karas
1
-8
/
+29
2015-07-03
Add incomplete implimentation for checkedElse* sets.
Andrei Karas
1
-0
/
+4
2015-07-03
Rename checkedNullVars into checkedThenNullVars and checkedNonNullVars into c...
Andrei Karas
1
-27
/
+27
2015-07-03
Try to fix false positives. Still not all issues fixed.
Andrei Karas
1
-4
/
+13
2015-07-02
Add into function for linking variables also update for knownVars sets.
Andrei Karas
1
-3
/
+4
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-01
Add way for check internall collections by pseudo function call from code.
Andrei Karas
1
-0
/
+7
2015-07-01
Move collection manipulation functions into separate file.
Andrei Karas
1
-0
/
+1
2015-07-01
Move report functions into separate file.
Andrei Karas
1
-0
/
+1
2015-07-01
Add macroses isIn and IsNotIn.
Andrei Karas
1
-15
/
+15
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
1
-3
/
+14
2015-07-01
Add addNullVar function. Improve a bit analysis for MODIFY_EXPR.
Andrei Karas
1
-20
/
+20
2015-07-01
Add ability for remove variable from checks without linked vars.
Andrei Karas
1
-3
/
+2
2015-07-01
Rename removeNullVars into removeNullVarsAll.
Andrei Karas
1
-5
/
+4
2015-06-30
Into walkitem add set knownNonNullVars.
Andrei Karas
1
-3
/
+7
2015-06-30
Add into analysis ignoring variables if variable get unknown value.
Andrei Karas
1
-0
/
+12
2015-06-30
Move analysis for variable assignments into shared functions.
Andrei Karas
1
-31
/
+32
2015-06-29
Use in FOR_EACH macro range based for.
Andrei Karas
1
-4
/
+4
2015-06-28
Add exception for delete operator in checks for multiply non null checks.
Andrei Karas
1
-1
/
+79
2015-06-28
Add warning for more than one checks for null variables.
Andrei Karas
1
-0
/
+8
[next]