blob: d159172a69908d201f98c9aa3c8a468206dd0a4d [file] [log] [blame]
John McCall526ab472011-10-25 17:37:35 +00001//===--- SemaPseudoObject.cpp - Semantic Analysis for Pseudo-Objects ------===//
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 implements semantic analysis for expressions involving
11// pseudo-object references. Pseudo-objects are conceptual objects
12// whose storage is entirely abstract and all accesses to which are
13// translated through some sort of abstraction barrier.
14//
15// For example, Objective-C objects can have "properties", either
16// declared or undeclared. A property may be accessed by writing
17// expr.prop
18// where 'expr' is an r-value of Objective-C pointer type and 'prop'
19// is the name of the property. If this expression is used in a context
20// needing an r-value, it is treated as if it were a message-send
21// of the associated 'getter' selector, typically:
22// [expr prop]
23// If it is used as the LHS of a simple assignment, it is treated
24// as a message-send of the associated 'setter' selector, typically:
25// [expr setProp: RHS]
26// If it is used as the LHS of a compound assignment, or the operand
27// of a unary increment or decrement, both are required; for example,
28// 'expr.prop *= 100' would be translated to:
29// [expr setProp: [expr prop] * 100]
30//
31//===----------------------------------------------------------------------===//
32
33#include "clang/Sema/SemaInternal.h"
Benjamin Kramerf3ca26982014-05-10 16:31:55 +000034#include "clang/AST/ExprCXX.h"
John McCall526ab472011-10-25 17:37:35 +000035#include "clang/AST/ExprObjC.h"
Jordan Rosea7d03842013-02-08 22:30:41 +000036#include "clang/Basic/CharInfo.h"
John McCall526ab472011-10-25 17:37:35 +000037#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000038#include "clang/Sema/Initialization.h"
39#include "clang/Sema/ScopeInfo.h"
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +000040#include "llvm/ADT/SmallString.h"
John McCall526ab472011-10-25 17:37:35 +000041
42using namespace clang;
43using namespace sema;
44
John McCallfe96e0b2011-11-06 09:01:30 +000045namespace {
46 // Basically just a very focused copy of TreeTransform.
Alexey Bataevf7630272015-11-25 12:01:00 +000047 struct Rebuilder {
John McCallfe96e0b2011-11-06 09:01:30 +000048 Sema &S;
Alexey Bataevf7630272015-11-25 12:01:00 +000049 unsigned MSPropertySubscriptCount;
50 typedef llvm::function_ref<Expr *(Expr *, unsigned)> SpecificRebuilderRefTy;
51 const SpecificRebuilderRefTy &SpecificCallback;
52 Rebuilder(Sema &S, const SpecificRebuilderRefTy &SpecificCallback)
53 : S(S), MSPropertySubscriptCount(0),
54 SpecificCallback(SpecificCallback) {}
John McCallfe96e0b2011-11-06 09:01:30 +000055
Alexey Bataevf7630272015-11-25 12:01:00 +000056 Expr *rebuildObjCPropertyRefExpr(ObjCPropertyRefExpr *refExpr) {
57 // Fortunately, the constraint that we're rebuilding something
58 // with a base limits the number of cases here.
59 if (refExpr->isClassReceiver() || refExpr->isSuperReceiver())
60 return refExpr;
61
62 if (refExpr->isExplicitProperty()) {
63 return new (S.Context) ObjCPropertyRefExpr(
64 refExpr->getExplicitProperty(), refExpr->getType(),
65 refExpr->getValueKind(), refExpr->getObjectKind(),
66 refExpr->getLocation(), SpecificCallback(refExpr->getBase(), 0));
67 }
68 return new (S.Context) ObjCPropertyRefExpr(
69 refExpr->getImplicitPropertyGetter(),
70 refExpr->getImplicitPropertySetter(), refExpr->getType(),
71 refExpr->getValueKind(), refExpr->getObjectKind(),
72 refExpr->getLocation(), SpecificCallback(refExpr->getBase(), 0));
73 }
74 Expr *rebuildObjCSubscriptRefExpr(ObjCSubscriptRefExpr *refExpr) {
75 assert(refExpr->getBaseExpr());
76 assert(refExpr->getKeyExpr());
77
78 return new (S.Context) ObjCSubscriptRefExpr(
79 SpecificCallback(refExpr->getBaseExpr(), 0),
80 SpecificCallback(refExpr->getKeyExpr(), 1), refExpr->getType(),
81 refExpr->getValueKind(), refExpr->getObjectKind(),
82 refExpr->getAtIndexMethodDecl(), refExpr->setAtIndexMethodDecl(),
83 refExpr->getRBracket());
84 }
85 Expr *rebuildMSPropertyRefExpr(MSPropertyRefExpr *refExpr) {
86 assert(refExpr->getBaseExpr());
87
88 return new (S.Context) MSPropertyRefExpr(
89 SpecificCallback(refExpr->getBaseExpr(), 0),
90 refExpr->getPropertyDecl(), refExpr->isArrow(), refExpr->getType(),
91 refExpr->getValueKind(), refExpr->getQualifierLoc(),
92 refExpr->getMemberLoc());
93 }
94 Expr *rebuildMSPropertySubscriptExpr(MSPropertySubscriptExpr *refExpr) {
95 assert(refExpr->getBase());
96 assert(refExpr->getIdx());
97
98 auto *NewBase = rebuild(refExpr->getBase());
99 ++MSPropertySubscriptCount;
100 return new (S.Context) MSPropertySubscriptExpr(
101 NewBase,
102 SpecificCallback(refExpr->getIdx(), MSPropertySubscriptCount),
103 refExpr->getType(), refExpr->getValueKind(), refExpr->getObjectKind(),
104 refExpr->getRBracketLoc());
105 }
John McCallfe96e0b2011-11-06 09:01:30 +0000106
107 Expr *rebuild(Expr *e) {
108 // Fast path: nothing to look through.
Alexey Bataevf7630272015-11-25 12:01:00 +0000109 if (auto *PRE = dyn_cast<ObjCPropertyRefExpr>(e))
110 return rebuildObjCPropertyRefExpr(PRE);
111 if (auto *SRE = dyn_cast<ObjCSubscriptRefExpr>(e))
112 return rebuildObjCSubscriptRefExpr(SRE);
113 if (auto *MSPRE = dyn_cast<MSPropertyRefExpr>(e))
114 return rebuildMSPropertyRefExpr(MSPRE);
115 if (auto *MSPSE = dyn_cast<MSPropertySubscriptExpr>(e))
116 return rebuildMSPropertySubscriptExpr(MSPSE);
John McCallfe96e0b2011-11-06 09:01:30 +0000117
118 // Otherwise, we should look through and rebuild anything that
119 // IgnoreParens would.
120
121 if (ParenExpr *parens = dyn_cast<ParenExpr>(e)) {
122 e = rebuild(parens->getSubExpr());
123 return new (S.Context) ParenExpr(parens->getLParen(),
124 parens->getRParen(),
125 e);
126 }
127
128 if (UnaryOperator *uop = dyn_cast<UnaryOperator>(e)) {
129 assert(uop->getOpcode() == UO_Extension);
130 e = rebuild(uop->getSubExpr());
131 return new (S.Context) UnaryOperator(e, uop->getOpcode(),
132 uop->getType(),
133 uop->getValueKind(),
134 uop->getObjectKind(),
135 uop->getOperatorLoc());
136 }
137
138 if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) {
139 assert(!gse->isResultDependent());
140 unsigned resultIndex = gse->getResultIndex();
141 unsigned numAssocs = gse->getNumAssocs();
142
143 SmallVector<Expr*, 8> assocs(numAssocs);
144 SmallVector<TypeSourceInfo*, 8> assocTypes(numAssocs);
145
146 for (unsigned i = 0; i != numAssocs; ++i) {
147 Expr *assoc = gse->getAssocExpr(i);
148 if (i == resultIndex) assoc = rebuild(assoc);
149 assocs[i] = assoc;
150 assocTypes[i] = gse->getAssocTypeSourceInfo(i);
151 }
152
153 return new (S.Context) GenericSelectionExpr(S.Context,
154 gse->getGenericLoc(),
155 gse->getControllingExpr(),
Benjamin Kramerc215e762012-08-24 11:54:20 +0000156 assocTypes,
157 assocs,
John McCallfe96e0b2011-11-06 09:01:30 +0000158 gse->getDefaultLoc(),
159 gse->getRParenLoc(),
160 gse->containsUnexpandedParameterPack(),
161 resultIndex);
162 }
163
Eli Friedman75807f22013-07-20 00:40:58 +0000164 if (ChooseExpr *ce = dyn_cast<ChooseExpr>(e)) {
165 assert(!ce->isConditionDependent());
166
167 Expr *LHS = ce->getLHS(), *RHS = ce->getRHS();
168 Expr *&rebuiltExpr = ce->isConditionTrue() ? LHS : RHS;
169 rebuiltExpr = rebuild(rebuiltExpr);
170
171 return new (S.Context) ChooseExpr(ce->getBuiltinLoc(),
172 ce->getCond(),
173 LHS, RHS,
174 rebuiltExpr->getType(),
175 rebuiltExpr->getValueKind(),
176 rebuiltExpr->getObjectKind(),
177 ce->getRParenLoc(),
178 ce->isConditionTrue(),
179 rebuiltExpr->isTypeDependent(),
180 rebuiltExpr->isValueDependent());
181 }
182
John McCallfe96e0b2011-11-06 09:01:30 +0000183 llvm_unreachable("bad expression to rebuild!");
184 }
185 };
186
John McCallfe96e0b2011-11-06 09:01:30 +0000187 class PseudoOpBuilder {
188 public:
189 Sema &S;
190 unsigned ResultIndex;
191 SourceLocation GenericLoc;
192 SmallVector<Expr *, 4> Semantics;
193
194 PseudoOpBuilder(Sema &S, SourceLocation genericLoc)
195 : S(S), ResultIndex(PseudoObjectExpr::NoResult),
196 GenericLoc(genericLoc) {}
197
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +0000198 virtual ~PseudoOpBuilder() {}
Matt Beaumont-Gayfb3cb9a2011-11-08 01:53:17 +0000199
John McCallfe96e0b2011-11-06 09:01:30 +0000200 /// Add a normal semantic expression.
201 void addSemanticExpr(Expr *semantic) {
202 Semantics.push_back(semantic);
203 }
204
205 /// Add the 'result' semantic expression.
206 void addResultSemanticExpr(Expr *resultExpr) {
207 assert(ResultIndex == PseudoObjectExpr::NoResult);
208 ResultIndex = Semantics.size();
209 Semantics.push_back(resultExpr);
210 }
211
212 ExprResult buildRValueOperation(Expr *op);
213 ExprResult buildAssignmentOperation(Scope *Sc,
214 SourceLocation opLoc,
215 BinaryOperatorKind opcode,
216 Expr *LHS, Expr *RHS);
217 ExprResult buildIncDecOperation(Scope *Sc, SourceLocation opLoc,
218 UnaryOperatorKind opcode,
219 Expr *op);
220
Jordan Rosed3934582012-09-28 22:21:30 +0000221 virtual ExprResult complete(Expr *syntacticForm);
John McCallfe96e0b2011-11-06 09:01:30 +0000222
223 OpaqueValueExpr *capture(Expr *op);
224 OpaqueValueExpr *captureValueAsResult(Expr *op);
225
226 void setResultToLastSemantic() {
227 assert(ResultIndex == PseudoObjectExpr::NoResult);
228 ResultIndex = Semantics.size() - 1;
229 }
230
231 /// Return true if assignments have a non-void result.
Alexey Bataev60520e22015-12-10 04:38:18 +0000232 static bool CanCaptureValue(Expr *exp) {
Fariborz Jahanian15dde892014-03-06 00:34:05 +0000233 if (exp->isGLValue())
234 return true;
235 QualType ty = exp->getType();
Eli Friedman00fa4292012-11-13 23:16:33 +0000236 assert(!ty->isIncompleteType());
237 assert(!ty->isDependentType());
238
239 if (const CXXRecordDecl *ClassDecl = ty->getAsCXXRecordDecl())
240 return ClassDecl->isTriviallyCopyable();
241 return true;
242 }
John McCallfe96e0b2011-11-06 09:01:30 +0000243
244 virtual Expr *rebuildAndCaptureObject(Expr *) = 0;
245 virtual ExprResult buildGet() = 0;
246 virtual ExprResult buildSet(Expr *, SourceLocation,
247 bool captureSetValueAsResult) = 0;
Alexey Bataev60520e22015-12-10 04:38:18 +0000248 /// \brief Should the result of an assignment be the formal result of the
249 /// setter call or the value that was passed to the setter?
250 ///
251 /// Different pseudo-object language features use different language rules
252 /// for this.
253 /// The default is to use the set value. Currently, this affects the
254 /// behavior of simple assignments, compound assignments, and prefix
255 /// increment and decrement.
256 /// Postfix increment and decrement always use the getter result as the
257 /// expression result.
258 ///
259 /// If this method returns true, and the set value isn't capturable for
260 /// some reason, the result of the expression will be void.
261 virtual bool captureSetValueAsResult() const { return true; }
John McCallfe96e0b2011-11-06 09:01:30 +0000262 };
263
Dmitri Gribenko00bcdd32012-09-12 17:01:48 +0000264 /// A PseudoOpBuilder for Objective-C \@properties.
John McCallfe96e0b2011-11-06 09:01:30 +0000265 class ObjCPropertyOpBuilder : public PseudoOpBuilder {
266 ObjCPropertyRefExpr *RefExpr;
Argyrios Kyrtzidisab468b02012-03-30 00:19:18 +0000267 ObjCPropertyRefExpr *SyntacticRefExpr;
John McCallfe96e0b2011-11-06 09:01:30 +0000268 OpaqueValueExpr *InstanceReceiver;
269 ObjCMethodDecl *Getter;
270
271 ObjCMethodDecl *Setter;
272 Selector SetterSelector;
Fariborz Jahanianb525b522012-04-18 19:13:23 +0000273 Selector GetterSelector;
John McCallfe96e0b2011-11-06 09:01:30 +0000274
275 public:
276 ObjCPropertyOpBuilder(Sema &S, ObjCPropertyRefExpr *refExpr) :
277 PseudoOpBuilder(S, refExpr->getLocation()), RefExpr(refExpr),
Craig Topperc3ec1492014-05-26 06:22:03 +0000278 SyntacticRefExpr(nullptr), InstanceReceiver(nullptr), Getter(nullptr),
279 Setter(nullptr) {
John McCallfe96e0b2011-11-06 09:01:30 +0000280 }
281
282 ExprResult buildRValueOperation(Expr *op);
283 ExprResult buildAssignmentOperation(Scope *Sc,
284 SourceLocation opLoc,
285 BinaryOperatorKind opcode,
286 Expr *LHS, Expr *RHS);
287 ExprResult buildIncDecOperation(Scope *Sc, SourceLocation opLoc,
288 UnaryOperatorKind opcode,
289 Expr *op);
290
291 bool tryBuildGetOfReference(Expr *op, ExprResult &result);
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +0000292 bool findSetter(bool warn=true);
John McCallfe96e0b2011-11-06 09:01:30 +0000293 bool findGetter();
Olivier Goffartf6fabcc2014-08-04 17:28:11 +0000294 void DiagnoseUnsupportedPropertyUse();
John McCallfe96e0b2011-11-06 09:01:30 +0000295
Craig Toppere14c0f82014-03-12 04:55:44 +0000296 Expr *rebuildAndCaptureObject(Expr *syntacticBase) override;
297 ExprResult buildGet() override;
298 ExprResult buildSet(Expr *op, SourceLocation, bool) override;
299 ExprResult complete(Expr *SyntacticForm) override;
Jordan Rosed3934582012-09-28 22:21:30 +0000300
301 bool isWeakProperty() const;
John McCallfe96e0b2011-11-06 09:01:30 +0000302 };
Ted Kremeneke65b0862012-03-06 20:05:56 +0000303
304 /// A PseudoOpBuilder for Objective-C array/dictionary indexing.
305 class ObjCSubscriptOpBuilder : public PseudoOpBuilder {
306 ObjCSubscriptRefExpr *RefExpr;
307 OpaqueValueExpr *InstanceBase;
308 OpaqueValueExpr *InstanceKey;
309 ObjCMethodDecl *AtIndexGetter;
310 Selector AtIndexGetterSelector;
311
312 ObjCMethodDecl *AtIndexSetter;
313 Selector AtIndexSetterSelector;
314
315 public:
316 ObjCSubscriptOpBuilder(Sema &S, ObjCSubscriptRefExpr *refExpr) :
317 PseudoOpBuilder(S, refExpr->getSourceRange().getBegin()),
318 RefExpr(refExpr),
Craig Topperc3ec1492014-05-26 06:22:03 +0000319 InstanceBase(nullptr), InstanceKey(nullptr),
320 AtIndexGetter(nullptr), AtIndexSetter(nullptr) {}
321
Ted Kremeneke65b0862012-03-06 20:05:56 +0000322 ExprResult buildRValueOperation(Expr *op);
323 ExprResult buildAssignmentOperation(Scope *Sc,
324 SourceLocation opLoc,
325 BinaryOperatorKind opcode,
326 Expr *LHS, Expr *RHS);
Craig Toppere14c0f82014-03-12 04:55:44 +0000327 Expr *rebuildAndCaptureObject(Expr *syntacticBase) override;
328
Ted Kremeneke65b0862012-03-06 20:05:56 +0000329 bool findAtIndexGetter();
330 bool findAtIndexSetter();
Craig Toppere14c0f82014-03-12 04:55:44 +0000331
332 ExprResult buildGet() override;
333 ExprResult buildSet(Expr *op, SourceLocation, bool) override;
Ted Kremeneke65b0862012-03-06 20:05:56 +0000334 };
335
John McCall5e77d762013-04-16 07:28:30 +0000336 class MSPropertyOpBuilder : public PseudoOpBuilder {
337 MSPropertyRefExpr *RefExpr;
Alexey Bataev69103472015-10-14 04:05:42 +0000338 OpaqueValueExpr *InstanceBase;
Alexey Bataevf7630272015-11-25 12:01:00 +0000339 SmallVector<Expr *, 4> CallArgs;
340
341 MSPropertyRefExpr *getBaseMSProperty(MSPropertySubscriptExpr *E);
John McCall5e77d762013-04-16 07:28:30 +0000342
343 public:
344 MSPropertyOpBuilder(Sema &S, MSPropertyRefExpr *refExpr) :
345 PseudoOpBuilder(S, refExpr->getSourceRange().getBegin()),
Alexey Bataev69103472015-10-14 04:05:42 +0000346 RefExpr(refExpr), InstanceBase(nullptr) {}
Alexey Bataevf7630272015-11-25 12:01:00 +0000347 MSPropertyOpBuilder(Sema &S, MSPropertySubscriptExpr *refExpr)
348 : PseudoOpBuilder(S, refExpr->getSourceRange().getBegin()),
349 InstanceBase(nullptr) {
350 RefExpr = getBaseMSProperty(refExpr);
351 }
John McCall5e77d762013-04-16 07:28:30 +0000352
Craig Toppere14c0f82014-03-12 04:55:44 +0000353 Expr *rebuildAndCaptureObject(Expr *) override;
354 ExprResult buildGet() override;
355 ExprResult buildSet(Expr *op, SourceLocation, bool) override;
Alexey Bataev60520e22015-12-10 04:38:18 +0000356 bool captureSetValueAsResult() const override { return false; }
John McCall5e77d762013-04-16 07:28:30 +0000357 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000358}
John McCallfe96e0b2011-11-06 09:01:30 +0000359
360/// Capture the given expression in an OpaqueValueExpr.
361OpaqueValueExpr *PseudoOpBuilder::capture(Expr *e) {
362 // Make a new OVE whose source is the given expression.
363 OpaqueValueExpr *captured =
364 new (S.Context) OpaqueValueExpr(GenericLoc, e->getType(),
Douglas Gregor2d5aea02012-02-23 22:17:26 +0000365 e->getValueKind(), e->getObjectKind(),
366 e);
John McCallfe96e0b2011-11-06 09:01:30 +0000367
368 // Make sure we bind that in the semantics.
369 addSemanticExpr(captured);
370 return captured;
371}
372
373/// Capture the given expression as the result of this pseudo-object
374/// operation. This routine is safe against expressions which may
375/// already be captured.
376///
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +0000377/// \returns the captured expression, which will be the
John McCallfe96e0b2011-11-06 09:01:30 +0000378/// same as the input if the input was already captured
379OpaqueValueExpr *PseudoOpBuilder::captureValueAsResult(Expr *e) {
380 assert(ResultIndex == PseudoObjectExpr::NoResult);
381
382 // If the expression hasn't already been captured, just capture it
383 // and set the new semantic
384 if (!isa<OpaqueValueExpr>(e)) {
385 OpaqueValueExpr *cap = capture(e);
386 setResultToLastSemantic();
387 return cap;
388 }
389
390 // Otherwise, it must already be one of our semantic expressions;
391 // set ResultIndex to its index.
392 unsigned index = 0;
393 for (;; ++index) {
394 assert(index < Semantics.size() &&
395 "captured expression not found in semantics!");
396 if (e == Semantics[index]) break;
397 }
398 ResultIndex = index;
399 return cast<OpaqueValueExpr>(e);
400}
401
402/// The routine which creates the final PseudoObjectExpr.
403ExprResult PseudoOpBuilder::complete(Expr *syntactic) {
404 return PseudoObjectExpr::Create(S.Context, syntactic,
405 Semantics, ResultIndex);
406}
407
408/// The main skeleton for building an r-value operation.
409ExprResult PseudoOpBuilder::buildRValueOperation(Expr *op) {
410 Expr *syntacticBase = rebuildAndCaptureObject(op);
411
412 ExprResult getExpr = buildGet();
413 if (getExpr.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000414 addResultSemanticExpr(getExpr.get());
John McCallfe96e0b2011-11-06 09:01:30 +0000415
416 return complete(syntacticBase);
417}
418
419/// The basic skeleton for building a simple or compound
420/// assignment operation.
421ExprResult
422PseudoOpBuilder::buildAssignmentOperation(Scope *Sc, SourceLocation opcLoc,
423 BinaryOperatorKind opcode,
424 Expr *LHS, Expr *RHS) {
425 assert(BinaryOperator::isAssignmentOp(opcode));
426
427 Expr *syntacticLHS = rebuildAndCaptureObject(LHS);
428 OpaqueValueExpr *capturedRHS = capture(RHS);
429
John McCallee04aeb2015-08-22 00:35:27 +0000430 // In some very specific cases, semantic analysis of the RHS as an
431 // expression may require it to be rewritten. In these cases, we
432 // cannot safely keep the OVE around. Fortunately, we don't really
433 // need to: we don't use this particular OVE in multiple places, and
434 // no clients rely that closely on matching up expressions in the
435 // semantic expression with expressions from the syntactic form.
436 Expr *semanticRHS = capturedRHS;
437 if (RHS->hasPlaceholderType() || isa<InitListExpr>(RHS)) {
438 semanticRHS = RHS;
439 Semantics.pop_back();
440 }
441
John McCallfe96e0b2011-11-06 09:01:30 +0000442 Expr *syntactic;
443
444 ExprResult result;
445 if (opcode == BO_Assign) {
John McCallee04aeb2015-08-22 00:35:27 +0000446 result = semanticRHS;
John McCallfe96e0b2011-11-06 09:01:30 +0000447 syntactic = new (S.Context) BinaryOperator(syntacticLHS, capturedRHS,
448 opcode, capturedRHS->getType(),
449 capturedRHS->getValueKind(),
Adam Nemet484aa452017-03-27 19:17:25 +0000450 OK_Ordinary, opcLoc,
451 FPOptions());
John McCallfe96e0b2011-11-06 09:01:30 +0000452 } else {
453 ExprResult opLHS = buildGet();
454 if (opLHS.isInvalid()) return ExprError();
455
456 // Build an ordinary, non-compound operation.
457 BinaryOperatorKind nonCompound =
458 BinaryOperator::getOpForCompoundAssignment(opcode);
John McCallee04aeb2015-08-22 00:35:27 +0000459 result = S.BuildBinOp(Sc, opcLoc, nonCompound, opLHS.get(), semanticRHS);
John McCallfe96e0b2011-11-06 09:01:30 +0000460 if (result.isInvalid()) return ExprError();
461
462 syntactic =
463 new (S.Context) CompoundAssignOperator(syntacticLHS, capturedRHS, opcode,
464 result.get()->getType(),
465 result.get()->getValueKind(),
466 OK_Ordinary,
467 opLHS.get()->getType(),
468 result.get()->getType(),
Adam Nemet484aa452017-03-27 19:17:25 +0000469 opcLoc, FPOptions());
John McCallfe96e0b2011-11-06 09:01:30 +0000470 }
471
472 // The result of the assignment, if not void, is the value set into
473 // the l-value.
Alexey Bataev60520e22015-12-10 04:38:18 +0000474 result = buildSet(result.get(), opcLoc, captureSetValueAsResult());
John McCallfe96e0b2011-11-06 09:01:30 +0000475 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000476 addSemanticExpr(result.get());
Alexey Bataev60520e22015-12-10 04:38:18 +0000477 if (!captureSetValueAsResult() && !result.get()->getType()->isVoidType() &&
478 (result.get()->isTypeDependent() || CanCaptureValue(result.get())))
479 setResultToLastSemantic();
John McCallfe96e0b2011-11-06 09:01:30 +0000480
481 return complete(syntactic);
482}
483
484/// The basic skeleton for building an increment or decrement
485/// operation.
486ExprResult
487PseudoOpBuilder::buildIncDecOperation(Scope *Sc, SourceLocation opcLoc,
488 UnaryOperatorKind opcode,
489 Expr *op) {
490 assert(UnaryOperator::isIncrementDecrementOp(opcode));
491
492 Expr *syntacticOp = rebuildAndCaptureObject(op);
493
494 // Load the value.
495 ExprResult result = buildGet();
496 if (result.isInvalid()) return ExprError();
497
498 QualType resultType = result.get()->getType();
499
500 // That's the postfix result.
John McCall0d9dd732013-04-16 22:32:04 +0000501 if (UnaryOperator::isPostfix(opcode) &&
Fariborz Jahanian15dde892014-03-06 00:34:05 +0000502 (result.get()->isTypeDependent() || CanCaptureValue(result.get()))) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000503 result = capture(result.get());
John McCallfe96e0b2011-11-06 09:01:30 +0000504 setResultToLastSemantic();
505 }
506
507 // Add or subtract a literal 1.
508 llvm::APInt oneV(S.Context.getTypeSize(S.Context.IntTy), 1);
509 Expr *one = IntegerLiteral::Create(S.Context, oneV, S.Context.IntTy,
510 GenericLoc);
511
512 if (UnaryOperator::isIncrementOp(opcode)) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000513 result = S.BuildBinOp(Sc, opcLoc, BO_Add, result.get(), one);
John McCallfe96e0b2011-11-06 09:01:30 +0000514 } else {
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000515 result = S.BuildBinOp(Sc, opcLoc, BO_Sub, result.get(), one);
John McCallfe96e0b2011-11-06 09:01:30 +0000516 }
517 if (result.isInvalid()) return ExprError();
518
519 // Store that back into the result. The value stored is the result
520 // of a prefix operation.
Alexey Bataev60520e22015-12-10 04:38:18 +0000521 result = buildSet(result.get(), opcLoc, UnaryOperator::isPrefix(opcode) &&
522 captureSetValueAsResult());
John McCallfe96e0b2011-11-06 09:01:30 +0000523 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000524 addSemanticExpr(result.get());
Alexey Bataev60520e22015-12-10 04:38:18 +0000525 if (UnaryOperator::isPrefix(opcode) && !captureSetValueAsResult() &&
526 !result.get()->getType()->isVoidType() &&
527 (result.get()->isTypeDependent() || CanCaptureValue(result.get())))
528 setResultToLastSemantic();
John McCallfe96e0b2011-11-06 09:01:30 +0000529
530 UnaryOperator *syntactic =
531 new (S.Context) UnaryOperator(syntacticOp, opcode, resultType,
532 VK_LValue, OK_Ordinary, opcLoc);
533 return complete(syntactic);
534}
535
536
537//===----------------------------------------------------------------------===//
538// Objective-C @property and implicit property references
539//===----------------------------------------------------------------------===//
540
541/// Look up a method in the receiver type of an Objective-C property
542/// reference.
John McCall526ab472011-10-25 17:37:35 +0000543static ObjCMethodDecl *LookupMethodInReceiverType(Sema &S, Selector sel,
544 const ObjCPropertyRefExpr *PRE) {
John McCall526ab472011-10-25 17:37:35 +0000545 if (PRE->isObjectReceiver()) {
Benjamin Kramer8dc57602011-10-28 13:21:18 +0000546 const ObjCObjectPointerType *PT =
547 PRE->getBase()->getType()->castAs<ObjCObjectPointerType>();
John McCallfe96e0b2011-11-06 09:01:30 +0000548
549 // Special case for 'self' in class method implementations.
550 if (PT->isObjCClassType() &&
551 S.isSelfExpr(const_cast<Expr*>(PRE->getBase()))) {
552 // This cast is safe because isSelfExpr is only true within
553 // methods.
554 ObjCMethodDecl *method =
555 cast<ObjCMethodDecl>(S.CurContext->getNonClosureAncestor());
556 return S.LookupMethodInObjectType(sel,
557 S.Context.getObjCInterfaceType(method->getClassInterface()),
558 /*instance*/ false);
559 }
560
Benjamin Kramer8dc57602011-10-28 13:21:18 +0000561 return S.LookupMethodInObjectType(sel, PT->getPointeeType(), true);
John McCall526ab472011-10-25 17:37:35 +0000562 }
563
Benjamin Kramer8dc57602011-10-28 13:21:18 +0000564 if (PRE->isSuperReceiver()) {
565 if (const ObjCObjectPointerType *PT =
566 PRE->getSuperReceiverType()->getAs<ObjCObjectPointerType>())
567 return S.LookupMethodInObjectType(sel, PT->getPointeeType(), true);
568
569 return S.LookupMethodInObjectType(sel, PRE->getSuperReceiverType(), false);
570 }
571
572 assert(PRE->isClassReceiver() && "Invalid expression");
573 QualType IT = S.Context.getObjCInterfaceType(PRE->getClassReceiver());
574 return S.LookupMethodInObjectType(sel, IT, false);
John McCall526ab472011-10-25 17:37:35 +0000575}
576
Jordan Rosed3934582012-09-28 22:21:30 +0000577bool ObjCPropertyOpBuilder::isWeakProperty() const {
578 QualType T;
579 if (RefExpr->isExplicitProperty()) {
580 const ObjCPropertyDecl *Prop = RefExpr->getExplicitProperty();
581 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
Bob Wilsonf4f54e32016-05-25 05:41:57 +0000582 return true;
Jordan Rosed3934582012-09-28 22:21:30 +0000583
584 T = Prop->getType();
585 } else if (Getter) {
Alp Toker314cc812014-01-25 16:55:45 +0000586 T = Getter->getReturnType();
Jordan Rosed3934582012-09-28 22:21:30 +0000587 } else {
588 return false;
589 }
590
591 return T.getObjCLifetime() == Qualifiers::OCL_Weak;
592}
593
John McCallfe96e0b2011-11-06 09:01:30 +0000594bool ObjCPropertyOpBuilder::findGetter() {
595 if (Getter) return true;
John McCall526ab472011-10-25 17:37:35 +0000596
John McCallcfef5462011-11-07 22:49:50 +0000597 // For implicit properties, just trust the lookup we already did.
598 if (RefExpr->isImplicitProperty()) {
Fariborz Jahanianb525b522012-04-18 19:13:23 +0000599 if ((Getter = RefExpr->getImplicitPropertyGetter())) {
600 GetterSelector = Getter->getSelector();
601 return true;
602 }
603 else {
604 // Must build the getter selector the hard way.
605 ObjCMethodDecl *setter = RefExpr->getImplicitPropertySetter();
606 assert(setter && "both setter and getter are null - cannot happen");
607 IdentifierInfo *setterName =
608 setter->getSelector().getIdentifierInfoForSlot(0);
Alp Toker541d5072014-06-07 23:30:53 +0000609 IdentifierInfo *getterName =
610 &S.Context.Idents.get(setterName->getName().substr(3));
Fariborz Jahanianb525b522012-04-18 19:13:23 +0000611 GetterSelector =
612 S.PP.getSelectorTable().getNullarySelector(getterName);
613 return false;
Fariborz Jahanianb525b522012-04-18 19:13:23 +0000614 }
John McCallcfef5462011-11-07 22:49:50 +0000615 }
616
617 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty();
618 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr);
Craig Topperc3ec1492014-05-26 06:22:03 +0000619 return (Getter != nullptr);
John McCallfe96e0b2011-11-06 09:01:30 +0000620}
621
622/// Try to find the most accurate setter declaration for the property
623/// reference.
624///
625/// \return true if a setter was found, in which case Setter
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +0000626bool ObjCPropertyOpBuilder::findSetter(bool warn) {
John McCallfe96e0b2011-11-06 09:01:30 +0000627 // For implicit properties, just trust the lookup we already did.
628 if (RefExpr->isImplicitProperty()) {
629 if (ObjCMethodDecl *setter = RefExpr->getImplicitPropertySetter()) {
630 Setter = setter;
631 SetterSelector = setter->getSelector();
632 return true;
John McCall526ab472011-10-25 17:37:35 +0000633 } else {
John McCallfe96e0b2011-11-06 09:01:30 +0000634 IdentifierInfo *getterName =
635 RefExpr->getImplicitPropertyGetter()->getSelector()
636 .getIdentifierInfoForSlot(0);
637 SetterSelector =
Adrian Prantla4ce9062013-06-07 22:29:12 +0000638 SelectorTable::constructSetterSelector(S.PP.getIdentifierTable(),
639 S.PP.getSelectorTable(),
640 getterName);
John McCallfe96e0b2011-11-06 09:01:30 +0000641 return false;
John McCall526ab472011-10-25 17:37:35 +0000642 }
John McCallfe96e0b2011-11-06 09:01:30 +0000643 }
644
645 // For explicit properties, this is more involved.
646 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty();
647 SetterSelector = prop->getSetterName();
648
649 // Do a normal method lookup first.
650 if (ObjCMethodDecl *setter =
651 LookupMethodInReceiverType(S, SetterSelector, RefExpr)) {
Jordan Rosed01e83a2012-10-10 16:42:25 +0000652 if (setter->isPropertyAccessor() && warn)
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +0000653 if (const ObjCInterfaceDecl *IFace =
654 dyn_cast<ObjCInterfaceDecl>(setter->getDeclContext())) {
Craig Topperbf3e3272014-08-30 16:55:52 +0000655 StringRef thisPropertyName = prop->getName();
Jordan Rosea7d03842013-02-08 22:30:41 +0000656 // Try flipping the case of the first character.
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +0000657 char front = thisPropertyName.front();
Jordan Rosea7d03842013-02-08 22:30:41 +0000658 front = isLowercase(front) ? toUppercase(front) : toLowercase(front);
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +0000659 SmallString<100> PropertyName = thisPropertyName;
660 PropertyName[0] = front;
661 IdentifierInfo *AltMember = &S.PP.getIdentifierTable().get(PropertyName);
Manman Ren5b786402016-01-28 18:49:28 +0000662 if (ObjCPropertyDecl *prop1 = IFace->FindPropertyDeclaration(
663 AltMember, prop->getQueryKind()))
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +0000664 if (prop != prop1 && (prop1->getSetterMethodDecl() == setter)) {
Richard Smithf8812672016-12-02 22:38:31 +0000665 S.Diag(RefExpr->getExprLoc(), diag::err_property_setter_ambiguous_use)
Aaron Ballman1fb39552014-01-03 14:23:03 +0000666 << prop << prop1 << setter->getSelector();
Fariborz Jahanian3f88afa2012-05-24 22:48:38 +0000667 S.Diag(prop->getLocation(), diag::note_property_declare);
668 S.Diag(prop1->getLocation(), diag::note_property_declare);
669 }
670 }
John McCallfe96e0b2011-11-06 09:01:30 +0000671 Setter = setter;
672 return true;
673 }
674
675 // That can fail in the somewhat crazy situation that we're
676 // type-checking a message send within the @interface declaration
677 // that declared the @property. But it's not clear that that's
678 // valuable to support.
679
680 return false;
681}
682
Olivier Goffartf6fabcc2014-08-04 17:28:11 +0000683void ObjCPropertyOpBuilder::DiagnoseUnsupportedPropertyUse() {
Fariborz Jahanian55513282014-05-28 18:12:10 +0000684 if (S.getCurLexicalContext()->isObjCContainer() &&
685 S.getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl &&
686 S.getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation) {
687 if (ObjCPropertyDecl *prop = RefExpr->getExplicitProperty()) {
688 S.Diag(RefExpr->getLocation(),
689 diag::err_property_function_in_objc_container);
690 S.Diag(prop->getLocation(), diag::note_property_declare);
Fariborz Jahanian55513282014-05-28 18:12:10 +0000691 }
692 }
Fariborz Jahanian55513282014-05-28 18:12:10 +0000693}
694
John McCallfe96e0b2011-11-06 09:01:30 +0000695/// Capture the base object of an Objective-C property expression.
696Expr *ObjCPropertyOpBuilder::rebuildAndCaptureObject(Expr *syntacticBase) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000697 assert(InstanceReceiver == nullptr);
John McCallfe96e0b2011-11-06 09:01:30 +0000698
699 // If we have a base, capture it in an OVE and rebuild the syntactic
700 // form to use the OVE as its base.
701 if (RefExpr->isObjectReceiver()) {
702 InstanceReceiver = capture(RefExpr->getBase());
Alexey Bataevf7630272015-11-25 12:01:00 +0000703 syntacticBase = Rebuilder(S, [=](Expr *, unsigned) -> Expr * {
704 return InstanceReceiver;
705 }).rebuild(syntacticBase);
John McCallfe96e0b2011-11-06 09:01:30 +0000706 }
707
Argyrios Kyrtzidisab468b02012-03-30 00:19:18 +0000708 if (ObjCPropertyRefExpr *
709 refE = dyn_cast<ObjCPropertyRefExpr>(syntacticBase->IgnoreParens()))
710 SyntacticRefExpr = refE;
711
John McCallfe96e0b2011-11-06 09:01:30 +0000712 return syntacticBase;
713}
714
715/// Load from an Objective-C property reference.
716ExprResult ObjCPropertyOpBuilder::buildGet() {
717 findGetter();
Olivier Goffartf6fabcc2014-08-04 17:28:11 +0000718 if (!Getter) {
719 DiagnoseUnsupportedPropertyUse();
720 return ExprError();
721 }
Argyrios Kyrtzidisab468b02012-03-30 00:19:18 +0000722
723 if (SyntacticRefExpr)
724 SyntacticRefExpr->setIsMessagingGetter();
725
Douglas Gregore83b9562015-07-07 03:57:53 +0000726 QualType receiverType = RefExpr->getReceiverType(S.Context);
Fariborz Jahanian89ea9612014-06-16 17:25:41 +0000727 if (!Getter->isImplicit())
728 S.DiagnoseUseOfDecl(Getter, GenericLoc, nullptr, true);
John McCallfe96e0b2011-11-06 09:01:30 +0000729 // Build a message-send.
730 ExprResult msg;
Fariborz Jahanian29cdbc62014-04-21 20:22:17 +0000731 if ((Getter->isInstanceMethod() && !RefExpr->isClassReceiver()) ||
732 RefExpr->isObjectReceiver()) {
John McCallfe96e0b2011-11-06 09:01:30 +0000733 assert(InstanceReceiver || RefExpr->isSuperReceiver());
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +0000734 msg = S.BuildInstanceMessageImplicit(InstanceReceiver, receiverType,
735 GenericLoc, Getter->getSelector(),
Dmitri Gribenko78852e92013-05-05 20:40:26 +0000736 Getter, None);
John McCallfe96e0b2011-11-06 09:01:30 +0000737 } else {
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +0000738 msg = S.BuildClassMessageImplicit(receiverType, RefExpr->isSuperReceiver(),
Dmitri Gribenko78852e92013-05-05 20:40:26 +0000739 GenericLoc, Getter->getSelector(),
740 Getter, None);
John McCallfe96e0b2011-11-06 09:01:30 +0000741 }
742 return msg;
743}
John McCall526ab472011-10-25 17:37:35 +0000744
John McCallfe96e0b2011-11-06 09:01:30 +0000745/// Store to an Objective-C property reference.
746///
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +0000747/// \param captureSetValueAsResult If true, capture the actual
John McCallfe96e0b2011-11-06 09:01:30 +0000748/// value being set as the value of the property operation.
749ExprResult ObjCPropertyOpBuilder::buildSet(Expr *op, SourceLocation opcLoc,
750 bool captureSetValueAsResult) {
Olivier Goffartf6fabcc2014-08-04 17:28:11 +0000751 if (!findSetter(false)) {
752 DiagnoseUnsupportedPropertyUse();
753 return ExprError();
754 }
John McCallfe96e0b2011-11-06 09:01:30 +0000755
Argyrios Kyrtzidisab468b02012-03-30 00:19:18 +0000756 if (SyntacticRefExpr)
757 SyntacticRefExpr->setIsMessagingSetter();
758
Douglas Gregore83b9562015-07-07 03:57:53 +0000759 QualType receiverType = RefExpr->getReceiverType(S.Context);
John McCallfe96e0b2011-11-06 09:01:30 +0000760
761 // Use assignment constraints when possible; they give us better
762 // diagnostics. "When possible" basically means anything except a
763 // C++ class type.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000764 if (!S.getLangOpts().CPlusPlus || !op->getType()->isRecordType()) {
Douglas Gregore83b9562015-07-07 03:57:53 +0000765 QualType paramType = (*Setter->param_begin())->getType()
766 .substObjCMemberType(
767 receiverType,
768 Setter->getDeclContext(),
769 ObjCSubstitutionContext::Parameter);
David Blaikiebbafb8a2012-03-11 07:00:24 +0000770 if (!S.getLangOpts().CPlusPlus || !paramType->isRecordType()) {
John McCallfe96e0b2011-11-06 09:01:30 +0000771 ExprResult opResult = op;
772 Sema::AssignConvertType assignResult
773 = S.CheckSingleAssignmentConstraints(paramType, opResult);
Richard Smithe15a3702016-10-06 23:12:58 +0000774 if (opResult.isInvalid() ||
775 S.DiagnoseAssignmentResult(assignResult, opcLoc, paramType,
John McCallfe96e0b2011-11-06 09:01:30 +0000776 op->getType(), opResult.get(),
777 Sema::AA_Assigning))
778 return ExprError();
779
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000780 op = opResult.get();
John McCallfe96e0b2011-11-06 09:01:30 +0000781 assert(op && "successful assignment left argument invalid?");
John McCall526ab472011-10-25 17:37:35 +0000782 }
783 }
784
John McCallfe96e0b2011-11-06 09:01:30 +0000785 // Arguments.
786 Expr *args[] = { op };
John McCall526ab472011-10-25 17:37:35 +0000787
John McCallfe96e0b2011-11-06 09:01:30 +0000788 // Build a message-send.
789 ExprResult msg;
Fariborz Jahanian89ea9612014-06-16 17:25:41 +0000790 if (!Setter->isImplicit())
791 S.DiagnoseUseOfDecl(Setter, GenericLoc, nullptr, true);
Fariborz Jahanian29cdbc62014-04-21 20:22:17 +0000792 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) ||
793 RefExpr->isObjectReceiver()) {
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +0000794 msg = S.BuildInstanceMessageImplicit(InstanceReceiver, receiverType,
795 GenericLoc, SetterSelector, Setter,
796 MultiExprArg(args, 1));
John McCallfe96e0b2011-11-06 09:01:30 +0000797 } else {
Argyrios Kyrtzidisa80f1bf2012-01-12 02:34:39 +0000798 msg = S.BuildClassMessageImplicit(receiverType, RefExpr->isSuperReceiver(),
799 GenericLoc,
800 SetterSelector, Setter,
801 MultiExprArg(args, 1));
John McCallfe96e0b2011-11-06 09:01:30 +0000802 }
803
804 if (!msg.isInvalid() && captureSetValueAsResult) {
805 ObjCMessageExpr *msgExpr =
806 cast<ObjCMessageExpr>(msg.get()->IgnoreImplicit());
807 Expr *arg = msgExpr->getArg(0);
Fariborz Jahanian15dde892014-03-06 00:34:05 +0000808 if (CanCaptureValue(arg))
Eli Friedman00fa4292012-11-13 23:16:33 +0000809 msgExpr->setArg(0, captureValueAsResult(arg));
John McCallfe96e0b2011-11-06 09:01:30 +0000810 }
811
812 return msg;
John McCall526ab472011-10-25 17:37:35 +0000813}
814
John McCallfe96e0b2011-11-06 09:01:30 +0000815/// @property-specific behavior for doing lvalue-to-rvalue conversion.
816ExprResult ObjCPropertyOpBuilder::buildRValueOperation(Expr *op) {
817 // Explicit properties always have getters, but implicit ones don't.
818 // Check that before proceeding.
Eli Friedmanfd41aee2012-11-29 03:13:49 +0000819 if (RefExpr->isImplicitProperty() && !RefExpr->getImplicitPropertyGetter()) {
John McCallfe96e0b2011-11-06 09:01:30 +0000820 S.Diag(RefExpr->getLocation(), diag::err_getter_not_found)
Eli Friedmanfd41aee2012-11-29 03:13:49 +0000821 << RefExpr->getSourceRange();
John McCall526ab472011-10-25 17:37:35 +0000822 return ExprError();
823 }
824
John McCallfe96e0b2011-11-06 09:01:30 +0000825 ExprResult result = PseudoOpBuilder::buildRValueOperation(op);
John McCall526ab472011-10-25 17:37:35 +0000826 if (result.isInvalid()) return ExprError();
827
John McCallfe96e0b2011-11-06 09:01:30 +0000828 if (RefExpr->isExplicitProperty() && !Getter->hasRelatedResultType())
829 S.DiagnosePropertyAccessorMismatch(RefExpr->getExplicitProperty(),
830 Getter, RefExpr->getLocation());
831
832 // As a special case, if the method returns 'id', try to get
833 // a better type from the property.
Fariborz Jahanian9277ff42014-06-17 23:35:13 +0000834 if (RefExpr->isExplicitProperty() && result.get()->isRValue()) {
Douglas Gregore83b9562015-07-07 03:57:53 +0000835 QualType receiverType = RefExpr->getReceiverType(S.Context);
836 QualType propType = RefExpr->getExplicitProperty()
837 ->getUsageType(receiverType);
Fariborz Jahanian9277ff42014-06-17 23:35:13 +0000838 if (result.get()->getType()->isObjCIdType()) {
839 if (const ObjCObjectPointerType *ptr
840 = propType->getAs<ObjCObjectPointerType>()) {
841 if (!ptr->isObjCIdType())
842 result = S.ImpCastExprToType(result.get(), propType, CK_BitCast);
843 }
844 }
Brian Kelleycafd9122017-03-29 17:55:11 +0000845 if (propType.getObjCLifetime() == Qualifiers::OCL_Weak &&
846 !S.Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
847 RefExpr->getLocation()))
848 S.getCurFunction()->markSafeWeakUse(RefExpr);
John McCallfe96e0b2011-11-06 09:01:30 +0000849 }
850
John McCall526ab472011-10-25 17:37:35 +0000851 return result;
852}
853
John McCallfe96e0b2011-11-06 09:01:30 +0000854/// Try to build this as a call to a getter that returns a reference.
855///
856/// \return true if it was possible, whether or not it actually
857/// succeeded
858bool ObjCPropertyOpBuilder::tryBuildGetOfReference(Expr *op,
859 ExprResult &result) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000860 if (!S.getLangOpts().CPlusPlus) return false;
John McCallfe96e0b2011-11-06 09:01:30 +0000861
862 findGetter();
Olivier Goffart4c182c82014-08-04 17:28:05 +0000863 if (!Getter) {
864 // The property has no setter and no getter! This can happen if the type is
865 // invalid. Error have already been reported.
866 result = ExprError();
867 return true;
868 }
John McCallfe96e0b2011-11-06 09:01:30 +0000869
870 // Only do this if the getter returns an l-value reference type.
Alp Toker314cc812014-01-25 16:55:45 +0000871 QualType resultType = Getter->getReturnType();
John McCallfe96e0b2011-11-06 09:01:30 +0000872 if (!resultType->isLValueReferenceType()) return false;
873
874 result = buildRValueOperation(op);
875 return true;
876}
877
878/// @property-specific behavior for doing assignments.
879ExprResult
880ObjCPropertyOpBuilder::buildAssignmentOperation(Scope *Sc,
881 SourceLocation opcLoc,
882 BinaryOperatorKind opcode,
883 Expr *LHS, Expr *RHS) {
John McCall526ab472011-10-25 17:37:35 +0000884 assert(BinaryOperator::isAssignmentOp(opcode));
John McCall526ab472011-10-25 17:37:35 +0000885
886 // If there's no setter, we have no choice but to try to assign to
887 // the result of the getter.
John McCallfe96e0b2011-11-06 09:01:30 +0000888 if (!findSetter()) {
889 ExprResult result;
890 if (tryBuildGetOfReference(LHS, result)) {
891 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000892 return S.BuildBinOp(Sc, opcLoc, opcode, result.get(), RHS);
John McCall526ab472011-10-25 17:37:35 +0000893 }
894
895 // Otherwise, it's an error.
John McCallfe96e0b2011-11-06 09:01:30 +0000896 S.Diag(opcLoc, diag::err_nosetter_property_assignment)
897 << unsigned(RefExpr->isImplicitProperty())
898 << SetterSelector
John McCall526ab472011-10-25 17:37:35 +0000899 << LHS->getSourceRange() << RHS->getSourceRange();
900 return ExprError();
901 }
902
903 // If there is a setter, we definitely want to use it.
904
John McCallfe96e0b2011-11-06 09:01:30 +0000905 // Verify that we can do a compound assignment.
906 if (opcode != BO_Assign && !findGetter()) {
907 S.Diag(opcLoc, diag::err_nogetter_property_compound_assignment)
John McCall526ab472011-10-25 17:37:35 +0000908 << LHS->getSourceRange() << RHS->getSourceRange();
909 return ExprError();
910 }
911
John McCallfe96e0b2011-11-06 09:01:30 +0000912 ExprResult result =
913 PseudoOpBuilder::buildAssignmentOperation(Sc, opcLoc, opcode, LHS, RHS);
John McCall526ab472011-10-25 17:37:35 +0000914 if (result.isInvalid()) return ExprError();
915
John McCallfe96e0b2011-11-06 09:01:30 +0000916 // Various warnings about property assignments in ARC.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000917 if (S.getLangOpts().ObjCAutoRefCount && InstanceReceiver) {
John McCallfe96e0b2011-11-06 09:01:30 +0000918 S.checkRetainCycles(InstanceReceiver->getSourceExpr(), RHS);
919 S.checkUnsafeExprAssigns(opcLoc, LHS, RHS);
920 }
921
John McCall526ab472011-10-25 17:37:35 +0000922 return result;
923}
John McCallfe96e0b2011-11-06 09:01:30 +0000924
925/// @property-specific behavior for doing increments and decrements.
926ExprResult
927ObjCPropertyOpBuilder::buildIncDecOperation(Scope *Sc, SourceLocation opcLoc,
928 UnaryOperatorKind opcode,
929 Expr *op) {
930 // If there's no setter, we have no choice but to try to assign to
931 // the result of the getter.
932 if (!findSetter()) {
933 ExprResult result;
934 if (tryBuildGetOfReference(op, result)) {
935 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000936 return S.BuildUnaryOp(Sc, opcLoc, opcode, result.get());
John McCallfe96e0b2011-11-06 09:01:30 +0000937 }
938
939 // Otherwise, it's an error.
940 S.Diag(opcLoc, diag::err_nosetter_property_incdec)
941 << unsigned(RefExpr->isImplicitProperty())
942 << unsigned(UnaryOperator::isDecrementOp(opcode))
943 << SetterSelector
944 << op->getSourceRange();
945 return ExprError();
946 }
947
948 // If there is a setter, we definitely want to use it.
949
950 // We also need a getter.
951 if (!findGetter()) {
952 assert(RefExpr->isImplicitProperty());
953 S.Diag(opcLoc, diag::err_nogetter_property_incdec)
954 << unsigned(UnaryOperator::isDecrementOp(opcode))
Fariborz Jahanianb525b522012-04-18 19:13:23 +0000955 << GetterSelector
John McCallfe96e0b2011-11-06 09:01:30 +0000956 << op->getSourceRange();
957 return ExprError();
958 }
959
960 return PseudoOpBuilder::buildIncDecOperation(Sc, opcLoc, opcode, op);
961}
962
Jordan Rosed3934582012-09-28 22:21:30 +0000963ExprResult ObjCPropertyOpBuilder::complete(Expr *SyntacticForm) {
Brian Kelleycafd9122017-03-29 17:55:11 +0000964 if (isWeakProperty() &&
Alp Tokerd4a3f0e2014-06-15 23:30:39 +0000965 !S.Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
966 SyntacticForm->getLocStart()))
Brian Kelleycafd9122017-03-29 17:55:11 +0000967 S.recordUseOfEvaluatedWeak(SyntacticRefExpr,
968 SyntacticRefExpr->isMessagingGetter());
Jordan Rosed3934582012-09-28 22:21:30 +0000969
970 return PseudoOpBuilder::complete(SyntacticForm);
971}
972
Ted Kremeneke65b0862012-03-06 20:05:56 +0000973// ObjCSubscript build stuff.
974//
975
976/// objective-c subscripting-specific behavior for doing lvalue-to-rvalue
977/// conversion.
978/// FIXME. Remove this routine if it is proven that no additional
979/// specifity is needed.
980ExprResult ObjCSubscriptOpBuilder::buildRValueOperation(Expr *op) {
981 ExprResult result = PseudoOpBuilder::buildRValueOperation(op);
982 if (result.isInvalid()) return ExprError();
983 return result;
984}
985
986/// objective-c subscripting-specific behavior for doing assignments.
987ExprResult
988ObjCSubscriptOpBuilder::buildAssignmentOperation(Scope *Sc,
989 SourceLocation opcLoc,
990 BinaryOperatorKind opcode,
991 Expr *LHS, Expr *RHS) {
992 assert(BinaryOperator::isAssignmentOp(opcode));
993 // There must be a method to do the Index'ed assignment.
994 if (!findAtIndexSetter())
995 return ExprError();
996
997 // Verify that we can do a compound assignment.
998 if (opcode != BO_Assign && !findAtIndexGetter())
999 return ExprError();
1000
1001 ExprResult result =
1002 PseudoOpBuilder::buildAssignmentOperation(Sc, opcLoc, opcode, LHS, RHS);
1003 if (result.isInvalid()) return ExprError();
1004
1005 // Various warnings about objc Index'ed assignments in ARC.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001006 if (S.getLangOpts().ObjCAutoRefCount && InstanceBase) {
Ted Kremeneke65b0862012-03-06 20:05:56 +00001007 S.checkRetainCycles(InstanceBase->getSourceExpr(), RHS);
1008 S.checkUnsafeExprAssigns(opcLoc, LHS, RHS);
1009 }
1010
1011 return result;
1012}
1013
1014/// Capture the base object of an Objective-C Index'ed expression.
1015Expr *ObjCSubscriptOpBuilder::rebuildAndCaptureObject(Expr *syntacticBase) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001016 assert(InstanceBase == nullptr);
1017
Ted Kremeneke65b0862012-03-06 20:05:56 +00001018 // Capture base expression in an OVE and rebuild the syntactic
1019 // form to use the OVE as its base expression.
1020 InstanceBase = capture(RefExpr->getBaseExpr());
1021 InstanceKey = capture(RefExpr->getKeyExpr());
Alexey Bataevf7630272015-11-25 12:01:00 +00001022
Ted Kremeneke65b0862012-03-06 20:05:56 +00001023 syntacticBase =
Alexey Bataevf7630272015-11-25 12:01:00 +00001024 Rebuilder(S, [=](Expr *, unsigned Idx) -> Expr * {
1025 switch (Idx) {
1026 case 0:
1027 return InstanceBase;
1028 case 1:
1029 return InstanceKey;
1030 default:
1031 llvm_unreachable("Unexpected index for ObjCSubscriptExpr");
1032 }
1033 }).rebuild(syntacticBase);
1034
Ted Kremeneke65b0862012-03-06 20:05:56 +00001035 return syntacticBase;
1036}
1037
1038/// CheckSubscriptingKind - This routine decide what type
1039/// of indexing represented by "FromE" is being done.
1040Sema::ObjCSubscriptKind
1041 Sema::CheckSubscriptingKind(Expr *FromE) {
1042 // If the expression already has integral or enumeration type, we're golden.
1043 QualType T = FromE->getType();
1044 if (T->isIntegralOrEnumerationType())
1045 return OS_Array;
1046
1047 // If we don't have a class type in C++, there's no way we can get an
1048 // expression of integral or enumeration type.
1049 const RecordType *RecordTy = T->getAs<RecordType>();
Fariborz Jahaniand13951f2014-09-10 20:55:31 +00001050 if (!RecordTy &&
1051 (T->isObjCObjectPointerType() || T->isVoidPointerType()))
Ted Kremeneke65b0862012-03-06 20:05:56 +00001052 // All other scalar cases are assumed to be dictionary indexing which
1053 // caller handles, with diagnostics if needed.
1054 return OS_Dictionary;
Fariborz Jahanianba0afde2012-03-28 17:56:49 +00001055 if (!getLangOpts().CPlusPlus ||
1056 !RecordTy || RecordTy->isIncompleteType()) {
Ted Kremeneke65b0862012-03-06 20:05:56 +00001057 // No indexing can be done. Issue diagnostics and quit.
Fariborz Jahanianba0afde2012-03-28 17:56:49 +00001058 const Expr *IndexExpr = FromE->IgnoreParenImpCasts();
1059 if (isa<StringLiteral>(IndexExpr))
1060 Diag(FromE->getExprLoc(), diag::err_objc_subscript_pointer)
1061 << T << FixItHint::CreateInsertion(FromE->getExprLoc(), "@");
1062 else
1063 Diag(FromE->getExprLoc(), diag::err_objc_subscript_type_conversion)
1064 << T;
Ted Kremeneke65b0862012-03-06 20:05:56 +00001065 return OS_Error;
1066 }
1067
1068 // We must have a complete class type.
1069 if (RequireCompleteType(FromE->getExprLoc(), T,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001070 diag::err_objc_index_incomplete_class_type, FromE))
Ted Kremeneke65b0862012-03-06 20:05:56 +00001071 return OS_Error;
1072
1073 // Look for a conversion to an integral, enumeration type, or
1074 // objective-C pointer type.
Ted Kremeneke65b0862012-03-06 20:05:56 +00001075 int NoIntegrals=0, NoObjCIdPointers=0;
1076 SmallVector<CXXConversionDecl *, 4> ConversionDecls;
Benjamin Kramerb4ef6682015-02-06 17:25:10 +00001077
1078 for (NamedDecl *D : cast<CXXRecordDecl>(RecordTy->getDecl())
1079 ->getVisibleConversionFunctions()) {
1080 if (CXXConversionDecl *Conversion =
1081 dyn_cast<CXXConversionDecl>(D->getUnderlyingDecl())) {
Ted Kremeneke65b0862012-03-06 20:05:56 +00001082 QualType CT = Conversion->getConversionType().getNonReferenceType();
1083 if (CT->isIntegralOrEnumerationType()) {
1084 ++NoIntegrals;
1085 ConversionDecls.push_back(Conversion);
1086 }
1087 else if (CT->isObjCIdType() ||CT->isBlockPointerType()) {
1088 ++NoObjCIdPointers;
1089 ConversionDecls.push_back(Conversion);
1090 }
1091 }
1092 }
1093 if (NoIntegrals ==1 && NoObjCIdPointers == 0)
1094 return OS_Array;
1095 if (NoIntegrals == 0 && NoObjCIdPointers == 1)
1096 return OS_Dictionary;
1097 if (NoIntegrals == 0 && NoObjCIdPointers == 0) {
1098 // No conversion function was found. Issue diagnostic and return.
1099 Diag(FromE->getExprLoc(), diag::err_objc_subscript_type_conversion)
1100 << FromE->getType();
1101 return OS_Error;
1102 }
1103 Diag(FromE->getExprLoc(), diag::err_objc_multiple_subscript_type_conversion)
1104 << FromE->getType();
1105 for (unsigned int i = 0; i < ConversionDecls.size(); i++)
Richard Smith01d96982016-12-02 23:00:28 +00001106 Diag(ConversionDecls[i]->getLocation(),
1107 diag::note_conv_function_declared_at);
1108
Ted Kremeneke65b0862012-03-06 20:05:56 +00001109 return OS_Error;
1110}
1111
Fariborz Jahanian90804912012-08-02 18:03:58 +00001112/// CheckKeyForObjCARCConversion - This routine suggests bridge casting of CF
1113/// objects used as dictionary subscript key objects.
1114static void CheckKeyForObjCARCConversion(Sema &S, QualType ContainerT,
1115 Expr *Key) {
1116 if (ContainerT.isNull())
1117 return;
1118 // dictionary subscripting.
1119 // - (id)objectForKeyedSubscript:(id)key;
1120 IdentifierInfo *KeyIdents[] = {
1121 &S.Context.Idents.get("objectForKeyedSubscript")
1122 };
1123 Selector GetterSelector = S.Context.Selectors.getSelector(1, KeyIdents);
1124 ObjCMethodDecl *Getter = S.LookupMethodInObjectType(GetterSelector, ContainerT,
1125 true /*instance*/);
1126 if (!Getter)
1127 return;
Alp Toker03376dc2014-07-07 09:02:20 +00001128 QualType T = Getter->parameters()[0]->getType();
Brian Kelley11352a82017-03-29 18:09:02 +00001129 S.CheckObjCConversion(Key->getSourceRange(), T, Key,
1130 Sema::CCK_ImplicitConversion);
Fariborz Jahanian90804912012-08-02 18:03:58 +00001131}
1132
Ted Kremeneke65b0862012-03-06 20:05:56 +00001133bool ObjCSubscriptOpBuilder::findAtIndexGetter() {
1134 if (AtIndexGetter)
1135 return true;
1136
1137 Expr *BaseExpr = RefExpr->getBaseExpr();
1138 QualType BaseT = BaseExpr->getType();
1139
1140 QualType ResultType;
1141 if (const ObjCObjectPointerType *PTy =
1142 BaseT->getAs<ObjCObjectPointerType>()) {
1143 ResultType = PTy->getPointeeType();
Ted Kremeneke65b0862012-03-06 20:05:56 +00001144 }
1145 Sema::ObjCSubscriptKind Res =
1146 S.CheckSubscriptingKind(RefExpr->getKeyExpr());
Fariborz Jahanian90804912012-08-02 18:03:58 +00001147 if (Res == Sema::OS_Error) {
1148 if (S.getLangOpts().ObjCAutoRefCount)
1149 CheckKeyForObjCARCConversion(S, ResultType,
1150 RefExpr->getKeyExpr());
Ted Kremeneke65b0862012-03-06 20:05:56 +00001151 return false;
Fariborz Jahanian90804912012-08-02 18:03:58 +00001152 }
Ted Kremeneke65b0862012-03-06 20:05:56 +00001153 bool arrayRef = (Res == Sema::OS_Array);
1154
1155 if (ResultType.isNull()) {
1156 S.Diag(BaseExpr->getExprLoc(), diag::err_objc_subscript_base_type)
1157 << BaseExpr->getType() << arrayRef;
1158 return false;
1159 }
1160 if (!arrayRef) {
1161 // dictionary subscripting.
1162 // - (id)objectForKeyedSubscript:(id)key;
1163 IdentifierInfo *KeyIdents[] = {
1164 &S.Context.Idents.get("objectForKeyedSubscript")
1165 };
1166 AtIndexGetterSelector = S.Context.Selectors.getSelector(1, KeyIdents);
1167 }
1168 else {
1169 // - (id)objectAtIndexedSubscript:(size_t)index;
1170 IdentifierInfo *KeyIdents[] = {
1171 &S.Context.Idents.get("objectAtIndexedSubscript")
1172 };
1173
1174 AtIndexGetterSelector = S.Context.Selectors.getSelector(1, KeyIdents);
1175 }
1176
1177 AtIndexGetter = S.LookupMethodInObjectType(AtIndexGetterSelector, ResultType,
1178 true /*instance*/);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001179
David Blaikiebbafb8a2012-03-11 07:00:24 +00001180 if (!AtIndexGetter && S.getLangOpts().DebuggerObjCLiteral) {
Ted Kremeneke65b0862012-03-06 20:05:56 +00001181 AtIndexGetter = ObjCMethodDecl::Create(S.Context, SourceLocation(),
1182 SourceLocation(), AtIndexGetterSelector,
1183 S.Context.getObjCIdType() /*ReturnType*/,
Craig Topperc3ec1492014-05-26 06:22:03 +00001184 nullptr /*TypeSourceInfo */,
Ted Kremeneke65b0862012-03-06 20:05:56 +00001185 S.Context.getTranslationUnitDecl(),
1186 true /*Instance*/, false/*isVariadic*/,
Jordan Rosed01e83a2012-10-10 16:42:25 +00001187 /*isPropertyAccessor=*/false,
Ted Kremeneke65b0862012-03-06 20:05:56 +00001188 /*isImplicitlyDeclared=*/true, /*isDefined=*/false,
1189 ObjCMethodDecl::Required,
1190 false);
1191 ParmVarDecl *Argument = ParmVarDecl::Create(S.Context, AtIndexGetter,
1192 SourceLocation(), SourceLocation(),
1193 arrayRef ? &S.Context.Idents.get("index")
1194 : &S.Context.Idents.get("key"),
1195 arrayRef ? S.Context.UnsignedLongTy
1196 : S.Context.getObjCIdType(),
Craig Topperc3ec1492014-05-26 06:22:03 +00001197 /*TInfo=*/nullptr,
Ted Kremeneke65b0862012-03-06 20:05:56 +00001198 SC_None,
Craig Topperc3ec1492014-05-26 06:22:03 +00001199 nullptr);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00001200 AtIndexGetter->setMethodParams(S.Context, Argument, None);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001201 }
1202
1203 if (!AtIndexGetter) {
Alex Lorenz4b9f80c2017-07-11 10:18:35 +00001204 if (!BaseT->isObjCIdType()) {
Ted Kremeneke65b0862012-03-06 20:05:56 +00001205 S.Diag(BaseExpr->getExprLoc(), diag::err_objc_subscript_method_not_found)
1206 << BaseExpr->getType() << 0 << arrayRef;
1207 return false;
1208 }
1209 AtIndexGetter =
1210 S.LookupInstanceMethodInGlobalPool(AtIndexGetterSelector,
1211 RefExpr->getSourceRange(),
Fariborz Jahanian890803f2015-04-15 17:26:21 +00001212 true);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001213 }
1214
1215 if (AtIndexGetter) {
Alp Toker03376dc2014-07-07 09:02:20 +00001216 QualType T = AtIndexGetter->parameters()[0]->getType();
Ted Kremeneke65b0862012-03-06 20:05:56 +00001217 if ((arrayRef && !T->isIntegralOrEnumerationType()) ||
1218 (!arrayRef && !T->isObjCObjectPointerType())) {
1219 S.Diag(RefExpr->getKeyExpr()->getExprLoc(),
1220 arrayRef ? diag::err_objc_subscript_index_type
1221 : diag::err_objc_subscript_key_type) << T;
Alp Toker03376dc2014-07-07 09:02:20 +00001222 S.Diag(AtIndexGetter->parameters()[0]->getLocation(),
Ted Kremeneke65b0862012-03-06 20:05:56 +00001223 diag::note_parameter_type) << T;
1224 return false;
1225 }
Alp Toker314cc812014-01-25 16:55:45 +00001226 QualType R = AtIndexGetter->getReturnType();
Ted Kremeneke65b0862012-03-06 20:05:56 +00001227 if (!R->isObjCObjectPointerType()) {
1228 S.Diag(RefExpr->getKeyExpr()->getExprLoc(),
1229 diag::err_objc_indexing_method_result_type) << R << arrayRef;
1230 S.Diag(AtIndexGetter->getLocation(), diag::note_method_declared_at) <<
1231 AtIndexGetter->getDeclName();
1232 }
1233 }
1234 return true;
1235}
1236
1237bool ObjCSubscriptOpBuilder::findAtIndexSetter() {
1238 if (AtIndexSetter)
1239 return true;
1240
1241 Expr *BaseExpr = RefExpr->getBaseExpr();
1242 QualType BaseT = BaseExpr->getType();
1243
1244 QualType ResultType;
1245 if (const ObjCObjectPointerType *PTy =
1246 BaseT->getAs<ObjCObjectPointerType>()) {
1247 ResultType = PTy->getPointeeType();
Ted Kremeneke65b0862012-03-06 20:05:56 +00001248 }
1249
1250 Sema::ObjCSubscriptKind Res =
1251 S.CheckSubscriptingKind(RefExpr->getKeyExpr());
Fariborz Jahanian90804912012-08-02 18:03:58 +00001252 if (Res == Sema::OS_Error) {
1253 if (S.getLangOpts().ObjCAutoRefCount)
1254 CheckKeyForObjCARCConversion(S, ResultType,
1255 RefExpr->getKeyExpr());
Ted Kremeneke65b0862012-03-06 20:05:56 +00001256 return false;
Fariborz Jahanian90804912012-08-02 18:03:58 +00001257 }
Ted Kremeneke65b0862012-03-06 20:05:56 +00001258 bool arrayRef = (Res == Sema::OS_Array);
1259
1260 if (ResultType.isNull()) {
1261 S.Diag(BaseExpr->getExprLoc(), diag::err_objc_subscript_base_type)
1262 << BaseExpr->getType() << arrayRef;
1263 return false;
1264 }
1265
1266 if (!arrayRef) {
1267 // dictionary subscripting.
1268 // - (void)setObject:(id)object forKeyedSubscript:(id)key;
1269 IdentifierInfo *KeyIdents[] = {
1270 &S.Context.Idents.get("setObject"),
1271 &S.Context.Idents.get("forKeyedSubscript")
1272 };
1273 AtIndexSetterSelector = S.Context.Selectors.getSelector(2, KeyIdents);
1274 }
1275 else {
1276 // - (void)setObject:(id)object atIndexedSubscript:(NSInteger)index;
1277 IdentifierInfo *KeyIdents[] = {
1278 &S.Context.Idents.get("setObject"),
1279 &S.Context.Idents.get("atIndexedSubscript")
1280 };
1281 AtIndexSetterSelector = S.Context.Selectors.getSelector(2, KeyIdents);
1282 }
1283 AtIndexSetter = S.LookupMethodInObjectType(AtIndexSetterSelector, ResultType,
1284 true /*instance*/);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001285
David Blaikiebbafb8a2012-03-11 07:00:24 +00001286 if (!AtIndexSetter && S.getLangOpts().DebuggerObjCLiteral) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001287 TypeSourceInfo *ReturnTInfo = nullptr;
Ted Kremeneke65b0862012-03-06 20:05:56 +00001288 QualType ReturnType = S.Context.VoidTy;
Alp Toker314cc812014-01-25 16:55:45 +00001289 AtIndexSetter = ObjCMethodDecl::Create(
1290 S.Context, SourceLocation(), SourceLocation(), AtIndexSetterSelector,
1291 ReturnType, ReturnTInfo, S.Context.getTranslationUnitDecl(),
1292 true /*Instance*/, false /*isVariadic*/,
1293 /*isPropertyAccessor=*/false,
1294 /*isImplicitlyDeclared=*/true, /*isDefined=*/false,
1295 ObjCMethodDecl::Required, false);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001296 SmallVector<ParmVarDecl *, 2> Params;
1297 ParmVarDecl *object = ParmVarDecl::Create(S.Context, AtIndexSetter,
1298 SourceLocation(), SourceLocation(),
1299 &S.Context.Idents.get("object"),
1300 S.Context.getObjCIdType(),
Craig Topperc3ec1492014-05-26 06:22:03 +00001301 /*TInfo=*/nullptr,
Ted Kremeneke65b0862012-03-06 20:05:56 +00001302 SC_None,
Craig Topperc3ec1492014-05-26 06:22:03 +00001303 nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001304 Params.push_back(object);
1305 ParmVarDecl *key = ParmVarDecl::Create(S.Context, AtIndexSetter,
1306 SourceLocation(), SourceLocation(),
1307 arrayRef ? &S.Context.Idents.get("index")
1308 : &S.Context.Idents.get("key"),
1309 arrayRef ? S.Context.UnsignedLongTy
1310 : S.Context.getObjCIdType(),
Craig Topperc3ec1492014-05-26 06:22:03 +00001311 /*TInfo=*/nullptr,
Ted Kremeneke65b0862012-03-06 20:05:56 +00001312 SC_None,
Craig Topperc3ec1492014-05-26 06:22:03 +00001313 nullptr);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001314 Params.push_back(key);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00001315 AtIndexSetter->setMethodParams(S.Context, Params, None);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001316 }
1317
1318 if (!AtIndexSetter) {
Alex Lorenz4b9f80c2017-07-11 10:18:35 +00001319 if (!BaseT->isObjCIdType()) {
Ted Kremeneke65b0862012-03-06 20:05:56 +00001320 S.Diag(BaseExpr->getExprLoc(),
1321 diag::err_objc_subscript_method_not_found)
1322 << BaseExpr->getType() << 1 << arrayRef;
1323 return false;
1324 }
1325 AtIndexSetter =
1326 S.LookupInstanceMethodInGlobalPool(AtIndexSetterSelector,
1327 RefExpr->getSourceRange(),
Fariborz Jahanian890803f2015-04-15 17:26:21 +00001328 true);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001329 }
1330
1331 bool err = false;
1332 if (AtIndexSetter && arrayRef) {
Alp Toker03376dc2014-07-07 09:02:20 +00001333 QualType T = AtIndexSetter->parameters()[1]->getType();
Ted Kremeneke65b0862012-03-06 20:05:56 +00001334 if (!T->isIntegralOrEnumerationType()) {
1335 S.Diag(RefExpr->getKeyExpr()->getExprLoc(),
1336 diag::err_objc_subscript_index_type) << T;
Alp Toker03376dc2014-07-07 09:02:20 +00001337 S.Diag(AtIndexSetter->parameters()[1]->getLocation(),
Ted Kremeneke65b0862012-03-06 20:05:56 +00001338 diag::note_parameter_type) << T;
1339 err = true;
1340 }
Alp Toker03376dc2014-07-07 09:02:20 +00001341 T = AtIndexSetter->parameters()[0]->getType();
Ted Kremeneke65b0862012-03-06 20:05:56 +00001342 if (!T->isObjCObjectPointerType()) {
1343 S.Diag(RefExpr->getBaseExpr()->getExprLoc(),
1344 diag::err_objc_subscript_object_type) << T << arrayRef;
Alp Toker03376dc2014-07-07 09:02:20 +00001345 S.Diag(AtIndexSetter->parameters()[0]->getLocation(),
Ted Kremeneke65b0862012-03-06 20:05:56 +00001346 diag::note_parameter_type) << T;
1347 err = true;
1348 }
1349 }
1350 else if (AtIndexSetter && !arrayRef)
1351 for (unsigned i=0; i <2; i++) {
Alp Toker03376dc2014-07-07 09:02:20 +00001352 QualType T = AtIndexSetter->parameters()[i]->getType();
Ted Kremeneke65b0862012-03-06 20:05:56 +00001353 if (!T->isObjCObjectPointerType()) {
1354 if (i == 1)
1355 S.Diag(RefExpr->getKeyExpr()->getExprLoc(),
1356 diag::err_objc_subscript_key_type) << T;
1357 else
1358 S.Diag(RefExpr->getBaseExpr()->getExprLoc(),
1359 diag::err_objc_subscript_dic_object_type) << T;
Alp Toker03376dc2014-07-07 09:02:20 +00001360 S.Diag(AtIndexSetter->parameters()[i]->getLocation(),
Ted Kremeneke65b0862012-03-06 20:05:56 +00001361 diag::note_parameter_type) << T;
1362 err = true;
1363 }
1364 }
1365
1366 return !err;
1367}
1368
1369// Get the object at "Index" position in the container.
1370// [BaseExpr objectAtIndexedSubscript : IndexExpr];
1371ExprResult ObjCSubscriptOpBuilder::buildGet() {
1372 if (!findAtIndexGetter())
1373 return ExprError();
1374
1375 QualType receiverType = InstanceBase->getType();
1376
1377 // Build a message-send.
1378 ExprResult msg;
1379 Expr *Index = InstanceKey;
1380
1381 // Arguments.
1382 Expr *args[] = { Index };
1383 assert(InstanceBase);
Fariborz Jahanian3d576402014-06-10 19:02:48 +00001384 if (AtIndexGetter)
1385 S.DiagnoseUseOfDecl(AtIndexGetter, GenericLoc);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001386 msg = S.BuildInstanceMessageImplicit(InstanceBase, receiverType,
1387 GenericLoc,
1388 AtIndexGetterSelector, AtIndexGetter,
1389 MultiExprArg(args, 1));
1390 return msg;
1391}
1392
1393/// Store into the container the "op" object at "Index"'ed location
1394/// by building this messaging expression:
1395/// - (void)setObject:(id)object atIndexedSubscript:(NSInteger)index;
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +00001396/// \param captureSetValueAsResult If true, capture the actual
Ted Kremeneke65b0862012-03-06 20:05:56 +00001397/// value being set as the value of the property operation.
1398ExprResult ObjCSubscriptOpBuilder::buildSet(Expr *op, SourceLocation opcLoc,
1399 bool captureSetValueAsResult) {
1400 if (!findAtIndexSetter())
1401 return ExprError();
Fariborz Jahanian3d576402014-06-10 19:02:48 +00001402 if (AtIndexSetter)
1403 S.DiagnoseUseOfDecl(AtIndexSetter, GenericLoc);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001404 QualType receiverType = InstanceBase->getType();
1405 Expr *Index = InstanceKey;
1406
1407 // Arguments.
1408 Expr *args[] = { op, Index };
1409
1410 // Build a message-send.
1411 ExprResult msg = S.BuildInstanceMessageImplicit(InstanceBase, receiverType,
1412 GenericLoc,
1413 AtIndexSetterSelector,
1414 AtIndexSetter,
1415 MultiExprArg(args, 2));
1416
1417 if (!msg.isInvalid() && captureSetValueAsResult) {
1418 ObjCMessageExpr *msgExpr =
1419 cast<ObjCMessageExpr>(msg.get()->IgnoreImplicit());
1420 Expr *arg = msgExpr->getArg(0);
Fariborz Jahanian15dde892014-03-06 00:34:05 +00001421 if (CanCaptureValue(arg))
Eli Friedman00fa4292012-11-13 23:16:33 +00001422 msgExpr->setArg(0, captureValueAsResult(arg));
Ted Kremeneke65b0862012-03-06 20:05:56 +00001423 }
1424
1425 return msg;
1426}
1427
John McCallfe96e0b2011-11-06 09:01:30 +00001428//===----------------------------------------------------------------------===//
John McCall5e77d762013-04-16 07:28:30 +00001429// MSVC __declspec(property) references
1430//===----------------------------------------------------------------------===//
1431
Alexey Bataevf7630272015-11-25 12:01:00 +00001432MSPropertyRefExpr *
1433MSPropertyOpBuilder::getBaseMSProperty(MSPropertySubscriptExpr *E) {
1434 CallArgs.insert(CallArgs.begin(), E->getIdx());
1435 Expr *Base = E->getBase()->IgnoreParens();
1436 while (auto *MSPropSubscript = dyn_cast<MSPropertySubscriptExpr>(Base)) {
1437 CallArgs.insert(CallArgs.begin(), MSPropSubscript->getIdx());
1438 Base = MSPropSubscript->getBase()->IgnoreParens();
1439 }
1440 return cast<MSPropertyRefExpr>(Base);
1441}
1442
John McCall5e77d762013-04-16 07:28:30 +00001443Expr *MSPropertyOpBuilder::rebuildAndCaptureObject(Expr *syntacticBase) {
Alexey Bataev69103472015-10-14 04:05:42 +00001444 InstanceBase = capture(RefExpr->getBaseExpr());
Alexey Bataevf7630272015-11-25 12:01:00 +00001445 std::for_each(CallArgs.begin(), CallArgs.end(),
1446 [this](Expr *&Arg) { Arg = capture(Arg); });
1447 syntacticBase = Rebuilder(S, [=](Expr *, unsigned Idx) -> Expr * {
1448 switch (Idx) {
1449 case 0:
1450 return InstanceBase;
1451 default:
1452 assert(Idx <= CallArgs.size());
1453 return CallArgs[Idx - 1];
1454 }
1455 }).rebuild(syntacticBase);
John McCall5e77d762013-04-16 07:28:30 +00001456
1457 return syntacticBase;
1458}
1459
1460ExprResult MSPropertyOpBuilder::buildGet() {
1461 if (!RefExpr->getPropertyDecl()->hasGetter()) {
Aaron Ballman213cf412013-12-26 16:35:04 +00001462 S.Diag(RefExpr->getMemberLoc(), diag::err_no_accessor_for_property)
Aaron Ballman1bda4592014-01-03 01:09:27 +00001463 << 0 /* getter */ << RefExpr->getPropertyDecl();
John McCall5e77d762013-04-16 07:28:30 +00001464 return ExprError();
1465 }
1466
1467 UnqualifiedId GetterName;
1468 IdentifierInfo *II = RefExpr->getPropertyDecl()->getGetterId();
1469 GetterName.setIdentifier(II, RefExpr->getMemberLoc());
1470 CXXScopeSpec SS;
1471 SS.Adopt(RefExpr->getQualifierLoc());
Alexey Bataev69103472015-10-14 04:05:42 +00001472 ExprResult GetterExpr =
1473 S.ActOnMemberAccessExpr(S.getCurScope(), InstanceBase, SourceLocation(),
1474 RefExpr->isArrow() ? tok::arrow : tok::period, SS,
1475 SourceLocation(), GetterName, nullptr);
John McCall5e77d762013-04-16 07:28:30 +00001476 if (GetterExpr.isInvalid()) {
Aaron Ballman9e35bfe2013-12-26 15:46:38 +00001477 S.Diag(RefExpr->getMemberLoc(),
Richard Smithf8812672016-12-02 22:38:31 +00001478 diag::err_cannot_find_suitable_accessor) << 0 /* getter */
Aaron Ballman1bda4592014-01-03 01:09:27 +00001479 << RefExpr->getPropertyDecl();
John McCall5e77d762013-04-16 07:28:30 +00001480 return ExprError();
1481 }
1482
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001483 return S.ActOnCallExpr(S.getCurScope(), GetterExpr.get(),
Alexey Bataevf7630272015-11-25 12:01:00 +00001484 RefExpr->getSourceRange().getBegin(), CallArgs,
John McCall5e77d762013-04-16 07:28:30 +00001485 RefExpr->getSourceRange().getEnd());
1486}
1487
1488ExprResult MSPropertyOpBuilder::buildSet(Expr *op, SourceLocation sl,
1489 bool captureSetValueAsResult) {
1490 if (!RefExpr->getPropertyDecl()->hasSetter()) {
Aaron Ballman213cf412013-12-26 16:35:04 +00001491 S.Diag(RefExpr->getMemberLoc(), diag::err_no_accessor_for_property)
Aaron Ballman1bda4592014-01-03 01:09:27 +00001492 << 1 /* setter */ << RefExpr->getPropertyDecl();
John McCall5e77d762013-04-16 07:28:30 +00001493 return ExprError();
1494 }
1495
1496 UnqualifiedId SetterName;
1497 IdentifierInfo *II = RefExpr->getPropertyDecl()->getSetterId();
1498 SetterName.setIdentifier(II, RefExpr->getMemberLoc());
1499 CXXScopeSpec SS;
1500 SS.Adopt(RefExpr->getQualifierLoc());
Alexey Bataev69103472015-10-14 04:05:42 +00001501 ExprResult SetterExpr =
1502 S.ActOnMemberAccessExpr(S.getCurScope(), InstanceBase, SourceLocation(),
1503 RefExpr->isArrow() ? tok::arrow : tok::period, SS,
1504 SourceLocation(), SetterName, nullptr);
John McCall5e77d762013-04-16 07:28:30 +00001505 if (SetterExpr.isInvalid()) {
Aaron Ballman9e35bfe2013-12-26 15:46:38 +00001506 S.Diag(RefExpr->getMemberLoc(),
Richard Smithf8812672016-12-02 22:38:31 +00001507 diag::err_cannot_find_suitable_accessor) << 1 /* setter */
Aaron Ballman1bda4592014-01-03 01:09:27 +00001508 << RefExpr->getPropertyDecl();
John McCall5e77d762013-04-16 07:28:30 +00001509 return ExprError();
1510 }
1511
Alexey Bataevf7630272015-11-25 12:01:00 +00001512 SmallVector<Expr*, 4> ArgExprs;
1513 ArgExprs.append(CallArgs.begin(), CallArgs.end());
John McCall5e77d762013-04-16 07:28:30 +00001514 ArgExprs.push_back(op);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001515 return S.ActOnCallExpr(S.getCurScope(), SetterExpr.get(),
John McCall5e77d762013-04-16 07:28:30 +00001516 RefExpr->getSourceRange().getBegin(), ArgExprs,
1517 op->getSourceRange().getEnd());
1518}
1519
1520//===----------------------------------------------------------------------===//
John McCallfe96e0b2011-11-06 09:01:30 +00001521// General Sema routines.
1522//===----------------------------------------------------------------------===//
1523
1524ExprResult Sema::checkPseudoObjectRValue(Expr *E) {
1525 Expr *opaqueRef = E->IgnoreParens();
1526 if (ObjCPropertyRefExpr *refExpr
1527 = dyn_cast<ObjCPropertyRefExpr>(opaqueRef)) {
1528 ObjCPropertyOpBuilder builder(*this, refExpr);
1529 return builder.buildRValueOperation(E);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001530 }
1531 else if (ObjCSubscriptRefExpr *refExpr
1532 = dyn_cast<ObjCSubscriptRefExpr>(opaqueRef)) {
1533 ObjCSubscriptOpBuilder builder(*this, refExpr);
1534 return builder.buildRValueOperation(E);
John McCall5e77d762013-04-16 07:28:30 +00001535 } else if (MSPropertyRefExpr *refExpr
1536 = dyn_cast<MSPropertyRefExpr>(opaqueRef)) {
1537 MSPropertyOpBuilder builder(*this, refExpr);
1538 return builder.buildRValueOperation(E);
Alexey Bataevf7630272015-11-25 12:01:00 +00001539 } else if (MSPropertySubscriptExpr *RefExpr =
1540 dyn_cast<MSPropertySubscriptExpr>(opaqueRef)) {
1541 MSPropertyOpBuilder Builder(*this, RefExpr);
1542 return Builder.buildRValueOperation(E);
John McCallfe96e0b2011-11-06 09:01:30 +00001543 } else {
1544 llvm_unreachable("unknown pseudo-object kind!");
1545 }
1546}
1547
1548/// Check an increment or decrement of a pseudo-object expression.
1549ExprResult Sema::checkPseudoObjectIncDec(Scope *Sc, SourceLocation opcLoc,
1550 UnaryOperatorKind opcode, Expr *op) {
1551 // Do nothing if the operand is dependent.
1552 if (op->isTypeDependent())
1553 return new (Context) UnaryOperator(op, opcode, Context.DependentTy,
1554 VK_RValue, OK_Ordinary, opcLoc);
1555
1556 assert(UnaryOperator::isIncrementDecrementOp(opcode));
1557 Expr *opaqueRef = op->IgnoreParens();
1558 if (ObjCPropertyRefExpr *refExpr
1559 = dyn_cast<ObjCPropertyRefExpr>(opaqueRef)) {
1560 ObjCPropertyOpBuilder builder(*this, refExpr);
1561 return builder.buildIncDecOperation(Sc, opcLoc, opcode, op);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001562 } else if (isa<ObjCSubscriptRefExpr>(opaqueRef)) {
1563 Diag(opcLoc, diag::err_illegal_container_subscripting_op);
1564 return ExprError();
John McCall5e77d762013-04-16 07:28:30 +00001565 } else if (MSPropertyRefExpr *refExpr
1566 = dyn_cast<MSPropertyRefExpr>(opaqueRef)) {
1567 MSPropertyOpBuilder builder(*this, refExpr);
1568 return builder.buildIncDecOperation(Sc, opcLoc, opcode, op);
Alexey Bataevf7630272015-11-25 12:01:00 +00001569 } else if (MSPropertySubscriptExpr *RefExpr
1570 = dyn_cast<MSPropertySubscriptExpr>(opaqueRef)) {
1571 MSPropertyOpBuilder Builder(*this, RefExpr);
1572 return Builder.buildIncDecOperation(Sc, opcLoc, opcode, op);
John McCallfe96e0b2011-11-06 09:01:30 +00001573 } else {
1574 llvm_unreachable("unknown pseudo-object kind!");
1575 }
1576}
1577
1578ExprResult Sema::checkPseudoObjectAssignment(Scope *S, SourceLocation opcLoc,
1579 BinaryOperatorKind opcode,
1580 Expr *LHS, Expr *RHS) {
1581 // Do nothing if either argument is dependent.
1582 if (LHS->isTypeDependent() || RHS->isTypeDependent())
1583 return new (Context) BinaryOperator(LHS, RHS, opcode, Context.DependentTy,
Adam Nemet484aa452017-03-27 19:17:25 +00001584 VK_RValue, OK_Ordinary, opcLoc,
1585 FPOptions());
John McCallfe96e0b2011-11-06 09:01:30 +00001586
1587 // Filter out non-overload placeholder types in the RHS.
John McCalld5c98ae2011-11-15 01:35:18 +00001588 if (RHS->getType()->isNonOverloadPlaceholderType()) {
1589 ExprResult result = CheckPlaceholderExpr(RHS);
1590 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001591 RHS = result.get();
John McCallfe96e0b2011-11-06 09:01:30 +00001592 }
1593
1594 Expr *opaqueRef = LHS->IgnoreParens();
1595 if (ObjCPropertyRefExpr *refExpr
1596 = dyn_cast<ObjCPropertyRefExpr>(opaqueRef)) {
1597 ObjCPropertyOpBuilder builder(*this, refExpr);
1598 return builder.buildAssignmentOperation(S, opcLoc, opcode, LHS, RHS);
Ted Kremeneke65b0862012-03-06 20:05:56 +00001599 } else if (ObjCSubscriptRefExpr *refExpr
1600 = dyn_cast<ObjCSubscriptRefExpr>(opaqueRef)) {
1601 ObjCSubscriptOpBuilder builder(*this, refExpr);
1602 return builder.buildAssignmentOperation(S, opcLoc, opcode, LHS, RHS);
John McCall5e77d762013-04-16 07:28:30 +00001603 } else if (MSPropertyRefExpr *refExpr
1604 = dyn_cast<MSPropertyRefExpr>(opaqueRef)) {
Alexey Bataevf7630272015-11-25 12:01:00 +00001605 MSPropertyOpBuilder builder(*this, refExpr);
1606 return builder.buildAssignmentOperation(S, opcLoc, opcode, LHS, RHS);
1607 } else if (MSPropertySubscriptExpr *RefExpr
1608 = dyn_cast<MSPropertySubscriptExpr>(opaqueRef)) {
1609 MSPropertyOpBuilder Builder(*this, RefExpr);
1610 return Builder.buildAssignmentOperation(S, opcLoc, opcode, LHS, RHS);
John McCallfe96e0b2011-11-06 09:01:30 +00001611 } else {
1612 llvm_unreachable("unknown pseudo-object kind!");
1613 }
1614}
John McCalle9290822011-11-30 04:42:31 +00001615
1616/// Given a pseudo-object reference, rebuild it without the opaque
1617/// values. Basically, undo the behavior of rebuildAndCaptureObject.
1618/// This should never operate in-place.
1619static Expr *stripOpaqueValuesFromPseudoObjectRef(Sema &S, Expr *E) {
Alexey Bataevf7630272015-11-25 12:01:00 +00001620 return Rebuilder(S,
1621 [=](Expr *E, unsigned) -> Expr * {
1622 return cast<OpaqueValueExpr>(E)->getSourceExpr();
1623 })
1624 .rebuild(E);
John McCalle9290822011-11-30 04:42:31 +00001625}
1626
1627/// Given a pseudo-object expression, recreate what it looks like
1628/// syntactically without the attendant OpaqueValueExprs.
1629///
1630/// This is a hack which should be removed when TreeTransform is
1631/// capable of rebuilding a tree without stripping implicit
1632/// operations.
1633Expr *Sema::recreateSyntacticForm(PseudoObjectExpr *E) {
1634 Expr *syntax = E->getSyntacticForm();
1635 if (UnaryOperator *uop = dyn_cast<UnaryOperator>(syntax)) {
1636 Expr *op = stripOpaqueValuesFromPseudoObjectRef(*this, uop->getSubExpr());
1637 return new (Context) UnaryOperator(op, uop->getOpcode(), uop->getType(),
1638 uop->getValueKind(), uop->getObjectKind(),
1639 uop->getOperatorLoc());
1640 } else if (CompoundAssignOperator *cop
1641 = dyn_cast<CompoundAssignOperator>(syntax)) {
1642 Expr *lhs = stripOpaqueValuesFromPseudoObjectRef(*this, cop->getLHS());
1643 Expr *rhs = cast<OpaqueValueExpr>(cop->getRHS())->getSourceExpr();
1644 return new (Context) CompoundAssignOperator(lhs, rhs, cop->getOpcode(),
1645 cop->getType(),
1646 cop->getValueKind(),
1647 cop->getObjectKind(),
1648 cop->getComputationLHSType(),
1649 cop->getComputationResultType(),
Adam Nemet484aa452017-03-27 19:17:25 +00001650 cop->getOperatorLoc(),
1651 FPOptions());
John McCalle9290822011-11-30 04:42:31 +00001652 } else if (BinaryOperator *bop = dyn_cast<BinaryOperator>(syntax)) {
1653 Expr *lhs = stripOpaqueValuesFromPseudoObjectRef(*this, bop->getLHS());
1654 Expr *rhs = cast<OpaqueValueExpr>(bop->getRHS())->getSourceExpr();
1655 return new (Context) BinaryOperator(lhs, rhs, bop->getOpcode(),
1656 bop->getType(), bop->getValueKind(),
1657 bop->getObjectKind(),
Adam Nemet484aa452017-03-27 19:17:25 +00001658 bop->getOperatorLoc(), FPOptions());
John McCalle9290822011-11-30 04:42:31 +00001659 } else {
1660 assert(syntax->hasPlaceholderType(BuiltinType::PseudoObject));
1661 return stripOpaqueValuesFromPseudoObjectRef(*this, syntax);
1662 }
1663}