blob: e1d6a1c9edcc81d5f0883e81c49559db0cd161ae [file] [log] [blame]
Eugene Zelenkobc5858b2018-04-10 22:54:42 +00001//===- ExprClassification.cpp - Expression AST Node Implementation --------===//
Sebastian Redlf9463102010-06-28 15:09:07 +00002//
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
14#include "clang/AST/Expr.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000015#include "clang/AST/ASTContext.h"
16#include "clang/AST/DeclCXX.h"
17#include "clang/AST/DeclObjC.h"
18#include "clang/AST/DeclTemplate.h"
Sebastian Redlf9463102010-06-28 15:09:07 +000019#include "clang/AST/ExprCXX.h"
20#include "clang/AST/ExprObjC.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "llvm/Support/ErrorHandling.h"
Eugene Zelenkobc5858b2018-04-10 22:54:42 +000022
Sebastian Redlf9463102010-06-28 15:09:07 +000023using namespace clang;
24
Eugene Zelenkobc5858b2018-04-10 22:54:42 +000025using Cl = Expr::Classification;
Sebastian Redlf9463102010-06-28 15:09:07 +000026
27static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E);
28static Cl::Kinds ClassifyDecl(ASTContext &Ctx, const Decl *D);
29static Cl::Kinds ClassifyUnnamed(ASTContext &Ctx, QualType T);
30static Cl::Kinds ClassifyMemberExpr(ASTContext &Ctx, const MemberExpr *E);
31static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E);
32static Cl::Kinds ClassifyConditional(ASTContext &Ctx,
John McCallc07a0c72011-02-17 10:25:35 +000033 const Expr *trueExpr,
34 const Expr *falseExpr);
Sebastian Redlf9463102010-06-28 15:09:07 +000035static Cl::ModifiableType IsModifiable(ASTContext &Ctx, const Expr *E,
36 Cl::Kinds Kind, SourceLocation &Loc);
37
38Cl Expr::ClassifyImpl(ASTContext &Ctx, SourceLocation *Loc) const {
39 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
40
41 Cl::Kinds kind = ClassifyInternal(Ctx, this);
42 // C99 6.3.2.1: An lvalue is an expression with an object type or an
43 // incomplete type other than void.
David Blaikiebbafb8a2012-03-11 07:00:24 +000044 if (!Ctx.getLangOpts().CPlusPlus) {
Sebastian Redlf9463102010-06-28 15:09:07 +000045 // Thus, no functions.
46 if (TR->isFunctionType() || TR == Ctx.OverloadTy)
47 kind = Cl::CL_Function;
48 // No void either, but qualified void is OK because it is "other than void".
Peter Collingbourne133587f2011-04-19 18:51:51 +000049 // Void "lvalues" are classified as addressable void values, which are void
50 // expressions whose address can be taken.
51 else if (TR->isVoidType() && !TR.hasQualifiers())
52 kind = (kind == Cl::CL_LValue ? Cl::CL_AddressableVoid : Cl::CL_Void);
Sebastian Redlf9463102010-06-28 15:09:07 +000053 }
54
John McCall4bc41ae2010-11-18 19:01:18 +000055 // Enable this assertion for testing.
56 switch (kind) {
57 case Cl::CL_LValue: assert(getValueKind() == VK_LValue); break;
58 case Cl::CL_XValue: assert(getValueKind() == VK_XValue); break;
59 case Cl::CL_Function:
60 case Cl::CL_Void:
Peter Collingbourne133587f2011-04-19 18:51:51 +000061 case Cl::CL_AddressableVoid:
John McCall4bc41ae2010-11-18 19:01:18 +000062 case Cl::CL_DuplicateVectorComponents:
63 case Cl::CL_MemberFunction:
64 case Cl::CL_SubObjCPropertySetting:
65 case Cl::CL_ClassTemporary:
Richard Smitheb3cad52012-06-04 22:27:30 +000066 case Cl::CL_ArrayTemporary:
Fariborz Jahanian071caef2011-03-26 19:48:30 +000067 case Cl::CL_ObjCMessageRValue:
John McCall4bc41ae2010-11-18 19:01:18 +000068 case Cl::CL_PRValue: assert(getValueKind() == VK_RValue); break;
69 }
John McCall4bc41ae2010-11-18 19:01:18 +000070
Sebastian Redlf9463102010-06-28 15:09:07 +000071 Cl::ModifiableType modifiable = Cl::CM_Untested;
72 if (Loc)
73 modifiable = IsModifiable(Ctx, this, kind, *Loc);
74 return Classification(kind, modifiable);
75}
76
Richard Smitheb3cad52012-06-04 22:27:30 +000077/// Classify an expression which creates a temporary, based on its type.
78static Cl::Kinds ClassifyTemporary(QualType T) {
79 if (T->isRecordType())
80 return Cl::CL_ClassTemporary;
81 if (T->isArrayType())
82 return Cl::CL_ArrayTemporary;
83
84 // No special classification: these don't behave differently from normal
85 // prvalues.
86 return Cl::CL_PRValue;
87}
88
Richard Smith4be2c362013-02-02 02:11:36 +000089static Cl::Kinds ClassifyExprValueKind(const LangOptions &Lang,
90 const Expr *E,
91 ExprValueKind Kind) {
92 switch (Kind) {
93 case VK_RValue:
94 return Lang.CPlusPlus ? ClassifyTemporary(E->getType()) : Cl::CL_PRValue;
95 case VK_LValue:
96 return Cl::CL_LValue;
97 case VK_XValue:
98 return Cl::CL_XValue;
99 }
100 llvm_unreachable("Invalid value category of implicit cast.");
101}
102
Sebastian Redlf9463102010-06-28 15:09:07 +0000103static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E) {
104 // This function takes the first stab at classifying expressions.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000105 const LangOptions &Lang = Ctx.getLangOpts();
Sebastian Redlf9463102010-06-28 15:09:07 +0000106
107 switch (E->getStmtClass()) {
Douglas Gregor4e442502010-09-14 21:51:42 +0000108 case Stmt::NoStmtClass:
John McCallbd066782011-02-09 08:16:59 +0000109#define ABSTRACT_STMT(Kind)
Douglas Gregor4e442502010-09-14 21:51:42 +0000110#define STMT(Kind, Base) case Expr::Kind##Class:
111#define EXPR(Kind, Base)
112#include "clang/AST/StmtNodes.inc"
113 llvm_unreachable("cannot classify a statement");
Sebastian Redl29526f02011-11-27 16:50:07 +0000114
115 // First come the expressions that are always lvalues, unconditionally.
Sebastian Redlf9463102010-06-28 15:09:07 +0000116 case Expr::ObjCIsaExprClass:
117 // C++ [expr.prim.general]p1: A string literal is an lvalue.
118 case Expr::StringLiteralClass:
119 // @encode is equivalent to its string
120 case Expr::ObjCEncodeExprClass:
121 // __func__ and friends are too.
122 case Expr::PredefinedExprClass:
123 // Property references are lvalues
Ted Kremeneke65b0862012-03-06 20:05:56 +0000124 case Expr::ObjCSubscriptRefExprClass:
Sebastian Redlf9463102010-06-28 15:09:07 +0000125 case Expr::ObjCPropertyRefExprClass:
Sebastian Redlf9463102010-06-28 15:09:07 +0000126 // C++ [expr.typeid]p1: The result of a typeid expression is an lvalue of...
127 case Expr::CXXTypeidExprClass:
Kaelyn Takatae1f49d52014-10-27 18:07:20 +0000128 // Unresolved lookups and uncorrected typos get classified as lvalues.
Sebastian Redlf9463102010-06-28 15:09:07 +0000129 // FIXME: Is this wise? Should they get their own kind?
130 case Expr::UnresolvedLookupExprClass:
131 case Expr::UnresolvedMemberExprClass:
Kaelyn Takatae1f49d52014-10-27 18:07:20 +0000132 case Expr::TypoExprClass:
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000133 case Expr::DependentCoawaitExprClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000134 case Expr::CXXDependentScopeMemberExprClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000135 case Expr::DependentScopeDeclRefExprClass:
Sebastian Redlf9463102010-06-28 15:09:07 +0000136 // ObjC instance variables are lvalues
137 // FIXME: ObjC++0x might have different rules
138 case Expr::ObjCIvarRefExprClass:
Richard Smithb15fe3a2012-09-12 00:56:43 +0000139 case Expr::FunctionParmPackExprClass:
John McCall5e77d762013-04-16 07:28:30 +0000140 case Expr::MSPropertyRefExprClass:
Alexey Bataevf7630272015-11-25 12:01:00 +0000141 case Expr::MSPropertySubscriptExprClass:
Alexey Bataev1a3320e2015-08-25 14:24:04 +0000142 case Expr::OMPArraySectionExprClass:
Sebastian Redlf9463102010-06-28 15:09:07 +0000143 return Cl::CL_LValue;
Sebastian Redl29526f02011-11-27 16:50:07 +0000144
Douglas Gregor4e442502010-09-14 21:51:42 +0000145 // C99 6.5.2.5p5 says that compound literals are lvalues.
Richard Smithb3189a12016-12-05 07:49:14 +0000146 // In C++, they're prvalue temporaries, except for file-scope arrays.
Douglas Gregor4e442502010-09-14 21:51:42 +0000147 case Expr::CompoundLiteralExprClass:
Richard Smithb3189a12016-12-05 07:49:14 +0000148 return !E->isLValue() ? ClassifyTemporary(E->getType()) : Cl::CL_LValue;
Douglas Gregor4e442502010-09-14 21:51:42 +0000149
150 // Expressions that are prvalues.
151 case Expr::CXXBoolLiteralExprClass:
152 case Expr::CXXPseudoDestructorExprClass:
Peter Collingbournee190dee2011-03-11 19:24:49 +0000153 case Expr::UnaryExprOrTypeTraitExprClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000154 case Expr::CXXNewExprClass:
155 case Expr::CXXThisExprClass:
156 case Expr::CXXNullPtrLiteralExprClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000157 case Expr::ImaginaryLiteralClass:
158 case Expr::GNUNullExprClass:
159 case Expr::OffsetOfExprClass:
160 case Expr::CXXThrowExprClass:
161 case Expr::ShuffleVectorExprClass:
Hal Finkelc4d7c822013-09-18 03:29:45 +0000162 case Expr::ConvertVectorExprClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000163 case Expr::IntegerLiteralClass:
Leonard Chandb01c3a2018-06-20 17:19:40 +0000164 case Expr::FixedPointLiteralClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000165 case Expr::CharacterLiteralClass:
166 case Expr::AddrLabelExprClass:
167 case Expr::CXXDeleteExprClass:
168 case Expr::ImplicitValueInitExprClass:
169 case Expr::BlockExprClass:
170 case Expr::FloatingLiteralClass:
171 case Expr::CXXNoexceptExprClass:
172 case Expr::CXXScalarValueInitExprClass:
Douglas Gregor29c42f22012-02-24 07:38:34 +0000173 case Expr::TypeTraitExprClass:
John Wiegley6242b6a2011-04-28 00:16:57 +0000174 case Expr::ArrayTypeTraitExprClass:
John Wiegleyf9f65842011-04-25 06:54:41 +0000175 case Expr::ExpressionTraitExprClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000176 case Expr::ObjCSelectorExprClass:
177 case Expr::ObjCProtocolExprClass:
178 case Expr::ObjCStringLiteralClass:
Patrick Beard0caa3942012-04-19 00:25:12 +0000179 case Expr::ObjCBoxedExprClass:
Ted Kremeneke65b0862012-03-06 20:05:56 +0000180 case Expr::ObjCArrayLiteralClass:
181 case Expr::ObjCDictionaryLiteralClass:
182 case Expr::ObjCBoolLiteralExprClass:
Erik Pilkington29099de2016-07-16 00:35:23 +0000183 case Expr::ObjCAvailabilityCheckExprClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000184 case Expr::ParenListExprClass:
Douglas Gregor820ba7b2011-01-04 17:33:58 +0000185 case Expr::SizeOfPackExprClass:
Douglas Gregorcdbc5392011-01-15 01:15:58 +0000186 case Expr::SubstNonTypeTemplateParmPackExprClass:
Tanya Lattner55808c12011-06-04 00:47:47 +0000187 case Expr::AsTypeExprClass:
John McCall31168b02011-06-15 23:02:42 +0000188 case Expr::ObjCIndirectCopyRestoreExprClass:
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000189 case Expr::AtomicExprClass:
Richard Smith0f0af192014-11-08 05:07:16 +0000190 case Expr::CXXFoldExprClass:
Richard Smith410306b2016-12-12 02:53:20 +0000191 case Expr::ArrayInitLoopExprClass:
192 case Expr::ArrayInitIndexExprClass:
Yunzhong Gaocb779302015-06-10 00:27:52 +0000193 case Expr::NoInitExprClass:
194 case Expr::DesignatedInitUpdateExprClass:
Douglas Gregor4e442502010-09-14 21:51:42 +0000195 return Cl::CL_PRValue;
Sebastian Redlf9463102010-06-28 15:09:07 +0000196
Bill Wendling7c44da22018-10-31 03:48:47 +0000197 case Expr::ConstantExprClass:
198 return ClassifyInternal(Ctx, cast<ConstantExpr>(E)->getSubExpr());
199
Sebastian Redlf9463102010-06-28 15:09:07 +0000200 // Next come the complicated cases.
John McCall7c454bb2011-07-15 05:09:51 +0000201 case Expr::SubstNonTypeTemplateParmExprClass:
202 return ClassifyInternal(Ctx,
203 cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement());
Sebastian Redlf9463102010-06-28 15:09:07 +0000204
Richard Smithb3189a12016-12-05 07:49:14 +0000205 // C, C++98 [expr.sub]p1: The result is an lvalue of type "T".
206 // C++11 (DR1213): in the case of an array operand, the result is an lvalue
207 // if that operand is an lvalue and an xvalue otherwise.
208 // Subscripting vector types is more like member access.
Sebastian Redlf9463102010-06-28 15:09:07 +0000209 case Expr::ArraySubscriptExprClass:
210 if (cast<ArraySubscriptExpr>(E)->getBase()->getType()->isVectorType())
211 return ClassifyInternal(Ctx, cast<ArraySubscriptExpr>(E)->getBase());
Richard Smithb3189a12016-12-05 07:49:14 +0000212 if (Lang.CPlusPlus11) {
213 // Step over the array-to-pointer decay if present, but not over the
214 // temporary materialization.
215 auto *Base = cast<ArraySubscriptExpr>(E)->getBase()->IgnoreImpCasts();
216 if (Base->getType()->isArrayType())
217 return ClassifyInternal(Ctx, Base);
218 }
Sebastian Redlf9463102010-06-28 15:09:07 +0000219 return Cl::CL_LValue;
220
221 // C++ [expr.prim.general]p3: The result is an lvalue if the entity is a
222 // function or variable and a prvalue otherwise.
223 case Expr::DeclRefExprClass:
John McCall2979fe02011-04-12 00:42:48 +0000224 if (E->getType() == Ctx.UnknownAnyTy)
225 return isa<FunctionDecl>(cast<DeclRefExpr>(E)->getDecl())
226 ? Cl::CL_PRValue : Cl::CL_LValue;
Sebastian Redlf9463102010-06-28 15:09:07 +0000227 return ClassifyDecl(Ctx, cast<DeclRefExpr>(E)->getDecl());
Sebastian Redlf9463102010-06-28 15:09:07 +0000228
229 // Member access is complex.
230 case Expr::MemberExprClass:
231 return ClassifyMemberExpr(Ctx, cast<MemberExpr>(E));
232
233 case Expr::UnaryOperatorClass:
234 switch (cast<UnaryOperator>(E)->getOpcode()) {
235 // C++ [expr.unary.op]p1: The unary * operator performs indirection:
236 // [...] the result is an lvalue referring to the object or function
237 // to which the expression points.
John McCalle3027922010-08-25 11:45:40 +0000238 case UO_Deref:
Sebastian Redlf9463102010-06-28 15:09:07 +0000239 return Cl::CL_LValue;
240
241 // GNU extensions, simply look through them.
John McCalle3027922010-08-25 11:45:40 +0000242 case UO_Extension:
Sebastian Redlf9463102010-06-28 15:09:07 +0000243 return ClassifyInternal(Ctx, cast<UnaryOperator>(E)->getSubExpr());
244
John McCall07bb1962010-11-16 10:08:07 +0000245 // Treat _Real and _Imag basically as if they were member
246 // expressions: l-value only if the operand is a true l-value.
247 case UO_Real:
248 case UO_Imag: {
249 const Expr *Op = cast<UnaryOperator>(E)->getSubExpr()->IgnoreParens();
250 Cl::Kinds K = ClassifyInternal(Ctx, Op);
251 if (K != Cl::CL_LValue) return K;
252
John McCallb7bd14f2010-12-02 01:19:52 +0000253 if (isa<ObjCPropertyRefExpr>(Op))
John McCall07bb1962010-11-16 10:08:07 +0000254 return Cl::CL_SubObjCPropertySetting;
255 return Cl::CL_LValue;
256 }
257
Sebastian Redlf9463102010-06-28 15:09:07 +0000258 // C++ [expr.pre.incr]p1: The result is the updated operand; it is an
259 // lvalue, [...]
260 // Not so in C.
John McCalle3027922010-08-25 11:45:40 +0000261 case UO_PreInc:
262 case UO_PreDec:
Sebastian Redlf9463102010-06-28 15:09:07 +0000263 return Lang.CPlusPlus ? Cl::CL_LValue : Cl::CL_PRValue;
264
265 default:
266 return Cl::CL_PRValue;
267 }
268
John McCall8d69a212010-11-15 23:31:06 +0000269 case Expr::OpaqueValueExprClass:
Sebastian Redl29526f02011-11-27 16:50:07 +0000270 return ClassifyExprValueKind(Lang, E, E->getValueKind());
John McCall8d69a212010-11-15 23:31:06 +0000271
John McCallfe96e0b2011-11-06 09:01:30 +0000272 // Pseudo-object expressions can produce l-values with reference magic.
273 case Expr::PseudoObjectExprClass:
274 return ClassifyExprValueKind(Lang, E,
275 cast<PseudoObjectExpr>(E)->getValueKind());
276
Sebastian Redlf9463102010-06-28 15:09:07 +0000277 // Implicit casts are lvalues if they're lvalue casts. Other than that, we
278 // only specifically record class temporaries.
279 case Expr::ImplicitCastExprClass:
Sebastian Redl29526f02011-11-27 16:50:07 +0000280 return ClassifyExprValueKind(Lang, E, E->getValueKind());
Sebastian Redlf9463102010-06-28 15:09:07 +0000281
282 // C++ [expr.prim.general]p4: The presence of parentheses does not affect
283 // whether the expression is an lvalue.
284 case Expr::ParenExprClass:
285 return ClassifyInternal(Ctx, cast<ParenExpr>(E)->getSubExpr());
286
Benjamin Kramere56f3932011-12-23 17:00:35 +0000287 // C11 6.5.1.1p4: [A generic selection] is an lvalue, a function designator,
Peter Collingbourne91147592011-04-15 00:35:48 +0000288 // or a void expression if its result expression is, respectively, an
289 // lvalue, a function designator, or a void expression.
290 case Expr::GenericSelectionExprClass:
291 if (cast<GenericSelectionExpr>(E)->isResultDependent())
292 return Cl::CL_PRValue;
293 return ClassifyInternal(Ctx,cast<GenericSelectionExpr>(E)->getResultExpr());
294
Sebastian Redlf9463102010-06-28 15:09:07 +0000295 case Expr::BinaryOperatorClass:
296 case Expr::CompoundAssignOperatorClass:
297 // C doesn't have any binary expressions that are lvalues.
298 if (Lang.CPlusPlus)
299 return ClassifyBinaryOp(Ctx, cast<BinaryOperator>(E));
300 return Cl::CL_PRValue;
301
302 case Expr::CallExprClass:
303 case Expr::CXXOperatorCallExprClass:
304 case Expr::CXXMemberCallExprClass:
Richard Smithc67fdd42012-03-07 08:35:16 +0000305 case Expr::UserDefinedLiteralClass:
Peter Collingbourne41f85462011-02-09 21:07:24 +0000306 case Expr::CUDAKernelCallExprClass:
David Majnemerced8bdf2015-02-25 17:36:15 +0000307 return ClassifyUnnamed(Ctx, cast<CallExpr>(E)->getCallReturnType(Ctx));
Sebastian Redlf9463102010-06-28 15:09:07 +0000308
309 // __builtin_choose_expr is equivalent to the chosen expression.
310 case Expr::ChooseExprClass:
Eli Friedman75807f22013-07-20 00:40:58 +0000311 return ClassifyInternal(Ctx, cast<ChooseExpr>(E)->getChosenSubExpr());
Sebastian Redlf9463102010-06-28 15:09:07 +0000312
313 // Extended vector element access is an lvalue unless there are duplicates
314 // in the shuffle expression.
315 case Expr::ExtVectorElementExprClass:
Eli Friedman66b9e9e2013-06-17 21:09:57 +0000316 if (cast<ExtVectorElementExpr>(E)->containsDuplicateElements())
317 return Cl::CL_DuplicateVectorComponents;
318 if (cast<ExtVectorElementExpr>(E)->isArrow())
319 return Cl::CL_LValue;
320 return ClassifyInternal(Ctx, cast<ExtVectorElementExpr>(E)->getBase());
Sebastian Redlf9463102010-06-28 15:09:07 +0000321
322 // Simply look at the actual default argument.
323 case Expr::CXXDefaultArgExprClass:
324 return ClassifyInternal(Ctx, cast<CXXDefaultArgExpr>(E)->getExpr());
325
Richard Smith852c9db2013-04-20 22:23:05 +0000326 // Same idea for default initializers.
327 case Expr::CXXDefaultInitExprClass:
328 return ClassifyInternal(Ctx, cast<CXXDefaultInitExpr>(E)->getExpr());
329
Sebastian Redlf9463102010-06-28 15:09:07 +0000330 // Same idea for temporary binding.
331 case Expr::CXXBindTemporaryExprClass:
332 return ClassifyInternal(Ctx, cast<CXXBindTemporaryExpr>(E)->getSubExpr());
333
John McCall5d413782010-12-06 08:20:24 +0000334 // And the cleanups guard.
335 case Expr::ExprWithCleanupsClass:
336 return ClassifyInternal(Ctx, cast<ExprWithCleanups>(E)->getSubExpr());
Sebastian Redlf9463102010-06-28 15:09:07 +0000337
338 // Casts depend completely on the target type. All casts work the same.
339 case Expr::CStyleCastExprClass:
340 case Expr::CXXFunctionalCastExprClass:
341 case Expr::CXXStaticCastExprClass:
342 case Expr::CXXDynamicCastExprClass:
343 case Expr::CXXReinterpretCastExprClass:
344 case Expr::CXXConstCastExprClass:
John McCall31168b02011-06-15 23:02:42 +0000345 case Expr::ObjCBridgedCastExprClass:
Sebastian Redlf9463102010-06-28 15:09:07 +0000346 // Only in C++ can casts be interesting at all.
347 if (!Lang.CPlusPlus) return Cl::CL_PRValue;
348 return ClassifyUnnamed(Ctx, cast<ExplicitCastExpr>(E)->getTypeAsWritten());
349
Douglas Gregor6336f292011-07-08 15:50:43 +0000350 case Expr::CXXUnresolvedConstructExprClass:
Fangrui Song6907ce22018-07-30 19:24:48 +0000351 return ClassifyUnnamed(Ctx,
Douglas Gregor6336f292011-07-08 15:50:43 +0000352 cast<CXXUnresolvedConstructExpr>(E)->getTypeAsWritten());
Fangrui Song6907ce22018-07-30 19:24:48 +0000353
John McCallc07a0c72011-02-17 10:25:35 +0000354 case Expr::BinaryConditionalOperatorClass: {
355 if (!Lang.CPlusPlus) return Cl::CL_PRValue;
Eugene Zelenkobc5858b2018-04-10 22:54:42 +0000356 const auto *co = cast<BinaryConditionalOperator>(E);
John McCallc07a0c72011-02-17 10:25:35 +0000357 return ClassifyConditional(Ctx, co->getTrueExpr(), co->getFalseExpr());
358 }
359
360 case Expr::ConditionalOperatorClass: {
Sebastian Redlf9463102010-06-28 15:09:07 +0000361 // Once again, only C++ is interesting.
362 if (!Lang.CPlusPlus) return Cl::CL_PRValue;
Eugene Zelenkobc5858b2018-04-10 22:54:42 +0000363 const auto *co = cast<ConditionalOperator>(E);
John McCallc07a0c72011-02-17 10:25:35 +0000364 return ClassifyConditional(Ctx, co->getTrueExpr(), co->getFalseExpr());
365 }
Sebastian Redlf9463102010-06-28 15:09:07 +0000366
367 // ObjC message sends are effectively function calls, if the target function
368 // is known.
369 case Expr::ObjCMessageExprClass:
370 if (const ObjCMethodDecl *Method =
371 cast<ObjCMessageExpr>(E)->getMethodDecl()) {
Alp Toker314cc812014-01-25 16:55:45 +0000372 Cl::Kinds kind = ClassifyUnnamed(Ctx, Method->getReturnType());
Fariborz Jahanian071caef2011-03-26 19:48:30 +0000373 return (kind == Cl::CL_PRValue) ? Cl::CL_ObjCMessageRValue : kind;
Sebastian Redlf9463102010-06-28 15:09:07 +0000374 }
Douglas Gregor4e442502010-09-14 21:51:42 +0000375 return Cl::CL_PRValue;
Fangrui Song6907ce22018-07-30 19:24:48 +0000376
Sebastian Redlf9463102010-06-28 15:09:07 +0000377 // Some C++ expressions are always class temporaries.
378 case Expr::CXXConstructExprClass:
Richard Smith5179eb72016-06-28 19:03:57 +0000379 case Expr::CXXInheritedCtorInitExprClass:
Sebastian Redlf9463102010-06-28 15:09:07 +0000380 case Expr::CXXTemporaryObjectExprClass:
Douglas Gregore31e6062012-02-07 10:09:13 +0000381 case Expr::LambdaExprClass:
Richard Smithcc1b96d2013-06-12 22:31:48 +0000382 case Expr::CXXStdInitializerListExprClass:
Sebastian Redlf9463102010-06-28 15:09:07 +0000383 return Cl::CL_ClassTemporary;
384
Douglas Gregor4e442502010-09-14 21:51:42 +0000385 case Expr::VAArgExprClass:
386 return ClassifyUnnamed(Ctx, E->getType());
Sebastian Redl29526f02011-11-27 16:50:07 +0000387
Douglas Gregor4e442502010-09-14 21:51:42 +0000388 case Expr::DesignatedInitExprClass:
389 return ClassifyInternal(Ctx, cast<DesignatedInitExpr>(E)->getInit());
Sebastian Redl29526f02011-11-27 16:50:07 +0000390
Douglas Gregor4e442502010-09-14 21:51:42 +0000391 case Expr::StmtExprClass: {
392 const CompoundStmt *S = cast<StmtExpr>(E)->getSubStmt();
Eugene Zelenkobc5858b2018-04-10 22:54:42 +0000393 if (const auto *LastExpr = dyn_cast_or_null<Expr>(S->body_back()))
Douglas Gregore572b062010-09-15 01:37:48 +0000394 return ClassifyUnnamed(Ctx, LastExpr->getType());
Sebastian Redlf9463102010-06-28 15:09:07 +0000395 return Cl::CL_PRValue;
396 }
Sebastian Redl29526f02011-11-27 16:50:07 +0000397
Douglas Gregor4e442502010-09-14 21:51:42 +0000398 case Expr::CXXUuidofExprClass:
Francois Pichet4f64c5a2010-12-17 02:00:06 +0000399 return Cl::CL_LValue;
Sebastian Redl29526f02011-11-27 16:50:07 +0000400
Douglas Gregore8e9dd62011-01-03 17:17:50 +0000401 case Expr::PackExpansionExprClass:
402 return ClassifyInternal(Ctx, cast<PackExpansionExpr>(E)->getPattern());
Sebastian Redl29526f02011-11-27 16:50:07 +0000403
Douglas Gregorfe314812011-06-21 17:03:29 +0000404 case Expr::MaterializeTemporaryExprClass:
Douglas Gregord410c082011-06-21 18:20:46 +0000405 return cast<MaterializeTemporaryExpr>(E)->isBoundToLvalueReference()
Fangrui Song6907ce22018-07-30 19:24:48 +0000406 ? Cl::CL_LValue
Douglas Gregorfe314812011-06-21 17:03:29 +0000407 : Cl::CL_XValue;
Sebastian Redl29526f02011-11-27 16:50:07 +0000408
409 case Expr::InitListExprClass:
410 // An init list can be an lvalue if it is bound to a reference and
411 // contains only one element. In that case, we look at that element
412 // for an exact classification. Init list creation takes care of the
413 // value kind for us, so we only need to fine-tune.
414 if (E->isRValue())
415 return ClassifyExprValueKind(Lang, E, E->getValueKind());
416 assert(cast<InitListExpr>(E)->getNumInits() == 1 &&
417 "Only 1-element init lists can be glvalues.");
418 return ClassifyInternal(Ctx, cast<InitListExpr>(E)->getInit(0));
Richard Smith9f690bd2015-10-27 06:02:45 +0000419
420 case Expr::CoawaitExprClass:
Eric Fiseliercddaf872017-06-15 19:43:36 +0000421 case Expr::CoyieldExprClass:
422 return ClassifyInternal(Ctx, cast<CoroutineSuspendExpr>(E)->getResumeExpr());
Douglas Gregor4e442502010-09-14 21:51:42 +0000423 }
Sebastian Redl29526f02011-11-27 16:50:07 +0000424
Douglas Gregor4e442502010-09-14 21:51:42 +0000425 llvm_unreachable("unhandled expression kind in classification");
Sebastian Redlf9463102010-06-28 15:09:07 +0000426}
427
428/// ClassifyDecl - Return the classification of an expression referencing the
429/// given declaration.
430static Cl::Kinds ClassifyDecl(ASTContext &Ctx, const Decl *D) {
431 // C++ [expr.prim.general]p6: The result is an lvalue if the entity is a
432 // function, variable, or data member and a prvalue otherwise.
433 // In C, functions are not lvalues.
434 // In addition, NonTypeTemplateParmDecl derives from VarDecl but isn't an
435 // lvalue unless it's a reference type (C++ [temp.param]p6), so we need to
436 // special-case this.
John McCall8d08b9b2010-08-27 09:08:28 +0000437
438 if (isa<CXXMethodDecl>(D) && cast<CXXMethodDecl>(D)->isInstance())
439 return Cl::CL_MemberFunction;
440
Sebastian Redlf9463102010-06-28 15:09:07 +0000441 bool islvalue;
Eugene Zelenkobc5858b2018-04-10 22:54:42 +0000442 if (const auto *NTTParm = dyn_cast<NonTypeTemplateParmDecl>(D))
Sebastian Redlf9463102010-06-28 15:09:07 +0000443 islvalue = NTTParm->getType()->isReferenceType();
444 else
445 islvalue = isa<VarDecl>(D) || isa<FieldDecl>(D) ||
Reid Kleckner85c7e0a2015-02-24 20:29:40 +0000446 isa<IndirectFieldDecl>(D) ||
Richard Smith7873de02016-08-11 22:25:46 +0000447 isa<BindingDecl>(D) ||
Reid Kleckner85c7e0a2015-02-24 20:29:40 +0000448 (Ctx.getLangOpts().CPlusPlus &&
449 (isa<FunctionDecl>(D) || isa<MSPropertyDecl>(D) ||
450 isa<FunctionTemplateDecl>(D)));
Sebastian Redlf9463102010-06-28 15:09:07 +0000451
452 return islvalue ? Cl::CL_LValue : Cl::CL_PRValue;
453}
454
455/// ClassifyUnnamed - Return the classification of an expression yielding an
456/// unnamed value of the given type. This applies in particular to function
457/// calls and casts.
458static Cl::Kinds ClassifyUnnamed(ASTContext &Ctx, QualType T) {
459 // In C, function calls are always rvalues.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000460 if (!Ctx.getLangOpts().CPlusPlus) return Cl::CL_PRValue;
Sebastian Redlf9463102010-06-28 15:09:07 +0000461
462 // C++ [expr.call]p10: A function call is an lvalue if the result type is an
463 // lvalue reference type or an rvalue reference to function type, an xvalue
Sebastian Redl22653ba2011-08-30 19:58:05 +0000464 // if the result type is an rvalue reference to object type, and a prvalue
Sebastian Redlf9463102010-06-28 15:09:07 +0000465 // otherwise.
466 if (T->isLValueReferenceType())
467 return Cl::CL_LValue;
Eugene Zelenkobc5858b2018-04-10 22:54:42 +0000468 const auto *RV = T->getAs<RValueReferenceType>();
Sebastian Redlf9463102010-06-28 15:09:07 +0000469 if (!RV) // Could still be a class temporary, though.
Richard Smitheb3cad52012-06-04 22:27:30 +0000470 return ClassifyTemporary(T);
Sebastian Redlf9463102010-06-28 15:09:07 +0000471
472 return RV->getPointeeType()->isFunctionType() ? Cl::CL_LValue : Cl::CL_XValue;
473}
474
475static Cl::Kinds ClassifyMemberExpr(ASTContext &Ctx, const MemberExpr *E) {
John McCall2979fe02011-04-12 00:42:48 +0000476 if (E->getType() == Ctx.UnknownAnyTy)
477 return (isa<FunctionDecl>(E->getMemberDecl())
478 ? Cl::CL_PRValue : Cl::CL_LValue);
479
Sebastian Redlf9463102010-06-28 15:09:07 +0000480 // Handle C first, it's easier.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000481 if (!Ctx.getLangOpts().CPlusPlus) {
Sebastian Redlf9463102010-06-28 15:09:07 +0000482 // C99 6.5.2.3p3
483 // For dot access, the expression is an lvalue if the first part is. For
484 // arrow access, it always is an lvalue.
485 if (E->isArrow())
486 return Cl::CL_LValue;
487 // ObjC property accesses are not lvalues, but get special treatment.
John McCall07bb1962010-11-16 10:08:07 +0000488 Expr *Base = E->getBase()->IgnoreParens();
John McCallb7bd14f2010-12-02 01:19:52 +0000489 if (isa<ObjCPropertyRefExpr>(Base))
Sebastian Redlf9463102010-06-28 15:09:07 +0000490 return Cl::CL_SubObjCPropertySetting;
491 return ClassifyInternal(Ctx, Base);
492 }
493
494 NamedDecl *Member = E->getMemberDecl();
495 // C++ [expr.ref]p3: E1->E2 is converted to the equivalent form (*(E1)).E2.
496 // C++ [expr.ref]p4: If E2 is declared to have type "reference to T", then
497 // E1.E2 is an lvalue.
Eugene Zelenkobc5858b2018-04-10 22:54:42 +0000498 if (const auto *Value = dyn_cast<ValueDecl>(Member))
Sebastian Redlf9463102010-06-28 15:09:07 +0000499 if (Value->getType()->isReferenceType())
500 return Cl::CL_LValue;
501
502 // Otherwise, one of the following rules applies.
503 // -- If E2 is a static member [...] then E1.E2 is an lvalue.
504 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
505 return Cl::CL_LValue;
506
507 // -- If E2 is a non-static data member [...]. If E1 is an lvalue, then
508 // E1.E2 is an lvalue; if E1 is an xvalue, then E1.E2 is an xvalue;
509 // otherwise, it is a prvalue.
510 if (isa<FieldDecl>(Member)) {
511 // *E1 is an lvalue
512 if (E->isArrow())
513 return Cl::CL_LValue;
John McCall4bc41ae2010-11-18 19:01:18 +0000514 Expr *Base = E->getBase()->IgnoreParenImpCasts();
John McCallb7bd14f2010-12-02 01:19:52 +0000515 if (isa<ObjCPropertyRefExpr>(Base))
John McCall4bc41ae2010-11-18 19:01:18 +0000516 return Cl::CL_SubObjCPropertySetting;
Sebastian Redlf9463102010-06-28 15:09:07 +0000517 return ClassifyInternal(Ctx, E->getBase());
518 }
519
520 // -- If E2 is a [...] member function, [...]
521 // -- If it refers to a static member function [...], then E1.E2 is an
522 // lvalue; [...]
523 // -- Otherwise [...] E1.E2 is a prvalue.
Eugene Zelenkobc5858b2018-04-10 22:54:42 +0000524 if (const auto *Method = dyn_cast<CXXMethodDecl>(Member))
Sebastian Redlf9463102010-06-28 15:09:07 +0000525 return Method->isStatic() ? Cl::CL_LValue : Cl::CL_MemberFunction;
526
527 // -- If E2 is a member enumerator [...], the expression E1.E2 is a prvalue.
528 // So is everything else we haven't handled yet.
529 return Cl::CL_PRValue;
530}
531
532static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000533 assert(Ctx.getLangOpts().CPlusPlus &&
Sebastian Redlf9463102010-06-28 15:09:07 +0000534 "This is only relevant for C++.");
535 // C++ [expr.ass]p1: All [...] return an lvalue referring to the left operand.
John McCall34376a62010-12-04 03:47:34 +0000536 // Except we override this for writes to ObjC properties.
Sebastian Redlf9463102010-06-28 15:09:07 +0000537 if (E->isAssignmentOp())
John McCall34376a62010-12-04 03:47:34 +0000538 return (E->getLHS()->getObjectKind() == OK_ObjCProperty
539 ? Cl::CL_PRValue : Cl::CL_LValue);
Sebastian Redlf9463102010-06-28 15:09:07 +0000540
541 // C++ [expr.comma]p1: the result is of the same value category as its right
542 // operand, [...].
John McCalle3027922010-08-25 11:45:40 +0000543 if (E->getOpcode() == BO_Comma)
Sebastian Redlf9463102010-06-28 15:09:07 +0000544 return ClassifyInternal(Ctx, E->getRHS());
545
546 // C++ [expr.mptr.oper]p6: The result of a .* expression whose second operand
547 // is a pointer to a data member is of the same value category as its first
548 // operand.
John McCalle3027922010-08-25 11:45:40 +0000549 if (E->getOpcode() == BO_PtrMemD)
John McCalle314e272011-10-18 21:02:43 +0000550 return (E->getType()->isFunctionType() ||
551 E->hasPlaceholderType(BuiltinType::BoundMember))
Fangrui Song6907ce22018-07-30 19:24:48 +0000552 ? Cl::CL_MemberFunction
Douglas Gregorb7c36f62011-05-21 21:04:55 +0000553 : ClassifyInternal(Ctx, E->getLHS());
Sebastian Redlf9463102010-06-28 15:09:07 +0000554
555 // C++ [expr.mptr.oper]p6: The result of an ->* expression is an lvalue if its
556 // second operand is a pointer to data member and a prvalue otherwise.
John McCalle3027922010-08-25 11:45:40 +0000557 if (E->getOpcode() == BO_PtrMemI)
John McCalle314e272011-10-18 21:02:43 +0000558 return (E->getType()->isFunctionType() ||
559 E->hasPlaceholderType(BuiltinType::BoundMember))
Fangrui Song6907ce22018-07-30 19:24:48 +0000560 ? Cl::CL_MemberFunction
Douglas Gregorb7c36f62011-05-21 21:04:55 +0000561 : Cl::CL_LValue;
Sebastian Redlf9463102010-06-28 15:09:07 +0000562
563 // All other binary operations are prvalues.
564 return Cl::CL_PRValue;
565}
566
John McCallc07a0c72011-02-17 10:25:35 +0000567static Cl::Kinds ClassifyConditional(ASTContext &Ctx, const Expr *True,
568 const Expr *False) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000569 assert(Ctx.getLangOpts().CPlusPlus &&
Sebastian Redlf9463102010-06-28 15:09:07 +0000570 "This is only relevant for C++.");
571
Sebastian Redlf9463102010-06-28 15:09:07 +0000572 // C++ [expr.cond]p2
Richard Smith6a6a4bb2014-01-27 04:19:56 +0000573 // If either the second or the third operand has type (cv) void,
574 // one of the following shall hold:
575 if (True->getType()->isVoidType() || False->getType()->isVoidType()) {
576 // The second or the third operand (but not both) is a (possibly
577 // parenthesized) throw-expression; the result is of the [...] value
578 // category of the other.
579 bool TrueIsThrow = isa<CXXThrowExpr>(True->IgnoreParenImpCasts());
580 bool FalseIsThrow = isa<CXXThrowExpr>(False->IgnoreParenImpCasts());
Craig Topper36250ad2014-05-12 05:36:57 +0000581 if (const Expr *NonThrow = TrueIsThrow ? (FalseIsThrow ? nullptr : False)
582 : (FalseIsThrow ? True : nullptr))
Richard Smith6a6a4bb2014-01-27 04:19:56 +0000583 return ClassifyInternal(Ctx, NonThrow);
584
585 // [Otherwise] the result [...] is a prvalue.
Sebastian Redlf9463102010-06-28 15:09:07 +0000586 return Cl::CL_PRValue;
Richard Smith6a6a4bb2014-01-27 04:19:56 +0000587 }
Sebastian Redlf9463102010-06-28 15:09:07 +0000588
589 // Note that at this point, we have already performed all conversions
590 // according to [expr.cond]p3.
591 // C++ [expr.cond]p4: If the second and third operands are glvalues of the
592 // same value category [...], the result is of that [...] value category.
593 // C++ [expr.cond]p5: Otherwise, the result is a prvalue.
594 Cl::Kinds LCl = ClassifyInternal(Ctx, True),
595 RCl = ClassifyInternal(Ctx, False);
596 return LCl == RCl ? LCl : Cl::CL_PRValue;
597}
598
599static Cl::ModifiableType IsModifiable(ASTContext &Ctx, const Expr *E,
600 Cl::Kinds Kind, SourceLocation &Loc) {
601 // As a general rule, we only care about lvalues. But there are some rvalues
602 // for which we want to generate special results.
603 if (Kind == Cl::CL_PRValue) {
604 // For the sake of better diagnostics, we want to specifically recognize
605 // use of the GCC cast-as-lvalue extension.
Eugene Zelenkobc5858b2018-04-10 22:54:42 +0000606 if (const auto *CE = dyn_cast<ExplicitCastExpr>(E->IgnoreParens())) {
John McCall34376a62010-12-04 03:47:34 +0000607 if (CE->getSubExpr()->IgnoreParenImpCasts()->isLValue()) {
608 Loc = CE->getExprLoc();
Sebastian Redlf9463102010-06-28 15:09:07 +0000609 return Cl::CM_LValueCast;
610 }
611 }
612 }
613 if (Kind != Cl::CL_LValue)
614 return Cl::CM_RValue;
615
616 // This is the lvalue case.
617 // Functions are lvalues in C++, but not modifiable. (C++ [basic.lval]p6)
David Blaikiebbafb8a2012-03-11 07:00:24 +0000618 if (Ctx.getLangOpts().CPlusPlus && E->getType()->isFunctionType())
Sebastian Redlf9463102010-06-28 15:09:07 +0000619 return Cl::CM_Function;
620
Sebastian Redlf9463102010-06-28 15:09:07 +0000621 // Assignment to a property in ObjC is an implicit setter access. But a
622 // setter might not exist.
Eugene Zelenkobc5858b2018-04-10 22:54:42 +0000623 if (const auto *Expr = dyn_cast<ObjCPropertyRefExpr>(E)) {
Craig Topper36250ad2014-05-12 05:36:57 +0000624 if (Expr->isImplicitProperty() &&
625 Expr->getImplicitPropertySetter() == nullptr)
Sebastian Redlf9463102010-06-28 15:09:07 +0000626 return Cl::CM_NoSetterProperty;
627 }
628
629 CanQualType CT = Ctx.getCanonicalType(E->getType());
630 // Const stuff is obviously not modifiable.
John McCall5fa2ef42012-03-13 00:37:01 +0000631 if (CT.isConstQualified())
Sebastian Redlf9463102010-06-28 15:09:07 +0000632 return Cl::CM_ConstQualified;
Yaxun Liub34ec822017-04-11 17:24:23 +0000633 if (Ctx.getLangOpts().OpenCL &&
634 CT.getQualifiers().getAddressSpace() == LangAS::opencl_constant)
Richard Smitha7bd4582015-05-22 01:14:39 +0000635 return Cl::CM_ConstAddrSpace;
Eli Friedman60226ea2012-03-12 20:57:19 +0000636
Sebastian Redlf9463102010-06-28 15:09:07 +0000637 // Arrays are not modifiable, only their elements are.
638 if (CT->isArrayType())
639 return Cl::CM_ArrayType;
640 // Incomplete types are not modifiable.
641 if (CT->isIncompleteType())
642 return Cl::CM_IncompleteType;
643
644 // Records with any const fields (recursively) are not modifiable.
David Majnemer99b98f02015-01-04 00:44:32 +0000645 if (const RecordType *R = CT->getAs<RecordType>())
Sebastian Redlf9463102010-06-28 15:09:07 +0000646 if (R->hasConstFields())
Bjorn Pettersson9cf0e122017-09-19 13:10:30 +0000647 return Cl::CM_ConstQualifiedField;
Sebastian Redlf9463102010-06-28 15:09:07 +0000648
649 return Cl::CM_Modifiable;
650}
651
John McCall086a4642010-11-24 05:12:34 +0000652Expr::LValueClassification Expr::ClassifyLValue(ASTContext &Ctx) const {
Sebastian Redlf9463102010-06-28 15:09:07 +0000653 Classification VC = Classify(Ctx);
654 switch (VC.getKind()) {
655 case Cl::CL_LValue: return LV_Valid;
656 case Cl::CL_XValue: return LV_InvalidExpression;
657 case Cl::CL_Function: return LV_NotObjectType;
Peter Collingbourne133587f2011-04-19 18:51:51 +0000658 case Cl::CL_Void: return LV_InvalidExpression;
659 case Cl::CL_AddressableVoid: return LV_IncompleteVoidType;
Sebastian Redlf9463102010-06-28 15:09:07 +0000660 case Cl::CL_DuplicateVectorComponents: return LV_DuplicateVectorComponents;
661 case Cl::CL_MemberFunction: return LV_MemberFunction;
662 case Cl::CL_SubObjCPropertySetting: return LV_SubObjCPropertySetting;
663 case Cl::CL_ClassTemporary: return LV_ClassTemporary;
Richard Smitheb3cad52012-06-04 22:27:30 +0000664 case Cl::CL_ArrayTemporary: return LV_ArrayTemporary;
Fariborz Jahanian071caef2011-03-26 19:48:30 +0000665 case Cl::CL_ObjCMessageRValue: return LV_InvalidMessageExpression;
Sebastian Redlf9463102010-06-28 15:09:07 +0000666 case Cl::CL_PRValue: return LV_InvalidExpression;
667 }
Chandler Carruth8337ba62010-06-29 00:23:11 +0000668 llvm_unreachable("Unhandled kind");
Sebastian Redlf9463102010-06-28 15:09:07 +0000669}
670
671Expr::isModifiableLvalueResult
672Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
673 SourceLocation dummy;
674 Classification VC = ClassifyModifiable(Ctx, Loc ? *Loc : dummy);
675 switch (VC.getKind()) {
676 case Cl::CL_LValue: break;
677 case Cl::CL_XValue: return MLV_InvalidExpression;
678 case Cl::CL_Function: return MLV_NotObjectType;
Peter Collingbourne133587f2011-04-19 18:51:51 +0000679 case Cl::CL_Void: return MLV_InvalidExpression;
680 case Cl::CL_AddressableVoid: return MLV_IncompleteVoidType;
Sebastian Redlf9463102010-06-28 15:09:07 +0000681 case Cl::CL_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
682 case Cl::CL_MemberFunction: return MLV_MemberFunction;
683 case Cl::CL_SubObjCPropertySetting: return MLV_SubObjCPropertySetting;
684 case Cl::CL_ClassTemporary: return MLV_ClassTemporary;
Richard Smitheb3cad52012-06-04 22:27:30 +0000685 case Cl::CL_ArrayTemporary: return MLV_ArrayTemporary;
Fariborz Jahanian071caef2011-03-26 19:48:30 +0000686 case Cl::CL_ObjCMessageRValue: return MLV_InvalidMessageExpression;
Sebastian Redlf9463102010-06-28 15:09:07 +0000687 case Cl::CL_PRValue:
688 return VC.getModifiable() == Cl::CM_LValueCast ?
689 MLV_LValueCast : MLV_InvalidExpression;
690 }
691 assert(VC.getKind() == Cl::CL_LValue && "Unhandled kind");
692 switch (VC.getModifiable()) {
Chandler Carruth8337ba62010-06-29 00:23:11 +0000693 case Cl::CM_Untested: llvm_unreachable("Did not test modifiability");
Sebastian Redlf9463102010-06-28 15:09:07 +0000694 case Cl::CM_Modifiable: return MLV_Valid;
Chandler Carruth8337ba62010-06-29 00:23:11 +0000695 case Cl::CM_RValue: llvm_unreachable("CM_RValue and CL_LValue don't match");
Sebastian Redlf9463102010-06-28 15:09:07 +0000696 case Cl::CM_Function: return MLV_NotObjectType;
697 case Cl::CM_LValueCast:
Chandler Carruth8337ba62010-06-29 00:23:11 +0000698 llvm_unreachable("CM_LValueCast and CL_LValue don't match");
Sebastian Redlf9463102010-06-28 15:09:07 +0000699 case Cl::CM_NoSetterProperty: return MLV_NoSetterProperty;
700 case Cl::CM_ConstQualified: return MLV_ConstQualified;
Bjorn Pettersson9cf0e122017-09-19 13:10:30 +0000701 case Cl::CM_ConstQualifiedField: return MLV_ConstQualifiedField;
Richard Smitha7bd4582015-05-22 01:14:39 +0000702 case Cl::CM_ConstAddrSpace: return MLV_ConstAddrSpace;
Sebastian Redlf9463102010-06-28 15:09:07 +0000703 case Cl::CM_ArrayType: return MLV_ArrayType;
704 case Cl::CM_IncompleteType: return MLV_IncompleteType;
705 }
Chandler Carruth8337ba62010-06-29 00:23:11 +0000706 llvm_unreachable("Unhandled modifiable type");
Sebastian Redlf9463102010-06-28 15:09:07 +0000707}