aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/AnalysisConsumer.cpp
AgeCommit message (Expand)Author
2010-02-14Change LLVMConventionsChecker to accept an entire translation unit insteadTed Kremenek
2010-02-14Rework translation unit actions to actually take an entire translation unitTed Kremenek
2010-02-14Add new static analyzer for checking LLVM coding conventions: -analyzer-check...Ted Kremenek
2010-02-14Two changes to AnalysisConsumer::HandleTopLevelSingleDecl():Ted Kremenek
2010-02-05Rename -cc1 option '-checker-cfref' to '-analyzer-check-objc-mem'.Ted Kremenek
2010-01-26Move 'LocalCheckers.h' to the 'Checkers' subdirectory.Ted Kremenek
2010-01-25Move BugReporter.h, PathDiagnostic.h, and BugType.h to 'include/Checker/BugRe...Ted Kremenek
2010-01-25Split libAnalysis into two libraries: libAnalysis and libChecker.Ted Kremenek
2010-01-20Also handle CXXConstructor, CXXDestructor and CXXConversion in CFGMike Stump
2010-01-20Use the llvm coding convention for indentation for switch.Mike Stump
2010-01-05Remove references to 'Checker' and 'GRTransferFuncs' fromTed Kremenek
2009-12-31Let constraint manager inform checkers that some assumption logic has happend.Zhongxing Xu
2009-12-30Remove an duplicated #include.Zhongxing Xu
2009-12-23Register call inliner as the last checker.Zhongxing Xu
2009-12-23Migrate the call inliner to the Checker interface.Zhongxing Xu
2009-12-16Expose C++ methods to GRExprEngine.Zhongxing Xu
2009-12-15Add comments.Zhongxing Xu
2009-12-15Remove displayProgress parameter.Zhongxing Xu
2009-12-12We should only scan for nested blocks if we are analyzing the body of a funct...Ted Kremenek
2009-12-09Fix crash in DisplayFunction(). ObjCInterfaceDecls can also get passed to th...Ted Kremenek
2009-12-07Add clang-cc option '-analyzer-opt-analyze-nested-blocks' to treat block lite...Ted Kremenek
2009-11-28Remove VISIBILITY_HIDDEN from anonymous namespaces in libFrontend.Benjamin Kramer
2009-11-25Call GRExprEngine::setTransferFunctions() after registering all Checkers. Th...Ted Kremenek
2009-11-25Consolidate logic in ActionInlineCall by having it call ActionGRExprEngine in...Ted Kremenek
2009-11-25Make RegisterInternalChecks() part of GRExprEngine's private implementation b...Ted Kremenek
2009-11-25Register internal checks with GRExprEngine when it is constructed, not manual...Ted Kremenek
2009-11-17Silence some warnings produced by Clang, and add a missing headerDouglas Gregor
2009-11-13Add clang-cc option "--analyzer-experimental-internal-checks". ThisTed Kremenek
2009-11-13Add clang-cc option "-analyzer-experimental-checks" to enable experimental pa...Ted Kremenek
2009-11-11Move the ManagerRegistry to the Analysis library to resolve the layering viol...Chandler Carruth
2009-11-11Fix display of "ANALYZE" statements in AnalysisConsumer by correctly resettin...Ted Kremenek
2009-11-08Add a checker for CWE-467: Use of sizeof() on a Pointer Type.Zhongxing Xu
2009-11-05Convert CreateAnalysisConsumer and friends to just take a const Preprocessor&...Daniel Dunbar
2009-11-05Acting on Daniel's nagging, remove PathDiagnosticClientFactory() andTed Kremenek
2009-11-04Kill PreprocessorFactory, which was both morally repugnant and totally unused.Daniel Dunbar
2009-11-02Remove unused header.Daniel Dunbar
2009-10-20Add destructor and cleanup code to LocationContext (fixing some leaks). Along...Ted Kremenek
2009-10-18PR5218: Replace IdentifierInfo::getName with StringRef version, now that clientsDaniel Dunbar
2009-09-26Hoist some branches in AnalysisManager::HandleTranslationUnit so weTed Kremenek
2009-09-18Fix regression introduced by r82198 that caused functions/methods with invali...Ted Kremenek
2009-09-18Introduce caching of diagnostics in BugReporter. This provides extraTed Kremenek
2009-09-11Start to add a new transfer function that inlines callee. To be continued.Zhongxing Xu
2009-09-10Make AnalysisManager stateless. Now other analyzer components only depends onZhongxing Xu
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-08-25Update clang for raw_fd_ostream no longer requiring F_Force.Dan Gohman
2009-08-25Remove CodeDecl and CFG from GRExprEngine and GRStateManager.Zhongxing Xu
2009-08-23API changes to match llvm ToT.Chris Lattner
2009-08-23Replace cerr with errs().Benjamin Kramer
2009-08-23adjust for raw_fd_ostream api change.Chris Lattner
2009-08-21Tie the local check NSErrorCheck to a Decl to pave the wayZhongxing Xu