aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Analysis/malloc.c
AgeCommit message (Expand)AuthorFilesLines
2013-12-09Merging r196599:Bill Wendling1-0/+6
2013-11-17[analyzer] Better modeling of memcpy by the CStringChecker (PR16731).Anton Yartsev1-0/+41
2013-08-19[analyzer] Assume that strings are no longer than SIZE_MAX/4.Jordan Rose1-0/+32
2013-08-15[analyzer] If realloc fails on an escaped region, that region doesn't leak.Jordan Rose1-0/+10
2013-05-10[analyzer] Indirect invalidation counts as an escape for leak checkers.Jordan Rose1-8/+34
2013-04-09[analyzer] Keep tracking the pointer after the escape to more aggressively re...Anna Zaks1-1/+1
2013-04-06[analyzer] Shorten the malloc checker’s leak messageAnna Zaks1-22/+22
2013-03-20[analyzer] Track malloc'd memory into struct fields.Jordan Rose1-34/+32
2013-03-15[analyzer] Use isLiveRegion to determine when SymbolRegionValue is dead.Anna Zaks1-0/+11
2013-02-07[analyzer] Report bugs when freeing memory with offset pointerAnna Zaks1-0/+100
2013-02-07[analyzer] Add pointer escape type param to checkPointerEscape callbackAnna Zaks1-0/+34
2013-02-06[analyzer]Revert part of r161511; suppresses leak false positives in C++Anna Zaks1-18/+22
2012-11-27[analyzer] Fix test to work on non-LP64 systems.Jordan Rose1-5/+8
2012-11-19clang/test: Suppress two tests on LLP64 target, Windows x64.NAKAMURA Takumi1-0/+2
2012-11-15[analyzer] Report leaks at the closing brace of a function body.Jordan Rose1-29/+30
2012-11-15[analyzer] Mark symbol values as dead in the environment.Jordan Rose1-0/+5
2012-09-12[analyzer] Fix another false positive in malloc realloc logic.Anna Zaks1-0/+10
2012-09-12Adjust some analyzer tests to place widely shared inputs inside of anChandler Carruth1-1/+1
2012-08-24Fix analyzer tests.Ted Kremenek1-1/+1
2012-08-24[analyzer] Fix realloc related bug in the malloc checker.Anna Zaks1-5/+14
2012-08-16Allow multiple PathDiagnosticConsumers to be used with a BugReporter at the s...Ted Kremenek1-3/+3
2012-08-08[analyzer] Clean up the printing of FieldRegions for leaks.Jordan Rose1-3/+9
2012-08-08[analyzer] Track malloc'd regions stored in structs.Jordan Rose1-25/+23
2012-08-04[analyzer] Malloc: remove assert since is not valid as of r161248Anna Zaks1-0/+12
2012-08-03[analyzer] Malloc: track non-allocated but freed memoryAnna Zaks1-3/+11
2012-07-02[analyzer] Move the last bits of CallOrObjCMessage over to CallEvent.Jordan Rose1-0/+12
2012-06-20[analyzer] Malloc leak false positive: Allow xpc context to escape.Anna Zaks1-0/+13
2012-06-16[analyzer] Buffers passed to CGBitmapContextCreate can escape.Jordan Rose1-0/+19
2012-06-08[analyze] Change some of the malloc tests to use clang_analyzer_eval.Anna Zaks1-13/+8
2012-06-07[analyzer] Fixit for r158136.Anna Zaks1-0/+17
2012-06-07[analyzer] Anti-aliasing: different heap allocations do not aliasAnna Zaks1-4/+47
2012-05-18[analyzer]Malloc: refactor and report use after free by memoryAnna Zaks1-4/+8
2012-05-04[analyzer]Fixup r156134: Handle the case when FunctionDecl isn't avail.Anna Zaks1-0/+6
2012-05-03[analyzer] Assume pointer escapes when a callback is passed insideAnna Zaks1-0/+10
2012-05-03[analyzer] Allow pointers escape through calls containing callback args.Anna Zaks1-0/+21
2012-05-03[analyzer] Conjure a symbol to ensure we can identify pointer arithmeticAnna Zaks1-0/+7
2012-05-03[analyzer] Revert the functional part of r155944. Anna Zaks1-7/+0
2012-05-02[analyzer] Fix the 'ptr = ptr' false negative in the Malloc checker.Anna Zaks1-0/+6
2012-05-01Teach SValBuilder to handle casts of symbolic pointer values to an integer tw...Ted Kremenek1-0/+14
2012-05-01[analyzer] Test case reported for a reported false positive, now fixed.Anna Zaks1-0/+9
2012-05-01[analyzer] Construct a SymExpr even when the constraint solver cannotAnna Zaks1-0/+7
2012-04-26[analyzer] check lazy bindings in RegionStore first before looking for defaul...Ted Kremenek1-0/+16
2012-03-21[analyzer] Malloc: Utter the name of the leaked variable.Anna Zaks1-16/+16
2012-03-05Teach SimpleSValBuilder that (in the absence of more information) stack memor...Ted Kremenek1-0/+32
2012-02-29[analyzer] Malloc: A pointer might escape through CFContainers APIs,Anna Zaks1-0/+43
2012-02-23[analyzer] Malloc: unique leak reports by allocation site.Anna Zaks1-2/+2
2012-02-23[analyzer] Invalidate the region passed to pthread_setspecific() call.Anna Zaks1-0/+10
2012-02-22[analyzer] Malloc cleanup:Anna Zaks1-0/+6
2012-02-22[analyzer] Malloc checker: mark 'strdup' and 'strndup' as allocators.Anna Zaks1-0/+19
2012-02-22[analyzer] Malloc: fix another false positive.Anna Zaks1-14/+31