summaryrefslogtreecommitdiffstats
path: root/include/clang/Frontend/Analyses.def
blob: 3492d09c10aa4b6c8d9b8b02aa2e982d634fc7db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//===-- Analyses.def - Metadata about Static Analyses -----------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
//  This file defines the set of static analyses used by AnalysisConsumer.
//
//===----------------------------------------------------------------------===//

#ifndef ANALYSIS
#define ANALYSIS(NAME, CMDFLAG, DESC, SCOPE)
#endif

ANALYSIS(CFGDump, "cfg-dump",
         "Display Control-Flow Graphs", Code)

ANALYSIS(CFGView, "cfg-view",
         "View Control-Flow Graphs using GraphViz", Code)

ANALYSIS(DisplayLiveVariables, "dump-live-variables",
         "Print results of live variable analysis", Code)

ANALYSIS(WarnDeadStores, "warn-dead-stores",
         "Warn about stores to dead variables", Code)

ANALYSIS(WarnUninitVals, "warn-uninit-values",
         "Warn about uses of uninitialized variables", Code)

ANALYSIS(WarnObjCMethSigs, "warn-objc-methodsigs",
 "Warn about Objective-C method signatures with type incompatibilities",
 ObjCImplementation)

ANALYSIS(WarnObjCDealloc, "warn-objc-missing-dealloc",
 "Warn about Objective-C classes that lack a correct implementation of -dealloc",
 ObjCImplementation)
 
ANALYSIS(WarnObjCUnusedIvars, "warn-objc-unused-ivars",
  "Warn about private ivars that are never used", ObjCImplementation)

ANALYSIS(CheckerSimple, "checker-simple",
         "Perform simple path-sensitive checks.", Code)

ANALYSIS(CheckerCFRef, "checker-cfref",
         "Run the [Core] Foundation reference count checker", Code)


#ifndef ANALYSIS_STORE
#define ANALYSIS_STORE(NAME, CMDFLAG, DESC, CREATFN)
#endif

ANALYSIS_STORE(BasicStore, "basic", "Use basic analyzer store", CreateBasicStoreManager)
ANALYSIS_STORE(RegionStore, "region", "Use region-based analyzer store", CreateRegionStoreManager)

#ifndef ANALYSIS_CONSTRAINTS
#define ANALYSIS_CONSTRAINTS(NAME, CMDFLAG, DESC, CREATFN)
#endif

ANALYSIS_CONSTRAINTS(BasicConstraints, "basic", "Use basic constraint tracking", CreateBasicConstraintManager)
ANALYSIS_CONSTRAINTS(RangeConstraints, "range", "Use constraint tracking of concrete value ranges", CreateRangeConstraintManager)

#ifndef ANALYSIS_DIAGNOSTICS
#define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATEFN, AUTOCREATE)
#endif

ANALYSIS_DIAGNOSTICS(HTML,  "html",  "Output analysis results using HTML",   CreateHTMLDiagnosticClient, false)
ANALYSIS_DIAGNOSTICS(PLIST, "plist", "Output analysis results using Plists", CreatePlistDiagnosticClient, true)

#undef ANALYSIS
#undef ANALYSIS_STORE
#undef ANALYSIS_CONSTRAINTS
#undef ANALYSIS_DIAGNOSTICS
#undef ANALYSIS_STORE

OpenPOWER on IntegriCloud