| Commit message (Expand) | Author | Age | Files | Lines |
* | [Analyzer] Fixes -Wrange-loop-analysis warnings | Mark de Wever | 2019-12-22 | 1 | -1/+2 |
* | Move ASTRecordReader into its own header; NFC. | John McCall | 2019-12-14 | 1 | -0/+1 |
* | [ObjC] Make sure that the implicit arguments for direct methods have been setup | Alex Lorenz | 2019-12-06 | 1 | -7/+0 |
* | [analyzer][NFC] Fix inconsistent references to checkers as "checks" | Kristof Umann | 2019-09-12 | 2 | -2/+2 |
* | [analyzer] NFC: Move PathDiagnostic classes to libAnalysis. | Artem Dergachev | 2019-09-11 | 1 | -1/+1 |
* | [analyzer] Add minimal support for fix-it hints. | Artem Dergachev | 2019-09-06 | 1 | -18/+42 |
* | Removed some dead code in BugReporter and related files | Dmitri Gribenko | 2019-08-21 | 1 | -3/+3 |
* | [analyzer] NFC: Remove the BugTypes set from BugReporter. | Artem Dergachev | 2019-08-20 | 1 | -0/+4 |
* | [analyzer] Analysis: Silence checkers | Csaba Dabis | 2019-08-16 | 1 | -9/+13 |
* | [analyzer] Warn about -analyzer-configs being meant for development purposes ... | Kristof Umann | 2019-08-15 | 1 | -5/+16 |
* | [Clang] Migrate llvm::make_unique to std::make_unique | Jonas Devlieghere | 2019-08-14 | 3 | -8/+8 |
* | Move LangStandard*, InputKind::Language to Basic | Rainer Orth | 2019-08-05 | 1 | -1/+2 |
* | [CrossTU] Added CTU argument to diagnostic consumer create fn. | Balazs Keri | 2019-07-23 | 1 | -11/+11 |
* | [analyzer] Add more timers for performance profiling. | Artem Dergachev | 2019-06-25 | 1 | -9/+34 |
* | [analyzer] Add werror flag for analyzer warnings | Keno Fischer | 2019-06-07 | 1 | -4/+13 |
* | [analyzer] List checker/plugin options in 3 categories: released, alpha, deve... | Kristof Umann | 2019-05-23 | 1 | -16/+39 |
* | [analyzer] Hide developer-only checker/package options by default | Kristof Umann | 2019-05-23 | 1 | -10/+13 |
* | [analyzer] List checkers in 3 categories: released, alpha, developer | Kristof Umann | 2019-05-23 | 1 | -4/+27 |
* | [analyzer] Add a new frontend flag to display all checker options | Kristof Umann | 2019-05-23 | 2 | -46/+56 |
* | [analyzer] Remove the default value arg from getChecker*Option | Kristof Umann | 2019-05-17 | 1 | -1/+7 |
* | [analyzer] Validate checker option names and values | Kristof Umann | 2019-05-17 | 1 | -18/+101 |
* | [analyzer] Insert checker options into AnalyzerOption::ConfigTable | Kristof Umann | 2019-05-17 | 1 | -4/+8 |
* | [analyzer] Don't display implementation checkers under -analyzer-checker-help... | Kristof Umann | 2019-05-01 | 1 | -4/+8 |
* | [analyzer][CrossTU] Extend CTU to VarDecls with initializer | Rafael Stahl | 2019-04-23 | 1 | -0/+29 |
* | [analyzer][NFC] Reimplement checker options | Kristof Umann | 2019-04-19 | 1 | -14/+84 |
* | [analyzer] Fix an assertion failure if plugins added dependencies | Kristof Umann | 2019-04-19 | 1 | -10/+20 |
* | [analyzer] Fix -Wunused-local-typedef after rC358695 | Fangrui Song | 2019-04-19 | 1 | -5/+2 |
* | [analyzer][NFC] Prefer binary searches in CheckerRegistry | Kristof Umann | 2019-04-18 | 1 | -22/+29 |
* | [analyzer][NFC] Clang-format CheckerRegistry | Kristof Umann | 2019-04-18 | 1 | -39/+37 |
* | [analyzer][NFC] Use capital variable names, move methods out-of-line, rename ... | Kristof Umann | 2019-04-18 | 2 | -117/+149 |
* | Frontend: Remove CompilerInstance::VirtualFileSystem, NFC | Duncan P. N. Exon Smith | 2019-03-26 | 1 | -2/+0 |
* | [analyzer] Reimplement dependencies between checkers | Kristof Umann | 2019-01-26 | 1 | -3/+67 |
* | [analyzer] Fix an bug where statically linked, but not registered checkers we... | Kristof Umann | 2019-01-26 | 2 | -8/+14 |
* | [analyzer][NFC] Keep track of whether enabling a checker was explictly specif... | Kristof Umann | 2019-01-26 | 1 | -67/+77 |
* | [analyzer][NFC] Supply CheckerRegistry with AnalyzerOptions | Kristof Umann | 2019-01-26 | 2 | -19/+17 |
* | [analyzer] Supply all checkers with a shouldRegister function | Kristof Umann | 2019-01-26 | 2 | -13/+23 |
* | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 7 | -28/+21 |
* | Allow direct navigation to static analysis checker documentation through SARI... | Aaron Ballman | 2018-12-20 | 1 | -7/+7 |
* | [analyzer][NFC] Merge ClangCheckerRegistry to CheckerRegistry | Kristof Umann | 2018-12-15 | 2 | -99/+74 |
* | [analyzer][NFC] Move CheckerRegistry from the Core directory to Frontend | Kristof Umann | 2018-12-15 | 3 | -3/+202 |
* | [analyzer] Prefer returns values to out-params in CheckerRegistry.cpp | Kristof Umann | 2018-12-15 | 1 | -2/+3 |
* | [analyzer] Evaluate all non-checker config options before analysis | Kristof Umann | 2018-11-30 | 2 | -3/+3 |
* | [analyzer][NFC] Move CheckerOptInfo to CheckerRegistry.cpp, and make it local | Kristof Umann | 2018-11-18 | 1 | -25/+2 |
* | Attempt to fix 'logical operation on address of string constant' | Kristof Umann | 2018-11-02 | 1 | -2/+4 |
* | [analyzer] New flag to print all -analyzer-config options | Kristof Umann | 2018-11-02 | 1 | -0/+72 |
* | [analyzer][NFC] Fix some incorrect uses of -analyzer-config options | Kristof Umann | 2018-11-02 | 1 | -1/+1 |
* | [analyzer] [NFC] Remove unused parameters, as found by -Wunused-parameter | George Karpenkov | 2018-09-28 | 1 | -28/+4 |
* | [analyzer] Provide an option to dump generated exploded graphs to a given file. | George Karpenkov | 2018-09-28 | 1 | -0/+3 |
* | [analyzer] Remove traces of ubigraph visualization | George Karpenkov | 2018-09-06 | 1 | -108/+0 |
* | Port getLocStart -> getBeginLoc | Stephen Kelly | 2018-08-09 | 1 | -1/+1 |