blob: ba5970038d748ebd004bd354505a5fde0d4f08d1 [file] [log] [blame]
Sebastian Redlf9463102010-06-28 15:09:07 +00001//===--- ExprClassification.cpp - Expression AST Node Implementation ------===//
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 Expr::classify.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruth8337ba62010-06-29 00:23:11 +000014#include "llvm/Support/ErrorHandling.h"
Sebastian Redlf9463102010-06-28 15:09:07 +000015#include "clang/AST/Expr.h"
16#include "clang/AST/ExprCXX.h"
17#include "clang/AST/ExprObjC.h"
18#include "clang/AST/ASTContext.h"
19#include "clang/AST/DeclObjC.h"
20#include "clang/AST/DeclCXX.h"
21#include "clang/AST/DeclTemplate.h"
22using namespace clang;
23
24typedef Expr::Classification Cl;
25
26static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E);
27static Cl::Kinds ClassifyDecl(ASTContext &Ctx, const Decl *D);
28static Cl::Kinds ClassifyUnnamed(ASTContext &Ctx, QualType T);
29static Cl::Kinds ClassifyMemberExpr(ASTContext &Ctx, const MemberExpr *E);
30static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E);
31static Cl::Kinds ClassifyConditional(ASTContext &Ctx,
32 const ConditionalOperator *E);
33static Cl::ModifiableType IsModifiable(ASTContext &Ctx, const Expr *E,
34 Cl::Kinds Kind, SourceLocation &Loc);
35
John McCall8d69a212010-11-15 23:31:06 +000036static Cl::Kinds ClassifyExprValueKind(const LangOptions &Lang,
37 const Expr *E,
38 ExprValueKind Kind) {
39 switch (Kind) {
40 case VK_RValue:
41 return Lang.CPlusPlus && E->getType()->isRecordType() ?
42 Cl::CL_ClassTemporary : Cl::CL_PRValue;
43 case VK_LValue:
44 return Cl::CL_LValue;
45 case VK_XValue:
46 return Cl::CL_XValue;
47 }
48 llvm_unreachable("Invalid value category of implicit cast.");
49 return Cl::CL_PRValue;
50}
51
Sebastian Redlf9463102010-06-28 15:09:07 +000052Cl Expr::ClassifyImpl(ASTContext &Ctx, SourceLocation *Loc) const {
53 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
54
55 Cl::Kinds kind = ClassifyInternal(Ctx, this);
56 // C99 6.3.2.1: An lvalue is an expression with an object type or an
57 // incomplete type other than void.
58 if (!Ctx.getLangOptions().CPlusPlus) {
59 // Thus, no functions.
60 if (TR->isFunctionType() || TR == Ctx.OverloadTy)
61 kind = Cl::CL_Function;
62 // No void either, but qualified void is OK because it is "other than void".
63 else if (TR->isVoidType() && !Ctx.getCanonicalType(TR).hasQualifiers())
64 kind = Cl::CL_Void;
65 }
66
John McCall4bc41ae2010-11-18 19:01:18 +000067#if 0
68 // Enable this assertion for testing.
69 switch (kind) {
70 case Cl::CL_LValue: assert(getValueKind() == VK_LValue); break;
71 case Cl::CL_XValue: assert(getValueKind() == VK_XValue); break;
72 case Cl::CL_Function:
73 case Cl::CL_Void:
74 case Cl::CL_DuplicateVectorComponents:
75 case Cl::CL_MemberFunction:
76 case Cl::CL_SubObjCPropertySetting:
77 case Cl::CL_ClassTemporary:
78 case Cl::CL_PRValue: assert(getValueKind() == VK_RValue); break;
79 }
80#endif
81
Sebastian Redlf9463102010-06-28 15:09:07 +000082 Cl::ModifiableType modifiable = Cl::CM_Untested;
83 if (Loc)
84 modifiable = IsModifiable(Ctx, this, kind, *Loc);
85 return Classification(kind, modifiable);
86}
87
88static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E) {
89 // This function takes the first stab at classifying expressions.
90 const LangOptions &Lang = Ctx.getLangOptions();
91
92 switch (E->getStmtClass()) {
93 // First come the expressions that are always lvalues, unconditionally.
Douglas Gregor4e442502010-09-14 21:51:42 +000094 case Stmt::NoStmtClass:
95#define STMT(Kind, Base) case Expr::Kind##Class:
96#define EXPR(Kind, Base)
97#include "clang/AST/StmtNodes.inc"
98 llvm_unreachable("cannot classify a statement");
99 break;
Sebastian Redlf9463102010-06-28 15:09:07 +0000100 case Expr::ObjCIsaExprClass:
101 // C++ [expr.prim.general]p1: A string literal is an lvalue.
102 case Expr::StringLiteralClass:
103 // @encode is equivalent to its string
104 case Expr::ObjCEncodeExprClass:
105 // __func__ and friends are too.
106 case Expr::PredefinedExprClass:
107 // Property references are lvalues
108 case Expr::ObjCPropertyRefExprClass:
109 case Expr::ObjCImplicitSetterGetterRefExprClass:
110 // C++ [expr.typeid]p1: The result of a typeid expression is an lvalue of...
111 case Expr::CXXTypeidExprClass:
112 // Unresolved lookups get classified as lvalues.
113 // FIXME: Is this wise? Should they get their own kind?
114 case Expr::UnresolvedLookupExprClass:
115 case Expr::UnresolvedMemberExprClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000116 case Expr::CXXDependentScopeMemberExprClass:
117 case Expr::CXXUnresolvedConstructExprClass:
118 case Expr::DependentScopeDeclRefExprClass:
Sebastian Redlf9463102010-06-28 15:09:07 +0000119 // ObjC instance variables are lvalues
120 // FIXME: ObjC++0x might have different rules
121 case Expr::ObjCIvarRefExprClass:
Sebastian Redlf9463102010-06-28 15:09:07 +0000122 return Cl::CL_LValue;
Douglas Gregor4e442502010-09-14 21:51:42 +0000123 // C99 6.5.2.5p5 says that compound literals are lvalues.
124 // In C++, they're class temporaries.
125 case Expr::CompoundLiteralExprClass:
126 return Ctx.getLangOptions().CPlusPlus? Cl::CL_ClassTemporary
127 : Cl::CL_LValue;
128
129 // Expressions that are prvalues.
130 case Expr::CXXBoolLiteralExprClass:
131 case Expr::CXXPseudoDestructorExprClass:
132 case Expr::SizeOfAlignOfExprClass:
133 case Expr::CXXNewExprClass:
134 case Expr::CXXThisExprClass:
135 case Expr::CXXNullPtrLiteralExprClass:
136 case Expr::TypesCompatibleExprClass:
137 case Expr::ImaginaryLiteralClass:
138 case Expr::GNUNullExprClass:
139 case Expr::OffsetOfExprClass:
140 case Expr::CXXThrowExprClass:
141 case Expr::ShuffleVectorExprClass:
142 case Expr::IntegerLiteralClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000143 case Expr::CharacterLiteralClass:
144 case Expr::AddrLabelExprClass:
145 case Expr::CXXDeleteExprClass:
146 case Expr::ImplicitValueInitExprClass:
147 case Expr::BlockExprClass:
148 case Expr::FloatingLiteralClass:
149 case Expr::CXXNoexceptExprClass:
150 case Expr::CXXScalarValueInitExprClass:
151 case Expr::UnaryTypeTraitExprClass:
152 case Expr::ObjCSelectorExprClass:
153 case Expr::ObjCProtocolExprClass:
154 case Expr::ObjCStringLiteralClass:
155 case Expr::ParenListExprClass:
156 case Expr::InitListExprClass:
157 return Cl::CL_PRValue;
Sebastian Redlf9463102010-06-28 15:09:07 +0000158
159 // Next come the complicated cases.
160
161 // C++ [expr.sub]p1: The result is an lvalue of type "T".
162 // However, subscripting vector types is more like member access.
163 case Expr::ArraySubscriptExprClass:
164 if (cast<ArraySubscriptExpr>(E)->getBase()->getType()->isVectorType())
165 return ClassifyInternal(Ctx, cast<ArraySubscriptExpr>(E)->getBase());
166 return Cl::CL_LValue;
167
168 // C++ [expr.prim.general]p3: The result is an lvalue if the entity is a
169 // function or variable and a prvalue otherwise.
170 case Expr::DeclRefExprClass:
171 return ClassifyDecl(Ctx, cast<DeclRefExpr>(E)->getDecl());
172 // We deal with names referenced from blocks the same way.
173 case Expr::BlockDeclRefExprClass:
174 return ClassifyDecl(Ctx, cast<BlockDeclRefExpr>(E)->getDecl());
175
176 // Member access is complex.
177 case Expr::MemberExprClass:
178 return ClassifyMemberExpr(Ctx, cast<MemberExpr>(E));
179
180 case Expr::UnaryOperatorClass:
181 switch (cast<UnaryOperator>(E)->getOpcode()) {
182 // C++ [expr.unary.op]p1: The unary * operator performs indirection:
183 // [...] the result is an lvalue referring to the object or function
184 // to which the expression points.
John McCalle3027922010-08-25 11:45:40 +0000185 case UO_Deref:
Sebastian Redlf9463102010-06-28 15:09:07 +0000186 return Cl::CL_LValue;
187
188 // GNU extensions, simply look through them.
John McCalle3027922010-08-25 11:45:40 +0000189 case UO_Extension:
Sebastian Redlf9463102010-06-28 15:09:07 +0000190 return ClassifyInternal(Ctx, cast<UnaryOperator>(E)->getSubExpr());
191
John McCall07bb1962010-11-16 10:08:07 +0000192 // Treat _Real and _Imag basically as if they were member
193 // expressions: l-value only if the operand is a true l-value.
194 case UO_Real:
195 case UO_Imag: {
196 const Expr *Op = cast<UnaryOperator>(E)->getSubExpr()->IgnoreParens();
197 Cl::Kinds K = ClassifyInternal(Ctx, Op);
198 if (K != Cl::CL_LValue) return K;
199
200 if (isa<ObjCPropertyRefExpr>(Op) ||
201 isa<ObjCImplicitSetterGetterRefExpr>(Op))
202 return Cl::CL_SubObjCPropertySetting;
203 return Cl::CL_LValue;
204 }
205
Sebastian Redlf9463102010-06-28 15:09:07 +0000206 // C++ [expr.pre.incr]p1: The result is the updated operand; it is an
207 // lvalue, [...]
208 // Not so in C.
John McCalle3027922010-08-25 11:45:40 +0000209 case UO_PreInc:
210 case UO_PreDec:
Sebastian Redlf9463102010-06-28 15:09:07 +0000211 return Lang.CPlusPlus ? Cl::CL_LValue : Cl::CL_PRValue;
212
213 default:
214 return Cl::CL_PRValue;
215 }
216
John McCall8d69a212010-11-15 23:31:06 +0000217 case Expr::OpaqueValueExprClass:
218 return ClassifyExprValueKind(Lang, E,
219 cast<OpaqueValueExpr>(E)->getValueKind());
220
Sebastian Redlf9463102010-06-28 15:09:07 +0000221 // Implicit casts are lvalues if they're lvalue casts. Other than that, we
222 // only specifically record class temporaries.
223 case Expr::ImplicitCastExprClass:
John McCall8d69a212010-11-15 23:31:06 +0000224 return ClassifyExprValueKind(Lang, E,
225 cast<ImplicitCastExpr>(E)->getValueKind());
Sebastian Redlf9463102010-06-28 15:09:07 +0000226
227 // C++ [expr.prim.general]p4: The presence of parentheses does not affect
228 // whether the expression is an lvalue.
229 case Expr::ParenExprClass:
230 return ClassifyInternal(Ctx, cast<ParenExpr>(E)->getSubExpr());
231
232 case Expr::BinaryOperatorClass:
233 case Expr::CompoundAssignOperatorClass:
234 // C doesn't have any binary expressions that are lvalues.
235 if (Lang.CPlusPlus)
236 return ClassifyBinaryOp(Ctx, cast<BinaryOperator>(E));
237 return Cl::CL_PRValue;
238
239 case Expr::CallExprClass:
240 case Expr::CXXOperatorCallExprClass:
241 case Expr::CXXMemberCallExprClass:
242 return ClassifyUnnamed(Ctx, cast<CallExpr>(E)->getCallReturnType());
243
244 // __builtin_choose_expr is equivalent to the chosen expression.
245 case Expr::ChooseExprClass:
246 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr(Ctx));
247
248 // Extended vector element access is an lvalue unless there are duplicates
249 // in the shuffle expression.
250 case Expr::ExtVectorElementExprClass:
251 return cast<ExtVectorElementExpr>(E)->containsDuplicateElements() ?
252 Cl::CL_DuplicateVectorComponents : Cl::CL_LValue;
253
254 // Simply look at the actual default argument.
255 case Expr::CXXDefaultArgExprClass:
256 return ClassifyInternal(Ctx, cast<CXXDefaultArgExpr>(E)->getExpr());
257
258 // Same idea for temporary binding.
259 case Expr::CXXBindTemporaryExprClass:
260 return ClassifyInternal(Ctx, cast<CXXBindTemporaryExpr>(E)->getSubExpr());
261
262 // And the temporary lifetime guard.
263 case Expr::CXXExprWithTemporariesClass:
264 return ClassifyInternal(Ctx, cast<CXXExprWithTemporaries>(E)->getSubExpr());
265
266 // Casts depend completely on the target type. All casts work the same.
267 case Expr::CStyleCastExprClass:
268 case Expr::CXXFunctionalCastExprClass:
269 case Expr::CXXStaticCastExprClass:
270 case Expr::CXXDynamicCastExprClass:
271 case Expr::CXXReinterpretCastExprClass:
272 case Expr::CXXConstCastExprClass:
273 // Only in C++ can casts be interesting at all.
274 if (!Lang.CPlusPlus) return Cl::CL_PRValue;
275 return ClassifyUnnamed(Ctx, cast<ExplicitCastExpr>(E)->getTypeAsWritten());
276
277 case Expr::ConditionalOperatorClass:
278 // Once again, only C++ is interesting.
279 if (!Lang.CPlusPlus) return Cl::CL_PRValue;
280 return ClassifyConditional(Ctx, cast<ConditionalOperator>(E));
281
282 // ObjC message sends are effectively function calls, if the target function
283 // is known.
284 case Expr::ObjCMessageExprClass:
285 if (const ObjCMethodDecl *Method =
286 cast<ObjCMessageExpr>(E)->getMethodDecl()) {
287 return ClassifyUnnamed(Ctx, Method->getResultType());
288 }
Douglas Gregor4e442502010-09-14 21:51:42 +0000289 return Cl::CL_PRValue;
290
Sebastian Redlf9463102010-06-28 15:09:07 +0000291 // Some C++ expressions are always class temporaries.
292 case Expr::CXXConstructExprClass:
293 case Expr::CXXTemporaryObjectExprClass:
Sebastian Redlf9463102010-06-28 15:09:07 +0000294 return Cl::CL_ClassTemporary;
295
Douglas Gregor4e442502010-09-14 21:51:42 +0000296 case Expr::VAArgExprClass:
297 return ClassifyUnnamed(Ctx, E->getType());
298
299 case Expr::DesignatedInitExprClass:
300 return ClassifyInternal(Ctx, cast<DesignatedInitExpr>(E)->getInit());
301
302 case Expr::StmtExprClass: {
303 const CompoundStmt *S = cast<StmtExpr>(E)->getSubStmt();
304 if (const Expr *LastExpr = dyn_cast_or_null<Expr>(S->body_back()))
Douglas Gregore572b062010-09-15 01:37:48 +0000305 return ClassifyUnnamed(Ctx, LastExpr->getType());
Sebastian Redlf9463102010-06-28 15:09:07 +0000306 return Cl::CL_PRValue;
307 }
Douglas Gregor4e442502010-09-14 21:51:42 +0000308
309 case Expr::CXXUuidofExprClass:
John McCall7decc9e2010-11-18 06:31:45 +0000310 return Cl::CL_PRValue;
Douglas Gregor4e442502010-09-14 21:51:42 +0000311 }
312
313 llvm_unreachable("unhandled expression kind in classification");
314 return Cl::CL_LValue;
Sebastian Redlf9463102010-06-28 15:09:07 +0000315}
316
317/// ClassifyDecl - Return the classification of an expression referencing the
318/// given declaration.
319static Cl::Kinds ClassifyDecl(ASTContext &Ctx, const Decl *D) {
320 // C++ [expr.prim.general]p6: The result is an lvalue if the entity is a
321 // function, variable, or data member and a prvalue otherwise.
322 // In C, functions are not lvalues.
323 // In addition, NonTypeTemplateParmDecl derives from VarDecl but isn't an
324 // lvalue unless it's a reference type (C++ [temp.param]p6), so we need to
325 // special-case this.
John McCall8d08b9b2010-08-27 09:08:28 +0000326
327 if (isa<CXXMethodDecl>(D) && cast<CXXMethodDecl>(D)->isInstance())
328 return Cl::CL_MemberFunction;
329
Sebastian Redlf9463102010-06-28 15:09:07 +0000330 bool islvalue;
331 if (const NonTypeTemplateParmDecl *NTTParm =
332 dyn_cast<NonTypeTemplateParmDecl>(D))
333 islvalue = NTTParm->getType()->isReferenceType();
334 else
335 islvalue = isa<VarDecl>(D) || isa<FieldDecl>(D) ||
336 (Ctx.getLangOptions().CPlusPlus &&
337 (isa<FunctionDecl>(D) || isa<FunctionTemplateDecl>(D)));
338
339 return islvalue ? Cl::CL_LValue : Cl::CL_PRValue;
340}
341
342/// ClassifyUnnamed - Return the classification of an expression yielding an
343/// unnamed value of the given type. This applies in particular to function
344/// calls and casts.
345static Cl::Kinds ClassifyUnnamed(ASTContext &Ctx, QualType T) {
346 // In C, function calls are always rvalues.
347 if (!Ctx.getLangOptions().CPlusPlus) return Cl::CL_PRValue;
348
349 // C++ [expr.call]p10: A function call is an lvalue if the result type is an
350 // lvalue reference type or an rvalue reference to function type, an xvalue
351 // if the result type is an rvalue refernence to object type, and a prvalue
352 // otherwise.
353 if (T->isLValueReferenceType())
354 return Cl::CL_LValue;
355 const RValueReferenceType *RV = T->getAs<RValueReferenceType>();
356 if (!RV) // Could still be a class temporary, though.
357 return T->isRecordType() ? Cl::CL_ClassTemporary : Cl::CL_PRValue;
358
359 return RV->getPointeeType()->isFunctionType() ? Cl::CL_LValue : Cl::CL_XValue;
360}
361
362static Cl::Kinds ClassifyMemberExpr(ASTContext &Ctx, const MemberExpr *E) {
363 // Handle C first, it's easier.
364 if (!Ctx.getLangOptions().CPlusPlus) {
365 // C99 6.5.2.3p3
366 // For dot access, the expression is an lvalue if the first part is. For
367 // arrow access, it always is an lvalue.
368 if (E->isArrow())
369 return Cl::CL_LValue;
370 // ObjC property accesses are not lvalues, but get special treatment.
John McCall07bb1962010-11-16 10:08:07 +0000371 Expr *Base = E->getBase()->IgnoreParens();
Sebastian Redlf9463102010-06-28 15:09:07 +0000372 if (isa<ObjCPropertyRefExpr>(Base) ||
373 isa<ObjCImplicitSetterGetterRefExpr>(Base))
374 return Cl::CL_SubObjCPropertySetting;
375 return ClassifyInternal(Ctx, Base);
376 }
377
378 NamedDecl *Member = E->getMemberDecl();
379 // C++ [expr.ref]p3: E1->E2 is converted to the equivalent form (*(E1)).E2.
380 // C++ [expr.ref]p4: If E2 is declared to have type "reference to T", then
381 // E1.E2 is an lvalue.
382 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
383 if (Value->getType()->isReferenceType())
384 return Cl::CL_LValue;
385
386 // Otherwise, one of the following rules applies.
387 // -- If E2 is a static member [...] then E1.E2 is an lvalue.
388 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
389 return Cl::CL_LValue;
390
391 // -- If E2 is a non-static data member [...]. If E1 is an lvalue, then
392 // E1.E2 is an lvalue; if E1 is an xvalue, then E1.E2 is an xvalue;
393 // otherwise, it is a prvalue.
394 if (isa<FieldDecl>(Member)) {
395 // *E1 is an lvalue
396 if (E->isArrow())
397 return Cl::CL_LValue;
John McCall4bc41ae2010-11-18 19:01:18 +0000398 Expr *Base = E->getBase()->IgnoreParenImpCasts();
399 if (isa<ObjCPropertyRefExpr>(Base) ||
400 isa<ObjCImplicitSetterGetterRefExpr>(Base))
401 return Cl::CL_SubObjCPropertySetting;
Sebastian Redlf9463102010-06-28 15:09:07 +0000402 return ClassifyInternal(Ctx, E->getBase());
403 }
404
405 // -- If E2 is a [...] member function, [...]
406 // -- If it refers to a static member function [...], then E1.E2 is an
407 // lvalue; [...]
408 // -- Otherwise [...] E1.E2 is a prvalue.
409 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
410 return Method->isStatic() ? Cl::CL_LValue : Cl::CL_MemberFunction;
411
412 // -- If E2 is a member enumerator [...], the expression E1.E2 is a prvalue.
413 // So is everything else we haven't handled yet.
414 return Cl::CL_PRValue;
415}
416
417static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E) {
418 assert(Ctx.getLangOptions().CPlusPlus &&
419 "This is only relevant for C++.");
420 // C++ [expr.ass]p1: All [...] return an lvalue referring to the left operand.
421 if (E->isAssignmentOp())
422 return Cl::CL_LValue;
423
424 // C++ [expr.comma]p1: the result is of the same value category as its right
425 // operand, [...].
John McCalle3027922010-08-25 11:45:40 +0000426 if (E->getOpcode() == BO_Comma)
Sebastian Redlf9463102010-06-28 15:09:07 +0000427 return ClassifyInternal(Ctx, E->getRHS());
428
429 // C++ [expr.mptr.oper]p6: The result of a .* expression whose second operand
430 // is a pointer to a data member is of the same value category as its first
431 // operand.
John McCalle3027922010-08-25 11:45:40 +0000432 if (E->getOpcode() == BO_PtrMemD)
Sebastian Redlf9463102010-06-28 15:09:07 +0000433 return E->getType()->isFunctionType() ? Cl::CL_MemberFunction :
434 ClassifyInternal(Ctx, E->getLHS());
435
436 // C++ [expr.mptr.oper]p6: The result of an ->* expression is an lvalue if its
437 // second operand is a pointer to data member and a prvalue otherwise.
John McCalle3027922010-08-25 11:45:40 +0000438 if (E->getOpcode() == BO_PtrMemI)
Sebastian Redlf9463102010-06-28 15:09:07 +0000439 return E->getType()->isFunctionType() ?
440 Cl::CL_MemberFunction : Cl::CL_LValue;
441
442 // All other binary operations are prvalues.
443 return Cl::CL_PRValue;
444}
445
446static Cl::Kinds ClassifyConditional(ASTContext &Ctx,
447 const ConditionalOperator *E) {
448 assert(Ctx.getLangOptions().CPlusPlus &&
449 "This is only relevant for C++.");
450
451 Expr *True = E->getTrueExpr();
452 Expr *False = E->getFalseExpr();
453 // C++ [expr.cond]p2
454 // If either the second or the third operand has type (cv) void, [...]
455 // the result [...] is a prvalue.
456 if (True->getType()->isVoidType() || False->getType()->isVoidType())
457 return Cl::CL_PRValue;
458
459 // Note that at this point, we have already performed all conversions
460 // according to [expr.cond]p3.
461 // C++ [expr.cond]p4: If the second and third operands are glvalues of the
462 // same value category [...], the result is of that [...] value category.
463 // C++ [expr.cond]p5: Otherwise, the result is a prvalue.
464 Cl::Kinds LCl = ClassifyInternal(Ctx, True),
465 RCl = ClassifyInternal(Ctx, False);
466 return LCl == RCl ? LCl : Cl::CL_PRValue;
467}
468
469static Cl::ModifiableType IsModifiable(ASTContext &Ctx, const Expr *E,
470 Cl::Kinds Kind, SourceLocation &Loc) {
471 // As a general rule, we only care about lvalues. But there are some rvalues
472 // for which we want to generate special results.
473 if (Kind == Cl::CL_PRValue) {
474 // For the sake of better diagnostics, we want to specifically recognize
475 // use of the GCC cast-as-lvalue extension.
476 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E->IgnoreParens())){
477 if (CE->getSubExpr()->Classify(Ctx).isLValue()) {
478 Loc = CE->getLParenLoc();
479 return Cl::CM_LValueCast;
480 }
481 }
482 }
483 if (Kind != Cl::CL_LValue)
484 return Cl::CM_RValue;
485
486 // This is the lvalue case.
487 // Functions are lvalues in C++, but not modifiable. (C++ [basic.lval]p6)
488 if (Ctx.getLangOptions().CPlusPlus && E->getType()->isFunctionType())
489 return Cl::CM_Function;
490
491 // You cannot assign to a variable outside a block from within the block if
492 // it is not marked __block, e.g.
493 // void takeclosure(void (^C)(void));
494 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
495 if (const BlockDeclRefExpr *BDR = dyn_cast<BlockDeclRefExpr>(E)) {
496 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
497 return Cl::CM_NotBlockQualified;
498 }
499
500 // Assignment to a property in ObjC is an implicit setter access. But a
501 // setter might not exist.
502 if (const ObjCImplicitSetterGetterRefExpr *Expr =
503 dyn_cast<ObjCImplicitSetterGetterRefExpr>(E)) {
504 if (Expr->getSetterMethod() == 0)
505 return Cl::CM_NoSetterProperty;
506 }
507
508 CanQualType CT = Ctx.getCanonicalType(E->getType());
509 // Const stuff is obviously not modifiable.
510 if (CT.isConstQualified())
511 return Cl::CM_ConstQualified;
512 // Arrays are not modifiable, only their elements are.
513 if (CT->isArrayType())
514 return Cl::CM_ArrayType;
515 // Incomplete types are not modifiable.
516 if (CT->isIncompleteType())
517 return Cl::CM_IncompleteType;
518
519 // Records with any const fields (recursively) are not modifiable.
520 if (const RecordType *R = CT->getAs<RecordType>()) {
Fariborz Jahanian805b74e2010-09-14 23:02:38 +0000521 assert((isa<ObjCImplicitSetterGetterRefExpr>(E) ||
522 isa<ObjCPropertyRefExpr>(E) ||
Fariborz Jahaniane89d03f2010-09-09 23:01:10 +0000523 !Ctx.getLangOptions().CPlusPlus) &&
Sebastian Redlf9463102010-06-28 15:09:07 +0000524 "C++ struct assignment should be resolved by the "
525 "copy assignment operator.");
526 if (R->hasConstFields())
527 return Cl::CM_ConstQualified;
528 }
529
530 return Cl::CM_Modifiable;
531}
532
533Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
534 Classification VC = Classify(Ctx);
535 switch (VC.getKind()) {
536 case Cl::CL_LValue: return LV_Valid;
537 case Cl::CL_XValue: return LV_InvalidExpression;
538 case Cl::CL_Function: return LV_NotObjectType;
539 case Cl::CL_Void: return LV_IncompleteVoidType;
540 case Cl::CL_DuplicateVectorComponents: return LV_DuplicateVectorComponents;
541 case Cl::CL_MemberFunction: return LV_MemberFunction;
542 case Cl::CL_SubObjCPropertySetting: return LV_SubObjCPropertySetting;
543 case Cl::CL_ClassTemporary: return LV_ClassTemporary;
544 case Cl::CL_PRValue: return LV_InvalidExpression;
545 }
Chandler Carruth8337ba62010-06-29 00:23:11 +0000546 llvm_unreachable("Unhandled kind");
Sebastian Redlf9463102010-06-28 15:09:07 +0000547}
548
549Expr::isModifiableLvalueResult
550Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
551 SourceLocation dummy;
552 Classification VC = ClassifyModifiable(Ctx, Loc ? *Loc : dummy);
553 switch (VC.getKind()) {
554 case Cl::CL_LValue: break;
555 case Cl::CL_XValue: return MLV_InvalidExpression;
556 case Cl::CL_Function: return MLV_NotObjectType;
557 case Cl::CL_Void: return MLV_IncompleteVoidType;
558 case Cl::CL_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
559 case Cl::CL_MemberFunction: return MLV_MemberFunction;
560 case Cl::CL_SubObjCPropertySetting: return MLV_SubObjCPropertySetting;
561 case Cl::CL_ClassTemporary: return MLV_ClassTemporary;
562 case Cl::CL_PRValue:
563 return VC.getModifiable() == Cl::CM_LValueCast ?
564 MLV_LValueCast : MLV_InvalidExpression;
565 }
566 assert(VC.getKind() == Cl::CL_LValue && "Unhandled kind");
567 switch (VC.getModifiable()) {
Chandler Carruth8337ba62010-06-29 00:23:11 +0000568 case Cl::CM_Untested: llvm_unreachable("Did not test modifiability");
Sebastian Redlf9463102010-06-28 15:09:07 +0000569 case Cl::CM_Modifiable: return MLV_Valid;
Chandler Carruth8337ba62010-06-29 00:23:11 +0000570 case Cl::CM_RValue: llvm_unreachable("CM_RValue and CL_LValue don't match");
Sebastian Redlf9463102010-06-28 15:09:07 +0000571 case Cl::CM_Function: return MLV_NotObjectType;
572 case Cl::CM_LValueCast:
Chandler Carruth8337ba62010-06-29 00:23:11 +0000573 llvm_unreachable("CM_LValueCast and CL_LValue don't match");
Sebastian Redlf9463102010-06-28 15:09:07 +0000574 case Cl::CM_NotBlockQualified: return MLV_NotBlockQualified;
575 case Cl::CM_NoSetterProperty: return MLV_NoSetterProperty;
576 case Cl::CM_ConstQualified: return MLV_ConstQualified;
577 case Cl::CM_ArrayType: return MLV_ArrayType;
578 case Cl::CM_IncompleteType: return MLV_IncompleteType;
579 }
Chandler Carruth8337ba62010-06-29 00:23:11 +0000580 llvm_unreachable("Unhandled modifiable type");
Sebastian Redlf9463102010-06-28 15:09:07 +0000581}