summaryrefslogtreecommitdiffstats
path: root/lib/Analysis
Commit message (Expand)AuthorAgeFilesLines
* Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it.Richard Smith2012-04-171-1/+2
* Add an AttributedStmt type to represent a statement with C++11 attributesRichard Smith2012-04-141-1/+5
* Remove the unused, unmaintained, incomplete 'Index' library.Douglas Gregor2012-04-131-1/+1
* [analyzer] PCH deserialization optimization.Anna Zaks2012-04-121-61/+32
* Include lambda capture init expressions in CFG.Ted Kremenek2012-04-121-1/+17
* Fix CFGBuilder to not include the body of a LambdaExpr in the CFG of the encl...Ted Kremenek2012-04-121-3/+5
* Do not crash in the callgraph construction when encountering deleted function...Ted Kremenek2012-04-051-1/+2
* clang/lib/Analysis/CFG.cpp: Get rid of early insertion of placeholder to the ...NAKAMURA Takumi2012-03-251-7/+4
* clang/lib/Analysis/CFG.cpp: Fix memory leak since r153297.NAKAMURA Takumi2012-03-251-2/+5
* [CFG] Cache boolean evaluations of expressions to avoid multiple re-evaluationsArgyrios Kyrtzidis2012-03-231-7/+66
* Fix broken CFG when an initializer is a statement expression that starts with...Ted Kremenek2012-03-221-5/+15
* [analyzer] Malloc: Utter the name of the leaked variable.Anna Zaks2012-03-211-2/+0
* Fix crash when querying the CFG reported when using the thread safety analysisTed Kremenek2012-03-191-1/+1
* Kill cocoa::deriveNamingConvention and cocoa::followsFundamentalRule. They ar...Jordy Rose2012-03-171-40/+0
* Support '%p' format specifier with block pointers.Ted Kremenek2012-03-151-1/+1
* Fix dereference of end iterator. Spotted by ASan.Matt Beaumont-Gay2012-03-141-1/+3
* [analyzer] Refactor CallGraph to use Recursive AST visitor whenAnna Zaks2012-03-131-36/+32
* Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie2012-03-112-2/+2
* Replace a map of boolean values with a set.Benjamin Kramer2012-03-101-14/+8
* Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall2012-03-103-28/+11
* [analyzer] fix regression in analyzer of NOT actually aborting on Stmts it do...Ted Kremenek2012-03-101-1/+10
* CallGraph: Add getNode() method, constify.Anna Zaks2012-03-091-0/+4
* -Wformat-non-iso: warn about positional arguments (pr12017)Hans Wennborg2012-03-091-0/+3
* Call Graph: Only the root node is allowed to have an invalid Decl*.Anna Zaks2012-03-081-1/+4
* Remove stray semi-colon.Daniel Dunbar2012-03-081-1/+1
* Add a basic CallGraph to Analysis.Anna Zaks2012-03-082-0/+208
* AST representation for user-defined literals, plus just enough of semanticRichard Smith2012-03-071-0/+1
* Fix horrific CFG bug where '@autoreleasepool' would be put in a dangling bloc...Ted Kremenek2012-03-061-0/+10
* Thread safety analysis: expand set of expressions that can be used to denote ...DeLesley Hutchins2012-03-021-6/+50
* Thread safety analysis: handle CFG blocks which call functions marked as nore...DeLesley Hutchins2012-03-021-0/+4
* Move llvm/ADT/SaveAndRestore.h -> llvm/Support/SaveAndRestore.h.Argyrios Kyrtzidis2012-03-013-3/+3
* Move "clang/Analysis/Support/SaveAndRestore.h" to "llvm/ADT/SaveAndRestore.h"Argyrios Kyrtzidis2012-02-273-3/+3
* Warn about non-standard format strings (pr12017)Hans Wennborg2012-02-221-0/+71
* Thread-safety analysis: Disable checking inside constructors, destructors, lo...DeLesley Hutchins2012-02-161-6/+24
* Thread-Safety: added support for 'this' as a lock expression.DeLesley Hutchins2012-02-161-3/+7
* Format string analysis: give 'q' its own enumerator.Hans Wennborg2012-02-163-6/+16
* Make -Wformat fix-its preserve original conversion specifiers.Hans Wennborg2012-02-152-12/+18
* Tweak format string checking to work with %@ and ObjC toll-free bridging. <r...Ted Kremenek2012-02-061-3/+17
* Basic: import OwningPtr<> into clang namespaceDylan Noblesmith2012-02-051-1/+1
* Thread safety analysis:Richard Smith2012-02-031-13/+83
* Thread safety analysis: at a CFG join point between a block terminating in aRichard Smith2012-02-031-0/+39
* Format string warnings: don't a.k.a. wchar_t with wchar_t.Hans Wennborg2012-01-311-1/+1
* [CFG] Removed unused local variable.Erik Verbruggen2012-01-311-2/+0
* Let %S, %ls, %C match 16bit types in NSStrings.Nico Weber2012-01-311-3/+10
* Fix NSLog format string checking for %@.Ted Kremenek2012-01-252-1/+4
* Teach scanf/printf checking about '%Ld' and friends (a GNU extension). Fixes...Ted Kremenek2012-01-243-4/+18
* Revert various template unreachability code I committed accidentally.David Blaikie2012-01-241-8/+9
* More fixes/tests.David Blaikie2012-01-241-2/+2
* Support undefined dependent bases.David Blaikie2012-01-241-7/+6
* Handle thread safety attributes on functions with separate definitions and de...DeLesley Hutchins2012-01-201-24/+25