aboutsummaryrefslogtreecommitdiff
path: root/Driver/AnalysisConsumer.cpp
AgeCommit message (Expand)Author
2009-03-24Move <root>/Driver into <root>/tools/clang-cc.Daniel Dunbar
2009-03-11Display the exploded graph before calling BugReporter.FlushReports(). The latterTed Kremenek
2009-03-02Rename lib/Driver (etc) to lib/Frontend in prep for the *actual*Daniel Dunbar
2009-02-25Add experimental logic in GRExprEngine::EvalEagerlyAssume() to handleTed Kremenek
2009-02-20Make 'RangeConstraintManager' the default ConstraintManager.Ted Kremenek
2009-02-17Static Analyzer driver/options (partial) cleanup:Ted Kremenek
2009-02-16RangeConstraintManager is not on by default.Ted Kremenek
2009-02-14Patch by Ben Laurie:Ted Kremenek
2009-02-13AnalysisConsumer: Explicitly destroy the PathDiagnosticClient at the end of H...Ted Kremenek
2009-02-04Overhaul BugReporter interface and implementation. The new interface cleans upTed Kremenek
2009-02-02AnalysisConsumer:Ted Kremenek
2009-01-27Introduce a new PresumedLoc class to represent the concept of a locationChris Lattner
2009-01-23Added clang option '--analyzer-display-progress' to indicate that the analyze...Ted Kremenek
2009-01-23When using -analyzer-output-plist always output a plist file even if it conta...Ted Kremenek
2008-12-22Add an option to make 'RemoveDeadBindings' a configurable behavior. This enablesZhongxing Xu
2008-12-09Update Driver to new interface for LiveVariables.Ted Kremenek
2008-11-27Add support for pluggable components of static analyzer.Zhongxing Xu
2008-11-24Display the function we are analyzing before running LiveVariables.Ted Kremenek
2008-11-24Rename Selector::getName() to Selector::getAsString(), and addChris Lattner
2008-11-20Output 'ANALYZE' messages to standard error. This should address the intermi...Ted Kremenek
2008-11-13[LLVM up] Update for raw_fd_ostream change. This fixes a FIXME thatDaniel Dunbar
2008-11-07Patch by Nikita Zhuk: Add TranslationUnitActions to AnalysisConsumer.Ted Kremenek
2008-11-05AnalysisManager can now be used to for analyses over TranslationUnits.Ted Kremenek
2008-11-03Hook up the Plist diagnostic client to the driver.Ted Kremenek
2008-11-03Rename 'HTMLDiagnostics.h' to 'PathDiagnosticClients.h'Ted Kremenek
2008-10-30Adjust code format.Zhongxing Xu
2008-10-24Make the analyzer store (memory model) a command line option.Ted Kremenek
2008-09-18Change implementation of NSError** coding-style check to be invoked at the en...Ted Kremenek
2008-09-18Implemented one of the checks requested in PR 2600:Ted Kremenek
2008-09-04Output "ANALYZE:" diagnostics to STDOUT instead of STDERR.Ted Kremenek
2008-08-29Add newline to end of file.Daniel Dunbar
2008-08-28Always print out the function we're analyzing.Ted Kremenek
2008-08-28Ubigraph visualization: represent cached nodes with a different style.Ted Kremenek
2008-08-28Automatically execute ubiviz.Ted Kremenek
2008-08-27Ubigraph-rendered ExplodedGraphs now have arrows and are oriented downward.Ted Kremenek
2008-08-27Added Ubigraph visualization for the static analyzer (this is pretty alpha qu...Ted Kremenek
2008-08-24Moved HTMLDiagnostics to lib/Driver.Zhongxing Xu
2008-08-04Fix regression when invoking the MissingDealloc analysis: disable this check ...Ted Kremenek
2008-07-23Add prototype implementation of unused ivar check.Ted Kremenek
2008-07-22Moved registration of basic path-sensitive checks from GRSimpleVals.cpp to GR...Ted Kremenek
2008-07-15Provide an "Analysis Scope" for Analyses so checks can either be run on code ...Ted Kremenek
2008-07-14Break off declaration of Analysis enum into Analyses.def. The driver options inTed Kremenek
2008-07-11Add new check: -check-objc-methodsigs. This check scans methods inTed Kremenek
2008-07-03For the -dealloc checker, check the LangOptions to determine whether or not t...Ted Kremenek
2008-07-03Have BugReporter::getCFG and BugReporter::getLiveVariables returns pointers i...Ted Kremenek
2008-07-03Added static analysis check to see if a subclass of NSObject implements -deal...Ted Kremenek
2008-07-02Unify the code path for the Dead Stores checker to always use the BugReporter...Ted Kremenek
2008-07-02Refactored some of the BugReporter interface so that data such as the ASTCont...Ted Kremenek
2008-07-02GRExprEngine now expects the LiveVariables information to be provided by its ...Ted Kremenek
2008-07-02Added version of CheckDeadStores that accepts a client-provided LiveVariables...Ted Kremenek