| Commit message (Expand) | Author | Age | Files | Lines |
* | Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library... | Daniel Dunbar | 2010-06-15 | 1 | -588/+0 |
* | Change AnalysisConsumer to analyze functions created by instantiantiating a m... | Ted Kremenek | 2010-06-15 | 1 | -2/+3 |
* | Add option '-analyzer-max-loop', which specifies the maximum | Zhongxing Xu | 2010-05-18 | 1 | -1/+1 |
* | Make -analyzer-inline-call not a separate analysis. Instead it's a boolean | Zhongxing Xu | 2010-05-06 | 1 | -1/+1 |
* | Don't perform AnalysisBasedWarnings in Sema or run the static analyzer when a | Ted Kremenek | 2010-04-30 | 1 | -5/+2 |
* | Remove unused trait. | Zhongxing Xu | 2010-04-30 | 1 | -9/+0 |
* | Refactor the AnalysisConsumer to analyze functions after the whole | Zhongxing Xu | 2010-04-30 | 1 | -125/+63 |
* | Add raw_ostream operators to NamedDecl for convenience. Switch over all users... | Benjamin Kramer | 2010-04-17 | 1 | -1/+1 |
* | Add a cc1 option to specify the max number of nodes the analyzer can explore. | Zhongxing Xu | 2010-04-13 | 1 | -1/+2 |
* | Change LLVMConventionsChecker to accept an entire translation unit instead | Ted Kremenek | 2010-02-14 | 1 | -3/+2 |
* | Rework translation unit actions to actually take an entire translation unit | Ted Kremenek | 2010-02-14 | 1 | -43/+50 |
* | Add new static analyzer for checking LLVM coding conventions: -analyzer-check... | Ted Kremenek | 2010-02-14 | 1 | -0/+8 |
* | Two changes to AnalysisConsumer::HandleTopLevelSingleDecl(): | Ted Kremenek | 2010-02-14 | 1 | -23/+11 |
* | Rename -cc1 option '-checker-cfref' to '-analyzer-check-objc-mem'. | Ted Kremenek | 2010-02-05 | 1 | -6/+6 |
* | Move 'LocalCheckers.h' to the 'Checkers' subdirectory. | Ted Kremenek | 2010-01-26 | 1 | -1/+1 |
* | Move BugReporter.h, PathDiagnostic.h, and BugType.h to 'include/Checker/BugRe... | Ted Kremenek | 2010-01-25 | 1 | -2/+2 |
* | Split libAnalysis into two libraries: libAnalysis and libChecker. | Ted Kremenek | 2010-01-25 | 1 | -7/+8 |
* | Also handle CXXConstructor, CXXDestructor and CXXConversion in CFG | Mike Stump | 2010-01-20 | 1 | -2/+4 |
* | Use the llvm coding convention for indentation for switch. | Mike Stump | 2010-01-20 | 1 | -48/+48 |
* | Remove references to 'Checker' and 'GRTransferFuncs' from | Ted Kremenek | 2010-01-05 | 1 | -8/+4 |
* | Let constraint manager inform checkers that some assumption logic has happend. | Zhongxing Xu | 2009-12-31 | 1 | -2/+2 |
* | Remove an duplicated #include. | Zhongxing Xu | 2009-12-30 | 1 | -1/+0 |
* | Register call inliner as the last checker. | Zhongxing Xu | 2009-12-23 | 1 | -2/+3 |
* | Migrate the call inliner to the Checker interface. | Zhongxing Xu | 2009-12-23 | 1 | -5/+34 |
* | Expose C++ methods to GRExprEngine. | Zhongxing Xu | 2009-12-16 | 1 | -0/+14 |
* | Add comments. | Zhongxing Xu | 2009-12-15 | 1 | -1/+2 |
* | Remove displayProgress parameter. | Zhongxing Xu | 2009-12-15 | 1 | -1/+0 |
* | We should only scan for nested blocks if we are analyzing the body of a funct... | Ted Kremenek | 2009-12-12 | 1 | -1/+1 |
* | Fix crash in DisplayFunction(). ObjCInterfaceDecls can also get passed to th... | Ted Kremenek | 2009-12-09 | 1 | -8/+5 |
* | Add clang-cc option '-analyzer-opt-analyze-nested-blocks' to treat block lite... | Ted Kremenek | 2009-12-07 | 1 | -8/+33 |
* | Remove VISIBILITY_HIDDEN from anonymous namespaces in libFrontend. | Benjamin Kramer | 2009-11-28 | 1 | -2/+1 |
* | Call GRExprEngine::setTransferFunctions() after registering all Checkers. Th... | Ted Kremenek | 2009-11-25 | 1 | -2/+2 |
* | Consolidate logic in ActionInlineCall by having it call ActionGRExprEngine in... | Ted Kremenek | 2009-11-25 | 1 | -19/+3 |
* | Make RegisterInternalChecks() part of GRExprEngine's private implementation b... | Ted Kremenek | 2009-11-25 | 1 | -1/+0 |
* | Register internal checks with GRExprEngine when it is constructed, not manual... | Ted Kremenek | 2009-11-25 | 1 | -2/+0 |
* | Silence some warnings produced by Clang, and add a missing header | Douglas Gregor | 2009-11-17 | 1 | -7/+7 |
* | Add clang-cc option "--analyzer-experimental-internal-checks". This | Ted Kremenek | 2009-11-13 | 1 | -0/+4 |
* | Add clang-cc option "-analyzer-experimental-checks" to enable experimental pa... | Ted Kremenek | 2009-11-13 | 1 | -1/+3 |
* | Move the ManagerRegistry to the Analysis library to resolve the layering viol... | Chandler Carruth | 2009-11-11 | 1 | -1/+1 |
* | Fix display of "ANALYZE" statements in AnalysisConsumer by correctly resettin... | Ted Kremenek | 2009-11-11 | 1 | -114/+146 |
* | Add a checker for CWE-467: Use of sizeof() on a Pointer Type. | Zhongxing Xu | 2009-11-08 | 1 | -0/+5 |
* | Convert CreateAnalysisConsumer and friends to just take a const Preprocessor&... | Daniel Dunbar | 2009-11-05 | 1 | -25/+21 |
* | Acting on Daniel's nagging, remove PathDiagnosticClientFactory() and | Ted Kremenek | 2009-11-05 | 1 | -3/+2 |
* | Kill PreprocessorFactory, which was both morally repugnant and totally unused. | Daniel Dunbar | 2009-11-04 | 1 | -12/+7 |
* | Remove unused header. | Daniel Dunbar | 2009-11-02 | 1 | -1/+0 |
* | Add destructor and cleanup code to LocationContext (fixing some leaks). Along... | Ted Kremenek | 2009-10-20 | 1 | -0/+3 |
* | PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients | Daniel Dunbar | 2009-10-18 | 1 | -1/+1 |
* | Hoist some branches in AnalysisManager::HandleTranslationUnit so we | Ted Kremenek | 2009-09-26 | 1 | -16/+19 |
* | Fix regression introduced by r82198 that caused functions/methods with invali... | Ted Kremenek | 2009-09-18 | 1 | -1/+6 |
* | Introduce caching of diagnostics in BugReporter. This provides extra | Ted Kremenek | 2009-09-18 | 1 | -15/+10 |