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
Age
Commit message (
Expand
)
Author
Files
Lines
2019-03-07
Add missing vector include in node.h
Andrei Karas
1
-0
/
+1
2019-03-07
Pass some strings by const&.
Quipyowert2
5
-8
/
+8
2019-03-07
Add GOTO_EXPR
Andrei Karas
4
-3
/
+40
2015-08-19
Skip CLEANUP_POINT_EXPR node as other NOP nodes.
Andrei Karas
1
-3
/
+6
2015-08-19
Fix some false positives in expressions like this: ptr1 = ptr2->data;
Andrei Karas
1
-1
/
+1
2015-08-19
Fix some false positive in function calls.
Andrei Karas
1
-1
/
+3
2015-08-19
Increase parse level for ADDR_EXPR child nodes.
Andrei Karas
1
-1
/
+1
2015-08-18
Fix some false positives in experession like this: var = new type();
Andrei Karas
1
-5
/
+38
2015-08-18
Fix false positive like this: if (ptr && ptr->func())
Andrei Karas
1
-1
/
+16
2015-08-17
Fix false positives like this: var = &expr;
Andrei Karas
1
-1
/
+11
2015-08-08
In MODIFY_EXPR report only if vars without non null flags.
Andrei Karas
1
-2
/
+4
2015-08-08
Fix attributes parsing in VAR_DECL node.
Andrei Karas
1
-0
/
+2
2015-08-08
Dont check variable in CALL_EXPR if variable have attribute NONNULLPOINTER.
Andrei Karas
1
-1
/
+2
2015-08-08
Increase parse level in VAR_DECL sub nodes.
Andrei Karas
1
-4
/
+4
2015-08-08
Add plugin parameters *-specialdump=filename for dump only this file AST tree.
Andrei Karas
3
-0
/
+25
2015-08-08
Add support for non null pointer attribute in PARM_DECL nodes.
Andrei Karas
2
-3
/
+26
2015-08-06
Fix false positive in return statment.
Andrei Karas
1
-6
/
+22
2015-08-06
Fix false positives with references.
Andrei Karas
1
-11
/
+0
2015-08-06
Fix possible false positives in detecting pointers.
Andrei Karas
1
-2
/
+10
2015-08-06
Increase parsing tree level in VAR_DECL for node initial.
Andrei Karas
1
-4
/
+4
2015-08-05
Fix false positives in references. Before it counted as pointers.
Andrei Karas
1
-0
/
+11
2015-08-05
Add one debug line in code.
Andrei Karas
1
-0
/
+1
2015-08-04
Add more checks for attribute nonnullpointer.
Andrei Karas
1
-8
/
+25
2015-08-04
In warnings replaces words fields and parameters to variables.
Andrei Karas
1
-3
/
+3
2015-08-04
Add support for checking some global pointers.
Andrei Karas
2
-1
/
+4
2015-08-04
Add initial support for tracking 'nonnullpointer' attribute.
Andrei Karas
3
-37
/
+69
2015-08-04
Replace variables name types from std::string to VarItem.
Andrei Karas
5
-89
/
+140
2015-08-04
Ignore variables if FIELD_DECL have attribute nonnullpointer.
Andrei Karas
1
-1
/
+19
2015-08-04
Add plugin attribute 'nonnullpointer' for marking variables what should be no...
Andrei Karas
1
-0
/
+28
2015-08-04
Dont parse field for RECORD_TYPE node because in some code parser may create ...
Andrei Karas
1
-0
/
+3
2015-08-04
Return from COMPOUND_EXPR numeric result.
Andrei Karas
1
-0
/
+4
2015-08-04
Add numeric value in node calculation.
Andrei Karas
6
-8
/
+111
2015-08-03
Fix false positives in IF_STMT/WHILE_STMT condition if useless checks detected.
Andrei Karas
1
-0
/
+10
2015-07-24
Add detection for some calls to new operator.
Andrei Karas
1
-0
/
+6
2015-07-24
Dont add unknown var if it already known and var node is empty.
Andrei Karas
1
-1
/
+2
2015-07-24
Show empty variable names in nodes tree in special way.
Andrei Karas
1
-1
/
+4
2015-07-24
Dont add empty variable names from parsing function.
Andrei Karas
1
-0
/
+2
2015-07-24
In parsing ADDR_EXPR node increase child nodes load level from 5 to 10.
Andrei Karas
1
-1
/
+1
2015-07-24
Into nodes dump add parseChilds.
Andrei Karas
1
-3
/
+8
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
2
-0
/
+19
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
While adding known null/non null vars also add it to known vars collection.
Andrei Karas
1
-0
/
+4
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
8
-10
/
+195
2015-07-23
Ignore 'this' variable from internal checks.
Andrei Karas
1
-1
/
+5
2015-07-23
Add this pointer as known non null var in methods.
Andrei Karas
1
-0
/
+4
[next]