blob: f2cf581916321d2a36c75176d9ec387bad00e6f0 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001//==- CheckObjCUnusedIVars.cpp - Check for unused ivars ----------*- C++ -*-==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a CheckObjCUnusedIvars, a checker that
11// analyzes an Objective-C class's interface/implementation to determine if it
12// has any ivars that are never accessed.
13//
14//===----------------------------------------------------------------------===//
15
16#include "clang/Checker/Checkers/LocalCheckers.h"
17#include "clang/Checker/BugReporter/PathDiagnostic.h"
18#include "clang/Checker/BugReporter/BugReporter.h"
19#include "clang/AST/ExprObjC.h"
20#include "clang/AST/Expr.h"
21#include "clang/AST/DeclObjC.h"
22#include "clang/Basic/LangOptions.h"
23#include "clang/Basic/SourceManager.h"
24
25using namespace clang;
26
27enum IVarState { Unused, Used };
28typedef llvm::DenseMap<const ObjCIvarDecl*,IVarState> IvarUsageMap;
29
30static void Scan(IvarUsageMap& M, const Stmt* S) {
31 if (!S)
32 return;
33
34 if (const ObjCIvarRefExpr *Ex = dyn_cast<ObjCIvarRefExpr>(S)) {
35 const ObjCIvarDecl *D = Ex->getDecl();
36 IvarUsageMap::iterator I = M.find(D);
37 if (I != M.end())
38 I->second = Used;
39 return;
40 }
41
42 // Blocks can reference an instance variable of a class.
43 if (const BlockExpr *BE = dyn_cast<BlockExpr>(S)) {
44 Scan(M, BE->getBody());
45 return;
46 }
47
48 for (Stmt::const_child_iterator I=S->child_begin(),E=S->child_end(); I!=E;++I)
49 Scan(M, *I);
50}
51
52static void Scan(IvarUsageMap& M, const ObjCPropertyImplDecl* D) {
53 if (!D)
54 return;
55
56 const ObjCIvarDecl* ID = D->getPropertyIvarDecl();
57
58 if (!ID)
59 return;
60
61 IvarUsageMap::iterator I = M.find(ID);
62 if (I != M.end())
63 I->second = Used;
64}
65
66static void Scan(IvarUsageMap& M, const ObjCContainerDecl* D) {
67 // Scan the methods for accesses.
68 for (ObjCContainerDecl::instmeth_iterator I = D->instmeth_begin(),
69 E = D->instmeth_end(); I!=E; ++I)
70 Scan(M, (*I)->getBody());
71
72 if (const ObjCImplementationDecl *ID = dyn_cast<ObjCImplementationDecl>(D)) {
73 // Scan for @synthesized property methods that act as setters/getters
74 // to an ivar.
75 for (ObjCImplementationDecl::propimpl_iterator I = ID->propimpl_begin(),
76 E = ID->propimpl_end(); I!=E; ++I)
77 Scan(M, *I);
78
79 // Scan the associated categories as well.
80 for (const ObjCCategoryDecl *CD =
81 ID->getClassInterface()->getCategoryList(); CD ;
82 CD = CD->getNextClassCategory()) {
83 if (const ObjCCategoryImplDecl *CID = CD->getImplementation())
84 Scan(M, CID);
85 }
86 }
87}
88
89static void Scan(IvarUsageMap &M, const DeclContext *C, const FileID FID,
90 SourceManager &SM) {
91 for (DeclContext::decl_iterator I=C->decls_begin(), E=C->decls_end();
92 I!=E; ++I)
93 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
94 SourceLocation L = FD->getLocStart();
95 if (SM.getFileID(L) == FID)
96 Scan(M, FD->getBody());
97 }
98}
99
100void clang::CheckObjCUnusedIvar(const ObjCImplementationDecl *D,
101 BugReporter &BR) {
102
103 const ObjCInterfaceDecl* ID = D->getClassInterface();
104 IvarUsageMap M;
105
106 // Iterate over the ivars.
107 for (ObjCInterfaceDecl::ivar_iterator I=ID->ivar_begin(),
108 E=ID->ivar_end(); I!=E; ++I) {
109
110 const ObjCIvarDecl* ID = *I;
111
112 // Ignore ivars that aren't private.
113 if (ID->getAccessControl() != ObjCIvarDecl::Private)
114 continue;
115
116 // Skip IB Outlets.
117 if (ID->getAttr<IBOutletAttr>())
118 continue;
119
120 M[ID] = Unused;
121 }
122
123 if (M.empty())
124 return;
125
126 // Now scan the implementation declaration.
127 Scan(M, D);
128
129
130 // Any potentially unused ivars?
131 bool hasUnused = false;
132 for (IvarUsageMap::iterator I = M.begin(), E = M.end(); I!=E; ++I)
133 if (I->second == Unused) {
134 hasUnused = true;
135 break;
136 }
137
138 if (!hasUnused)
139 return;
140
141 // We found some potentially unused ivars. Scan the entire translation unit
142 // for functions inside the @implementation that reference these ivars.
143 // FIXME: In the future hopefully we can just use the lexical DeclContext
144 // to go from the ObjCImplementationDecl to the lexically "nested"
145 // C functions.
146 SourceManager &SM = BR.getSourceManager();
147 Scan(M, D->getDeclContext(), SM.getFileID(D->getLocation()), SM);
148
149 // Find ivars that are unused.
150 for (IvarUsageMap::iterator I = M.begin(), E = M.end(); I!=E; ++I)
151 if (I->second == Unused) {
152 std::string sbuf;
153 llvm::raw_string_ostream os(sbuf);
154 os << "Instance variable '" << I->first->getNameAsString()
155 << "' in class '" << ID->getNameAsString()
156 << "' is never used by the methods in its @implementation "
157 "(although it may be used by category methods).";
158
159 BR.EmitBasicReport("Unused instance variable", "Optimization",
160 os.str(), I->first->getLocation());
161 }
162}