blob: ebbdf94f100aa3b4ab4df8865c5a65b3d7b19eb5 [file] [log] [blame]
Sebastian Redl2111c852010-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 Carruth0010bca2010-06-29 00:23:11 +000014#include "llvm/Support/ErrorHandling.h"
Sebastian Redl2111c852010-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,
John McCall56ca35d2011-02-17 10:25:35 +000032 const Expr *trueExpr,
33 const Expr *falseExpr);
Sebastian Redl2111c852010-06-28 15:09:07 +000034static Cl::ModifiableType IsModifiable(ASTContext &Ctx, const Expr *E,
35 Cl::Kinds Kind, SourceLocation &Loc);
36
John McCall7cd7d1a2010-11-15 23:31:06 +000037static Cl::Kinds ClassifyExprValueKind(const LangOptions &Lang,
38 const Expr *E,
39 ExprValueKind Kind) {
40 switch (Kind) {
41 case VK_RValue:
42 return Lang.CPlusPlus && E->getType()->isRecordType() ?
43 Cl::CL_ClassTemporary : Cl::CL_PRValue;
44 case VK_LValue:
45 return Cl::CL_LValue;
46 case VK_XValue:
47 return Cl::CL_XValue;
48 }
49 llvm_unreachable("Invalid value category of implicit cast.");
50 return Cl::CL_PRValue;
51}
52
Sebastian Redl2111c852010-06-28 15:09:07 +000053Cl Expr::ClassifyImpl(ASTContext &Ctx, SourceLocation *Loc) const {
54 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
55
56 Cl::Kinds kind = ClassifyInternal(Ctx, this);
57 // C99 6.3.2.1: An lvalue is an expression with an object type or an
58 // incomplete type other than void.
59 if (!Ctx.getLangOptions().CPlusPlus) {
60 // Thus, no functions.
61 if (TR->isFunctionType() || TR == Ctx.OverloadTy)
62 kind = Cl::CL_Function;
63 // No void either, but qualified void is OK because it is "other than void".
Peter Collingbourne1c860d52011-04-19 18:51:51 +000064 // Void "lvalues" are classified as addressable void values, which are void
65 // expressions whose address can be taken.
66 else if (TR->isVoidType() && !TR.hasQualifiers())
67 kind = (kind == Cl::CL_LValue ? Cl::CL_AddressableVoid : Cl::CL_Void);
Sebastian Redl2111c852010-06-28 15:09:07 +000068 }
69
John McCall09431682010-11-18 19:01:18 +000070 // Enable this assertion for testing.
71 switch (kind) {
72 case Cl::CL_LValue: assert(getValueKind() == VK_LValue); break;
73 case Cl::CL_XValue: assert(getValueKind() == VK_XValue); break;
74 case Cl::CL_Function:
75 case Cl::CL_Void:
Peter Collingbourne1c860d52011-04-19 18:51:51 +000076 case Cl::CL_AddressableVoid:
John McCall09431682010-11-18 19:01:18 +000077 case Cl::CL_DuplicateVectorComponents:
78 case Cl::CL_MemberFunction:
79 case Cl::CL_SubObjCPropertySetting:
80 case Cl::CL_ClassTemporary:
Fariborz Jahanian077f4902011-03-26 19:48:30 +000081 case Cl::CL_ObjCMessageRValue:
John McCall09431682010-11-18 19:01:18 +000082 case Cl::CL_PRValue: assert(getValueKind() == VK_RValue); break;
83 }
John McCall09431682010-11-18 19:01:18 +000084
Sebastian Redl2111c852010-06-28 15:09:07 +000085 Cl::ModifiableType modifiable = Cl::CM_Untested;
86 if (Loc)
87 modifiable = IsModifiable(Ctx, this, kind, *Loc);
88 return Classification(kind, modifiable);
89}
90
91static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E) {
92 // This function takes the first stab at classifying expressions.
93 const LangOptions &Lang = Ctx.getLangOptions();
94
95 switch (E->getStmtClass()) {
96 // First come the expressions that are always lvalues, unconditionally.
Douglas Gregor4178b572010-09-14 21:51:42 +000097 case Stmt::NoStmtClass:
John McCall63c00d72011-02-09 08:16:59 +000098#define ABSTRACT_STMT(Kind)
Douglas Gregor4178b572010-09-14 21:51:42 +000099#define STMT(Kind, Base) case Expr::Kind##Class:
100#define EXPR(Kind, Base)
101#include "clang/AST/StmtNodes.inc"
102 llvm_unreachable("cannot classify a statement");
103 break;
Sebastian Redl2111c852010-06-28 15:09:07 +0000104 case Expr::ObjCIsaExprClass:
105 // C++ [expr.prim.general]p1: A string literal is an lvalue.
106 case Expr::StringLiteralClass:
107 // @encode is equivalent to its string
108 case Expr::ObjCEncodeExprClass:
109 // __func__ and friends are too.
110 case Expr::PredefinedExprClass:
111 // Property references are lvalues
112 case Expr::ObjCPropertyRefExprClass:
Sebastian Redl2111c852010-06-28 15:09:07 +0000113 // C++ [expr.typeid]p1: The result of a typeid expression is an lvalue of...
114 case Expr::CXXTypeidExprClass:
115 // Unresolved lookups get classified as lvalues.
116 // FIXME: Is this wise? Should they get their own kind?
117 case Expr::UnresolvedLookupExprClass:
118 case Expr::UnresolvedMemberExprClass:
Douglas Gregor4178b572010-09-14 21:51:42 +0000119 case Expr::CXXDependentScopeMemberExprClass:
120 case Expr::CXXUnresolvedConstructExprClass:
121 case Expr::DependentScopeDeclRefExprClass:
Sebastian Redl2111c852010-06-28 15:09:07 +0000122 // ObjC instance variables are lvalues
123 // FIXME: ObjC++0x might have different rules
124 case Expr::ObjCIvarRefExprClass:
Sebastian Redl2111c852010-06-28 15:09:07 +0000125 return Cl::CL_LValue;
Douglas Gregor4178b572010-09-14 21:51:42 +0000126 // C99 6.5.2.5p5 says that compound literals are lvalues.
127 // In C++, they're class temporaries.
128 case Expr::CompoundLiteralExprClass:
129 return Ctx.getLangOptions().CPlusPlus? Cl::CL_ClassTemporary
130 : Cl::CL_LValue;
131
132 // Expressions that are prvalues.
133 case Expr::CXXBoolLiteralExprClass:
134 case Expr::CXXPseudoDestructorExprClass:
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +0000135 case Expr::UnaryExprOrTypeTraitExprClass:
Douglas Gregor4178b572010-09-14 21:51:42 +0000136 case Expr::CXXNewExprClass:
137 case Expr::CXXThisExprClass:
138 case Expr::CXXNullPtrLiteralExprClass:
Douglas Gregor4178b572010-09-14 21:51:42 +0000139 case Expr::ImaginaryLiteralClass:
140 case Expr::GNUNullExprClass:
141 case Expr::OffsetOfExprClass:
142 case Expr::CXXThrowExprClass:
143 case Expr::ShuffleVectorExprClass:
144 case Expr::IntegerLiteralClass:
Douglas Gregor4178b572010-09-14 21:51:42 +0000145 case Expr::CharacterLiteralClass:
146 case Expr::AddrLabelExprClass:
147 case Expr::CXXDeleteExprClass:
148 case Expr::ImplicitValueInitExprClass:
149 case Expr::BlockExprClass:
150 case Expr::FloatingLiteralClass:
151 case Expr::CXXNoexceptExprClass:
152 case Expr::CXXScalarValueInitExprClass:
153 case Expr::UnaryTypeTraitExprClass:
Francois Pichet6ad6f282010-12-07 00:08:36 +0000154 case Expr::BinaryTypeTraitExprClass:
John Wiegley55262202011-04-25 06:54:41 +0000155 case Expr::ExpressionTraitExprClass:
Douglas Gregor4178b572010-09-14 21:51:42 +0000156 case Expr::ObjCSelectorExprClass:
157 case Expr::ObjCProtocolExprClass:
158 case Expr::ObjCStringLiteralClass:
159 case Expr::ParenListExprClass:
160 case Expr::InitListExprClass:
Douglas Gregoree8aff02011-01-04 17:33:58 +0000161 case Expr::SizeOfPackExprClass:
Douglas Gregorc7793c72011-01-15 01:15:58 +0000162 case Expr::SubstNonTypeTemplateParmPackExprClass:
Douglas Gregor4178b572010-09-14 21:51:42 +0000163 return Cl::CL_PRValue;
Sebastian Redl2111c852010-06-28 15:09:07 +0000164
165 // Next come the complicated cases.
166
167 // C++ [expr.sub]p1: The result is an lvalue of type "T".
168 // However, subscripting vector types is more like member access.
169 case Expr::ArraySubscriptExprClass:
170 if (cast<ArraySubscriptExpr>(E)->getBase()->getType()->isVectorType())
171 return ClassifyInternal(Ctx, cast<ArraySubscriptExpr>(E)->getBase());
172 return Cl::CL_LValue;
173
174 // C++ [expr.prim.general]p3: The result is an lvalue if the entity is a
175 // function or variable and a prvalue otherwise.
176 case Expr::DeclRefExprClass:
John McCall755d8492011-04-12 00:42:48 +0000177 if (E->getType() == Ctx.UnknownAnyTy)
178 return isa<FunctionDecl>(cast<DeclRefExpr>(E)->getDecl())
179 ? Cl::CL_PRValue : Cl::CL_LValue;
Sebastian Redl2111c852010-06-28 15:09:07 +0000180 return ClassifyDecl(Ctx, cast<DeclRefExpr>(E)->getDecl());
181 // We deal with names referenced from blocks the same way.
182 case Expr::BlockDeclRefExprClass:
183 return ClassifyDecl(Ctx, cast<BlockDeclRefExpr>(E)->getDecl());
184
185 // Member access is complex.
186 case Expr::MemberExprClass:
187 return ClassifyMemberExpr(Ctx, cast<MemberExpr>(E));
188
189 case Expr::UnaryOperatorClass:
190 switch (cast<UnaryOperator>(E)->getOpcode()) {
191 // C++ [expr.unary.op]p1: The unary * operator performs indirection:
192 // [...] the result is an lvalue referring to the object or function
193 // to which the expression points.
John McCall2de56d12010-08-25 11:45:40 +0000194 case UO_Deref:
Sebastian Redl2111c852010-06-28 15:09:07 +0000195 return Cl::CL_LValue;
196
197 // GNU extensions, simply look through them.
John McCall2de56d12010-08-25 11:45:40 +0000198 case UO_Extension:
Sebastian Redl2111c852010-06-28 15:09:07 +0000199 return ClassifyInternal(Ctx, cast<UnaryOperator>(E)->getSubExpr());
200
John McCallb418d742010-11-16 10:08:07 +0000201 // Treat _Real and _Imag basically as if they were member
202 // expressions: l-value only if the operand is a true l-value.
203 case UO_Real:
204 case UO_Imag: {
205 const Expr *Op = cast<UnaryOperator>(E)->getSubExpr()->IgnoreParens();
206 Cl::Kinds K = ClassifyInternal(Ctx, Op);
207 if (K != Cl::CL_LValue) return K;
208
John McCall12f78a62010-12-02 01:19:52 +0000209 if (isa<ObjCPropertyRefExpr>(Op))
John McCallb418d742010-11-16 10:08:07 +0000210 return Cl::CL_SubObjCPropertySetting;
211 return Cl::CL_LValue;
212 }
213
Sebastian Redl2111c852010-06-28 15:09:07 +0000214 // C++ [expr.pre.incr]p1: The result is the updated operand; it is an
215 // lvalue, [...]
216 // Not so in C.
John McCall2de56d12010-08-25 11:45:40 +0000217 case UO_PreInc:
218 case UO_PreDec:
Sebastian Redl2111c852010-06-28 15:09:07 +0000219 return Lang.CPlusPlus ? Cl::CL_LValue : Cl::CL_PRValue;
220
221 default:
222 return Cl::CL_PRValue;
223 }
224
John McCall7cd7d1a2010-11-15 23:31:06 +0000225 case Expr::OpaqueValueExprClass:
226 return ClassifyExprValueKind(Lang, E,
227 cast<OpaqueValueExpr>(E)->getValueKind());
228
Sebastian Redl2111c852010-06-28 15:09:07 +0000229 // Implicit casts are lvalues if they're lvalue casts. Other than that, we
230 // only specifically record class temporaries.
231 case Expr::ImplicitCastExprClass:
John McCall7cd7d1a2010-11-15 23:31:06 +0000232 return ClassifyExprValueKind(Lang, E,
233 cast<ImplicitCastExpr>(E)->getValueKind());
Sebastian Redl2111c852010-06-28 15:09:07 +0000234
235 // C++ [expr.prim.general]p4: The presence of parentheses does not affect
236 // whether the expression is an lvalue.
237 case Expr::ParenExprClass:
238 return ClassifyInternal(Ctx, cast<ParenExpr>(E)->getSubExpr());
239
Peter Collingbournef111d932011-04-15 00:35:48 +0000240 // C1X 6.5.1.1p4: [A generic selection] is an lvalue, a function designator,
241 // or a void expression if its result expression is, respectively, an
242 // lvalue, a function designator, or a void expression.
243 case Expr::GenericSelectionExprClass:
244 if (cast<GenericSelectionExpr>(E)->isResultDependent())
245 return Cl::CL_PRValue;
246 return ClassifyInternal(Ctx,cast<GenericSelectionExpr>(E)->getResultExpr());
247
Sebastian Redl2111c852010-06-28 15:09:07 +0000248 case Expr::BinaryOperatorClass:
249 case Expr::CompoundAssignOperatorClass:
250 // C doesn't have any binary expressions that are lvalues.
251 if (Lang.CPlusPlus)
252 return ClassifyBinaryOp(Ctx, cast<BinaryOperator>(E));
253 return Cl::CL_PRValue;
254
255 case Expr::CallExprClass:
256 case Expr::CXXOperatorCallExprClass:
257 case Expr::CXXMemberCallExprClass:
Peter Collingbournee08ce652011-02-09 21:07:24 +0000258 case Expr::CUDAKernelCallExprClass:
Sebastian Redl2111c852010-06-28 15:09:07 +0000259 return ClassifyUnnamed(Ctx, cast<CallExpr>(E)->getCallReturnType());
260
261 // __builtin_choose_expr is equivalent to the chosen expression.
262 case Expr::ChooseExprClass:
263 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr(Ctx));
264
265 // Extended vector element access is an lvalue unless there are duplicates
266 // in the shuffle expression.
267 case Expr::ExtVectorElementExprClass:
268 return cast<ExtVectorElementExpr>(E)->containsDuplicateElements() ?
269 Cl::CL_DuplicateVectorComponents : Cl::CL_LValue;
270
271 // Simply look at the actual default argument.
272 case Expr::CXXDefaultArgExprClass:
273 return ClassifyInternal(Ctx, cast<CXXDefaultArgExpr>(E)->getExpr());
274
275 // Same idea for temporary binding.
276 case Expr::CXXBindTemporaryExprClass:
277 return ClassifyInternal(Ctx, cast<CXXBindTemporaryExpr>(E)->getSubExpr());
278
John McCall4765fa02010-12-06 08:20:24 +0000279 // And the cleanups guard.
280 case Expr::ExprWithCleanupsClass:
281 return ClassifyInternal(Ctx, cast<ExprWithCleanups>(E)->getSubExpr());
Sebastian Redl2111c852010-06-28 15:09:07 +0000282
283 // Casts depend completely on the target type. All casts work the same.
284 case Expr::CStyleCastExprClass:
285 case Expr::CXXFunctionalCastExprClass:
286 case Expr::CXXStaticCastExprClass:
287 case Expr::CXXDynamicCastExprClass:
288 case Expr::CXXReinterpretCastExprClass:
289 case Expr::CXXConstCastExprClass:
290 // Only in C++ can casts be interesting at all.
291 if (!Lang.CPlusPlus) return Cl::CL_PRValue;
292 return ClassifyUnnamed(Ctx, cast<ExplicitCastExpr>(E)->getTypeAsWritten());
293
John McCall56ca35d2011-02-17 10:25:35 +0000294 case Expr::BinaryConditionalOperatorClass: {
295 if (!Lang.CPlusPlus) return Cl::CL_PRValue;
296 const BinaryConditionalOperator *co = cast<BinaryConditionalOperator>(E);
297 return ClassifyConditional(Ctx, co->getTrueExpr(), co->getFalseExpr());
298 }
299
300 case Expr::ConditionalOperatorClass: {
Sebastian Redl2111c852010-06-28 15:09:07 +0000301 // Once again, only C++ is interesting.
302 if (!Lang.CPlusPlus) return Cl::CL_PRValue;
John McCall56ca35d2011-02-17 10:25:35 +0000303 const ConditionalOperator *co = cast<ConditionalOperator>(E);
304 return ClassifyConditional(Ctx, co->getTrueExpr(), co->getFalseExpr());
305 }
Sebastian Redl2111c852010-06-28 15:09:07 +0000306
307 // ObjC message sends are effectively function calls, if the target function
308 // is known.
309 case Expr::ObjCMessageExprClass:
310 if (const ObjCMethodDecl *Method =
311 cast<ObjCMessageExpr>(E)->getMethodDecl()) {
Fariborz Jahanian077f4902011-03-26 19:48:30 +0000312 Cl::Kinds kind = ClassifyUnnamed(Ctx, Method->getResultType());
313 return (kind == Cl::CL_PRValue) ? Cl::CL_ObjCMessageRValue : kind;
Sebastian Redl2111c852010-06-28 15:09:07 +0000314 }
Douglas Gregor4178b572010-09-14 21:51:42 +0000315 return Cl::CL_PRValue;
316
Sebastian Redl2111c852010-06-28 15:09:07 +0000317 // Some C++ expressions are always class temporaries.
318 case Expr::CXXConstructExprClass:
319 case Expr::CXXTemporaryObjectExprClass:
Sebastian Redl2111c852010-06-28 15:09:07 +0000320 return Cl::CL_ClassTemporary;
321
Douglas Gregor4178b572010-09-14 21:51:42 +0000322 case Expr::VAArgExprClass:
323 return ClassifyUnnamed(Ctx, E->getType());
324
325 case Expr::DesignatedInitExprClass:
326 return ClassifyInternal(Ctx, cast<DesignatedInitExpr>(E)->getInit());
327
328 case Expr::StmtExprClass: {
329 const CompoundStmt *S = cast<StmtExpr>(E)->getSubStmt();
330 if (const Expr *LastExpr = dyn_cast_or_null<Expr>(S->body_back()))
Douglas Gregor226cbfc2010-09-15 01:37:48 +0000331 return ClassifyUnnamed(Ctx, LastExpr->getType());
Sebastian Redl2111c852010-06-28 15:09:07 +0000332 return Cl::CL_PRValue;
333 }
Douglas Gregor4178b572010-09-14 21:51:42 +0000334
335 case Expr::CXXUuidofExprClass:
Francois Pichetecea19f2010-12-17 02:00:06 +0000336 return Cl::CL_LValue;
Douglas Gregorbe230c32011-01-03 17:17:50 +0000337
338 case Expr::PackExpansionExprClass:
339 return ClassifyInternal(Ctx, cast<PackExpansionExpr>(E)->getPattern());
Douglas Gregor4178b572010-09-14 21:51:42 +0000340 }
341
342 llvm_unreachable("unhandled expression kind in classification");
343 return Cl::CL_LValue;
Sebastian Redl2111c852010-06-28 15:09:07 +0000344}
345
346/// ClassifyDecl - Return the classification of an expression referencing the
347/// given declaration.
348static Cl::Kinds ClassifyDecl(ASTContext &Ctx, const Decl *D) {
349 // C++ [expr.prim.general]p6: The result is an lvalue if the entity is a
350 // function, variable, or data member and a prvalue otherwise.
351 // In C, functions are not lvalues.
352 // In addition, NonTypeTemplateParmDecl derives from VarDecl but isn't an
353 // lvalue unless it's a reference type (C++ [temp.param]p6), so we need to
354 // special-case this.
John McCall9c72c602010-08-27 09:08:28 +0000355
356 if (isa<CXXMethodDecl>(D) && cast<CXXMethodDecl>(D)->isInstance())
357 return Cl::CL_MemberFunction;
358
Sebastian Redl2111c852010-06-28 15:09:07 +0000359 bool islvalue;
360 if (const NonTypeTemplateParmDecl *NTTParm =
361 dyn_cast<NonTypeTemplateParmDecl>(D))
362 islvalue = NTTParm->getType()->isReferenceType();
363 else
364 islvalue = isa<VarDecl>(D) || isa<FieldDecl>(D) ||
Francois Pichet87c2e122010-11-21 06:08:52 +0000365 isa<IndirectFieldDecl>(D) ||
Sebastian Redl2111c852010-06-28 15:09:07 +0000366 (Ctx.getLangOptions().CPlusPlus &&
367 (isa<FunctionDecl>(D) || isa<FunctionTemplateDecl>(D)));
368
369 return islvalue ? Cl::CL_LValue : Cl::CL_PRValue;
370}
371
372/// ClassifyUnnamed - Return the classification of an expression yielding an
373/// unnamed value of the given type. This applies in particular to function
374/// calls and casts.
375static Cl::Kinds ClassifyUnnamed(ASTContext &Ctx, QualType T) {
376 // In C, function calls are always rvalues.
377 if (!Ctx.getLangOptions().CPlusPlus) return Cl::CL_PRValue;
378
379 // C++ [expr.call]p10: A function call is an lvalue if the result type is an
380 // lvalue reference type or an rvalue reference to function type, an xvalue
381 // if the result type is an rvalue refernence to object type, and a prvalue
382 // otherwise.
383 if (T->isLValueReferenceType())
384 return Cl::CL_LValue;
385 const RValueReferenceType *RV = T->getAs<RValueReferenceType>();
386 if (!RV) // Could still be a class temporary, though.
387 return T->isRecordType() ? Cl::CL_ClassTemporary : Cl::CL_PRValue;
388
389 return RV->getPointeeType()->isFunctionType() ? Cl::CL_LValue : Cl::CL_XValue;
390}
391
392static Cl::Kinds ClassifyMemberExpr(ASTContext &Ctx, const MemberExpr *E) {
John McCall755d8492011-04-12 00:42:48 +0000393 if (E->getType() == Ctx.UnknownAnyTy)
394 return (isa<FunctionDecl>(E->getMemberDecl())
395 ? Cl::CL_PRValue : Cl::CL_LValue);
396
Sebastian Redl2111c852010-06-28 15:09:07 +0000397 // Handle C first, it's easier.
398 if (!Ctx.getLangOptions().CPlusPlus) {
399 // C99 6.5.2.3p3
400 // For dot access, the expression is an lvalue if the first part is. For
401 // arrow access, it always is an lvalue.
402 if (E->isArrow())
403 return Cl::CL_LValue;
404 // ObjC property accesses are not lvalues, but get special treatment.
John McCallb418d742010-11-16 10:08:07 +0000405 Expr *Base = E->getBase()->IgnoreParens();
John McCall12f78a62010-12-02 01:19:52 +0000406 if (isa<ObjCPropertyRefExpr>(Base))
Sebastian Redl2111c852010-06-28 15:09:07 +0000407 return Cl::CL_SubObjCPropertySetting;
408 return ClassifyInternal(Ctx, Base);
409 }
410
411 NamedDecl *Member = E->getMemberDecl();
412 // C++ [expr.ref]p3: E1->E2 is converted to the equivalent form (*(E1)).E2.
413 // C++ [expr.ref]p4: If E2 is declared to have type "reference to T", then
414 // E1.E2 is an lvalue.
415 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
416 if (Value->getType()->isReferenceType())
417 return Cl::CL_LValue;
418
419 // Otherwise, one of the following rules applies.
420 // -- If E2 is a static member [...] then E1.E2 is an lvalue.
421 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
422 return Cl::CL_LValue;
423
424 // -- If E2 is a non-static data member [...]. If E1 is an lvalue, then
425 // E1.E2 is an lvalue; if E1 is an xvalue, then E1.E2 is an xvalue;
426 // otherwise, it is a prvalue.
427 if (isa<FieldDecl>(Member)) {
428 // *E1 is an lvalue
429 if (E->isArrow())
430 return Cl::CL_LValue;
John McCall09431682010-11-18 19:01:18 +0000431 Expr *Base = E->getBase()->IgnoreParenImpCasts();
John McCall12f78a62010-12-02 01:19:52 +0000432 if (isa<ObjCPropertyRefExpr>(Base))
John McCall09431682010-11-18 19:01:18 +0000433 return Cl::CL_SubObjCPropertySetting;
Sebastian Redl2111c852010-06-28 15:09:07 +0000434 return ClassifyInternal(Ctx, E->getBase());
435 }
436
437 // -- If E2 is a [...] member function, [...]
438 // -- If it refers to a static member function [...], then E1.E2 is an
439 // lvalue; [...]
440 // -- Otherwise [...] E1.E2 is a prvalue.
441 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
442 return Method->isStatic() ? Cl::CL_LValue : Cl::CL_MemberFunction;
443
444 // -- If E2 is a member enumerator [...], the expression E1.E2 is a prvalue.
445 // So is everything else we haven't handled yet.
446 return Cl::CL_PRValue;
447}
448
449static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E) {
450 assert(Ctx.getLangOptions().CPlusPlus &&
451 "This is only relevant for C++.");
452 // C++ [expr.ass]p1: All [...] return an lvalue referring to the left operand.
John McCallf6a16482010-12-04 03:47:34 +0000453 // Except we override this for writes to ObjC properties.
Sebastian Redl2111c852010-06-28 15:09:07 +0000454 if (E->isAssignmentOp())
John McCallf6a16482010-12-04 03:47:34 +0000455 return (E->getLHS()->getObjectKind() == OK_ObjCProperty
456 ? Cl::CL_PRValue : Cl::CL_LValue);
Sebastian Redl2111c852010-06-28 15:09:07 +0000457
458 // C++ [expr.comma]p1: the result is of the same value category as its right
459 // operand, [...].
John McCall2de56d12010-08-25 11:45:40 +0000460 if (E->getOpcode() == BO_Comma)
Sebastian Redl2111c852010-06-28 15:09:07 +0000461 return ClassifyInternal(Ctx, E->getRHS());
462
463 // C++ [expr.mptr.oper]p6: The result of a .* expression whose second operand
464 // is a pointer to a data member is of the same value category as its first
465 // operand.
John McCall2de56d12010-08-25 11:45:40 +0000466 if (E->getOpcode() == BO_PtrMemD)
Sebastian Redl2111c852010-06-28 15:09:07 +0000467 return E->getType()->isFunctionType() ? Cl::CL_MemberFunction :
468 ClassifyInternal(Ctx, E->getLHS());
469
470 // C++ [expr.mptr.oper]p6: The result of an ->* expression is an lvalue if its
471 // second operand is a pointer to data member and a prvalue otherwise.
John McCall2de56d12010-08-25 11:45:40 +0000472 if (E->getOpcode() == BO_PtrMemI)
Sebastian Redl2111c852010-06-28 15:09:07 +0000473 return E->getType()->isFunctionType() ?
474 Cl::CL_MemberFunction : Cl::CL_LValue;
475
476 // All other binary operations are prvalues.
477 return Cl::CL_PRValue;
478}
479
John McCall56ca35d2011-02-17 10:25:35 +0000480static Cl::Kinds ClassifyConditional(ASTContext &Ctx, const Expr *True,
481 const Expr *False) {
Sebastian Redl2111c852010-06-28 15:09:07 +0000482 assert(Ctx.getLangOptions().CPlusPlus &&
483 "This is only relevant for C++.");
484
Sebastian Redl2111c852010-06-28 15:09:07 +0000485 // C++ [expr.cond]p2
486 // If either the second or the third operand has type (cv) void, [...]
487 // the result [...] is a prvalue.
488 if (True->getType()->isVoidType() || False->getType()->isVoidType())
489 return Cl::CL_PRValue;
490
491 // Note that at this point, we have already performed all conversions
492 // according to [expr.cond]p3.
493 // C++ [expr.cond]p4: If the second and third operands are glvalues of the
494 // same value category [...], the result is of that [...] value category.
495 // C++ [expr.cond]p5: Otherwise, the result is a prvalue.
496 Cl::Kinds LCl = ClassifyInternal(Ctx, True),
497 RCl = ClassifyInternal(Ctx, False);
498 return LCl == RCl ? LCl : Cl::CL_PRValue;
499}
500
501static Cl::ModifiableType IsModifiable(ASTContext &Ctx, const Expr *E,
502 Cl::Kinds Kind, SourceLocation &Loc) {
503 // As a general rule, we only care about lvalues. But there are some rvalues
504 // for which we want to generate special results.
505 if (Kind == Cl::CL_PRValue) {
506 // For the sake of better diagnostics, we want to specifically recognize
507 // use of the GCC cast-as-lvalue extension.
John McCallf6a16482010-12-04 03:47:34 +0000508 if (const ExplicitCastExpr *CE =
509 dyn_cast<ExplicitCastExpr>(E->IgnoreParens())) {
510 if (CE->getSubExpr()->IgnoreParenImpCasts()->isLValue()) {
511 Loc = CE->getExprLoc();
Sebastian Redl2111c852010-06-28 15:09:07 +0000512 return Cl::CM_LValueCast;
513 }
514 }
515 }
516 if (Kind != Cl::CL_LValue)
517 return Cl::CM_RValue;
518
519 // This is the lvalue case.
520 // Functions are lvalues in C++, but not modifiable. (C++ [basic.lval]p6)
521 if (Ctx.getLangOptions().CPlusPlus && E->getType()->isFunctionType())
522 return Cl::CM_Function;
523
524 // You cannot assign to a variable outside a block from within the block if
525 // it is not marked __block, e.g.
526 // void takeclosure(void (^C)(void));
527 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
528 if (const BlockDeclRefExpr *BDR = dyn_cast<BlockDeclRefExpr>(E)) {
529 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
530 return Cl::CM_NotBlockQualified;
531 }
532
533 // Assignment to a property in ObjC is an implicit setter access. But a
534 // setter might not exist.
John McCall12f78a62010-12-02 01:19:52 +0000535 if (const ObjCPropertyRefExpr *Expr = dyn_cast<ObjCPropertyRefExpr>(E)) {
536 if (Expr->isImplicitProperty() && Expr->getImplicitPropertySetter() == 0)
Sebastian Redl2111c852010-06-28 15:09:07 +0000537 return Cl::CM_NoSetterProperty;
538 }
539
540 CanQualType CT = Ctx.getCanonicalType(E->getType());
541 // Const stuff is obviously not modifiable.
542 if (CT.isConstQualified())
543 return Cl::CM_ConstQualified;
544 // Arrays are not modifiable, only their elements are.
545 if (CT->isArrayType())
546 return Cl::CM_ArrayType;
547 // Incomplete types are not modifiable.
548 if (CT->isIncompleteType())
549 return Cl::CM_IncompleteType;
550
551 // Records with any const fields (recursively) are not modifiable.
552 if (const RecordType *R = CT->getAs<RecordType>()) {
John McCall01b2e4e2010-12-06 05:26:58 +0000553 assert((E->getObjectKind() == OK_ObjCProperty ||
Fariborz Jahanian4088ec02010-09-09 23:01:10 +0000554 !Ctx.getLangOptions().CPlusPlus) &&
Sebastian Redl2111c852010-06-28 15:09:07 +0000555 "C++ struct assignment should be resolved by the "
556 "copy assignment operator.");
557 if (R->hasConstFields())
558 return Cl::CM_ConstQualified;
559 }
560
561 return Cl::CM_Modifiable;
562}
563
John McCall7eb0a9e2010-11-24 05:12:34 +0000564Expr::LValueClassification Expr::ClassifyLValue(ASTContext &Ctx) const {
Sebastian Redl2111c852010-06-28 15:09:07 +0000565 Classification VC = Classify(Ctx);
566 switch (VC.getKind()) {
567 case Cl::CL_LValue: return LV_Valid;
568 case Cl::CL_XValue: return LV_InvalidExpression;
569 case Cl::CL_Function: return LV_NotObjectType;
Peter Collingbourne1c860d52011-04-19 18:51:51 +0000570 case Cl::CL_Void: return LV_InvalidExpression;
571 case Cl::CL_AddressableVoid: return LV_IncompleteVoidType;
Sebastian Redl2111c852010-06-28 15:09:07 +0000572 case Cl::CL_DuplicateVectorComponents: return LV_DuplicateVectorComponents;
573 case Cl::CL_MemberFunction: return LV_MemberFunction;
574 case Cl::CL_SubObjCPropertySetting: return LV_SubObjCPropertySetting;
575 case Cl::CL_ClassTemporary: return LV_ClassTemporary;
Fariborz Jahanian077f4902011-03-26 19:48:30 +0000576 case Cl::CL_ObjCMessageRValue: return LV_InvalidMessageExpression;
Sebastian Redl2111c852010-06-28 15:09:07 +0000577 case Cl::CL_PRValue: return LV_InvalidExpression;
578 }
Chandler Carruth0010bca2010-06-29 00:23:11 +0000579 llvm_unreachable("Unhandled kind");
Sebastian Redl2111c852010-06-28 15:09:07 +0000580}
581
582Expr::isModifiableLvalueResult
583Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
584 SourceLocation dummy;
585 Classification VC = ClassifyModifiable(Ctx, Loc ? *Loc : dummy);
586 switch (VC.getKind()) {
587 case Cl::CL_LValue: break;
588 case Cl::CL_XValue: return MLV_InvalidExpression;
589 case Cl::CL_Function: return MLV_NotObjectType;
Peter Collingbourne1c860d52011-04-19 18:51:51 +0000590 case Cl::CL_Void: return MLV_InvalidExpression;
591 case Cl::CL_AddressableVoid: return MLV_IncompleteVoidType;
Sebastian Redl2111c852010-06-28 15:09:07 +0000592 case Cl::CL_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
593 case Cl::CL_MemberFunction: return MLV_MemberFunction;
594 case Cl::CL_SubObjCPropertySetting: return MLV_SubObjCPropertySetting;
595 case Cl::CL_ClassTemporary: return MLV_ClassTemporary;
Fariborz Jahanian077f4902011-03-26 19:48:30 +0000596 case Cl::CL_ObjCMessageRValue: return MLV_InvalidMessageExpression;
Sebastian Redl2111c852010-06-28 15:09:07 +0000597 case Cl::CL_PRValue:
598 return VC.getModifiable() == Cl::CM_LValueCast ?
599 MLV_LValueCast : MLV_InvalidExpression;
600 }
601 assert(VC.getKind() == Cl::CL_LValue && "Unhandled kind");
602 switch (VC.getModifiable()) {
Chandler Carruth0010bca2010-06-29 00:23:11 +0000603 case Cl::CM_Untested: llvm_unreachable("Did not test modifiability");
Sebastian Redl2111c852010-06-28 15:09:07 +0000604 case Cl::CM_Modifiable: return MLV_Valid;
Chandler Carruth0010bca2010-06-29 00:23:11 +0000605 case Cl::CM_RValue: llvm_unreachable("CM_RValue and CL_LValue don't match");
Sebastian Redl2111c852010-06-28 15:09:07 +0000606 case Cl::CM_Function: return MLV_NotObjectType;
607 case Cl::CM_LValueCast:
Chandler Carruth0010bca2010-06-29 00:23:11 +0000608 llvm_unreachable("CM_LValueCast and CL_LValue don't match");
Sebastian Redl2111c852010-06-28 15:09:07 +0000609 case Cl::CM_NotBlockQualified: return MLV_NotBlockQualified;
610 case Cl::CM_NoSetterProperty: return MLV_NoSetterProperty;
611 case Cl::CM_ConstQualified: return MLV_ConstQualified;
612 case Cl::CM_ArrayType: return MLV_ArrayType;
613 case Cl::CM_IncompleteType: return MLV_IncompleteType;
614 }
Chandler Carruth0010bca2010-06-29 00:23:11 +0000615 llvm_unreachable("Unhandled modifiable type");
Sebastian Redl2111c852010-06-28 15:09:07 +0000616}