blob: 56c812c34c507cb85a5dcc43fde8fa9e98e170ee [file] [log] [blame]
Ted Kremenek14f779c2012-09-21 00:09:11 +00001//== BodyFarm.cpp - Factory for conjuring up fake bodies ----------*- 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// BodyFarm is a factory for creating faux implementations for functions/methods
11// for analysis purposes.
12//
13//===----------------------------------------------------------------------===//
14
Ted Kremenek14f779c2012-09-21 00:09:11 +000015#include "BodyFarm.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000016#include "clang/AST/ASTContext.h"
17#include "clang/AST/Decl.h"
18#include "clang/AST/Expr.h"
19#include "clang/AST/ExprObjC.h"
Chandler Carruth0d9593d2015-01-14 11:29:14 +000020#include "clang/Analysis/CodeInjector.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "llvm/ADT/StringSwitch.h"
Ted Kremenek14f779c2012-09-21 00:09:11 +000022
23using namespace clang;
24
Ted Kremenek2b5c83c2012-09-21 17:54:32 +000025//===----------------------------------------------------------------------===//
26// Helper creation functions for constructing faux ASTs.
27//===----------------------------------------------------------------------===//
Ted Kremenek14f779c2012-09-21 00:09:11 +000028
Ted Kremenekd81a4a12012-09-21 00:52:24 +000029static bool isDispatchBlock(QualType Ty) {
30 // Is it a block pointer?
31 const BlockPointerType *BPT = Ty->getAs<BlockPointerType>();
32 if (!BPT)
33 return false;
34
35 // Check if the block pointer type takes no arguments and
36 // returns void.
37 const FunctionProtoType *FT =
38 BPT->getPointeeType()->getAs<FunctionProtoType>();
Alexander Kornienko090360d2015-11-06 01:08:38 +000039 return FT && FT->getReturnType()->isVoidType() && FT->getNumParams() == 0;
Ted Kremenekd81a4a12012-09-21 00:52:24 +000040}
41
Ted Kremenek72418132012-09-21 17:54:35 +000042namespace {
43class ASTMaker {
44public:
45 ASTMaker(ASTContext &C) : C(C) {}
46
Ted Kremenekf465dc12012-09-21 18:33:54 +000047 /// Create a new BinaryOperator representing a simple assignment.
48 BinaryOperator *makeAssignment(const Expr *LHS, const Expr *RHS, QualType Ty);
49
Ted Kremenek089ffd02012-10-11 20:58:18 +000050 /// Create a new BinaryOperator representing a comparison.
51 BinaryOperator *makeComparison(const Expr *LHS, const Expr *RHS,
52 BinaryOperator::Opcode Op);
53
54 /// Create a new compound stmt using the provided statements.
55 CompoundStmt *makeCompound(ArrayRef<Stmt*>);
56
Ted Kremenek69bcb822012-09-21 18:13:23 +000057 /// Create a new DeclRefExpr for the referenced variable.
Ted Kremenek72418132012-09-21 17:54:35 +000058 DeclRefExpr *makeDeclRefExpr(const VarDecl *D);
59
Ted Kremenekdff35532012-09-21 18:33:52 +000060 /// Create a new UnaryOperator representing a dereference.
61 UnaryOperator *makeDereference(const Expr *Arg, QualType Ty);
62
Ted Kremenek69bcb822012-09-21 18:13:23 +000063 /// Create an implicit cast for an integer conversion.
Ted Kremenek6fdefb52012-10-12 00:18:19 +000064 Expr *makeIntegralCast(const Expr *Arg, QualType Ty);
Ted Kremenek69bcb822012-09-21 18:13:23 +000065
Ted Kremenek089ffd02012-10-11 20:58:18 +000066 /// Create an implicit cast to a builtin boolean type.
67 ImplicitCastExpr *makeIntegralCastToBoolean(const Expr *Arg);
68
Ted Kremenekca90ea52012-09-21 18:13:27 +000069 // Create an implicit cast for lvalue-to-rvaluate conversions.
70 ImplicitCastExpr *makeLvalueToRvalue(const Expr *Arg, QualType Ty);
71
Ted Kremenek089ffd02012-10-11 20:58:18 +000072 /// Create an Objective-C bool literal.
73 ObjCBoolLiteralExpr *makeObjCBool(bool Val);
Jordan Rose1a866cd2014-01-10 20:06:06 +000074
75 /// Create an Objective-C ivar reference.
76 ObjCIvarRefExpr *makeObjCIvarRef(const Expr *Base, const ObjCIvarDecl *IVar);
Ted Kremenek089ffd02012-10-11 20:58:18 +000077
78 /// Create a Return statement.
79 ReturnStmt *makeReturn(const Expr *RetVal);
80
Ted Kremenek72418132012-09-21 17:54:35 +000081private:
82 ASTContext &C;
83};
Alexander Kornienkoab9db512015-06-22 23:07:51 +000084}
Ted Kremenek72418132012-09-21 17:54:35 +000085
Ted Kremenekf465dc12012-09-21 18:33:54 +000086BinaryOperator *ASTMaker::makeAssignment(const Expr *LHS, const Expr *RHS,
87 QualType Ty) {
88 return new (C) BinaryOperator(const_cast<Expr*>(LHS), const_cast<Expr*>(RHS),
89 BO_Assign, Ty, VK_RValue,
Lang Hames5de91cc2012-10-02 04:45:10 +000090 OK_Ordinary, SourceLocation(), false);
Ted Kremenekf465dc12012-09-21 18:33:54 +000091}
92
Ted Kremenek089ffd02012-10-11 20:58:18 +000093BinaryOperator *ASTMaker::makeComparison(const Expr *LHS, const Expr *RHS,
94 BinaryOperator::Opcode Op) {
95 assert(BinaryOperator::isLogicalOp(Op) ||
96 BinaryOperator::isComparisonOp(Op));
97 return new (C) BinaryOperator(const_cast<Expr*>(LHS),
98 const_cast<Expr*>(RHS),
99 Op,
100 C.getLogicalOperationType(),
101 VK_RValue,
102 OK_Ordinary, SourceLocation(), false);
103}
104
105CompoundStmt *ASTMaker::makeCompound(ArrayRef<Stmt *> Stmts) {
Nico Webera2a0eb92012-12-29 20:03:39 +0000106 return new (C) CompoundStmt(C, Stmts, SourceLocation(), SourceLocation());
Ted Kremenek089ffd02012-10-11 20:58:18 +0000107}
108
Ted Kremenek72418132012-09-21 17:54:35 +0000109DeclRefExpr *ASTMaker::makeDeclRefExpr(const VarDecl *D) {
110 DeclRefExpr *DR =
111 DeclRefExpr::Create(/* Ctx = */ C,
112 /* QualifierLoc = */ NestedNameSpecifierLoc(),
113 /* TemplateKWLoc = */ SourceLocation(),
114 /* D = */ const_cast<VarDecl*>(D),
Alexey Bataev19acc3d2015-01-12 10:17:46 +0000115 /* RefersToEnclosingVariableOrCapture = */ false,
Ted Kremenek72418132012-09-21 17:54:35 +0000116 /* NameLoc = */ SourceLocation(),
117 /* T = */ D->getType(),
118 /* VK = */ VK_LValue);
119 return DR;
120}
121
Ted Kremenekdff35532012-09-21 18:33:52 +0000122UnaryOperator *ASTMaker::makeDereference(const Expr *Arg, QualType Ty) {
123 return new (C) UnaryOperator(const_cast<Expr*>(Arg), UO_Deref, Ty,
124 VK_LValue, OK_Ordinary, SourceLocation());
125}
126
Ted Kremenekca90ea52012-09-21 18:13:27 +0000127ImplicitCastExpr *ASTMaker::makeLvalueToRvalue(const Expr *Arg, QualType Ty) {
128 return ImplicitCastExpr::Create(C, Ty, CK_LValueToRValue,
Craig Topper25542942014-05-20 04:30:07 +0000129 const_cast<Expr*>(Arg), nullptr, VK_RValue);
Ted Kremenekca90ea52012-09-21 18:13:27 +0000130}
131
Ted Kremenek6fdefb52012-10-12 00:18:19 +0000132Expr *ASTMaker::makeIntegralCast(const Expr *Arg, QualType Ty) {
133 if (Arg->getType() == Ty)
134 return const_cast<Expr*>(Arg);
Craig Topper25542942014-05-20 04:30:07 +0000135
Ted Kremenek69bcb822012-09-21 18:13:23 +0000136 return ImplicitCastExpr::Create(C, Ty, CK_IntegralCast,
Craig Topper25542942014-05-20 04:30:07 +0000137 const_cast<Expr*>(Arg), nullptr, VK_RValue);
Ted Kremenek69bcb822012-09-21 18:13:23 +0000138}
139
Ted Kremenek089ffd02012-10-11 20:58:18 +0000140ImplicitCastExpr *ASTMaker::makeIntegralCastToBoolean(const Expr *Arg) {
141 return ImplicitCastExpr::Create(C, C.BoolTy, CK_IntegralToBoolean,
Craig Topper25542942014-05-20 04:30:07 +0000142 const_cast<Expr*>(Arg), nullptr, VK_RValue);
Ted Kremenek089ffd02012-10-11 20:58:18 +0000143}
144
145ObjCBoolLiteralExpr *ASTMaker::makeObjCBool(bool Val) {
146 QualType Ty = C.getBOOLDecl() ? C.getBOOLType() : C.ObjCBuiltinBoolTy;
147 return new (C) ObjCBoolLiteralExpr(Val, Ty, SourceLocation());
148}
149
Jordan Rose1a866cd2014-01-10 20:06:06 +0000150ObjCIvarRefExpr *ASTMaker::makeObjCIvarRef(const Expr *Base,
151 const ObjCIvarDecl *IVar) {
152 return new (C) ObjCIvarRefExpr(const_cast<ObjCIvarDecl*>(IVar),
153 IVar->getType(), SourceLocation(),
154 SourceLocation(), const_cast<Expr*>(Base),
155 /*arrow=*/true, /*free=*/false);
156}
157
158
Ted Kremenek089ffd02012-10-11 20:58:18 +0000159ReturnStmt *ASTMaker::makeReturn(const Expr *RetVal) {
Craig Topper25542942014-05-20 04:30:07 +0000160 return new (C) ReturnStmt(SourceLocation(), const_cast<Expr*>(RetVal),
161 nullptr);
Ted Kremenek089ffd02012-10-11 20:58:18 +0000162}
163
Ted Kremenek2b5c83c2012-09-21 17:54:32 +0000164//===----------------------------------------------------------------------===//
165// Creation functions for faux ASTs.
166//===----------------------------------------------------------------------===//
167
168typedef Stmt *(*FunctionFarmer)(ASTContext &C, const FunctionDecl *D);
169
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000170/// Create a fake body for dispatch_once.
171static Stmt *create_dispatch_once(ASTContext &C, const FunctionDecl *D) {
172 // Check if we have at least two parameters.
173 if (D->param_size() != 2)
Craig Topper25542942014-05-20 04:30:07 +0000174 return nullptr;
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000175
176 // Check if the first parameter is a pointer to integer type.
177 const ParmVarDecl *Predicate = D->getParamDecl(0);
178 QualType PredicateQPtrTy = Predicate->getType();
179 const PointerType *PredicatePtrTy = PredicateQPtrTy->getAs<PointerType>();
180 if (!PredicatePtrTy)
Craig Topper25542942014-05-20 04:30:07 +0000181 return nullptr;
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000182 QualType PredicateTy = PredicatePtrTy->getPointeeType();
183 if (!PredicateTy->isIntegerType())
Craig Topper25542942014-05-20 04:30:07 +0000184 return nullptr;
185
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000186 // Check if the second parameter is the proper block type.
187 const ParmVarDecl *Block = D->getParamDecl(1);
188 QualType Ty = Block->getType();
189 if (!isDispatchBlock(Ty))
Craig Topper25542942014-05-20 04:30:07 +0000190 return nullptr;
191
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000192 // Everything checks out. Create a fakse body that checks the predicate,
193 // sets it, and calls the block. Basically, an AST dump of:
194 //
195 // void dispatch_once(dispatch_once_t *predicate, dispatch_block_t block) {
196 // if (!*predicate) {
197 // *predicate = 1;
198 // block();
199 // }
200 // }
201
Ted Kremenek72418132012-09-21 17:54:35 +0000202 ASTMaker M(C);
203
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000204 // (1) Create the call.
Ted Kremenek72418132012-09-21 17:54:35 +0000205 DeclRefExpr *DR = M.makeDeclRefExpr(Block);
Ted Kremenekca90ea52012-09-21 18:13:27 +0000206 ImplicitCastExpr *ICE = M.makeLvalueToRvalue(DR, Ty);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000207 CallExpr *CE = new (C) CallExpr(C, ICE, None, C.VoidTy, VK_RValue,
208 SourceLocation());
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000209
210 // (2) Create the assignment to the predicate.
211 IntegerLiteral *IL =
212 IntegerLiteral::Create(C, llvm::APInt(C.getTypeSize(C.IntTy), (uint64_t) 1),
213 C.IntTy, SourceLocation());
Ted Kremeneke7ad5352012-09-21 18:33:56 +0000214 BinaryOperator *B =
215 M.makeAssignment(
216 M.makeDereference(
217 M.makeLvalueToRvalue(
218 M.makeDeclRefExpr(Predicate), PredicateQPtrTy),
219 PredicateTy),
220 M.makeIntegralCast(IL, PredicateTy),
221 PredicateTy);
222
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000223 // (3) Create the compound statement.
Craig Topper5fc8fc22014-08-27 06:28:36 +0000224 Stmt *Stmts[] = { B, CE };
225 CompoundStmt *CS = M.makeCompound(Stmts);
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000226
227 // (4) Create the 'if' condition.
Ted Kremeneke7ad5352012-09-21 18:33:56 +0000228 ImplicitCastExpr *LValToRval =
229 M.makeLvalueToRvalue(
230 M.makeDereference(
231 M.makeLvalueToRvalue(
232 M.makeDeclRefExpr(Predicate),
233 PredicateQPtrTy),
234 PredicateTy),
235 PredicateTy);
236
237 UnaryOperator *UO = new (C) UnaryOperator(LValToRval, UO_LNot, C.IntTy,
238 VK_RValue, OK_Ordinary,
239 SourceLocation());
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000240
241 // (5) Create the 'if' statement.
Richard Smitha547eb22016-07-14 00:11:03 +0000242 IfStmt *If = new (C) IfStmt(C, SourceLocation(), false, nullptr, nullptr,
243 UO, CS);
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000244 return If;
245}
246
Ted Kremenek14f779c2012-09-21 00:09:11 +0000247/// Create a fake body for dispatch_sync.
248static Stmt *create_dispatch_sync(ASTContext &C, const FunctionDecl *D) {
249 // Check if we have at least two parameters.
250 if (D->param_size() != 2)
Craig Topper25542942014-05-20 04:30:07 +0000251 return nullptr;
252
Ted Kremenek14f779c2012-09-21 00:09:11 +0000253 // Check if the second parameter is a block.
254 const ParmVarDecl *PV = D->getParamDecl(1);
255 QualType Ty = PV->getType();
Ted Kremenekd81a4a12012-09-21 00:52:24 +0000256 if (!isDispatchBlock(Ty))
Craig Topper25542942014-05-20 04:30:07 +0000257 return nullptr;
258
Ted Kremenek14f779c2012-09-21 00:09:11 +0000259 // Everything checks out. Create a fake body that just calls the block.
260 // This is basically just an AST dump of:
261 //
262 // void dispatch_sync(dispatch_queue_t queue, void (^block)(void)) {
263 // block();
264 // }
Ted Kremenek72418132012-09-21 17:54:35 +0000265 //
266 ASTMaker M(C);
267 DeclRefExpr *DR = M.makeDeclRefExpr(PV);
Ted Kremenekdff35532012-09-21 18:33:52 +0000268 ImplicitCastExpr *ICE = M.makeLvalueToRvalue(DR, Ty);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000269 CallExpr *CE = new (C) CallExpr(C, ICE, None, C.VoidTy, VK_RValue,
270 SourceLocation());
Ted Kremenek14f779c2012-09-21 00:09:11 +0000271 return CE;
272}
273
Ted Kremenek089ffd02012-10-11 20:58:18 +0000274static Stmt *create_OSAtomicCompareAndSwap(ASTContext &C, const FunctionDecl *D)
275{
276 // There are exactly 3 arguments.
277 if (D->param_size() != 3)
Craig Topper25542942014-05-20 04:30:07 +0000278 return nullptr;
279
Anna Zaks064185a2013-02-05 19:52:26 +0000280 // Signature:
281 // _Bool OSAtomicCompareAndSwapPtr(void *__oldValue,
282 // void *__newValue,
283 // void * volatile *__theValue)
284 // Generate body:
Ted Kremenek089ffd02012-10-11 20:58:18 +0000285 // if (oldValue == *theValue) {
286 // *theValue = newValue;
287 // return YES;
288 // }
289 // else return NO;
Alp Toker314cc812014-01-25 16:55:45 +0000290
291 QualType ResultTy = D->getReturnType();
Ted Kremenek6fdefb52012-10-12 00:18:19 +0000292 bool isBoolean = ResultTy->isBooleanType();
293 if (!isBoolean && !ResultTy->isIntegralType(C))
Craig Topper25542942014-05-20 04:30:07 +0000294 return nullptr;
295
Ted Kremenek089ffd02012-10-11 20:58:18 +0000296 const ParmVarDecl *OldValue = D->getParamDecl(0);
297 QualType OldValueTy = OldValue->getType();
298
299 const ParmVarDecl *NewValue = D->getParamDecl(1);
300 QualType NewValueTy = NewValue->getType();
301
302 assert(OldValueTy == NewValueTy);
303
304 const ParmVarDecl *TheValue = D->getParamDecl(2);
305 QualType TheValueTy = TheValue->getType();
306 const PointerType *PT = TheValueTy->getAs<PointerType>();
307 if (!PT)
Craig Topper25542942014-05-20 04:30:07 +0000308 return nullptr;
Ted Kremenek089ffd02012-10-11 20:58:18 +0000309 QualType PointeeTy = PT->getPointeeType();
310
311 ASTMaker M(C);
312 // Construct the comparison.
313 Expr *Comparison =
314 M.makeComparison(
315 M.makeLvalueToRvalue(M.makeDeclRefExpr(OldValue), OldValueTy),
316 M.makeLvalueToRvalue(
317 M.makeDereference(
318 M.makeLvalueToRvalue(M.makeDeclRefExpr(TheValue), TheValueTy),
319 PointeeTy),
320 PointeeTy),
321 BO_EQ);
322
323 // Construct the body of the IfStmt.
324 Stmt *Stmts[2];
325 Stmts[0] =
326 M.makeAssignment(
327 M.makeDereference(
328 M.makeLvalueToRvalue(M.makeDeclRefExpr(TheValue), TheValueTy),
329 PointeeTy),
330 M.makeLvalueToRvalue(M.makeDeclRefExpr(NewValue), NewValueTy),
331 NewValueTy);
Ted Kremenek6fdefb52012-10-12 00:18:19 +0000332
333 Expr *BoolVal = M.makeObjCBool(true);
334 Expr *RetVal = isBoolean ? M.makeIntegralCastToBoolean(BoolVal)
335 : M.makeIntegralCast(BoolVal, ResultTy);
336 Stmts[1] = M.makeReturn(RetVal);
Craig Topper5fc8fc22014-08-27 06:28:36 +0000337 CompoundStmt *Body = M.makeCompound(Stmts);
Ted Kremenek089ffd02012-10-11 20:58:18 +0000338
339 // Construct the else clause.
Ted Kremenek6fdefb52012-10-12 00:18:19 +0000340 BoolVal = M.makeObjCBool(false);
341 RetVal = isBoolean ? M.makeIntegralCastToBoolean(BoolVal)
342 : M.makeIntegralCast(BoolVal, ResultTy);
343 Stmt *Else = M.makeReturn(RetVal);
Ted Kremenek089ffd02012-10-11 20:58:18 +0000344
345 /// Construct the If.
Richard Smitha547eb22016-07-14 00:11:03 +0000346 Stmt *If = new (C) IfStmt(C, SourceLocation(), false, nullptr, nullptr,
347 Comparison, Body, SourceLocation(), Else);
Craig Topper25542942014-05-20 04:30:07 +0000348
Ted Kremenek089ffd02012-10-11 20:58:18 +0000349 return If;
350}
351
Ted Kremenek14f779c2012-09-21 00:09:11 +0000352Stmt *BodyFarm::getBody(const FunctionDecl *D) {
353 D = D->getCanonicalDecl();
354
David Blaikie05785d12013-02-20 22:23:23 +0000355 Optional<Stmt *> &Val = Bodies[D];
Ted Kremenek14f779c2012-09-21 00:09:11 +0000356 if (Val.hasValue())
357 return Val.getValue();
Craig Topper25542942014-05-20 04:30:07 +0000358
359 Val = nullptr;
360
361 if (D->getIdentifier() == nullptr)
362 return nullptr;
Ted Kremenek14f779c2012-09-21 00:09:11 +0000363
364 StringRef Name = D->getName();
365 if (Name.empty())
Craig Topper25542942014-05-20 04:30:07 +0000366 return nullptr;
Ted Kremenek089ffd02012-10-11 20:58:18 +0000367
368 FunctionFarmer FF;
369
370 if (Name.startswith("OSAtomicCompareAndSwap") ||
371 Name.startswith("objc_atomicCompareAndSwap")) {
372 FF = create_OSAtomicCompareAndSwap;
373 }
374 else {
375 FF = llvm::StringSwitch<FunctionFarmer>(Name)
376 .Case("dispatch_sync", create_dispatch_sync)
377 .Case("dispatch_once", create_dispatch_once)
Craig Topper25542942014-05-20 04:30:07 +0000378 .Default(nullptr);
Ted Kremenek14f779c2012-09-21 00:09:11 +0000379 }
380
Ted Kremenek089ffd02012-10-11 20:58:18 +0000381 if (FF) { Val = FF(C, D); }
Ted Kremenekeeccb302014-08-27 15:14:15 +0000382 else if (Injector) { Val = Injector->getBody(D); }
Ted Kremenek14f779c2012-09-21 00:09:11 +0000383 return Val.getValue();
384}
385
Devin Coughlinb7e810b2016-01-26 23:58:48 +0000386static const ObjCIvarDecl *findBackingIvar(const ObjCPropertyDecl *Prop) {
387 const ObjCIvarDecl *IVar = Prop->getPropertyIvarDecl();
388
389 if (IVar)
390 return IVar;
391
392 // When a readonly property is shadowed in a class extensions with a
393 // a readwrite property, the instance variable belongs to the shadowing
394 // property rather than the shadowed property. If there is no instance
395 // variable on a readonly property, check to see whether the property is
396 // shadowed and if so try to get the instance variable from shadowing
397 // property.
398 if (!Prop->isReadOnly())
399 return nullptr;
400
401 auto *Container = cast<ObjCContainerDecl>(Prop->getDeclContext());
402 const ObjCInterfaceDecl *PrimaryInterface = nullptr;
403 if (auto *InterfaceDecl = dyn_cast<ObjCInterfaceDecl>(Container)) {
404 PrimaryInterface = InterfaceDecl;
405 } else if (auto *CategoryDecl = dyn_cast<ObjCCategoryDecl>(Container)) {
406 PrimaryInterface = CategoryDecl->getClassInterface();
407 } else if (auto *ImplDecl = dyn_cast<ObjCImplDecl>(Container)) {
408 PrimaryInterface = ImplDecl->getClassInterface();
409 } else {
410 return nullptr;
411 }
412
413 // FindPropertyVisibleInPrimaryClass() looks first in class extensions, so it
414 // is guaranteed to find the shadowing property, if it exists, rather than
415 // the shadowed property.
416 auto *ShadowingProp = PrimaryInterface->FindPropertyVisibleInPrimaryClass(
Manman Ren5b786402016-01-28 18:49:28 +0000417 Prop->getIdentifier(), Prop->getQueryKind());
Devin Coughlinb7e810b2016-01-26 23:58:48 +0000418 if (ShadowingProp && ShadowingProp != Prop) {
419 IVar = ShadowingProp->getPropertyIvarDecl();
420 }
421
422 return IVar;
423}
424
Jordan Rose1a866cd2014-01-10 20:06:06 +0000425static Stmt *createObjCPropertyGetter(ASTContext &Ctx,
426 const ObjCPropertyDecl *Prop) {
Jordan Roseddf19662014-01-23 03:59:10 +0000427 // First, find the backing ivar.
Devin Coughlinb7e810b2016-01-26 23:58:48 +0000428 const ObjCIvarDecl *IVar = findBackingIvar(Prop);
Jordan Rose1a866cd2014-01-10 20:06:06 +0000429 if (!IVar)
Craig Topper25542942014-05-20 04:30:07 +0000430 return nullptr;
Jordan Roseddf19662014-01-23 03:59:10 +0000431
432 // Ignore weak variables, which have special behavior.
Jordan Rose1a866cd2014-01-10 20:06:06 +0000433 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
Craig Topper25542942014-05-20 04:30:07 +0000434 return nullptr;
Jordan Rosea3f27812014-01-14 17:29:06 +0000435
Jordan Roseddf19662014-01-23 03:59:10 +0000436 // Look to see if Sema has synthesized a body for us. This happens in
437 // Objective-C++ because the return value may be a C++ class type with a
438 // non-trivial copy constructor. We can only do this if we can find the
439 // @synthesize for this property, though (or if we know it's been auto-
440 // synthesized).
Jordan Rosea3f27812014-01-14 17:29:06 +0000441 const ObjCImplementationDecl *ImplDecl =
442 IVar->getContainingInterface()->getImplementation();
443 if (ImplDecl) {
Aaron Ballmand85eff42014-03-14 15:02:45 +0000444 for (const auto *I : ImplDecl->property_impls()) {
Jordan Rosea3f27812014-01-14 17:29:06 +0000445 if (I->getPropertyDecl() != Prop)
446 continue;
447
448 if (I->getGetterCXXConstructor()) {
449 ASTMaker M(Ctx);
450 return M.makeReturn(I->getGetterCXXConstructor());
451 }
452 }
453 }
454
Jordan Roseddf19662014-01-23 03:59:10 +0000455 // Sanity check that the property is the same type as the ivar, or a
456 // reference to it, and that it is either an object pointer or trivially
457 // copyable.
458 if (!Ctx.hasSameUnqualifiedType(IVar->getType(),
459 Prop->getType().getNonReferenceType()))
Craig Topper25542942014-05-20 04:30:07 +0000460 return nullptr;
Jordan Roseddf19662014-01-23 03:59:10 +0000461 if (!IVar->getType()->isObjCLifetimeType() &&
462 !IVar->getType().isTriviallyCopyableType(Ctx))
Craig Topper25542942014-05-20 04:30:07 +0000463 return nullptr;
Jordan Rose1a866cd2014-01-10 20:06:06 +0000464
Jordan Roseddf19662014-01-23 03:59:10 +0000465 // Generate our body:
466 // return self->_ivar;
Jordan Rose1a866cd2014-01-10 20:06:06 +0000467 ASTMaker M(Ctx);
468
469 const VarDecl *selfVar = Prop->getGetterMethodDecl()->getSelfDecl();
Devin Coughlinaac894f2017-01-11 01:02:34 +0000470 if (!selfVar)
471 return nullptr;
Jordan Rose1a866cd2014-01-10 20:06:06 +0000472
473 Expr *loadedIVar =
474 M.makeObjCIvarRef(
475 M.makeLvalueToRvalue(
476 M.makeDeclRefExpr(selfVar),
477 selfVar->getType()),
478 IVar);
479
480 if (!Prop->getType()->isReferenceType())
481 loadedIVar = M.makeLvalueToRvalue(loadedIVar, IVar->getType());
482
483 return M.makeReturn(loadedIVar);
484}
485
Jordan Roseddf19662014-01-23 03:59:10 +0000486Stmt *BodyFarm::getBody(const ObjCMethodDecl *D) {
487 // We currently only know how to synthesize property accessors.
Jordan Rose1a866cd2014-01-10 20:06:06 +0000488 if (!D->isPropertyAccessor())
Craig Topper25542942014-05-20 04:30:07 +0000489 return nullptr;
Jordan Rose1a866cd2014-01-10 20:06:06 +0000490
491 D = D->getCanonicalDecl();
492
493 Optional<Stmt *> &Val = Bodies[D];
494 if (Val.hasValue())
495 return Val.getValue();
Craig Topper25542942014-05-20 04:30:07 +0000496 Val = nullptr;
Jordan Rose1a866cd2014-01-10 20:06:06 +0000497
Jordan Roseddf19662014-01-23 03:59:10 +0000498 const ObjCPropertyDecl *Prop = D->findPropertyDecl();
Jordan Rose1a866cd2014-01-10 20:06:06 +0000499 if (!Prop)
Craig Topper25542942014-05-20 04:30:07 +0000500 return nullptr;
Jordan Rose1a866cd2014-01-10 20:06:06 +0000501
Jordan Roseddf19662014-01-23 03:59:10 +0000502 // For now, we only synthesize getters.
Devin Coughlinef3697e2016-02-18 19:37:39 +0000503 // Synthesizing setters would cause false negatives in the
504 // RetainCountChecker because the method body would bind the parameter
505 // to an instance variable, causing it to escape. This would prevent
506 // warning in the following common scenario:
507 //
508 // id foo = [[NSObject alloc] init];
509 // self.foo = foo; // We should warn that foo leaks here.
510 //
Jordan Rose1a866cd2014-01-10 20:06:06 +0000511 if (D->param_size() != 0)
Craig Topper25542942014-05-20 04:30:07 +0000512 return nullptr;
Jordan Rose1a866cd2014-01-10 20:06:06 +0000513
514 Val = createObjCPropertyGetter(C, Prop);
515
516 return Val.getValue();
517}
518