aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis
AgeCommit message (Expand)Author
2012-04-12[analyzer] PCH deserialization optimization.Anna Zaks
2012-04-12Include lambda capture init expressions in CFG.Ted Kremenek
2012-04-12Fix CFGBuilder to not include the body of a LambdaExpr in the CFG of the encl...Ted Kremenek
2012-04-05Do not crash in the callgraph construction when encountering deleted function...Ted Kremenek
2012-03-25clang/lib/Analysis/CFG.cpp: Get rid of early insertion of placeholder to the ...NAKAMURA Takumi
2012-03-25clang/lib/Analysis/CFG.cpp: Fix memory leak since r153297.NAKAMURA Takumi
2012-03-23[CFG] Cache boolean evaluations of expressions to avoid multiple re-evaluationsArgyrios Kyrtzidis
2012-03-22Fix broken CFG when an initializer is a statement expression that starts with...Ted Kremenek
2012-03-21[analyzer] Malloc: Utter the name of the leaked variable.Anna Zaks
2012-03-19Fix crash when querying the CFG reported when using the thread safety analysisTed Kremenek
2012-03-17Kill cocoa::deriveNamingConvention and cocoa::followsFundamentalRule. They ar...Jordy Rose
2012-03-15Support '%p' format specifier with block pointers.Ted Kremenek
2012-03-14Fix dereference of end iterator. Spotted by ASan.Matt Beaumont-Gay
2012-03-13[analyzer] Refactor CallGraph to use Recursive AST visitor whenAnna Zaks
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-10Replace a map of boolean values with a set.Benjamin Kramer
2012-03-10Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall
2012-03-10[analyzer] fix regression in analyzer of NOT actually aborting on Stmts it do...Ted Kremenek
2012-03-09CallGraph: Add getNode() method, constify.Anna Zaks
2012-03-09-Wformat-non-iso: warn about positional arguments (pr12017)Hans Wennborg
2012-03-08Call Graph: Only the root node is allowed to have an invalid Decl*.Anna Zaks
2012-03-08Remove stray semi-colon.Daniel Dunbar
2012-03-08Add a basic CallGraph to Analysis.Anna Zaks
2012-03-07AST representation for user-defined literals, plus just enough of semanticRichard Smith
2012-03-06Fix horrific CFG bug where '@autoreleasepool' would be put in a dangling bloc...Ted Kremenek
2012-03-02Thread safety analysis: expand set of expressions that can be used to denote ...DeLesley Hutchins
2012-03-02Thread safety analysis: handle CFG blocks which call functions marked as nore...DeLesley Hutchins
2012-03-01Move llvm/ADT/SaveAndRestore.h -> llvm/Support/SaveAndRestore.h.Argyrios Kyrtzidis
2012-02-27Move "clang/Analysis/Support/SaveAndRestore.h" to "llvm/ADT/SaveAndRestore.h"Argyrios Kyrtzidis
2012-02-22Warn about non-standard format strings (pr12017)Hans Wennborg
2012-02-16Thread-safety analysis: Disable checking inside constructors, destructors, lo...DeLesley Hutchins
2012-02-16Thread-Safety: added support for 'this' as a lock expression.DeLesley Hutchins
2012-02-16Format string analysis: give 'q' its own enumerator.Hans Wennborg
2012-02-15Make -Wformat fix-its preserve original conversion specifiers.Hans Wennborg
2012-02-06Tweak format string checking to work with %@ and ObjC toll-free bridging. <r...Ted Kremenek
2012-02-05Basic: import OwningPtr<> into clang namespaceDylan Noblesmith
2012-02-03Thread safety analysis:Richard Smith
2012-02-03Thread safety analysis: at a CFG join point between a block terminating in aRichard Smith
2012-01-31Format string warnings: don't a.k.a. wchar_t with wchar_t.Hans Wennborg
2012-01-31[CFG] Removed unused local variable.Erik Verbruggen
2012-01-31Let %S, %ls, %C match 16bit types in NSStrings.Nico Weber
2012-01-25Fix NSLog format string checking for %@.Ted Kremenek
2012-01-24Teach scanf/printf checking about '%Ld' and friends (a GNU extension). Fixes...Ted Kremenek
2012-01-24Revert various template unreachability code I committed accidentally.David Blaikie
2012-01-24More fixes/tests.David Blaikie
2012-01-24Support undefined dependent bases.David Blaikie
2012-01-20Handle thread safety attributes on functions with separate definitions and de...DeLesley Hutchins
2012-01-20The 'l' length modifier makes sense with the scanlist conversion specifier.Ted Kremenek
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-12scanf: parse the 'm' length modifier, and check that the right argumentsHans Wennborg