1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
7 | |
8 | |
9 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | #include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h" |
16 | #include "clang/AST/Attr.h" |
17 | #include "clang/AST/DeclObjC.h" |
18 | #include "clang/AST/Expr.h" |
19 | #include "clang/AST/ExprObjC.h" |
20 | #include "clang/Basic/LangOptions.h" |
21 | #include "clang/Basic/SourceManager.h" |
22 | #include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h" |
23 | #include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h" |
24 | #include "clang/StaticAnalyzer/Core/Checker.h" |
25 | |
26 | using namespace clang; |
27 | using namespace ento; |
28 | |
29 | enum IVarState { Unused, Used }; |
30 | typedef llvm::DenseMap<const ObjCIvarDecl*,IVarState> IvarUsageMap; |
31 | |
32 | static void Scan(IvarUsageMap& M, const Stmt *S) { |
33 | if (!S) |
34 | return; |
35 | |
36 | if (const ObjCIvarRefExpr *Ex = dyn_cast<ObjCIvarRefExpr>(S)) { |
37 | const ObjCIvarDecl *D = Ex->getDecl(); |
38 | IvarUsageMap::iterator I = M.find(D); |
39 | if (I != M.end()) |
40 | I->second = Used; |
41 | return; |
42 | } |
43 | |
44 | |
45 | if (const BlockExpr *BE = dyn_cast<BlockExpr>(S)) { |
46 | Scan(M, BE->getBody()); |
47 | return; |
48 | } |
49 | |
50 | if (const PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(S)) |
51 | for (PseudoObjectExpr::const_semantics_iterator |
52 | i = POE->semantics_begin(), e = POE->semantics_end(); i != e; ++i) { |
53 | const Expr *sub = *i; |
54 | if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(sub)) |
55 | sub = OVE->getSourceExpr(); |
56 | Scan(M, sub); |
57 | } |
58 | |
59 | for (const Stmt *SubStmt : S->children()) |
60 | Scan(M, SubStmt); |
61 | } |
62 | |
63 | static void Scan(IvarUsageMap& M, const ObjCPropertyImplDecl *D) { |
64 | if (!D) |
65 | return; |
66 | |
67 | const ObjCIvarDecl *ID = D->getPropertyIvarDecl(); |
68 | |
69 | if (!ID) |
70 | return; |
71 | |
72 | IvarUsageMap::iterator I = M.find(ID); |
73 | if (I != M.end()) |
74 | I->second = Used; |
75 | } |
76 | |
77 | static void Scan(IvarUsageMap& M, const ObjCContainerDecl *D) { |
78 | |
79 | for (const auto *I : D->instance_methods()) |
80 | Scan(M, I->getBody()); |
81 | |
82 | if (const ObjCImplementationDecl *ID = dyn_cast<ObjCImplementationDecl>(D)) { |
83 | |
84 | |
85 | for (const auto *I : ID->property_impls()) |
86 | Scan(M, I); |
87 | |
88 | |
89 | for (const auto *Cat : ID->getClassInterface()->visible_categories()) { |
90 | if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) |
91 | Scan(M, CID); |
92 | } |
93 | } |
94 | } |
95 | |
96 | static void Scan(IvarUsageMap &M, const DeclContext *C, const FileID FID, |
97 | SourceManager &SM) { |
98 | for (const auto *I : C->decls()) |
99 | if (const auto *FD = dyn_cast<FunctionDecl>(I)) { |
100 | SourceLocation L = FD->getBeginLoc(); |
101 | if (SM.getFileID(L) == FID) |
102 | Scan(M, FD->getBody()); |
103 | } |
104 | } |
105 | |
106 | static void checkObjCUnusedIvar(const ObjCImplementationDecl *D, |
107 | BugReporter &BR, |
108 | const CheckerBase *Checker) { |
109 | |
110 | const ObjCInterfaceDecl *ID = D->getClassInterface(); |
111 | IvarUsageMap M; |
112 | |
113 | |
114 | for (const auto *Ivar : ID->ivars()) { |
115 | |
116 | |
117 | |
118 | |
119 | |
120 | if (Ivar->getAccessControl() != ObjCIvarDecl::Private || |
121 | Ivar->hasAttr<UnusedAttr>() || Ivar->hasAttr<IBOutletAttr>() || |
122 | Ivar->hasAttr<IBOutletCollectionAttr>() || |
123 | Ivar->isUnnamedBitfield()) |
124 | continue; |
125 | |
126 | M[Ivar] = Unused; |
127 | } |
128 | |
129 | if (M.empty()) |
130 | return; |
131 | |
132 | |
133 | Scan(M, D); |
134 | |
135 | |
136 | bool hasUnused = false; |
137 | for (IvarUsageMap::iterator I = M.begin(), E = M.end(); I!=E; ++I) |
138 | if (I->second == Unused) { |
139 | hasUnused = true; |
140 | break; |
141 | } |
142 | |
143 | if (!hasUnused) |
144 | return; |
145 | |
146 | |
147 | |
148 | |
149 | |
150 | |
151 | SourceManager &SM = BR.getSourceManager(); |
152 | Scan(M, D->getDeclContext(), SM.getFileID(D->getLocation()), SM); |
153 | |
154 | |
155 | for (IvarUsageMap::iterator I = M.begin(), E = M.end(); I!=E; ++I) |
156 | if (I->second == Unused) { |
157 | std::string sbuf; |
158 | llvm::raw_string_ostream os(sbuf); |
159 | os << "Instance variable '" << *I->first << "' in class '" << *ID |
160 | << "' is never used by the methods in its @implementation " |
161 | "(although it may be used by category methods)."; |
162 | |
163 | PathDiagnosticLocation L = |
164 | PathDiagnosticLocation::create(I->first, BR.getSourceManager()); |
165 | BR.EmitBasicReport(D, Checker, "Unused instance variable", "Optimization", |
166 | os.str(), L); |
167 | } |
168 | } |
169 | |
170 | |
171 | |
172 | |
173 | |
174 | namespace { |
175 | class ObjCUnusedIvarsChecker : public Checker< |
176 | check::ASTDecl<ObjCImplementationDecl> > { |
177 | public: |
178 | void checkASTDecl(const ObjCImplementationDecl *D, AnalysisManager& mgr, |
179 | BugReporter &BR) const { |
180 | checkObjCUnusedIvar(D, BR, this); |
181 | } |
182 | }; |
183 | } |
184 | |
185 | void ento::registerObjCUnusedIvarsChecker(CheckerManager &mgr) { |
186 | mgr.registerChecker<ObjCUnusedIvarsChecker>(); |
187 | } |
188 | |
189 | bool ento::shouldRegisterObjCUnusedIvarsChecker(const LangOptions &LO) { |
190 | return true; |
191 | } |
192 | |