blob: 7b7ee820c5182f0e5dec57536f7b16d9db77901a [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000016#include "clang/AST/DeclObjC.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000017#include "clang/AST/DeclTemplate.h"
Chris Lattner04421082008-04-08 04:40:51 +000018#include "clang/AST/ExprCXX.h"
Steve Narofff494b572008-05-29 21:12:08 +000019#include "clang/AST/ExprObjC.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000020#include "clang/Basic/PartialDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/Basic/TargetInfo.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000023#include "clang/Lex/LiteralSupport.h"
24#include "clang/Lex/Preprocessor.h"
Steve Naroff4eb206b2008-09-03 18:15:37 +000025#include "clang/Parse/DeclSpec.h"
Chris Lattner418f6c72008-10-26 23:43:26 +000026#include "clang/Parse/Designator.h"
Steve Naroff4eb206b2008-09-03 18:15:37 +000027#include "clang/Parse/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000028using namespace clang;
29
David Chisnall0f436562009-08-17 16:35:33 +000030
Douglas Gregor48f3bb92009-02-18 21:56:37 +000031/// \brief Determine whether the use of this declaration is valid, and
32/// emit any corresponding diagnostics.
33///
34/// This routine diagnoses various problems with referencing
35/// declarations that can occur when using a declaration. For example,
36/// it might warn if a deprecated or unavailable declaration is being
37/// used, or produce an error (and return true) if a C++0x deleted
38/// function is being used.
39///
40/// \returns true if there was an error (this declaration cannot be
41/// referenced), false otherwise.
42bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) {
Chris Lattner76a642f2009-02-15 22:43:40 +000043 // See if the decl is deprecated.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000044 if (D->getAttr<DeprecatedAttr>()) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +000045 // Implementing deprecated stuff requires referencing deprecated
46 // stuff. Don't warn if we are implementing a deprecated
47 // construct.
Chris Lattnerf15970c2009-02-16 19:35:30 +000048 bool isSilenced = false;
Mike Stump1eb44332009-09-09 15:08:12 +000049
Chris Lattnerf15970c2009-02-16 19:35:30 +000050 if (NamedDecl *ND = getCurFunctionOrMethodDecl()) {
51 // If this reference happens *in* a deprecated function or method, don't
52 // warn.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000053 isSilenced = ND->getAttr<DeprecatedAttr>();
Mike Stump1eb44332009-09-09 15:08:12 +000054
Chris Lattnerf15970c2009-02-16 19:35:30 +000055 // If this is an Objective-C method implementation, check to see if the
56 // method was deprecated on the declaration, not the definition.
57 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) {
58 // The semantic decl context of a ObjCMethodDecl is the
59 // ObjCImplementationDecl.
60 if (ObjCImplementationDecl *Impl
61 = dyn_cast<ObjCImplementationDecl>(MD->getParent())) {
Mike Stump1eb44332009-09-09 15:08:12 +000062
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000063 MD = Impl->getClassInterface()->getMethod(MD->getSelector(),
Chris Lattnerf15970c2009-02-16 19:35:30 +000064 MD->isInstanceMethod());
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000065 isSilenced |= MD && MD->getAttr<DeprecatedAttr>();
Chris Lattnerf15970c2009-02-16 19:35:30 +000066 }
67 }
68 }
Mike Stump1eb44332009-09-09 15:08:12 +000069
Chris Lattnerf15970c2009-02-16 19:35:30 +000070 if (!isSilenced)
Chris Lattner76a642f2009-02-15 22:43:40 +000071 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
72 }
73
Douglas Gregor48f3bb92009-02-18 21:56:37 +000074 // See if this is a deleted function.
Douglas Gregor25d944a2009-02-24 04:26:15 +000075 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +000076 if (FD->isDeleted()) {
77 Diag(Loc, diag::err_deleted_function_use);
78 Diag(D->getLocation(), diag::note_unavailable_here) << true;
79 return true;
80 }
Douglas Gregor25d944a2009-02-24 04:26:15 +000081 }
Douglas Gregor48f3bb92009-02-18 21:56:37 +000082
83 // See if the decl is unavailable
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000084 if (D->getAttr<UnavailableAttr>()) {
Chris Lattner76a642f2009-02-15 22:43:40 +000085 Diag(Loc, diag::warn_unavailable) << D->getDeclName();
Douglas Gregor48f3bb92009-02-18 21:56:37 +000086 Diag(D->getLocation(), diag::note_unavailable_here) << 0;
87 }
88
Douglas Gregor48f3bb92009-02-18 21:56:37 +000089 return false;
Chris Lattner76a642f2009-02-15 22:43:40 +000090}
91
Fariborz Jahanian5b530052009-05-13 18:09:35 +000092/// DiagnoseSentinelCalls - This routine checks on method dispatch calls
Mike Stump1eb44332009-09-09 15:08:12 +000093/// (and other functions in future), which have been declared with sentinel
Fariborz Jahanian5b530052009-05-13 18:09:35 +000094/// attribute. It warns if call does not have the sentinel argument.
95///
96void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +000097 Expr **Args, unsigned NumArgs) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000098 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
Mike Stump1eb44332009-09-09 15:08:12 +000099 if (!attr)
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000100 return;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000101 int sentinelPos = attr->getSentinel();
102 int nullPos = attr->getNullPos();
Mike Stump1eb44332009-09-09 15:08:12 +0000103
Mike Stump390b4cc2009-05-16 07:39:55 +0000104 // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common
105 // base class. Then we won't be needing two versions of the same code.
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000106 unsigned int i = 0;
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000107 bool warnNotEnoughArgs = false;
108 int isMethod = 0;
109 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
110 // skip over named parameters.
111 ObjCMethodDecl::param_iterator P, E = MD->param_end();
112 for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) {
113 if (nullPos)
114 --nullPos;
115 else
116 ++i;
117 }
118 warnNotEnoughArgs = (P != E || i >= NumArgs);
119 isMethod = 1;
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000120 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000121 // skip over named parameters.
122 ObjCMethodDecl::param_iterator P, E = FD->param_end();
123 for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) {
124 if (nullPos)
125 --nullPos;
126 else
127 ++i;
128 }
129 warnNotEnoughArgs = (P != E || i >= NumArgs);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000130 } else if (VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000131 // block or function pointer call.
132 QualType Ty = V->getType();
133 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000134 const FunctionType *FT = Ty->isFunctionPointerType()
John McCall183700f2009-09-21 23:43:11 +0000135 ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>()
136 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000137 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) {
138 unsigned NumArgsInProto = Proto->getNumArgs();
139 unsigned k;
140 for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) {
141 if (nullPos)
142 --nullPos;
143 else
144 ++i;
145 }
146 warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs);
147 }
148 if (Ty->isBlockPointerType())
149 isMethod = 2;
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000150 } else
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000151 return;
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000152 } else
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000153 return;
154
155 if (warnNotEnoughArgs) {
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000156 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000157 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000158 return;
159 }
160 int sentinel = i;
161 while (sentinelPos > 0 && i < NumArgs-1) {
162 --sentinelPos;
163 ++i;
164 }
165 if (sentinelPos > 0) {
166 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000167 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000168 return;
169 }
170 while (i < NumArgs-1) {
171 ++i;
172 ++sentinel;
173 }
174 Expr *sentinelExpr = Args[sentinel];
175 if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() ||
Douglas Gregorce940492009-09-25 04:25:58 +0000176 !sentinelExpr->isNullPointerConstant(Context,
177 Expr::NPC_ValueDependentIsNull))) {
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000178 Diag(Loc, diag::warn_missing_sentinel) << isMethod;
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000179 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000180 }
181 return;
Fariborz Jahanian5b530052009-05-13 18:09:35 +0000182}
183
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000184SourceRange Sema::getExprRange(ExprTy *E) const {
185 Expr *Ex = (Expr *)E;
186 return Ex? Ex->getSourceRange() : SourceRange();
187}
188
Chris Lattnere7a2e912008-07-25 21:10:04 +0000189//===----------------------------------------------------------------------===//
190// Standard Promotions and Conversions
191//===----------------------------------------------------------------------===//
192
Chris Lattnere7a2e912008-07-25 21:10:04 +0000193/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
194void Sema::DefaultFunctionArrayConversion(Expr *&E) {
195 QualType Ty = E->getType();
196 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
197
Chris Lattnere7a2e912008-07-25 21:10:04 +0000198 if (Ty->isFunctionType())
Mike Stump1eb44332009-09-09 15:08:12 +0000199 ImpCastExprToType(E, Context.getPointerType(Ty),
Anders Carlssonb633c4e2009-09-01 20:37:18 +0000200 CastExpr::CK_FunctionToPointerDecay);
Chris Lattner67d33d82008-07-25 21:33:13 +0000201 else if (Ty->isArrayType()) {
202 // In C90 mode, arrays only promote to pointers if the array expression is
203 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
204 // type 'array of type' is converted to an expression that has type 'pointer
205 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
206 // that has type 'array of type' ...". The relevant change is "an lvalue"
207 // (C90) to "an expression" (C99).
Argyrios Kyrtzidisc39a3d72008-09-11 04:25:59 +0000208 //
209 // C++ 4.2p1:
210 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
211 // T" can be converted to an rvalue of type "pointer to T".
212 //
213 if (getLangOptions().C99 || getLangOptions().CPlusPlus ||
214 E->isLvalue(Context) == Expr::LV_Valid)
Anders Carlsson112a0a82009-08-07 23:48:20 +0000215 ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
216 CastExpr::CK_ArrayToPointerDecay);
Chris Lattner67d33d82008-07-25 21:33:13 +0000217 }
Chris Lattnere7a2e912008-07-25 21:10:04 +0000218}
219
220/// UsualUnaryConversions - Performs various conversions that are common to most
Mike Stump1eb44332009-09-09 15:08:12 +0000221/// operators (C99 6.3). The conversions of array and function types are
Chris Lattnere7a2e912008-07-25 21:10:04 +0000222/// sometimes surpressed. For example, the array->pointer conversion doesn't
223/// apply if the array is an argument to the sizeof or address (&) operators.
224/// In these instances, this routine should *not* be called.
225Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
226 QualType Ty = Expr->getType();
227 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
Mike Stump1eb44332009-09-09 15:08:12 +0000228
Douglas Gregorfc24e442009-05-01 20:41:21 +0000229 // C99 6.3.1.1p2:
230 //
231 // The following may be used in an expression wherever an int or
232 // unsigned int may be used:
233 // - an object or expression with an integer type whose integer
234 // conversion rank is less than or equal to the rank of int
235 // and unsigned int.
236 // - A bit-field of type _Bool, int, signed int, or unsigned int.
237 //
238 // If an int can represent all values of the original type, the
239 // value is converted to an int; otherwise, it is converted to an
240 // unsigned int. These are called the integer promotions. All
241 // other types are unchanged by the integer promotions.
Eli Friedman04e83572009-08-20 04:21:42 +0000242 QualType PTy = Context.isPromotableBitField(Expr);
243 if (!PTy.isNull()) {
244 ImpCastExprToType(Expr, PTy);
245 return Expr;
246 }
Douglas Gregorfc24e442009-05-01 20:41:21 +0000247 if (Ty->isPromotableIntegerType()) {
Eli Friedmana95d7572009-08-19 07:44:53 +0000248 QualType PT = Context.getPromotedIntegerType(Ty);
249 ImpCastExprToType(Expr, PT);
Douglas Gregorfc24e442009-05-01 20:41:21 +0000250 return Expr;
Eli Friedman04e83572009-08-20 04:21:42 +0000251 }
252
Douglas Gregorfc24e442009-05-01 20:41:21 +0000253 DefaultFunctionArrayConversion(Expr);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000254 return Expr;
255}
256
Chris Lattner05faf172008-07-25 22:25:12 +0000257/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
Mike Stump1eb44332009-09-09 15:08:12 +0000258/// do not have a prototype. Arguments that have type float are promoted to
Chris Lattner05faf172008-07-25 22:25:12 +0000259/// double. All other argument types are converted by UsualUnaryConversions().
260void Sema::DefaultArgumentPromotion(Expr *&Expr) {
261 QualType Ty = Expr->getType();
262 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
Mike Stump1eb44332009-09-09 15:08:12 +0000263
Chris Lattner05faf172008-07-25 22:25:12 +0000264 // If this is a 'float' (CVR qualified or typedef) promote to double.
John McCall183700f2009-09-21 23:43:11 +0000265 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
Chris Lattner05faf172008-07-25 22:25:12 +0000266 if (BT->getKind() == BuiltinType::Float)
267 return ImpCastExprToType(Expr, Context.DoubleTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000268
Chris Lattner05faf172008-07-25 22:25:12 +0000269 UsualUnaryConversions(Expr);
270}
271
Chris Lattner312531a2009-04-12 08:11:20 +0000272/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
273/// will warn if the resulting type is not a POD type, and rejects ObjC
274/// interfaces passed by value. This returns true if the argument type is
275/// completely illegal.
276bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) {
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000277 DefaultArgumentPromotion(Expr);
Mike Stump1eb44332009-09-09 15:08:12 +0000278
Chris Lattner312531a2009-04-12 08:11:20 +0000279 if (Expr->getType()->isObjCInterfaceType()) {
280 Diag(Expr->getLocStart(),
281 diag::err_cannot_pass_objc_interface_to_vararg)
282 << Expr->getType() << CT;
283 return true;
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000284 }
Mike Stump1eb44332009-09-09 15:08:12 +0000285
Chris Lattner312531a2009-04-12 08:11:20 +0000286 if (!Expr->getType()->isPODType())
287 Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg)
288 << Expr->getType() << CT;
289
290 return false;
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000291}
292
293
Chris Lattnere7a2e912008-07-25 21:10:04 +0000294/// UsualArithmeticConversions - Performs various conversions that are common to
295/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
Mike Stump1eb44332009-09-09 15:08:12 +0000296/// routine returns the first non-arithmetic type found. The client is
Chris Lattnere7a2e912008-07-25 21:10:04 +0000297/// responsible for emitting appropriate error diagnostics.
298/// FIXME: verify the conversion rules for "complex int" are consistent with
299/// GCC.
300QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
301 bool isCompAssign) {
Eli Friedmanab3a8522009-03-28 01:22:36 +0000302 if (!isCompAssign)
Chris Lattnere7a2e912008-07-25 21:10:04 +0000303 UsualUnaryConversions(lhsExpr);
Eli Friedmanab3a8522009-03-28 01:22:36 +0000304
305 UsualUnaryConversions(rhsExpr);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000306
Mike Stump1eb44332009-09-09 15:08:12 +0000307 // For conversion purposes, we ignore any qualifiers.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000308 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000309 QualType lhs =
310 Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType();
Mike Stump1eb44332009-09-09 15:08:12 +0000311 QualType rhs =
Chris Lattnerb77792e2008-07-26 22:17:49 +0000312 Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000313
314 // If both types are identical, no conversion is needed.
315 if (lhs == rhs)
316 return lhs;
317
318 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
319 // The caller can deal with this (e.g. pointer + int).
320 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
321 return lhs;
322
Douglas Gregor2d833e32009-05-02 00:36:19 +0000323 // Perform bitfield promotions.
Eli Friedman04e83572009-08-20 04:21:42 +0000324 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr);
Douglas Gregor2d833e32009-05-02 00:36:19 +0000325 if (!LHSBitfieldPromoteTy.isNull())
326 lhs = LHSBitfieldPromoteTy;
Eli Friedman04e83572009-08-20 04:21:42 +0000327 QualType RHSBitfieldPromoteTy = Context.isPromotableBitField(rhsExpr);
Douglas Gregor2d833e32009-05-02 00:36:19 +0000328 if (!RHSBitfieldPromoteTy.isNull())
329 rhs = RHSBitfieldPromoteTy;
330
Eli Friedmana95d7572009-08-19 07:44:53 +0000331 QualType destType = Context.UsualArithmeticConversionsType(lhs, rhs);
Eli Friedmanab3a8522009-03-28 01:22:36 +0000332 if (!isCompAssign)
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000333 ImpCastExprToType(lhsExpr, destType);
Eli Friedmanab3a8522009-03-28 01:22:36 +0000334 ImpCastExprToType(rhsExpr, destType);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000335 return destType;
336}
337
Chris Lattnere7a2e912008-07-25 21:10:04 +0000338//===----------------------------------------------------------------------===//
339// Semantic Analysis for various Expression Types
340//===----------------------------------------------------------------------===//
341
342
Steve Narofff69936d2007-09-16 03:34:24 +0000343/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Reid Spencer5f016e22007-07-11 17:01:13 +0000344/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
345/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
346/// multiple tokens. However, the common case is that StringToks points to one
347/// string.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000348///
349Action::OwningExprResult
Steve Narofff69936d2007-09-16 03:34:24 +0000350Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000351 assert(NumStringToks && "Must have at least one string!");
352
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000353 StringLiteralParser Literal(StringToks, NumStringToks, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +0000354 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000355 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000356
357 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
358 for (unsigned i = 0; i != NumStringToks; ++i)
359 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000360
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000361 QualType StrTy = Context.CharTy;
Argyrios Kyrtzidis55f4b022008-08-09 17:20:01 +0000362 if (Literal.AnyWide) StrTy = Context.getWCharType();
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000363 if (Literal.Pascal) StrTy = Context.UnsignedCharTy;
Douglas Gregor77a52232008-09-12 00:47:35 +0000364
365 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
366 if (getLangOptions().CPlusPlus)
367 StrTy.addConst();
Sebastian Redlcd965b92009-01-18 18:53:16 +0000368
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000369 // Get an array type for the string, according to C99 6.4.5. This includes
370 // the nul terminator character as well as the string length for pascal
371 // strings.
372 StrTy = Context.getConstantArrayType(StrTy,
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +0000373 llvm::APInt(32, Literal.GetNumStringChars()+1),
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000374 ArrayType::Normal, 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000375
Reid Spencer5f016e22007-07-11 17:01:13 +0000376 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Mike Stump1eb44332009-09-09 15:08:12 +0000377 return Owned(StringLiteral::Create(Context, Literal.GetString(),
Chris Lattner2085fd62009-02-18 06:40:38 +0000378 Literal.GetStringLength(),
379 Literal.AnyWide, StrTy,
380 &StringTokLocs[0],
381 StringTokLocs.size()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000382}
383
Chris Lattner639e2d32008-10-20 05:16:36 +0000384/// ShouldSnapshotBlockValueReference - Return true if a reference inside of
385/// CurBlock to VD should cause it to be snapshotted (as we do for auto
386/// variables defined outside the block) or false if this is not needed (e.g.
387/// for values inside the block or for globals).
388///
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000389/// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records
390/// up-to-date.
391///
Chris Lattner639e2d32008-10-20 05:16:36 +0000392static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock,
393 ValueDecl *VD) {
394 // If the value is defined inside the block, we couldn't snapshot it even if
395 // we wanted to.
396 if (CurBlock->TheDecl == VD->getDeclContext())
397 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Chris Lattner639e2d32008-10-20 05:16:36 +0000399 // If this is an enum constant or function, it is constant, don't snapshot.
400 if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD))
401 return false;
402
403 // If this is a reference to an extern, static, or global variable, no need to
404 // snapshot it.
405 // FIXME: What about 'const' variables in C++?
406 if (const VarDecl *Var = dyn_cast<VarDecl>(VD))
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000407 if (!Var->hasLocalStorage())
408 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000409
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000410 // Blocks that have these can't be constant.
411 CurBlock->hasBlockDeclRefExprs = true;
412
413 // If we have nested blocks, the decl may be declared in an outer block (in
414 // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may
415 // be defined outside all of the current blocks (in which case the blocks do
416 // all get the bit). Walk the nesting chain.
417 for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock;
418 NextBlock = NextBlock->PrevBlockInfo) {
419 // If we found the defining block for the variable, don't mark the block as
420 // having a reference outside it.
421 if (NextBlock->TheDecl == VD->getDeclContext())
422 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000423
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000424 // Otherwise, the DeclRef from the inner block causes the outer one to need
425 // a snapshot as well.
426 NextBlock->hasBlockDeclRefExprs = true;
427 }
Mike Stump1eb44332009-09-09 15:08:12 +0000428
Chris Lattner639e2d32008-10-20 05:16:36 +0000429 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000430}
431
Chris Lattner639e2d32008-10-20 05:16:36 +0000432
433
Steve Naroff08d92e42007-09-15 18:49:24 +0000434/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Reid Spencer5f016e22007-07-11 17:01:13 +0000435/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
Steve Naroff0d755ad2008-03-19 23:46:26 +0000436/// identifier is used in a function call context.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000437/// SS is only used for a C++ qualified-id (foo::bar) to indicate the
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000438/// class or namespace that the identifier must be a member of.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000439Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
440 IdentifierInfo &II,
441 bool HasTrailingLParen,
Sebastian Redlebc07d52009-02-03 20:19:35 +0000442 const CXXScopeSpec *SS,
443 bool isAddressOfOperand) {
444 return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS,
Douglas Gregor17330012009-02-04 15:01:18 +0000445 isAddressOfOperand);
Douglas Gregor10c42622008-11-18 15:03:34 +0000446}
447
Douglas Gregor1a49af92009-01-06 05:10:23 +0000448/// BuildDeclRefExpr - Build either a DeclRefExpr or a
449/// QualifiedDeclRefExpr based on whether or not SS is a
450/// nested-name-specifier.
Anders Carlssone41590d2009-06-24 00:10:43 +0000451Sema::OwningExprResult
Sebastian Redlebc07d52009-02-03 20:19:35 +0000452Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc,
453 bool TypeDependent, bool ValueDependent,
454 const CXXScopeSpec *SS) {
Anders Carlssone2bb2242009-06-26 19:16:07 +0000455 if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) {
456 Diag(Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000457 diag::err_auto_variable_cannot_appear_in_own_initializer)
Anders Carlssone2bb2242009-06-26 19:16:07 +0000458 << D->getDeclName();
459 return ExprError();
460 }
Mike Stump1eb44332009-09-09 15:08:12 +0000461
Anders Carlssone41590d2009-06-24 00:10:43 +0000462 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
463 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
464 if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) {
465 if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) {
Mike Stump1eb44332009-09-09 15:08:12 +0000466 Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function)
Anders Carlssone41590d2009-06-24 00:10:43 +0000467 << D->getIdentifier() << FD->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +0000468 Diag(D->getLocation(), diag::note_local_variable_declared_here)
Anders Carlssone41590d2009-06-24 00:10:43 +0000469 << D->getIdentifier();
470 return ExprError();
471 }
472 }
473 }
474 }
Mike Stump1eb44332009-09-09 15:08:12 +0000475
Douglas Gregore0762c92009-06-19 23:52:42 +0000476 MarkDeclarationReferenced(Loc, D);
Mike Stump1eb44332009-09-09 15:08:12 +0000477
Anders Carlssone41590d2009-06-24 00:10:43 +0000478 Expr *E;
Douglas Gregorbad35182009-03-19 03:51:16 +0000479 if (SS && !SS->isEmpty()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000480 E = new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent,
Anders Carlssone41590d2009-06-24 00:10:43 +0000481 ValueDependent, SS->getRange(),
Douglas Gregor35073692009-03-26 23:56:24 +0000482 static_cast<NestedNameSpecifier *>(SS->getScopeRep()));
Douglas Gregorbad35182009-03-19 03:51:16 +0000483 } else
Anders Carlssone41590d2009-06-24 00:10:43 +0000484 E = new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent);
Mike Stump1eb44332009-09-09 15:08:12 +0000485
Anders Carlssone41590d2009-06-24 00:10:43 +0000486 return Owned(E);
Douglas Gregor1a49af92009-01-06 05:10:23 +0000487}
488
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000489/// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or
490/// variable corresponding to the anonymous union or struct whose type
491/// is Record.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000492static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context,
493 RecordDecl *Record) {
Mike Stump1eb44332009-09-09 15:08:12 +0000494 assert(Record->isAnonymousStructOrUnion() &&
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000495 "Record must be an anonymous struct or union!");
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Mike Stump390b4cc2009-05-16 07:39:55 +0000497 // FIXME: Once Decls are directly linked together, this will be an O(1)
498 // operation rather than a slow walk through DeclContext's vector (which
499 // itself will be eliminated). DeclGroups might make this even better.
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000500 DeclContext *Ctx = Record->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000501 for (DeclContext::decl_iterator D = Ctx->decls_begin(),
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000502 DEnd = Ctx->decls_end();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000503 D != DEnd; ++D) {
504 if (*D == Record) {
505 // The object for the anonymous struct/union directly
506 // follows its type in the list of declarations.
507 ++D;
508 assert(D != DEnd && "Missing object for anonymous record");
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000509 assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed");
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000510 return *D;
511 }
512 }
513
514 assert(false && "Missing object for anonymous record");
515 return 0;
516}
517
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000518/// \brief Given a field that represents a member of an anonymous
519/// struct/union, build the path from that field's context to the
520/// actual member.
521///
522/// Construct the sequence of field member references we'll have to
523/// perform to get to the field in the anonymous union/struct. The
524/// list of members is built from the field outward, so traverse it
525/// backwards to go from an object in the current context to the field
526/// we found.
527///
528/// \returns The variable from which the field access should begin,
529/// for an anonymous struct/union that is not a member of another
530/// class. Otherwise, returns NULL.
531VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field,
532 llvm::SmallVectorImpl<FieldDecl *> &Path) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000533 assert(Field->getDeclContext()->isRecord() &&
534 cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion()
535 && "Field must be stored inside an anonymous struct or union");
536
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000537 Path.push_back(Field);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000538 VarDecl *BaseObject = 0;
539 DeclContext *Ctx = Field->getDeclContext();
540 do {
541 RecordDecl *Record = cast<RecordDecl>(Ctx);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000542 Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000543 if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject))
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000544 Path.push_back(AnonField);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000545 else {
546 BaseObject = cast<VarDecl>(AnonObject);
547 break;
548 }
549 Ctx = Ctx->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +0000550 } while (Ctx->isRecord() &&
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000551 cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion());
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000552
553 return BaseObject;
554}
555
556Sema::OwningExprResult
557Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc,
558 FieldDecl *Field,
559 Expr *BaseObjectExpr,
560 SourceLocation OpLoc) {
561 llvm::SmallVector<FieldDecl *, 4> AnonFields;
Mike Stump1eb44332009-09-09 15:08:12 +0000562 VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000563 AnonFields);
564
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000565 // Build the expression that refers to the base object, from
566 // which we will build a sequence of member references to each
567 // of the anonymous union objects and, eventually, the field we
568 // found via name lookup.
569 bool BaseObjectIsPointer = false;
John McCall0953e762009-09-24 19:53:00 +0000570 Qualifiers BaseQuals;
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000571 if (BaseObject) {
572 // BaseObject is an anonymous struct/union variable (and is,
573 // therefore, not part of another non-anonymous record).
Ted Kremenek8189cde2009-02-07 01:47:29 +0000574 if (BaseObjectExpr) BaseObjectExpr->Destroy(Context);
Douglas Gregore0762c92009-06-19 23:52:42 +0000575 MarkDeclarationReferenced(Loc, BaseObject);
Steve Naroff6ece14c2009-01-21 00:14:39 +0000576 BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(),
Mike Stumpeed9cac2009-02-19 03:04:26 +0000577 SourceLocation());
John McCall0953e762009-09-24 19:53:00 +0000578 BaseQuals
579 = Context.getCanonicalType(BaseObject->getType()).getQualifiers();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000580 } else if (BaseObjectExpr) {
581 // The caller provided the base object expression. Determine
582 // whether its a pointer and whether it adds any qualifiers to the
583 // anonymous struct/union fields we're looking into.
584 QualType ObjectType = BaseObjectExpr->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000585 if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000586 BaseObjectIsPointer = true;
587 ObjectType = ObjectPtr->getPointeeType();
588 }
John McCall0953e762009-09-24 19:53:00 +0000589 BaseQuals
590 = Context.getCanonicalType(ObjectType).getQualifiers();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000591 } else {
592 // We've found a member of an anonymous struct/union that is
593 // inside a non-anonymous struct/union, so in a well-formed
594 // program our base object expression is "this".
595 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
596 if (!MD->isStatic()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000597 QualType AnonFieldType
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000598 = Context.getTagDeclType(
599 cast<RecordDecl>(AnonFields.back()->getDeclContext()));
600 QualType ThisType = Context.getTagDeclType(MD->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +0000601 if ((Context.getCanonicalType(AnonFieldType)
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000602 == Context.getCanonicalType(ThisType)) ||
603 IsDerivedFrom(ThisType, AnonFieldType)) {
604 // Our base object expression is "this".
Steve Naroff6ece14c2009-01-21 00:14:39 +0000605 BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(),
Mike Stumpeed9cac2009-02-19 03:04:26 +0000606 MD->getThisType(Context));
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000607 BaseObjectIsPointer = true;
608 }
609 } else {
Sebastian Redlcd965b92009-01-18 18:53:16 +0000610 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
611 << Field->getDeclName());
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000612 }
John McCall0953e762009-09-24 19:53:00 +0000613 BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000614 }
615
Mike Stump1eb44332009-09-09 15:08:12 +0000616 if (!BaseObjectExpr)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000617 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
618 << Field->getDeclName());
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000619 }
620
621 // Build the implicit member references to the field of the
622 // anonymous struct/union.
623 Expr *Result = BaseObjectExpr;
John McCall0953e762009-09-24 19:53:00 +0000624 Qualifiers ResultQuals = BaseQuals;
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000625 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
626 FI = AnonFields.rbegin(), FIEnd = AnonFields.rend();
627 FI != FIEnd; ++FI) {
628 QualType MemberType = (*FI)->getType();
John McCall0953e762009-09-24 19:53:00 +0000629 Qualifiers MemberTypeQuals =
630 Context.getCanonicalType(MemberType).getQualifiers();
631
632 // CVR attributes from the base are picked up by members,
633 // except that 'mutable' members don't pick up 'const'.
634 if ((*FI)->isMutable())
635 ResultQuals.removeConst();
636
637 // GC attributes are never picked up by members.
638 ResultQuals.removeObjCGCAttr();
639
640 // TR 18037 does not allow fields to be declared with address spaces.
641 assert(!MemberTypeQuals.hasAddressSpace());
642
643 Qualifiers NewQuals = ResultQuals + MemberTypeQuals;
644 if (NewQuals != MemberTypeQuals)
645 MemberType = Context.getQualifiedType(MemberType, NewQuals);
646
Douglas Gregore0762c92009-06-19 23:52:42 +0000647 MarkDeclarationReferenced(Loc, *FI);
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000648 // FIXME: Might this end up being a qualified name?
Steve Naroff6ece14c2009-01-21 00:14:39 +0000649 Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI,
650 OpLoc, MemberType);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000651 BaseObjectIsPointer = false;
John McCall0953e762009-09-24 19:53:00 +0000652 ResultQuals = NewQuals;
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000653 }
654
Sebastian Redlcd965b92009-01-18 18:53:16 +0000655 return Owned(Result);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000656}
657
Douglas Gregor10c42622008-11-18 15:03:34 +0000658/// ActOnDeclarationNameExpr - The parser has read some kind of name
659/// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine
660/// performs lookup on that name and returns an expression that refers
661/// to that name. This routine isn't directly called from the parser,
662/// because the parser doesn't know about DeclarationName. Rather,
663/// this routine is called by ActOnIdentifierExpr,
664/// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr,
665/// which form the DeclarationName from the corresponding syntactic
666/// forms.
667///
668/// HasTrailingLParen indicates whether this identifier is used in a
669/// function call context. LookupCtx is only used for a C++
670/// qualified-id (foo::bar) to indicate the class or namespace that
671/// the identifier must be a member of.
Douglas Gregor5c37de72008-12-06 00:22:45 +0000672///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000673/// isAddressOfOperand means that this expression is the direct operand
674/// of an address-of operator. This matters because this is the only
675/// situation where a qualified name referencing a non-static member may
676/// appear outside a member function of this class.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000677Sema::OwningExprResult
678Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc,
679 DeclarationName Name, bool HasTrailingLParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000680 const CXXScopeSpec *SS,
Sebastian Redlebc07d52009-02-03 20:19:35 +0000681 bool isAddressOfOperand) {
Chris Lattner8a934232008-03-31 00:36:02 +0000682 // Could be enum-constant, value decl, instance variable, etc.
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000683 if (SS && SS->isInvalid())
684 return ExprError();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000685
686 // C++ [temp.dep.expr]p3:
687 // An id-expression is type-dependent if it contains:
688 // -- a nested-name-specifier that contains a class-name that
689 // names a dependent type.
Douglas Gregor00c44862009-05-29 14:49:33 +0000690 // FIXME: Member of the current instantiation.
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000691 if (SS && isDependentScopeSpecifier(*SS)) {
Douglas Gregorab452ba2009-03-26 23:50:42 +0000692 return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy,
Mike Stump1eb44332009-09-09 15:08:12 +0000693 Loc, SS->getRange(),
Anders Carlsson9b31df42009-07-09 00:05:08 +0000694 static_cast<NestedNameSpecifier *>(SS->getScopeRep()),
695 isAddressOfOperand));
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000696 }
697
Douglas Gregor3e41d602009-02-13 23:20:09 +0000698 LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName,
699 false, true, Loc);
Douglas Gregor7176fff2009-01-15 00:26:24 +0000700
Sebastian Redlcd965b92009-01-18 18:53:16 +0000701 if (Lookup.isAmbiguous()) {
702 DiagnoseAmbiguousLookup(Lookup, Name, Loc,
703 SS && SS->isSet() ? SS->getRange()
704 : SourceRange());
705 return ExprError();
Chris Lattner5cb10d32009-04-24 22:30:50 +0000706 }
Mike Stump1eb44332009-09-09 15:08:12 +0000707
Chris Lattner5cb10d32009-04-24 22:30:50 +0000708 NamedDecl *D = Lookup.getAsDecl();
Douglas Gregor5c37de72008-12-06 00:22:45 +0000709
Chris Lattner8a934232008-03-31 00:36:02 +0000710 // If this reference is in an Objective-C method, then ivar lookup happens as
711 // well.
Douglas Gregor10c42622008-11-18 15:03:34 +0000712 IdentifierInfo *II = Name.getAsIdentifierInfo();
713 if (II && getCurMethodDecl()) {
Chris Lattner8a934232008-03-31 00:36:02 +0000714 // There are two cases to handle here. 1) scoped lookup could have failed,
715 // in which case we should look for an ivar. 2) scoped lookup could have
Mike Stump1eb44332009-09-09 15:08:12 +0000716 // found a decl, but that decl is outside the current instance method (i.e.
717 // a global variable). In these two cases, we do a lookup for an ivar with
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000718 // this name, if the lookup sucedes, we replace it our current decl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000719 if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000720 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000721 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000722 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Chris Lattner553905d2009-02-16 17:19:12 +0000723 // Check if referencing a field with __attribute__((deprecated)).
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000724 if (DiagnoseUseOfDecl(IV, Loc))
725 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000726
Chris Lattner5cb10d32009-04-24 22:30:50 +0000727 // If we're referencing an invalid decl, just return this as a silent
728 // error node. The error diagnostic was already emitted on the decl.
729 if (IV->isInvalidDecl())
730 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000731
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000732 bool IsClsMethod = getCurMethodDecl()->isClassMethod();
733 // If a class method attemps to use a free standing ivar, this is
734 // an error.
735 if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod())
736 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
737 << IV->getDeclName());
738 // If a class method uses a global variable, even if an ivar with
739 // same name exists, use the global.
740 if (!IsClsMethod) {
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000741 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
742 ClassDeclared != IFace)
743 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
Mike Stump390b4cc2009-05-16 07:39:55 +0000744 // FIXME: This should use a new expr for a direct reference, don't
745 // turn this into Self->ivar, just return a BareIVarExpr or something.
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000746 IdentifierInfo &II = Context.Idents.get("self");
Argyrios Kyrtzidisecd1bae2009-07-18 08:49:37 +0000747 OwningExprResult SelfExpr = ActOnIdentifierExpr(S, SourceLocation(),
748 II, false);
Douglas Gregore0762c92009-06-19 23:52:42 +0000749 MarkDeclarationReferenced(Loc, IV);
Mike Stump1eb44332009-09-09 15:08:12 +0000750 return Owned(new (Context)
751 ObjCIvarRefExpr(IV, IV->getType(), Loc,
Anders Carlssone9146f22009-05-01 19:49:17 +0000752 SelfExpr.takeAs<Expr>(), true, true));
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000753 }
Chris Lattner8a934232008-03-31 00:36:02 +0000754 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000755 } else if (getCurMethodDecl()->isInstanceMethod()) {
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000756 // We should warn if a local variable hides an ivar.
757 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000758 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000759 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000760 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
761 IFace == ClassDeclared)
Chris Lattner5cb10d32009-04-24 22:30:50 +0000762 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000763 }
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000764 }
Steve Naroff76de9d72008-08-10 19:10:41 +0000765 // Needed to implement property "super.method" notation.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000766 if (D == 0 && II->isStr("super")) {
Steve Naroffdd53eb52009-03-05 20:12:00 +0000767 QualType T;
Mike Stump1eb44332009-09-09 15:08:12 +0000768
Steve Naroffdd53eb52009-03-05 20:12:00 +0000769 if (getCurMethodDecl()->isInstanceMethod())
Steve Naroff14108da2009-07-10 23:34:53 +0000770 T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType(
771 getCurMethodDecl()->getClassInterface()));
Steve Naroffdd53eb52009-03-05 20:12:00 +0000772 else
773 T = Context.getObjCClassType();
Steve Naroff6ece14c2009-01-21 00:14:39 +0000774 return Owned(new (Context) ObjCSuperExpr(Loc, T));
Steve Naroffe3e9add2008-06-02 23:03:37 +0000775 }
Chris Lattner8a934232008-03-31 00:36:02 +0000776 }
Douglas Gregorc71e28c2009-02-16 19:28:42 +0000777
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000778 // Determine whether this name might be a candidate for
779 // argument-dependent lookup.
Mike Stump1eb44332009-09-09 15:08:12 +0000780 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000781 HasTrailingLParen;
782
783 if (ADL && D == 0) {
Douglas Gregorc71e28c2009-02-16 19:28:42 +0000784 // We've seen something of the form
785 //
786 // identifier(
787 //
788 // and we did not find any entity by the name
789 // "identifier". However, this identifier is still subject to
790 // argument-dependent lookup, so keep track of the name.
791 return Owned(new (Context) UnresolvedFunctionNameExpr(Name,
792 Context.OverloadTy,
793 Loc));
794 }
795
Reid Spencer5f016e22007-07-11 17:01:13 +0000796 if (D == 0) {
797 // Otherwise, this could be an implicitly declared function reference (legal
798 // in C90, extension in C99).
Douglas Gregor10c42622008-11-18 15:03:34 +0000799 if (HasTrailingLParen && II &&
Chris Lattner8a934232008-03-31 00:36:02 +0000800 !getLangOptions().CPlusPlus) // Not in C++.
Douglas Gregor10c42622008-11-18 15:03:34 +0000801 D = ImplicitlyDefineFunction(Loc, *II, S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000802 else {
803 // If this name wasn't predeclared and if this is not a function call,
804 // diagnose the problem.
Anders Carlssonf4d84b62009-08-30 00:54:35 +0000805 if (SS && !SS->isEmpty()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000806 DiagnoseMissingMember(Loc, Name,
Anders Carlssonf4d84b62009-08-30 00:54:35 +0000807 (NestedNameSpecifier *)SS->getScopeRep(),
808 SS->getRange());
809 return ExprError();
810 } else if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
Douglas Gregor10c42622008-11-18 15:03:34 +0000811 Name.getNameKind() == DeclarationName::CXXConversionFunctionName)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000812 return ExprError(Diag(Loc, diag::err_undeclared_use)
813 << Name.getAsString());
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000814 else
Sebastian Redlcd965b92009-01-18 18:53:16 +0000815 return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000816 }
817 }
Mike Stump1eb44332009-09-09 15:08:12 +0000818
Douglas Gregor751f9a42009-06-30 15:47:41 +0000819 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
820 // Warn about constructs like:
821 // if (void *X = foo()) { ... } else { X }.
822 // In the else block, the pointer is always false.
Mike Stump1eb44332009-09-09 15:08:12 +0000823
Douglas Gregor751f9a42009-06-30 15:47:41 +0000824 // FIXME: In a template instantiation, we don't have scope
825 // information to check this property.
826 if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) {
827 Scope *CheckS = S;
828 while (CheckS) {
Mike Stump1eb44332009-09-09 15:08:12 +0000829 if (CheckS->isWithinElse() &&
Douglas Gregor751f9a42009-06-30 15:47:41 +0000830 CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) {
831 if (Var->getType()->isBooleanType())
832 ExprError(Diag(Loc, diag::warn_value_always_false)
833 << Var->getDeclName());
834 else
835 ExprError(Diag(Loc, diag::warn_value_always_zero)
836 << Var->getDeclName());
837 break;
838 }
Mike Stump1eb44332009-09-09 15:08:12 +0000839
Douglas Gregor751f9a42009-06-30 15:47:41 +0000840 // Move up one more control parent to check again.
841 CheckS = CheckS->getControlParent();
842 if (CheckS)
843 CheckS = CheckS->getParent();
844 }
845 }
846 } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) {
847 if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) {
848 // C99 DR 316 says that, if a function type comes from a
849 // function definition (without a prototype), that type is only
850 // used for checking compatibility. Therefore, when referencing
851 // the function, we pretend that we don't have the full function
852 // type.
853 if (DiagnoseUseOfDecl(Func, Loc))
854 return ExprError();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000855
Douglas Gregor751f9a42009-06-30 15:47:41 +0000856 QualType T = Func->getType();
857 QualType NoProtoType = T;
John McCall183700f2009-09-21 23:43:11 +0000858 if (const FunctionProtoType *Proto = T->getAs<FunctionProtoType>())
Douglas Gregor751f9a42009-06-30 15:47:41 +0000859 NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType());
860 return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS);
861 }
862 }
Mike Stump1eb44332009-09-09 15:08:12 +0000863
Douglas Gregor751f9a42009-06-30 15:47:41 +0000864 return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand);
865}
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000866/// \brief Cast member's object to its own class if necessary.
Fariborz Jahanianf3e53d32009-07-29 19:40:11 +0000867bool
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000868Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) {
869 if (FieldDecl *FD = dyn_cast<FieldDecl>(Member))
Mike Stump1eb44332009-09-09 15:08:12 +0000870 if (CXXRecordDecl *RD =
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000871 dyn_cast<CXXRecordDecl>(FD->getDeclContext())) {
Mike Stump1eb44332009-09-09 15:08:12 +0000872 QualType DestType =
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000873 Context.getCanonicalType(Context.getTypeDeclType(RD));
Fariborz Jahanian96e2fa92009-07-29 20:41:46 +0000874 if (DestType->isDependentType() || From->getType()->isDependentType())
875 return false;
876 QualType FromRecordType = From->getType();
877 QualType DestRecordType = DestType;
Ted Kremenek6217b802009-07-29 21:53:49 +0000878 if (FromRecordType->getAs<PointerType>()) {
Fariborz Jahanian96e2fa92009-07-29 20:41:46 +0000879 DestType = Context.getPointerType(DestType);
880 FromRecordType = FromRecordType->getPointeeType();
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000881 }
Fariborz Jahanian96e2fa92009-07-29 20:41:46 +0000882 if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) &&
883 CheckDerivedToBaseConversion(FromRecordType,
884 DestRecordType,
885 From->getSourceRange().getBegin(),
886 From->getSourceRange()))
887 return true;
Anders Carlsson3503d042009-07-31 01:23:52 +0000888 ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase,
889 /*isLvalue=*/true);
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000890 }
Fariborz Jahanianf3e53d32009-07-29 19:40:11 +0000891 return false;
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000892}
Douglas Gregor751f9a42009-06-30 15:47:41 +0000893
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000894/// \brief Build a MemberExpr AST node.
Mike Stump1eb44332009-09-09 15:08:12 +0000895static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow,
896 const CXXScopeSpec *SS, NamedDecl *Member,
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000897 SourceLocation Loc, QualType Ty) {
898 if (SS && SS->isSet())
Mike Stump1eb44332009-09-09 15:08:12 +0000899 return MemberExpr::Create(C, Base, isArrow,
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000900 (NestedNameSpecifier *)SS->getScopeRep(),
Mike Stump1eb44332009-09-09 15:08:12 +0000901 SS->getRange(), Member, Loc,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +0000902 // FIXME: Explicit template argument lists
903 false, SourceLocation(), 0, 0, SourceLocation(),
904 Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000905
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000906 return new (C) MemberExpr(Base, isArrow, Member, Loc, Ty);
907}
908
Douglas Gregor751f9a42009-06-30 15:47:41 +0000909/// \brief Complete semantic analysis for a reference to the given declaration.
910Sema::OwningExprResult
911Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D,
912 bool HasTrailingLParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000913 const CXXScopeSpec *SS,
Douglas Gregor751f9a42009-06-30 15:47:41 +0000914 bool isAddressOfOperand) {
915 assert(D && "Cannot refer to a NULL declaration");
916 DeclarationName Name = D->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +0000917
Sebastian Redlebc07d52009-02-03 20:19:35 +0000918 // If this is an expression of the form &Class::member, don't build an
919 // implicit member ref, because we want a pointer to the member in general,
920 // not any specific instance's member.
921 if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) {
Douglas Gregore4e5b052009-03-19 00:18:19 +0000922 DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000923 if (D && isa<CXXRecordDecl>(DC)) {
Sebastian Redlebc07d52009-02-03 20:19:35 +0000924 QualType DType;
925 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
926 DType = FD->getType().getNonReferenceType();
927 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
928 DType = Method->getType();
929 } else if (isa<OverloadedFunctionDecl>(D)) {
930 DType = Context.OverloadTy;
931 }
932 // Could be an inner type. That's diagnosed below, so ignore it here.
933 if (!DType.isNull()) {
934 // The pointer is type- and value-dependent if it points into something
935 // dependent.
Douglas Gregor00c44862009-05-29 14:49:33 +0000936 bool Dependent = DC->isDependentContext();
Anders Carlssone41590d2009-06-24 00:10:43 +0000937 return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS);
Sebastian Redlebc07d52009-02-03 20:19:35 +0000938 }
939 }
940 }
941
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000942 // We may have found a field within an anonymous union or struct
943 // (C++ [class.union]).
944 if (FieldDecl *FD = dyn_cast<FieldDecl>(D))
945 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
946 return BuildAnonymousStructUnionMemberReference(Loc, FD);
Sebastian Redlcd965b92009-01-18 18:53:16 +0000947
Douglas Gregor88a35142008-12-22 05:46:06 +0000948 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
949 if (!MD->isStatic()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000950 // C++ [class.mfct.nonstatic]p2:
Douglas Gregor88a35142008-12-22 05:46:06 +0000951 // [...] if name lookup (3.4.1) resolves the name in the
952 // id-expression to a nonstatic nontype member of class X or of
953 // a base class of X, the id-expression is transformed into a
954 // class member access expression (5.2.5) using (*this) (9.3.2)
955 // as the postfix-expression to the left of the '.' operator.
956 DeclContext *Ctx = 0;
957 QualType MemberType;
958 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
959 Ctx = FD->getDeclContext();
960 MemberType = FD->getType();
961
Ted Kremenek6217b802009-07-29 21:53:49 +0000962 if (const ReferenceType *RefType = MemberType->getAs<ReferenceType>())
Douglas Gregor88a35142008-12-22 05:46:06 +0000963 MemberType = RefType->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +0000964 else if (!FD->isMutable())
965 MemberType
966 = Context.getQualifiedType(MemberType,
967 Qualifiers::fromCVRMask(MD->getTypeQualifiers()));
Douglas Gregor88a35142008-12-22 05:46:06 +0000968 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
969 if (!Method->isStatic()) {
970 Ctx = Method->getParent();
971 MemberType = Method->getType();
972 }
Mike Stump1eb44332009-09-09 15:08:12 +0000973 } else if (FunctionTemplateDecl *FunTmpl
Douglas Gregor6b906862009-08-21 00:16:32 +0000974 = dyn_cast<FunctionTemplateDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000975 if (CXXMethodDecl *Method
Douglas Gregor6b906862009-08-21 00:16:32 +0000976 = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl())) {
Mike Stump1eb44332009-09-09 15:08:12 +0000977 if (!Method->isStatic()) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000978 Ctx = Method->getParent();
979 MemberType = Context.OverloadTy;
980 }
981 }
Mike Stump1eb44332009-09-09 15:08:12 +0000982 } else if (OverloadedFunctionDecl *Ovl
Douglas Gregor88a35142008-12-22 05:46:06 +0000983 = dyn_cast<OverloadedFunctionDecl>(D)) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000984 // FIXME: We need an abstraction for iterating over one or more function
985 // templates or functions. This code is far too repetitive!
Mike Stump1eb44332009-09-09 15:08:12 +0000986 for (OverloadedFunctionDecl::function_iterator
Douglas Gregor88a35142008-12-22 05:46:06 +0000987 Func = Ovl->function_begin(),
988 FuncEnd = Ovl->function_end();
989 Func != FuncEnd; ++Func) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000990 CXXMethodDecl *DMethod = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000991 if (FunctionTemplateDecl *FunTmpl
Douglas Gregor6b906862009-08-21 00:16:32 +0000992 = dyn_cast<FunctionTemplateDecl>(*Func))
993 DMethod = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
994 else
995 DMethod = dyn_cast<CXXMethodDecl>(*Func);
996
997 if (DMethod && !DMethod->isStatic()) {
998 Ctx = DMethod->getDeclContext();
999 MemberType = Context.OverloadTy;
1000 break;
1001 }
Douglas Gregor88a35142008-12-22 05:46:06 +00001002 }
1003 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001004
1005 if (Ctx && Ctx->isRecord()) {
Douglas Gregor88a35142008-12-22 05:46:06 +00001006 QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx));
1007 QualType ThisType = Context.getTagDeclType(MD->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00001008 if ((Context.getCanonicalType(CtxType)
Douglas Gregor88a35142008-12-22 05:46:06 +00001009 == Context.getCanonicalType(ThisType)) ||
1010 IsDerivedFrom(ThisType, CtxType)) {
1011 // Build the implicit member access expression.
Steve Naroff6ece14c2009-01-21 00:14:39 +00001012 Expr *This = new (Context) CXXThisExpr(SourceLocation(),
Mike Stumpeed9cac2009-02-19 03:04:26 +00001013 MD->getThisType(Context));
Douglas Gregore0762c92009-06-19 23:52:42 +00001014 MarkDeclarationReferenced(Loc, D);
Fariborz Jahanianf3e53d32009-07-29 19:40:11 +00001015 if (PerformObjectMemberConversion(This, D))
1016 return ExprError();
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001017
Anders Carlssoned90c4e2009-09-11 05:54:14 +00001018 bool ShouldCheckUse = true;
1019 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
1020 // Don't diagnose the use of a virtual member function unless it's
1021 // explicitly qualified.
1022 if (MD->isVirtual() && (!SS || !SS->isSet()))
1023 ShouldCheckUse = false;
1024 }
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001025
Anders Carlssoned90c4e2009-09-11 05:54:14 +00001026 if (ShouldCheckUse && DiagnoseUseOfDecl(D, Loc))
Anders Carlsson0f44b5a2009-08-08 16:55:18 +00001027 return ExprError();
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00001028 return Owned(BuildMemberExpr(Context, This, true, SS, D,
1029 Loc, MemberType));
Douglas Gregor88a35142008-12-22 05:46:06 +00001030 }
1031 }
1032 }
1033 }
1034
Douglas Gregor44b43212008-12-11 16:49:14 +00001035 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001036 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
1037 if (MD->isStatic())
1038 // "invalid use of member 'x' in static member function"
Sebastian Redlcd965b92009-01-18 18:53:16 +00001039 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
1040 << FD->getDeclName());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001041 }
1042
Douglas Gregor88a35142008-12-22 05:46:06 +00001043 // Any other ways we could have found the field in a well-formed
1044 // program would have been turned into implicit member expressions
1045 // above.
Sebastian Redlcd965b92009-01-18 18:53:16 +00001046 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
1047 << FD->getDeclName());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001048 }
Douglas Gregor88a35142008-12-22 05:46:06 +00001049
Reid Spencer5f016e22007-07-11 17:01:13 +00001050 if (isa<TypedefDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +00001051 return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001052 if (isa<ObjCInterfaceDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +00001053 return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001054 if (isa<NamespaceDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +00001055 return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name);
Reid Spencer5f016e22007-07-11 17:01:13 +00001056
Steve Naroffdd972f22008-09-05 22:11:13 +00001057 // Make the DeclRefExpr or BlockDeclRefExpr for the decl.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001058 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D))
Anders Carlssone41590d2009-06-24 00:10:43 +00001059 return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc,
1060 false, false, SS);
Douglas Gregorc15cb382009-02-09 23:23:08 +00001061 else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
Anders Carlssone41590d2009-06-24 00:10:43 +00001062 return BuildDeclRefExpr(Template, Context.OverloadTy, Loc,
1063 false, false, SS);
Anders Carlsson598da5b2009-08-29 01:06:32 +00001064 else if (UnresolvedUsingDecl *UD = dyn_cast<UnresolvedUsingDecl>(D))
Mike Stump1eb44332009-09-09 15:08:12 +00001065 return BuildDeclRefExpr(UD, Context.DependentTy, Loc,
1066 /*TypeDependent=*/true,
Anders Carlsson598da5b2009-08-29 01:06:32 +00001067 /*ValueDependent=*/true, SS);
1068
Steve Naroffdd972f22008-09-05 22:11:13 +00001069 ValueDecl *VD = cast<ValueDecl>(D);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001070
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001071 // Check whether this declaration can be used. Note that we suppress
1072 // this check when we're going to perform argument-dependent lookup
1073 // on this function name, because this might not be the function
1074 // that overload resolution actually selects.
Mike Stump1eb44332009-09-09 15:08:12 +00001075 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
Douglas Gregor751f9a42009-06-30 15:47:41 +00001076 HasTrailingLParen;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001077 if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc))
1078 return ExprError();
1079
Steve Naroffdd972f22008-09-05 22:11:13 +00001080 // Only create DeclRefExpr's for valid Decl's.
1081 if (VD->isInvalidDecl())
Sebastian Redlcd965b92009-01-18 18:53:16 +00001082 return ExprError();
1083
Chris Lattner639e2d32008-10-20 05:16:36 +00001084 // If the identifier reference is inside a block, and it refers to a value
1085 // that is outside the block, create a BlockDeclRefExpr instead of a
1086 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
1087 // the block is formed.
Steve Naroffdd972f22008-09-05 22:11:13 +00001088 //
Chris Lattner639e2d32008-10-20 05:16:36 +00001089 // We do not do this for things like enum constants, global variables, etc,
1090 // as they do not get snapshotted.
1091 //
1092 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) {
Douglas Gregore0762c92009-06-19 23:52:42 +00001093 MarkDeclarationReferenced(Loc, VD);
Eli Friedman5fdeae12009-03-22 23:00:19 +00001094 QualType ExprTy = VD->getType().getNonReferenceType();
Steve Naroff090276f2008-10-10 01:28:17 +00001095 // The BlocksAttr indicates the variable is bound by-reference.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001096 if (VD->getAttr<BlocksAttr>())
Eli Friedman5fdeae12009-03-22 23:00:19 +00001097 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true));
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00001098 // This is to record that a 'const' was actually synthesize and added.
1099 bool constAdded = !ExprTy.isConstQualified();
Steve Naroff090276f2008-10-10 01:28:17 +00001100 // Variable will be bound by-copy, make it const within the closure.
Mike Stump1eb44332009-09-09 15:08:12 +00001101
Eli Friedman5fdeae12009-03-22 23:00:19 +00001102 ExprTy.addConst();
Mike Stump1eb44332009-09-09 15:08:12 +00001103 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false,
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00001104 constAdded));
Steve Naroff090276f2008-10-10 01:28:17 +00001105 }
1106 // If this reference is not in a block or if the referenced variable is
1107 // within the block, create a normal DeclRefExpr.
Douglas Gregor898574e2008-12-05 23:32:09 +00001108
Douglas Gregor898574e2008-12-05 23:32:09 +00001109 bool TypeDependent = false;
Douglas Gregor83f96f62008-12-10 20:57:37 +00001110 bool ValueDependent = false;
1111 if (getLangOptions().CPlusPlus) {
1112 // C++ [temp.dep.expr]p3:
Mike Stump1eb44332009-09-09 15:08:12 +00001113 // An id-expression is type-dependent if it contains:
Douglas Gregor83f96f62008-12-10 20:57:37 +00001114 // - an identifier that was declared with a dependent type,
1115 if (VD->getType()->isDependentType())
1116 TypeDependent = true;
1117 // - FIXME: a template-id that is dependent,
1118 // - a conversion-function-id that specifies a dependent type,
1119 else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
1120 Name.getCXXNameType()->isDependentType())
1121 TypeDependent = true;
1122 // - a nested-name-specifier that contains a class-name that
1123 // names a dependent type.
1124 else if (SS && !SS->isEmpty()) {
Douglas Gregore4e5b052009-03-19 00:18:19 +00001125 for (DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor83f96f62008-12-10 20:57:37 +00001126 DC; DC = DC->getParent()) {
1127 // FIXME: could stop early at namespace scope.
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001128 if (DC->isRecord()) {
Douglas Gregor83f96f62008-12-10 20:57:37 +00001129 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
1130 if (Context.getTypeDeclType(Record)->isDependentType()) {
1131 TypeDependent = true;
1132 break;
1133 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001134 }
1135 }
1136 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001137
Douglas Gregor83f96f62008-12-10 20:57:37 +00001138 // C++ [temp.dep.constexpr]p2:
1139 //
1140 // An identifier is value-dependent if it is:
1141 // - a name declared with a dependent type,
1142 if (TypeDependent)
1143 ValueDependent = true;
1144 // - the name of a non-type template parameter,
1145 else if (isa<NonTypeTemplateParmDecl>(VD))
1146 ValueDependent = true;
1147 // - a constant with integral or enumeration type and is
1148 // initialized with an expression that is value-dependent
Eli Friedmanc1494122009-06-11 01:11:20 +00001149 else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) {
John McCall0953e762009-09-24 19:53:00 +00001150 if (Dcl->getType().getCVRQualifiers() == Qualifiers::Const &&
Eli Friedmanc1494122009-06-11 01:11:20 +00001151 Dcl->getInit()) {
1152 ValueDependent = Dcl->getInit()->isValueDependent();
1153 }
1154 }
Douglas Gregor83f96f62008-12-10 20:57:37 +00001155 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001156
Anders Carlssone41590d2009-06-24 00:10:43 +00001157 return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc,
1158 TypeDependent, ValueDependent, SS);
Reid Spencer5f016e22007-07-11 17:01:13 +00001159}
1160
Sebastian Redlcd965b92009-01-18 18:53:16 +00001161Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
1162 tok::TokenKind Kind) {
Chris Lattnerd9f69102008-08-10 01:53:14 +00001163 PredefinedExpr::IdentType IT;
Sebastian Redlcd965b92009-01-18 18:53:16 +00001164
Reid Spencer5f016e22007-07-11 17:01:13 +00001165 switch (Kind) {
Chris Lattner1423ea42008-01-12 18:39:25 +00001166 default: assert(0 && "Unknown simple primary expr!");
Chris Lattnerd9f69102008-08-10 01:53:14 +00001167 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
1168 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
1169 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001170 }
Chris Lattner1423ea42008-01-12 18:39:25 +00001171
Chris Lattnerfa28b302008-01-12 08:14:25 +00001172 // Pre-defined identifiers are of type char[x], where x is the length of the
1173 // string.
Mike Stump1eb44332009-09-09 15:08:12 +00001174
Anders Carlsson3a082d82009-09-08 18:24:21 +00001175 Decl *currentDecl = getCurFunctionOrMethodDecl();
1176 if (!currentDecl) {
Chris Lattnerb0da9232008-12-12 05:05:20 +00001177 Diag(Loc, diag::ext_predef_outside_function);
Anders Carlsson3a082d82009-09-08 18:24:21 +00001178 currentDecl = Context.getTranslationUnitDecl();
Chris Lattnerb0da9232008-12-12 05:05:20 +00001179 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001180
Anders Carlsson773f3972009-09-11 01:22:35 +00001181 QualType ResTy;
1182 if (cast<DeclContext>(currentDecl)->isDependentContext()) {
1183 ResTy = Context.DependentTy;
1184 } else {
1185 unsigned Length =
1186 PredefinedExpr::ComputeName(Context, IT, currentDecl).length();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001187
Anders Carlsson773f3972009-09-11 01:22:35 +00001188 llvm::APInt LengthI(32, Length + 1);
John McCall0953e762009-09-24 19:53:00 +00001189 ResTy = Context.CharTy.withConst();
Anders Carlsson773f3972009-09-11 01:22:35 +00001190 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
1191 }
Steve Naroff6ece14c2009-01-21 00:14:39 +00001192 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Reid Spencer5f016e22007-07-11 17:01:13 +00001193}
1194
Sebastian Redlcd965b92009-01-18 18:53:16 +00001195Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001196 llvm::SmallString<16> CharBuffer;
1197 CharBuffer.resize(Tok.getLength());
1198 const char *ThisTokBegin = &CharBuffer[0];
1199 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001200
Reid Spencer5f016e22007-07-11 17:01:13 +00001201 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1202 Tok.getLocation(), PP);
1203 if (Literal.hadError())
Sebastian Redlcd965b92009-01-18 18:53:16 +00001204 return ExprError();
Chris Lattnerfc62bfd2008-03-01 08:32:21 +00001205
1206 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy;
1207
Sebastian Redle91b3bc2009-01-20 22:23:13 +00001208 return Owned(new (Context) CharacterLiteral(Literal.getValue(),
1209 Literal.isWide(),
1210 type, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001211}
1212
Sebastian Redlcd965b92009-01-18 18:53:16 +00001213Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) {
1214 // Fast path for a single digit (which is quite common). A single digit
Reid Spencer5f016e22007-07-11 17:01:13 +00001215 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
1216 if (Tok.getLength() == 1) {
Chris Lattner7216dc92009-01-26 22:36:52 +00001217 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Chris Lattner0c21e842009-01-16 07:10:29 +00001218 unsigned IntSize = Context.Target.getIntWidth();
Steve Naroff6ece14c2009-01-21 00:14:39 +00001219 return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'),
Steve Naroff0a473932009-01-20 19:53:53 +00001220 Context.IntTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001221 }
Ted Kremenek28396602009-01-13 23:19:12 +00001222
Reid Spencer5f016e22007-07-11 17:01:13 +00001223 llvm::SmallString<512> IntegerBuffer;
Chris Lattner2a299042008-09-30 20:53:45 +00001224 // Add padding so that NumericLiteralParser can overread by one character.
1225 IntegerBuffer.resize(Tok.getLength()+1);
Reid Spencer5f016e22007-07-11 17:01:13 +00001226 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlcd965b92009-01-18 18:53:16 +00001227
Reid Spencer5f016e22007-07-11 17:01:13 +00001228 // Get the spelling of the token, which eliminates trigraphs, etc.
1229 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001230
Mike Stump1eb44332009-09-09 15:08:12 +00001231 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
Reid Spencer5f016e22007-07-11 17:01:13 +00001232 Tok.getLocation(), PP);
1233 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +00001234 return ExprError();
1235
Chris Lattner5d661452007-08-26 03:42:43 +00001236 Expr *Res;
Sebastian Redlcd965b92009-01-18 18:53:16 +00001237
Chris Lattner5d661452007-08-26 03:42:43 +00001238 if (Literal.isFloatingLiteral()) {
Chris Lattner525a0502007-09-22 18:29:59 +00001239 QualType Ty;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001240 if (Literal.isFloat)
Chris Lattner525a0502007-09-22 18:29:59 +00001241 Ty = Context.FloatTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001242 else if (!Literal.isLong)
Chris Lattner525a0502007-09-22 18:29:59 +00001243 Ty = Context.DoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001244 else
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00001245 Ty = Context.LongDoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001246
1247 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
1248
Ted Kremenek720c4ec2007-11-29 00:56:49 +00001249 // isExact will be set by GetFloatValue().
1250 bool isExact = false;
Chris Lattner001d64d2009-06-29 17:34:55 +00001251 llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact);
1252 Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation());
Sebastian Redlcd965b92009-01-18 18:53:16 +00001253
Chris Lattner5d661452007-08-26 03:42:43 +00001254 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlcd965b92009-01-18 18:53:16 +00001255 return ExprError();
Chris Lattner5d661452007-08-26 03:42:43 +00001256 } else {
Chris Lattnerf0467b32008-04-02 04:24:33 +00001257 QualType Ty;
Reid Spencer5f016e22007-07-11 17:01:13 +00001258
Neil Boothb9449512007-08-29 22:00:19 +00001259 // long long is a C99 feature.
1260 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth79859c32007-08-29 22:13:52 +00001261 Literal.isLongLong)
Neil Boothb9449512007-08-29 22:00:19 +00001262 Diag(Tok.getLocation(), diag::ext_longlong);
1263
Reid Spencer5f016e22007-07-11 17:01:13 +00001264 // Get the value in the widest-possible width.
Chris Lattner98be4942008-03-05 18:54:05 +00001265 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001266
Reid Spencer5f016e22007-07-11 17:01:13 +00001267 if (Literal.GetIntegerValue(ResultVal)) {
1268 // If this value didn't fit into uintmax_t, warn and force to ull.
1269 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattnerf0467b32008-04-02 04:24:33 +00001270 Ty = Context.UnsignedLongLongTy;
1271 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner98be4942008-03-05 18:54:05 +00001272 "long long is not intmax_t?");
Reid Spencer5f016e22007-07-11 17:01:13 +00001273 } else {
1274 // If this value fits into a ULL, try to figure out what else it fits into
1275 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlcd965b92009-01-18 18:53:16 +00001276
Reid Spencer5f016e22007-07-11 17:01:13 +00001277 // Octal, Hexadecimal, and integers with a U suffix are allowed to
1278 // be an unsigned int.
1279 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
1280
1281 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001282 unsigned Width = 0;
Chris Lattner97c51562007-08-23 21:58:08 +00001283 if (!Literal.isLong && !Literal.isLongLong) {
1284 // Are int/unsigned possibilities?
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001285 unsigned IntSize = Context.Target.getIntWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001286
Reid Spencer5f016e22007-07-11 17:01:13 +00001287 // Does it fit in a unsigned int?
1288 if (ResultVal.isIntN(IntSize)) {
1289 // Does it fit in a signed int?
1290 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001291 Ty = Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001292 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001293 Ty = Context.UnsignedIntTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001294 Width = IntSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001295 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001296 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001297
Reid Spencer5f016e22007-07-11 17:01:13 +00001298 // Are long/unsigned long possibilities?
Chris Lattnerf0467b32008-04-02 04:24:33 +00001299 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001300 unsigned LongSize = Context.Target.getLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001301
Reid Spencer5f016e22007-07-11 17:01:13 +00001302 // Does it fit in a unsigned long?
1303 if (ResultVal.isIntN(LongSize)) {
1304 // Does it fit in a signed long?
1305 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001306 Ty = Context.LongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001307 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001308 Ty = Context.UnsignedLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001309 Width = LongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001310 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001311 }
1312
Reid Spencer5f016e22007-07-11 17:01:13 +00001313 // Finally, check long long if needed.
Chris Lattnerf0467b32008-04-02 04:24:33 +00001314 if (Ty.isNull()) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001315 unsigned LongLongSize = Context.Target.getLongLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001316
Reid Spencer5f016e22007-07-11 17:01:13 +00001317 // Does it fit in a unsigned long long?
1318 if (ResultVal.isIntN(LongLongSize)) {
1319 // Does it fit in a signed long long?
1320 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001321 Ty = Context.LongLongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001322 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001323 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001324 Width = LongLongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001325 }
1326 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001327
Reid Spencer5f016e22007-07-11 17:01:13 +00001328 // If we still couldn't decide a type, we probably have something that
1329 // does not fit in a signed long long, but has no U suffix.
Chris Lattnerf0467b32008-04-02 04:24:33 +00001330 if (Ty.isNull()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001331 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattnerf0467b32008-04-02 04:24:33 +00001332 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001333 Width = Context.Target.getLongLongWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +00001334 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001335
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001336 if (ResultVal.getBitWidth() != Width)
1337 ResultVal.trunc(Width);
Reid Spencer5f016e22007-07-11 17:01:13 +00001338 }
Sebastian Redle91b3bc2009-01-20 22:23:13 +00001339 Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001340 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001341
Chris Lattner5d661452007-08-26 03:42:43 +00001342 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
1343 if (Literal.isImaginary)
Mike Stump1eb44332009-09-09 15:08:12 +00001344 Res = new (Context) ImaginaryLiteral(Res,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001345 Context.getComplexType(Res->getType()));
Sebastian Redlcd965b92009-01-18 18:53:16 +00001346
1347 return Owned(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +00001348}
1349
Sebastian Redlcd965b92009-01-18 18:53:16 +00001350Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L,
1351 SourceLocation R, ExprArg Val) {
Anders Carlssone9146f22009-05-01 19:49:17 +00001352 Expr *E = Val.takeAs<Expr>();
Chris Lattnerf0467b32008-04-02 04:24:33 +00001353 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Naroff6ece14c2009-01-21 00:14:39 +00001354 return Owned(new (Context) ParenExpr(L, R, E));
Reid Spencer5f016e22007-07-11 17:01:13 +00001355}
1356
1357/// The UsualUnaryConversions() function is *not* called by this routine.
1358/// See C99 6.3.2.1p[2-4] for more details.
Sebastian Redl28507842009-02-26 14:39:58 +00001359bool Sema::CheckSizeOfAlignOfOperand(QualType exprType,
Sebastian Redl05189992008-11-11 17:56:53 +00001360 SourceLocation OpLoc,
1361 const SourceRange &ExprRange,
1362 bool isSizeof) {
Sebastian Redl28507842009-02-26 14:39:58 +00001363 if (exprType->isDependentType())
1364 return false;
1365
Reid Spencer5f016e22007-07-11 17:01:13 +00001366 // C99 6.5.3.4p1:
Chris Lattner01072922009-01-24 19:46:37 +00001367 if (isa<FunctionType>(exprType)) {
Chris Lattner1efaa952009-04-24 00:30:45 +00001368 // alignof(function) is allowed as an extension.
Chris Lattner01072922009-01-24 19:46:37 +00001369 if (isSizeof)
1370 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange;
1371 return false;
1372 }
Mike Stump1eb44332009-09-09 15:08:12 +00001373
Chris Lattner1efaa952009-04-24 00:30:45 +00001374 // Allow sizeof(void)/alignof(void) as an extension.
Chris Lattner01072922009-01-24 19:46:37 +00001375 if (exprType->isVoidType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001376 Diag(OpLoc, diag::ext_sizeof_void_type)
1377 << (isSizeof ? "sizeof" : "__alignof") << ExprRange;
Chris Lattner01072922009-01-24 19:46:37 +00001378 return false;
1379 }
Mike Stump1eb44332009-09-09 15:08:12 +00001380
Chris Lattner1efaa952009-04-24 00:30:45 +00001381 if (RequireCompleteType(OpLoc, exprType,
Mike Stump1eb44332009-09-09 15:08:12 +00001382 isSizeof ? diag::err_sizeof_incomplete_type :
Anders Carlssonb7906612009-08-26 23:45:07 +00001383 PDiag(diag::err_alignof_incomplete_type)
1384 << ExprRange))
Chris Lattner1efaa952009-04-24 00:30:45 +00001385 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001386
Chris Lattner1efaa952009-04-24 00:30:45 +00001387 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
Fariborz Jahanianced1e282009-04-24 17:34:33 +00001388 if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) {
Chris Lattner1efaa952009-04-24 00:30:45 +00001389 Diag(OpLoc, diag::err_sizeof_nonfragile_interface)
Chris Lattner5cb10d32009-04-24 22:30:50 +00001390 << exprType << isSizeof << ExprRange;
1391 return true;
Chris Lattnerca790922009-04-21 19:55:16 +00001392 }
Mike Stump1eb44332009-09-09 15:08:12 +00001393
Chris Lattner1efaa952009-04-24 00:30:45 +00001394 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001395}
1396
Chris Lattner31e21e02009-01-24 20:17:12 +00001397bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc,
1398 const SourceRange &ExprRange) {
1399 E = E->IgnoreParens();
Sebastian Redl28507842009-02-26 14:39:58 +00001400
Mike Stump1eb44332009-09-09 15:08:12 +00001401 // alignof decl is always ok.
Chris Lattner31e21e02009-01-24 20:17:12 +00001402 if (isa<DeclRefExpr>(E))
1403 return false;
Sebastian Redl28507842009-02-26 14:39:58 +00001404
1405 // Cannot know anything else if the expression is dependent.
1406 if (E->isTypeDependent())
1407 return false;
1408
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001409 if (E->getBitField()) {
1410 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange;
1411 return true;
Chris Lattner31e21e02009-01-24 20:17:12 +00001412 }
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001413
1414 // Alignment of a field access is always okay, so long as it isn't a
1415 // bit-field.
1416 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
Mike Stump8e1fab22009-07-22 18:58:19 +00001417 if (isa<FieldDecl>(ME->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001418 return false;
1419
Chris Lattner31e21e02009-01-24 20:17:12 +00001420 return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false);
1421}
1422
Douglas Gregorba498172009-03-13 21:01:28 +00001423/// \brief Build a sizeof or alignof expression given a type operand.
Mike Stump1eb44332009-09-09 15:08:12 +00001424Action::OwningExprResult
1425Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc,
Douglas Gregorba498172009-03-13 21:01:28 +00001426 bool isSizeOf, SourceRange R) {
1427 if (T.isNull())
1428 return ExprError();
1429
1430 if (!T->isDependentType() &&
1431 CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf))
1432 return ExprError();
1433
1434 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1435 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T,
1436 Context.getSizeType(), OpLoc,
1437 R.getEnd()));
1438}
1439
1440/// \brief Build a sizeof or alignof expression given an expression
1441/// operand.
Mike Stump1eb44332009-09-09 15:08:12 +00001442Action::OwningExprResult
1443Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc,
Douglas Gregorba498172009-03-13 21:01:28 +00001444 bool isSizeOf, SourceRange R) {
1445 // Verify that the operand is valid.
1446 bool isInvalid = false;
1447 if (E->isTypeDependent()) {
1448 // Delay type-checking for type-dependent expressions.
1449 } else if (!isSizeOf) {
1450 isInvalid = CheckAlignOfExpr(E, OpLoc, R);
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001451 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Douglas Gregorba498172009-03-13 21:01:28 +00001452 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0;
1453 isInvalid = true;
1454 } else {
1455 isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true);
1456 }
1457
1458 if (isInvalid)
1459 return ExprError();
1460
1461 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1462 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E,
1463 Context.getSizeType(), OpLoc,
1464 R.getEnd()));
1465}
1466
Sebastian Redl05189992008-11-11 17:56:53 +00001467/// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and
1468/// the same for @c alignof and @c __alignof
1469/// Note that the ArgRange is invalid if isType is false.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001470Action::OwningExprResult
Sebastian Redl05189992008-11-11 17:56:53 +00001471Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType,
1472 void *TyOrEx, const SourceRange &ArgRange) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001473 // If error parsing type, ignore.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001474 if (TyOrEx == 0) return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001475
Sebastian Redl05189992008-11-11 17:56:53 +00001476 if (isType) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001477 // FIXME: Preserve type source info.
1478 QualType ArgTy = GetTypeFromParser(TyOrEx);
Douglas Gregorba498172009-03-13 21:01:28 +00001479 return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange);
Mike Stump1eb44332009-09-09 15:08:12 +00001480 }
Sebastian Redl05189992008-11-11 17:56:53 +00001481
Douglas Gregorba498172009-03-13 21:01:28 +00001482 // Get the end location.
1483 Expr *ArgEx = (Expr *)TyOrEx;
1484 Action::OwningExprResult Result
1485 = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange());
1486
1487 if (Result.isInvalid())
1488 DeleteExpr(ArgEx);
1489
1490 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001491}
1492
Chris Lattnerba27e2a2009-02-17 08:12:06 +00001493QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) {
Sebastian Redl28507842009-02-26 14:39:58 +00001494 if (V->isTypeDependent())
1495 return Context.DependentTy;
Mike Stump1eb44332009-09-09 15:08:12 +00001496
Chris Lattnercc26ed72007-08-26 05:39:26 +00001497 // These operators return the element type of a complex type.
John McCall183700f2009-09-21 23:43:11 +00001498 if (const ComplexType *CT = V->getType()->getAs<ComplexType>())
Chris Lattnerdbb36972007-08-24 21:16:53 +00001499 return CT->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00001500
Chris Lattnercc26ed72007-08-26 05:39:26 +00001501 // Otherwise they pass through real integer and floating point types here.
1502 if (V->getType()->isArithmeticType())
1503 return V->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001504
Chris Lattnercc26ed72007-08-26 05:39:26 +00001505 // Reject anything else.
Chris Lattnerba27e2a2009-02-17 08:12:06 +00001506 Diag(Loc, diag::err_realimag_invalid_type) << V->getType()
1507 << (isReal ? "__real" : "__imag");
Chris Lattnercc26ed72007-08-26 05:39:26 +00001508 return QualType();
Chris Lattnerdbb36972007-08-24 21:16:53 +00001509}
1510
1511
Reid Spencer5f016e22007-07-11 17:01:13 +00001512
Sebastian Redl0eb23302009-01-19 00:08:26 +00001513Action::OwningExprResult
1514Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
1515 tok::TokenKind Kind, ExprArg Input) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00001516 // Since this might be a postfix expression, get rid of ParenListExprs.
1517 Input = MaybeConvertParenListExprToParenExpr(S, move(Input));
Sebastian Redl0eb23302009-01-19 00:08:26 +00001518 Expr *Arg = (Expr *)Input.get();
Douglas Gregor74253732008-11-19 15:42:04 +00001519
Reid Spencer5f016e22007-07-11 17:01:13 +00001520 UnaryOperator::Opcode Opc;
1521 switch (Kind) {
1522 default: assert(0 && "Unknown unary op!");
1523 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
1524 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
1525 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00001526
Douglas Gregor74253732008-11-19 15:42:04 +00001527 if (getLangOptions().CPlusPlus &&
1528 (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) {
1529 // Which overloaded operator?
Sebastian Redl0eb23302009-01-19 00:08:26 +00001530 OverloadedOperatorKind OverOp =
Douglas Gregor74253732008-11-19 15:42:04 +00001531 (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus;
1532
1533 // C++ [over.inc]p1:
1534 //
1535 // [...] If the function is a member function with one
1536 // parameter (which shall be of type int) or a non-member
1537 // function with two parameters (the second of which shall be
1538 // of type int), it defines the postfix increment operator ++
1539 // for objects of that type. When the postfix increment is
1540 // called as a result of using the ++ operator, the int
1541 // argument will have value zero.
Mike Stump1eb44332009-09-09 15:08:12 +00001542 Expr *Args[2] = {
1543 Arg,
1544 new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001545 /*isSigned=*/true), Context.IntTy, SourceLocation())
Douglas Gregor74253732008-11-19 15:42:04 +00001546 };
1547
1548 // Build the candidate set for overloading
1549 OverloadCandidateSet CandidateSet;
Douglas Gregor063daf62009-03-13 18:40:31 +00001550 AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet);
Douglas Gregor74253732008-11-19 15:42:04 +00001551
1552 // Perform overload resolution.
1553 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001554 switch (BestViableFunction(CandidateSet, OpLoc, Best)) {
Douglas Gregor74253732008-11-19 15:42:04 +00001555 case OR_Success: {
1556 // We found a built-in operator or an overloaded operator.
1557 FunctionDecl *FnDecl = Best->Function;
1558
1559 if (FnDecl) {
1560 // We matched an overloaded operator. Build a call to that
1561 // operator.
1562
1563 // Convert the arguments.
1564 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1565 if (PerformObjectArgumentInitialization(Arg, Method))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001566 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001567 } else {
1568 // Convert the arguments.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001569 if (PerformCopyInitialization(Arg,
Douglas Gregor74253732008-11-19 15:42:04 +00001570 FnDecl->getParamDecl(0)->getType(),
1571 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001572 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001573 }
1574
1575 // Determine the result type
Sebastian Redl0eb23302009-01-19 00:08:26 +00001576 QualType ResultTy
John McCall183700f2009-09-21 23:43:11 +00001577 = FnDecl->getType()->getAs<FunctionType>()->getResultType();
Douglas Gregor74253732008-11-19 15:42:04 +00001578 ResultTy = ResultTy.getNonReferenceType();
Sebastian Redl0eb23302009-01-19 00:08:26 +00001579
Douglas Gregor74253732008-11-19 15:42:04 +00001580 // Build the actual expression node.
Steve Naroff6ece14c2009-01-21 00:14:39 +00001581 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
Mike Stump488e25b2009-02-19 02:54:59 +00001582 SourceLocation());
Douglas Gregor74253732008-11-19 15:42:04 +00001583 UsualUnaryConversions(FnExpr);
1584
Sebastian Redl0eb23302009-01-19 00:08:26 +00001585 Input.release();
Douglas Gregor7ff69262009-05-27 05:00:47 +00001586 Args[0] = Arg;
Douglas Gregor063daf62009-03-13 18:40:31 +00001587 return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr,
Mike Stump1eb44332009-09-09 15:08:12 +00001588 Args, 2, ResultTy,
Douglas Gregor063daf62009-03-13 18:40:31 +00001589 OpLoc));
Douglas Gregor74253732008-11-19 15:42:04 +00001590 } else {
1591 // We matched a built-in operator. Convert the arguments, then
1592 // break out so that we will build the appropriate built-in
1593 // operator node.
1594 if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0],
1595 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001596 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001597
1598 break;
Sebastian Redl0eb23302009-01-19 00:08:26 +00001599 }
Douglas Gregor74253732008-11-19 15:42:04 +00001600 }
1601
Douglas Gregor33074752009-09-30 21:46:01 +00001602 case OR_No_Viable_Function: {
1603 // No viable function; try checking this as a built-in operator, which
1604 // will fail and provide a diagnostic. Then, print the overload
1605 // candidates.
1606 OwningExprResult Result = CreateBuiltinUnaryOp(OpLoc, Opc, move(Input));
1607 assert(Result.isInvalid() &&
1608 "C++ postfix-unary operator overloading is missing candidates!");
1609 if (Result.isInvalid())
1610 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
1611
1612 return move(Result);
1613 }
1614
Douglas Gregor74253732008-11-19 15:42:04 +00001615 case OR_Ambiguous:
1616 Diag(OpLoc, diag::err_ovl_ambiguous_oper)
1617 << UnaryOperator::getOpcodeStr(Opc)
1618 << Arg->getSourceRange();
1619 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001620 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001621
1622 case OR_Deleted:
1623 Diag(OpLoc, diag::err_ovl_deleted_oper)
1624 << Best->Function->isDeleted()
1625 << UnaryOperator::getOpcodeStr(Opc)
1626 << Arg->getSourceRange();
1627 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1628 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001629 }
1630
1631 // Either we found no viable overloaded operator or we matched a
1632 // built-in operator. In either case, fall through to trying to
1633 // build a built-in operation.
1634 }
1635
Eli Friedman6016cb22009-07-22 23:24:42 +00001636 Input.release();
1637 Input = Arg;
Eli Friedmande99a452009-07-22 22:25:00 +00001638 return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input));
Reid Spencer5f016e22007-07-11 17:01:13 +00001639}
1640
Sebastian Redl0eb23302009-01-19 00:08:26 +00001641Action::OwningExprResult
1642Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc,
1643 ExprArg Idx, SourceLocation RLoc) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00001644 // Since this might be a postfix expression, get rid of ParenListExprs.
1645 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
1646
Sebastian Redl0eb23302009-01-19 00:08:26 +00001647 Expr *LHSExp = static_cast<Expr*>(Base.get()),
1648 *RHSExp = static_cast<Expr*>(Idx.get());
Mike Stump1eb44332009-09-09 15:08:12 +00001649
Douglas Gregor337c6b92008-11-19 17:17:41 +00001650 if (getLangOptions().CPlusPlus &&
Douglas Gregor3384c9c2009-05-19 00:01:19 +00001651 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
1652 Base.release();
1653 Idx.release();
1654 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
1655 Context.DependentTy, RLoc));
1656 }
1657
Mike Stump1eb44332009-09-09 15:08:12 +00001658 if (getLangOptions().CPlusPlus &&
Sebastian Redl0eb23302009-01-19 00:08:26 +00001659 (LHSExp->getType()->isRecordType() ||
Eli Friedman03f332a2008-12-15 22:34:21 +00001660 LHSExp->getType()->isEnumeralType() ||
1661 RHSExp->getType()->isRecordType() ||
1662 RHSExp->getType()->isEnumeralType())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001663 // Add the appropriate overloaded operators (C++ [over.match.oper])
Douglas Gregor337c6b92008-11-19 17:17:41 +00001664 // to the candidate set.
1665 OverloadCandidateSet CandidateSet;
1666 Expr *Args[2] = { LHSExp, RHSExp };
Douglas Gregor063daf62009-03-13 18:40:31 +00001667 AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet,
1668 SourceRange(LLoc, RLoc));
Sebastian Redl0eb23302009-01-19 00:08:26 +00001669
Douglas Gregor337c6b92008-11-19 17:17:41 +00001670 // Perform overload resolution.
1671 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001672 switch (BestViableFunction(CandidateSet, LLoc, Best)) {
Douglas Gregor337c6b92008-11-19 17:17:41 +00001673 case OR_Success: {
1674 // We found a built-in operator or an overloaded operator.
1675 FunctionDecl *FnDecl = Best->Function;
1676
1677 if (FnDecl) {
1678 // We matched an overloaded operator. Build a call to that
1679 // operator.
1680
1681 // Convert the arguments.
1682 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1683 if (PerformObjectArgumentInitialization(LHSExp, Method) ||
Mike Stump1eb44332009-09-09 15:08:12 +00001684 PerformCopyInitialization(RHSExp,
Douglas Gregor337c6b92008-11-19 17:17:41 +00001685 FnDecl->getParamDecl(0)->getType(),
1686 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001687 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001688 } else {
1689 // Convert the arguments.
1690 if (PerformCopyInitialization(LHSExp,
1691 FnDecl->getParamDecl(0)->getType(),
1692 "passing") ||
1693 PerformCopyInitialization(RHSExp,
1694 FnDecl->getParamDecl(1)->getType(),
1695 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001696 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001697 }
1698
1699 // Determine the result type
Sebastian Redl0eb23302009-01-19 00:08:26 +00001700 QualType ResultTy
John McCall183700f2009-09-21 23:43:11 +00001701 = FnDecl->getType()->getAs<FunctionType>()->getResultType();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001702 ResultTy = ResultTy.getNonReferenceType();
Sebastian Redl0eb23302009-01-19 00:08:26 +00001703
Douglas Gregor337c6b92008-11-19 17:17:41 +00001704 // Build the actual expression node.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001705 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
1706 SourceLocation());
Douglas Gregor337c6b92008-11-19 17:17:41 +00001707 UsualUnaryConversions(FnExpr);
1708
Sebastian Redl0eb23302009-01-19 00:08:26 +00001709 Base.release();
1710 Idx.release();
Douglas Gregor7ff69262009-05-27 05:00:47 +00001711 Args[0] = LHSExp;
1712 Args[1] = RHSExp;
Douglas Gregor063daf62009-03-13 18:40:31 +00001713 return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript,
Mike Stump1eb44332009-09-09 15:08:12 +00001714 FnExpr, Args, 2,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001715 ResultTy, LLoc));
Douglas Gregor337c6b92008-11-19 17:17:41 +00001716 } else {
1717 // We matched a built-in operator. Convert the arguments, then
1718 // break out so that we will build the appropriate built-in
1719 // operator node.
1720 if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0],
1721 "passing") ||
1722 PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1],
1723 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001724 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001725
1726 break;
1727 }
1728 }
1729
1730 case OR_No_Viable_Function:
1731 // No viable function; fall through to handling this as a
1732 // built-in operator, which will produce an error message for us.
1733 break;
1734
1735 case OR_Ambiguous:
1736 Diag(LLoc, diag::err_ovl_ambiguous_oper)
1737 << "[]"
1738 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1739 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001740 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001741
1742 case OR_Deleted:
1743 Diag(LLoc, diag::err_ovl_deleted_oper)
1744 << Best->Function->isDeleted()
1745 << "[]"
1746 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1747 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1748 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001749 }
1750
1751 // Either we found no viable overloaded operator or we matched a
1752 // built-in operator. In either case, fall through to trying to
1753 // build a built-in operation.
1754 }
1755
Chris Lattner12d9ff62007-07-16 00:14:47 +00001756 // Perform default conversions.
1757 DefaultFunctionArrayConversion(LHSExp);
1758 DefaultFunctionArrayConversion(RHSExp);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001759
Chris Lattner12d9ff62007-07-16 00:14:47 +00001760 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001761
Reid Spencer5f016e22007-07-11 17:01:13 +00001762 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001763 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stumpeed9cac2009-02-19 03:04:26 +00001764 // in the subscript position. As a result, we need to derive the array base
Reid Spencer5f016e22007-07-11 17:01:13 +00001765 // and index from the expression types.
Chris Lattner12d9ff62007-07-16 00:14:47 +00001766 Expr *BaseExpr, *IndexExpr;
1767 QualType ResultType;
Sebastian Redl28507842009-02-26 14:39:58 +00001768 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
1769 BaseExpr = LHSExp;
1770 IndexExpr = RHSExp;
1771 ResultType = Context.DependentTy;
Ted Kremenek6217b802009-07-29 21:53:49 +00001772 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
Chris Lattner12d9ff62007-07-16 00:14:47 +00001773 BaseExpr = LHSExp;
1774 IndexExpr = RHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00001775 ResultType = PTy->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001776 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
Chris Lattner7a2e0472007-07-16 00:23:25 +00001777 // Handle the uncommon case of "123[Ptr]".
Chris Lattner12d9ff62007-07-16 00:14:47 +00001778 BaseExpr = RHSExp;
1779 IndexExpr = LHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00001780 ResultType = PTy->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00001781 } else if (const ObjCObjectPointerType *PTy =
John McCall183700f2009-09-21 23:43:11 +00001782 LHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00001783 BaseExpr = LHSExp;
1784 IndexExpr = RHSExp;
1785 ResultType = PTy->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00001786 } else if (const ObjCObjectPointerType *PTy =
John McCall183700f2009-09-21 23:43:11 +00001787 RHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00001788 // Handle the uncommon case of "123[Ptr]".
1789 BaseExpr = RHSExp;
1790 IndexExpr = LHSExp;
1791 ResultType = PTy->getPointeeType();
John McCall183700f2009-09-21 23:43:11 +00001792 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
Chris Lattnerc8629632007-07-31 19:29:30 +00001793 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner12d9ff62007-07-16 00:14:47 +00001794 IndexExpr = RHSExp;
Nate Begeman334a8022009-01-18 00:45:31 +00001795
Chris Lattner12d9ff62007-07-16 00:14:47 +00001796 // FIXME: need to deal with const...
1797 ResultType = VTy->getElementType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00001798 } else if (LHSTy->isArrayType()) {
1799 // If we see an array that wasn't promoted by
1800 // DefaultFunctionArrayConversion, it must be an array that
1801 // wasn't promoted because of the C90 rule that doesn't
1802 // allow promoting non-lvalue arrays. Warn, then
1803 // force the promotion here.
1804 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1805 LHSExp->getSourceRange();
1806 ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy));
1807 LHSTy = LHSExp->getType();
1808
1809 BaseExpr = LHSExp;
1810 IndexExpr = RHSExp;
Ted Kremenek6217b802009-07-29 21:53:49 +00001811 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00001812 } else if (RHSTy->isArrayType()) {
1813 // Same as previous, except for 123[f().a] case
1814 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1815 RHSExp->getSourceRange();
1816 ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy));
1817 RHSTy = RHSExp->getType();
1818
1819 BaseExpr = RHSExp;
1820 IndexExpr = LHSExp;
Ted Kremenek6217b802009-07-29 21:53:49 +00001821 ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001822 } else {
Chris Lattner338395d2009-04-25 22:50:55 +00001823 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
1824 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +00001825 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001826 // C99 6.5.2.1p1
Nate Begeman2ef13e52009-08-10 23:49:36 +00001827 if (!(IndexExpr->getType()->isIntegerType() &&
1828 IndexExpr->getType()->isScalarType()) && !IndexExpr->isTypeDependent())
Chris Lattner338395d2009-04-25 22:50:55 +00001829 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
1830 << IndexExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00001831
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001832 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
Sam Weinig0f9a5b52009-09-14 20:14:57 +00001833 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
1834 && !IndexExpr->isTypeDependent())
Sam Weinig76e2b712009-09-14 01:58:58 +00001835 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
1836
Douglas Gregore7450f52009-03-24 19:52:54 +00001837 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
Mike Stump1eb44332009-09-09 15:08:12 +00001838 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
1839 // type. Note that Functions are not objects, and that (in C99 parlance)
Douglas Gregore7450f52009-03-24 19:52:54 +00001840 // incomplete types are not object types.
1841 if (ResultType->isFunctionType()) {
1842 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
1843 << ResultType << BaseExpr->getSourceRange();
1844 return ExprError();
1845 }
Mike Stump1eb44332009-09-09 15:08:12 +00001846
Douglas Gregore7450f52009-03-24 19:52:54 +00001847 if (!ResultType->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001848 RequireCompleteType(LLoc, ResultType,
Anders Carlssonb7906612009-08-26 23:45:07 +00001849 PDiag(diag::err_subscript_incomplete_type)
1850 << BaseExpr->getSourceRange()))
Douglas Gregore7450f52009-03-24 19:52:54 +00001851 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00001852
Chris Lattner1efaa952009-04-24 00:30:45 +00001853 // Diagnose bad cases where we step over interface counts.
1854 if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
1855 Diag(LLoc, diag::err_subscript_nonfragile_interface)
1856 << ResultType << BaseExpr->getSourceRange();
1857 return ExprError();
1858 }
Mike Stump1eb44332009-09-09 15:08:12 +00001859
Sebastian Redl0eb23302009-01-19 00:08:26 +00001860 Base.release();
1861 Idx.release();
Mike Stumpeed9cac2009-02-19 03:04:26 +00001862 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001863 ResultType, RLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001864}
1865
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001866QualType Sema::
Nate Begeman213541a2008-04-18 23:10:10 +00001867CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001868 const IdentifierInfo *CompName,
Anders Carlsson8f28f992009-08-26 18:25:21 +00001869 SourceLocation CompLoc) {
John McCall183700f2009-09-21 23:43:11 +00001870 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
Nate Begeman8a997642008-05-09 06:41:27 +00001871
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001872 // The vector accessor can't exceed the number of elements.
Anders Carlsson8f28f992009-08-26 18:25:21 +00001873 const char *compStr = CompName->getName();
Nate Begeman353417a2009-01-18 01:47:54 +00001874
Mike Stumpeed9cac2009-02-19 03:04:26 +00001875 // This flag determines whether or not the component is one of the four
Nate Begeman353417a2009-01-18 01:47:54 +00001876 // special names that indicate a subset of exactly half the elements are
1877 // to be selected.
1878 bool HalvingSwizzle = false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00001879
Nate Begeman353417a2009-01-18 01:47:54 +00001880 // This flag determines whether or not CompName has an 's' char prefix,
1881 // indicating that it is a string of hex values to be used as vector indices.
Nate Begeman131f4652009-06-25 21:06:09 +00001882 bool HexSwizzle = *compStr == 's' || *compStr == 'S';
Nate Begeman8a997642008-05-09 06:41:27 +00001883
1884 // Check that we've found one of the special components, or that the component
1885 // names must come from the same set.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001886 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
Nate Begeman353417a2009-01-18 01:47:54 +00001887 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
1888 HalvingSwizzle = true;
Nate Begeman8a997642008-05-09 06:41:27 +00001889 } else if (vecType->getPointAccessorIdx(*compStr) != -1) {
Chris Lattner88dca042007-08-02 22:33:49 +00001890 do
1891 compStr++;
1892 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
Nate Begeman353417a2009-01-18 01:47:54 +00001893 } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) {
Chris Lattner88dca042007-08-02 22:33:49 +00001894 do
1895 compStr++;
Nate Begeman353417a2009-01-18 01:47:54 +00001896 while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1);
Chris Lattner88dca042007-08-02 22:33:49 +00001897 }
Nate Begeman353417a2009-01-18 01:47:54 +00001898
Mike Stumpeed9cac2009-02-19 03:04:26 +00001899 if (!HalvingSwizzle && *compStr) {
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001900 // We didn't get to the end of the string. This means the component names
1901 // didn't come from the same set *or* we encountered an illegal name.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001902 Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
1903 << std::string(compStr,compStr+1) << SourceRange(CompLoc);
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001904 return QualType();
1905 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00001906
Nate Begeman353417a2009-01-18 01:47:54 +00001907 // Ensure no component accessor exceeds the width of the vector type it
1908 // operates on.
1909 if (!HalvingSwizzle) {
Anders Carlsson8f28f992009-08-26 18:25:21 +00001910 compStr = CompName->getName();
Nate Begeman353417a2009-01-18 01:47:54 +00001911
1912 if (HexSwizzle)
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001913 compStr++;
Nate Begeman353417a2009-01-18 01:47:54 +00001914
1915 while (*compStr) {
1916 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
1917 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
1918 << baseType << SourceRange(CompLoc);
1919 return QualType();
1920 }
1921 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001922 }
Nate Begeman8a997642008-05-09 06:41:27 +00001923
Nate Begeman353417a2009-01-18 01:47:54 +00001924 // If this is a halving swizzle, verify that the base type has an even
1925 // number of elements.
1926 if (HalvingSwizzle && (vecType->getNumElements() & 1U)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001927 Diag(OpLoc, diag::err_ext_vector_component_requires_even)
Chris Lattnerd1625842008-11-24 06:25:27 +00001928 << baseType << SourceRange(CompLoc);
Nate Begeman8a997642008-05-09 06:41:27 +00001929 return QualType();
1930 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00001931
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001932 // The component accessor looks fine - now we need to compute the actual type.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001933 // The vector type is implied by the component accessor. For example,
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001934 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begeman353417a2009-01-18 01:47:54 +00001935 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
Nate Begeman8a997642008-05-09 06:41:27 +00001936 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
Nate Begeman353417a2009-01-18 01:47:54 +00001937 unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2
Anders Carlsson8f28f992009-08-26 18:25:21 +00001938 : CompName->getLength();
Nate Begeman353417a2009-01-18 01:47:54 +00001939 if (HexSwizzle)
1940 CompSize--;
1941
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001942 if (CompSize == 1)
1943 return vecType->getElementType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00001944
Nate Begeman213541a2008-04-18 23:10:10 +00001945 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize);
Mike Stumpeed9cac2009-02-19 03:04:26 +00001946 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begeman213541a2008-04-18 23:10:10 +00001947 // diagostics look bad. We want extended vector types to appear built-in.
1948 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) {
1949 if (ExtVectorDecls[i]->getUnderlyingType() == VT)
1950 return Context.getTypedefType(ExtVectorDecls[i]);
Steve Naroffbea0b342007-07-29 16:33:31 +00001951 }
1952 return VT; // should never get here (a typedef type should always be found).
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001953}
1954
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001955static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
Anders Carlsson8f28f992009-08-26 18:25:21 +00001956 IdentifierInfo *Member,
Douglas Gregor6ab35242009-04-09 21:40:53 +00001957 const Selector &Sel,
1958 ASTContext &Context) {
Mike Stump1eb44332009-09-09 15:08:12 +00001959
Anders Carlsson8f28f992009-08-26 18:25:21 +00001960 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001961 return PD;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001962 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001963 return OMD;
Mike Stump1eb44332009-09-09 15:08:12 +00001964
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001965 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(),
1966 E = PDecl->protocol_end(); I != E; ++I) {
Mike Stump1eb44332009-09-09 15:08:12 +00001967 if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel,
Douglas Gregor6ab35242009-04-09 21:40:53 +00001968 Context))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001969 return D;
1970 }
1971 return 0;
1972}
1973
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001974static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy,
Anders Carlsson8f28f992009-08-26 18:25:21 +00001975 IdentifierInfo *Member,
Douglas Gregor6ab35242009-04-09 21:40:53 +00001976 const Selector &Sel,
1977 ASTContext &Context) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001978 // Check protocols on qualified interfaces.
1979 Decl *GDecl = 0;
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001980 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001981 E = QIdTy->qual_end(); I != E; ++I) {
Anders Carlsson8f28f992009-08-26 18:25:21 +00001982 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001983 GDecl = PD;
1984 break;
1985 }
1986 // Also must look for a getter name which uses property syntax.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001987 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001988 GDecl = OMD;
1989 break;
1990 }
1991 }
1992 if (!GDecl) {
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001993 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001994 E = QIdTy->qual_end(); I != E; ++I) {
1995 // Search in the protocol-qualifier list of current protocol.
Douglas Gregor6ab35242009-04-09 21:40:53 +00001996 GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context);
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001997 if (GDecl)
1998 return GDecl;
1999 }
2000 }
2001 return GDecl;
2002}
Chris Lattner76a642f2009-02-15 22:43:40 +00002003
Mike Stump1eb44332009-09-09 15:08:12 +00002004Action::OwningExprResult
Anders Carlsson8f28f992009-08-26 18:25:21 +00002005Sema::BuildMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
Sebastian Redl0eb23302009-01-19 00:08:26 +00002006 tok::TokenKind OpKind, SourceLocation MemberLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00002007 DeclarationName MemberName,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002008 bool HasExplicitTemplateArgs,
2009 SourceLocation LAngleLoc,
2010 const TemplateArgument *ExplicitTemplateArgs,
2011 unsigned NumExplicitTemplateArgs,
2012 SourceLocation RAngleLoc,
Douglas Gregorc68afe22009-09-03 21:38:09 +00002013 DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS,
2014 NamedDecl *FirstQualifierInScope) {
Douglas Gregorfe85ced2009-08-06 03:17:00 +00002015 if (SS && SS->isInvalid())
2016 return ExprError();
2017
Nate Begeman2ef13e52009-08-10 23:49:36 +00002018 // Since this might be a postfix expression, get rid of ParenListExprs.
2019 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
2020
Anders Carlssonf1b1d592009-05-01 19:30:39 +00002021 Expr *BaseExpr = Base.takeAs<Expr>();
Douglas Gregora71d8192009-09-04 17:36:40 +00002022 assert(BaseExpr && "no base expression");
Mike Stump1eb44332009-09-09 15:08:12 +00002023
Steve Naroff3cc4af82007-12-16 21:42:28 +00002024 // Perform default conversions.
2025 DefaultFunctionArrayConversion(BaseExpr);
Sebastian Redl0eb23302009-01-19 00:08:26 +00002026
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002027 QualType BaseType = BaseExpr->getType();
David Chisnall0f436562009-08-17 16:35:33 +00002028 // If this is an Objective-C pseudo-builtin and a definition is provided then
2029 // use that.
2030 if (BaseType->isObjCIdType()) {
2031 // We have an 'id' type. Rather than fall through, we check if this
2032 // is a reference to 'isa'.
2033 if (BaseType != Context.ObjCIdRedefinitionType) {
2034 BaseType = Context.ObjCIdRedefinitionType;
2035 ImpCastExprToType(BaseExpr, BaseType);
2036 }
David Chisnall0f436562009-08-17 16:35:33 +00002037 }
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002038 assert(!BaseType.isNull() && "no type for member expression");
Sebastian Redl0eb23302009-01-19 00:08:26 +00002039
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00002040 // Handle properties on ObjC 'Class' types.
2041 if (OpKind == tok::period && BaseType->isObjCClassType()) {
2042 // Also must look for a getter name which uses property syntax.
2043 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
2044 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
2045 if (ObjCMethodDecl *MD = getCurMethodDecl()) {
2046 ObjCInterfaceDecl *IFace = MD->getClassInterface();
2047 ObjCMethodDecl *Getter;
2048 // FIXME: need to also look locally in the implementation.
2049 if ((Getter = IFace->lookupClassMethod(Sel))) {
2050 // Check the use of this method.
2051 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2052 return ExprError();
2053 }
2054 // If we found a getter then this may be a valid dot-reference, we
2055 // will look for the matching setter, in case it is needed.
2056 Selector SetterSel =
2057 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2058 PP.getSelectorTable(), Member);
2059 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
2060 if (!Setter) {
2061 // If this reference is in an @implementation, also check for 'private'
2062 // methods.
Steve Naroffd789d3d2009-10-01 23:46:04 +00002063 Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00002064 }
2065 // Look through local category implementations associated with the class.
2066 if (!Setter)
2067 Setter = IFace->getCategoryClassMethod(SetterSel);
2068
2069 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2070 return ExprError();
2071
2072 if (Getter || Setter) {
2073 QualType PType;
2074
2075 if (Getter)
2076 PType = Getter->getResultType();
2077 else
2078 // Get the expression type from Setter's incoming parameter.
2079 PType = (*(Setter->param_end() -1))->getType();
2080 // FIXME: we must check that the setter has property type.
2081 return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter,
2082 PType,
2083 Setter, MemberLoc, BaseExpr));
2084 }
2085 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2086 << MemberName << BaseType);
2087 }
2088 }
2089
2090 if (BaseType->isObjCClassType() &&
2091 BaseType != Context.ObjCClassRedefinitionType) {
2092 BaseType = Context.ObjCClassRedefinitionType;
2093 ImpCastExprToType(BaseExpr, BaseType);
2094 }
2095
Chris Lattner68a057b2008-07-21 04:36:39 +00002096 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
2097 // must have pointer type, and the accessed type is the pointee.
Reid Spencer5f016e22007-07-11 17:01:13 +00002098 if (OpKind == tok::arrow) {
Douglas Gregorc68afe22009-09-03 21:38:09 +00002099 if (BaseType->isDependentType()) {
2100 NestedNameSpecifier *Qualifier = 0;
2101 if (SS) {
2102 Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep());
2103 if (!FirstQualifierInScope)
2104 FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier);
2105 }
Mike Stump1eb44332009-09-09 15:08:12 +00002106
2107 return Owned(CXXUnresolvedMemberExpr::Create(Context, BaseExpr, true,
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00002108 OpLoc, Qualifier,
Douglas Gregora38c6872009-09-03 16:14:30 +00002109 SS? SS->getRange() : SourceRange(),
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00002110 FirstQualifierInScope,
2111 MemberName,
2112 MemberLoc,
2113 HasExplicitTemplateArgs,
2114 LAngleLoc,
2115 ExplicitTemplateArgs,
2116 NumExplicitTemplateArgs,
2117 RAngleLoc));
Douglas Gregorc68afe22009-09-03 21:38:09 +00002118 }
Ted Kremenek6217b802009-07-29 21:53:49 +00002119 else if (const PointerType *PT = BaseType->getAs<PointerType>())
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002120 BaseType = PT->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00002121 else if (BaseType->isObjCObjectPointerType())
2122 ;
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002123 else
Sebastian Redl0eb23302009-01-19 00:08:26 +00002124 return ExprError(Diag(MemberLoc,
2125 diag::err_typecheck_member_reference_arrow)
2126 << BaseType << BaseExpr->getSourceRange());
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00002127 } else if (BaseType->isDependentType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002128 // Require that the base type isn't a pointer type
Anders Carlsson4ef27702009-05-16 20:31:20 +00002129 // (so we'll report an error for)
2130 // T* t;
2131 // t.f;
Mike Stump1eb44332009-09-09 15:08:12 +00002132 //
Anders Carlsson4ef27702009-05-16 20:31:20 +00002133 // In Obj-C++, however, the above expression is valid, since it could be
2134 // accessing the 'f' property if T is an Obj-C interface. The extra check
2135 // allows this, while still reporting an error if T is a struct pointer.
Ted Kremenek6217b802009-07-29 21:53:49 +00002136 const PointerType *PT = BaseType->getAs<PointerType>();
Anders Carlsson4ef27702009-05-16 20:31:20 +00002137
Mike Stump1eb44332009-09-09 15:08:12 +00002138 if (!PT || (getLangOptions().ObjC1 &&
Douglas Gregorc68afe22009-09-03 21:38:09 +00002139 !PT->getPointeeType()->isRecordType())) {
2140 NestedNameSpecifier *Qualifier = 0;
2141 if (SS) {
2142 Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep());
2143 if (!FirstQualifierInScope)
2144 FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier);
2145 }
Mike Stump1eb44332009-09-09 15:08:12 +00002146
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00002147 return Owned(CXXUnresolvedMemberExpr::Create(Context,
Mike Stump1eb44332009-09-09 15:08:12 +00002148 BaseExpr, false,
2149 OpLoc,
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00002150 Qualifier,
Douglas Gregora38c6872009-09-03 16:14:30 +00002151 SS? SS->getRange() : SourceRange(),
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00002152 FirstQualifierInScope,
2153 MemberName,
2154 MemberLoc,
2155 HasExplicitTemplateArgs,
2156 LAngleLoc,
2157 ExplicitTemplateArgs,
2158 NumExplicitTemplateArgs,
2159 RAngleLoc));
Douglas Gregorc68afe22009-09-03 21:38:09 +00002160 }
Anders Carlsson4ef27702009-05-16 20:31:20 +00002161 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002162
Chris Lattner68a057b2008-07-21 04:36:39 +00002163 // Handle field access to simple records. This also handles access to fields
2164 // of the ObjC 'id' struct.
Ted Kremenek6217b802009-07-29 21:53:49 +00002165 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002166 RecordDecl *RDecl = RTy->getDecl();
Douglas Gregor86447ec2009-03-09 16:13:40 +00002167 if (RequireCompleteType(OpLoc, BaseType,
Anders Carlssonb7906612009-08-26 23:45:07 +00002168 PDiag(diag::err_typecheck_incomplete_tag)
2169 << BaseExpr->getSourceRange()))
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002170 return ExprError();
2171
Douglas Gregorfe85ced2009-08-06 03:17:00 +00002172 DeclContext *DC = RDecl;
2173 if (SS && SS->isSet()) {
2174 // If the member name was a qualified-id, look into the
2175 // nested-name-specifier.
2176 DC = computeDeclContext(*SS, false);
Mike Stump1eb44332009-09-09 15:08:12 +00002177
2178 // FIXME: If DC is not computable, we should build a
Douglas Gregorfe85ced2009-08-06 03:17:00 +00002179 // CXXUnresolvedMemberExpr.
2180 assert(DC && "Cannot handle non-computable dependent contexts in lookup");
2181 }
2182
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002183 // The record definition is complete, now make sure the member is valid.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002184 LookupResult Result
Anders Carlsson8f28f992009-08-26 18:25:21 +00002185 = LookupQualifiedName(DC, MemberName, LookupMemberName, false);
Douglas Gregor7176fff2009-01-15 00:26:24 +00002186
Douglas Gregor7176fff2009-01-15 00:26:24 +00002187 if (!Result)
Anders Carlssonf4d84b62009-08-30 00:54:35 +00002188 return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member_deprecated)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002189 << MemberName << BaseExpr->getSourceRange());
Chris Lattnera3d25242009-03-31 08:18:48 +00002190 if (Result.isAmbiguous()) {
Anders Carlsson8f28f992009-08-26 18:25:21 +00002191 DiagnoseAmbiguousLookup(Result, MemberName, MemberLoc,
2192 BaseExpr->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +00002193 return ExprError();
Chris Lattnera3d25242009-03-31 08:18:48 +00002194 }
Mike Stump1eb44332009-09-09 15:08:12 +00002195
Douglas Gregora38c6872009-09-03 16:14:30 +00002196 if (SS && SS->isSet()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002197 QualType BaseTypeCanon
Douglas Gregora38c6872009-09-03 16:14:30 +00002198 = Context.getCanonicalType(BaseType).getUnqualifiedType();
Mike Stump1eb44332009-09-09 15:08:12 +00002199 QualType MemberTypeCanon
Douglas Gregora38c6872009-09-03 16:14:30 +00002200 = Context.getCanonicalType(
2201 Context.getTypeDeclType(
2202 dyn_cast<TypeDecl>(Result.getAsDecl()->getDeclContext())));
Mike Stump1eb44332009-09-09 15:08:12 +00002203
Douglas Gregora38c6872009-09-03 16:14:30 +00002204 if (BaseTypeCanon != MemberTypeCanon &&
2205 !IsDerivedFrom(BaseTypeCanon, MemberTypeCanon))
2206 return ExprError(Diag(SS->getBeginLoc(),
2207 diag::err_not_direct_base_or_virtual)
2208 << MemberTypeCanon << BaseTypeCanon);
2209 }
Mike Stump1eb44332009-09-09 15:08:12 +00002210
Chris Lattnera3d25242009-03-31 08:18:48 +00002211 NamedDecl *MemberDecl = Result;
Douglas Gregor44b43212008-12-11 16:49:14 +00002212
Chris Lattner56cd21b2009-02-13 22:08:30 +00002213 // If the decl being referenced had an error, return an error for this
2214 // sub-expr without emitting another error, in order to avoid cascading
2215 // error cases.
2216 if (MemberDecl->isInvalidDecl())
2217 return ExprError();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002218
Anders Carlsson0f728562009-09-10 20:48:14 +00002219 bool ShouldCheckUse = true;
2220 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) {
2221 // Don't diagnose the use of a virtual member function unless it's
2222 // explicitly qualified.
2223 if (MD->isVirtual() && (!SS || !SS->isSet()))
2224 ShouldCheckUse = false;
2225 }
Daniel Dunbar7e88a602009-09-17 06:31:17 +00002226
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002227 // Check the use of this field
Anders Carlsson0f728562009-09-10 20:48:14 +00002228 if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc))
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002229 return ExprError();
Chris Lattner56cd21b2009-02-13 22:08:30 +00002230
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002231 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002232 // We may have found a field within an anonymous union or struct
2233 // (C++ [class.union]).
2234 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
Sebastian Redlcd965b92009-01-18 18:53:16 +00002235 return BuildAnonymousStructUnionMemberReference(MemberLoc, FD,
Sebastian Redl0eb23302009-01-19 00:08:26 +00002236 BaseExpr, OpLoc);
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002237
Douglas Gregor86f19402008-12-20 23:49:58 +00002238 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002239 QualType MemberType = FD->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002240 if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>())
Douglas Gregor86f19402008-12-20 23:49:58 +00002241 MemberType = Ref->getPointeeType();
2242 else {
John McCall0953e762009-09-24 19:53:00 +00002243 Qualifiers BaseQuals = BaseType.getQualifiers();
2244 BaseQuals.removeObjCGCAttr();
2245 if (FD->isMutable()) BaseQuals.removeConst();
2246
2247 Qualifiers MemberQuals
2248 = Context.getCanonicalType(MemberType).getQualifiers();
2249
2250 Qualifiers Combined = BaseQuals + MemberQuals;
2251 if (Combined != MemberQuals)
2252 MemberType = Context.getQualifiedType(MemberType, Combined);
Douglas Gregor86f19402008-12-20 23:49:58 +00002253 }
Eli Friedman51019072008-02-06 22:48:16 +00002254
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002255 MarkDeclarationReferenced(MemberLoc, FD);
Fariborz Jahanianf3e53d32009-07-29 19:40:11 +00002256 if (PerformObjectMemberConversion(BaseExpr, FD))
2257 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00002258 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002259 FD, MemberLoc, MemberType));
Chris Lattnera3d25242009-03-31 08:18:48 +00002260 }
Mike Stump1eb44332009-09-09 15:08:12 +00002261
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002262 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) {
2263 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002264 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2265 Var, MemberLoc,
2266 Var->getType().getNonReferenceType()));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002267 }
2268 if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) {
2269 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002270 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2271 MemberFn, MemberLoc,
2272 MemberFn->getType()));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002273 }
Mike Stump1eb44332009-09-09 15:08:12 +00002274 if (FunctionTemplateDecl *FunTmpl
Douglas Gregor6b906862009-08-21 00:16:32 +00002275 = dyn_cast<FunctionTemplateDecl>(MemberDecl)) {
2276 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00002277
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002278 if (HasExplicitTemplateArgs)
Mike Stump1eb44332009-09-09 15:08:12 +00002279 return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow,
2280 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002281 SS? SS->getRange() : SourceRange(),
Mike Stump1eb44332009-09-09 15:08:12 +00002282 FunTmpl, MemberLoc, true,
2283 LAngleLoc, ExplicitTemplateArgs,
2284 NumExplicitTemplateArgs, RAngleLoc,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002285 Context.OverloadTy));
Mike Stump1eb44332009-09-09 15:08:12 +00002286
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002287 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2288 FunTmpl, MemberLoc,
2289 Context.OverloadTy));
Douglas Gregor6b906862009-08-21 00:16:32 +00002290 }
Chris Lattnera3d25242009-03-31 08:18:48 +00002291 if (OverloadedFunctionDecl *Ovl
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002292 = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) {
2293 if (HasExplicitTemplateArgs)
Mike Stump1eb44332009-09-09 15:08:12 +00002294 return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow,
2295 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002296 SS? SS->getRange() : SourceRange(),
Mike Stump1eb44332009-09-09 15:08:12 +00002297 Ovl, MemberLoc, true,
2298 LAngleLoc, ExplicitTemplateArgs,
2299 NumExplicitTemplateArgs, RAngleLoc,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002300 Context.OverloadTy));
2301
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002302 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2303 Ovl, MemberLoc, Context.OverloadTy));
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002304 }
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002305 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) {
2306 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002307 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2308 Enum, MemberLoc, Enum->getType()));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002309 }
Chris Lattnera3d25242009-03-31 08:18:48 +00002310 if (isa<TypeDecl>(MemberDecl))
Sebastian Redl0eb23302009-01-19 00:08:26 +00002311 return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002312 << MemberName << int(OpKind == tok::arrow));
Eli Friedman51019072008-02-06 22:48:16 +00002313
Douglas Gregor86f19402008-12-20 23:49:58 +00002314 // We found a declaration kind that we didn't expect. This is a
2315 // generic error message that tells the user that she can't refer
2316 // to this member with '.' or '->'.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002317 return ExprError(Diag(MemberLoc,
2318 diag::err_typecheck_member_reference_unknown)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002319 << MemberName << int(OpKind == tok::arrow));
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002320 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002321
Douglas Gregora71d8192009-09-04 17:36:40 +00002322 // Handle pseudo-destructors (C++ [expr.pseudo]). Since anything referring
2323 // into a record type was handled above, any destructor we see here is a
2324 // pseudo-destructor.
2325 if (MemberName.getNameKind() == DeclarationName::CXXDestructorName) {
2326 // C++ [expr.pseudo]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00002327 // The left hand side of the dot operator shall be of scalar type. The
2328 // left hand side of the arrow operator shall be of pointer to scalar
Douglas Gregora71d8192009-09-04 17:36:40 +00002329 // type.
2330 if (!BaseType->isScalarType())
2331 return Owned(Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
2332 << BaseType << BaseExpr->getSourceRange());
Mike Stump1eb44332009-09-09 15:08:12 +00002333
Douglas Gregora71d8192009-09-04 17:36:40 +00002334 // [...] The type designated by the pseudo-destructor-name shall be the
2335 // same as the object type.
2336 if (!MemberName.getCXXNameType()->isDependentType() &&
2337 !Context.hasSameUnqualifiedType(BaseType, MemberName.getCXXNameType()))
2338 return Owned(Diag(OpLoc, diag::err_pseudo_dtor_type_mismatch)
2339 << BaseType << MemberName.getCXXNameType()
2340 << BaseExpr->getSourceRange() << SourceRange(MemberLoc));
Mike Stump1eb44332009-09-09 15:08:12 +00002341
2342 // [...] Furthermore, the two type-names in a pseudo-destructor-name of
Douglas Gregora71d8192009-09-04 17:36:40 +00002343 // the form
2344 //
Mike Stump1eb44332009-09-09 15:08:12 +00002345 // ::[opt] nested-name-specifier[opt] type-name :: ̃ type-name
2346 //
Douglas Gregora71d8192009-09-04 17:36:40 +00002347 // shall designate the same scalar type.
2348 //
2349 // FIXME: DPG can't see any way to trigger this particular clause, so it
2350 // isn't checked here.
Mike Stump1eb44332009-09-09 15:08:12 +00002351
Douglas Gregora71d8192009-09-04 17:36:40 +00002352 // FIXME: We've lost the precise spelling of the type by going through
2353 // DeclarationName. Can we do better?
2354 return Owned(new (Context) CXXPseudoDestructorExpr(Context, BaseExpr,
Mike Stump1eb44332009-09-09 15:08:12 +00002355 OpKind == tok::arrow,
Douglas Gregora71d8192009-09-04 17:36:40 +00002356 OpLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00002357 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregora71d8192009-09-04 17:36:40 +00002358 SS? SS->getRange() : SourceRange(),
2359 MemberName.getCXXNameType(),
2360 MemberLoc));
2361 }
Mike Stump1eb44332009-09-09 15:08:12 +00002362
Chris Lattnera38e6b12008-07-21 04:59:05 +00002363 // Handle access to Objective-C instance variables, such as "Obj->ivar" and
2364 // (*Obj).ivar.
Steve Naroff14108da2009-07-10 23:34:53 +00002365 if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) ||
2366 (OpKind == tok::period && BaseType->isObjCInterfaceType())) {
John McCall183700f2009-09-21 23:43:11 +00002367 const ObjCObjectPointerType *OPT = BaseType->getAs<ObjCObjectPointerType>();
Mike Stump1eb44332009-09-09 15:08:12 +00002368 const ObjCInterfaceType *IFaceT =
John McCall183700f2009-09-21 23:43:11 +00002369 OPT ? OPT->getInterfaceType() : BaseType->getAs<ObjCInterfaceType>();
Steve Naroffc70e8d92009-07-16 00:25:06 +00002370 if (IFaceT) {
Anders Carlsson8f28f992009-08-26 18:25:21 +00002371 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
2372
Steve Naroffc70e8d92009-07-16 00:25:06 +00002373 ObjCInterfaceDecl *IDecl = IFaceT->getDecl();
2374 ObjCInterfaceDecl *ClassDeclared;
Anders Carlsson8f28f992009-08-26 18:25:21 +00002375 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
Mike Stump1eb44332009-09-09 15:08:12 +00002376
Steve Naroffc70e8d92009-07-16 00:25:06 +00002377 if (IV) {
2378 // If the decl being referenced had an error, return an error for this
2379 // sub-expr without emitting another error, in order to avoid cascading
2380 // error cases.
2381 if (IV->isInvalidDecl())
2382 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002383
Steve Naroffc70e8d92009-07-16 00:25:06 +00002384 // Check whether we can reference this field.
2385 if (DiagnoseUseOfDecl(IV, MemberLoc))
2386 return ExprError();
2387 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
2388 IV->getAccessControl() != ObjCIvarDecl::Package) {
2389 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
2390 if (ObjCMethodDecl *MD = getCurMethodDecl())
2391 ClassOfMethodDecl = MD->getClassInterface();
2392 else if (ObjCImpDecl && getCurFunctionDecl()) {
2393 // Case of a c-function declared inside an objc implementation.
2394 // FIXME: For a c-style function nested inside an objc implementation
2395 // class, there is no implementation context available, so we pass
2396 // down the context as argument to this routine. Ideally, this context
2397 // need be passed down in the AST node and somehow calculated from the
2398 // AST for a function decl.
2399 Decl *ImplDecl = ObjCImpDecl.getAs<Decl>();
Mike Stump1eb44332009-09-09 15:08:12 +00002400 if (ObjCImplementationDecl *IMPD =
Steve Naroffc70e8d92009-07-16 00:25:06 +00002401 dyn_cast<ObjCImplementationDecl>(ImplDecl))
2402 ClassOfMethodDecl = IMPD->getClassInterface();
2403 else if (ObjCCategoryImplDecl* CatImplClass =
2404 dyn_cast<ObjCCategoryImplDecl>(ImplDecl))
2405 ClassOfMethodDecl = CatImplClass->getClassInterface();
2406 }
Mike Stump1eb44332009-09-09 15:08:12 +00002407
2408 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
2409 if (ClassDeclared != IDecl ||
Steve Naroffc70e8d92009-07-16 00:25:06 +00002410 ClassOfMethodDecl != ClassDeclared)
Mike Stump1eb44332009-09-09 15:08:12 +00002411 Diag(MemberLoc, diag::error_private_ivar_access)
Steve Naroffc70e8d92009-07-16 00:25:06 +00002412 << IV->getDeclName();
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002413 } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl))
2414 // @protected
Mike Stump1eb44332009-09-09 15:08:12 +00002415 Diag(MemberLoc, diag::error_protected_ivar_access)
Steve Naroffc70e8d92009-07-16 00:25:06 +00002416 << IV->getDeclName();
Steve Naroffb06d8752009-03-04 18:34:24 +00002417 }
Steve Naroffc70e8d92009-07-16 00:25:06 +00002418
2419 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(),
2420 MemberLoc, BaseExpr,
2421 OpKind == tok::arrow));
Fariborz Jahanian935fd762009-03-03 01:21:12 +00002422 }
Steve Naroffc70e8d92009-07-16 00:25:06 +00002423 return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002424 << IDecl->getDeclName() << MemberName
Steve Naroffc70e8d92009-07-16 00:25:06 +00002425 << BaseExpr->getSourceRange());
Fariborz Jahanianaaa63a72008-12-13 22:20:28 +00002426 }
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002427 }
Steve Naroffde2e22d2009-07-15 18:40:39 +00002428 // Handle properties on 'id' and qualified "id".
Mike Stump1eb44332009-09-09 15:08:12 +00002429 if (OpKind == tok::period && (BaseType->isObjCIdType() ||
Steve Naroffde2e22d2009-07-15 18:40:39 +00002430 BaseType->isObjCQualifiedIdType())) {
John McCall183700f2009-09-21 23:43:11 +00002431 const ObjCObjectPointerType *QIdTy = BaseType->getAs<ObjCObjectPointerType>();
Anders Carlsson8f28f992009-08-26 18:25:21 +00002432 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00002433
Steve Naroff14108da2009-07-10 23:34:53 +00002434 // Check protocols on qualified interfaces.
Anders Carlsson8f28f992009-08-26 18:25:21 +00002435 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Steve Naroff14108da2009-07-10 23:34:53 +00002436 if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) {
2437 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
2438 // Check the use of this declaration
2439 if (DiagnoseUseOfDecl(PD, MemberLoc))
2440 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00002441
Steve Naroff14108da2009-07-10 23:34:53 +00002442 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2443 MemberLoc, BaseExpr));
2444 }
2445 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
2446 // Check the use of this method.
2447 if (DiagnoseUseOfDecl(OMD, MemberLoc))
2448 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00002449
Steve Naroff14108da2009-07-10 23:34:53 +00002450 return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel,
Mike Stump1eb44332009-09-09 15:08:12 +00002451 OMD->getResultType(),
2452 OMD, OpLoc, MemberLoc,
Steve Naroff14108da2009-07-10 23:34:53 +00002453 NULL, 0));
2454 }
2455 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002456
Steve Naroff14108da2009-07-10 23:34:53 +00002457 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002458 << MemberName << BaseType);
Steve Naroff14108da2009-07-10 23:34:53 +00002459 }
Chris Lattnera38e6b12008-07-21 04:59:05 +00002460 // Handle Objective-C property access, which is "Obj.property" where Obj is a
2461 // pointer to a (potentially qualified) interface type.
Steve Naroff14108da2009-07-10 23:34:53 +00002462 const ObjCObjectPointerType *OPT;
Mike Stump1eb44332009-09-09 15:08:12 +00002463 if (OpKind == tok::period &&
Steve Naroff14108da2009-07-10 23:34:53 +00002464 (OPT = BaseType->getAsObjCInterfacePointerType())) {
2465 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
2466 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
Anders Carlsson8f28f992009-08-26 18:25:21 +00002467 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00002468
Daniel Dunbar2307d312008-09-03 01:05:41 +00002469 // Search for a declared property first.
Anders Carlsson8f28f992009-08-26 18:25:21 +00002470 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002471 // Check whether we can reference this property.
2472 if (DiagnoseUseOfDecl(PD, MemberLoc))
2473 return ExprError();
Fariborz Jahanian4c2743f2009-05-08 19:36:34 +00002474 QualType ResTy = PD->getType();
Anders Carlsson8f28f992009-08-26 18:25:21 +00002475 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002476 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Fariborz Jahanianc001e892009-05-08 20:20:55 +00002477 if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))
2478 ResTy = Getter->getResultType();
Fariborz Jahanian4c2743f2009-05-08 19:36:34 +00002479 return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy,
Chris Lattner7eba82e2009-02-16 18:35:08 +00002480 MemberLoc, BaseExpr));
2481 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00002482 // Check protocols on qualified interfaces.
Steve Naroff67ef8ea2009-07-20 17:56:53 +00002483 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2484 E = OPT->qual_end(); I != E; ++I)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002485 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002486 // Check whether we can reference this property.
2487 if (DiagnoseUseOfDecl(PD, MemberLoc))
2488 return ExprError();
Chris Lattner7eba82e2009-02-16 18:35:08 +00002489
Steve Naroff6ece14c2009-01-21 00:14:39 +00002490 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
Chris Lattner7eba82e2009-02-16 18:35:08 +00002491 MemberLoc, BaseExpr));
2492 }
Steve Naroff14108da2009-07-10 23:34:53 +00002493 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2494 E = OPT->qual_end(); I != E; ++I)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002495 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Steve Naroff14108da2009-07-10 23:34:53 +00002496 // Check whether we can reference this property.
2497 if (DiagnoseUseOfDecl(PD, MemberLoc))
2498 return ExprError();
Daniel Dunbar2307d312008-09-03 01:05:41 +00002499
Steve Naroff14108da2009-07-10 23:34:53 +00002500 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2501 MemberLoc, BaseExpr));
2502 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00002503 // If that failed, look for an "implicit" property by seeing if the nullary
2504 // selector is implemented.
2505
2506 // FIXME: The logic for looking up nullary and unary selectors should be
2507 // shared with the code in ActOnInstanceMessage.
2508
Anders Carlsson8f28f992009-08-26 18:25:21 +00002509 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002510 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Sebastian Redl0eb23302009-01-19 00:08:26 +00002511
Daniel Dunbar2307d312008-09-03 01:05:41 +00002512 // If this reference is in an @implementation, check for 'private' methods.
2513 if (!Getter)
Steve Naroffd789d3d2009-10-01 23:46:04 +00002514 Getter = IFace->lookupPrivateInstanceMethod(Sel);
Daniel Dunbar2307d312008-09-03 01:05:41 +00002515
Steve Naroff7692ed62008-10-22 19:16:27 +00002516 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00002517 if (!Getter)
2518 Getter = IFace->getCategoryInstanceMethod(Sel);
Daniel Dunbar2307d312008-09-03 01:05:41 +00002519 if (Getter) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002520 // Check if we can reference this property.
2521 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2522 return ExprError();
Steve Naroff1ca66942009-03-11 13:48:17 +00002523 }
2524 // If we found a getter then this may be a valid dot-reference, we
2525 // will look for the matching setter, in case it is needed.
Mike Stump1eb44332009-09-09 15:08:12 +00002526 Selector SetterSel =
2527 SelectorTable::constructSetterName(PP.getIdentifierTable(),
Anders Carlsson8f28f992009-08-26 18:25:21 +00002528 PP.getSelectorTable(), Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002529 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
Steve Naroff1ca66942009-03-11 13:48:17 +00002530 if (!Setter) {
2531 // If this reference is in an @implementation, also check for 'private'
2532 // methods.
Steve Naroffd789d3d2009-10-01 23:46:04 +00002533 Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
Steve Naroff1ca66942009-03-11 13:48:17 +00002534 }
2535 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00002536 if (!Setter)
2537 Setter = IFace->getCategoryInstanceMethod(SetterSel);
Sebastian Redl0eb23302009-01-19 00:08:26 +00002538
Steve Naroff1ca66942009-03-11 13:48:17 +00002539 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2540 return ExprError();
2541
2542 if (Getter || Setter) {
2543 QualType PType;
2544
2545 if (Getter)
2546 PType = Getter->getResultType();
Fariborz Jahanian154440e2009-08-18 20:50:23 +00002547 else
2548 // Get the expression type from Setter's incoming parameter.
2549 PType = (*(Setter->param_end() -1))->getType();
Steve Naroff1ca66942009-03-11 13:48:17 +00002550 // FIXME: we must check that the setter has property type.
Fariborz Jahanian09105f52009-08-20 17:02:02 +00002551 return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType,
Steve Naroff1ca66942009-03-11 13:48:17 +00002552 Setter, MemberLoc, BaseExpr));
2553 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002554 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002555 << MemberName << BaseType);
Fariborz Jahanian232220c2007-11-12 22:29:28 +00002556 }
Mike Stump1eb44332009-09-09 15:08:12 +00002557
Steve Narofff242b1b2009-07-24 17:54:45 +00002558 // Handle the following exceptional case (*Obj).isa.
Mike Stump1eb44332009-09-09 15:08:12 +00002559 if (OpKind == tok::period &&
Steve Narofff242b1b2009-07-24 17:54:45 +00002560 BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) &&
Anders Carlsson8f28f992009-08-26 18:25:21 +00002561 MemberName.getAsIdentifierInfo()->isStr("isa"))
Steve Narofff242b1b2009-07-24 17:54:45 +00002562 return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc,
2563 Context.getObjCIdType()));
2564
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002565 // Handle 'field access' to vectors, such as 'V.xx'.
Chris Lattner73525de2009-02-16 21:11:58 +00002566 if (BaseType->isExtVectorType()) {
Anders Carlsson8f28f992009-08-26 18:25:21 +00002567 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002568 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc);
2569 if (ret.isNull())
Sebastian Redl0eb23302009-01-19 00:08:26 +00002570 return ExprError();
Anders Carlsson8f28f992009-08-26 18:25:21 +00002571 return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, *Member,
Steve Naroff6ece14c2009-01-21 00:14:39 +00002572 MemberLoc));
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002573 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002574
Douglas Gregor214f31a2009-03-27 06:00:30 +00002575 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
2576 << BaseType << BaseExpr->getSourceRange();
2577
2578 // If the user is trying to apply -> or . to a function or function
2579 // pointer, it's probably because they forgot parentheses to call
2580 // the function. Suggest the addition of those parentheses.
Mike Stump1eb44332009-09-09 15:08:12 +00002581 if (BaseType == Context.OverloadTy ||
Douglas Gregor214f31a2009-03-27 06:00:30 +00002582 BaseType->isFunctionType() ||
Mike Stump1eb44332009-09-09 15:08:12 +00002583 (BaseType->isPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00002584 BaseType->getAs<PointerType>()->isFunctionType())) {
Douglas Gregor214f31a2009-03-27 06:00:30 +00002585 SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd());
2586 Diag(Loc, diag::note_member_reference_needs_call)
2587 << CodeModificationHint::CreateInsertion(Loc, "()");
2588 }
2589
2590 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002591}
2592
Anders Carlsson8f28f992009-08-26 18:25:21 +00002593Action::OwningExprResult
2594Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
2595 tok::TokenKind OpKind, SourceLocation MemberLoc,
2596 IdentifierInfo &Member,
2597 DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS) {
Mike Stump1eb44332009-09-09 15:08:12 +00002598 return BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind, MemberLoc,
Anders Carlsson8f28f992009-08-26 18:25:21 +00002599 DeclarationName(&Member), ObjCImpDecl, SS);
2600}
2601
Anders Carlsson56c5e332009-08-25 03:49:14 +00002602Sema::OwningExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
2603 FunctionDecl *FD,
2604 ParmVarDecl *Param) {
2605 if (Param->hasUnparsedDefaultArg()) {
2606 Diag (CallLoc,
2607 diag::err_use_of_default_argument_to_function_declared_later) <<
2608 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00002609 Diag(UnparsedDefaultArgLocs[Param],
Anders Carlsson56c5e332009-08-25 03:49:14 +00002610 diag::note_default_argument_declared_here);
2611 } else {
2612 if (Param->hasUninstantiatedDefaultArg()) {
2613 Expr *UninstExpr = Param->getUninstantiatedDefaultArg();
2614
2615 // Instantiate the expression.
Douglas Gregord6350ae2009-08-28 20:31:08 +00002616 MultiLevelTemplateArgumentList ArgList = getTemplateInstantiationArgs(FD);
Anders Carlsson25cae7f2009-09-05 05:14:19 +00002617
Mike Stump1eb44332009-09-09 15:08:12 +00002618 InstantiatingTemplate Inst(*this, CallLoc, Param,
2619 ArgList.getInnermost().getFlatArgumentList(),
Douglas Gregord6350ae2009-08-28 20:31:08 +00002620 ArgList.getInnermost().flat_size());
Anders Carlsson56c5e332009-08-25 03:49:14 +00002621
John McCallce3ff2b2009-08-25 22:02:44 +00002622 OwningExprResult Result = SubstExpr(UninstExpr, ArgList);
Mike Stump1eb44332009-09-09 15:08:12 +00002623 if (Result.isInvalid())
Anders Carlsson56c5e332009-08-25 03:49:14 +00002624 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00002625
2626 if (SetParamDefaultArgument(Param, move(Result),
Anders Carlsson56c5e332009-08-25 03:49:14 +00002627 /*FIXME:EqualLoc*/
2628 UninstExpr->getSourceRange().getBegin()))
2629 return ExprError();
2630 }
Mike Stump1eb44332009-09-09 15:08:12 +00002631
Anders Carlsson56c5e332009-08-25 03:49:14 +00002632 Expr *DefaultExpr = Param->getDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +00002633
Anders Carlsson56c5e332009-08-25 03:49:14 +00002634 // If the default expression creates temporaries, we need to
2635 // push them to the current stack of expression temporaries so they'll
2636 // be properly destroyed.
Mike Stump1eb44332009-09-09 15:08:12 +00002637 if (CXXExprWithTemporaries *E
Anders Carlsson56c5e332009-08-25 03:49:14 +00002638 = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002639 assert(!E->shouldDestroyTemporaries() &&
Anders Carlsson56c5e332009-08-25 03:49:14 +00002640 "Can't destroy temporaries in a default argument expr!");
2641 for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I)
2642 ExprTemporaries.push_back(E->getTemporary(I));
2643 }
2644 }
2645
2646 // We already type-checked the argument, so we know it works.
2647 return Owned(CXXDefaultArgExpr::Create(Context, Param));
2648}
2649
Douglas Gregor88a35142008-12-22 05:46:06 +00002650/// ConvertArgumentsForCall - Converts the arguments specified in
2651/// Args/NumArgs to the parameter types of the function FDecl with
2652/// function prototype Proto. Call is the call expression itself, and
2653/// Fn is the function expression. For a C++ member function, this
2654/// routine does not attempt to convert the object argument. Returns
2655/// true if the call is ill-formed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00002656bool
2657Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor88a35142008-12-22 05:46:06 +00002658 FunctionDecl *FDecl,
Douglas Gregor72564e72009-02-26 23:50:07 +00002659 const FunctionProtoType *Proto,
Douglas Gregor88a35142008-12-22 05:46:06 +00002660 Expr **Args, unsigned NumArgs,
2661 SourceLocation RParenLoc) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00002662 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor88a35142008-12-22 05:46:06 +00002663 // assignment, to the types of the corresponding parameter, ...
2664 unsigned NumArgsInProto = Proto->getNumArgs();
2665 unsigned NumArgsToCheck = NumArgs;
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002666 bool Invalid = false;
2667
Douglas Gregor88a35142008-12-22 05:46:06 +00002668 // If too few arguments are available (and we don't have default
2669 // arguments for the remaining parameters), don't make the call.
2670 if (NumArgs < NumArgsInProto) {
2671 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
2672 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
2673 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange();
2674 // Use default arguments for missing arguments
2675 NumArgsToCheck = NumArgsInProto;
Ted Kremenek8189cde2009-02-07 01:47:29 +00002676 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor88a35142008-12-22 05:46:06 +00002677 }
2678
2679 // If too many are passed and not variadic, error on the extras and drop
2680 // them.
2681 if (NumArgs > NumArgsInProto) {
2682 if (!Proto->isVariadic()) {
2683 Diag(Args[NumArgsInProto]->getLocStart(),
2684 diag::err_typecheck_call_too_many_args)
2685 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange()
2686 << SourceRange(Args[NumArgsInProto]->getLocStart(),
2687 Args[NumArgs-1]->getLocEnd());
2688 // This deletes the extra arguments.
Ted Kremenek8189cde2009-02-07 01:47:29 +00002689 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002690 Invalid = true;
Douglas Gregor88a35142008-12-22 05:46:06 +00002691 }
2692 NumArgsToCheck = NumArgsInProto;
2693 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002694
Douglas Gregor88a35142008-12-22 05:46:06 +00002695 // Continue to check argument types (even if we have too few/many args).
2696 for (unsigned i = 0; i != NumArgsToCheck; i++) {
2697 QualType ProtoArgType = Proto->getArgType(i);
Mike Stumpeed9cac2009-02-19 03:04:26 +00002698
Douglas Gregor88a35142008-12-22 05:46:06 +00002699 Expr *Arg;
Douglas Gregor61366e92008-12-24 00:01:03 +00002700 if (i < NumArgs) {
Douglas Gregor88a35142008-12-22 05:46:06 +00002701 Arg = Args[i];
Douglas Gregor61366e92008-12-24 00:01:03 +00002702
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002703 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2704 ProtoArgType,
Anders Carlssonb7906612009-08-26 23:45:07 +00002705 PDiag(diag::err_call_incomplete_argument)
2706 << Arg->getSourceRange()))
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002707 return true;
2708
Douglas Gregor61366e92008-12-24 00:01:03 +00002709 // Pass the argument.
2710 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
2711 return true;
Anders Carlsson5e300d12009-06-12 16:51:40 +00002712 } else {
Anders Carlssoned961f92009-08-25 02:29:20 +00002713 ParmVarDecl *Param = FDecl->getParamDecl(i);
Mike Stump1eb44332009-09-09 15:08:12 +00002714
2715 OwningExprResult ArgExpr =
Anders Carlsson56c5e332009-08-25 03:49:14 +00002716 BuildCXXDefaultArgExpr(Call->getSourceRange().getBegin(),
2717 FDecl, Param);
2718 if (ArgExpr.isInvalid())
2719 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002720
Anders Carlsson56c5e332009-08-25 03:49:14 +00002721 Arg = ArgExpr.takeAs<Expr>();
Anders Carlsson5e300d12009-06-12 16:51:40 +00002722 }
Mike Stump1eb44332009-09-09 15:08:12 +00002723
Douglas Gregor88a35142008-12-22 05:46:06 +00002724 Call->setArg(i, Arg);
2725 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002726
Douglas Gregor88a35142008-12-22 05:46:06 +00002727 // If this is a variadic call, handle args passed through "...".
2728 if (Proto->isVariadic()) {
Anders Carlssondce5e2c2009-01-16 16:48:51 +00002729 VariadicCallType CallType = VariadicFunction;
2730 if (Fn->getType()->isBlockPointerType())
2731 CallType = VariadicBlock; // Block
2732 else if (isa<MemberExpr>(Fn))
2733 CallType = VariadicMethod;
2734
Douglas Gregor88a35142008-12-22 05:46:06 +00002735 // Promote the arguments (C99 6.5.2.2p7).
2736 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
2737 Expr *Arg = Args[i];
Chris Lattner312531a2009-04-12 08:11:20 +00002738 Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType);
Douglas Gregor88a35142008-12-22 05:46:06 +00002739 Call->setArg(i, Arg);
2740 }
2741 }
2742
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002743 return Invalid;
Douglas Gregor88a35142008-12-22 05:46:06 +00002744}
2745
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002746/// \brief "Deconstruct" the function argument of a call expression to find
2747/// the underlying declaration (if any), the name of the called function,
2748/// whether argument-dependent lookup is available, whether it has explicit
2749/// template arguments, etc.
2750void Sema::DeconstructCallFunction(Expr *FnExpr,
2751 NamedDecl *&Function,
2752 DeclarationName &Name,
2753 NestedNameSpecifier *&Qualifier,
2754 SourceRange &QualifierRange,
2755 bool &ArgumentDependentLookup,
2756 bool &HasExplicitTemplateArguments,
2757 const TemplateArgument *&ExplicitTemplateArgs,
2758 unsigned &NumExplicitTemplateArgs) {
2759 // Set defaults for all of the output parameters.
2760 Function = 0;
2761 Name = DeclarationName();
2762 Qualifier = 0;
2763 QualifierRange = SourceRange();
2764 ArgumentDependentLookup = getLangOptions().CPlusPlus;
2765 HasExplicitTemplateArguments = false;
2766
2767 // If we're directly calling a function, get the appropriate declaration.
2768 // Also, in C++, keep track of whether we should perform argument-dependent
2769 // lookup and whether there were any explicitly-specified template arguments.
2770 while (true) {
2771 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr))
2772 FnExpr = IcExpr->getSubExpr();
2773 else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) {
2774 // Parentheses around a function disable ADL
2775 // (C++0x [basic.lookup.argdep]p1).
2776 ArgumentDependentLookup = false;
2777 FnExpr = PExpr->getSubExpr();
2778 } else if (isa<UnaryOperator>(FnExpr) &&
2779 cast<UnaryOperator>(FnExpr)->getOpcode()
2780 == UnaryOperator::AddrOf) {
2781 FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr();
2782 } else if (QualifiedDeclRefExpr *QDRExpr
2783 = dyn_cast<QualifiedDeclRefExpr>(FnExpr)) {
2784 // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1).
2785 ArgumentDependentLookup = false;
2786 Qualifier = QDRExpr->getQualifier();
2787 QualifierRange = QDRExpr->getQualifierRange();
2788 Function = dyn_cast<NamedDecl>(QDRExpr->getDecl());
2789 break;
2790 } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) {
2791 Function = dyn_cast<NamedDecl>(DRExpr->getDecl());
2792 break;
2793 } else if (UnresolvedFunctionNameExpr *DepName
2794 = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) {
2795 Name = DepName->getName();
2796 break;
2797 } else if (TemplateIdRefExpr *TemplateIdRef
2798 = dyn_cast<TemplateIdRefExpr>(FnExpr)) {
2799 Function = TemplateIdRef->getTemplateName().getAsTemplateDecl();
2800 if (!Function)
2801 Function = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl();
2802 HasExplicitTemplateArguments = true;
2803 ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs();
2804 NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs();
2805
2806 // C++ [temp.arg.explicit]p6:
2807 // [Note: For simple function names, argument dependent lookup (3.4.2)
2808 // applies even when the function name is not visible within the
2809 // scope of the call. This is because the call still has the syntactic
2810 // form of a function call (3.4.1). But when a function template with
2811 // explicit template arguments is used, the call does not have the
2812 // correct syntactic form unless there is a function template with
2813 // that name visible at the point of the call. If no such name is
2814 // visible, the call is not syntactically well-formed and
2815 // argument-dependent lookup does not apply. If some such name is
2816 // visible, argument dependent lookup applies and additional function
2817 // templates may be found in other namespaces.
2818 //
2819 // The summary of this paragraph is that, if we get to this point and the
2820 // template-id was not a qualified name, then argument-dependent lookup
2821 // is still possible.
2822 if ((Qualifier = TemplateIdRef->getQualifier())) {
2823 ArgumentDependentLookup = false;
2824 QualifierRange = TemplateIdRef->getQualifierRange();
2825 }
2826 break;
2827 } else {
2828 // Any kind of name that does not refer to a declaration (or
2829 // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3).
2830 ArgumentDependentLookup = false;
2831 break;
2832 }
2833 }
2834}
2835
Steve Narofff69936d2007-09-16 03:34:24 +00002836/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00002837/// This provides the location of the left/right parens and a list of comma
2838/// locations.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002839Action::OwningExprResult
2840Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc,
2841 MultiExprArg args,
Douglas Gregor88a35142008-12-22 05:46:06 +00002842 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Sebastian Redl0eb23302009-01-19 00:08:26 +00002843 unsigned NumArgs = args.size();
Nate Begeman2ef13e52009-08-10 23:49:36 +00002844
2845 // Since this might be a postfix expression, get rid of ParenListExprs.
2846 fn = MaybeConvertParenListExprToParenExpr(S, move(fn));
Mike Stump1eb44332009-09-09 15:08:12 +00002847
Anders Carlssonf1b1d592009-05-01 19:30:39 +00002848 Expr *Fn = fn.takeAs<Expr>();
Sebastian Redl0eb23302009-01-19 00:08:26 +00002849 Expr **Args = reinterpret_cast<Expr**>(args.release());
Chris Lattner74c469f2007-07-21 03:03:59 +00002850 assert(Fn && "no function call expression");
Chris Lattner04421082008-04-08 04:40:51 +00002851 FunctionDecl *FDecl = NULL;
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002852 NamedDecl *NDecl = NULL;
Douglas Gregor17330012009-02-04 15:01:18 +00002853 DeclarationName UnqualifiedName;
Mike Stump1eb44332009-09-09 15:08:12 +00002854
Douglas Gregor88a35142008-12-22 05:46:06 +00002855 if (getLangOptions().CPlusPlus) {
Douglas Gregora71d8192009-09-04 17:36:40 +00002856 // If this is a pseudo-destructor expression, build the call immediately.
2857 if (isa<CXXPseudoDestructorExpr>(Fn)) {
2858 if (NumArgs > 0) {
2859 // Pseudo-destructor calls should not have any arguments.
2860 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
2861 << CodeModificationHint::CreateRemoval(
2862 SourceRange(Args[0]->getLocStart(),
2863 Args[NumArgs-1]->getLocEnd()));
Mike Stump1eb44332009-09-09 15:08:12 +00002864
Douglas Gregora71d8192009-09-04 17:36:40 +00002865 for (unsigned I = 0; I != NumArgs; ++I)
2866 Args[I]->Destroy(Context);
Mike Stump1eb44332009-09-09 15:08:12 +00002867
Douglas Gregora71d8192009-09-04 17:36:40 +00002868 NumArgs = 0;
2869 }
Mike Stump1eb44332009-09-09 15:08:12 +00002870
Douglas Gregora71d8192009-09-04 17:36:40 +00002871 return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy,
2872 RParenLoc));
2873 }
Mike Stump1eb44332009-09-09 15:08:12 +00002874
Douglas Gregor17330012009-02-04 15:01:18 +00002875 // Determine whether this is a dependent call inside a C++ template,
Mike Stumpeed9cac2009-02-19 03:04:26 +00002876 // in which case we won't do any semantic analysis now.
Mike Stump390b4cc2009-05-16 07:39:55 +00002877 // FIXME: Will need to cache the results of name lookup (including ADL) in
2878 // Fn.
Douglas Gregor17330012009-02-04 15:01:18 +00002879 bool Dependent = false;
2880 if (Fn->isTypeDependent())
2881 Dependent = true;
2882 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
2883 Dependent = true;
2884
2885 if (Dependent)
Ted Kremenek668bf912009-02-09 20:51:47 +00002886 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
Douglas Gregor17330012009-02-04 15:01:18 +00002887 Context.DependentTy, RParenLoc));
2888
2889 // Determine whether this is a call to an object (C++ [over.call.object]).
2890 if (Fn->getType()->isRecordType())
2891 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
2892 CommaLocs, RParenLoc));
2893
Douglas Gregorfa047642009-02-04 00:32:51 +00002894 // Determine whether this is a call to a member function.
Douglas Gregore53060f2009-06-25 22:08:12 +00002895 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) {
2896 NamedDecl *MemDecl = MemExpr->getMemberDecl();
2897 if (isa<OverloadedFunctionDecl>(MemDecl) ||
2898 isa<CXXMethodDecl>(MemDecl) ||
2899 (isa<FunctionTemplateDecl>(MemDecl) &&
2900 isa<CXXMethodDecl>(
2901 cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl())))
Sebastian Redl0eb23302009-01-19 00:08:26 +00002902 return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
2903 CommaLocs, RParenLoc));
Douglas Gregore53060f2009-06-25 22:08:12 +00002904 }
Douglas Gregor88a35142008-12-22 05:46:06 +00002905 }
2906
Douglas Gregorfa047642009-02-04 00:32:51 +00002907 // If we're directly calling a function, get the appropriate declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002908 // Also, in C++, keep track of whether we should perform argument-dependent
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002909 // lookup and whether there were any explicitly-specified template arguments.
Douglas Gregorfa047642009-02-04 00:32:51 +00002910 bool ADL = true;
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002911 bool HasExplicitTemplateArgs = 0;
2912 const TemplateArgument *ExplicitTemplateArgs = 0;
2913 unsigned NumExplicitTemplateArgs = 0;
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002914 NestedNameSpecifier *Qualifier = 0;
2915 SourceRange QualifierRange;
2916 DeconstructCallFunction(Fn, NDecl, UnqualifiedName, Qualifier, QualifierRange,
2917 ADL,HasExplicitTemplateArgs, ExplicitTemplateArgs,
2918 NumExplicitTemplateArgs);
Mike Stumpeed9cac2009-02-19 03:04:26 +00002919
Douglas Gregor17330012009-02-04 15:01:18 +00002920 OverloadedFunctionDecl *Ovl = 0;
Douglas Gregore53060f2009-06-25 22:08:12 +00002921 FunctionTemplateDecl *FunctionTemplate = 0;
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002922 if (NDecl) {
2923 FDecl = dyn_cast<FunctionDecl>(NDecl);
2924 if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl)))
Douglas Gregore53060f2009-06-25 22:08:12 +00002925 FDecl = FunctionTemplate->getTemplatedDecl();
2926 else
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002927 FDecl = dyn_cast<FunctionDecl>(NDecl);
2928 Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl);
Douglas Gregor17330012009-02-04 15:01:18 +00002929 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002930
Mike Stump1eb44332009-09-09 15:08:12 +00002931 if (Ovl || FunctionTemplate ||
Douglas Gregore53060f2009-06-25 22:08:12 +00002932 (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) {
Douglas Gregor3e41d602009-02-13 23:20:09 +00002933 // We don't perform ADL for implicit declarations of builtins.
Douglas Gregor7814e6d2009-09-12 00:22:50 +00002934 if (FDecl && FDecl->getBuiltinID() && FDecl->isImplicit())
Douglas Gregorfa047642009-02-04 00:32:51 +00002935 ADL = false;
2936
Douglas Gregorf9201e02009-02-11 23:02:49 +00002937 // We don't perform ADL in C.
2938 if (!getLangOptions().CPlusPlus)
2939 ADL = false;
2940
Douglas Gregore53060f2009-06-25 22:08:12 +00002941 if (Ovl || FunctionTemplate || ADL) {
Mike Stump1eb44332009-09-09 15:08:12 +00002942 FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName,
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002943 HasExplicitTemplateArgs,
2944 ExplicitTemplateArgs,
2945 NumExplicitTemplateArgs,
Mike Stump1eb44332009-09-09 15:08:12 +00002946 LParenLoc, Args, NumArgs, CommaLocs,
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002947 RParenLoc, ADL);
Douglas Gregorfa047642009-02-04 00:32:51 +00002948 if (!FDecl)
2949 return ExprError();
2950
2951 // Update Fn to refer to the actual function selected.
2952 Expr *NewFn = 0;
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002953 if (Qualifier)
Douglas Gregorab452ba2009-03-26 23:50:42 +00002954 NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(),
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002955 Fn->getLocStart(),
Douglas Gregorab452ba2009-03-26 23:50:42 +00002956 false, false,
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002957 QualifierRange,
2958 Qualifier);
Douglas Gregorfa047642009-02-04 00:32:51 +00002959 else
Mike Stumpeed9cac2009-02-19 03:04:26 +00002960 NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(),
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002961 Fn->getLocStart());
Douglas Gregorfa047642009-02-04 00:32:51 +00002962 Fn->Destroy(Context);
2963 Fn = NewFn;
2964 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002965 }
Chris Lattner04421082008-04-08 04:40:51 +00002966
2967 // Promote the function operand.
2968 UsualUnaryConversions(Fn);
2969
Chris Lattner925e60d2007-12-28 05:29:59 +00002970 // Make the call expr early, before semantic checks. This guarantees cleanup
2971 // of arguments and function on error.
Ted Kremenek668bf912009-02-09 20:51:47 +00002972 ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn,
2973 Args, NumArgs,
2974 Context.BoolTy,
2975 RParenLoc));
Sebastian Redl0eb23302009-01-19 00:08:26 +00002976
Steve Naroffdd972f22008-09-05 22:11:13 +00002977 const FunctionType *FuncT;
2978 if (!Fn->getType()->isBlockPointerType()) {
2979 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
2980 // have type pointer to function".
Ted Kremenek6217b802009-07-29 21:53:49 +00002981 const PointerType *PT = Fn->getType()->getAs<PointerType>();
Steve Naroffdd972f22008-09-05 22:11:13 +00002982 if (PT == 0)
Sebastian Redl0eb23302009-01-19 00:08:26 +00002983 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2984 << Fn->getType() << Fn->getSourceRange());
John McCall183700f2009-09-21 23:43:11 +00002985 FuncT = PT->getPointeeType()->getAs<FunctionType>();
Steve Naroffdd972f22008-09-05 22:11:13 +00002986 } else { // This is a block call.
Ted Kremenek6217b802009-07-29 21:53:49 +00002987 FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()->
John McCall183700f2009-09-21 23:43:11 +00002988 getAs<FunctionType>();
Steve Naroffdd972f22008-09-05 22:11:13 +00002989 }
Chris Lattner925e60d2007-12-28 05:29:59 +00002990 if (FuncT == 0)
Sebastian Redl0eb23302009-01-19 00:08:26 +00002991 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2992 << Fn->getType() << Fn->getSourceRange());
2993
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002994 // Check for a valid return type
2995 if (!FuncT->getResultType()->isVoidType() &&
2996 RequireCompleteType(Fn->getSourceRange().getBegin(),
2997 FuncT->getResultType(),
Anders Carlssonb7906612009-08-26 23:45:07 +00002998 PDiag(diag::err_call_incomplete_return)
2999 << TheCall->getSourceRange()))
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00003000 return ExprError();
3001
Chris Lattner925e60d2007-12-28 05:29:59 +00003002 // We know the result type of the call, set it.
Douglas Gregor15da57e2008-10-29 02:00:59 +00003003 TheCall->setType(FuncT->getResultType().getNonReferenceType());
Sebastian Redl0eb23302009-01-19 00:08:26 +00003004
Douglas Gregor72564e72009-02-26 23:50:07 +00003005 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00003006 if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs,
Douglas Gregor88a35142008-12-22 05:46:06 +00003007 RParenLoc))
Sebastian Redl0eb23302009-01-19 00:08:26 +00003008 return ExprError();
Chris Lattner925e60d2007-12-28 05:29:59 +00003009 } else {
Douglas Gregor72564e72009-02-26 23:50:07 +00003010 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redl0eb23302009-01-19 00:08:26 +00003011
Douglas Gregor74734d52009-04-02 15:37:10 +00003012 if (FDecl) {
3013 // Check if we have too few/too many template arguments, based
3014 // on our knowledge of the function definition.
3015 const FunctionDecl *Def = 0;
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00003016 if (FDecl->getBody(Def) && NumArgs != Def->param_size()) {
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00003017 const FunctionProtoType *Proto =
John McCall183700f2009-09-21 23:43:11 +00003018 Def->getType()->getAs<FunctionProtoType>();
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00003019 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) {
3020 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
3021 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
3022 }
3023 }
Douglas Gregor74734d52009-04-02 15:37:10 +00003024 }
3025
Steve Naroffb291ab62007-08-28 23:30:39 +00003026 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner925e60d2007-12-28 05:29:59 +00003027 for (unsigned i = 0; i != NumArgs; i++) {
3028 Expr *Arg = Args[i];
3029 DefaultArgumentPromotion(Arg);
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00003030 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
3031 Arg->getType(),
Anders Carlssonb7906612009-08-26 23:45:07 +00003032 PDiag(diag::err_call_incomplete_argument)
3033 << Arg->getSourceRange()))
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00003034 return ExprError();
Chris Lattner925e60d2007-12-28 05:29:59 +00003035 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +00003036 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003037 }
Chris Lattner925e60d2007-12-28 05:29:59 +00003038
Douglas Gregor88a35142008-12-22 05:46:06 +00003039 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
3040 if (!Method->isStatic())
Sebastian Redl0eb23302009-01-19 00:08:26 +00003041 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
3042 << Fn->getSourceRange());
Douglas Gregor88a35142008-12-22 05:46:06 +00003043
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00003044 // Check for sentinels
3045 if (NDecl)
3046 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003047
Chris Lattner59907c42007-08-10 20:18:51 +00003048 // Do special checking on direct calls to functions.
Anders Carlssond406bf02009-08-16 01:56:34 +00003049 if (FDecl) {
3050 if (CheckFunctionCall(FDecl, TheCall.get()))
3051 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00003052
Douglas Gregor7814e6d2009-09-12 00:22:50 +00003053 if (unsigned BuiltinID = FDecl->getBuiltinID())
Anders Carlssond406bf02009-08-16 01:56:34 +00003054 return CheckBuiltinFunctionCall(BuiltinID, TheCall.take());
3055 } else if (NDecl) {
3056 if (CheckBlockCall(NDecl, TheCall.get()))
3057 return ExprError();
3058 }
Chris Lattner59907c42007-08-10 20:18:51 +00003059
Anders Carlssonec74c592009-08-16 03:06:32 +00003060 return MaybeBindToTemporary(TheCall.take());
Reid Spencer5f016e22007-07-11 17:01:13 +00003061}
3062
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003063Action::OwningExprResult
3064Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
3065 SourceLocation RParenLoc, ExprArg InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +00003066 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00003067 //FIXME: Preserve type source info.
3068 QualType literalType = GetTypeFromParser(Ty);
Steve Naroffaff1edd2007-07-19 21:32:11 +00003069 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +00003070 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003071 Expr *literalExpr = static_cast<Expr*>(InitExpr.get());
Anders Carlssond35c8322007-12-05 07:24:19 +00003072
Eli Friedman6223c222008-05-20 05:22:08 +00003073 if (literalType->isArrayType()) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00003074 if (literalType->isVariableArrayType())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003075 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
3076 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()));
Douglas Gregor690dc7f2009-05-21 23:48:18 +00003077 } else if (!literalType->isDependentType() &&
3078 RequireCompleteType(LParenLoc, literalType,
Anders Carlssonb7906612009-08-26 23:45:07 +00003079 PDiag(diag::err_typecheck_decl_incomplete_type)
Mike Stump1eb44332009-09-09 15:08:12 +00003080 << SourceRange(LParenLoc,
Anders Carlssonb7906612009-08-26 23:45:07 +00003081 literalExpr->getSourceRange().getEnd())))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003082 return ExprError();
Eli Friedman6223c222008-05-20 05:22:08 +00003083
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003084 if (CheckInitializerTypes(literalExpr, literalType, LParenLoc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003085 DeclarationName(), /*FIXME:DirectInit=*/false))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003086 return ExprError();
Steve Naroffe9b12192008-01-14 18:19:28 +00003087
Chris Lattner371f2582008-12-04 23:50:19 +00003088 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffe9b12192008-01-14 18:19:28 +00003089 if (isFileScope) { // 6.5.2.5p3
Steve Naroffd0091aa2008-01-10 22:15:12 +00003090 if (CheckForConstantInitializer(literalExpr, literalType))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003091 return ExprError();
Steve Naroffd0091aa2008-01-10 22:15:12 +00003092 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003093 InitExpr.release();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003094 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType,
Steve Naroff6ece14c2009-01-21 00:14:39 +00003095 literalExpr, isFileScope));
Steve Naroff4aa88f82007-07-19 01:06:55 +00003096}
3097
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003098Action::OwningExprResult
3099Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist,
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003100 SourceLocation RBraceLoc) {
3101 unsigned NumInit = initlist.size();
3102 Expr **InitList = reinterpret_cast<Expr**>(initlist.release());
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00003103
Steve Naroff08d92e42007-09-15 18:49:24 +00003104 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stumpeed9cac2009-02-19 03:04:26 +00003105 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003106
Mike Stumpeed9cac2009-02-19 03:04:26 +00003107 InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit,
Douglas Gregor4c678342009-01-28 21:54:33 +00003108 RBraceLoc);
Chris Lattnerf0467b32008-04-02 04:24:33 +00003109 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003110 return Owned(E);
Steve Naroff4aa88f82007-07-19 01:06:55 +00003111}
3112
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003113/// CheckCastTypes - Check type constraints for casting between types.
Sebastian Redlef0cb8e2009-07-29 13:50:23 +00003114bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr,
Mike Stump1eb44332009-09-09 15:08:12 +00003115 CastExpr::CastKind& Kind,
Fariborz Jahaniane9f42082009-08-26 18:55:36 +00003116 CXXMethodDecl *& ConversionDecl,
3117 bool FunctionalStyle) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00003118 if (getLangOptions().CPlusPlus)
Fariborz Jahaniane9f42082009-08-26 18:55:36 +00003119 return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle,
3120 ConversionDecl);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00003121
Eli Friedman199ea952009-08-15 19:02:19 +00003122 DefaultFunctionArrayConversion(castExpr);
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003123
3124 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
3125 // type needs to be scalar.
3126 if (castType->isVoidType()) {
3127 // Cast to void allows any expr type.
3128 } else if (!castType->isScalarType() && !castType->isVectorType()) {
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003129 if (Context.getCanonicalType(castType).getUnqualifiedType() ==
3130 Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) &&
3131 (castType->isStructureType() || castType->isUnionType())) {
3132 // GCC struct/union extension: allow cast to self.
Eli Friedmanb1d796d2009-03-23 00:24:07 +00003133 // FIXME: Check that the cast destination type is complete.
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003134 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
3135 << castType << castExpr->getSourceRange();
Anders Carlsson4d8673b2009-08-07 23:22:37 +00003136 Kind = CastExpr::CK_NoOp;
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003137 } else if (castType->isUnionType()) {
3138 // GCC cast to union extension
Ted Kremenek6217b802009-07-29 21:53:49 +00003139 RecordDecl *RD = castType->getAs<RecordType>()->getDecl();
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003140 RecordDecl::field_iterator Field, FieldEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003141 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003142 Field != FieldEnd; ++Field) {
3143 if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() ==
3144 Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) {
3145 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union)
3146 << castExpr->getSourceRange();
3147 break;
3148 }
3149 }
3150 if (Field == FieldEnd)
3151 return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type)
3152 << castExpr->getType() << castExpr->getSourceRange();
Anders Carlsson4d8673b2009-08-07 23:22:37 +00003153 Kind = CastExpr::CK_ToUnion;
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003154 } else {
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003155 // Reject any other conversions to non-scalar types.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003156 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00003157 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003158 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003159 } else if (!castExpr->getType()->isScalarType() &&
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003160 !castExpr->getType()->isVectorType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003161 return Diag(castExpr->getLocStart(),
3162 diag::err_typecheck_expect_scalar_operand)
Chris Lattnerd1625842008-11-24 06:25:27 +00003163 << castExpr->getType() << castExpr->getSourceRange();
Nate Begeman58d29a42009-06-26 00:50:28 +00003164 } else if (castType->isExtVectorType()) {
3165 if (CheckExtVectorCast(TyR, castType, castExpr->getType()))
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003166 return true;
3167 } else if (castType->isVectorType()) {
3168 if (CheckVectorCast(TyR, castType, castExpr->getType()))
3169 return true;
Nate Begeman58d29a42009-06-26 00:50:28 +00003170 } else if (castExpr->getType()->isVectorType()) {
3171 if (CheckVectorCast(TyR, castExpr->getType(), castType))
3172 return true;
Steve Naroff6b9dfd42009-03-04 15:11:40 +00003173 } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) {
Steve Naroffa0c3e9c2009-04-08 23:52:26 +00003174 return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR;
Eli Friedman41826bb2009-05-01 02:23:58 +00003175 } else if (!castType->isArithmeticType()) {
3176 QualType castExprType = castExpr->getType();
3177 if (!castExprType->isIntegralType() && castExprType->isArithmeticType())
3178 return Diag(castExpr->getLocStart(),
3179 diag::err_cast_pointer_from_non_pointer_int)
3180 << castExprType << castExpr->getSourceRange();
3181 } else if (!castExpr->getType()->isArithmeticType()) {
3182 if (!castType->isIntegralType() && castType->isArithmeticType())
3183 return Diag(castExpr->getLocStart(),
3184 diag::err_cast_pointer_to_non_pointer_int)
3185 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003186 }
Fariborz Jahanianb5ff6bf2009-05-22 21:42:52 +00003187 if (isa<ObjCSelectorExpr>(castExpr))
3188 return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr);
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003189 return false;
3190}
3191
Chris Lattnerfe23e212007-12-20 00:44:32 +00003192bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) {
Anders Carlssona64db8f2007-11-27 05:51:55 +00003193 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00003194
Anders Carlssona64db8f2007-11-27 05:51:55 +00003195 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner98be4942008-03-05 18:54:05 +00003196 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssona64db8f2007-11-27 05:51:55 +00003197 return Diag(R.getBegin(),
Mike Stumpeed9cac2009-02-19 03:04:26 +00003198 Ty->isVectorType() ?
Anders Carlssona64db8f2007-11-27 05:51:55 +00003199 diag::err_invalid_conversion_between_vectors :
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003200 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00003201 << VectorTy << Ty << R;
Anders Carlssona64db8f2007-11-27 05:51:55 +00003202 } else
3203 return Diag(R.getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003204 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00003205 << VectorTy << Ty << R;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003206
Anders Carlssona64db8f2007-11-27 05:51:55 +00003207 return false;
3208}
3209
Nate Begeman58d29a42009-06-26 00:50:28 +00003210bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, QualType SrcTy) {
3211 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
Mike Stump1eb44332009-09-09 15:08:12 +00003212
Nate Begeman9b10da62009-06-27 22:05:55 +00003213 // If SrcTy is a VectorType, the total size must match to explicitly cast to
3214 // an ExtVectorType.
Nate Begeman58d29a42009-06-26 00:50:28 +00003215 if (SrcTy->isVectorType()) {
3216 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy))
3217 return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
3218 << DestTy << SrcTy << R;
3219 return false;
3220 }
3221
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003222 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begeman58d29a42009-06-26 00:50:28 +00003223 // conversion will take place first from scalar to elt type, and then
3224 // splat from elt type to vector.
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003225 if (SrcTy->isPointerType())
3226 return Diag(R.getBegin(),
3227 diag::err_invalid_conversion_between_vector_and_scalar)
3228 << DestTy << SrcTy << R;
Nate Begeman58d29a42009-06-26 00:50:28 +00003229 return false;
3230}
3231
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003232Action::OwningExprResult
Nate Begeman2ef13e52009-08-10 23:49:36 +00003233Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, TypeTy *Ty,
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003234 SourceLocation RParenLoc, ExprArg Op) {
Anders Carlssoncdb61972009-08-07 22:21:05 +00003235 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Mike Stump1eb44332009-09-09 15:08:12 +00003236
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003237 assert((Ty != 0) && (Op.get() != 0) &&
3238 "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +00003239
Nate Begeman2ef13e52009-08-10 23:49:36 +00003240 Expr *castExpr = (Expr *)Op.get();
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00003241 //FIXME: Preserve type source info.
3242 QualType castType = GetTypeFromParser(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00003243
Nate Begeman2ef13e52009-08-10 23:49:36 +00003244 // If the Expr being casted is a ParenListExpr, handle it specially.
3245 if (isa<ParenListExpr>(castExpr))
3246 return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, move(Op),castType);
Anders Carlsson0aebc812009-09-09 21:33:21 +00003247 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003248 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr,
Anders Carlsson0aebc812009-09-09 21:33:21 +00003249 Kind, Method))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003250 return ExprError();
Anders Carlsson0aebc812009-09-09 21:33:21 +00003251
3252 if (Method) {
Daniel Dunbar7e88a602009-09-17 06:31:17 +00003253 OwningExprResult CastArg = BuildCXXCastArgument(LParenLoc, castType, Kind,
Anders Carlsson0aebc812009-09-09 21:33:21 +00003254 Method, move(Op));
Daniel Dunbar7e88a602009-09-17 06:31:17 +00003255
Anders Carlsson0aebc812009-09-09 21:33:21 +00003256 if (CastArg.isInvalid())
3257 return ExprError();
Daniel Dunbar7e88a602009-09-17 06:31:17 +00003258
Anders Carlsson0aebc812009-09-09 21:33:21 +00003259 castExpr = CastArg.takeAs<Expr>();
3260 } else {
3261 Op.release();
Fariborz Jahanian31976592009-08-29 19:15:16 +00003262 }
Mike Stump1eb44332009-09-09 15:08:12 +00003263
Sebastian Redl9cc11e72009-07-25 15:41:38 +00003264 return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(),
Mike Stump1eb44332009-09-09 15:08:12 +00003265 Kind, castExpr, castType,
Anders Carlssoncdb61972009-08-07 22:21:05 +00003266 LParenLoc, RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00003267}
3268
Nate Begeman2ef13e52009-08-10 23:49:36 +00003269/// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence
3270/// of comma binary operators.
3271Action::OwningExprResult
3272Sema::MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg EA) {
3273 Expr *expr = EA.takeAs<Expr>();
3274 ParenListExpr *E = dyn_cast<ParenListExpr>(expr);
3275 if (!E)
3276 return Owned(expr);
Mike Stump1eb44332009-09-09 15:08:12 +00003277
Nate Begeman2ef13e52009-08-10 23:49:36 +00003278 OwningExprResult Result(*this, E->getExpr(0));
Mike Stump1eb44332009-09-09 15:08:12 +00003279
Nate Begeman2ef13e52009-08-10 23:49:36 +00003280 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
3281 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, move(Result),
3282 Owned(E->getExpr(i)));
Mike Stump1eb44332009-09-09 15:08:12 +00003283
Nate Begeman2ef13e52009-08-10 23:49:36 +00003284 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), move(Result));
3285}
3286
3287Action::OwningExprResult
3288Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc,
3289 SourceLocation RParenLoc, ExprArg Op,
3290 QualType Ty) {
3291 ParenListExpr *PE = (ParenListExpr *)Op.get();
Mike Stump1eb44332009-09-09 15:08:12 +00003292
3293 // If this is an altivec initializer, '(' type ')' '(' init, ..., init ')'
Nate Begeman2ef13e52009-08-10 23:49:36 +00003294 // then handle it as such.
3295 if (getLangOptions().AltiVec && Ty->isVectorType()) {
3296 if (PE->getNumExprs() == 0) {
3297 Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer);
3298 return ExprError();
3299 }
3300
3301 llvm::SmallVector<Expr *, 8> initExprs;
3302 for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i)
3303 initExprs.push_back(PE->getExpr(i));
3304
3305 // FIXME: This means that pretty-printing the final AST will produce curly
3306 // braces instead of the original commas.
3307 Op.release();
Mike Stump1eb44332009-09-09 15:08:12 +00003308 InitListExpr *E = new (Context) InitListExpr(LParenLoc, &initExprs[0],
Nate Begeman2ef13e52009-08-10 23:49:36 +00003309 initExprs.size(), RParenLoc);
3310 E->setType(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00003311 return ActOnCompoundLiteral(LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00003312 Owned(E));
3313 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00003314 // This is not an AltiVec-style cast, so turn the ParenListExpr into a
Nate Begeman2ef13e52009-08-10 23:49:36 +00003315 // sequence of BinOp comma operators.
3316 Op = MaybeConvertParenListExprToParenExpr(S, move(Op));
3317 return ActOnCastExpr(S, LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,move(Op));
3318 }
3319}
3320
3321Action::OwningExprResult Sema::ActOnParenListExpr(SourceLocation L,
3322 SourceLocation R,
3323 MultiExprArg Val) {
3324 unsigned nexprs = Val.size();
3325 Expr **exprs = reinterpret_cast<Expr**>(Val.release());
3326 assert((exprs != 0) && "ActOnParenListExpr() missing expr list");
3327 Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R);
3328 return Owned(expr);
3329}
3330
Sebastian Redl28507842009-02-26 14:39:58 +00003331/// Note that lhs is not null here, even if this is the gnu "x ?: y" extension.
3332/// In that case, lhs = cond.
Chris Lattnera119a3b2009-02-18 04:38:20 +00003333/// C99 6.5.15
3334QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
3335 SourceLocation QuestionLoc) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003336 // C++ is sufficiently different to merit its own checker.
3337 if (getLangOptions().CPlusPlus)
3338 return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc);
3339
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003340 UsualUnaryConversions(Cond);
3341 UsualUnaryConversions(LHS);
3342 UsualUnaryConversions(RHS);
3343 QualType CondTy = Cond->getType();
3344 QualType LHSTy = LHS->getType();
3345 QualType RHSTy = RHS->getType();
Steve Naroffc80b4ee2007-07-16 21:54:35 +00003346
Reid Spencer5f016e22007-07-11 17:01:13 +00003347 // first, check the condition.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003348 if (!CondTy->isScalarType()) { // C99 6.5.15p2
3349 Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar)
3350 << CondTy;
3351 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003352 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003353
Chris Lattner70d67a92008-01-06 22:42:25 +00003354 // Now check the two expressions.
Nate Begeman2ef13e52009-08-10 23:49:36 +00003355 if (LHSTy->isVectorType() || RHSTy->isVectorType())
3356 return CheckVectorOperands(QuestionLoc, LHS, RHS);
Douglas Gregor898574e2008-12-05 23:32:09 +00003357
Chris Lattner70d67a92008-01-06 22:42:25 +00003358 // If both operands have arithmetic type, do the usual arithmetic conversions
3359 // to find a common type: C99 6.5.15p3,5.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003360 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
3361 UsualArithmeticConversions(LHS, RHS);
3362 return LHS->getType();
Steve Naroffa4332e22007-07-17 00:58:39 +00003363 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003364
Chris Lattner70d67a92008-01-06 22:42:25 +00003365 // If both operands are the same structure or union type, the result is that
3366 // type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003367 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3
3368 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
Chris Lattnera21ddb32007-11-26 01:40:58 +00003369 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stumpeed9cac2009-02-19 03:04:26 +00003370 // "If both the operands have structure or union type, the result has
Chris Lattner70d67a92008-01-06 22:42:25 +00003371 // that type." This implies that CV qualifiers are dropped.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003372 return LHSTy.getUnqualifiedType();
Eli Friedmanb1d796d2009-03-23 00:24:07 +00003373 // FIXME: Type of conditional expression must be complete in C mode.
Reid Spencer5f016e22007-07-11 17:01:13 +00003374 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003375
Chris Lattner70d67a92008-01-06 22:42:25 +00003376 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffe701c0a2008-05-12 21:44:38 +00003377 // The following || allows only one side to be void (a GCC-ism).
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003378 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
3379 if (!LHSTy->isVoidType())
3380 Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3381 << RHS->getSourceRange();
3382 if (!RHSTy->isVoidType())
3383 Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3384 << LHS->getSourceRange();
3385 ImpCastExprToType(LHS, Context.VoidTy);
3386 ImpCastExprToType(RHS, Context.VoidTy);
Eli Friedman0e724012008-06-04 19:47:51 +00003387 return Context.VoidTy;
Steve Naroffe701c0a2008-05-12 21:44:38 +00003388 }
Steve Naroffb6d54e52008-01-08 01:11:38 +00003389 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
3390 // the type of the other operand."
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003391 if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) &&
Douglas Gregorce940492009-09-25 04:25:58 +00003392 RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003393 ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer.
3394 return LHSTy;
Steve Naroffb6d54e52008-01-08 01:11:38 +00003395 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003396 if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) &&
Douglas Gregorce940492009-09-25 04:25:58 +00003397 LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003398 ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer.
3399 return RHSTy;
Steve Naroffb6d54e52008-01-08 01:11:38 +00003400 }
David Chisnall0f436562009-08-17 16:35:33 +00003401 // Handle things like Class and struct objc_class*. Here we case the result
3402 // to the pseudo-builtin, because that will be implicitly cast back to the
3403 // redefinition type if an attempt is made to access its fields.
3404 if (LHSTy->isObjCClassType() &&
3405 (RHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) {
3406 ImpCastExprToType(RHS, LHSTy);
3407 return LHSTy;
3408 }
3409 if (RHSTy->isObjCClassType() &&
3410 (LHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) {
3411 ImpCastExprToType(LHS, RHSTy);
3412 return RHSTy;
3413 }
3414 // And the same for struct objc_object* / id
3415 if (LHSTy->isObjCIdType() &&
3416 (RHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) {
3417 ImpCastExprToType(RHS, LHSTy);
3418 return LHSTy;
3419 }
3420 if (RHSTy->isObjCIdType() &&
3421 (LHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) {
3422 ImpCastExprToType(LHS, RHSTy);
3423 return RHSTy;
3424 }
Steve Naroff7154a772009-07-01 14:36:47 +00003425 // Handle block pointer types.
3426 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) {
3427 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
3428 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
3429 QualType destType = Context.getPointerType(Context.VoidTy);
Mike Stump1eb44332009-09-09 15:08:12 +00003430 ImpCastExprToType(LHS, destType);
Steve Naroff7154a772009-07-01 14:36:47 +00003431 ImpCastExprToType(RHS, destType);
3432 return destType;
3433 }
3434 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3435 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3436 return QualType();
Mike Stumpdd3e1662009-05-07 03:14:14 +00003437 }
Steve Naroff7154a772009-07-01 14:36:47 +00003438 // We have 2 block pointer types.
3439 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3440 // Two identical block pointer types are always compatible.
Mike Stumpdd3e1662009-05-07 03:14:14 +00003441 return LHSTy;
3442 }
Steve Naroff7154a772009-07-01 14:36:47 +00003443 // The block pointer types aren't identical, continue checking.
Ted Kremenek6217b802009-07-29 21:53:49 +00003444 QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType();
3445 QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003446
Steve Naroff7154a772009-07-01 14:36:47 +00003447 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3448 rhptee.getUnqualifiedType())) {
Mike Stumpdd3e1662009-05-07 03:14:14 +00003449 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3450 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3451 // In this situation, we assume void* type. No especially good
3452 // reason, but this is what gcc does, and we do have to pick
3453 // to get a consistent AST.
3454 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3455 ImpCastExprToType(LHS, incompatTy);
3456 ImpCastExprToType(RHS, incompatTy);
3457 return incompatTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00003458 }
Steve Naroff7154a772009-07-01 14:36:47 +00003459 // The block pointer types are compatible.
3460 ImpCastExprToType(LHS, LHSTy);
3461 ImpCastExprToType(RHS, LHSTy);
Steve Naroff91588042009-04-08 17:05:15 +00003462 return LHSTy;
3463 }
Steve Naroff7154a772009-07-01 14:36:47 +00003464 // Check constraints for Objective-C object pointers types.
Steve Naroff14108da2009-07-10 23:34:53 +00003465 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003466
Steve Naroff7154a772009-07-01 14:36:47 +00003467 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3468 // Two identical object pointer types are always compatible.
3469 return LHSTy;
3470 }
John McCall183700f2009-09-21 23:43:11 +00003471 const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>();
3472 const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>();
Steve Naroff7154a772009-07-01 14:36:47 +00003473 QualType compositeType = LHSTy;
Mike Stump1eb44332009-09-09 15:08:12 +00003474
Steve Naroff7154a772009-07-01 14:36:47 +00003475 // If both operands are interfaces and either operand can be
3476 // assigned to the other, use that type as the composite
3477 // type. This allows
3478 // xxx ? (A*) a : (B*) b
3479 // where B is a subclass of A.
3480 //
3481 // Additionally, as for assignment, if either type is 'id'
3482 // allow silent coercion. Finally, if the types are
3483 // incompatible then make sure to use 'id' as the composite
3484 // type so the result is acceptable for sending messages to.
3485
3486 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
3487 // It could return the composite type.
Steve Naroff14108da2009-07-10 23:34:53 +00003488 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
Fariborz Jahanian9ec22a32009-08-22 22:27:17 +00003489 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
Steve Naroff14108da2009-07-10 23:34:53 +00003490 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
Fariborz Jahanian9ec22a32009-08-22 22:27:17 +00003491 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
Mike Stump1eb44332009-09-09 15:08:12 +00003492 } else if ((LHSTy->isObjCQualifiedIdType() ||
Steve Naroff14108da2009-07-10 23:34:53 +00003493 RHSTy->isObjCQualifiedIdType()) &&
Steve Naroff4084c302009-07-23 01:01:38 +00003494 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
Mike Stump1eb44332009-09-09 15:08:12 +00003495 // Need to handle "id<xx>" explicitly.
Steve Naroff14108da2009-07-10 23:34:53 +00003496 // GCC allows qualified id and any Objective-C type to devolve to
3497 // id. Currently localizing to here until clear this should be
3498 // part of ObjCQualifiedIdTypesAreCompatible.
3499 compositeType = Context.getObjCIdType();
3500 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
Steve Naroff7154a772009-07-01 14:36:47 +00003501 compositeType = Context.getObjCIdType();
3502 } else {
3503 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
3504 << LHSTy << RHSTy
3505 << LHS->getSourceRange() << RHS->getSourceRange();
3506 QualType incompatTy = Context.getObjCIdType();
3507 ImpCastExprToType(LHS, incompatTy);
3508 ImpCastExprToType(RHS, incompatTy);
3509 return incompatTy;
3510 }
3511 // The object pointer types are compatible.
3512 ImpCastExprToType(LHS, compositeType);
3513 ImpCastExprToType(RHS, compositeType);
3514 return compositeType;
3515 }
Steve Naroffc715e782009-07-29 15:09:39 +00003516 // Check Objective-C object pointer types and 'void *'
3517 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00003518 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
John McCall183700f2009-09-21 23:43:11 +00003519 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00003520 QualType destPointee
3521 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
Steve Naroffc715e782009-07-29 15:09:39 +00003522 QualType destType = Context.getPointerType(destPointee);
3523 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3524 ImpCastExprToType(RHS, destType); // promote to void*
3525 return destType;
3526 }
3527 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
John McCall183700f2009-09-21 23:43:11 +00003528 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00003529 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00003530 QualType destPointee
3531 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
Steve Naroffc715e782009-07-29 15:09:39 +00003532 QualType destType = Context.getPointerType(destPointee);
3533 ImpCastExprToType(RHS, destType); // add qualifiers if necessary
3534 ImpCastExprToType(LHS, destType); // promote to void*
3535 return destType;
3536 }
Steve Naroff7154a772009-07-01 14:36:47 +00003537 // Check constraints for C object pointers types (C99 6.5.15p3,6).
3538 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
3539 // get the "pointed to" types
Ted Kremenek6217b802009-07-29 21:53:49 +00003540 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
3541 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroff7154a772009-07-01 14:36:47 +00003542
3543 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
3544 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
3545 // Figure out necessary qualifiers (C99 6.5.15p6)
John McCall0953e762009-09-24 19:53:00 +00003546 QualType destPointee
3547 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
Steve Naroff7154a772009-07-01 14:36:47 +00003548 QualType destType = Context.getPointerType(destPointee);
3549 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3550 ImpCastExprToType(RHS, destType); // promote to void*
3551 return destType;
3552 }
3553 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
John McCall0953e762009-09-24 19:53:00 +00003554 QualType destPointee
3555 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
Steve Naroff7154a772009-07-01 14:36:47 +00003556 QualType destType = Context.getPointerType(destPointee);
3557 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3558 ImpCastExprToType(RHS, destType); // promote to void*
3559 return destType;
3560 }
3561
3562 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3563 // Two identical pointer types are always compatible.
3564 return LHSTy;
3565 }
3566 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3567 rhptee.getUnqualifiedType())) {
3568 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3569 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3570 // In this situation, we assume void* type. No especially good
3571 // reason, but this is what gcc does, and we do have to pick
3572 // to get a consistent AST.
3573 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3574 ImpCastExprToType(LHS, incompatTy);
3575 ImpCastExprToType(RHS, incompatTy);
3576 return incompatTy;
3577 }
3578 // The pointer types are compatible.
3579 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
3580 // differently qualified versions of compatible types, the result type is
3581 // a pointer to an appropriately qualified version of the *composite*
3582 // type.
3583 // FIXME: Need to calculate the composite type.
3584 // FIXME: Need to add qualifiers
3585 ImpCastExprToType(LHS, LHSTy);
3586 ImpCastExprToType(RHS, LHSTy);
3587 return LHSTy;
3588 }
Mike Stump1eb44332009-09-09 15:08:12 +00003589
Steve Naroff7154a772009-07-01 14:36:47 +00003590 // GCC compatibility: soften pointer/integer mismatch.
3591 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) {
3592 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3593 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3594 ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer.
3595 return RHSTy;
3596 }
3597 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) {
3598 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3599 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3600 ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer.
3601 return LHSTy;
3602 }
Daniel Dunbar5e155f02008-09-11 23:12:46 +00003603
Chris Lattner70d67a92008-01-06 22:42:25 +00003604 // Otherwise, the operands are not compatible.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003605 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3606 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00003607 return QualType();
3608}
3609
Steve Narofff69936d2007-09-16 03:34:24 +00003610/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +00003611/// in the case of a the GNU conditional expr extension.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003612Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
3613 SourceLocation ColonLoc,
3614 ExprArg Cond, ExprArg LHS,
3615 ExprArg RHS) {
3616 Expr *CondExpr = (Expr *) Cond.get();
3617 Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get();
Chris Lattnera21ddb32007-11-26 01:40:58 +00003618
3619 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
3620 // was the condition.
3621 bool isLHSNull = LHSExpr == 0;
3622 if (isLHSNull)
3623 LHSExpr = CondExpr;
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003624
3625 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
Chris Lattner26824902007-07-16 21:39:03 +00003626 RHSExpr, QuestionLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00003627 if (result.isNull())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003628 return ExprError();
3629
3630 Cond.release();
3631 LHS.release();
3632 RHS.release();
Douglas Gregor47e1f7c2009-08-26 14:37:04 +00003633 return Owned(new (Context) ConditionalOperator(CondExpr, QuestionLoc,
Steve Naroff6ece14c2009-01-21 00:14:39 +00003634 isLHSNull ? 0 : LHSExpr,
Douglas Gregor47e1f7c2009-08-26 14:37:04 +00003635 ColonLoc, RHSExpr, result));
Reid Spencer5f016e22007-07-11 17:01:13 +00003636}
3637
Reid Spencer5f016e22007-07-11 17:01:13 +00003638// CheckPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stumpeed9cac2009-02-19 03:04:26 +00003639// being closely modeled after the C99 spec:-). The odd characteristic of this
Reid Spencer5f016e22007-07-11 17:01:13 +00003640// routine is it effectively iqnores the qualifiers on the top level pointee.
3641// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
3642// FIXME: add a couple examples in this comment.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003643Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00003644Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
3645 QualType lhptee, rhptee;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003646
David Chisnall0f436562009-08-17 16:35:33 +00003647 if ((lhsType->isObjCClassType() &&
3648 (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) ||
3649 (rhsType->isObjCClassType() &&
3650 (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) {
3651 return Compatible;
3652 }
3653
Reid Spencer5f016e22007-07-11 17:01:13 +00003654 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenek6217b802009-07-29 21:53:49 +00003655 lhptee = lhsType->getAs<PointerType>()->getPointeeType();
3656 rhptee = rhsType->getAs<PointerType>()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003657
Reid Spencer5f016e22007-07-11 17:01:13 +00003658 // make sure we operate on the canonical type
Chris Lattnerb77792e2008-07-26 22:17:49 +00003659 lhptee = Context.getCanonicalType(lhptee);
3660 rhptee = Context.getCanonicalType(rhptee);
Reid Spencer5f016e22007-07-11 17:01:13 +00003661
Chris Lattner5cf216b2008-01-04 18:04:52 +00003662 AssignConvertType ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003663
3664 // C99 6.5.16.1p1: This following citation is common to constraints
3665 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
3666 // qualifiers of the type *pointed to* by the right;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00003667 // FIXME: Handle ExtQualType
Douglas Gregor98cd5992008-10-21 23:43:52 +00003668 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
Chris Lattner5cf216b2008-01-04 18:04:52 +00003669 ConvTy = CompatiblePointerDiscardsQualifiers;
Reid Spencer5f016e22007-07-11 17:01:13 +00003670
Mike Stumpeed9cac2009-02-19 03:04:26 +00003671 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
3672 // incomplete type and the other is a pointer to a qualified or unqualified
Reid Spencer5f016e22007-07-11 17:01:13 +00003673 // version of void...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003674 if (lhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00003675 if (rhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00003676 return ConvTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003677
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003678 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00003679 assert(rhptee->isFunctionType());
3680 return FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003681 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003682
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003683 if (rhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00003684 if (lhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00003685 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003686
3687 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00003688 assert(lhptee->isFunctionType());
3689 return FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003690 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003691 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Reid Spencer5f016e22007-07-11 17:01:13 +00003692 // unqualified versions of compatible types, ...
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003693 lhptee = lhptee.getUnqualifiedType();
3694 rhptee = rhptee.getUnqualifiedType();
3695 if (!Context.typesAreCompatible(lhptee, rhptee)) {
3696 // Check if the pointee types are compatible ignoring the sign.
3697 // We explicitly check for char so that we catch "char" vs
3698 // "unsigned char" on systems where "char" is unsigned.
3699 if (lhptee->isCharType()) {
3700 lhptee = Context.UnsignedCharTy;
3701 } else if (lhptee->isSignedIntegerType()) {
3702 lhptee = Context.getCorrespondingUnsignedType(lhptee);
3703 }
3704 if (rhptee->isCharType()) {
3705 rhptee = Context.UnsignedCharTy;
3706 } else if (rhptee->isSignedIntegerType()) {
3707 rhptee = Context.getCorrespondingUnsignedType(rhptee);
3708 }
3709 if (lhptee == rhptee) {
3710 // Types are compatible ignoring the sign. Qualifier incompatibility
3711 // takes priority over sign incompatibility because the sign
3712 // warning can be disabled.
3713 if (ConvTy != Compatible)
3714 return ConvTy;
3715 return IncompatiblePointerSign;
3716 }
3717 // General pointer incompatibility takes priority over qualifiers.
Mike Stump1eb44332009-09-09 15:08:12 +00003718 return IncompatiblePointer;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003719 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00003720 return ConvTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00003721}
3722
Steve Naroff1c7d0672008-09-04 15:10:53 +00003723/// CheckBlockPointerTypesForAssignment - This routine determines whether two
3724/// block pointer types are compatible or whether a block and normal pointer
3725/// are compatible. It is more restrict than comparing two function pointer
3726// types.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003727Sema::AssignConvertType
3728Sema::CheckBlockPointerTypesForAssignment(QualType lhsType,
Steve Naroff1c7d0672008-09-04 15:10:53 +00003729 QualType rhsType) {
3730 QualType lhptee, rhptee;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003731
Steve Naroff1c7d0672008-09-04 15:10:53 +00003732 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenek6217b802009-07-29 21:53:49 +00003733 lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType();
3734 rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003735
Steve Naroff1c7d0672008-09-04 15:10:53 +00003736 // make sure we operate on the canonical type
3737 lhptee = Context.getCanonicalType(lhptee);
3738 rhptee = Context.getCanonicalType(rhptee);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003739
Steve Naroff1c7d0672008-09-04 15:10:53 +00003740 AssignConvertType ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003741
Steve Naroff1c7d0672008-09-04 15:10:53 +00003742 // For blocks we enforce that qualifiers are identical.
3743 if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers())
3744 ConvTy = CompatiblePointerDiscardsQualifiers;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003745
Eli Friedman26784c12009-06-08 05:08:54 +00003746 if (!Context.typesAreCompatible(lhptee, rhptee))
Mike Stumpeed9cac2009-02-19 03:04:26 +00003747 return IncompatibleBlockPointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00003748 return ConvTy;
3749}
3750
Mike Stumpeed9cac2009-02-19 03:04:26 +00003751/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
3752/// has code to accommodate several GCC extensions when type checking
Reid Spencer5f016e22007-07-11 17:01:13 +00003753/// pointers. Here are some objectionable examples that GCC considers warnings:
3754///
3755/// int a, *pint;
3756/// short *pshort;
3757/// struct foo *pfoo;
3758///
3759/// pint = pshort; // warning: assignment from incompatible pointer type
3760/// a = pint; // warning: assignment makes integer from pointer without a cast
3761/// pint = a; // warning: assignment makes pointer from integer without a cast
3762/// pint = pfoo; // warning: assignment from incompatible pointer type
3763///
3764/// As a result, the code for dealing with pointers is more complex than the
Mike Stumpeed9cac2009-02-19 03:04:26 +00003765/// C99 spec dictates.
Reid Spencer5f016e22007-07-11 17:01:13 +00003766///
Chris Lattner5cf216b2008-01-04 18:04:52 +00003767Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00003768Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattnerfc144e22008-01-04 23:18:45 +00003769 // Get canonical types. We're not formatting these types, just comparing
3770 // them.
Chris Lattnerb77792e2008-07-26 22:17:49 +00003771 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
3772 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003773
3774 if (lhsType == rhsType)
Chris Lattnerd2656dd2008-01-07 17:51:46 +00003775 return Compatible; // Common case: fast path an exact match.
Steve Naroff700204c2007-07-24 21:46:40 +00003776
David Chisnall0f436562009-08-17 16:35:33 +00003777 if ((lhsType->isObjCClassType() &&
3778 (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) ||
3779 (rhsType->isObjCClassType() &&
3780 (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) {
3781 return Compatible;
3782 }
3783
Douglas Gregor9d293df2008-10-28 00:22:11 +00003784 // If the left-hand side is a reference type, then we are in a
3785 // (rare!) case where we've allowed the use of references in C,
3786 // e.g., as a parameter type in a built-in function. In this case,
3787 // just make sure that the type referenced is compatible with the
3788 // right-hand side type. The caller is responsible for adjusting
3789 // lhsType so that the resulting expression does not have reference
3790 // type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003791 if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) {
Douglas Gregor9d293df2008-10-28 00:22:11 +00003792 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType))
Anders Carlsson793680e2007-10-12 23:56:29 +00003793 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003794 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00003795 }
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003796 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
3797 // to the same ExtVector type.
3798 if (lhsType->isExtVectorType()) {
3799 if (rhsType->isExtVectorType())
3800 return lhsType == rhsType ? Compatible : Incompatible;
3801 if (!rhsType->isVectorType() && rhsType->isArithmeticType())
3802 return Compatible;
3803 }
Mike Stump1eb44332009-09-09 15:08:12 +00003804
Nate Begemanbe2341d2008-07-14 18:02:46 +00003805 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003806 // If we are allowing lax vector conversions, and LHS and RHS are both
Mike Stumpeed9cac2009-02-19 03:04:26 +00003807 // vectors, the total size only needs to be the same. This is a bitcast;
Nate Begemanbe2341d2008-07-14 18:02:46 +00003808 // no bits are changed but the result type is different.
Chris Lattnere8b3e962008-01-04 23:32:24 +00003809 if (getLangOptions().LaxVectorConversions &&
3810 lhsType->isVectorType() && rhsType->isVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003811 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00003812 return IncompatibleVectors;
Chris Lattnere8b3e962008-01-04 23:32:24 +00003813 }
3814 return Incompatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003815 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003816
Chris Lattnere8b3e962008-01-04 23:32:24 +00003817 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Reid Spencer5f016e22007-07-11 17:01:13 +00003818 return Compatible;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003819
Chris Lattner78eca282008-04-07 06:49:41 +00003820 if (isa<PointerType>(lhsType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003821 if (rhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00003822 return IntToPointer;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003823
Chris Lattner78eca282008-04-07 06:49:41 +00003824 if (isa<PointerType>(rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003825 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003826
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003827 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff14108da2009-07-10 23:34:53 +00003828 if (isa<ObjCObjectPointerType>(rhsType)) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003829 if (lhsType->isVoidPointerType()) // an exception to the rule.
3830 return Compatible;
3831 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003832 }
Ted Kremenek6217b802009-07-29 21:53:49 +00003833 if (rhsType->getAs<BlockPointerType>()) {
3834 if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003835 return Compatible;
Steve Naroffb4406862008-09-29 18:10:17 +00003836
3837 // Treat block pointers as objects.
Steve Naroff14108da2009-07-10 23:34:53 +00003838 if (getLangOptions().ObjC1 && lhsType->isObjCIdType())
Steve Naroffb4406862008-09-29 18:10:17 +00003839 return Compatible;
3840 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00003841 return Incompatible;
3842 }
3843
3844 if (isa<BlockPointerType>(lhsType)) {
3845 if (rhsType->isIntegerType())
Eli Friedmand8f4f432009-02-25 04:20:42 +00003846 return IntToBlockPointer;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003847
Steve Naroffb4406862008-09-29 18:10:17 +00003848 // Treat block pointers as objects.
Steve Naroff14108da2009-07-10 23:34:53 +00003849 if (getLangOptions().ObjC1 && rhsType->isObjCIdType())
Steve Naroffb4406862008-09-29 18:10:17 +00003850 return Compatible;
3851
Steve Naroff1c7d0672008-09-04 15:10:53 +00003852 if (rhsType->isBlockPointerType())
3853 return CheckBlockPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003854
Ted Kremenek6217b802009-07-29 21:53:49 +00003855 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff1c7d0672008-09-04 15:10:53 +00003856 if (RHSPT->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003857 return Compatible;
Steve Naroff1c7d0672008-09-04 15:10:53 +00003858 }
Chris Lattnerfc144e22008-01-04 23:18:45 +00003859 return Incompatible;
3860 }
3861
Steve Naroff14108da2009-07-10 23:34:53 +00003862 if (isa<ObjCObjectPointerType>(lhsType)) {
3863 if (rhsType->isIntegerType())
3864 return IntToPointer;
Mike Stump1eb44332009-09-09 15:08:12 +00003865
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003866 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff14108da2009-07-10 23:34:53 +00003867 if (isa<PointerType>(rhsType)) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003868 if (rhsType->isVoidPointerType()) // an exception to the rule.
3869 return Compatible;
3870 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003871 }
3872 if (rhsType->isObjCObjectPointerType()) {
Steve Naroffde2e22d2009-07-15 18:40:39 +00003873 if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType())
3874 return Compatible;
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003875 if (Context.typesAreCompatible(lhsType, rhsType))
3876 return Compatible;
Steve Naroff4084c302009-07-23 01:01:38 +00003877 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType())
3878 return IncompatibleObjCQualifiedId;
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003879 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003880 }
Ted Kremenek6217b802009-07-29 21:53:49 +00003881 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003882 if (RHSPT->getPointeeType()->isVoidType())
3883 return Compatible;
3884 }
3885 // Treat block pointers as objects.
3886 if (rhsType->isBlockPointerType())
3887 return Compatible;
3888 return Incompatible;
3889 }
Chris Lattner78eca282008-04-07 06:49:41 +00003890 if (isa<PointerType>(rhsType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003891 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003892 if (lhsType == Context.BoolTy)
3893 return Compatible;
3894
3895 if (lhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00003896 return PointerToInt;
Reid Spencer5f016e22007-07-11 17:01:13 +00003897
Mike Stumpeed9cac2009-02-19 03:04:26 +00003898 if (isa<PointerType>(lhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003899 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003900
3901 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003902 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003903 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003904 return Incompatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003905 }
Steve Naroff14108da2009-07-10 23:34:53 +00003906 if (isa<ObjCObjectPointerType>(rhsType)) {
3907 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
3908 if (lhsType == Context.BoolTy)
3909 return Compatible;
3910
3911 if (lhsType->isIntegerType())
3912 return PointerToInt;
3913
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003914 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff14108da2009-07-10 23:34:53 +00003915 if (isa<PointerType>(lhsType)) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003916 if (lhsType->isVoidPointerType()) // an exception to the rule.
3917 return Compatible;
3918 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003919 }
3920 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003921 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Steve Naroff14108da2009-07-10 23:34:53 +00003922 return Compatible;
3923 return Incompatible;
3924 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003925
Chris Lattnerfc144e22008-01-04 23:18:45 +00003926 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Chris Lattner78eca282008-04-07 06:49:41 +00003927 if (Context.typesAreCompatible(lhsType, rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003928 return Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00003929 }
3930 return Incompatible;
3931}
3932
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003933/// \brief Constructs a transparent union from an expression that is
3934/// used to initialize the transparent union.
Mike Stump1eb44332009-09-09 15:08:12 +00003935static void ConstructTransparentUnion(ASTContext &C, Expr *&E,
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003936 QualType UnionType, FieldDecl *Field) {
3937 // Build an initializer list that designates the appropriate member
3938 // of the transparent union.
3939 InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(),
3940 &E, 1,
3941 SourceLocation());
3942 Initializer->setType(UnionType);
3943 Initializer->setInitializedFieldInUnion(Field);
3944
3945 // Build a compound literal constructing a value of the transparent
3946 // union type from this initializer list.
3947 E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer,
3948 false);
3949}
3950
3951Sema::AssignConvertType
3952Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) {
3953 QualType FromType = rExpr->getType();
3954
Mike Stump1eb44332009-09-09 15:08:12 +00003955 // If the ArgType is a Union type, we want to handle a potential
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003956 // transparent_union GCC extension.
3957 const RecordType *UT = ArgType->getAsUnionType();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00003958 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003959 return Incompatible;
3960
3961 // The field to initialize within the transparent union.
3962 RecordDecl *UD = UT->getDecl();
3963 FieldDecl *InitField = 0;
3964 // It's compatible if the expression matches any of the fields.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003965 for (RecordDecl::field_iterator it = UD->field_begin(),
3966 itend = UD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003967 it != itend; ++it) {
3968 if (it->getType()->isPointerType()) {
3969 // If the transparent union contains a pointer type, we allow:
3970 // 1) void pointer
3971 // 2) null pointer constant
3972 if (FromType->isPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +00003973 if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) {
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003974 ImpCastExprToType(rExpr, it->getType());
3975 InitField = *it;
3976 break;
3977 }
Mike Stump1eb44332009-09-09 15:08:12 +00003978
Douglas Gregorce940492009-09-25 04:25:58 +00003979 if (rExpr->isNullPointerConstant(Context,
3980 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003981 ImpCastExprToType(rExpr, it->getType());
3982 InitField = *it;
3983 break;
3984 }
3985 }
3986
3987 if (CheckAssignmentConstraints(it->getType(), rExpr->getType())
3988 == Compatible) {
3989 InitField = *it;
3990 break;
3991 }
3992 }
3993
3994 if (!InitField)
3995 return Incompatible;
3996
3997 ConstructTransparentUnion(Context, rExpr, ArgType, InitField);
3998 return Compatible;
3999}
4000
Chris Lattner5cf216b2008-01-04 18:04:52 +00004001Sema::AssignConvertType
Steve Naroff90045e82007-07-13 23:32:42 +00004002Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Douglas Gregor98cd5992008-10-21 23:43:52 +00004003 if (getLangOptions().CPlusPlus) {
4004 if (!lhsType->isRecordType()) {
4005 // C++ 5.17p3: If the left operand is not of class type, the
4006 // expression is implicitly converted (C++ 4) to the
4007 // cv-unqualified type of the left operand.
Douglas Gregor45920e82008-12-19 17:40:08 +00004008 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(),
4009 "assigning"))
Douglas Gregor98cd5992008-10-21 23:43:52 +00004010 return Incompatible;
Chris Lattner2c4463f2009-04-12 09:02:39 +00004011 return Compatible;
Douglas Gregor98cd5992008-10-21 23:43:52 +00004012 }
4013
4014 // FIXME: Currently, we fall through and treat C++ classes like C
4015 // structures.
4016 }
4017
Steve Naroff529a4ad2007-11-27 17:58:44 +00004018 // C99 6.5.16.1p1: the left operand is a pointer and the right is
4019 // a null pointer constant.
Mike Stump1eb44332009-09-09 15:08:12 +00004020 if ((lhsType->isPointerType() ||
4021 lhsType->isObjCObjectPointerType() ||
Mike Stumpeed9cac2009-02-19 03:04:26 +00004022 lhsType->isBlockPointerType())
Douglas Gregorce940492009-09-25 04:25:58 +00004023 && rExpr->isNullPointerConstant(Context,
4024 Expr::NPC_ValueDependentIsNull)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00004025 ImpCastExprToType(rExpr, lhsType);
Steve Naroff529a4ad2007-11-27 17:58:44 +00004026 return Compatible;
4027 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004028
Chris Lattner943140e2007-10-16 02:55:40 +00004029 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00004030 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff08d92e42007-09-15 18:49:24 +00004031 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Steve Naroff90045e82007-07-13 23:32:42 +00004032 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00004033 //
Mike Stumpeed9cac2009-02-19 03:04:26 +00004034 // Suppress this for references: C++ 8.5.3p5.
Chris Lattner943140e2007-10-16 02:55:40 +00004035 if (!lhsType->isReferenceType())
4036 DefaultFunctionArrayConversion(rExpr);
Steve Narofff1120de2007-08-24 22:33:52 +00004037
Chris Lattner5cf216b2008-01-04 18:04:52 +00004038 Sema::AssignConvertType result =
4039 CheckAssignmentConstraints(lhsType, rExpr->getType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00004040
Steve Narofff1120de2007-08-24 22:33:52 +00004041 // C99 6.5.16.1p2: The value of the right operand is converted to the
4042 // type of the assignment expression.
Douglas Gregor9d293df2008-10-28 00:22:11 +00004043 // CheckAssignmentConstraints allows the left-hand side to be a reference,
4044 // so that we can use references in built-in functions even in C.
4045 // The getNonReferenceType() call makes sure that the resulting expression
4046 // does not have reference type.
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00004047 if (result != Incompatible && rExpr->getType() != lhsType)
Douglas Gregor9d293df2008-10-28 00:22:11 +00004048 ImpCastExprToType(rExpr, lhsType.getNonReferenceType());
Steve Narofff1120de2007-08-24 22:33:52 +00004049 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00004050}
4051
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004052QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004053 Diag(Loc, diag::err_typecheck_invalid_operands)
Chris Lattner22caddc2008-11-23 09:13:29 +00004054 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004055 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerca5eede2007-12-12 05:47:28 +00004056 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004057}
4058
Mike Stumpeed9cac2009-02-19 03:04:26 +00004059inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex,
Steve Naroff49b45262007-07-13 16:58:59 +00004060 Expr *&rex) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00004061 // For conversion purposes, we ignore any qualifiers.
Nate Begeman1330b0e2008-04-04 01:30:25 +00004062 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +00004063 QualType lhsType =
4064 Context.getCanonicalType(lex->getType()).getUnqualifiedType();
4065 QualType rhsType =
4066 Context.getCanonicalType(rex->getType()).getUnqualifiedType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004067
Nate Begemanbe2341d2008-07-14 18:02:46 +00004068 // If the vector types are identical, return.
Nate Begeman1330b0e2008-04-04 01:30:25 +00004069 if (lhsType == rhsType)
Reid Spencer5f016e22007-07-11 17:01:13 +00004070 return lhsType;
Nate Begeman4119d1a2007-12-30 02:59:45 +00004071
Nate Begemanbe2341d2008-07-14 18:02:46 +00004072 // Handle the case of a vector & extvector type of the same size and element
4073 // type. It would be nice if we only had one vector type someday.
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00004074 if (getLangOptions().LaxVectorConversions) {
4075 // FIXME: Should we warn here?
John McCall183700f2009-09-21 23:43:11 +00004076 if (const VectorType *LV = lhsType->getAs<VectorType>()) {
4077 if (const VectorType *RV = rhsType->getAs<VectorType>())
Nate Begemanbe2341d2008-07-14 18:02:46 +00004078 if (LV->getElementType() == RV->getElementType() &&
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00004079 LV->getNumElements() == RV->getNumElements()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00004080 return lhsType->isExtVectorType() ? lhsType : rhsType;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00004081 }
4082 }
4083 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004084
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00004085 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can
4086 // swap back (so that we don't reverse the inputs to a subtract, for instance.
4087 bool swapped = false;
4088 if (rhsType->isExtVectorType()) {
4089 swapped = true;
4090 std::swap(rex, lex);
4091 std::swap(rhsType, lhsType);
4092 }
Mike Stump1eb44332009-09-09 15:08:12 +00004093
Nate Begemandde25982009-06-28 19:12:57 +00004094 // Handle the case of an ext vector and scalar.
John McCall183700f2009-09-21 23:43:11 +00004095 if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) {
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00004096 QualType EltTy = LV->getElementType();
4097 if (EltTy->isIntegralType() && rhsType->isIntegralType()) {
4098 if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) {
Nate Begemandde25982009-06-28 19:12:57 +00004099 ImpCastExprToType(rex, lhsType);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00004100 if (swapped) std::swap(rex, lex);
4101 return lhsType;
4102 }
4103 }
4104 if (EltTy->isRealFloatingType() && rhsType->isScalarType() &&
4105 rhsType->isRealFloatingType()) {
4106 if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) {
Nate Begemandde25982009-06-28 19:12:57 +00004107 ImpCastExprToType(rex, lhsType);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00004108 if (swapped) std::swap(rex, lex);
4109 return lhsType;
4110 }
Nate Begeman4119d1a2007-12-30 02:59:45 +00004111 }
4112 }
Mike Stump1eb44332009-09-09 15:08:12 +00004113
Nate Begemandde25982009-06-28 19:12:57 +00004114 // Vectors of different size or scalar and non-ext-vector are errors.
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004115 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Chris Lattnerd1625842008-11-24 06:25:27 +00004116 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004117 << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004118 return QualType();
Sebastian Redl22460502009-02-07 00:15:38 +00004119}
4120
Reid Spencer5f016e22007-07-11 17:01:13 +00004121inline QualType Sema::CheckMultiplyDivideOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00004122 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Daniel Dunbar69d1d002009-01-05 22:42:10 +00004123 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004124 return CheckVectorOperands(Loc, lex, rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004125
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004126 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004127
Steve Naroffa4332e22007-07-17 00:58:39 +00004128 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004129 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004130 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004131}
4132
4133inline QualType Sema::CheckRemainderOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00004134 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Daniel Dunbar523aa602009-01-05 22:55:36 +00004135 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4136 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
4137 return CheckVectorOperands(Loc, lex, rex);
4138 return InvalidOperands(Loc, lex, rex);
4139 }
Steve Naroff90045e82007-07-13 23:32:42 +00004140
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004141 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004142
Steve Naroffa4332e22007-07-17 00:58:39 +00004143 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004144 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004145 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004146}
4147
4148inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Mike Stump1eb44332009-09-09 15:08:12 +00004149 Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00004150 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4151 QualType compType = CheckVectorOperands(Loc, lex, rex);
4152 if (CompLHSTy) *CompLHSTy = compType;
4153 return compType;
4154 }
Steve Naroff49b45262007-07-13 16:58:59 +00004155
Eli Friedmanab3a8522009-03-28 01:22:36 +00004156 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Eli Friedmand72d16e2008-05-18 18:08:51 +00004157
Reid Spencer5f016e22007-07-11 17:01:13 +00004158 // handle the common case first (both operands are arithmetic).
Eli Friedmanab3a8522009-03-28 01:22:36 +00004159 if (lex->getType()->isArithmeticType() &&
4160 rex->getType()->isArithmeticType()) {
4161 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004162 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00004163 }
Reid Spencer5f016e22007-07-11 17:01:13 +00004164
Eli Friedmand72d16e2008-05-18 18:08:51 +00004165 // Put any potential pointer into PExp
4166 Expr* PExp = lex, *IExp = rex;
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004167 if (IExp->getType()->isAnyPointerType())
Eli Friedmand72d16e2008-05-18 18:08:51 +00004168 std::swap(PExp, IExp);
4169
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004170 if (PExp->getType()->isAnyPointerType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004171
Eli Friedmand72d16e2008-05-18 18:08:51 +00004172 if (IExp->getType()->isIntegerType()) {
Steve Naroff760e3c42009-07-13 21:20:41 +00004173 QualType PointeeTy = PExp->getType()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00004174
Chris Lattnerb5f15622009-04-24 23:50:08 +00004175 // Check for arithmetic on pointers to incomplete types.
4176 if (PointeeTy->isVoidType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00004177 if (getLangOptions().CPlusPlus) {
4178 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004179 << lex->getSourceRange() << rex->getSourceRange();
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004180 return QualType();
Eli Friedmand72d16e2008-05-18 18:08:51 +00004181 }
Douglas Gregore7450f52009-03-24 19:52:54 +00004182
4183 // GNU extension: arithmetic on pointer to void
4184 Diag(Loc, diag::ext_gnu_void_ptr)
4185 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerb5f15622009-04-24 23:50:08 +00004186 } else if (PointeeTy->isFunctionType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00004187 if (getLangOptions().CPlusPlus) {
4188 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
4189 << lex->getType() << lex->getSourceRange();
4190 return QualType();
4191 }
4192
4193 // GNU extension: arithmetic on pointer to function
4194 Diag(Loc, diag::ext_gnu_ptr_func_arith)
4195 << lex->getType() << lex->getSourceRange();
Steve Naroff9deaeca2009-07-13 21:32:29 +00004196 } else {
Steve Naroff760e3c42009-07-13 21:20:41 +00004197 // Check if we require a complete type.
Mike Stump1eb44332009-09-09 15:08:12 +00004198 if (((PExp->getType()->isPointerType() &&
Steve Naroff9deaeca2009-07-13 21:32:29 +00004199 !PExp->getType()->isDependentType()) ||
Steve Naroff760e3c42009-07-13 21:20:41 +00004200 PExp->getType()->isObjCObjectPointerType()) &&
4201 RequireCompleteType(Loc, PointeeTy,
Mike Stump1eb44332009-09-09 15:08:12 +00004202 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
4203 << PExp->getSourceRange()
Anders Carlssond497ba72009-08-26 22:59:12 +00004204 << PExp->getType()))
Steve Naroff760e3c42009-07-13 21:20:41 +00004205 return QualType();
4206 }
Chris Lattnerb5f15622009-04-24 23:50:08 +00004207 // Diagnose bad cases where we step over interface counts.
4208 if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4209 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4210 << PointeeTy << PExp->getSourceRange();
4211 return QualType();
4212 }
Mike Stump1eb44332009-09-09 15:08:12 +00004213
Eli Friedmanab3a8522009-03-28 01:22:36 +00004214 if (CompLHSTy) {
Eli Friedman04e83572009-08-20 04:21:42 +00004215 QualType LHSTy = Context.isPromotableBitField(lex);
4216 if (LHSTy.isNull()) {
4217 LHSTy = lex->getType();
4218 if (LHSTy->isPromotableIntegerType())
4219 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregor2d833e32009-05-02 00:36:19 +00004220 }
Eli Friedmanab3a8522009-03-28 01:22:36 +00004221 *CompLHSTy = LHSTy;
4222 }
Eli Friedmand72d16e2008-05-18 18:08:51 +00004223 return PExp->getType();
4224 }
4225 }
4226
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004227 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004228}
4229
Chris Lattnereca7be62008-04-07 05:30:13 +00004230// C99 6.5.6
4231QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex,
Eli Friedmanab3a8522009-03-28 01:22:36 +00004232 SourceLocation Loc, QualType* CompLHSTy) {
4233 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4234 QualType compType = CheckVectorOperands(Loc, lex, rex);
4235 if (CompLHSTy) *CompLHSTy = compType;
4236 return compType;
4237 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004238
Eli Friedmanab3a8522009-03-28 01:22:36 +00004239 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004240
Chris Lattner6e4ab612007-12-09 21:53:25 +00004241 // Enforce type constraints: C99 6.5.6p3.
Mike Stumpeed9cac2009-02-19 03:04:26 +00004242
Chris Lattner6e4ab612007-12-09 21:53:25 +00004243 // Handle the common case first (both operands are arithmetic).
Mike Stumpaf199f32009-05-07 18:43:07 +00004244 if (lex->getType()->isArithmeticType()
4245 && rex->getType()->isArithmeticType()) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00004246 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004247 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00004248 }
Mike Stump1eb44332009-09-09 15:08:12 +00004249
Chris Lattner6e4ab612007-12-09 21:53:25 +00004250 // Either ptr - int or ptr - ptr.
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004251 if (lex->getType()->isAnyPointerType()) {
Steve Naroff430ee5a2009-07-13 17:19:15 +00004252 QualType lpointee = lex->getType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004253
Douglas Gregore7450f52009-03-24 19:52:54 +00004254 // The LHS must be an completely-defined object type.
Douglas Gregorc983b862009-01-23 00:36:41 +00004255
Douglas Gregore7450f52009-03-24 19:52:54 +00004256 bool ComplainAboutVoid = false;
4257 Expr *ComplainAboutFunc = 0;
4258 if (lpointee->isVoidType()) {
4259 if (getLangOptions().CPlusPlus) {
4260 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4261 << lex->getSourceRange() << rex->getSourceRange();
4262 return QualType();
4263 }
4264
4265 // GNU C extension: arithmetic on pointer to void
4266 ComplainAboutVoid = true;
4267 } else if (lpointee->isFunctionType()) {
4268 if (getLangOptions().CPlusPlus) {
4269 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattnerd1625842008-11-24 06:25:27 +00004270 << lex->getType() << lex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004271 return QualType();
4272 }
Douglas Gregore7450f52009-03-24 19:52:54 +00004273
4274 // GNU C extension: arithmetic on pointer to function
4275 ComplainAboutFunc = lex;
4276 } else if (!lpointee->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00004277 RequireCompleteType(Loc, lpointee,
Anders Carlssond497ba72009-08-26 22:59:12 +00004278 PDiag(diag::err_typecheck_sub_ptr_object)
Mike Stump1eb44332009-09-09 15:08:12 +00004279 << lex->getSourceRange()
Anders Carlssond497ba72009-08-26 22:59:12 +00004280 << lex->getType()))
Douglas Gregore7450f52009-03-24 19:52:54 +00004281 return QualType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004282
Chris Lattnerb5f15622009-04-24 23:50:08 +00004283 // Diagnose bad cases where we step over interface counts.
4284 if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4285 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4286 << lpointee << lex->getSourceRange();
4287 return QualType();
4288 }
Mike Stump1eb44332009-09-09 15:08:12 +00004289
Chris Lattner6e4ab612007-12-09 21:53:25 +00004290 // The result type of a pointer-int computation is the pointer type.
Douglas Gregore7450f52009-03-24 19:52:54 +00004291 if (rex->getType()->isIntegerType()) {
4292 if (ComplainAboutVoid)
4293 Diag(Loc, diag::ext_gnu_void_ptr)
4294 << lex->getSourceRange() << rex->getSourceRange();
4295 if (ComplainAboutFunc)
4296 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump1eb44332009-09-09 15:08:12 +00004297 << ComplainAboutFunc->getType()
Douglas Gregore7450f52009-03-24 19:52:54 +00004298 << ComplainAboutFunc->getSourceRange();
4299
Eli Friedmanab3a8522009-03-28 01:22:36 +00004300 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004301 return lex->getType();
Douglas Gregore7450f52009-03-24 19:52:54 +00004302 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004303
Chris Lattner6e4ab612007-12-09 21:53:25 +00004304 // Handle pointer-pointer subtractions.
Ted Kremenek6217b802009-07-29 21:53:49 +00004305 if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +00004306 QualType rpointee = RHSPTy->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004307
Douglas Gregore7450f52009-03-24 19:52:54 +00004308 // RHS must be a completely-type object type.
4309 // Handle the GNU void* extension.
4310 if (rpointee->isVoidType()) {
4311 if (getLangOptions().CPlusPlus) {
4312 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4313 << lex->getSourceRange() << rex->getSourceRange();
4314 return QualType();
4315 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004316
Douglas Gregore7450f52009-03-24 19:52:54 +00004317 ComplainAboutVoid = true;
4318 } else if (rpointee->isFunctionType()) {
4319 if (getLangOptions().CPlusPlus) {
4320 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattnerd1625842008-11-24 06:25:27 +00004321 << rex->getType() << rex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004322 return QualType();
4323 }
Douglas Gregore7450f52009-03-24 19:52:54 +00004324
4325 // GNU extension: arithmetic on pointer to function
4326 if (!ComplainAboutFunc)
4327 ComplainAboutFunc = rex;
4328 } else if (!rpointee->isDependentType() &&
4329 RequireCompleteType(Loc, rpointee,
Anders Carlssond497ba72009-08-26 22:59:12 +00004330 PDiag(diag::err_typecheck_sub_ptr_object)
4331 << rex->getSourceRange()
4332 << rex->getType()))
Douglas Gregore7450f52009-03-24 19:52:54 +00004333 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004334
Eli Friedman88d936b2009-05-16 13:54:38 +00004335 if (getLangOptions().CPlusPlus) {
4336 // Pointee types must be the same: C++ [expr.add]
4337 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
4338 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4339 << lex->getType() << rex->getType()
4340 << lex->getSourceRange() << rex->getSourceRange();
4341 return QualType();
4342 }
4343 } else {
4344 // Pointee types must be compatible C99 6.5.6p3
4345 if (!Context.typesAreCompatible(
4346 Context.getCanonicalType(lpointee).getUnqualifiedType(),
4347 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
4348 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4349 << lex->getType() << rex->getType()
4350 << lex->getSourceRange() << rex->getSourceRange();
4351 return QualType();
4352 }
Chris Lattner6e4ab612007-12-09 21:53:25 +00004353 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004354
Douglas Gregore7450f52009-03-24 19:52:54 +00004355 if (ComplainAboutVoid)
4356 Diag(Loc, diag::ext_gnu_void_ptr)
4357 << lex->getSourceRange() << rex->getSourceRange();
4358 if (ComplainAboutFunc)
4359 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump1eb44332009-09-09 15:08:12 +00004360 << ComplainAboutFunc->getType()
Douglas Gregore7450f52009-03-24 19:52:54 +00004361 << ComplainAboutFunc->getSourceRange();
Eli Friedmanab3a8522009-03-28 01:22:36 +00004362
4363 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004364 return Context.getPointerDiffType();
4365 }
4366 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004367
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004368 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004369}
4370
Chris Lattnereca7be62008-04-07 05:30:13 +00004371// C99 6.5.7
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004372QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattnereca7be62008-04-07 05:30:13 +00004373 bool isCompAssign) {
Chris Lattnerca5eede2007-12-12 05:47:28 +00004374 // C99 6.5.7p2: Each of the operands shall have integer type.
4375 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004376 return InvalidOperands(Loc, lex, rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004377
Chris Lattnerca5eede2007-12-12 05:47:28 +00004378 // Shifts don't perform usual arithmetic conversions, they just do integer
4379 // promotions on each operand. C99 6.5.7p3
Eli Friedman04e83572009-08-20 04:21:42 +00004380 QualType LHSTy = Context.isPromotableBitField(lex);
4381 if (LHSTy.isNull()) {
4382 LHSTy = lex->getType();
4383 if (LHSTy->isPromotableIntegerType())
4384 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregor2d833e32009-05-02 00:36:19 +00004385 }
Chris Lattner1dcf2c82007-12-13 07:28:16 +00004386 if (!isCompAssign)
Eli Friedmanab3a8522009-03-28 01:22:36 +00004387 ImpCastExprToType(lex, LHSTy);
4388
Chris Lattnerca5eede2007-12-12 05:47:28 +00004389 UsualUnaryConversions(rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004390
Ryan Flynnd0439682009-08-07 16:20:20 +00004391 // Sanity-check shift operands
4392 llvm::APSInt Right;
4393 // Check right/shifter operand
Daniel Dunbar3f180c62009-09-17 06:31:27 +00004394 if (!rex->isValueDependent() &&
4395 rex->isIntegerConstantExpr(Right, Context)) {
Ryan Flynn8045c732009-08-08 19:18:23 +00004396 if (Right.isNegative())
Ryan Flynnd0439682009-08-07 16:20:20 +00004397 Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange();
4398 else {
4399 llvm::APInt LeftBits(Right.getBitWidth(),
4400 Context.getTypeSize(lex->getType()));
4401 if (Right.uge(LeftBits))
4402 Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange();
4403 }
4404 }
4405
Chris Lattnerca5eede2007-12-12 05:47:28 +00004406 // "The type of the result is that of the promoted left operand."
Eli Friedmanab3a8522009-03-28 01:22:36 +00004407 return LHSTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00004408}
4409
Douglas Gregor0c6db942009-05-04 06:07:12 +00004410// C99 6.5.8, C++ [expr.rel]
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004411QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Douglas Gregora86b8322009-04-06 18:45:53 +00004412 unsigned OpaqueOpc, bool isRelational) {
4413 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc;
4414
Nate Begemanbe2341d2008-07-14 18:02:46 +00004415 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004416 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004417
Chris Lattnera5937dd2007-08-26 01:18:55 +00004418 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff30bf7712007-08-10 18:26:40 +00004419 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
4420 UsualArithmeticConversions(lex, rex);
4421 else {
4422 UsualUnaryConversions(lex);
4423 UsualUnaryConversions(rex);
4424 }
Steve Naroffc80b4ee2007-07-16 21:54:35 +00004425 QualType lType = lex->getType();
4426 QualType rType = rex->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004427
Mike Stumpaf199f32009-05-07 18:43:07 +00004428 if (!lType->isFloatingType()
4429 && !(lType->isBlockPointerType() && isRelational)) {
Chris Lattner55660a72009-03-08 19:39:53 +00004430 // For non-floating point types, check for self-comparisons of the form
4431 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4432 // often indicate logic errors in the program.
Mike Stump1eb44332009-09-09 15:08:12 +00004433 // NOTE: Don't warn about comparisons of enum constants. These can arise
Ted Kremenek9ecede72009-03-20 19:57:37 +00004434 // from macro expansions, and are usually quite deliberate.
Chris Lattner55660a72009-03-08 19:39:53 +00004435 Expr *LHSStripped = lex->IgnoreParens();
4436 Expr *RHSStripped = rex->IgnoreParens();
4437 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped))
4438 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped))
Ted Kremenekb82dcd82009-03-20 18:35:45 +00004439 if (DRL->getDecl() == DRR->getDecl() &&
4440 !isa<EnumConstantDecl>(DRL->getDecl()))
Mike Stumpeed9cac2009-02-19 03:04:26 +00004441 Diag(Loc, diag::warn_selfcomparison);
Mike Stump1eb44332009-09-09 15:08:12 +00004442
Chris Lattner55660a72009-03-08 19:39:53 +00004443 if (isa<CastExpr>(LHSStripped))
4444 LHSStripped = LHSStripped->IgnoreParenCasts();
4445 if (isa<CastExpr>(RHSStripped))
4446 RHSStripped = RHSStripped->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00004447
Chris Lattner55660a72009-03-08 19:39:53 +00004448 // Warn about comparisons against a string constant (unless the other
4449 // operand is null), the user probably wants strcmp.
Douglas Gregora86b8322009-04-06 18:45:53 +00004450 Expr *literalString = 0;
4451 Expr *literalStringStripped = 0;
Chris Lattner55660a72009-03-08 19:39:53 +00004452 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Douglas Gregorce940492009-09-25 04:25:58 +00004453 !RHSStripped->isNullPointerConstant(Context,
4454 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregora86b8322009-04-06 18:45:53 +00004455 literalString = lex;
4456 literalStringStripped = LHSStripped;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00004457 } else if ((isa<StringLiteral>(RHSStripped) ||
4458 isa<ObjCEncodeExpr>(RHSStripped)) &&
Douglas Gregorce940492009-09-25 04:25:58 +00004459 !LHSStripped->isNullPointerConstant(Context,
4460 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregora86b8322009-04-06 18:45:53 +00004461 literalString = rex;
4462 literalStringStripped = RHSStripped;
4463 }
4464
4465 if (literalString) {
4466 std::string resultComparison;
4467 switch (Opc) {
4468 case BinaryOperator::LT: resultComparison = ") < 0"; break;
4469 case BinaryOperator::GT: resultComparison = ") > 0"; break;
4470 case BinaryOperator::LE: resultComparison = ") <= 0"; break;
4471 case BinaryOperator::GE: resultComparison = ") >= 0"; break;
4472 case BinaryOperator::EQ: resultComparison = ") == 0"; break;
4473 case BinaryOperator::NE: resultComparison = ") != 0"; break;
4474 default: assert(false && "Invalid comparison operator");
4475 }
4476 Diag(Loc, diag::warn_stringcompare)
4477 << isa<ObjCEncodeExpr>(literalStringStripped)
4478 << literalString->getSourceRange()
Douglas Gregora3a83512009-04-01 23:51:29 +00004479 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ")
4480 << CodeModificationHint::CreateInsertion(lex->getLocStart(),
4481 "strcmp(")
4482 << CodeModificationHint::CreateInsertion(
4483 PP.getLocForEndOfToken(rex->getLocEnd()),
Douglas Gregora86b8322009-04-06 18:45:53 +00004484 resultComparison);
4485 }
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00004486 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004487
Douglas Gregor447b69e2008-11-19 03:25:36 +00004488 // The result of comparisons is 'bool' in C++, 'int' in C.
Chris Lattner55660a72009-03-08 19:39:53 +00004489 QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy;
Douglas Gregor447b69e2008-11-19 03:25:36 +00004490
Chris Lattnera5937dd2007-08-26 01:18:55 +00004491 if (isRelational) {
4492 if (lType->isRealType() && rType->isRealType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00004493 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00004494 } else {
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00004495 // Check for comparisons of floating point operands using != and ==.
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00004496 if (lType->isFloatingType()) {
Chris Lattner55660a72009-03-08 19:39:53 +00004497 assert(rType->isFloatingType());
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004498 CheckFloatComparison(Loc,lex,rex);
Ted Kremenek6a261552007-10-29 16:40:01 +00004499 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004500
Chris Lattnera5937dd2007-08-26 01:18:55 +00004501 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00004502 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00004503 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004504
Douglas Gregorce940492009-09-25 04:25:58 +00004505 bool LHSIsNull = lex->isNullPointerConstant(Context,
4506 Expr::NPC_ValueDependentIsNull);
4507 bool RHSIsNull = rex->isNullPointerConstant(Context,
4508 Expr::NPC_ValueDependentIsNull);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004509
Chris Lattnera5937dd2007-08-26 01:18:55 +00004510 // All of the following pointer related warnings are GCC extensions, except
4511 // when handling null pointer constants. One day, we can consider making them
4512 // errors (when -pedantic-errors is enabled).
Steve Naroff77878cc2007-08-27 04:08:11 +00004513 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattnerbc896f52008-04-03 05:07:25 +00004514 QualType LCanPointeeTy =
Ted Kremenek6217b802009-07-29 21:53:49 +00004515 Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType());
Chris Lattnerbc896f52008-04-03 05:07:25 +00004516 QualType RCanPointeeTy =
Ted Kremenek6217b802009-07-29 21:53:49 +00004517 Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00004518
Douglas Gregor0c6db942009-05-04 06:07:12 +00004519 if (getLangOptions().CPlusPlus) {
Eli Friedman3075e762009-08-23 00:27:47 +00004520 if (LCanPointeeTy == RCanPointeeTy)
4521 return ResultTy;
4522
Douglas Gregor0c6db942009-05-04 06:07:12 +00004523 // C++ [expr.rel]p2:
4524 // [...] Pointer conversions (4.10) and qualification
4525 // conversions (4.4) are performed on pointer operands (or on
4526 // a pointer operand and a null pointer constant) to bring
4527 // them to their composite pointer type. [...]
4528 //
Douglas Gregor20b3e992009-08-24 17:42:35 +00004529 // C++ [expr.eq]p1 uses the same notion for (in)equality
Douglas Gregor0c6db942009-05-04 06:07:12 +00004530 // comparisons of pointers.
Douglas Gregorde866f32009-05-05 04:50:50 +00004531 QualType T = FindCompositePointerType(lex, rex);
Douglas Gregor0c6db942009-05-04 06:07:12 +00004532 if (T.isNull()) {
4533 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4534 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4535 return QualType();
4536 }
4537
4538 ImpCastExprToType(lex, T);
4539 ImpCastExprToType(rex, T);
4540 return ResultTy;
4541 }
Eli Friedman3075e762009-08-23 00:27:47 +00004542 // C99 6.5.9p2 and C99 6.5.8p2
4543 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
4544 RCanPointeeTy.getUnqualifiedType())) {
4545 // Valid unless a relational comparison of function pointers
4546 if (isRelational && LCanPointeeTy->isFunctionType()) {
4547 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
4548 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4549 }
4550 } else if (!isRelational &&
4551 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
4552 // Valid unless comparison between non-null pointer and function pointer
4553 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
4554 && !LHSIsNull && !RHSIsNull) {
4555 Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void)
4556 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4557 }
4558 } else {
4559 // Invalid
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004560 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00004561 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004562 }
Eli Friedman3075e762009-08-23 00:27:47 +00004563 if (LCanPointeeTy != RCanPointeeTy)
4564 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004565 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00004566 }
Mike Stump1eb44332009-09-09 15:08:12 +00004567
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004568 if (getLangOptions().CPlusPlus) {
Mike Stump1eb44332009-09-09 15:08:12 +00004569 // Comparison of pointers with null pointer constants and equality
Douglas Gregor20b3e992009-08-24 17:42:35 +00004570 // comparisons of member pointers to null pointer constants.
Mike Stump1eb44332009-09-09 15:08:12 +00004571 if (RHSIsNull &&
Douglas Gregor20b3e992009-08-24 17:42:35 +00004572 (lType->isPointerType() ||
4573 (!isRelational && lType->isMemberPointerType()))) {
Anders Carlsson26ba8502009-08-24 18:03:14 +00004574 ImpCastExprToType(rex, lType, CastExpr::CK_NullToMemberPointer);
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004575 return ResultTy;
4576 }
Douglas Gregor20b3e992009-08-24 17:42:35 +00004577 if (LHSIsNull &&
4578 (rType->isPointerType() ||
4579 (!isRelational && rType->isMemberPointerType()))) {
Anders Carlsson26ba8502009-08-24 18:03:14 +00004580 ImpCastExprToType(lex, rType, CastExpr::CK_NullToMemberPointer);
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004581 return ResultTy;
4582 }
Douglas Gregor20b3e992009-08-24 17:42:35 +00004583
4584 // Comparison of member pointers.
Mike Stump1eb44332009-09-09 15:08:12 +00004585 if (!isRelational &&
Douglas Gregor20b3e992009-08-24 17:42:35 +00004586 lType->isMemberPointerType() && rType->isMemberPointerType()) {
4587 // C++ [expr.eq]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00004588 // In addition, pointers to members can be compared, or a pointer to
4589 // member and a null pointer constant. Pointer to member conversions
4590 // (4.11) and qualification conversions (4.4) are performed to bring
4591 // them to a common type. If one operand is a null pointer constant,
4592 // the common type is the type of the other operand. Otherwise, the
4593 // common type is a pointer to member type similar (4.4) to the type
4594 // of one of the operands, with a cv-qualification signature (4.4)
4595 // that is the union of the cv-qualification signatures of the operand
Douglas Gregor20b3e992009-08-24 17:42:35 +00004596 // types.
4597 QualType T = FindCompositePointerType(lex, rex);
4598 if (T.isNull()) {
4599 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4600 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4601 return QualType();
4602 }
Mike Stump1eb44332009-09-09 15:08:12 +00004603
Douglas Gregor20b3e992009-08-24 17:42:35 +00004604 ImpCastExprToType(lex, T);
4605 ImpCastExprToType(rex, T);
4606 return ResultTy;
4607 }
Mike Stump1eb44332009-09-09 15:08:12 +00004608
Douglas Gregor20b3e992009-08-24 17:42:35 +00004609 // Comparison of nullptr_t with itself.
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004610 if (lType->isNullPtrType() && rType->isNullPtrType())
4611 return ResultTy;
4612 }
Mike Stump1eb44332009-09-09 15:08:12 +00004613
Steve Naroff1c7d0672008-09-04 15:10:53 +00004614 // Handle block pointer types.
Mike Stumpdd3e1662009-05-07 03:14:14 +00004615 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00004616 QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType();
4617 QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004618
Steve Naroff1c7d0672008-09-04 15:10:53 +00004619 if (!LHSIsNull && !RHSIsNull &&
Eli Friedman26784c12009-06-08 05:08:54 +00004620 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004621 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattnerd1625842008-11-24 06:25:27 +00004622 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff1c7d0672008-09-04 15:10:53 +00004623 }
4624 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004625 return ResultTy;
Steve Naroff1c7d0672008-09-04 15:10:53 +00004626 }
Steve Naroff59f53942008-09-28 01:11:11 +00004627 // Allow block pointers to be compared with null pointer constants.
Mike Stumpdd3e1662009-05-07 03:14:14 +00004628 if (!isRelational
4629 && ((lType->isBlockPointerType() && rType->isPointerType())
4630 || (lType->isPointerType() && rType->isBlockPointerType()))) {
Steve Naroff59f53942008-09-28 01:11:11 +00004631 if (!LHSIsNull && !RHSIsNull) {
Ted Kremenek6217b802009-07-29 21:53:49 +00004632 if (!((rType->isPointerType() && rType->getAs<PointerType>()
Mike Stumpdd3e1662009-05-07 03:14:14 +00004633 ->getPointeeType()->isVoidType())
Ted Kremenek6217b802009-07-29 21:53:49 +00004634 || (lType->isPointerType() && lType->getAs<PointerType>()
Mike Stumpdd3e1662009-05-07 03:14:14 +00004635 ->getPointeeType()->isVoidType())))
4636 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
4637 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff59f53942008-09-28 01:11:11 +00004638 }
4639 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004640 return ResultTy;
Steve Naroff59f53942008-09-28 01:11:11 +00004641 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00004642
Steve Naroff14108da2009-07-10 23:34:53 +00004643 if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) {
Steve Naroffa5ad8632008-10-27 10:33:19 +00004644 if (lType->isPointerType() || rType->isPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00004645 const PointerType *LPT = lType->getAs<PointerType>();
4646 const PointerType *RPT = rType->getAs<PointerType>();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004647 bool LPtrToVoid = LPT ?
Steve Naroffa8069f12008-11-17 19:49:16 +00004648 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004649 bool RPtrToVoid = RPT ?
Steve Naroffa8069f12008-11-17 19:49:16 +00004650 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004651
Steve Naroffa8069f12008-11-17 19:49:16 +00004652 if (!LPtrToVoid && !RPtrToVoid &&
4653 !Context.typesAreCompatible(lType, rType)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004654 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00004655 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroffa5ad8632008-10-27 10:33:19 +00004656 }
Daniel Dunbarc6cb77f2008-10-23 23:30:52 +00004657 ImpCastExprToType(rex, lType);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004658 return ResultTy;
Steve Naroff87f3b932008-10-20 18:19:10 +00004659 }
Steve Naroff14108da2009-07-10 23:34:53 +00004660 if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) {
Chris Lattner6365e3e2009-08-22 18:58:31 +00004661 if (!Context.areComparableObjCPointerTypes(lType, rType))
Steve Naroff14108da2009-07-10 23:34:53 +00004662 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4663 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff20373222008-06-03 14:04:54 +00004664 ImpCastExprToType(rex, lType);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004665 return ResultTy;
Steve Naroff20373222008-06-03 14:04:54 +00004666 }
Fariborz Jahanian7359f042007-12-20 01:06:58 +00004667 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004668 if (lType->isAnyPointerType() && rType->isIntegerType()) {
Chris Lattner06c0f5b2009-08-23 00:03:44 +00004669 unsigned DiagID = 0;
4670 if (RHSIsNull) {
4671 if (isRelational)
4672 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
4673 } else if (isRelational)
4674 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
4675 else
4676 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump1eb44332009-09-09 15:08:12 +00004677
Chris Lattner06c0f5b2009-08-23 00:03:44 +00004678 if (DiagID) {
Chris Lattner6365e3e2009-08-22 18:58:31 +00004679 Diag(Loc, DiagID)
Chris Lattner149f1382009-06-30 06:24:05 +00004680 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner6365e3e2009-08-22 18:58:31 +00004681 }
Chris Lattner1e0a3902008-01-16 19:17:22 +00004682 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004683 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00004684 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004685 if (lType->isIntegerType() && rType->isAnyPointerType()) {
Chris Lattner06c0f5b2009-08-23 00:03:44 +00004686 unsigned DiagID = 0;
4687 if (LHSIsNull) {
4688 if (isRelational)
4689 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
4690 } else if (isRelational)
4691 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
4692 else
4693 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump1eb44332009-09-09 15:08:12 +00004694
Chris Lattner06c0f5b2009-08-23 00:03:44 +00004695 if (DiagID) {
Chris Lattner6365e3e2009-08-22 18:58:31 +00004696 Diag(Loc, DiagID)
Chris Lattner149f1382009-06-30 06:24:05 +00004697 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner6365e3e2009-08-22 18:58:31 +00004698 }
Chris Lattner1e0a3902008-01-16 19:17:22 +00004699 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004700 return ResultTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00004701 }
Steve Naroff39218df2008-09-04 16:56:14 +00004702 // Handle block pointers.
Mike Stumpaf199f32009-05-07 18:43:07 +00004703 if (!isRelational && RHSIsNull
4704 && lType->isBlockPointerType() && rType->isIntegerType()) {
Steve Naroff39218df2008-09-04 16:56:14 +00004705 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004706 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00004707 }
Mike Stumpaf199f32009-05-07 18:43:07 +00004708 if (!isRelational && LHSIsNull
4709 && lType->isIntegerType() && rType->isBlockPointerType()) {
Steve Naroff39218df2008-09-04 16:56:14 +00004710 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004711 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00004712 }
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004713 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004714}
4715
Nate Begemanbe2341d2008-07-14 18:02:46 +00004716/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stumpeed9cac2009-02-19 03:04:26 +00004717/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begemanbe2341d2008-07-14 18:02:46 +00004718/// like a scalar comparison, a vector comparison produces a vector of integer
4719/// types.
4720QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex,
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004721 SourceLocation Loc,
Nate Begemanbe2341d2008-07-14 18:02:46 +00004722 bool isRelational) {
4723 // Check to make sure we're operating on vectors of the same type and width,
4724 // Allowing one side to be a scalar of element type.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004725 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004726 if (vType.isNull())
4727 return vType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004728
Nate Begemanbe2341d2008-07-14 18:02:46 +00004729 QualType lType = lex->getType();
4730 QualType rType = rex->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004731
Nate Begemanbe2341d2008-07-14 18:02:46 +00004732 // For non-floating point types, check for self-comparisons of the form
4733 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4734 // often indicate logic errors in the program.
4735 if (!lType->isFloatingType()) {
4736 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
4737 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
4738 if (DRL->getDecl() == DRR->getDecl())
Mike Stumpeed9cac2009-02-19 03:04:26 +00004739 Diag(Loc, diag::warn_selfcomparison);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004740 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004741
Nate Begemanbe2341d2008-07-14 18:02:46 +00004742 // Check for comparisons of floating point operands using != and ==.
4743 if (!isRelational && lType->isFloatingType()) {
4744 assert (rType->isFloatingType());
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004745 CheckFloatComparison(Loc,lex,rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004746 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004747
Nate Begemanbe2341d2008-07-14 18:02:46 +00004748 // Return the type for the comparison, which is the same as vector type for
4749 // integer vectors, or an integer type of identical size and number of
4750 // elements for floating point vectors.
4751 if (lType->isIntegerType())
4752 return lType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004753
John McCall183700f2009-09-21 23:43:11 +00004754 const VectorType *VTy = lType->getAs<VectorType>();
Nate Begemanbe2341d2008-07-14 18:02:46 +00004755 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
Nate Begeman59b5da62009-01-18 03:20:47 +00004756 if (TypeSize == Context.getTypeSize(Context.IntTy))
Nate Begemanbe2341d2008-07-14 18:02:46 +00004757 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
Chris Lattnerd013aa12009-03-31 07:46:52 +00004758 if (TypeSize == Context.getTypeSize(Context.LongTy))
Nate Begeman59b5da62009-01-18 03:20:47 +00004759 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
4760
Mike Stumpeed9cac2009-02-19 03:04:26 +00004761 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
Nate Begeman59b5da62009-01-18 03:20:47 +00004762 "Unhandled vector element size in vector compare");
Nate Begemanbe2341d2008-07-14 18:02:46 +00004763 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
4764}
4765
Reid Spencer5f016e22007-07-11 17:01:13 +00004766inline QualType Sema::CheckBitwiseOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00004767 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Steve Naroff3e5e5562007-07-16 22:23:01 +00004768 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004769 return CheckVectorOperands(Loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00004770
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004771 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004772
Steve Naroffa4332e22007-07-17 00:58:39 +00004773 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004774 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004775 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004776}
4777
4778inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Mike Stump1eb44332009-09-09 15:08:12 +00004779 Expr *&lex, Expr *&rex, SourceLocation Loc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00004780 UsualUnaryConversions(lex);
4781 UsualUnaryConversions(rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004782
Eli Friedman5773a6c2008-05-13 20:16:47 +00004783 if (lex->getType()->isScalarType() && rex->getType()->isScalarType())
Reid Spencer5f016e22007-07-11 17:01:13 +00004784 return Context.IntTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004785 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004786}
4787
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004788/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
4789/// is a read-only property; return true if so. A readonly property expression
4790/// depends on various declarations and thus must be treated specially.
4791///
Mike Stump1eb44332009-09-09 15:08:12 +00004792static bool IsReadonlyProperty(Expr *E, Sema &S) {
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004793 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
4794 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
4795 if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) {
4796 QualType BaseType = PropExpr->getBase()->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00004797 if (const ObjCObjectPointerType *OPT =
Steve Naroff14108da2009-07-10 23:34:53 +00004798 BaseType->getAsObjCInterfacePointerType())
4799 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
4800 if (S.isPropertyReadonly(PDecl, IFace))
4801 return true;
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004802 }
4803 }
4804 return false;
4805}
4806
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004807/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
4808/// emit an error and return true. If so, return false.
4809static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004810 SourceLocation OrigLoc = Loc;
Mike Stump1eb44332009-09-09 15:08:12 +00004811 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004812 &Loc);
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004813 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
4814 IsLV = Expr::MLV_ReadonlyProperty;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004815 if (IsLV == Expr::MLV_Valid)
4816 return false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004817
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004818 unsigned Diag = 0;
4819 bool NeedType = false;
4820 switch (IsLV) { // C99 6.5.16p2
4821 default: assert(0 && "Unknown result from isModifiableLvalue!");
4822 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004823 case Expr::MLV_ArrayType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004824 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
4825 NeedType = true;
4826 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004827 case Expr::MLV_NotObjectType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004828 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
4829 NeedType = true;
4830 break;
Chris Lattnerca354fa2008-11-17 19:51:54 +00004831 case Expr::MLV_LValueCast:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004832 Diag = diag::err_typecheck_lvalue_casts_not_supported;
4833 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00004834 case Expr::MLV_InvalidExpression:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004835 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
4836 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00004837 case Expr::MLV_IncompleteType:
4838 case Expr::MLV_IncompleteVoidType:
Douglas Gregor86447ec2009-03-09 16:13:40 +00004839 return S.RequireCompleteType(Loc, E->getType(),
Anders Carlssonb7906612009-08-26 23:45:07 +00004840 PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue)
4841 << E->getSourceRange());
Chris Lattner5cf216b2008-01-04 18:04:52 +00004842 case Expr::MLV_DuplicateVectorComponents:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004843 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
4844 break;
Steve Naroff4f6a7d72008-09-26 14:41:28 +00004845 case Expr::MLV_NotBlockQualified:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004846 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
4847 break;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00004848 case Expr::MLV_ReadonlyProperty:
4849 Diag = diag::error_readonly_property_assignment;
4850 break;
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +00004851 case Expr::MLV_NoSetterProperty:
4852 Diag = diag::error_nosetter_property_assignment;
4853 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00004854 }
Steve Naroffd1861fd2007-07-31 12:34:36 +00004855
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004856 SourceRange Assign;
4857 if (Loc != OrigLoc)
4858 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004859 if (NeedType)
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004860 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004861 else
Mike Stump1eb44332009-09-09 15:08:12 +00004862 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004863 return true;
4864}
4865
4866
4867
4868// C99 6.5.16.1
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004869QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS,
4870 SourceLocation Loc,
4871 QualType CompoundType) {
4872 // Verify that LHS is a modifiable lvalue, and emit error if not.
4873 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004874 return QualType();
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004875
4876 QualType LHSType = LHS->getType();
4877 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004878
Chris Lattner5cf216b2008-01-04 18:04:52 +00004879 AssignConvertType ConvTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004880 if (CompoundType.isNull()) {
Chris Lattner2c156472008-08-21 18:04:13 +00004881 // Simple assignment "x = y".
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004882 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS);
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004883 // Special case of NSObject attributes on c-style pointer types.
4884 if (ConvTy == IncompatiblePointer &&
4885 ((Context.isObjCNSObjectType(LHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00004886 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004887 (Context.isObjCNSObjectType(RHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00004888 LHSType->isObjCObjectPointerType())))
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004889 ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004890
Chris Lattner2c156472008-08-21 18:04:13 +00004891 // If the RHS is a unary plus or minus, check to see if they = and + are
4892 // right next to each other. If so, the user may have typo'd "x =+ 4"
4893 // instead of "x += 4".
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004894 Expr *RHSCheck = RHS;
Chris Lattner2c156472008-08-21 18:04:13 +00004895 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
4896 RHSCheck = ICE->getSubExpr();
4897 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
4898 if ((UO->getOpcode() == UnaryOperator::Plus ||
4899 UO->getOpcode() == UnaryOperator::Minus) &&
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004900 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattner2c156472008-08-21 18:04:13 +00004901 // Only if the two operators are exactly adjacent.
Chris Lattner399bd1b2009-03-08 06:51:10 +00004902 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() &&
4903 // And there is a space or other character before the subexpr of the
4904 // unary +/-. We don't want to warn on "x=-1".
Chris Lattner3e872092009-03-09 07:11:10 +00004905 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
4906 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004907 Diag(Loc, diag::warn_not_compound_assign)
4908 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-")
4909 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner399bd1b2009-03-08 06:51:10 +00004910 }
Chris Lattner2c156472008-08-21 18:04:13 +00004911 }
4912 } else {
4913 // Compound assignment "x += y"
Eli Friedman623712b2009-05-16 05:56:02 +00004914 ConvTy = CheckAssignmentConstraints(LHSType, RHSType);
Chris Lattner2c156472008-08-21 18:04:13 +00004915 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00004916
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004917 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
4918 RHS, "assigning"))
Chris Lattner5cf216b2008-01-04 18:04:52 +00004919 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004920
Reid Spencer5f016e22007-07-11 17:01:13 +00004921 // C99 6.5.16p3: The type of an assignment expression is the type of the
4922 // left operand unless the left operand has qualified type, in which case
Mike Stumpeed9cac2009-02-19 03:04:26 +00004923 // it is the unqualified version of the type of the left operand.
Reid Spencer5f016e22007-07-11 17:01:13 +00004924 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
4925 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00004926 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregor2d833e32009-05-02 00:36:19 +00004927 // operand.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004928 return LHSType.getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004929}
4930
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004931// C99 6.5.17
4932QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) {
Chris Lattner53fcaa92008-07-25 20:54:07 +00004933 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004934 DefaultFunctionArrayConversion(RHS);
Eli Friedmanb1d796d2009-03-23 00:24:07 +00004935
4936 // FIXME: Check that RHS type is complete in C mode (it's legal for it to be
4937 // incomplete in C++).
4938
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004939 return RHS->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004940}
4941
Steve Naroff49b45262007-07-13 16:58:59 +00004942/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
4943/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00004944QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc,
4945 bool isInc) {
Sebastian Redl28507842009-02-26 14:39:58 +00004946 if (Op->isTypeDependent())
4947 return Context.DependentTy;
4948
Chris Lattner3528d352008-11-21 07:05:48 +00004949 QualType ResType = Op->getType();
4950 assert(!ResType.isNull() && "no type for increment/decrement expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00004951
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00004952 if (getLangOptions().CPlusPlus && ResType->isBooleanType()) {
4953 // Decrement of bool is not allowed.
4954 if (!isInc) {
4955 Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
4956 return QualType();
4957 }
4958 // Increment of bool sets it to true, but is deprecated.
4959 Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
4960 } else if (ResType->isRealType()) {
Chris Lattner3528d352008-11-21 07:05:48 +00004961 // OK!
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004962 } else if (ResType->isAnyPointerType()) {
4963 QualType PointeeTy = ResType->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00004964
Chris Lattner3528d352008-11-21 07:05:48 +00004965 // C99 6.5.2.4p2, 6.5.6p2
Steve Naroff14108da2009-07-10 23:34:53 +00004966 if (PointeeTy->isVoidType()) {
Douglas Gregorc983b862009-01-23 00:36:41 +00004967 if (getLangOptions().CPlusPlus) {
4968 Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type)
4969 << Op->getSourceRange();
4970 return QualType();
4971 }
4972
4973 // Pointer to void is a GNU extension in C.
Chris Lattner3528d352008-11-21 07:05:48 +00004974 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
Steve Naroff14108da2009-07-10 23:34:53 +00004975 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorc983b862009-01-23 00:36:41 +00004976 if (getLangOptions().CPlusPlus) {
4977 Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type)
4978 << Op->getType() << Op->getSourceRange();
4979 return QualType();
4980 }
4981
4982 Diag(OpLoc, diag::ext_gnu_ptr_func_arith)
Chris Lattnerd1625842008-11-24 06:25:27 +00004983 << ResType << Op->getSourceRange();
Steve Naroff14108da2009-07-10 23:34:53 +00004984 } else if (RequireCompleteType(OpLoc, PointeeTy,
Anders Carlssond497ba72009-08-26 22:59:12 +00004985 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
Mike Stump1eb44332009-09-09 15:08:12 +00004986 << Op->getSourceRange()
Anders Carlssond497ba72009-08-26 22:59:12 +00004987 << ResType))
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004988 return QualType();
Fariborz Jahanian9f8a04f2009-07-16 17:59:14 +00004989 // Diagnose bad cases where we step over interface counts.
4990 else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4991 Diag(OpLoc, diag::err_arithmetic_nonfragile_interface)
4992 << PointeeTy << Op->getSourceRange();
4993 return QualType();
4994 }
Chris Lattner3528d352008-11-21 07:05:48 +00004995 } else if (ResType->isComplexType()) {
4996 // C99 does not support ++/-- on complex types, we allow as an extension.
4997 Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00004998 << ResType << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00004999 } else {
5000 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Chris Lattnerd1625842008-11-24 06:25:27 +00005001 << ResType << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00005002 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00005003 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005004 // At this point, we know we have a real, complex or pointer type.
Steve Naroffdd10e022007-08-23 21:37:33 +00005005 // Now make sure the operand is a modifiable lvalue.
Chris Lattner3528d352008-11-21 07:05:48 +00005006 if (CheckForModifiableLvalue(Op, OpLoc, *this))
Reid Spencer5f016e22007-07-11 17:01:13 +00005007 return QualType();
Chris Lattner3528d352008-11-21 07:05:48 +00005008 return ResType;
Reid Spencer5f016e22007-07-11 17:01:13 +00005009}
5010
Anders Carlsson369dee42008-02-01 07:15:58 +00005011/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Reid Spencer5f016e22007-07-11 17:01:13 +00005012/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00005013/// where the declaration is needed for type checking. We only need to
5014/// handle cases when the expression references a function designator
5015/// or is an lvalue. Here are some examples:
5016/// - &(x) => x
5017/// - &*****f => f for f a function designator.
5018/// - &s.xx => s
5019/// - &s.zz[1].yy -> s, if zz is an array
5020/// - *(x + 1) -> x, if x is an array
5021/// - &"123"[2] -> 0
5022/// - & __real__ x -> x
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005023static NamedDecl *getPrimaryDecl(Expr *E) {
Chris Lattnerf0467b32008-04-02 04:24:33 +00005024 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005025 case Stmt::DeclRefExprClass:
Douglas Gregor1a49af92009-01-06 05:10:23 +00005026 case Stmt::QualifiedDeclRefExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00005027 return cast<DeclRefExpr>(E)->getDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00005028 case Stmt::MemberExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00005029 // If this is an arrow operator, the address is an offset from
5030 // the base's value, so the object the base refers to is
5031 // irrelevant.
Chris Lattnerf0467b32008-04-02 04:24:33 +00005032 if (cast<MemberExpr>(E)->isArrow())
Chris Lattnerf82228f2007-11-16 17:46:48 +00005033 return 0;
Eli Friedman23d58ce2009-04-20 08:23:18 +00005034 // Otherwise, the expression refers to a part of the base
Chris Lattnerf0467b32008-04-02 04:24:33 +00005035 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson369dee42008-02-01 07:15:58 +00005036 case Stmt::ArraySubscriptExprClass: {
Mike Stump390b4cc2009-05-16 07:39:55 +00005037 // FIXME: This code shouldn't be necessary! We should catch the implicit
5038 // promotion of register arrays earlier.
Eli Friedman23d58ce2009-04-20 08:23:18 +00005039 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
5040 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
5041 if (ICE->getSubExpr()->getType()->isArrayType())
5042 return getPrimaryDecl(ICE->getSubExpr());
5043 }
5044 return 0;
Anders Carlsson369dee42008-02-01 07:15:58 +00005045 }
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00005046 case Stmt::UnaryOperatorClass: {
5047 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005048
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00005049 switch(UO->getOpcode()) {
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00005050 case UnaryOperator::Real:
5051 case UnaryOperator::Imag:
5052 case UnaryOperator::Extension:
5053 return getPrimaryDecl(UO->getSubExpr());
5054 default:
5055 return 0;
5056 }
5057 }
Reid Spencer5f016e22007-07-11 17:01:13 +00005058 case Stmt::ParenExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00005059 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerf82228f2007-11-16 17:46:48 +00005060 case Stmt::ImplicitCastExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00005061 // If the result of an implicit cast is an l-value, we care about
5062 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattnerf0467b32008-04-02 04:24:33 +00005063 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00005064 default:
5065 return 0;
5066 }
5067}
5068
5069/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stumpeed9cac2009-02-19 03:04:26 +00005070/// designator or an lvalue designating an object. If it is an lvalue, the
Reid Spencer5f016e22007-07-11 17:01:13 +00005071/// object cannot be declared with storage class register or be a bit field.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005072/// Note: The usual conversions are *not* applied to the operand of the &
Reid Spencer5f016e22007-07-11 17:01:13 +00005073/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005074/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregor904eed32008-11-10 20:40:00 +00005075/// we allow the '&' but retain the overloaded-function type.
Reid Spencer5f016e22007-07-11 17:01:13 +00005076QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Eli Friedman23d58ce2009-04-20 08:23:18 +00005077 // Make sure to ignore parentheses in subsequent checks
5078 op = op->IgnoreParens();
5079
Douglas Gregor9103bb22008-12-17 22:52:20 +00005080 if (op->isTypeDependent())
5081 return Context.DependentTy;
5082
Steve Naroff08f19672008-01-13 17:10:08 +00005083 if (getLangOptions().C99) {
5084 // Implement C99-only parts of addressof rules.
5085 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
5086 if (uOp->getOpcode() == UnaryOperator::Deref)
5087 // Per C99 6.5.3.2, the address of a deref always returns a valid result
5088 // (assuming the deref expression is valid).
5089 return uOp->getSubExpr()->getType();
5090 }
5091 // Technically, there should be a check for array subscript
5092 // expressions here, but the result of one is always an lvalue anyway.
5093 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005094 NamedDecl *dcl = getPrimaryDecl(op);
Chris Lattner28be73f2008-07-26 21:30:36 +00005095 Expr::isLvalueResult lval = op->isLvalue(Context);
Nuno Lopes6b6609f2008-12-16 22:59:47 +00005096
Eli Friedman441cf102009-05-16 23:27:50 +00005097 if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
5098 // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00005099 // The operand must be either an l-value or a function designator
Eli Friedman441cf102009-05-16 23:27:50 +00005100 if (!op->getType()->isFunctionType()) {
Chris Lattnerf82228f2007-11-16 17:46:48 +00005101 // FIXME: emit more specific diag...
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00005102 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
5103 << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00005104 return QualType();
5105 }
Douglas Gregor33bbbc52009-05-02 02:18:30 +00005106 } else if (op->getBitField()) { // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00005107 // The operand cannot be a bit-field
5108 Diag(OpLoc, diag::err_typecheck_address_of)
5109 << "bit-field" << op->getSourceRange();
Douglas Gregor86f19402008-12-20 23:49:58 +00005110 return QualType();
Nate Begemanb104b1f2009-02-15 22:45:20 +00005111 } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) &&
5112 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){
Eli Friedman23d58ce2009-04-20 08:23:18 +00005113 // The operand cannot be an element of a vector
Chris Lattnerd3a94e22008-11-20 06:06:08 +00005114 Diag(OpLoc, diag::err_typecheck_address_of)
Nate Begemanb104b1f2009-02-15 22:45:20 +00005115 << "vector element" << op->getSourceRange();
Steve Naroffbcb2b612008-02-29 23:30:25 +00005116 return QualType();
Fariborz Jahanian0337f212009-07-07 18:50:52 +00005117 } else if (isa<ObjCPropertyRefExpr>(op)) {
5118 // cannot take address of a property expression.
5119 Diag(OpLoc, diag::err_typecheck_address_of)
5120 << "property expression" << op->getSourceRange();
5121 return QualType();
Anders Carlsson1d524c32009-09-14 23:15:26 +00005122 } else if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(op)) {
5123 // FIXME: Can LHS ever be null here?
Anders Carlsson474e1022009-09-15 16:03:44 +00005124 if (!CheckAddressOfOperand(CO->getTrueExpr(), OpLoc).isNull())
5125 return CheckAddressOfOperand(CO->getFalseExpr(), OpLoc);
Steve Naroffbcb2b612008-02-29 23:30:25 +00005126 } else if (dcl) { // C99 6.5.3.2p1
Mike Stumpeed9cac2009-02-19 03:04:26 +00005127 // We have an lvalue with a decl. Make sure the decl is not declared
Reid Spencer5f016e22007-07-11 17:01:13 +00005128 // with the register storage-class specifier.
5129 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
5130 if (vd->getStorageClass() == VarDecl::Register) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00005131 Diag(OpLoc, diag::err_typecheck_address_of)
5132 << "register variable" << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00005133 return QualType();
5134 }
Douglas Gregor83314aa2009-07-08 20:55:45 +00005135 } else if (isa<OverloadedFunctionDecl>(dcl) ||
5136 isa<FunctionTemplateDecl>(dcl)) {
Douglas Gregor904eed32008-11-10 20:40:00 +00005137 return Context.OverloadTy;
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00005138 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) {
Douglas Gregor29882052008-12-10 21:26:49 +00005139 // Okay: we can take the address of a field.
Sebastian Redlebc07d52009-02-03 20:19:35 +00005140 // Could be a pointer to member, though, if there is an explicit
5141 // scope qualifier for the class.
5142 if (isa<QualifiedDeclRefExpr>(op)) {
5143 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00005144 if (Ctx && Ctx->isRecord()) {
5145 if (FD->getType()->isReferenceType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005146 Diag(OpLoc,
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00005147 diag::err_cannot_form_pointer_to_member_of_reference_type)
5148 << FD->getDeclName() << FD->getType();
5149 return QualType();
5150 }
Mike Stump1eb44332009-09-09 15:08:12 +00005151
Sebastian Redlebc07d52009-02-03 20:19:35 +00005152 return Context.getMemberPointerType(op->getType(),
5153 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00005154 }
Sebastian Redlebc07d52009-02-03 20:19:35 +00005155 }
Anders Carlsson196f7d02009-05-16 21:43:42 +00005156 } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) {
Nuno Lopes6fea8d22008-12-16 22:58:26 +00005157 // Okay: we can take the address of a function.
Sebastian Redl33b399a2009-02-04 21:23:32 +00005158 // As above.
Anders Carlsson196f7d02009-05-16 21:43:42 +00005159 if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance())
5160 return Context.getMemberPointerType(op->getType(),
5161 Context.getTypeDeclType(MD->getParent()).getTypePtr());
5162 } else if (!isa<FunctionDecl>(dcl))
Reid Spencer5f016e22007-07-11 17:01:13 +00005163 assert(0 && "Unknown/unexpected decl type");
Reid Spencer5f016e22007-07-11 17:01:13 +00005164 }
Sebastian Redl33b399a2009-02-04 21:23:32 +00005165
Eli Friedman441cf102009-05-16 23:27:50 +00005166 if (lval == Expr::LV_IncompleteVoidType) {
5167 // Taking the address of a void variable is technically illegal, but we
5168 // allow it in cases which are otherwise valid.
5169 // Example: "extern void x; void* y = &x;".
5170 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
5171 }
5172
Reid Spencer5f016e22007-07-11 17:01:13 +00005173 // If the operand has type "type", the result has type "pointer to type".
5174 return Context.getPointerType(op->getType());
5175}
5176
Chris Lattner22caddc2008-11-23 09:13:29 +00005177QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) {
Sebastian Redl28507842009-02-26 14:39:58 +00005178 if (Op->isTypeDependent())
5179 return Context.DependentTy;
5180
Chris Lattner22caddc2008-11-23 09:13:29 +00005181 UsualUnaryConversions(Op);
5182 QualType Ty = Op->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005183
Chris Lattner22caddc2008-11-23 09:13:29 +00005184 // Note that per both C89 and C99, this is always legal, even if ptype is an
5185 // incomplete type or void. It would be possible to warn about dereferencing
5186 // a void pointer, but it's completely well-defined, and such a warning is
5187 // unlikely to catch any mistakes.
Ted Kremenek6217b802009-07-29 21:53:49 +00005188 if (const PointerType *PT = Ty->getAs<PointerType>())
Steve Naroff08f19672008-01-13 17:10:08 +00005189 return PT->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005190
John McCall183700f2009-09-21 23:43:11 +00005191 if (const ObjCObjectPointerType *OPT = Ty->getAs<ObjCObjectPointerType>())
Fariborz Jahanian16b10372009-09-03 00:43:07 +00005192 return OPT->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00005193
Chris Lattnerd3a94e22008-11-20 06:06:08 +00005194 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattner22caddc2008-11-23 09:13:29 +00005195 << Ty << Op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00005196 return QualType();
5197}
5198
5199static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
5200 tok::TokenKind Kind) {
5201 BinaryOperator::Opcode Opc;
5202 switch (Kind) {
5203 default: assert(0 && "Unknown binop!");
Sebastian Redl22460502009-02-07 00:15:38 +00005204 case tok::periodstar: Opc = BinaryOperator::PtrMemD; break;
5205 case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005206 case tok::star: Opc = BinaryOperator::Mul; break;
5207 case tok::slash: Opc = BinaryOperator::Div; break;
5208 case tok::percent: Opc = BinaryOperator::Rem; break;
5209 case tok::plus: Opc = BinaryOperator::Add; break;
5210 case tok::minus: Opc = BinaryOperator::Sub; break;
5211 case tok::lessless: Opc = BinaryOperator::Shl; break;
5212 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
5213 case tok::lessequal: Opc = BinaryOperator::LE; break;
5214 case tok::less: Opc = BinaryOperator::LT; break;
5215 case tok::greaterequal: Opc = BinaryOperator::GE; break;
5216 case tok::greater: Opc = BinaryOperator::GT; break;
5217 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
5218 case tok::equalequal: Opc = BinaryOperator::EQ; break;
5219 case tok::amp: Opc = BinaryOperator::And; break;
5220 case tok::caret: Opc = BinaryOperator::Xor; break;
5221 case tok::pipe: Opc = BinaryOperator::Or; break;
5222 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
5223 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
5224 case tok::equal: Opc = BinaryOperator::Assign; break;
5225 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
5226 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
5227 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
5228 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
5229 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
5230 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
5231 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
5232 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
5233 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
5234 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
5235 case tok::comma: Opc = BinaryOperator::Comma; break;
5236 }
5237 return Opc;
5238}
5239
5240static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
5241 tok::TokenKind Kind) {
5242 UnaryOperator::Opcode Opc;
5243 switch (Kind) {
5244 default: assert(0 && "Unknown unary op!");
5245 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
5246 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
5247 case tok::amp: Opc = UnaryOperator::AddrOf; break;
5248 case tok::star: Opc = UnaryOperator::Deref; break;
5249 case tok::plus: Opc = UnaryOperator::Plus; break;
5250 case tok::minus: Opc = UnaryOperator::Minus; break;
5251 case tok::tilde: Opc = UnaryOperator::Not; break;
5252 case tok::exclaim: Opc = UnaryOperator::LNot; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005253 case tok::kw___real: Opc = UnaryOperator::Real; break;
5254 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
5255 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
5256 }
5257 return Opc;
5258}
5259
Douglas Gregoreaebc752008-11-06 23:29:22 +00005260/// CreateBuiltinBinOp - Creates a new built-in binary operation with
5261/// operator @p Opc at location @c TokLoc. This routine only supports
5262/// built-in operations; ActOnBinOp handles overloaded operators.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005263Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
5264 unsigned Op,
5265 Expr *lhs, Expr *rhs) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00005266 QualType ResultTy; // Result type of the binary operator.
Douglas Gregoreaebc752008-11-06 23:29:22 +00005267 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op;
Eli Friedmanab3a8522009-03-28 01:22:36 +00005268 // The following two variables are used for compound assignment operators
5269 QualType CompLHSTy; // Type of LHS after promotions for computation
5270 QualType CompResultTy; // Type of computation result
Douglas Gregoreaebc752008-11-06 23:29:22 +00005271
5272 switch (Opc) {
Douglas Gregoreaebc752008-11-06 23:29:22 +00005273 case BinaryOperator::Assign:
5274 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType());
5275 break;
Sebastian Redl22460502009-02-07 00:15:38 +00005276 case BinaryOperator::PtrMemD:
5277 case BinaryOperator::PtrMemI:
5278 ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc,
5279 Opc == BinaryOperator::PtrMemI);
5280 break;
5281 case BinaryOperator::Mul:
Douglas Gregoreaebc752008-11-06 23:29:22 +00005282 case BinaryOperator::Div:
5283 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc);
5284 break;
5285 case BinaryOperator::Rem:
5286 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
5287 break;
5288 case BinaryOperator::Add:
5289 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
5290 break;
5291 case BinaryOperator::Sub:
5292 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
5293 break;
Sebastian Redl22460502009-02-07 00:15:38 +00005294 case BinaryOperator::Shl:
Douglas Gregoreaebc752008-11-06 23:29:22 +00005295 case BinaryOperator::Shr:
5296 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc);
5297 break;
5298 case BinaryOperator::LE:
5299 case BinaryOperator::LT:
5300 case BinaryOperator::GE:
5301 case BinaryOperator::GT:
Douglas Gregora86b8322009-04-06 18:45:53 +00005302 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005303 break;
5304 case BinaryOperator::EQ:
5305 case BinaryOperator::NE:
Douglas Gregora86b8322009-04-06 18:45:53 +00005306 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005307 break;
5308 case BinaryOperator::And:
5309 case BinaryOperator::Xor:
5310 case BinaryOperator::Or:
5311 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
5312 break;
5313 case BinaryOperator::LAnd:
5314 case BinaryOperator::LOr:
5315 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc);
5316 break;
5317 case BinaryOperator::MulAssign:
5318 case BinaryOperator::DivAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005319 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true);
5320 CompLHSTy = CompResultTy;
5321 if (!CompResultTy.isNull())
5322 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005323 break;
5324 case BinaryOperator::RemAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005325 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
5326 CompLHSTy = CompResultTy;
5327 if (!CompResultTy.isNull())
5328 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005329 break;
5330 case BinaryOperator::AddAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005331 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy);
5332 if (!CompResultTy.isNull())
5333 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005334 break;
5335 case BinaryOperator::SubAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005336 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy);
5337 if (!CompResultTy.isNull())
5338 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005339 break;
5340 case BinaryOperator::ShlAssign:
5341 case BinaryOperator::ShrAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005342 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true);
5343 CompLHSTy = CompResultTy;
5344 if (!CompResultTy.isNull())
5345 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005346 break;
5347 case BinaryOperator::AndAssign:
5348 case BinaryOperator::XorAssign:
5349 case BinaryOperator::OrAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005350 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
5351 CompLHSTy = CompResultTy;
5352 if (!CompResultTy.isNull())
5353 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005354 break;
5355 case BinaryOperator::Comma:
5356 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc);
5357 break;
5358 }
5359 if (ResultTy.isNull())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005360 return ExprError();
Eli Friedmanab3a8522009-03-28 01:22:36 +00005361 if (CompResultTy.isNull())
Steve Naroff6ece14c2009-01-21 00:14:39 +00005362 return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc));
5363 else
5364 return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy,
Eli Friedmanab3a8522009-03-28 01:22:36 +00005365 CompLHSTy, CompResultTy,
5366 OpLoc));
Douglas Gregoreaebc752008-11-06 23:29:22 +00005367}
5368
Reid Spencer5f016e22007-07-11 17:01:13 +00005369// Binary Operators. 'Tok' is the token for the operator.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005370Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
5371 tok::TokenKind Kind,
5372 ExprArg LHS, ExprArg RHS) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005373 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
Anders Carlssone9146f22009-05-01 19:49:17 +00005374 Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>();
Reid Spencer5f016e22007-07-11 17:01:13 +00005375
Steve Narofff69936d2007-09-16 03:34:24 +00005376 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
5377 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00005378
Douglas Gregor063daf62009-03-13 18:40:31 +00005379 if (getLangOptions().CPlusPlus &&
Mike Stump1eb44332009-09-09 15:08:12 +00005380 (lhs->getType()->isOverloadableType() ||
Douglas Gregor063daf62009-03-13 18:40:31 +00005381 rhs->getType()->isOverloadableType())) {
5382 // Find all of the overloaded operators visible from this
5383 // point. We perform both an operator-name lookup from the local
5384 // scope and an argument-dependent lookup based on the types of
5385 // the arguments.
Douglas Gregor3fd95ce2009-03-13 00:33:25 +00005386 FunctionSet Functions;
Douglas Gregor063daf62009-03-13 18:40:31 +00005387 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc);
5388 if (OverOp != OO_None) {
5389 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(),
5390 Functions);
5391 Expr *Args[2] = { lhs, rhs };
Mike Stump1eb44332009-09-09 15:08:12 +00005392 DeclarationName OpName
Douglas Gregor063daf62009-03-13 18:40:31 +00005393 = Context.DeclarationNames.getCXXOperatorName(OverOp);
5394 ArgumentDependentLookup(OpName, Args, 2, Functions);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005395 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005396
Douglas Gregor063daf62009-03-13 18:40:31 +00005397 // Build the (potentially-overloaded, potentially-dependent)
5398 // binary operation.
5399 return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs);
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005400 }
5401
Douglas Gregoreaebc752008-11-06 23:29:22 +00005402 // Build a built-in binary operation.
5403 return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs);
Reid Spencer5f016e22007-07-11 17:01:13 +00005404}
5405
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005406Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00005407 unsigned OpcIn,
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005408 ExprArg InputArg) {
5409 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
Douglas Gregor74253732008-11-19 15:42:04 +00005410
Mike Stump390b4cc2009-05-16 07:39:55 +00005411 // FIXME: Input is modified below, but InputArg is not updated appropriately.
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005412 Expr *Input = (Expr *)InputArg.get();
Reid Spencer5f016e22007-07-11 17:01:13 +00005413 QualType resultType;
5414 switch (Opc) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005415 case UnaryOperator::OffsetOf:
5416 assert(false && "Invalid unary operator");
5417 break;
5418
Reid Spencer5f016e22007-07-11 17:01:13 +00005419 case UnaryOperator::PreInc:
5420 case UnaryOperator::PreDec:
Eli Friedmande99a452009-07-22 22:25:00 +00005421 case UnaryOperator::PostInc:
5422 case UnaryOperator::PostDec:
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00005423 resultType = CheckIncrementDecrementOperand(Input, OpLoc,
Eli Friedmande99a452009-07-22 22:25:00 +00005424 Opc == UnaryOperator::PreInc ||
5425 Opc == UnaryOperator::PostInc);
Reid Spencer5f016e22007-07-11 17:01:13 +00005426 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005427 case UnaryOperator::AddrOf:
Reid Spencer5f016e22007-07-11 17:01:13 +00005428 resultType = CheckAddressOfOperand(Input, OpLoc);
5429 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005430 case UnaryOperator::Deref:
Steve Naroff1ca9b112007-12-18 04:06:57 +00005431 DefaultFunctionArrayConversion(Input);
Reid Spencer5f016e22007-07-11 17:01:13 +00005432 resultType = CheckIndirectionOperand(Input, OpLoc);
5433 break;
5434 case UnaryOperator::Plus:
5435 case UnaryOperator::Minus:
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005436 UsualUnaryConversions(Input);
5437 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005438 if (resultType->isDependentType())
5439 break;
Douglas Gregor74253732008-11-19 15:42:04 +00005440 if (resultType->isArithmeticType()) // C99 6.5.3.3p1
5441 break;
5442 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
5443 resultType->isEnumeralType())
5444 break;
5445 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
5446 Opc == UnaryOperator::Plus &&
5447 resultType->isPointerType())
5448 break;
5449
Sebastian Redl0eb23302009-01-19 00:08:26 +00005450 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5451 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005452 case UnaryOperator::Not: // bitwise complement
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005453 UsualUnaryConversions(Input);
5454 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005455 if (resultType->isDependentType())
5456 break;
Chris Lattner02a65142008-07-25 23:52:49 +00005457 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
5458 if (resultType->isComplexType() || resultType->isComplexIntegerType())
5459 // C99 does not support '~' for complex conjugation.
Chris Lattnerd3a94e22008-11-20 06:06:08 +00005460 Diag(OpLoc, diag::ext_integer_complement_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00005461 << resultType << Input->getSourceRange();
Chris Lattner02a65142008-07-25 23:52:49 +00005462 else if (!resultType->isIntegerType())
Sebastian Redl0eb23302009-01-19 00:08:26 +00005463 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5464 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005465 break;
5466 case UnaryOperator::LNot: // logical negation
5467 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005468 DefaultFunctionArrayConversion(Input);
5469 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005470 if (resultType->isDependentType())
5471 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005472 if (!resultType->isScalarType()) // C99 6.5.3.3p1
Sebastian Redl0eb23302009-01-19 00:08:26 +00005473 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5474 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005475 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redl0eb23302009-01-19 00:08:26 +00005476 // In C++, it's bool. C++ 5.3.1p8
5477 resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00005478 break;
Chris Lattnerdbb36972007-08-24 21:16:53 +00005479 case UnaryOperator::Real:
Chris Lattnerdbb36972007-08-24 21:16:53 +00005480 case UnaryOperator::Imag:
Chris Lattnerba27e2a2009-02-17 08:12:06 +00005481 resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real);
Chris Lattnerdbb36972007-08-24 21:16:53 +00005482 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005483 case UnaryOperator::Extension:
Reid Spencer5f016e22007-07-11 17:01:13 +00005484 resultType = Input->getType();
5485 break;
5486 }
5487 if (resultType.isNull())
Sebastian Redl0eb23302009-01-19 00:08:26 +00005488 return ExprError();
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005489
5490 InputArg.release();
Steve Naroff6ece14c2009-01-21 00:14:39 +00005491 return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00005492}
5493
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005494// Unary Operators. 'Tok' is the token for the operator.
5495Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
5496 tok::TokenKind Op, ExprArg input) {
5497 Expr *Input = (Expr*)input.get();
5498 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
5499
5500 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) {
5501 // Find all of the overloaded operators visible from this
5502 // point. We perform both an operator-name lookup from the local
5503 // scope and an argument-dependent lookup based on the types of
5504 // the arguments.
5505 FunctionSet Functions;
5506 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
5507 if (OverOp != OO_None) {
5508 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
5509 Functions);
Mike Stump1eb44332009-09-09 15:08:12 +00005510 DeclarationName OpName
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005511 = Context.DeclarationNames.getCXXOperatorName(OverOp);
5512 ArgumentDependentLookup(OpName, &Input, 1, Functions);
5513 }
5514
5515 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input));
5516 }
5517
5518 return CreateBuiltinUnaryOp(OpLoc, Opc, move(input));
5519}
5520
Steve Naroff1b273c42007-09-16 14:56:35 +00005521/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Sebastian Redlf53597f2009-03-15 17:47:39 +00005522Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
5523 SourceLocation LabLoc,
5524 IdentifierInfo *LabelII) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005525 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +00005526 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Mike Stumpeed9cac2009-02-19 03:04:26 +00005527
Daniel Dunbar0ffb1252008-08-04 16:51:22 +00005528 // If we haven't seen this label yet, create a forward reference. It
5529 // will be validated and/or cleaned up in ActOnFinishFunctionBody.
Steve Naroffcaaacec2009-03-13 15:38:40 +00005530 if (LabelDecl == 0)
Steve Naroff6ece14c2009-01-21 00:14:39 +00005531 LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005532
Reid Spencer5f016e22007-07-11 17:01:13 +00005533 // Create the AST node. The address of a label always has type 'void*'.
Sebastian Redlf53597f2009-03-15 17:47:39 +00005534 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
5535 Context.getPointerType(Context.VoidTy)));
Reid Spencer5f016e22007-07-11 17:01:13 +00005536}
5537
Sebastian Redlf53597f2009-03-15 17:47:39 +00005538Sema::OwningExprResult
5539Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt,
5540 SourceLocation RPLoc) { // "({..})"
5541 Stmt *SubStmt = static_cast<Stmt*>(substmt.get());
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005542 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
5543 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
5544
Eli Friedmandca2b732009-01-24 23:09:00 +00005545 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Chris Lattner4a049f02009-04-25 19:11:05 +00005546 if (isFileScope)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005547 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedmandca2b732009-01-24 23:09:00 +00005548
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005549 // FIXME: there are a variety of strange constraints to enforce here, for
5550 // example, it is not possible to goto into a stmt expression apparently.
5551 // More semantic analysis is needed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005552
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005553 // If there are sub stmts in the compound stmt, take the type of the last one
5554 // as the type of the stmtexpr.
5555 QualType Ty = Context.VoidTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005556
Chris Lattner611b2ec2008-07-26 19:51:01 +00005557 if (!Compound->body_empty()) {
5558 Stmt *LastStmt = Compound->body_back();
5559 // If LastStmt is a label, skip down through into the body.
5560 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt))
5561 LastStmt = Label->getSubStmt();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005562
Chris Lattner611b2ec2008-07-26 19:51:01 +00005563 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt))
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005564 Ty = LastExpr->getType();
Chris Lattner611b2ec2008-07-26 19:51:01 +00005565 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005566
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005567 // FIXME: Check that expression type is complete/non-abstract; statement
5568 // expressions are not lvalues.
5569
Sebastian Redlf53597f2009-03-15 17:47:39 +00005570 substmt.release();
5571 return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc));
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005572}
Steve Naroffd34e9152007-08-01 22:05:33 +00005573
Sebastian Redlf53597f2009-03-15 17:47:39 +00005574Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
5575 SourceLocation BuiltinLoc,
5576 SourceLocation TypeLoc,
5577 TypeTy *argty,
5578 OffsetOfComponent *CompPtr,
5579 unsigned NumComponents,
5580 SourceLocation RPLoc) {
5581 // FIXME: This function leaks all expressions in the offset components on
5582 // error.
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00005583 // FIXME: Preserve type source info.
5584 QualType ArgTy = GetTypeFromParser(argty);
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005585 assert(!ArgTy.isNull() && "Missing type argument!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00005586
Sebastian Redl28507842009-02-26 14:39:58 +00005587 bool Dependent = ArgTy->isDependentType();
5588
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005589 // We must have at least one component that refers to the type, and the first
5590 // one is known to be a field designator. Verify that the ArgTy represents
5591 // a struct/union/class.
Sebastian Redl28507842009-02-26 14:39:58 +00005592 if (!Dependent && !ArgTy->isRecordType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00005593 return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005594
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005595 // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable
5596 // with an incomplete type would be illegal.
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +00005597
Eli Friedman35183ac2009-02-27 06:44:11 +00005598 // Otherwise, create a null pointer as the base, and iteratively process
5599 // the offsetof designators.
5600 QualType ArgTyPtr = Context.getPointerType(ArgTy);
5601 Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005602 Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref,
Eli Friedman35183ac2009-02-27 06:44:11 +00005603 ArgTy, SourceLocation());
Eli Friedman1d242592009-01-26 01:33:06 +00005604
Chris Lattner9e2b75c2007-08-31 21:49:13 +00005605 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
5606 // GCC extension, diagnose them.
Eli Friedman35183ac2009-02-27 06:44:11 +00005607 // FIXME: This diagnostic isn't actually visible because the location is in
5608 // a system header!
Chris Lattner9e2b75c2007-08-31 21:49:13 +00005609 if (NumComponents != 1)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00005610 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
5611 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005612
Sebastian Redl28507842009-02-26 14:39:58 +00005613 if (!Dependent) {
Eli Friedmanc0d600c2009-05-03 21:22:18 +00005614 bool DidWarnAboutNonPOD = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005615
Sebastian Redl28507842009-02-26 14:39:58 +00005616 // FIXME: Dependent case loses a lot of information here. And probably
5617 // leaks like a sieve.
5618 for (unsigned i = 0; i != NumComponents; ++i) {
5619 const OffsetOfComponent &OC = CompPtr[i];
5620 if (OC.isBrackets) {
5621 // Offset of an array sub-field. TODO: Should we allow vector elements?
5622 const ArrayType *AT = Context.getAsArrayType(Res->getType());
5623 if (!AT) {
5624 Res->Destroy(Context);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005625 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
5626 << Res->getType());
Sebastian Redl28507842009-02-26 14:39:58 +00005627 }
5628
5629 // FIXME: C++: Verify that operator[] isn't overloaded.
5630
Eli Friedman35183ac2009-02-27 06:44:11 +00005631 // Promote the array so it looks more like a normal array subscript
5632 // expression.
5633 DefaultFunctionArrayConversion(Res);
5634
Sebastian Redl28507842009-02-26 14:39:58 +00005635 // C99 6.5.2.1p1
5636 Expr *Idx = static_cast<Expr*>(OC.U.E);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005637 // FIXME: Leaks Res
Sebastian Redl28507842009-02-26 14:39:58 +00005638 if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00005639 return ExprError(Diag(Idx->getLocStart(),
Chris Lattner338395d2009-04-25 22:50:55 +00005640 diag::err_typecheck_subscript_not_integer)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005641 << Idx->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +00005642
5643 Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(),
5644 OC.LocEnd);
5645 continue;
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005646 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005647
Ted Kremenek6217b802009-07-29 21:53:49 +00005648 const RecordType *RC = Res->getType()->getAs<RecordType>();
Sebastian Redl28507842009-02-26 14:39:58 +00005649 if (!RC) {
5650 Res->Destroy(Context);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005651 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
5652 << Res->getType());
Sebastian Redl28507842009-02-26 14:39:58 +00005653 }
Chris Lattner704fe352007-08-30 17:59:59 +00005654
Sebastian Redl28507842009-02-26 14:39:58 +00005655 // Get the decl corresponding to this.
5656 RecordDecl *RD = RC->getDecl();
Anders Carlsson6d7f1492009-05-01 23:20:30 +00005657 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
Anders Carlsson5992e4a2009-05-02 18:36:10 +00005658 if (!CRD->isPOD() && !DidWarnAboutNonPOD) {
Anders Carlssonf9b8bc62009-05-02 17:45:47 +00005659 ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type)
5660 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
5661 << Res->getType());
Anders Carlsson5992e4a2009-05-02 18:36:10 +00005662 DidWarnAboutNonPOD = true;
5663 }
Anders Carlsson6d7f1492009-05-01 23:20:30 +00005664 }
Mike Stump1eb44332009-09-09 15:08:12 +00005665
Sebastian Redl28507842009-02-26 14:39:58 +00005666 FieldDecl *MemberDecl
5667 = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo,
5668 LookupMemberName)
5669 .getAsDecl());
Sebastian Redlf53597f2009-03-15 17:47:39 +00005670 // FIXME: Leaks Res
Sebastian Redl28507842009-02-26 14:39:58 +00005671 if (!MemberDecl)
Anders Carlssonf4d84b62009-08-30 00:54:35 +00005672 return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member_deprecated)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005673 << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd));
Mike Stumpeed9cac2009-02-19 03:04:26 +00005674
Sebastian Redl28507842009-02-26 14:39:58 +00005675 // FIXME: C++: Verify that MemberDecl isn't a static field.
5676 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedmane9356962009-04-26 20:50:44 +00005677 if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00005678 Res = BuildAnonymousStructUnionMemberReference(
5679 SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>();
Eli Friedmane9356962009-04-26 20:50:44 +00005680 } else {
5681 // MemberDecl->getType() doesn't get the right qualifiers, but it
5682 // doesn't matter here.
5683 Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd,
5684 MemberDecl->getType().getNonReferenceType());
5685 }
Sebastian Redl28507842009-02-26 14:39:58 +00005686 }
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005687 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005688
Sebastian Redlf53597f2009-03-15 17:47:39 +00005689 return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf,
5690 Context.getSizeType(), BuiltinLoc));
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005691}
5692
5693
Sebastian Redlf53597f2009-03-15 17:47:39 +00005694Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
5695 TypeTy *arg1,TypeTy *arg2,
5696 SourceLocation RPLoc) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00005697 // FIXME: Preserve type source info.
5698 QualType argT1 = GetTypeFromParser(arg1);
5699 QualType argT2 = GetTypeFromParser(arg2);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005700
Steve Naroffd34e9152007-08-01 22:05:33 +00005701 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
Mike Stumpeed9cac2009-02-19 03:04:26 +00005702
Douglas Gregorc12a9c52009-05-19 22:28:02 +00005703 if (getLangOptions().CPlusPlus) {
5704 Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus)
5705 << SourceRange(BuiltinLoc, RPLoc);
5706 return ExprError();
5707 }
5708
Sebastian Redlf53597f2009-03-15 17:47:39 +00005709 return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc,
5710 argT1, argT2, RPLoc));
Steve Naroffd34e9152007-08-01 22:05:33 +00005711}
5712
Sebastian Redlf53597f2009-03-15 17:47:39 +00005713Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
5714 ExprArg cond,
5715 ExprArg expr1, ExprArg expr2,
5716 SourceLocation RPLoc) {
5717 Expr *CondExpr = static_cast<Expr*>(cond.get());
5718 Expr *LHSExpr = static_cast<Expr*>(expr1.get());
5719 Expr *RHSExpr = static_cast<Expr*>(expr2.get());
Mike Stumpeed9cac2009-02-19 03:04:26 +00005720
Steve Naroffd04fdd52007-08-03 21:21:27 +00005721 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
5722
Sebastian Redl28507842009-02-26 14:39:58 +00005723 QualType resType;
Douglas Gregorce940492009-09-25 04:25:58 +00005724 bool ValueDependent = false;
Douglas Gregorc9ecc572009-05-19 22:43:30 +00005725 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl28507842009-02-26 14:39:58 +00005726 resType = Context.DependentTy;
Douglas Gregorce940492009-09-25 04:25:58 +00005727 ValueDependent = true;
Sebastian Redl28507842009-02-26 14:39:58 +00005728 } else {
5729 // The conditional expression is required to be a constant expression.
5730 llvm::APSInt condEval(32);
5731 SourceLocation ExpLoc;
5732 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Sebastian Redlf53597f2009-03-15 17:47:39 +00005733 return ExprError(Diag(ExpLoc,
5734 diag::err_typecheck_choose_expr_requires_constant)
5735 << CondExpr->getSourceRange());
Steve Naroffd04fdd52007-08-03 21:21:27 +00005736
Sebastian Redl28507842009-02-26 14:39:58 +00005737 // If the condition is > zero, then the AST type is the same as the LSHExpr.
5738 resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType();
Douglas Gregorce940492009-09-25 04:25:58 +00005739 ValueDependent = condEval.getZExtValue() ? LHSExpr->isValueDependent()
5740 : RHSExpr->isValueDependent();
Sebastian Redl28507842009-02-26 14:39:58 +00005741 }
5742
Sebastian Redlf53597f2009-03-15 17:47:39 +00005743 cond.release(); expr1.release(); expr2.release();
5744 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
Douglas Gregorce940492009-09-25 04:25:58 +00005745 resType, RPLoc,
5746 resType->isDependentType(),
5747 ValueDependent));
Steve Naroffd04fdd52007-08-03 21:21:27 +00005748}
5749
Steve Naroff4eb206b2008-09-03 18:15:37 +00005750//===----------------------------------------------------------------------===//
5751// Clang Extensions.
5752//===----------------------------------------------------------------------===//
5753
5754/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff090276f2008-10-10 01:28:17 +00005755void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00005756 // Analyze block parameters.
5757 BlockSemaInfo *BSI = new BlockSemaInfo();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005758
Steve Naroff4eb206b2008-09-03 18:15:37 +00005759 // Add BSI to CurBlock.
5760 BSI->PrevBlockInfo = CurBlock;
5761 CurBlock = BSI;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005762
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005763 BSI->ReturnType = QualType();
Steve Naroff4eb206b2008-09-03 18:15:37 +00005764 BSI->TheScope = BlockScope;
Mike Stumpb83d2872009-02-19 22:01:56 +00005765 BSI->hasBlockDeclRefExprs = false;
Daniel Dunbar1d2154c2009-07-29 01:59:17 +00005766 BSI->hasPrototype = false;
Chris Lattner17a78302009-04-19 05:28:12 +00005767 BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking;
5768 CurFunctionNeedsScopeChecking = false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005769
Steve Naroff090276f2008-10-10 01:28:17 +00005770 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc);
Douglas Gregor44b43212008-12-11 16:49:14 +00005771 PushDeclContext(BlockScope, BSI->TheDecl);
Steve Naroff090276f2008-10-10 01:28:17 +00005772}
5773
Mike Stump98eb8a72009-02-04 22:31:32 +00005774void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpaf199f32009-05-07 18:43:07 +00005775 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
Mike Stump98eb8a72009-02-04 22:31:32 +00005776
5777 if (ParamInfo.getNumTypeObjects() == 0
5778 || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) {
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00005779 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Mike Stump98eb8a72009-02-04 22:31:32 +00005780 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5781
Mike Stump4eeab842009-04-28 01:10:27 +00005782 if (T->isArrayType()) {
5783 Diag(ParamInfo.getSourceRange().getBegin(),
5784 diag::err_block_returns_array);
5785 return;
5786 }
5787
Mike Stump98eb8a72009-02-04 22:31:32 +00005788 // The parameter list is optional, if there was none, assume ().
5789 if (!T->isFunctionType())
5790 T = Context.getFunctionType(T, NULL, 0, 0, 0);
5791
5792 CurBlock->hasPrototype = true;
5793 CurBlock->isVariadic = false;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005794 // Check for a valid sentinel attribute on this block.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00005795 if (CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005796 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00005797 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005798 // FIXME: remove the attribute.
5799 }
John McCall183700f2009-09-21 23:43:11 +00005800 QualType RetTy = T.getTypePtr()->getAs<FunctionType>()->getResultType();
Mike Stump1eb44332009-09-09 15:08:12 +00005801
Chris Lattner9097af12009-04-11 19:27:54 +00005802 // Do not allow returning a objc interface by-value.
5803 if (RetTy->isObjCInterfaceType()) {
5804 Diag(ParamInfo.getSourceRange().getBegin(),
5805 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5806 return;
5807 }
Mike Stump98eb8a72009-02-04 22:31:32 +00005808 return;
5809 }
5810
Steve Naroff4eb206b2008-09-03 18:15:37 +00005811 // Analyze arguments to block.
5812 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function &&
5813 "Not a function declarator!");
5814 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005815
Steve Naroff090276f2008-10-10 01:28:17 +00005816 CurBlock->hasPrototype = FTI.hasPrototype;
5817 CurBlock->isVariadic = true;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005818
Steve Naroff4eb206b2008-09-03 18:15:37 +00005819 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
5820 // no arguments, not a function that takes a single void argument.
5821 if (FTI.hasPrototype &&
5822 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattnerb28317a2009-03-28 19:18:32 +00005823 (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&&
5824 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00005825 // empty arg list, don't push any params.
Steve Naroff090276f2008-10-10 01:28:17 +00005826 CurBlock->isVariadic = false;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005827 } else if (FTI.hasPrototype) {
5828 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
Chris Lattnerb28317a2009-03-28 19:18:32 +00005829 CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>());
Steve Naroff090276f2008-10-10 01:28:17 +00005830 CurBlock->isVariadic = FTI.isVariadic;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005831 }
Jay Foadbeaaccd2009-05-21 09:52:38 +00005832 CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(),
Chris Lattner9097af12009-04-11 19:27:54 +00005833 CurBlock->Params.size());
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +00005834 CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic);
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00005835 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Steve Naroff090276f2008-10-10 01:28:17 +00005836 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
5837 E = CurBlock->TheDecl->param_end(); AI != E; ++AI)
5838 // If this has an identifier, add it to the scope stack.
5839 if ((*AI)->getIdentifier())
5840 PushOnScopeChains(*AI, CurBlock->TheScope);
Chris Lattner9097af12009-04-11 19:27:54 +00005841
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005842 // Check for a valid sentinel attribute on this block.
Mike Stump1eb44332009-09-09 15:08:12 +00005843 if (!CurBlock->isVariadic &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00005844 CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005845 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00005846 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005847 // FIXME: remove the attribute.
5848 }
Mike Stump1eb44332009-09-09 15:08:12 +00005849
Chris Lattner9097af12009-04-11 19:27:54 +00005850 // Analyze the return type.
5851 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
John McCall183700f2009-09-21 23:43:11 +00005852 QualType RetTy = T->getAs<FunctionType>()->getResultType();
Mike Stump1eb44332009-09-09 15:08:12 +00005853
Chris Lattner9097af12009-04-11 19:27:54 +00005854 // Do not allow returning a objc interface by-value.
5855 if (RetTy->isObjCInterfaceType()) {
5856 Diag(ParamInfo.getSourceRange().getBegin(),
5857 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5858 } else if (!RetTy->isDependentType())
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005859 CurBlock->ReturnType = RetTy;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005860}
5861
5862/// ActOnBlockError - If there is an error parsing a block, this callback
5863/// is invoked to pop the information about the block from the action impl.
5864void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
5865 // Ensure that CurBlock is deleted.
5866 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005867
Chris Lattner17a78302009-04-19 05:28:12 +00005868 CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking;
5869
Steve Naroff4eb206b2008-09-03 18:15:37 +00005870 // Pop off CurBlock, handle nested blocks.
Chris Lattner5c59e2b2009-04-21 22:38:46 +00005871 PopDeclContext();
Steve Naroff4eb206b2008-09-03 18:15:37 +00005872 CurBlock = CurBlock->PrevBlockInfo;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005873 // FIXME: Delete the ParmVarDecl objects as well???
Steve Naroff4eb206b2008-09-03 18:15:37 +00005874}
5875
5876/// ActOnBlockStmtExpr - This is called when the body of a block statement
5877/// literal was successfully completed. ^(int x){...}
Sebastian Redlf53597f2009-03-15 17:47:39 +00005878Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
5879 StmtArg body, Scope *CurScope) {
Chris Lattner9af55002009-03-27 04:18:06 +00005880 // If blocks are disabled, emit an error.
5881 if (!LangOpts.Blocks)
5882 Diag(CaretLoc, diag::err_blocks_disable);
Mike Stump1eb44332009-09-09 15:08:12 +00005883
Steve Naroff4eb206b2008-09-03 18:15:37 +00005884 // Ensure that CurBlock is deleted.
5885 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock);
Steve Naroff4eb206b2008-09-03 18:15:37 +00005886
Steve Naroff090276f2008-10-10 01:28:17 +00005887 PopDeclContext();
5888
Steve Naroff4eb206b2008-09-03 18:15:37 +00005889 // Pop off CurBlock, handle nested blocks.
5890 CurBlock = CurBlock->PrevBlockInfo;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005891
Steve Naroff4eb206b2008-09-03 18:15:37 +00005892 QualType RetTy = Context.VoidTy;
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005893 if (!BSI->ReturnType.isNull())
5894 RetTy = BSI->ReturnType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005895
Steve Naroff4eb206b2008-09-03 18:15:37 +00005896 llvm::SmallVector<QualType, 8> ArgTypes;
5897 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i)
5898 ArgTypes.push_back(BSI->Params[i]->getType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00005899
Mike Stump56925862009-07-28 22:04:01 +00005900 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00005901 QualType BlockTy;
5902 if (!BSI->hasPrototype)
Mike Stump56925862009-07-28 22:04:01 +00005903 BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0,
5904 NoReturn);
Steve Naroff4eb206b2008-09-03 18:15:37 +00005905 else
Jay Foadbeaaccd2009-05-21 09:52:38 +00005906 BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(),
Mike Stump56925862009-07-28 22:04:01 +00005907 BSI->isVariadic, 0, false, false, 0, 0,
5908 NoReturn);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005909
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005910 // FIXME: Check that return/parameter types are complete/non-abstract
Douglas Gregore0762c92009-06-19 23:52:42 +00005911 DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end());
Steve Naroff4eb206b2008-09-03 18:15:37 +00005912 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005913
Chris Lattner17a78302009-04-19 05:28:12 +00005914 // If needed, diagnose invalid gotos and switches in the block.
5915 if (CurFunctionNeedsScopeChecking)
5916 DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get()));
5917 CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking;
Mike Stump1eb44332009-09-09 15:08:12 +00005918
Anders Carlssone9146f22009-05-01 19:49:17 +00005919 BSI->TheDecl->setBody(body.takeAs<CompoundStmt>());
Mike Stump56925862009-07-28 22:04:01 +00005920 CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody());
Sebastian Redlf53597f2009-03-15 17:47:39 +00005921 return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy,
5922 BSI->hasBlockDeclRefExprs));
Steve Naroff4eb206b2008-09-03 18:15:37 +00005923}
5924
Sebastian Redlf53597f2009-03-15 17:47:39 +00005925Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
5926 ExprArg expr, TypeTy *type,
5927 SourceLocation RPLoc) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00005928 QualType T = GetTypeFromParser(type);
Chris Lattner0d20b8a2009-04-05 15:49:53 +00005929 Expr *E = static_cast<Expr*>(expr.get());
5930 Expr *OrigExpr = E;
Mike Stump1eb44332009-09-09 15:08:12 +00005931
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005932 InitBuiltinVaListType();
Eli Friedmanc34bcde2008-08-09 23:32:40 +00005933
5934 // Get the va_list type
5935 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedman5c091ba2009-05-16 12:46:54 +00005936 if (VaListType->isArrayType()) {
5937 // Deal with implicit array decay; for example, on x86-64,
5938 // va_list is an array, but it's supposed to decay to
5939 // a pointer for va_arg.
Eli Friedmanc34bcde2008-08-09 23:32:40 +00005940 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedman5c091ba2009-05-16 12:46:54 +00005941 // Make sure the input expression also decays appropriately.
5942 UsualUnaryConversions(E);
5943 } else {
5944 // Otherwise, the va_list argument must be an l-value because
5945 // it is modified by va_arg.
Mike Stump1eb44332009-09-09 15:08:12 +00005946 if (!E->isTypeDependent() &&
Douglas Gregordd027302009-05-19 23:10:31 +00005947 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedman5c091ba2009-05-16 12:46:54 +00005948 return ExprError();
5949 }
Eli Friedmanc34bcde2008-08-09 23:32:40 +00005950
Douglas Gregordd027302009-05-19 23:10:31 +00005951 if (!E->isTypeDependent() &&
5952 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redlf53597f2009-03-15 17:47:39 +00005953 return ExprError(Diag(E->getLocStart(),
5954 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattner0d20b8a2009-04-05 15:49:53 +00005955 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner9dc8f192009-04-05 00:59:53 +00005956 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005957
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005958 // FIXME: Check that type is complete/non-abstract
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005959 // FIXME: Warn if a non-POD type is passed in.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005960
Sebastian Redlf53597f2009-03-15 17:47:39 +00005961 expr.release();
5962 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(),
5963 RPLoc));
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005964}
5965
Sebastian Redlf53597f2009-03-15 17:47:39 +00005966Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregor2d8b2732008-11-29 04:51:27 +00005967 // The type of __null will be int or long, depending on the size of
5968 // pointers on the target.
5969 QualType Ty;
5970 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth())
5971 Ty = Context.IntTy;
5972 else
5973 Ty = Context.LongTy;
5974
Sebastian Redlf53597f2009-03-15 17:47:39 +00005975 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregor2d8b2732008-11-29 04:51:27 +00005976}
5977
Chris Lattner5cf216b2008-01-04 18:04:52 +00005978bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
5979 SourceLocation Loc,
5980 QualType DstType, QualType SrcType,
5981 Expr *SrcExpr, const char *Flavor) {
5982 // Decode the result (notice that AST's are still created for extensions).
5983 bool isInvalid = false;
5984 unsigned DiagKind;
5985 switch (ConvTy) {
5986 default: assert(0 && "Unknown conversion type");
5987 case Compatible: return false;
Chris Lattnerb7b61152008-01-04 18:22:42 +00005988 case PointerToInt:
Chris Lattner5cf216b2008-01-04 18:04:52 +00005989 DiagKind = diag::ext_typecheck_convert_pointer_int;
5990 break;
Chris Lattnerb7b61152008-01-04 18:22:42 +00005991 case IntToPointer:
5992 DiagKind = diag::ext_typecheck_convert_int_pointer;
5993 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005994 case IncompatiblePointer:
5995 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
5996 break;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00005997 case IncompatiblePointerSign:
5998 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
5999 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00006000 case FunctionVoidPointer:
6001 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
6002 break;
6003 case CompatiblePointerDiscardsQualifiers:
Douglas Gregor77a52232008-09-12 00:47:35 +00006004 // If the qualifiers lost were because we were applying the
6005 // (deprecated) C++ conversion from a string literal to a char*
6006 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
6007 // Ideally, this check would be performed in
6008 // CheckPointerTypesForAssignment. However, that would require a
6009 // bit of refactoring (so that the second argument is an
6010 // expression, rather than a type), which should be done as part
6011 // of a larger effort to fix CheckPointerTypesForAssignment for
6012 // C++ semantics.
6013 if (getLangOptions().CPlusPlus &&
6014 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
6015 return false;
Chris Lattner5cf216b2008-01-04 18:04:52 +00006016 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
6017 break;
Steve Naroff1c7d0672008-09-04 15:10:53 +00006018 case IntToBlockPointer:
6019 DiagKind = diag::err_int_to_block_pointer;
6020 break;
6021 case IncompatibleBlockPointer:
Mike Stump25efa102009-04-21 22:51:42 +00006022 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00006023 break;
Steve Naroff39579072008-10-14 22:18:38 +00006024 case IncompatibleObjCQualifiedId:
Mike Stumpeed9cac2009-02-19 03:04:26 +00006025 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff39579072008-10-14 22:18:38 +00006026 // it can give a more specific diagnostic.
6027 DiagKind = diag::warn_incompatible_qualified_id;
6028 break;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00006029 case IncompatibleVectors:
6030 DiagKind = diag::warn_incompatible_vectors;
6031 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00006032 case Incompatible:
6033 DiagKind = diag::err_typecheck_convert_incompatible;
6034 isInvalid = true;
6035 break;
6036 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006037
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006038 Diag(Loc, DiagKind) << DstType << SrcType << Flavor
6039 << SrcExpr->getSourceRange();
Chris Lattner5cf216b2008-01-04 18:04:52 +00006040 return isInvalid;
6041}
Anders Carlssone21555e2008-11-30 19:50:32 +00006042
Chris Lattner3bf68932009-04-25 21:59:05 +00006043bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){
Eli Friedman3b5ccca2009-04-25 22:26:58 +00006044 llvm::APSInt ICEResult;
6045 if (E->isIntegerConstantExpr(ICEResult, Context)) {
6046 if (Result)
6047 *Result = ICEResult;
6048 return false;
6049 }
6050
Anders Carlssone21555e2008-11-30 19:50:32 +00006051 Expr::EvalResult EvalResult;
6052
Mike Stumpeed9cac2009-02-19 03:04:26 +00006053 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
Anders Carlssone21555e2008-11-30 19:50:32 +00006054 EvalResult.HasSideEffects) {
6055 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
6056
6057 if (EvalResult.Diag) {
6058 // We only show the note if it's not the usual "invalid subexpression"
6059 // or if it's actually in a subexpression.
6060 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
6061 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
6062 Diag(EvalResult.DiagLoc, EvalResult.Diag);
6063 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006064
Anders Carlssone21555e2008-11-30 19:50:32 +00006065 return true;
6066 }
6067
Eli Friedman3b5ccca2009-04-25 22:26:58 +00006068 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
6069 E->getSourceRange();
Anders Carlssone21555e2008-11-30 19:50:32 +00006070
Eli Friedman3b5ccca2009-04-25 22:26:58 +00006071 if (EvalResult.Diag &&
6072 Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored)
6073 Diag(EvalResult.DiagLoc, EvalResult.Diag);
Mike Stumpeed9cac2009-02-19 03:04:26 +00006074
Anders Carlssone21555e2008-11-30 19:50:32 +00006075 if (Result)
6076 *Result = EvalResult.Val.getInt();
6077 return false;
6078}
Douglas Gregore0762c92009-06-19 23:52:42 +00006079
Mike Stump1eb44332009-09-09 15:08:12 +00006080Sema::ExpressionEvaluationContext
6081Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) {
Douglas Gregorac7610d2009-06-22 20:57:11 +00006082 // Introduce a new set of potentially referenced declarations to the stack.
6083 if (NewContext == PotentiallyPotentiallyEvaluated)
6084 PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls());
Mike Stump1eb44332009-09-09 15:08:12 +00006085
Douglas Gregorac7610d2009-06-22 20:57:11 +00006086 std::swap(ExprEvalContext, NewContext);
6087 return NewContext;
6088}
6089
Mike Stump1eb44332009-09-09 15:08:12 +00006090void
Douglas Gregorac7610d2009-06-22 20:57:11 +00006091Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext,
6092 ExpressionEvaluationContext NewContext) {
6093 ExprEvalContext = NewContext;
6094
6095 if (OldContext == PotentiallyPotentiallyEvaluated) {
6096 // Mark any remaining declarations in the current position of the stack
6097 // as "referenced". If they were not meant to be referenced, semantic
6098 // analysis would have eliminated them (e.g., in ActOnCXXTypeId).
6099 PotentiallyReferencedDecls RemainingDecls;
6100 RemainingDecls.swap(PotentiallyReferencedDeclStack.back());
6101 PotentiallyReferencedDeclStack.pop_back();
Mike Stump1eb44332009-09-09 15:08:12 +00006102
Douglas Gregorac7610d2009-06-22 20:57:11 +00006103 for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(),
6104 IEnd = RemainingDecls.end();
6105 I != IEnd; ++I)
6106 MarkDeclarationReferenced(I->first, I->second);
6107 }
6108}
Douglas Gregore0762c92009-06-19 23:52:42 +00006109
6110/// \brief Note that the given declaration was referenced in the source code.
6111///
6112/// This routine should be invoke whenever a given declaration is referenced
6113/// in the source code, and where that reference occurred. If this declaration
6114/// reference means that the the declaration is used (C++ [basic.def.odr]p2,
6115/// C99 6.9p3), then the declaration will be marked as used.
6116///
6117/// \param Loc the location where the declaration was referenced.
6118///
6119/// \param D the declaration that has been referenced by the source code.
6120void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) {
6121 assert(D && "No declaration?");
Mike Stump1eb44332009-09-09 15:08:12 +00006122
Douglas Gregord7f37bf2009-06-22 23:06:13 +00006123 if (D->isUsed())
6124 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006125
Douglas Gregore0762c92009-06-19 23:52:42 +00006126 // Mark a parameter declaration "used", regardless of whether we're in a
6127 // template or not.
6128 if (isa<ParmVarDecl>(D))
6129 D->setUsed(true);
Mike Stump1eb44332009-09-09 15:08:12 +00006130
Douglas Gregore0762c92009-06-19 23:52:42 +00006131 // Do not mark anything as "used" within a dependent context; wait for
6132 // an instantiation.
6133 if (CurContext->isDependentContext())
6134 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006135
Douglas Gregorac7610d2009-06-22 20:57:11 +00006136 switch (ExprEvalContext) {
6137 case Unevaluated:
6138 // We are in an expression that is not potentially evaluated; do nothing.
6139 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006140
Douglas Gregorac7610d2009-06-22 20:57:11 +00006141 case PotentiallyEvaluated:
6142 // We are in a potentially-evaluated expression, so this declaration is
6143 // "used"; handle this below.
6144 break;
Mike Stump1eb44332009-09-09 15:08:12 +00006145
Douglas Gregorac7610d2009-06-22 20:57:11 +00006146 case PotentiallyPotentiallyEvaluated:
6147 // We are in an expression that may be potentially evaluated; queue this
6148 // declaration reference until we know whether the expression is
6149 // potentially evaluated.
6150 PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D));
6151 return;
6152 }
Mike Stump1eb44332009-09-09 15:08:12 +00006153
Douglas Gregore0762c92009-06-19 23:52:42 +00006154 // Note that this declaration has been used.
Fariborz Jahanianb7f4cc02009-06-22 17:30:33 +00006155 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00006156 unsigned TypeQuals;
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00006157 if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) {
6158 if (!Constructor->isUsed())
6159 DefineImplicitDefaultConstructor(Loc, Constructor);
Mike Stump1eb44332009-09-09 15:08:12 +00006160 } else if (Constructor->isImplicit() &&
Mike Stumpac5fc7c2009-08-04 21:02:39 +00006161 Constructor->isCopyConstructor(Context, TypeQuals)) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00006162 if (!Constructor->isUsed())
6163 DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals);
6164 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006165 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
6166 if (Destructor->isImplicit() && !Destructor->isUsed())
6167 DefineImplicitDestructor(Loc, Destructor);
Mike Stump1eb44332009-09-09 15:08:12 +00006168
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00006169 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) {
6170 if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
6171 MethodDecl->getOverloadedOperator() == OO_Equal) {
6172 if (!MethodDecl->isUsed())
6173 DefineImplicitOverloadedAssign(Loc, MethodDecl);
6174 }
6175 }
Fariborz Jahanianf5ed9e02009-06-24 22:09:44 +00006176 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006177 // Implicit instantiation of function templates and member functions of
Douglas Gregor1637be72009-06-26 00:10:03 +00006178 // class templates.
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00006179 if (!Function->getBody()) {
Douglas Gregor1637be72009-06-26 00:10:03 +00006180 // FIXME: distinguish between implicit instantiations of function
6181 // templates and explicit specializations (the latter don't get
6182 // instantiated, naturally).
6183 if (Function->getInstantiatedFromMemberFunction() ||
6184 Function->getPrimaryTemplate())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00006185 PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00006186 }
Mike Stump1eb44332009-09-09 15:08:12 +00006187
6188
Douglas Gregore0762c92009-06-19 23:52:42 +00006189 // FIXME: keep track of references to static functions
Douglas Gregore0762c92009-06-19 23:52:42 +00006190 Function->setUsed(true);
6191 return;
Douglas Gregord7f37bf2009-06-22 23:06:13 +00006192 }
Mike Stump1eb44332009-09-09 15:08:12 +00006193
Douglas Gregore0762c92009-06-19 23:52:42 +00006194 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00006195 // Implicit instantiation of static data members of class templates.
6196 // FIXME: distinguish between implicit instantiations (which we need to
6197 // actually instantiate) and explicit specializations.
Douglas Gregor52604ab2009-09-11 21:19:12 +00006198 // FIXME: extern templates
Mike Stump1eb44332009-09-09 15:08:12 +00006199 if (Var->isStaticDataMember() &&
Douglas Gregor7caa6822009-07-24 20:34:43 +00006200 Var->getInstantiatedFromStaticDataMember())
6201 PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc));
Mike Stump1eb44332009-09-09 15:08:12 +00006202
Douglas Gregore0762c92009-06-19 23:52:42 +00006203 // FIXME: keep track of references to static data?
Douglas Gregor7caa6822009-07-24 20:34:43 +00006204
Douglas Gregore0762c92009-06-19 23:52:42 +00006205 D->setUsed(true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00006206 return;
Sam Weinigcce6ebc2009-09-11 03:29:30 +00006207 }
Douglas Gregore0762c92009-06-19 23:52:42 +00006208}