summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2019-03-07Add more missing vector includesHEADmasterAndrei Karas3-1/+2
2019-03-07Add missing vector include in node.hAndrei Karas1-0/+1
2019-03-07Pass some strings by const&.Quipyowert25-8/+8
2019-03-07Add GOTO_EXPRAndrei Karas4-3/+40
2015-08-19Skip CLEANUP_POINT_EXPR node as other NOP nodes.Andrei Karas1-3/+6
2015-08-19Fix some false positives in expressions like this: ptr1 = ptr2->data;Andrei Karas1-1/+1
2015-08-19Fix some false positive in function calls.Andrei Karas1-1/+3
2015-08-19Increase parse level for ADDR_EXPR child nodes.Andrei Karas1-1/+1
2015-08-18Fix some false positives in experession like this: var = new type();Andrei Karas1-5/+38
2015-08-18Fix false positive like this: if (ptr && ptr->func())Andrei Karas1-1/+16
2015-08-17Fix false positives like this: var = &expr;Andrei Karas1-1/+11
2015-08-08In MODIFY_EXPR report only if vars without non null flags.Andrei Karas1-2/+4
2015-08-08Fix attributes parsing in VAR_DECL node.Andrei Karas1-0/+2
2015-08-08Dont check variable in CALL_EXPR if variable have attribute NONNULLPOINTER.Andrei Karas1-1/+2
2015-08-08Increase parse level in VAR_DECL sub nodes.Andrei Karas1-4/+4
2015-08-08Add plugin parameters *-specialdump=filename for dump only this file AST tree.Andrei Karas3-0/+25
2015-08-08Add support for non null pointer attribute in PARM_DECL nodes.Andrei Karas2-3/+26
2015-08-06Fix false positive in return statment.Andrei Karas1-6/+22
2015-08-06Fix false positives with references.Andrei Karas1-11/+0
2015-08-06Fix possible false positives in detecting pointers.Andrei Karas1-2/+10
2015-08-06Increase parsing tree level in VAR_DECL for node initial.Andrei Karas1-4/+4
2015-08-05Fix false positives in references. Before it counted as pointers.Andrei Karas1-0/+11
2015-08-05Add one debug line in code.Andrei Karas1-0/+1
2015-08-04Add more checks for attribute nonnullpointer.Andrei Karas1-8/+25
2015-08-04In warnings replaces words fields and parameters to variables.Andrei Karas1-3/+3
2015-08-04Add support for checking some global pointers.Andrei Karas2-1/+4
2015-08-04Add initial support for tracking 'nonnullpointer' attribute.Andrei Karas3-37/+69
2015-08-04Replace variables name types from std::string to VarItem.Andrei Karas5-89/+140
2015-08-04Ignore variables if FIELD_DECL have attribute nonnullpointer.Andrei Karas1-1/+19
2015-08-04Add plugin attribute 'nonnullpointer' for marking variables what should be no...Andrei Karas1-0/+28
2015-08-04Dont parse field for RECORD_TYPE node because in some code parser may create ...Andrei Karas1-0/+3
2015-08-04Return from COMPOUND_EXPR numeric result.Andrei Karas1-0/+4
2015-08-04Add numeric value in node calculation.Andrei Karas6-8/+111
2015-08-03Fix false positives in IF_STMT/WHILE_STMT condition if useless checks detected.Andrei Karas1-0/+10
2015-07-24Add detection for some calls to new operator.Andrei Karas1-0/+6
2015-07-24Dont add unknown var if it already known and var node is empty.Andrei Karas1-1/+2
2015-07-24Show empty variable names in nodes tree in special way.Andrei Karas1-1/+4
2015-07-24Dont add empty variable names from parsing function.Andrei Karas1-0/+2
2015-07-24In parsing ADDR_EXPR node increase child nodes load level from 5 to 10.Andrei Karas1-1/+1
2015-07-24Into nodes dump add parseChilds.Andrei Karas1-3/+8
2015-07-23Add some missing checks for null pointers.Andrei Karas1-0/+6
2015-07-23Check right part of MODIFY_EXPR node.Andrei Karas1-0/+4
2015-07-23Do not check for null pointers variables with vptr.Andrei Karas2-0/+19
2015-07-23Fix some false positive with getting address from pointer variable.Andrei Karas1-0/+6
2015-07-23Fix some false positive with calling function.Andrei Karas1-4/+18
2015-07-23Dont check variable type on PARM_DECL also add unknown vars to known.Andrei Karas1-8/+22
2015-07-23While adding known null/non null vars also add it to known vars collection.Andrei Karas1-0/+4
2015-07-23Check all variables before using for pointer type.Andrei Karas1-1/+35
2015-07-23Remove null checks from COMPONENT_REF node. But add check in different parent...Andrei Karas8-10/+195
2015-07-23Ignore 'this' variable from internal checks.Andrei Karas1-1/+5