blob: 4b3f40aa937cf71448e6e0de884aae5b3205a6d2 [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"
Chris Lattner04421082008-04-08 04:40:51 +000017#include "clang/AST/ExprCXX.h"
Steve Narofff494b572008-05-29 21:12:08 +000018#include "clang/AST/ExprObjC.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000019#include "clang/AST/DeclTemplate.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/Lex/Preprocessor.h"
21#include "clang/Lex/LiteralSupport.h"
22#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023#include "clang/Basic/TargetInfo.h"
Steve Naroff4eb206b2008-09-03 18:15:37 +000024#include "clang/Parse/DeclSpec.h"
Chris Lattner418f6c72008-10-26 23:43:26 +000025#include "clang/Parse/Designator.h"
Steve Naroff4eb206b2008-09-03 18:15:37 +000026#include "clang/Parse/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000027using namespace clang;
28
Douglas Gregor48f3bb92009-02-18 21:56:37 +000029/// \brief Determine whether the use of this declaration is valid, and
30/// emit any corresponding diagnostics.
31///
32/// This routine diagnoses various problems with referencing
33/// declarations that can occur when using a declaration. For example,
34/// it might warn if a deprecated or unavailable declaration is being
35/// used, or produce an error (and return true) if a C++0x deleted
36/// function is being used.
37///
38/// \returns true if there was an error (this declaration cannot be
39/// referenced), false otherwise.
40bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) {
Chris Lattner76a642f2009-02-15 22:43:40 +000041 // See if the decl is deprecated.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000042 if (D->getAttr<DeprecatedAttr>()) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +000043 // Implementing deprecated stuff requires referencing deprecated
44 // stuff. Don't warn if we are implementing a deprecated
45 // construct.
Chris Lattnerf15970c2009-02-16 19:35:30 +000046 bool isSilenced = false;
47
48 if (NamedDecl *ND = getCurFunctionOrMethodDecl()) {
49 // If this reference happens *in* a deprecated function or method, don't
50 // warn.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000051 isSilenced = ND->getAttr<DeprecatedAttr>();
Chris Lattnerf15970c2009-02-16 19:35:30 +000052
53 // If this is an Objective-C method implementation, check to see if the
54 // method was deprecated on the declaration, not the definition.
55 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) {
56 // The semantic decl context of a ObjCMethodDecl is the
57 // ObjCImplementationDecl.
58 if (ObjCImplementationDecl *Impl
59 = dyn_cast<ObjCImplementationDecl>(MD->getParent())) {
60
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000061 MD = Impl->getClassInterface()->getMethod(MD->getSelector(),
Chris Lattnerf15970c2009-02-16 19:35:30 +000062 MD->isInstanceMethod());
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000063 isSilenced |= MD && MD->getAttr<DeprecatedAttr>();
Chris Lattnerf15970c2009-02-16 19:35:30 +000064 }
65 }
66 }
67
68 if (!isSilenced)
Chris Lattner76a642f2009-02-15 22:43:40 +000069 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
70 }
71
Douglas Gregor48f3bb92009-02-18 21:56:37 +000072 // See if this is a deleted function.
Douglas Gregor25d944a2009-02-24 04:26:15 +000073 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +000074 if (FD->isDeleted()) {
75 Diag(Loc, diag::err_deleted_function_use);
76 Diag(D->getLocation(), diag::note_unavailable_here) << true;
77 return true;
78 }
Douglas Gregor25d944a2009-02-24 04:26:15 +000079 }
Douglas Gregor48f3bb92009-02-18 21:56:37 +000080
81 // See if the decl is unavailable
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000082 if (D->getAttr<UnavailableAttr>()) {
Chris Lattner76a642f2009-02-15 22:43:40 +000083 Diag(Loc, diag::warn_unavailable) << D->getDeclName();
Douglas Gregor48f3bb92009-02-18 21:56:37 +000084 Diag(D->getLocation(), diag::note_unavailable_here) << 0;
85 }
86
Douglas Gregor48f3bb92009-02-18 21:56:37 +000087 return false;
Chris Lattner76a642f2009-02-15 22:43:40 +000088}
89
Fariborz Jahanian5b530052009-05-13 18:09:35 +000090/// DiagnoseSentinelCalls - This routine checks on method dispatch calls
91/// (and other functions in future), which have been declared with sentinel
92/// attribute. It warns if call does not have the sentinel argument.
93///
94void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
95 Expr **Args, unsigned NumArgs)
96{
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000097 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +000098 if (!attr)
99 return;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000100 int sentinelPos = attr->getSentinel();
101 int nullPos = attr->getNullPos();
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000102
Mike Stump390b4cc2009-05-16 07:39:55 +0000103 // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common
104 // base class. Then we won't be needing two versions of the same code.
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000105 unsigned int i = 0;
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000106 bool warnNotEnoughArgs = false;
107 int isMethod = 0;
108 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
109 // skip over named parameters.
110 ObjCMethodDecl::param_iterator P, E = MD->param_end();
111 for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) {
112 if (nullPos)
113 --nullPos;
114 else
115 ++i;
116 }
117 warnNotEnoughArgs = (P != E || i >= NumArgs);
118 isMethod = 1;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000119 }
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000120 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
121 // 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);
130 }
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000131 else if (VarDecl *V = dyn_cast<VarDecl>(D)) {
132 // block or function pointer call.
133 QualType Ty = V->getType();
134 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
135 const FunctionType *FT = Ty->isFunctionPointerType()
136 ? Ty->getAsPointerType()->getPointeeType()->getAsFunctionType()
137 : Ty->getAsBlockPointerType()->getPointeeType()->getAsFunctionType();
138 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) {
139 unsigned NumArgsInProto = Proto->getNumArgs();
140 unsigned k;
141 for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) {
142 if (nullPos)
143 --nullPos;
144 else
145 ++i;
146 }
147 warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs);
148 }
149 if (Ty->isBlockPointerType())
150 isMethod = 2;
151 }
152 else
153 return;
154 }
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000155 else
156 return;
157
158 if (warnNotEnoughArgs) {
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000159 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000160 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000161 return;
162 }
163 int sentinel = i;
164 while (sentinelPos > 0 && i < NumArgs-1) {
165 --sentinelPos;
166 ++i;
167 }
168 if (sentinelPos > 0) {
169 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000170 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000171 return;
172 }
173 while (i < NumArgs-1) {
174 ++i;
175 ++sentinel;
176 }
177 Expr *sentinelExpr = Args[sentinel];
178 if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() ||
179 !sentinelExpr->isNullPointerConstant(Context))) {
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000180 Diag(Loc, diag::warn_missing_sentinel) << isMethod;
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000181 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000182 }
183 return;
Fariborz Jahanian5b530052009-05-13 18:09:35 +0000184}
185
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000186SourceRange Sema::getExprRange(ExprTy *E) const {
187 Expr *Ex = (Expr *)E;
188 return Ex? Ex->getSourceRange() : SourceRange();
189}
190
Chris Lattnere7a2e912008-07-25 21:10:04 +0000191//===----------------------------------------------------------------------===//
192// Standard Promotions and Conversions
193//===----------------------------------------------------------------------===//
194
Chris Lattnere7a2e912008-07-25 21:10:04 +0000195/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
196void Sema::DefaultFunctionArrayConversion(Expr *&E) {
197 QualType Ty = E->getType();
198 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
199
Chris Lattnere7a2e912008-07-25 21:10:04 +0000200 if (Ty->isFunctionType())
201 ImpCastExprToType(E, Context.getPointerType(Ty));
Chris Lattner67d33d82008-07-25 21:33:13 +0000202 else if (Ty->isArrayType()) {
203 // In C90 mode, arrays only promote to pointers if the array expression is
204 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
205 // type 'array of type' is converted to an expression that has type 'pointer
206 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
207 // that has type 'array of type' ...". The relevant change is "an lvalue"
208 // (C90) to "an expression" (C99).
Argyrios Kyrtzidisc39a3d72008-09-11 04:25:59 +0000209 //
210 // C++ 4.2p1:
211 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
212 // T" can be converted to an rvalue of type "pointer to T".
213 //
214 if (getLangOptions().C99 || getLangOptions().CPlusPlus ||
215 E->isLvalue(Context) == Expr::LV_Valid)
Chris Lattner67d33d82008-07-25 21:33:13 +0000216 ImpCastExprToType(E, Context.getArrayDecayedType(Ty));
217 }
Chris Lattnere7a2e912008-07-25 21:10:04 +0000218}
219
Douglas Gregorfc24e442009-05-01 20:41:21 +0000220/// \brief Whether this is a promotable bitfield reference according
221/// to C99 6.3.1.1p2, bullet 2.
222///
223/// \returns the type this bit-field will promote to, or NULL if no
224/// promotion occurs.
225static QualType isPromotableBitField(Expr *E, ASTContext &Context) {
Douglas Gregor33bbbc52009-05-02 02:18:30 +0000226 FieldDecl *Field = E->getBitField();
227 if (!Field)
Douglas Gregorfc24e442009-05-01 20:41:21 +0000228 return QualType();
229
230 const BuiltinType *BT = Field->getType()->getAsBuiltinType();
231 if (!BT)
232 return QualType();
233
234 if (BT->getKind() != BuiltinType::Bool &&
235 BT->getKind() != BuiltinType::Int &&
236 BT->getKind() != BuiltinType::UInt)
237 return QualType();
238
239 llvm::APSInt BitWidthAP;
240 if (!Field->getBitWidth()->isIntegerConstantExpr(BitWidthAP, Context))
241 return QualType();
242
243 uint64_t BitWidth = BitWidthAP.getZExtValue();
244 uint64_t IntSize = Context.getTypeSize(Context.IntTy);
245 if (BitWidth < IntSize ||
246 (Field->getType()->isSignedIntegerType() && BitWidth == IntSize))
247 return Context.IntTy;
248
249 if (BitWidth == IntSize && Field->getType()->isUnsignedIntegerType())
250 return Context.UnsignedIntTy;
251
252 return QualType();
253}
254
Chris Lattnere7a2e912008-07-25 21:10:04 +0000255/// UsualUnaryConversions - Performs various conversions that are common to most
256/// operators (C99 6.3). The conversions of array and function types are
257/// sometimes surpressed. For example, the array->pointer conversion doesn't
258/// apply if the array is an argument to the sizeof or address (&) operators.
259/// In these instances, this routine should *not* be called.
260Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
261 QualType Ty = Expr->getType();
262 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
263
Douglas Gregorfc24e442009-05-01 20:41:21 +0000264 // C99 6.3.1.1p2:
265 //
266 // The following may be used in an expression wherever an int or
267 // unsigned int may be used:
268 // - an object or expression with an integer type whose integer
269 // conversion rank is less than or equal to the rank of int
270 // and unsigned int.
271 // - A bit-field of type _Bool, int, signed int, or unsigned int.
272 //
273 // If an int can represent all values of the original type, the
274 // value is converted to an int; otherwise, it is converted to an
275 // unsigned int. These are called the integer promotions. All
276 // other types are unchanged by the integer promotions.
277 if (Ty->isPromotableIntegerType()) {
Chris Lattnere7a2e912008-07-25 21:10:04 +0000278 ImpCastExprToType(Expr, Context.IntTy);
Douglas Gregorfc24e442009-05-01 20:41:21 +0000279 return Expr;
280 } else {
281 QualType T = isPromotableBitField(Expr, Context);
282 if (!T.isNull()) {
283 ImpCastExprToType(Expr, T);
284 return Expr;
285 }
286 }
287
288 DefaultFunctionArrayConversion(Expr);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000289 return Expr;
290}
291
Chris Lattner05faf172008-07-25 22:25:12 +0000292/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
293/// do not have a prototype. Arguments that have type float are promoted to
294/// double. All other argument types are converted by UsualUnaryConversions().
295void Sema::DefaultArgumentPromotion(Expr *&Expr) {
296 QualType Ty = Expr->getType();
297 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
298
299 // If this is a 'float' (CVR qualified or typedef) promote to double.
300 if (const BuiltinType *BT = Ty->getAsBuiltinType())
301 if (BT->getKind() == BuiltinType::Float)
302 return ImpCastExprToType(Expr, Context.DoubleTy);
303
304 UsualUnaryConversions(Expr);
305}
306
Chris Lattner312531a2009-04-12 08:11:20 +0000307/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
308/// will warn if the resulting type is not a POD type, and rejects ObjC
309/// interfaces passed by value. This returns true if the argument type is
310/// completely illegal.
311bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) {
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000312 DefaultArgumentPromotion(Expr);
313
Chris Lattner312531a2009-04-12 08:11:20 +0000314 if (Expr->getType()->isObjCInterfaceType()) {
315 Diag(Expr->getLocStart(),
316 diag::err_cannot_pass_objc_interface_to_vararg)
317 << Expr->getType() << CT;
318 return true;
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000319 }
Chris Lattner312531a2009-04-12 08:11:20 +0000320
321 if (!Expr->getType()->isPODType())
322 Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg)
323 << Expr->getType() << CT;
324
325 return false;
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000326}
327
328
Chris Lattnere7a2e912008-07-25 21:10:04 +0000329/// UsualArithmeticConversions - Performs various conversions that are common to
330/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
331/// routine returns the first non-arithmetic type found. The client is
332/// responsible for emitting appropriate error diagnostics.
333/// FIXME: verify the conversion rules for "complex int" are consistent with
334/// GCC.
335QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
336 bool isCompAssign) {
Eli Friedmanab3a8522009-03-28 01:22:36 +0000337 if (!isCompAssign)
Chris Lattnere7a2e912008-07-25 21:10:04 +0000338 UsualUnaryConversions(lhsExpr);
Eli Friedmanab3a8522009-03-28 01:22:36 +0000339
340 UsualUnaryConversions(rhsExpr);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000341
Chris Lattnere7a2e912008-07-25 21:10:04 +0000342 // For conversion purposes, we ignore any qualifiers.
343 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000344 QualType lhs =
345 Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType();
346 QualType rhs =
347 Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000348
349 // If both types are identical, no conversion is needed.
350 if (lhs == rhs)
351 return lhs;
352
353 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
354 // The caller can deal with this (e.g. pointer + int).
355 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
356 return lhs;
357
Douglas Gregor2d833e32009-05-02 00:36:19 +0000358 // Perform bitfield promotions.
359 QualType LHSBitfieldPromoteTy = isPromotableBitField(lhsExpr, Context);
360 if (!LHSBitfieldPromoteTy.isNull())
361 lhs = LHSBitfieldPromoteTy;
362 QualType RHSBitfieldPromoteTy = isPromotableBitField(rhsExpr, Context);
363 if (!RHSBitfieldPromoteTy.isNull())
364 rhs = RHSBitfieldPromoteTy;
365
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000366 QualType destType = UsualArithmeticConversionsType(lhs, rhs);
Eli Friedmanab3a8522009-03-28 01:22:36 +0000367 if (!isCompAssign)
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000368 ImpCastExprToType(lhsExpr, destType);
Eli Friedmanab3a8522009-03-28 01:22:36 +0000369 ImpCastExprToType(rhsExpr, destType);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000370 return destType;
371}
372
373QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) {
374 // Perform the usual unary conversions. We do this early so that
375 // integral promotions to "int" can allow us to exit early, in the
376 // lhs == rhs check. Also, for conversion purposes, we ignore any
377 // qualifiers. For example, "const float" and "float" are
378 // equivalent.
Chris Lattner76a642f2009-02-15 22:43:40 +0000379 if (lhs->isPromotableIntegerType())
380 lhs = Context.IntTy;
381 else
382 lhs = lhs.getUnqualifiedType();
383 if (rhs->isPromotableIntegerType())
384 rhs = Context.IntTy;
385 else
386 rhs = rhs.getUnqualifiedType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000387
Chris Lattnere7a2e912008-07-25 21:10:04 +0000388 // If both types are identical, no conversion is needed.
389 if (lhs == rhs)
390 return lhs;
391
392 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
393 // The caller can deal with this (e.g. pointer + int).
394 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
395 return lhs;
396
397 // At this point, we have two different arithmetic types.
398
399 // Handle complex types first (C99 6.3.1.8p1).
400 if (lhs->isComplexType() || rhs->isComplexType()) {
401 // if we have an integer operand, the result is the complex type.
402 if (rhs->isIntegerType() || rhs->isComplexIntegerType()) {
403 // convert the rhs to the lhs complex type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000404 return lhs;
405 }
406 if (lhs->isIntegerType() || lhs->isComplexIntegerType()) {
407 // convert the lhs to the rhs complex type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000408 return rhs;
409 }
410 // This handles complex/complex, complex/float, or float/complex.
411 // When both operands are complex, the shorter operand is converted to the
412 // type of the longer, and that is the type of the result. This corresponds
413 // to what is done when combining two real floating-point operands.
414 // The fun begins when size promotion occur across type domains.
415 // From H&S 6.3.4: When one operand is complex and the other is a real
416 // floating-point type, the less precise type is converted, within it's
417 // real or complex domain, to the precision of the other type. For example,
418 // when combining a "long double" with a "double _Complex", the
419 // "double _Complex" is promoted to "long double _Complex".
420 int result = Context.getFloatingTypeOrder(lhs, rhs);
421
422 if (result > 0) { // The left side is bigger, convert rhs.
423 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000424 } else if (result < 0) { // The right side is bigger, convert lhs.
425 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000426 }
427 // At this point, lhs and rhs have the same rank/size. Now, make sure the
428 // domains match. This is a requirement for our implementation, C99
429 // does not require this promotion.
430 if (lhs != rhs) { // Domains don't match, we have complex/float mix.
431 if (lhs->isRealFloatingType()) { // handle "double, _Complex double".
Chris Lattnere7a2e912008-07-25 21:10:04 +0000432 return rhs;
433 } else { // handle "_Complex double, double".
Chris Lattnere7a2e912008-07-25 21:10:04 +0000434 return lhs;
435 }
436 }
437 return lhs; // The domain/size match exactly.
438 }
439 // Now handle "real" floating types (i.e. float, double, long double).
440 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) {
441 // if we have an integer operand, the result is the real floating type.
Anders Carlsson5b1f3f02008-12-10 23:30:05 +0000442 if (rhs->isIntegerType()) {
Chris Lattnere7a2e912008-07-25 21:10:04 +0000443 // convert rhs to the lhs floating point type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000444 return lhs;
445 }
Anders Carlsson5b1f3f02008-12-10 23:30:05 +0000446 if (rhs->isComplexIntegerType()) {
447 // convert rhs to the complex floating point type.
448 return Context.getComplexType(lhs);
449 }
450 if (lhs->isIntegerType()) {
Chris Lattnere7a2e912008-07-25 21:10:04 +0000451 // convert lhs to the rhs floating point type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000452 return rhs;
453 }
Anders Carlsson5b1f3f02008-12-10 23:30:05 +0000454 if (lhs->isComplexIntegerType()) {
455 // convert lhs to the complex floating point type.
456 return Context.getComplexType(rhs);
457 }
Chris Lattnere7a2e912008-07-25 21:10:04 +0000458 // We have two real floating types, float/complex combos were handled above.
459 // Convert the smaller operand to the bigger result.
460 int result = Context.getFloatingTypeOrder(lhs, rhs);
Chris Lattner76a642f2009-02-15 22:43:40 +0000461 if (result > 0) // convert the rhs
Chris Lattnere7a2e912008-07-25 21:10:04 +0000462 return lhs;
Chris Lattner76a642f2009-02-15 22:43:40 +0000463 assert(result < 0 && "illegal float comparison");
464 return rhs; // convert the lhs
Chris Lattnere7a2e912008-07-25 21:10:04 +0000465 }
466 if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) {
467 // Handle GCC complex int extension.
468 const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType();
469 const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType();
470
471 if (lhsComplexInt && rhsComplexInt) {
472 if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(),
Chris Lattner76a642f2009-02-15 22:43:40 +0000473 rhsComplexInt->getElementType()) >= 0)
474 return lhs; // convert the rhs
Chris Lattnere7a2e912008-07-25 21:10:04 +0000475 return rhs;
476 } else if (lhsComplexInt && rhs->isIntegerType()) {
477 // convert the rhs to the lhs complex type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000478 return lhs;
479 } else if (rhsComplexInt && lhs->isIntegerType()) {
480 // convert the lhs to the rhs complex type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000481 return rhs;
482 }
483 }
484 // Finally, we have two differing integer types.
485 // The rules for this case are in C99 6.3.1.8
486 int compare = Context.getIntegerTypeOrder(lhs, rhs);
487 bool lhsSigned = lhs->isSignedIntegerType(),
488 rhsSigned = rhs->isSignedIntegerType();
489 QualType destType;
490 if (lhsSigned == rhsSigned) {
491 // Same signedness; use the higher-ranked type
492 destType = compare >= 0 ? lhs : rhs;
493 } else if (compare != (lhsSigned ? 1 : -1)) {
494 // The unsigned type has greater than or equal rank to the
495 // signed type, so use the unsigned type
496 destType = lhsSigned ? rhs : lhs;
497 } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) {
498 // The two types are different widths; if we are here, that
499 // means the signed type is larger than the unsigned type, so
500 // use the signed type.
501 destType = lhsSigned ? lhs : rhs;
502 } else {
503 // The signed type is higher-ranked than the unsigned type,
504 // but isn't actually any bigger (like unsigned int and long
505 // on most 32-bit systems). Use the unsigned type corresponding
506 // to the signed type.
507 destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs);
508 }
Chris Lattnere7a2e912008-07-25 21:10:04 +0000509 return destType;
510}
511
512//===----------------------------------------------------------------------===//
513// Semantic Analysis for various Expression Types
514//===----------------------------------------------------------------------===//
515
516
Steve Narofff69936d2007-09-16 03:34:24 +0000517/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Reid Spencer5f016e22007-07-11 17:01:13 +0000518/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
519/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
520/// multiple tokens. However, the common case is that StringToks points to one
521/// string.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000522///
523Action::OwningExprResult
Steve Narofff69936d2007-09-16 03:34:24 +0000524Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000525 assert(NumStringToks && "Must have at least one string!");
526
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000527 StringLiteralParser Literal(StringToks, NumStringToks, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +0000528 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000529 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000530
531 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
532 for (unsigned i = 0; i != NumStringToks; ++i)
533 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000534
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000535 QualType StrTy = Context.CharTy;
Argyrios Kyrtzidis55f4b022008-08-09 17:20:01 +0000536 if (Literal.AnyWide) StrTy = Context.getWCharType();
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000537 if (Literal.Pascal) StrTy = Context.UnsignedCharTy;
Douglas Gregor77a52232008-09-12 00:47:35 +0000538
539 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
540 if (getLangOptions().CPlusPlus)
541 StrTy.addConst();
Sebastian Redlcd965b92009-01-18 18:53:16 +0000542
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000543 // Get an array type for the string, according to C99 6.4.5. This includes
544 // the nul terminator character as well as the string length for pascal
545 // strings.
546 StrTy = Context.getConstantArrayType(StrTy,
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +0000547 llvm::APInt(32, Literal.GetNumStringChars()+1),
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000548 ArrayType::Normal, 0);
Chris Lattner726e1682009-02-18 05:49:11 +0000549
Reid Spencer5f016e22007-07-11 17:01:13 +0000550 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Chris Lattner2085fd62009-02-18 06:40:38 +0000551 return Owned(StringLiteral::Create(Context, Literal.GetString(),
552 Literal.GetStringLength(),
553 Literal.AnyWide, StrTy,
554 &StringTokLocs[0],
555 StringTokLocs.size()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000556}
557
Chris Lattner639e2d32008-10-20 05:16:36 +0000558/// ShouldSnapshotBlockValueReference - Return true if a reference inside of
559/// CurBlock to VD should cause it to be snapshotted (as we do for auto
560/// variables defined outside the block) or false if this is not needed (e.g.
561/// for values inside the block or for globals).
562///
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000563/// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records
564/// up-to-date.
565///
Chris Lattner639e2d32008-10-20 05:16:36 +0000566static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock,
567 ValueDecl *VD) {
568 // If the value is defined inside the block, we couldn't snapshot it even if
569 // we wanted to.
570 if (CurBlock->TheDecl == VD->getDeclContext())
571 return false;
572
573 // If this is an enum constant or function, it is constant, don't snapshot.
574 if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD))
575 return false;
576
577 // If this is a reference to an extern, static, or global variable, no need to
578 // snapshot it.
579 // FIXME: What about 'const' variables in C++?
580 if (const VarDecl *Var = dyn_cast<VarDecl>(VD))
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000581 if (!Var->hasLocalStorage())
582 return false;
583
584 // Blocks that have these can't be constant.
585 CurBlock->hasBlockDeclRefExprs = true;
586
587 // If we have nested blocks, the decl may be declared in an outer block (in
588 // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may
589 // be defined outside all of the current blocks (in which case the blocks do
590 // all get the bit). Walk the nesting chain.
591 for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock;
592 NextBlock = NextBlock->PrevBlockInfo) {
593 // If we found the defining block for the variable, don't mark the block as
594 // having a reference outside it.
595 if (NextBlock->TheDecl == VD->getDeclContext())
596 break;
597
598 // Otherwise, the DeclRef from the inner block causes the outer one to need
599 // a snapshot as well.
600 NextBlock->hasBlockDeclRefExprs = true;
601 }
Chris Lattner639e2d32008-10-20 05:16:36 +0000602
603 return true;
604}
605
606
607
Steve Naroff08d92e42007-09-15 18:49:24 +0000608/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Reid Spencer5f016e22007-07-11 17:01:13 +0000609/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
Steve Naroff0d755ad2008-03-19 23:46:26 +0000610/// identifier is used in a function call context.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000611/// SS is only used for a C++ qualified-id (foo::bar) to indicate the
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000612/// class or namespace that the identifier must be a member of.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000613Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
614 IdentifierInfo &II,
615 bool HasTrailingLParen,
Sebastian Redlebc07d52009-02-03 20:19:35 +0000616 const CXXScopeSpec *SS,
617 bool isAddressOfOperand) {
618 return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS,
Douglas Gregor17330012009-02-04 15:01:18 +0000619 isAddressOfOperand);
Douglas Gregor10c42622008-11-18 15:03:34 +0000620}
621
Douglas Gregor1a49af92009-01-06 05:10:23 +0000622/// BuildDeclRefExpr - Build either a DeclRefExpr or a
623/// QualifiedDeclRefExpr based on whether or not SS is a
624/// nested-name-specifier.
Anders Carlssone41590d2009-06-24 00:10:43 +0000625Sema::OwningExprResult
Sebastian Redlebc07d52009-02-03 20:19:35 +0000626Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc,
627 bool TypeDependent, bool ValueDependent,
628 const CXXScopeSpec *SS) {
Anders Carlssone2bb2242009-06-26 19:16:07 +0000629 if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) {
630 Diag(Loc,
631 diag::err_auto_variable_cannot_appear_in_own_initializer)
632 << D->getDeclName();
633 return ExprError();
634 }
Anders Carlssone41590d2009-06-24 00:10:43 +0000635
636 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
637 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
638 if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) {
639 if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) {
640 Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function)
641 << D->getIdentifier() << FD->getDeclName();
642 Diag(D->getLocation(), diag::note_local_variable_declared_here)
643 << D->getIdentifier();
644 return ExprError();
645 }
646 }
647 }
648 }
649
Douglas Gregore0762c92009-06-19 23:52:42 +0000650 MarkDeclarationReferenced(Loc, D);
Anders Carlssone41590d2009-06-24 00:10:43 +0000651
652 Expr *E;
Douglas Gregorbad35182009-03-19 03:51:16 +0000653 if (SS && !SS->isEmpty()) {
Anders Carlssone41590d2009-06-24 00:10:43 +0000654 E = new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent,
655 ValueDependent, SS->getRange(),
Douglas Gregor35073692009-03-26 23:56:24 +0000656 static_cast<NestedNameSpecifier *>(SS->getScopeRep()));
Douglas Gregorbad35182009-03-19 03:51:16 +0000657 } else
Anders Carlssone41590d2009-06-24 00:10:43 +0000658 E = new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent);
659
660 return Owned(E);
Douglas Gregor1a49af92009-01-06 05:10:23 +0000661}
662
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000663/// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or
664/// variable corresponding to the anonymous union or struct whose type
665/// is Record.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000666static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context,
667 RecordDecl *Record) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000668 assert(Record->isAnonymousStructOrUnion() &&
669 "Record must be an anonymous struct or union!");
670
Mike Stump390b4cc2009-05-16 07:39:55 +0000671 // FIXME: Once Decls are directly linked together, this will be an O(1)
672 // operation rather than a slow walk through DeclContext's vector (which
673 // itself will be eliminated). DeclGroups might make this even better.
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000674 DeclContext *Ctx = Record->getDeclContext();
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000675 for (DeclContext::decl_iterator D = Ctx->decls_begin(),
676 DEnd = Ctx->decls_end();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000677 D != DEnd; ++D) {
678 if (*D == Record) {
679 // The object for the anonymous struct/union directly
680 // follows its type in the list of declarations.
681 ++D;
682 assert(D != DEnd && "Missing object for anonymous record");
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000683 assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed");
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000684 return *D;
685 }
686 }
687
688 assert(false && "Missing object for anonymous record");
689 return 0;
690}
691
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000692/// \brief Given a field that represents a member of an anonymous
693/// struct/union, build the path from that field's context to the
694/// actual member.
695///
696/// Construct the sequence of field member references we'll have to
697/// perform to get to the field in the anonymous union/struct. The
698/// list of members is built from the field outward, so traverse it
699/// backwards to go from an object in the current context to the field
700/// we found.
701///
702/// \returns The variable from which the field access should begin,
703/// for an anonymous struct/union that is not a member of another
704/// class. Otherwise, returns NULL.
705VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field,
706 llvm::SmallVectorImpl<FieldDecl *> &Path) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000707 assert(Field->getDeclContext()->isRecord() &&
708 cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion()
709 && "Field must be stored inside an anonymous struct or union");
710
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000711 Path.push_back(Field);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000712 VarDecl *BaseObject = 0;
713 DeclContext *Ctx = Field->getDeclContext();
714 do {
715 RecordDecl *Record = cast<RecordDecl>(Ctx);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000716 Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000717 if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject))
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000718 Path.push_back(AnonField);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000719 else {
720 BaseObject = cast<VarDecl>(AnonObject);
721 break;
722 }
723 Ctx = Ctx->getParent();
724 } while (Ctx->isRecord() &&
725 cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion());
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000726
727 return BaseObject;
728}
729
730Sema::OwningExprResult
731Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc,
732 FieldDecl *Field,
733 Expr *BaseObjectExpr,
734 SourceLocation OpLoc) {
735 llvm::SmallVector<FieldDecl *, 4> AnonFields;
736 VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field,
737 AnonFields);
738
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000739 // Build the expression that refers to the base object, from
740 // which we will build a sequence of member references to each
741 // of the anonymous union objects and, eventually, the field we
742 // found via name lookup.
743 bool BaseObjectIsPointer = false;
744 unsigned ExtraQuals = 0;
745 if (BaseObject) {
746 // BaseObject is an anonymous struct/union variable (and is,
747 // therefore, not part of another non-anonymous record).
Ted Kremenek8189cde2009-02-07 01:47:29 +0000748 if (BaseObjectExpr) BaseObjectExpr->Destroy(Context);
Douglas Gregore0762c92009-06-19 23:52:42 +0000749 MarkDeclarationReferenced(Loc, BaseObject);
Steve Naroff6ece14c2009-01-21 00:14:39 +0000750 BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(),
Mike Stumpeed9cac2009-02-19 03:04:26 +0000751 SourceLocation());
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000752 ExtraQuals
753 = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers();
754 } else if (BaseObjectExpr) {
755 // The caller provided the base object expression. Determine
756 // whether its a pointer and whether it adds any qualifiers to the
757 // anonymous struct/union fields we're looking into.
758 QualType ObjectType = BaseObjectExpr->getType();
759 if (const PointerType *ObjectPtr = ObjectType->getAsPointerType()) {
760 BaseObjectIsPointer = true;
761 ObjectType = ObjectPtr->getPointeeType();
762 }
763 ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers();
764 } else {
765 // We've found a member of an anonymous struct/union that is
766 // inside a non-anonymous struct/union, so in a well-formed
767 // program our base object expression is "this".
768 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
769 if (!MD->isStatic()) {
770 QualType AnonFieldType
771 = Context.getTagDeclType(
772 cast<RecordDecl>(AnonFields.back()->getDeclContext()));
773 QualType ThisType = Context.getTagDeclType(MD->getParent());
774 if ((Context.getCanonicalType(AnonFieldType)
775 == Context.getCanonicalType(ThisType)) ||
776 IsDerivedFrom(ThisType, AnonFieldType)) {
777 // Our base object expression is "this".
Steve Naroff6ece14c2009-01-21 00:14:39 +0000778 BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(),
Mike Stumpeed9cac2009-02-19 03:04:26 +0000779 MD->getThisType(Context));
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000780 BaseObjectIsPointer = true;
781 }
782 } else {
Sebastian Redlcd965b92009-01-18 18:53:16 +0000783 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
784 << Field->getDeclName());
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000785 }
786 ExtraQuals = MD->getTypeQualifiers();
787 }
788
789 if (!BaseObjectExpr)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000790 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
791 << Field->getDeclName());
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000792 }
793
794 // Build the implicit member references to the field of the
795 // anonymous struct/union.
796 Expr *Result = BaseObjectExpr;
797 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
798 FI = AnonFields.rbegin(), FIEnd = AnonFields.rend();
799 FI != FIEnd; ++FI) {
800 QualType MemberType = (*FI)->getType();
801 if (!(*FI)->isMutable()) {
802 unsigned combinedQualifiers
803 = MemberType.getCVRQualifiers() | ExtraQuals;
804 MemberType = MemberType.getQualifiedType(combinedQualifiers);
805 }
Douglas Gregore0762c92009-06-19 23:52:42 +0000806 MarkDeclarationReferenced(Loc, *FI);
Steve Naroff6ece14c2009-01-21 00:14:39 +0000807 Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI,
808 OpLoc, MemberType);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000809 BaseObjectIsPointer = false;
810 ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000811 }
812
Sebastian Redlcd965b92009-01-18 18:53:16 +0000813 return Owned(Result);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000814}
815
Douglas Gregor10c42622008-11-18 15:03:34 +0000816/// ActOnDeclarationNameExpr - The parser has read some kind of name
817/// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine
818/// performs lookup on that name and returns an expression that refers
819/// to that name. This routine isn't directly called from the parser,
820/// because the parser doesn't know about DeclarationName. Rather,
821/// this routine is called by ActOnIdentifierExpr,
822/// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr,
823/// which form the DeclarationName from the corresponding syntactic
824/// forms.
825///
826/// HasTrailingLParen indicates whether this identifier is used in a
827/// function call context. LookupCtx is only used for a C++
828/// qualified-id (foo::bar) to indicate the class or namespace that
829/// the identifier must be a member of.
Douglas Gregor5c37de72008-12-06 00:22:45 +0000830///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000831/// isAddressOfOperand means that this expression is the direct operand
832/// of an address-of operator. This matters because this is the only
833/// situation where a qualified name referencing a non-static member may
834/// appear outside a member function of this class.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000835Sema::OwningExprResult
836Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc,
837 DeclarationName Name, bool HasTrailingLParen,
Douglas Gregor17330012009-02-04 15:01:18 +0000838 const CXXScopeSpec *SS,
Sebastian Redlebc07d52009-02-03 20:19:35 +0000839 bool isAddressOfOperand) {
Chris Lattner8a934232008-03-31 00:36:02 +0000840 // Could be enum-constant, value decl, instance variable, etc.
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000841 if (SS && SS->isInvalid())
842 return ExprError();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000843
844 // C++ [temp.dep.expr]p3:
845 // An id-expression is type-dependent if it contains:
846 // -- a nested-name-specifier that contains a class-name that
847 // names a dependent type.
Douglas Gregor00c44862009-05-29 14:49:33 +0000848 // FIXME: Member of the current instantiation.
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000849 if (SS && isDependentScopeSpecifier(*SS)) {
Douglas Gregorab452ba2009-03-26 23:50:42 +0000850 return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy,
851 Loc, SS->getRange(),
Anders Carlsson9b31df42009-07-09 00:05:08 +0000852 static_cast<NestedNameSpecifier *>(SS->getScopeRep()),
853 isAddressOfOperand));
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000854 }
855
Douglas Gregor3e41d602009-02-13 23:20:09 +0000856 LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName,
857 false, true, Loc);
Douglas Gregor7176fff2009-01-15 00:26:24 +0000858
Sebastian Redlcd965b92009-01-18 18:53:16 +0000859 if (Lookup.isAmbiguous()) {
860 DiagnoseAmbiguousLookup(Lookup, Name, Loc,
861 SS && SS->isSet() ? SS->getRange()
862 : SourceRange());
863 return ExprError();
Chris Lattner5cb10d32009-04-24 22:30:50 +0000864 }
865
866 NamedDecl *D = Lookup.getAsDecl();
Douglas Gregor5c37de72008-12-06 00:22:45 +0000867
Chris Lattner8a934232008-03-31 00:36:02 +0000868 // If this reference is in an Objective-C method, then ivar lookup happens as
869 // well.
Douglas Gregor10c42622008-11-18 15:03:34 +0000870 IdentifierInfo *II = Name.getAsIdentifierInfo();
871 if (II && getCurMethodDecl()) {
Chris Lattner8a934232008-03-31 00:36:02 +0000872 // There are two cases to handle here. 1) scoped lookup could have failed,
873 // in which case we should look for an ivar. 2) scoped lookup could have
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000874 // found a decl, but that decl is outside the current instance method (i.e.
875 // a global variable). In these two cases, we do a lookup for an ivar with
876 // this name, if the lookup sucedes, we replace it our current decl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000877 if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000878 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000879 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000880 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Chris Lattner553905d2009-02-16 17:19:12 +0000881 // Check if referencing a field with __attribute__((deprecated)).
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000882 if (DiagnoseUseOfDecl(IV, Loc))
883 return ExprError();
Chris Lattner5cb10d32009-04-24 22:30:50 +0000884
885 // If we're referencing an invalid decl, just return this as a silent
886 // error node. The error diagnostic was already emitted on the decl.
887 if (IV->isInvalidDecl())
888 return ExprError();
889
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000890 bool IsClsMethod = getCurMethodDecl()->isClassMethod();
891 // If a class method attemps to use a free standing ivar, this is
892 // an error.
893 if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod())
894 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
895 << IV->getDeclName());
896 // If a class method uses a global variable, even if an ivar with
897 // same name exists, use the global.
898 if (!IsClsMethod) {
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000899 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
900 ClassDeclared != IFace)
901 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
Mike Stump390b4cc2009-05-16 07:39:55 +0000902 // FIXME: This should use a new expr for a direct reference, don't
903 // turn this into Self->ivar, just return a BareIVarExpr or something.
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000904 IdentifierInfo &II = Context.Idents.get("self");
905 OwningExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false);
Douglas Gregore0762c92009-06-19 23:52:42 +0000906 MarkDeclarationReferenced(Loc, IV);
Daniel Dunbar525c9b72009-04-21 01:19:28 +0000907 return Owned(new (Context)
908 ObjCIvarRefExpr(IV, IV->getType(), Loc,
Anders Carlssone9146f22009-05-01 19:49:17 +0000909 SelfExpr.takeAs<Expr>(), true, true));
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000910 }
Chris Lattner8a934232008-03-31 00:36:02 +0000911 }
912 }
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000913 else if (getCurMethodDecl()->isInstanceMethod()) {
914 // We should warn if a local variable hides an ivar.
915 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000916 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000917 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000918 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
919 IFace == ClassDeclared)
Chris Lattner5cb10d32009-04-24 22:30:50 +0000920 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000921 }
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000922 }
Steve Naroff76de9d72008-08-10 19:10:41 +0000923 // Needed to implement property "super.method" notation.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000924 if (D == 0 && II->isStr("super")) {
Steve Naroffdd53eb52009-03-05 20:12:00 +0000925 QualType T;
926
927 if (getCurMethodDecl()->isInstanceMethod())
Steve Naroff14108da2009-07-10 23:34:53 +0000928 T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType(
929 getCurMethodDecl()->getClassInterface()));
Steve Naroffdd53eb52009-03-05 20:12:00 +0000930 else
931 T = Context.getObjCClassType();
Steve Naroff6ece14c2009-01-21 00:14:39 +0000932 return Owned(new (Context) ObjCSuperExpr(Loc, T));
Steve Naroffe3e9add2008-06-02 23:03:37 +0000933 }
Chris Lattner8a934232008-03-31 00:36:02 +0000934 }
Douglas Gregorc71e28c2009-02-16 19:28:42 +0000935
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000936 // Determine whether this name might be a candidate for
937 // argument-dependent lookup.
938 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
939 HasTrailingLParen;
940
941 if (ADL && D == 0) {
Douglas Gregorc71e28c2009-02-16 19:28:42 +0000942 // We've seen something of the form
943 //
944 // identifier(
945 //
946 // and we did not find any entity by the name
947 // "identifier". However, this identifier is still subject to
948 // argument-dependent lookup, so keep track of the name.
949 return Owned(new (Context) UnresolvedFunctionNameExpr(Name,
950 Context.OverloadTy,
951 Loc));
952 }
953
Reid Spencer5f016e22007-07-11 17:01:13 +0000954 if (D == 0) {
955 // Otherwise, this could be an implicitly declared function reference (legal
956 // in C90, extension in C99).
Douglas Gregor10c42622008-11-18 15:03:34 +0000957 if (HasTrailingLParen && II &&
Chris Lattner8a934232008-03-31 00:36:02 +0000958 !getLangOptions().CPlusPlus) // Not in C++.
Douglas Gregor10c42622008-11-18 15:03:34 +0000959 D = ImplicitlyDefineFunction(Loc, *II, S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000960 else {
961 // If this name wasn't predeclared and if this is not a function call,
962 // diagnose the problem.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000963 if (SS && !SS->isEmpty())
Sebastian Redlcd965b92009-01-18 18:53:16 +0000964 return ExprError(Diag(Loc, diag::err_typecheck_no_member)
965 << Name << SS->getRange());
Douglas Gregor10c42622008-11-18 15:03:34 +0000966 else if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
967 Name.getNameKind() == DeclarationName::CXXConversionFunctionName)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000968 return ExprError(Diag(Loc, diag::err_undeclared_use)
969 << Name.getAsString());
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000970 else
Sebastian Redlcd965b92009-01-18 18:53:16 +0000971 return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000972 }
973 }
Douglas Gregor751f9a42009-06-30 15:47:41 +0000974
975 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
976 // Warn about constructs like:
977 // if (void *X = foo()) { ... } else { X }.
978 // In the else block, the pointer is always false.
979
980 // FIXME: In a template instantiation, we don't have scope
981 // information to check this property.
982 if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) {
983 Scope *CheckS = S;
984 while (CheckS) {
985 if (CheckS->isWithinElse() &&
986 CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) {
987 if (Var->getType()->isBooleanType())
988 ExprError(Diag(Loc, diag::warn_value_always_false)
989 << Var->getDeclName());
990 else
991 ExprError(Diag(Loc, diag::warn_value_always_zero)
992 << Var->getDeclName());
993 break;
994 }
995
996 // Move up one more control parent to check again.
997 CheckS = CheckS->getControlParent();
998 if (CheckS)
999 CheckS = CheckS->getParent();
1000 }
1001 }
1002 } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) {
1003 if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) {
1004 // C99 DR 316 says that, if a function type comes from a
1005 // function definition (without a prototype), that type is only
1006 // used for checking compatibility. Therefore, when referencing
1007 // the function, we pretend that we don't have the full function
1008 // type.
1009 if (DiagnoseUseOfDecl(Func, Loc))
1010 return ExprError();
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001011
Douglas Gregor751f9a42009-06-30 15:47:41 +00001012 QualType T = Func->getType();
1013 QualType NoProtoType = T;
1014 if (const FunctionProtoType *Proto = T->getAsFunctionProtoType())
1015 NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType());
1016 return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS);
1017 }
1018 }
1019
1020 return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand);
1021}
1022
1023/// \brief Complete semantic analysis for a reference to the given declaration.
1024Sema::OwningExprResult
1025Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D,
1026 bool HasTrailingLParen,
1027 const CXXScopeSpec *SS,
1028 bool isAddressOfOperand) {
1029 assert(D && "Cannot refer to a NULL declaration");
1030 DeclarationName Name = D->getDeclName();
1031
Sebastian Redlebc07d52009-02-03 20:19:35 +00001032 // If this is an expression of the form &Class::member, don't build an
1033 // implicit member ref, because we want a pointer to the member in general,
1034 // not any specific instance's member.
1035 if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) {
Douglas Gregore4e5b052009-03-19 00:18:19 +00001036 DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001037 if (D && isa<CXXRecordDecl>(DC)) {
Sebastian Redlebc07d52009-02-03 20:19:35 +00001038 QualType DType;
1039 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
1040 DType = FD->getType().getNonReferenceType();
1041 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
1042 DType = Method->getType();
1043 } else if (isa<OverloadedFunctionDecl>(D)) {
1044 DType = Context.OverloadTy;
1045 }
1046 // Could be an inner type. That's diagnosed below, so ignore it here.
1047 if (!DType.isNull()) {
1048 // The pointer is type- and value-dependent if it points into something
1049 // dependent.
Douglas Gregor00c44862009-05-29 14:49:33 +00001050 bool Dependent = DC->isDependentContext();
Anders Carlssone41590d2009-06-24 00:10:43 +00001051 return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS);
Sebastian Redlebc07d52009-02-03 20:19:35 +00001052 }
1053 }
1054 }
1055
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001056 // We may have found a field within an anonymous union or struct
1057 // (C++ [class.union]).
1058 if (FieldDecl *FD = dyn_cast<FieldDecl>(D))
1059 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
1060 return BuildAnonymousStructUnionMemberReference(Loc, FD);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001061
Douglas Gregor88a35142008-12-22 05:46:06 +00001062 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
1063 if (!MD->isStatic()) {
1064 // C++ [class.mfct.nonstatic]p2:
1065 // [...] if name lookup (3.4.1) resolves the name in the
1066 // id-expression to a nonstatic nontype member of class X or of
1067 // a base class of X, the id-expression is transformed into a
1068 // class member access expression (5.2.5) using (*this) (9.3.2)
1069 // as the postfix-expression to the left of the '.' operator.
1070 DeclContext *Ctx = 0;
1071 QualType MemberType;
1072 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
1073 Ctx = FD->getDeclContext();
1074 MemberType = FD->getType();
1075
1076 if (const ReferenceType *RefType = MemberType->getAsReferenceType())
1077 MemberType = RefType->getPointeeType();
1078 else if (!FD->isMutable()) {
1079 unsigned combinedQualifiers
1080 = MemberType.getCVRQualifiers() | MD->getTypeQualifiers();
1081 MemberType = MemberType.getQualifiedType(combinedQualifiers);
1082 }
1083 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
1084 if (!Method->isStatic()) {
1085 Ctx = Method->getParent();
1086 MemberType = Method->getType();
1087 }
1088 } else if (OverloadedFunctionDecl *Ovl
1089 = dyn_cast<OverloadedFunctionDecl>(D)) {
1090 for (OverloadedFunctionDecl::function_iterator
1091 Func = Ovl->function_begin(),
1092 FuncEnd = Ovl->function_end();
1093 Func != FuncEnd; ++Func) {
1094 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func))
1095 if (!DMethod->isStatic()) {
1096 Ctx = Ovl->getDeclContext();
1097 MemberType = Context.OverloadTy;
1098 break;
1099 }
1100 }
1101 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001102
1103 if (Ctx && Ctx->isRecord()) {
Douglas Gregor88a35142008-12-22 05:46:06 +00001104 QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx));
1105 QualType ThisType = Context.getTagDeclType(MD->getParent());
1106 if ((Context.getCanonicalType(CtxType)
1107 == Context.getCanonicalType(ThisType)) ||
1108 IsDerivedFrom(ThisType, CtxType)) {
1109 // Build the implicit member access expression.
Steve Naroff6ece14c2009-01-21 00:14:39 +00001110 Expr *This = new (Context) CXXThisExpr(SourceLocation(),
Mike Stumpeed9cac2009-02-19 03:04:26 +00001111 MD->getThisType(Context));
Douglas Gregore0762c92009-06-19 23:52:42 +00001112 MarkDeclarationReferenced(Loc, D);
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001113 return Owned(new (Context) MemberExpr(This, true, D,
Eli Friedman72527132009-04-29 17:56:47 +00001114 Loc, MemberType));
Douglas Gregor88a35142008-12-22 05:46:06 +00001115 }
1116 }
1117 }
1118 }
1119
Douglas Gregor44b43212008-12-11 16:49:14 +00001120 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001121 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
1122 if (MD->isStatic())
1123 // "invalid use of member 'x' in static member function"
Sebastian Redlcd965b92009-01-18 18:53:16 +00001124 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
1125 << FD->getDeclName());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001126 }
1127
Douglas Gregor88a35142008-12-22 05:46:06 +00001128 // Any other ways we could have found the field in a well-formed
1129 // program would have been turned into implicit member expressions
1130 // above.
Sebastian Redlcd965b92009-01-18 18:53:16 +00001131 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
1132 << FD->getDeclName());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001133 }
Douglas Gregor88a35142008-12-22 05:46:06 +00001134
Reid Spencer5f016e22007-07-11 17:01:13 +00001135 if (isa<TypedefDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +00001136 return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001137 if (isa<ObjCInterfaceDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +00001138 return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001139 if (isa<NamespaceDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +00001140 return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name);
Reid Spencer5f016e22007-07-11 17:01:13 +00001141
Steve Naroffdd972f22008-09-05 22:11:13 +00001142 // Make the DeclRefExpr or BlockDeclRefExpr for the decl.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001143 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D))
Anders Carlssone41590d2009-06-24 00:10:43 +00001144 return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc,
1145 false, false, SS);
Douglas Gregorc15cb382009-02-09 23:23:08 +00001146 else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
Anders Carlssone41590d2009-06-24 00:10:43 +00001147 return BuildDeclRefExpr(Template, Context.OverloadTy, Loc,
1148 false, false, SS);
Steve Naroffdd972f22008-09-05 22:11:13 +00001149 ValueDecl *VD = cast<ValueDecl>(D);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001150
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001151 // Check whether this declaration can be used. Note that we suppress
1152 // this check when we're going to perform argument-dependent lookup
1153 // on this function name, because this might not be the function
1154 // that overload resolution actually selects.
Douglas Gregor751f9a42009-06-30 15:47:41 +00001155 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
1156 HasTrailingLParen;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001157 if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc))
1158 return ExprError();
1159
Steve Naroffdd972f22008-09-05 22:11:13 +00001160 // Only create DeclRefExpr's for valid Decl's.
1161 if (VD->isInvalidDecl())
Sebastian Redlcd965b92009-01-18 18:53:16 +00001162 return ExprError();
1163
Chris Lattner639e2d32008-10-20 05:16:36 +00001164 // If the identifier reference is inside a block, and it refers to a value
1165 // that is outside the block, create a BlockDeclRefExpr instead of a
1166 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
1167 // the block is formed.
Steve Naroffdd972f22008-09-05 22:11:13 +00001168 //
Chris Lattner639e2d32008-10-20 05:16:36 +00001169 // We do not do this for things like enum constants, global variables, etc,
1170 // as they do not get snapshotted.
1171 //
1172 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) {
Douglas Gregore0762c92009-06-19 23:52:42 +00001173 MarkDeclarationReferenced(Loc, VD);
Eli Friedman5fdeae12009-03-22 23:00:19 +00001174 QualType ExprTy = VD->getType().getNonReferenceType();
Steve Naroff090276f2008-10-10 01:28:17 +00001175 // The BlocksAttr indicates the variable is bound by-reference.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001176 if (VD->getAttr<BlocksAttr>())
Eli Friedman5fdeae12009-03-22 23:00:19 +00001177 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true));
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00001178 // This is to record that a 'const' was actually synthesize and added.
1179 bool constAdded = !ExprTy.isConstQualified();
Steve Naroff090276f2008-10-10 01:28:17 +00001180 // Variable will be bound by-copy, make it const within the closure.
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00001181
Eli Friedman5fdeae12009-03-22 23:00:19 +00001182 ExprTy.addConst();
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00001183 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false,
1184 constAdded));
Steve Naroff090276f2008-10-10 01:28:17 +00001185 }
1186 // If this reference is not in a block or if the referenced variable is
1187 // within the block, create a normal DeclRefExpr.
Douglas Gregor898574e2008-12-05 23:32:09 +00001188
Douglas Gregor898574e2008-12-05 23:32:09 +00001189 bool TypeDependent = false;
Douglas Gregor83f96f62008-12-10 20:57:37 +00001190 bool ValueDependent = false;
1191 if (getLangOptions().CPlusPlus) {
1192 // C++ [temp.dep.expr]p3:
1193 // An id-expression is type-dependent if it contains:
1194 // - an identifier that was declared with a dependent type,
1195 if (VD->getType()->isDependentType())
1196 TypeDependent = true;
1197 // - FIXME: a template-id that is dependent,
1198 // - a conversion-function-id that specifies a dependent type,
1199 else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
1200 Name.getCXXNameType()->isDependentType())
1201 TypeDependent = true;
1202 // - a nested-name-specifier that contains a class-name that
1203 // names a dependent type.
1204 else if (SS && !SS->isEmpty()) {
Douglas Gregore4e5b052009-03-19 00:18:19 +00001205 for (DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor83f96f62008-12-10 20:57:37 +00001206 DC; DC = DC->getParent()) {
1207 // FIXME: could stop early at namespace scope.
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001208 if (DC->isRecord()) {
Douglas Gregor83f96f62008-12-10 20:57:37 +00001209 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
1210 if (Context.getTypeDeclType(Record)->isDependentType()) {
1211 TypeDependent = true;
1212 break;
1213 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001214 }
1215 }
1216 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001217
Douglas Gregor83f96f62008-12-10 20:57:37 +00001218 // C++ [temp.dep.constexpr]p2:
1219 //
1220 // An identifier is value-dependent if it is:
1221 // - a name declared with a dependent type,
1222 if (TypeDependent)
1223 ValueDependent = true;
1224 // - the name of a non-type template parameter,
1225 else if (isa<NonTypeTemplateParmDecl>(VD))
1226 ValueDependent = true;
1227 // - a constant with integral or enumeration type and is
1228 // initialized with an expression that is value-dependent
Eli Friedmanc1494122009-06-11 01:11:20 +00001229 else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) {
1230 if (Dcl->getType().getCVRQualifiers() == QualType::Const &&
1231 Dcl->getInit()) {
1232 ValueDependent = Dcl->getInit()->isValueDependent();
1233 }
1234 }
Douglas Gregor83f96f62008-12-10 20:57:37 +00001235 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001236
Anders Carlssone41590d2009-06-24 00:10:43 +00001237 return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc,
1238 TypeDependent, ValueDependent, SS);
Reid Spencer5f016e22007-07-11 17:01:13 +00001239}
1240
Sebastian Redlcd965b92009-01-18 18:53:16 +00001241Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
1242 tok::TokenKind Kind) {
Chris Lattnerd9f69102008-08-10 01:53:14 +00001243 PredefinedExpr::IdentType IT;
Sebastian Redlcd965b92009-01-18 18:53:16 +00001244
Reid Spencer5f016e22007-07-11 17:01:13 +00001245 switch (Kind) {
Chris Lattner1423ea42008-01-12 18:39:25 +00001246 default: assert(0 && "Unknown simple primary expr!");
Chris Lattnerd9f69102008-08-10 01:53:14 +00001247 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
1248 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
1249 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001250 }
Chris Lattner1423ea42008-01-12 18:39:25 +00001251
Chris Lattnerfa28b302008-01-12 08:14:25 +00001252 // Pre-defined identifiers are of type char[x], where x is the length of the
1253 // string.
Chris Lattner8f978d52008-01-12 19:32:28 +00001254 unsigned Length;
Chris Lattner371f2582008-12-04 23:50:19 +00001255 if (FunctionDecl *FD = getCurFunctionDecl())
1256 Length = FD->getIdentifier()->getLength();
Chris Lattnerb0da9232008-12-12 05:05:20 +00001257 else if (ObjCMethodDecl *MD = getCurMethodDecl())
1258 Length = MD->getSynthesizedMethodSize();
1259 else {
1260 Diag(Loc, diag::ext_predef_outside_function);
1261 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
1262 Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0;
1263 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001264
1265
Chris Lattner8f978d52008-01-12 19:32:28 +00001266 llvm::APInt LengthI(32, Length + 1);
Chris Lattner1423ea42008-01-12 18:39:25 +00001267 QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const);
Chris Lattner8f978d52008-01-12 19:32:28 +00001268 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
Steve Naroff6ece14c2009-01-21 00:14:39 +00001269 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Reid Spencer5f016e22007-07-11 17:01:13 +00001270}
1271
Sebastian Redlcd965b92009-01-18 18:53:16 +00001272Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001273 llvm::SmallString<16> CharBuffer;
1274 CharBuffer.resize(Tok.getLength());
1275 const char *ThisTokBegin = &CharBuffer[0];
1276 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001277
Reid Spencer5f016e22007-07-11 17:01:13 +00001278 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1279 Tok.getLocation(), PP);
1280 if (Literal.hadError())
Sebastian Redlcd965b92009-01-18 18:53:16 +00001281 return ExprError();
Chris Lattnerfc62bfd2008-03-01 08:32:21 +00001282
1283 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy;
1284
Sebastian Redle91b3bc2009-01-20 22:23:13 +00001285 return Owned(new (Context) CharacterLiteral(Literal.getValue(),
1286 Literal.isWide(),
1287 type, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001288}
1289
Sebastian Redlcd965b92009-01-18 18:53:16 +00001290Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) {
1291 // Fast path for a single digit (which is quite common). A single digit
Reid Spencer5f016e22007-07-11 17:01:13 +00001292 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
1293 if (Tok.getLength() == 1) {
Chris Lattner7216dc92009-01-26 22:36:52 +00001294 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Chris Lattner0c21e842009-01-16 07:10:29 +00001295 unsigned IntSize = Context.Target.getIntWidth();
Steve Naroff6ece14c2009-01-21 00:14:39 +00001296 return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'),
Steve Naroff0a473932009-01-20 19:53:53 +00001297 Context.IntTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001298 }
Ted Kremenek28396602009-01-13 23:19:12 +00001299
Reid Spencer5f016e22007-07-11 17:01:13 +00001300 llvm::SmallString<512> IntegerBuffer;
Chris Lattner2a299042008-09-30 20:53:45 +00001301 // Add padding so that NumericLiteralParser can overread by one character.
1302 IntegerBuffer.resize(Tok.getLength()+1);
Reid Spencer5f016e22007-07-11 17:01:13 +00001303 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlcd965b92009-01-18 18:53:16 +00001304
Reid Spencer5f016e22007-07-11 17:01:13 +00001305 // Get the spelling of the token, which eliminates trigraphs, etc.
1306 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001307
Reid Spencer5f016e22007-07-11 17:01:13 +00001308 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1309 Tok.getLocation(), PP);
1310 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +00001311 return ExprError();
1312
Chris Lattner5d661452007-08-26 03:42:43 +00001313 Expr *Res;
Sebastian Redlcd965b92009-01-18 18:53:16 +00001314
Chris Lattner5d661452007-08-26 03:42:43 +00001315 if (Literal.isFloatingLiteral()) {
Chris Lattner525a0502007-09-22 18:29:59 +00001316 QualType Ty;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001317 if (Literal.isFloat)
Chris Lattner525a0502007-09-22 18:29:59 +00001318 Ty = Context.FloatTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001319 else if (!Literal.isLong)
Chris Lattner525a0502007-09-22 18:29:59 +00001320 Ty = Context.DoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001321 else
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00001322 Ty = Context.LongDoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001323
1324 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
1325
Ted Kremenek720c4ec2007-11-29 00:56:49 +00001326 // isExact will be set by GetFloatValue().
1327 bool isExact = false;
Chris Lattner001d64d2009-06-29 17:34:55 +00001328 llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact);
1329 Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation());
Sebastian Redlcd965b92009-01-18 18:53:16 +00001330
Chris Lattner5d661452007-08-26 03:42:43 +00001331 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlcd965b92009-01-18 18:53:16 +00001332 return ExprError();
Chris Lattner5d661452007-08-26 03:42:43 +00001333 } else {
Chris Lattnerf0467b32008-04-02 04:24:33 +00001334 QualType Ty;
Reid Spencer5f016e22007-07-11 17:01:13 +00001335
Neil Boothb9449512007-08-29 22:00:19 +00001336 // long long is a C99 feature.
1337 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth79859c32007-08-29 22:13:52 +00001338 Literal.isLongLong)
Neil Boothb9449512007-08-29 22:00:19 +00001339 Diag(Tok.getLocation(), diag::ext_longlong);
1340
Reid Spencer5f016e22007-07-11 17:01:13 +00001341 // Get the value in the widest-possible width.
Chris Lattner98be4942008-03-05 18:54:05 +00001342 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001343
Reid Spencer5f016e22007-07-11 17:01:13 +00001344 if (Literal.GetIntegerValue(ResultVal)) {
1345 // If this value didn't fit into uintmax_t, warn and force to ull.
1346 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattnerf0467b32008-04-02 04:24:33 +00001347 Ty = Context.UnsignedLongLongTy;
1348 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner98be4942008-03-05 18:54:05 +00001349 "long long is not intmax_t?");
Reid Spencer5f016e22007-07-11 17:01:13 +00001350 } else {
1351 // If this value fits into a ULL, try to figure out what else it fits into
1352 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlcd965b92009-01-18 18:53:16 +00001353
Reid Spencer5f016e22007-07-11 17:01:13 +00001354 // Octal, Hexadecimal, and integers with a U suffix are allowed to
1355 // be an unsigned int.
1356 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
1357
1358 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001359 unsigned Width = 0;
Chris Lattner97c51562007-08-23 21:58:08 +00001360 if (!Literal.isLong && !Literal.isLongLong) {
1361 // Are int/unsigned possibilities?
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001362 unsigned IntSize = Context.Target.getIntWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001363
Reid Spencer5f016e22007-07-11 17:01:13 +00001364 // Does it fit in a unsigned int?
1365 if (ResultVal.isIntN(IntSize)) {
1366 // Does it fit in a signed int?
1367 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001368 Ty = Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001369 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001370 Ty = Context.UnsignedIntTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001371 Width = IntSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001372 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001373 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001374
Reid Spencer5f016e22007-07-11 17:01:13 +00001375 // Are long/unsigned long possibilities?
Chris Lattnerf0467b32008-04-02 04:24:33 +00001376 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001377 unsigned LongSize = Context.Target.getLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001378
Reid Spencer5f016e22007-07-11 17:01:13 +00001379 // Does it fit in a unsigned long?
1380 if (ResultVal.isIntN(LongSize)) {
1381 // Does it fit in a signed long?
1382 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001383 Ty = Context.LongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001384 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001385 Ty = Context.UnsignedLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001386 Width = LongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001387 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001388 }
1389
Reid Spencer5f016e22007-07-11 17:01:13 +00001390 // Finally, check long long if needed.
Chris Lattnerf0467b32008-04-02 04:24:33 +00001391 if (Ty.isNull()) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001392 unsigned LongLongSize = Context.Target.getLongLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001393
Reid Spencer5f016e22007-07-11 17:01:13 +00001394 // Does it fit in a unsigned long long?
1395 if (ResultVal.isIntN(LongLongSize)) {
1396 // Does it fit in a signed long long?
1397 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001398 Ty = Context.LongLongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001399 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001400 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001401 Width = LongLongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001402 }
1403 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001404
Reid Spencer5f016e22007-07-11 17:01:13 +00001405 // If we still couldn't decide a type, we probably have something that
1406 // does not fit in a signed long long, but has no U suffix.
Chris Lattnerf0467b32008-04-02 04:24:33 +00001407 if (Ty.isNull()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001408 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattnerf0467b32008-04-02 04:24:33 +00001409 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001410 Width = Context.Target.getLongLongWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +00001411 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001412
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001413 if (ResultVal.getBitWidth() != Width)
1414 ResultVal.trunc(Width);
Reid Spencer5f016e22007-07-11 17:01:13 +00001415 }
Sebastian Redle91b3bc2009-01-20 22:23:13 +00001416 Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001417 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001418
Chris Lattner5d661452007-08-26 03:42:43 +00001419 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
1420 if (Literal.isImaginary)
Steve Naroff6ece14c2009-01-21 00:14:39 +00001421 Res = new (Context) ImaginaryLiteral(Res,
1422 Context.getComplexType(Res->getType()));
Sebastian Redlcd965b92009-01-18 18:53:16 +00001423
1424 return Owned(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +00001425}
1426
Sebastian Redlcd965b92009-01-18 18:53:16 +00001427Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L,
1428 SourceLocation R, ExprArg Val) {
Anders Carlssone9146f22009-05-01 19:49:17 +00001429 Expr *E = Val.takeAs<Expr>();
Chris Lattnerf0467b32008-04-02 04:24:33 +00001430 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Naroff6ece14c2009-01-21 00:14:39 +00001431 return Owned(new (Context) ParenExpr(L, R, E));
Reid Spencer5f016e22007-07-11 17:01:13 +00001432}
1433
1434/// The UsualUnaryConversions() function is *not* called by this routine.
1435/// See C99 6.3.2.1p[2-4] for more details.
Sebastian Redl28507842009-02-26 14:39:58 +00001436bool Sema::CheckSizeOfAlignOfOperand(QualType exprType,
Sebastian Redl05189992008-11-11 17:56:53 +00001437 SourceLocation OpLoc,
1438 const SourceRange &ExprRange,
1439 bool isSizeof) {
Sebastian Redl28507842009-02-26 14:39:58 +00001440 if (exprType->isDependentType())
1441 return false;
1442
Reid Spencer5f016e22007-07-11 17:01:13 +00001443 // C99 6.5.3.4p1:
Chris Lattner01072922009-01-24 19:46:37 +00001444 if (isa<FunctionType>(exprType)) {
Chris Lattner1efaa952009-04-24 00:30:45 +00001445 // alignof(function) is allowed as an extension.
Chris Lattner01072922009-01-24 19:46:37 +00001446 if (isSizeof)
1447 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange;
1448 return false;
1449 }
1450
Chris Lattner1efaa952009-04-24 00:30:45 +00001451 // Allow sizeof(void)/alignof(void) as an extension.
Chris Lattner01072922009-01-24 19:46:37 +00001452 if (exprType->isVoidType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001453 Diag(OpLoc, diag::ext_sizeof_void_type)
1454 << (isSizeof ? "sizeof" : "__alignof") << ExprRange;
Chris Lattner01072922009-01-24 19:46:37 +00001455 return false;
1456 }
Chris Lattnerca790922009-04-21 19:55:16 +00001457
Chris Lattner1efaa952009-04-24 00:30:45 +00001458 if (RequireCompleteType(OpLoc, exprType,
1459 isSizeof ? diag::err_sizeof_incomplete_type :
1460 diag::err_alignof_incomplete_type,
1461 ExprRange))
1462 return true;
1463
1464 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
Fariborz Jahanianced1e282009-04-24 17:34:33 +00001465 if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) {
Chris Lattner1efaa952009-04-24 00:30:45 +00001466 Diag(OpLoc, diag::err_sizeof_nonfragile_interface)
Chris Lattner5cb10d32009-04-24 22:30:50 +00001467 << exprType << isSizeof << ExprRange;
1468 return true;
Chris Lattnerca790922009-04-21 19:55:16 +00001469 }
1470
Chris Lattner1efaa952009-04-24 00:30:45 +00001471 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001472}
1473
Chris Lattner31e21e02009-01-24 20:17:12 +00001474bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc,
1475 const SourceRange &ExprRange) {
1476 E = E->IgnoreParens();
Sebastian Redl28507842009-02-26 14:39:58 +00001477
Chris Lattner31e21e02009-01-24 20:17:12 +00001478 // alignof decl is always ok.
1479 if (isa<DeclRefExpr>(E))
1480 return false;
Sebastian Redl28507842009-02-26 14:39:58 +00001481
1482 // Cannot know anything else if the expression is dependent.
1483 if (E->isTypeDependent())
1484 return false;
1485
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001486 if (E->getBitField()) {
1487 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange;
1488 return true;
Chris Lattner31e21e02009-01-24 20:17:12 +00001489 }
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001490
1491 // Alignment of a field access is always okay, so long as it isn't a
1492 // bit-field.
1493 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
1494 if (dyn_cast<FieldDecl>(ME->getMemberDecl()))
1495 return false;
1496
Chris Lattner31e21e02009-01-24 20:17:12 +00001497 return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false);
1498}
1499
Douglas Gregorba498172009-03-13 21:01:28 +00001500/// \brief Build a sizeof or alignof expression given a type operand.
1501Action::OwningExprResult
1502Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc,
1503 bool isSizeOf, SourceRange R) {
1504 if (T.isNull())
1505 return ExprError();
1506
1507 if (!T->isDependentType() &&
1508 CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf))
1509 return ExprError();
1510
1511 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1512 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T,
1513 Context.getSizeType(), OpLoc,
1514 R.getEnd()));
1515}
1516
1517/// \brief Build a sizeof or alignof expression given an expression
1518/// operand.
1519Action::OwningExprResult
1520Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc,
1521 bool isSizeOf, SourceRange R) {
1522 // Verify that the operand is valid.
1523 bool isInvalid = false;
1524 if (E->isTypeDependent()) {
1525 // Delay type-checking for type-dependent expressions.
1526 } else if (!isSizeOf) {
1527 isInvalid = CheckAlignOfExpr(E, OpLoc, R);
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001528 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Douglas Gregorba498172009-03-13 21:01:28 +00001529 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0;
1530 isInvalid = true;
1531 } else {
1532 isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true);
1533 }
1534
1535 if (isInvalid)
1536 return ExprError();
1537
1538 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1539 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E,
1540 Context.getSizeType(), OpLoc,
1541 R.getEnd()));
1542}
1543
Sebastian Redl05189992008-11-11 17:56:53 +00001544/// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and
1545/// the same for @c alignof and @c __alignof
1546/// Note that the ArgRange is invalid if isType is false.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001547Action::OwningExprResult
Sebastian Redl05189992008-11-11 17:56:53 +00001548Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType,
1549 void *TyOrEx, const SourceRange &ArgRange) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001550 // If error parsing type, ignore.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001551 if (TyOrEx == 0) return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001552
Sebastian Redl05189992008-11-11 17:56:53 +00001553 if (isType) {
Douglas Gregorba498172009-03-13 21:01:28 +00001554 QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx);
1555 return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange);
1556 }
Sebastian Redl05189992008-11-11 17:56:53 +00001557
Douglas Gregorba498172009-03-13 21:01:28 +00001558 // Get the end location.
1559 Expr *ArgEx = (Expr *)TyOrEx;
1560 Action::OwningExprResult Result
1561 = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange());
1562
1563 if (Result.isInvalid())
1564 DeleteExpr(ArgEx);
1565
1566 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001567}
1568
Chris Lattnerba27e2a2009-02-17 08:12:06 +00001569QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) {
Sebastian Redl28507842009-02-26 14:39:58 +00001570 if (V->isTypeDependent())
1571 return Context.DependentTy;
Chris Lattnerdbb36972007-08-24 21:16:53 +00001572
Chris Lattnercc26ed72007-08-26 05:39:26 +00001573 // These operators return the element type of a complex type.
Chris Lattnerdbb36972007-08-24 21:16:53 +00001574 if (const ComplexType *CT = V->getType()->getAsComplexType())
1575 return CT->getElementType();
Chris Lattnercc26ed72007-08-26 05:39:26 +00001576
1577 // Otherwise they pass through real integer and floating point types here.
1578 if (V->getType()->isArithmeticType())
1579 return V->getType();
1580
1581 // Reject anything else.
Chris Lattnerba27e2a2009-02-17 08:12:06 +00001582 Diag(Loc, diag::err_realimag_invalid_type) << V->getType()
1583 << (isReal ? "__real" : "__imag");
Chris Lattnercc26ed72007-08-26 05:39:26 +00001584 return QualType();
Chris Lattnerdbb36972007-08-24 21:16:53 +00001585}
1586
1587
Reid Spencer5f016e22007-07-11 17:01:13 +00001588
Sebastian Redl0eb23302009-01-19 00:08:26 +00001589Action::OwningExprResult
1590Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
1591 tok::TokenKind Kind, ExprArg Input) {
1592 Expr *Arg = (Expr *)Input.get();
Douglas Gregor74253732008-11-19 15:42:04 +00001593
Reid Spencer5f016e22007-07-11 17:01:13 +00001594 UnaryOperator::Opcode Opc;
1595 switch (Kind) {
1596 default: assert(0 && "Unknown unary op!");
1597 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
1598 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
1599 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00001600
Douglas Gregor74253732008-11-19 15:42:04 +00001601 if (getLangOptions().CPlusPlus &&
1602 (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) {
1603 // Which overloaded operator?
Sebastian Redl0eb23302009-01-19 00:08:26 +00001604 OverloadedOperatorKind OverOp =
Douglas Gregor74253732008-11-19 15:42:04 +00001605 (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus;
1606
1607 // C++ [over.inc]p1:
1608 //
1609 // [...] If the function is a member function with one
1610 // parameter (which shall be of type int) or a non-member
1611 // function with two parameters (the second of which shall be
1612 // of type int), it defines the postfix increment operator ++
1613 // for objects of that type. When the postfix increment is
1614 // called as a result of using the ++ operator, the int
1615 // argument will have value zero.
1616 Expr *Args[2] = {
1617 Arg,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001618 new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0,
1619 /*isSigned=*/true), Context.IntTy, SourceLocation())
Douglas Gregor74253732008-11-19 15:42:04 +00001620 };
1621
1622 // Build the candidate set for overloading
1623 OverloadCandidateSet CandidateSet;
Douglas Gregor063daf62009-03-13 18:40:31 +00001624 AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet);
Douglas Gregor74253732008-11-19 15:42:04 +00001625
1626 // Perform overload resolution.
1627 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001628 switch (BestViableFunction(CandidateSet, OpLoc, Best)) {
Douglas Gregor74253732008-11-19 15:42:04 +00001629 case OR_Success: {
1630 // We found a built-in operator or an overloaded operator.
1631 FunctionDecl *FnDecl = Best->Function;
1632
1633 if (FnDecl) {
1634 // We matched an overloaded operator. Build a call to that
1635 // operator.
1636
1637 // Convert the arguments.
1638 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1639 if (PerformObjectArgumentInitialization(Arg, Method))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001640 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001641 } else {
1642 // Convert the arguments.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001643 if (PerformCopyInitialization(Arg,
Douglas Gregor74253732008-11-19 15:42:04 +00001644 FnDecl->getParamDecl(0)->getType(),
1645 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001646 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001647 }
1648
1649 // Determine the result type
Sebastian Redl0eb23302009-01-19 00:08:26 +00001650 QualType ResultTy
Douglas Gregor74253732008-11-19 15:42:04 +00001651 = FnDecl->getType()->getAsFunctionType()->getResultType();
1652 ResultTy = ResultTy.getNonReferenceType();
Sebastian Redl0eb23302009-01-19 00:08:26 +00001653
Douglas Gregor74253732008-11-19 15:42:04 +00001654 // Build the actual expression node.
Steve Naroff6ece14c2009-01-21 00:14:39 +00001655 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
Mike Stump488e25b2009-02-19 02:54:59 +00001656 SourceLocation());
Douglas Gregor74253732008-11-19 15:42:04 +00001657 UsualUnaryConversions(FnExpr);
1658
Sebastian Redl0eb23302009-01-19 00:08:26 +00001659 Input.release();
Douglas Gregor7ff69262009-05-27 05:00:47 +00001660 Args[0] = Arg;
Douglas Gregor063daf62009-03-13 18:40:31 +00001661 return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr,
1662 Args, 2, ResultTy,
1663 OpLoc));
Douglas Gregor74253732008-11-19 15:42:04 +00001664 } else {
1665 // We matched a built-in operator. Convert the arguments, then
1666 // break out so that we will build the appropriate built-in
1667 // operator node.
1668 if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0],
1669 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001670 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001671
1672 break;
Sebastian Redl0eb23302009-01-19 00:08:26 +00001673 }
Douglas Gregor74253732008-11-19 15:42:04 +00001674 }
1675
1676 case OR_No_Viable_Function:
1677 // No viable function; fall through to handling this as a
1678 // built-in operator, which will produce an error message for us.
1679 break;
1680
1681 case OR_Ambiguous:
1682 Diag(OpLoc, diag::err_ovl_ambiguous_oper)
1683 << UnaryOperator::getOpcodeStr(Opc)
1684 << Arg->getSourceRange();
1685 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001686 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001687
1688 case OR_Deleted:
1689 Diag(OpLoc, diag::err_ovl_deleted_oper)
1690 << Best->Function->isDeleted()
1691 << UnaryOperator::getOpcodeStr(Opc)
1692 << Arg->getSourceRange();
1693 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1694 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001695 }
1696
1697 // Either we found no viable overloaded operator or we matched a
1698 // built-in operator. In either case, fall through to trying to
1699 // build a built-in operation.
1700 }
1701
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00001702 QualType result = CheckIncrementDecrementOperand(Arg, OpLoc,
1703 Opc == UnaryOperator::PostInc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001704 if (result.isNull())
Sebastian Redl0eb23302009-01-19 00:08:26 +00001705 return ExprError();
1706 Input.release();
Steve Naroff6ece14c2009-01-21 00:14:39 +00001707 return Owned(new (Context) UnaryOperator(Arg, Opc, result, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001708}
1709
Sebastian Redl0eb23302009-01-19 00:08:26 +00001710Action::OwningExprResult
1711Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc,
1712 ExprArg Idx, SourceLocation RLoc) {
1713 Expr *LHSExp = static_cast<Expr*>(Base.get()),
1714 *RHSExp = static_cast<Expr*>(Idx.get());
Chris Lattner12d9ff62007-07-16 00:14:47 +00001715
Douglas Gregor337c6b92008-11-19 17:17:41 +00001716 if (getLangOptions().CPlusPlus &&
Douglas Gregor3384c9c2009-05-19 00:01:19 +00001717 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
1718 Base.release();
1719 Idx.release();
1720 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
1721 Context.DependentTy, RLoc));
1722 }
1723
1724 if (getLangOptions().CPlusPlus &&
Sebastian Redl0eb23302009-01-19 00:08:26 +00001725 (LHSExp->getType()->isRecordType() ||
Eli Friedman03f332a2008-12-15 22:34:21 +00001726 LHSExp->getType()->isEnumeralType() ||
1727 RHSExp->getType()->isRecordType() ||
1728 RHSExp->getType()->isEnumeralType())) {
Douglas Gregor337c6b92008-11-19 17:17:41 +00001729 // Add the appropriate overloaded operators (C++ [over.match.oper])
1730 // to the candidate set.
1731 OverloadCandidateSet CandidateSet;
1732 Expr *Args[2] = { LHSExp, RHSExp };
Douglas Gregor063daf62009-03-13 18:40:31 +00001733 AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet,
1734 SourceRange(LLoc, RLoc));
Sebastian Redl0eb23302009-01-19 00:08:26 +00001735
Douglas Gregor337c6b92008-11-19 17:17:41 +00001736 // Perform overload resolution.
1737 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001738 switch (BestViableFunction(CandidateSet, LLoc, Best)) {
Douglas Gregor337c6b92008-11-19 17:17:41 +00001739 case OR_Success: {
1740 // We found a built-in operator or an overloaded operator.
1741 FunctionDecl *FnDecl = Best->Function;
1742
1743 if (FnDecl) {
1744 // We matched an overloaded operator. Build a call to that
1745 // operator.
1746
1747 // Convert the arguments.
1748 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1749 if (PerformObjectArgumentInitialization(LHSExp, Method) ||
1750 PerformCopyInitialization(RHSExp,
1751 FnDecl->getParamDecl(0)->getType(),
1752 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001753 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001754 } else {
1755 // Convert the arguments.
1756 if (PerformCopyInitialization(LHSExp,
1757 FnDecl->getParamDecl(0)->getType(),
1758 "passing") ||
1759 PerformCopyInitialization(RHSExp,
1760 FnDecl->getParamDecl(1)->getType(),
1761 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001762 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001763 }
1764
1765 // Determine the result type
Sebastian Redl0eb23302009-01-19 00:08:26 +00001766 QualType ResultTy
Douglas Gregor337c6b92008-11-19 17:17:41 +00001767 = FnDecl->getType()->getAsFunctionType()->getResultType();
1768 ResultTy = ResultTy.getNonReferenceType();
Sebastian Redl0eb23302009-01-19 00:08:26 +00001769
Douglas Gregor337c6b92008-11-19 17:17:41 +00001770 // Build the actual expression node.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001771 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
1772 SourceLocation());
Douglas Gregor337c6b92008-11-19 17:17:41 +00001773 UsualUnaryConversions(FnExpr);
1774
Sebastian Redl0eb23302009-01-19 00:08:26 +00001775 Base.release();
1776 Idx.release();
Douglas Gregor7ff69262009-05-27 05:00:47 +00001777 Args[0] = LHSExp;
1778 Args[1] = RHSExp;
Douglas Gregor063daf62009-03-13 18:40:31 +00001779 return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript,
1780 FnExpr, Args, 2,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001781 ResultTy, LLoc));
Douglas Gregor337c6b92008-11-19 17:17:41 +00001782 } else {
1783 // We matched a built-in operator. Convert the arguments, then
1784 // break out so that we will build the appropriate built-in
1785 // operator node.
1786 if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0],
1787 "passing") ||
1788 PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1],
1789 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001790 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001791
1792 break;
1793 }
1794 }
1795
1796 case OR_No_Viable_Function:
1797 // No viable function; fall through to handling this as a
1798 // built-in operator, which will produce an error message for us.
1799 break;
1800
1801 case OR_Ambiguous:
1802 Diag(LLoc, diag::err_ovl_ambiguous_oper)
1803 << "[]"
1804 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1805 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001806 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001807
1808 case OR_Deleted:
1809 Diag(LLoc, diag::err_ovl_deleted_oper)
1810 << Best->Function->isDeleted()
1811 << "[]"
1812 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1813 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1814 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001815 }
1816
1817 // Either we found no viable overloaded operator or we matched a
1818 // built-in operator. In either case, fall through to trying to
1819 // build a built-in operation.
1820 }
1821
Chris Lattner12d9ff62007-07-16 00:14:47 +00001822 // Perform default conversions.
1823 DefaultFunctionArrayConversion(LHSExp);
1824 DefaultFunctionArrayConversion(RHSExp);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001825
Chris Lattner12d9ff62007-07-16 00:14:47 +00001826 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001827
Reid Spencer5f016e22007-07-11 17:01:13 +00001828 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001829 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stumpeed9cac2009-02-19 03:04:26 +00001830 // in the subscript position. As a result, we need to derive the array base
Reid Spencer5f016e22007-07-11 17:01:13 +00001831 // and index from the expression types.
Chris Lattner12d9ff62007-07-16 00:14:47 +00001832 Expr *BaseExpr, *IndexExpr;
1833 QualType ResultType;
Sebastian Redl28507842009-02-26 14:39:58 +00001834 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
1835 BaseExpr = LHSExp;
1836 IndexExpr = RHSExp;
1837 ResultType = Context.DependentTy;
1838 } else if (const PointerType *PTy = LHSTy->getAsPointerType()) {
Chris Lattner12d9ff62007-07-16 00:14:47 +00001839 BaseExpr = LHSExp;
1840 IndexExpr = RHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00001841 ResultType = PTy->getPointeeType();
Chris Lattnerbefee482007-07-31 16:53:04 +00001842 } else if (const PointerType *PTy = RHSTy->getAsPointerType()) {
Chris Lattner7a2e0472007-07-16 00:23:25 +00001843 // Handle the uncommon case of "123[Ptr]".
Chris Lattner12d9ff62007-07-16 00:14:47 +00001844 BaseExpr = RHSExp;
1845 IndexExpr = LHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00001846 ResultType = PTy->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00001847 } else if (const ObjCObjectPointerType *PTy =
1848 LHSTy->getAsObjCObjectPointerType()) {
1849 BaseExpr = LHSExp;
1850 IndexExpr = RHSExp;
1851 ResultType = PTy->getPointeeType();
1852 } else if (const ObjCObjectPointerType *PTy =
1853 RHSTy->getAsObjCObjectPointerType()) {
1854 // Handle the uncommon case of "123[Ptr]".
1855 BaseExpr = RHSExp;
1856 IndexExpr = LHSExp;
1857 ResultType = PTy->getPointeeType();
Chris Lattnerc8629632007-07-31 19:29:30 +00001858 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) {
1859 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner12d9ff62007-07-16 00:14:47 +00001860 IndexExpr = RHSExp;
Nate Begeman334a8022009-01-18 00:45:31 +00001861
Chris Lattner12d9ff62007-07-16 00:14:47 +00001862 // FIXME: need to deal with const...
1863 ResultType = VTy->getElementType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00001864 } else if (LHSTy->isArrayType()) {
1865 // If we see an array that wasn't promoted by
1866 // DefaultFunctionArrayConversion, it must be an array that
1867 // wasn't promoted because of the C90 rule that doesn't
1868 // allow promoting non-lvalue arrays. Warn, then
1869 // force the promotion here.
1870 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1871 LHSExp->getSourceRange();
1872 ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy));
1873 LHSTy = LHSExp->getType();
1874
1875 BaseExpr = LHSExp;
1876 IndexExpr = RHSExp;
1877 ResultType = LHSTy->getAsPointerType()->getPointeeType();
1878 } else if (RHSTy->isArrayType()) {
1879 // Same as previous, except for 123[f().a] case
1880 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1881 RHSExp->getSourceRange();
1882 ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy));
1883 RHSTy = RHSExp->getType();
1884
1885 BaseExpr = RHSExp;
1886 IndexExpr = LHSExp;
1887 ResultType = RHSTy->getAsPointerType()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001888 } else {
Chris Lattner338395d2009-04-25 22:50:55 +00001889 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
1890 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +00001891 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001892 // C99 6.5.2.1p1
Sebastian Redl28507842009-02-26 14:39:58 +00001893 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent())
Chris Lattner338395d2009-04-25 22:50:55 +00001894 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
1895 << IndexExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00001896
Douglas Gregore7450f52009-03-24 19:52:54 +00001897 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
1898 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
1899 // type. Note that Functions are not objects, and that (in C99 parlance)
1900 // incomplete types are not object types.
1901 if (ResultType->isFunctionType()) {
1902 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
1903 << ResultType << BaseExpr->getSourceRange();
1904 return ExprError();
1905 }
Chris Lattner1efaa952009-04-24 00:30:45 +00001906
Douglas Gregore7450f52009-03-24 19:52:54 +00001907 if (!ResultType->isDependentType() &&
Chris Lattner1efaa952009-04-24 00:30:45 +00001908 RequireCompleteType(LLoc, ResultType, diag::err_subscript_incomplete_type,
Douglas Gregore7450f52009-03-24 19:52:54 +00001909 BaseExpr->getSourceRange()))
1910 return ExprError();
Chris Lattner1efaa952009-04-24 00:30:45 +00001911
1912 // Diagnose bad cases where we step over interface counts.
1913 if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
1914 Diag(LLoc, diag::err_subscript_nonfragile_interface)
1915 << ResultType << BaseExpr->getSourceRange();
1916 return ExprError();
1917 }
1918
Sebastian Redl0eb23302009-01-19 00:08:26 +00001919 Base.release();
1920 Idx.release();
Mike Stumpeed9cac2009-02-19 03:04:26 +00001921 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001922 ResultType, RLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001923}
1924
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001925QualType Sema::
Nate Begeman213541a2008-04-18 23:10:10 +00001926CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc,
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001927 IdentifierInfo &CompName, SourceLocation CompLoc) {
Nate Begeman213541a2008-04-18 23:10:10 +00001928 const ExtVectorType *vecType = baseType->getAsExtVectorType();
Nate Begeman8a997642008-05-09 06:41:27 +00001929
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001930 // The vector accessor can't exceed the number of elements.
1931 const char *compStr = CompName.getName();
Nate Begeman353417a2009-01-18 01:47:54 +00001932
Mike Stumpeed9cac2009-02-19 03:04:26 +00001933 // This flag determines whether or not the component is one of the four
Nate Begeman353417a2009-01-18 01:47:54 +00001934 // special names that indicate a subset of exactly half the elements are
1935 // to be selected.
1936 bool HalvingSwizzle = false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00001937
Nate Begeman353417a2009-01-18 01:47:54 +00001938 // This flag determines whether or not CompName has an 's' char prefix,
1939 // indicating that it is a string of hex values to be used as vector indices.
Nate Begeman131f4652009-06-25 21:06:09 +00001940 bool HexSwizzle = *compStr == 's' || *compStr == 'S';
Nate Begeman8a997642008-05-09 06:41:27 +00001941
1942 // Check that we've found one of the special components, or that the component
1943 // names must come from the same set.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001944 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
Nate Begeman353417a2009-01-18 01:47:54 +00001945 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
1946 HalvingSwizzle = true;
Nate Begeman8a997642008-05-09 06:41:27 +00001947 } else if (vecType->getPointAccessorIdx(*compStr) != -1) {
Chris Lattner88dca042007-08-02 22:33:49 +00001948 do
1949 compStr++;
1950 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
Nate Begeman353417a2009-01-18 01:47:54 +00001951 } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) {
Chris Lattner88dca042007-08-02 22:33:49 +00001952 do
1953 compStr++;
Nate Begeman353417a2009-01-18 01:47:54 +00001954 while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1);
Chris Lattner88dca042007-08-02 22:33:49 +00001955 }
Nate Begeman353417a2009-01-18 01:47:54 +00001956
Mike Stumpeed9cac2009-02-19 03:04:26 +00001957 if (!HalvingSwizzle && *compStr) {
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001958 // We didn't get to the end of the string. This means the component names
1959 // didn't come from the same set *or* we encountered an illegal name.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001960 Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
1961 << std::string(compStr,compStr+1) << SourceRange(CompLoc);
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001962 return QualType();
1963 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00001964
Nate Begeman353417a2009-01-18 01:47:54 +00001965 // Ensure no component accessor exceeds the width of the vector type it
1966 // operates on.
1967 if (!HalvingSwizzle) {
1968 compStr = CompName.getName();
1969
1970 if (HexSwizzle)
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001971 compStr++;
Nate Begeman353417a2009-01-18 01:47:54 +00001972
1973 while (*compStr) {
1974 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
1975 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
1976 << baseType << SourceRange(CompLoc);
1977 return QualType();
1978 }
1979 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001980 }
Nate Begeman8a997642008-05-09 06:41:27 +00001981
Nate Begeman353417a2009-01-18 01:47:54 +00001982 // If this is a halving swizzle, verify that the base type has an even
1983 // number of elements.
1984 if (HalvingSwizzle && (vecType->getNumElements() & 1U)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001985 Diag(OpLoc, diag::err_ext_vector_component_requires_even)
Chris Lattnerd1625842008-11-24 06:25:27 +00001986 << baseType << SourceRange(CompLoc);
Nate Begeman8a997642008-05-09 06:41:27 +00001987 return QualType();
1988 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00001989
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001990 // The component accessor looks fine - now we need to compute the actual type.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001991 // The vector type is implied by the component accessor. For example,
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001992 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begeman353417a2009-01-18 01:47:54 +00001993 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
Nate Begeman8a997642008-05-09 06:41:27 +00001994 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
Nate Begeman353417a2009-01-18 01:47:54 +00001995 unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2
1996 : CompName.getLength();
1997 if (HexSwizzle)
1998 CompSize--;
1999
Steve Naroffe1b31fe2007-07-27 22:15:19 +00002000 if (CompSize == 1)
2001 return vecType->getElementType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002002
Nate Begeman213541a2008-04-18 23:10:10 +00002003 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize);
Mike Stumpeed9cac2009-02-19 03:04:26 +00002004 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begeman213541a2008-04-18 23:10:10 +00002005 // diagostics look bad. We want extended vector types to appear built-in.
2006 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) {
2007 if (ExtVectorDecls[i]->getUnderlyingType() == VT)
2008 return Context.getTypedefType(ExtVectorDecls[i]);
Steve Naroffbea0b342007-07-29 16:33:31 +00002009 }
2010 return VT; // should never get here (a typedef type should always be found).
Steve Naroffe1b31fe2007-07-27 22:15:19 +00002011}
2012
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002013static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
2014 IdentifierInfo &Member,
Douglas Gregor6ab35242009-04-09 21:40:53 +00002015 const Selector &Sel,
2016 ASTContext &Context) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002017
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002018 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(&Member))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002019 return PD;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002020 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002021 return OMD;
2022
2023 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(),
2024 E = PDecl->protocol_end(); I != E; ++I) {
Douglas Gregor6ab35242009-04-09 21:40:53 +00002025 if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel,
2026 Context))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002027 return D;
2028 }
2029 return 0;
2030}
2031
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00002032static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy,
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002033 IdentifierInfo &Member,
Douglas Gregor6ab35242009-04-09 21:40:53 +00002034 const Selector &Sel,
2035 ASTContext &Context) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002036 // Check protocols on qualified interfaces.
2037 Decl *GDecl = 0;
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00002038 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002039 E = QIdTy->qual_end(); I != E; ++I) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002040 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002041 GDecl = PD;
2042 break;
2043 }
2044 // Also must look for a getter name which uses property syntax.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002045 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002046 GDecl = OMD;
2047 break;
2048 }
2049 }
2050 if (!GDecl) {
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00002051 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002052 E = QIdTy->qual_end(); I != E; ++I) {
2053 // Search in the protocol-qualifier list of current protocol.
Douglas Gregor6ab35242009-04-09 21:40:53 +00002054 GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context);
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002055 if (GDecl)
2056 return GDecl;
2057 }
2058 }
2059 return GDecl;
2060}
Chris Lattner76a642f2009-02-15 22:43:40 +00002061
Fariborz Jahanianef79bc92009-04-07 18:28:06 +00002062/// FindMethodInNestedImplementations - Look up a method in current and
2063/// all base class implementations.
2064///
2065ObjCMethodDecl *Sema::FindMethodInNestedImplementations(
2066 const ObjCInterfaceDecl *IFace,
2067 const Selector &Sel) {
2068 ObjCMethodDecl *Method = 0;
Douglas Gregor8fc463a2009-04-24 00:11:27 +00002069 if (ObjCImplementationDecl *ImpDecl
2070 = LookupObjCImplementation(IFace->getIdentifier()))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002071 Method = ImpDecl->getInstanceMethod(Sel);
Fariborz Jahanianef79bc92009-04-07 18:28:06 +00002072
2073 if (!Method && IFace->getSuperClass())
2074 return FindMethodInNestedImplementations(IFace->getSuperClass(), Sel);
2075 return Method;
2076}
2077
Sebastian Redl0eb23302009-01-19 00:08:26 +00002078Action::OwningExprResult
2079Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
2080 tok::TokenKind OpKind, SourceLocation MemberLoc,
Fariborz Jahaniana6e3ac52009-03-04 22:30:12 +00002081 IdentifierInfo &Member,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002082 DeclPtrTy ObjCImpDecl) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00002083 Expr *BaseExpr = Base.takeAs<Expr>();
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002084 assert(BaseExpr && "no record expression");
Steve Naroff3cc4af82007-12-16 21:42:28 +00002085
2086 // Perform default conversions.
2087 DefaultFunctionArrayConversion(BaseExpr);
Sebastian Redl0eb23302009-01-19 00:08:26 +00002088
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002089 QualType BaseType = BaseExpr->getType();
2090 assert(!BaseType.isNull() && "no type for member expression");
Sebastian Redl0eb23302009-01-19 00:08:26 +00002091
Chris Lattner68a057b2008-07-21 04:36:39 +00002092 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
2093 // must have pointer type, and the accessed type is the pointee.
Reid Spencer5f016e22007-07-11 17:01:13 +00002094 if (OpKind == tok::arrow) {
Anders Carlssonffce2df2009-05-15 23:10:19 +00002095 if (BaseType->isDependentType())
Douglas Gregor1c0ca592009-05-22 21:13:27 +00002096 return Owned(new (Context) CXXUnresolvedMemberExpr(Context,
2097 BaseExpr, true,
2098 OpLoc,
2099 DeclarationName(&Member),
2100 MemberLoc));
Anders Carlssonffce2df2009-05-15 23:10:19 +00002101 else if (const PointerType *PT = BaseType->getAsPointerType())
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002102 BaseType = PT->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00002103 else if (BaseType->isObjCObjectPointerType())
2104 ;
Douglas Gregor8ba10742008-11-20 16:27:02 +00002105 else if (getLangOptions().CPlusPlus && BaseType->isRecordType())
Sebastian Redl0eb23302009-01-19 00:08:26 +00002106 return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc,
2107 MemberLoc, Member));
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002108 else
Sebastian Redl0eb23302009-01-19 00:08:26 +00002109 return ExprError(Diag(MemberLoc,
2110 diag::err_typecheck_member_reference_arrow)
2111 << BaseType << BaseExpr->getSourceRange());
Anders Carlssonffce2df2009-05-15 23:10:19 +00002112 } else {
Anders Carlsson4ef27702009-05-16 20:31:20 +00002113 if (BaseType->isDependentType()) {
2114 // Require that the base type isn't a pointer type
2115 // (so we'll report an error for)
2116 // T* t;
2117 // t.f;
2118 //
2119 // In Obj-C++, however, the above expression is valid, since it could be
2120 // accessing the 'f' property if T is an Obj-C interface. The extra check
2121 // allows this, while still reporting an error if T is a struct pointer.
2122 const PointerType *PT = BaseType->getAsPointerType();
2123
2124 if (!PT || (getLangOptions().ObjC1 &&
2125 !PT->getPointeeType()->isRecordType()))
Douglas Gregor1c0ca592009-05-22 21:13:27 +00002126 return Owned(new (Context) CXXUnresolvedMemberExpr(Context,
2127 BaseExpr, false,
2128 OpLoc,
2129 DeclarationName(&Member),
2130 MemberLoc));
Anders Carlsson4ef27702009-05-16 20:31:20 +00002131 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002132 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002133
Chris Lattner68a057b2008-07-21 04:36:39 +00002134 // Handle field access to simple records. This also handles access to fields
2135 // of the ObjC 'id' struct.
Chris Lattnerc8629632007-07-31 19:29:30 +00002136 if (const RecordType *RTy = BaseType->getAsRecordType()) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002137 RecordDecl *RDecl = RTy->getDecl();
Douglas Gregor86447ec2009-03-09 16:13:40 +00002138 if (RequireCompleteType(OpLoc, BaseType,
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002139 diag::err_typecheck_incomplete_tag,
2140 BaseExpr->getSourceRange()))
2141 return ExprError();
2142
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002143 // The record definition is complete, now make sure the member is valid.
Mike Stump390b4cc2009-05-16 07:39:55 +00002144 // FIXME: Qualified name lookup for C++ is a bit more complicated than this.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002145 LookupResult Result
Mike Stumpeed9cac2009-02-19 03:04:26 +00002146 = LookupQualifiedName(RDecl, DeclarationName(&Member),
Douglas Gregor4c921ae2009-01-30 01:04:22 +00002147 LookupMemberName, false);
Douglas Gregor7176fff2009-01-15 00:26:24 +00002148
Douglas Gregor7176fff2009-01-15 00:26:24 +00002149 if (!Result)
Sebastian Redl0eb23302009-01-19 00:08:26 +00002150 return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member)
2151 << &Member << BaseExpr->getSourceRange());
Chris Lattnera3d25242009-03-31 08:18:48 +00002152 if (Result.isAmbiguous()) {
Sebastian Redl0eb23302009-01-19 00:08:26 +00002153 DiagnoseAmbiguousLookup(Result, DeclarationName(&Member),
2154 MemberLoc, BaseExpr->getSourceRange());
2155 return ExprError();
Chris Lattnera3d25242009-03-31 08:18:48 +00002156 }
2157
2158 NamedDecl *MemberDecl = Result;
Douglas Gregor44b43212008-12-11 16:49:14 +00002159
Chris Lattner56cd21b2009-02-13 22:08:30 +00002160 // If the decl being referenced had an error, return an error for this
2161 // sub-expr without emitting another error, in order to avoid cascading
2162 // error cases.
2163 if (MemberDecl->isInvalidDecl())
2164 return ExprError();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002165
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002166 // Check the use of this field
2167 if (DiagnoseUseOfDecl(MemberDecl, MemberLoc))
2168 return ExprError();
Chris Lattner56cd21b2009-02-13 22:08:30 +00002169
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002170 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002171 // We may have found a field within an anonymous union or struct
2172 // (C++ [class.union]).
2173 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
Sebastian Redlcd965b92009-01-18 18:53:16 +00002174 return BuildAnonymousStructUnionMemberReference(MemberLoc, FD,
Sebastian Redl0eb23302009-01-19 00:08:26 +00002175 BaseExpr, OpLoc);
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002176
Douglas Gregor86f19402008-12-20 23:49:58 +00002177 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
2178 // FIXME: Handle address space modifiers
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002179 QualType MemberType = FD->getType();
Douglas Gregor86f19402008-12-20 23:49:58 +00002180 if (const ReferenceType *Ref = MemberType->getAsReferenceType())
2181 MemberType = Ref->getPointeeType();
2182 else {
2183 unsigned combinedQualifiers =
2184 MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers();
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002185 if (FD->isMutable())
Douglas Gregor86f19402008-12-20 23:49:58 +00002186 combinedQualifiers &= ~QualType::Const;
2187 MemberType = MemberType.getQualifiedType(combinedQualifiers);
2188 }
Eli Friedman51019072008-02-06 22:48:16 +00002189
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002190 MarkDeclarationReferenced(MemberLoc, FD);
Steve Naroff6ece14c2009-01-21 00:14:39 +00002191 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD,
2192 MemberLoc, MemberType));
Chris Lattnera3d25242009-03-31 08:18:48 +00002193 }
2194
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002195 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) {
2196 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Steve Naroff6ece14c2009-01-21 00:14:39 +00002197 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow,
Chris Lattnera3d25242009-03-31 08:18:48 +00002198 Var, MemberLoc,
2199 Var->getType().getNonReferenceType()));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002200 }
2201 if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) {
2202 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Mike Stumpeed9cac2009-02-19 03:04:26 +00002203 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow,
Chris Lattnera3d25242009-03-31 08:18:48 +00002204 MemberFn, MemberLoc,
2205 MemberFn->getType()));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002206 }
Chris Lattnera3d25242009-03-31 08:18:48 +00002207 if (OverloadedFunctionDecl *Ovl
2208 = dyn_cast<OverloadedFunctionDecl>(MemberDecl))
Steve Naroff6ece14c2009-01-21 00:14:39 +00002209 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl,
Chris Lattnera3d25242009-03-31 08:18:48 +00002210 MemberLoc, Context.OverloadTy));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002211 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) {
2212 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Mike Stumpeed9cac2009-02-19 03:04:26 +00002213 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow,
2214 Enum, MemberLoc, Enum->getType()));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002215 }
Chris Lattnera3d25242009-03-31 08:18:48 +00002216 if (isa<TypeDecl>(MemberDecl))
Sebastian Redl0eb23302009-01-19 00:08:26 +00002217 return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type)
2218 << DeclarationName(&Member) << int(OpKind == tok::arrow));
Eli Friedman51019072008-02-06 22:48:16 +00002219
Douglas Gregor86f19402008-12-20 23:49:58 +00002220 // We found a declaration kind that we didn't expect. This is a
2221 // generic error message that tells the user that she can't refer
2222 // to this member with '.' or '->'.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002223 return ExprError(Diag(MemberLoc,
2224 diag::err_typecheck_member_reference_unknown)
2225 << DeclarationName(&Member) << int(OpKind == tok::arrow));
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002226 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002227
Steve Naroff14108da2009-07-10 23:34:53 +00002228 // Handle properties on ObjC 'Class' types.
Steve Naroff430ee5a2009-07-13 17:19:15 +00002229 if (OpKind == tok::period && BaseType->isObjCClassType()) {
Steve Naroff14108da2009-07-10 23:34:53 +00002230 // Also must look for a getter name which uses property syntax.
2231 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
2232 if (ObjCMethodDecl *MD = getCurMethodDecl()) {
2233 ObjCInterfaceDecl *IFace = MD->getClassInterface();
2234 ObjCMethodDecl *Getter;
2235 // FIXME: need to also look locally in the implementation.
2236 if ((Getter = IFace->lookupClassMethod(Sel))) {
2237 // Check the use of this method.
2238 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2239 return ExprError();
2240 }
2241 // If we found a getter then this may be a valid dot-reference, we
2242 // will look for the matching setter, in case it is needed.
2243 Selector SetterSel =
2244 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2245 PP.getSelectorTable(), &Member);
2246 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
2247 if (!Setter) {
2248 // If this reference is in an @implementation, also check for 'private'
2249 // methods.
2250 Setter = FindMethodInNestedImplementations(IFace, SetterSel);
2251 }
2252 // Look through local category implementations associated with the class.
2253 if (!Setter) {
2254 for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) {
2255 if (ObjCCategoryImpls[i]->getClassInterface() == IFace)
2256 Setter = ObjCCategoryImpls[i]->getClassMethod(SetterSel);
2257 }
2258 }
2259
2260 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2261 return ExprError();
2262
2263 if (Getter || Setter) {
2264 QualType PType;
2265
2266 if (Getter)
2267 PType = Getter->getResultType();
2268 else {
2269 for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(),
2270 E = Setter->param_end(); PI != E; ++PI)
2271 PType = (*PI)->getType();
2272 }
2273 // FIXME: we must check that the setter has property type.
2274 return Owned(new (Context) ObjCKVCRefExpr(Getter, PType,
2275 Setter, MemberLoc, BaseExpr));
2276 }
2277 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2278 << &Member << BaseType);
2279 }
2280 }
Chris Lattnera38e6b12008-07-21 04:59:05 +00002281 // Handle access to Objective-C instance variables, such as "Obj->ivar" and
2282 // (*Obj).ivar.
Steve Naroff14108da2009-07-10 23:34:53 +00002283 if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) ||
2284 (OpKind == tok::period && BaseType->isObjCInterfaceType())) {
2285 const ObjCObjectPointerType *OPT = BaseType->getAsObjCObjectPointerType();
2286 const ObjCInterfaceType *IFaceT =
2287 OPT ? OPT->getInterfaceType() : BaseType->getAsObjCInterfaceType();
Steve Naroff14108da2009-07-10 23:34:53 +00002288
Steve Naroffc70e8d92009-07-16 00:25:06 +00002289 if (IFaceT) {
2290 ObjCInterfaceDecl *IDecl = IFaceT->getDecl();
2291 ObjCInterfaceDecl *ClassDeclared;
2292 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(&Member, ClassDeclared);
2293
2294 if (IV) {
2295 // If the decl being referenced had an error, return an error for this
2296 // sub-expr without emitting another error, in order to avoid cascading
2297 // error cases.
2298 if (IV->isInvalidDecl())
2299 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002300
Steve Naroffc70e8d92009-07-16 00:25:06 +00002301 // Check whether we can reference this field.
2302 if (DiagnoseUseOfDecl(IV, MemberLoc))
2303 return ExprError();
2304 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
2305 IV->getAccessControl() != ObjCIvarDecl::Package) {
2306 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
2307 if (ObjCMethodDecl *MD = getCurMethodDecl())
2308 ClassOfMethodDecl = MD->getClassInterface();
2309 else if (ObjCImpDecl && getCurFunctionDecl()) {
2310 // Case of a c-function declared inside an objc implementation.
2311 // FIXME: For a c-style function nested inside an objc implementation
2312 // class, there is no implementation context available, so we pass
2313 // down the context as argument to this routine. Ideally, this context
2314 // need be passed down in the AST node and somehow calculated from the
2315 // AST for a function decl.
2316 Decl *ImplDecl = ObjCImpDecl.getAs<Decl>();
2317 if (ObjCImplementationDecl *IMPD =
2318 dyn_cast<ObjCImplementationDecl>(ImplDecl))
2319 ClassOfMethodDecl = IMPD->getClassInterface();
2320 else if (ObjCCategoryImplDecl* CatImplClass =
2321 dyn_cast<ObjCCategoryImplDecl>(ImplDecl))
2322 ClassOfMethodDecl = CatImplClass->getClassInterface();
2323 }
2324
2325 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
2326 if (ClassDeclared != IDecl ||
2327 ClassOfMethodDecl != ClassDeclared)
2328 Diag(MemberLoc, diag::error_private_ivar_access)
2329 << IV->getDeclName();
2330 }
2331 // @protected
2332 else if (!IDecl->isSuperClassOf(ClassOfMethodDecl))
2333 Diag(MemberLoc, diag::error_protected_ivar_access)
2334 << IV->getDeclName();
Steve Naroffb06d8752009-03-04 18:34:24 +00002335 }
Steve Naroffc70e8d92009-07-16 00:25:06 +00002336
2337 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(),
2338 MemberLoc, BaseExpr,
2339 OpKind == tok::arrow));
Fariborz Jahanian935fd762009-03-03 01:21:12 +00002340 }
Steve Naroffc70e8d92009-07-16 00:25:06 +00002341 return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
2342 << IDecl->getDeclName() << &Member
2343 << BaseExpr->getSourceRange());
Fariborz Jahanianaaa63a72008-12-13 22:20:28 +00002344 }
Steve Naroffc70e8d92009-07-16 00:25:06 +00002345 // We don't have an interface. FIXME: deal with ObjC builtin 'id' type.
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002346 }
Steve Naroffde2e22d2009-07-15 18:40:39 +00002347 // Handle properties on 'id' and qualified "id".
2348 if (OpKind == tok::period && (BaseType->isObjCIdType() ||
2349 BaseType->isObjCQualifiedIdType())) {
2350 const ObjCObjectPointerType *QIdTy = BaseType->getAsObjCObjectPointerType();
2351
Steve Naroff14108da2009-07-10 23:34:53 +00002352 // Check protocols on qualified interfaces.
2353 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
2354 if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) {
2355 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
2356 // Check the use of this declaration
2357 if (DiagnoseUseOfDecl(PD, MemberLoc))
2358 return ExprError();
2359
2360 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2361 MemberLoc, BaseExpr));
2362 }
2363 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
2364 // Check the use of this method.
2365 if (DiagnoseUseOfDecl(OMD, MemberLoc))
2366 return ExprError();
2367
2368 return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel,
2369 OMD->getResultType(),
2370 OMD, OpLoc, MemberLoc,
2371 NULL, 0));
2372 }
2373 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002374
Steve Naroff14108da2009-07-10 23:34:53 +00002375 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2376 << &Member << BaseType);
2377 }
Chris Lattnera38e6b12008-07-21 04:59:05 +00002378 // Handle Objective-C property access, which is "Obj.property" where Obj is a
2379 // pointer to a (potentially qualified) interface type.
Steve Naroff14108da2009-07-10 23:34:53 +00002380 const ObjCObjectPointerType *OPT;
2381 if (OpKind == tok::period &&
2382 (OPT = BaseType->getAsObjCInterfacePointerType())) {
2383 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
2384 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
2385
Daniel Dunbar2307d312008-09-03 01:05:41 +00002386 // Search for a declared property first.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002387 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(&Member)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002388 // Check whether we can reference this property.
2389 if (DiagnoseUseOfDecl(PD, MemberLoc))
2390 return ExprError();
Fariborz Jahanian4c2743f2009-05-08 19:36:34 +00002391 QualType ResTy = PD->getType();
2392 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002393 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Fariborz Jahanianc001e892009-05-08 20:20:55 +00002394 if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))
2395 ResTy = Getter->getResultType();
Fariborz Jahanian4c2743f2009-05-08 19:36:34 +00002396 return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy,
Chris Lattner7eba82e2009-02-16 18:35:08 +00002397 MemberLoc, BaseExpr));
2398 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00002399 // Check protocols on qualified interfaces.
Steve Naroff14108da2009-07-10 23:34:53 +00002400 for (ObjCObjectPointerType::qual_iterator I = IFaceT->qual_begin(),
2401 E = IFaceT->qual_end(); I != E; ++I)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002402 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002403 // Check whether we can reference this property.
2404 if (DiagnoseUseOfDecl(PD, MemberLoc))
2405 return ExprError();
Chris Lattner7eba82e2009-02-16 18:35:08 +00002406
Steve Naroff6ece14c2009-01-21 00:14:39 +00002407 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
Chris Lattner7eba82e2009-02-16 18:35:08 +00002408 MemberLoc, BaseExpr));
2409 }
Steve Naroff14108da2009-07-10 23:34:53 +00002410 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2411 E = OPT->qual_end(); I != E; ++I)
2412 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) {
2413 // Check whether we can reference this property.
2414 if (DiagnoseUseOfDecl(PD, MemberLoc))
2415 return ExprError();
Daniel Dunbar2307d312008-09-03 01:05:41 +00002416
Steve Naroff14108da2009-07-10 23:34:53 +00002417 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2418 MemberLoc, BaseExpr));
2419 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00002420 // If that failed, look for an "implicit" property by seeing if the nullary
2421 // selector is implemented.
2422
2423 // FIXME: The logic for looking up nullary and unary selectors should be
2424 // shared with the code in ActOnInstanceMessage.
2425
2426 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002427 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Sebastian Redl0eb23302009-01-19 00:08:26 +00002428
Daniel Dunbar2307d312008-09-03 01:05:41 +00002429 // If this reference is in an @implementation, check for 'private' methods.
2430 if (!Getter)
Fariborz Jahanianef79bc92009-04-07 18:28:06 +00002431 Getter = FindMethodInNestedImplementations(IFace, Sel);
Daniel Dunbar2307d312008-09-03 01:05:41 +00002432
Steve Naroff7692ed62008-10-22 19:16:27 +00002433 // Look through local category implementations associated with the class.
2434 if (!Getter) {
2435 for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Getter; i++) {
2436 if (ObjCCategoryImpls[i]->getClassInterface() == IFace)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002437 Getter = ObjCCategoryImpls[i]->getInstanceMethod(Sel);
Steve Naroff7692ed62008-10-22 19:16:27 +00002438 }
2439 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00002440 if (Getter) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002441 // Check if we can reference this property.
2442 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2443 return ExprError();
Steve Naroff1ca66942009-03-11 13:48:17 +00002444 }
2445 // If we found a getter then this may be a valid dot-reference, we
2446 // will look for the matching setter, in case it is needed.
2447 Selector SetterSel =
2448 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2449 PP.getSelectorTable(), &Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002450 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
Steve Naroff1ca66942009-03-11 13:48:17 +00002451 if (!Setter) {
2452 // If this reference is in an @implementation, also check for 'private'
2453 // methods.
Fariborz Jahanianef79bc92009-04-07 18:28:06 +00002454 Setter = FindMethodInNestedImplementations(IFace, SetterSel);
Steve Naroff1ca66942009-03-11 13:48:17 +00002455 }
2456 // Look through local category implementations associated with the class.
2457 if (!Setter) {
2458 for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) {
2459 if (ObjCCategoryImpls[i]->getClassInterface() == IFace)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002460 Setter = ObjCCategoryImpls[i]->getInstanceMethod(SetterSel);
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +00002461 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00002462 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002463
Steve Naroff1ca66942009-03-11 13:48:17 +00002464 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2465 return ExprError();
2466
2467 if (Getter || Setter) {
2468 QualType PType;
2469
2470 if (Getter)
2471 PType = Getter->getResultType();
2472 else {
2473 for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(),
2474 E = Setter->param_end(); PI != E; ++PI)
2475 PType = (*PI)->getType();
2476 }
2477 // FIXME: we must check that the setter has property type.
2478 return Owned(new (Context) ObjCKVCRefExpr(Getter, PType,
2479 Setter, MemberLoc, BaseExpr));
2480 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002481 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2482 << &Member << BaseType);
Fariborz Jahanian232220c2007-11-12 22:29:28 +00002483 }
Steve Naroffdd53eb52009-03-05 20:12:00 +00002484
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002485 // Handle 'field access' to vectors, such as 'V.xx'.
Chris Lattner73525de2009-02-16 21:11:58 +00002486 if (BaseType->isExtVectorType()) {
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002487 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc);
2488 if (ret.isNull())
Sebastian Redl0eb23302009-01-19 00:08:26 +00002489 return ExprError();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002490 return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member,
Steve Naroff6ece14c2009-01-21 00:14:39 +00002491 MemberLoc));
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002492 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002493
Douglas Gregor214f31a2009-03-27 06:00:30 +00002494 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
2495 << BaseType << BaseExpr->getSourceRange();
2496
2497 // If the user is trying to apply -> or . to a function or function
2498 // pointer, it's probably because they forgot parentheses to call
2499 // the function. Suggest the addition of those parentheses.
2500 if (BaseType == Context.OverloadTy ||
2501 BaseType->isFunctionType() ||
2502 (BaseType->isPointerType() &&
2503 BaseType->getAsPointerType()->isFunctionType())) {
2504 SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd());
2505 Diag(Loc, diag::note_member_reference_needs_call)
2506 << CodeModificationHint::CreateInsertion(Loc, "()");
2507 }
2508
2509 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002510}
2511
Douglas Gregor88a35142008-12-22 05:46:06 +00002512/// ConvertArgumentsForCall - Converts the arguments specified in
2513/// Args/NumArgs to the parameter types of the function FDecl with
2514/// function prototype Proto. Call is the call expression itself, and
2515/// Fn is the function expression. For a C++ member function, this
2516/// routine does not attempt to convert the object argument. Returns
2517/// true if the call is ill-formed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00002518bool
2519Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor88a35142008-12-22 05:46:06 +00002520 FunctionDecl *FDecl,
Douglas Gregor72564e72009-02-26 23:50:07 +00002521 const FunctionProtoType *Proto,
Douglas Gregor88a35142008-12-22 05:46:06 +00002522 Expr **Args, unsigned NumArgs,
2523 SourceLocation RParenLoc) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00002524 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor88a35142008-12-22 05:46:06 +00002525 // assignment, to the types of the corresponding parameter, ...
2526 unsigned NumArgsInProto = Proto->getNumArgs();
2527 unsigned NumArgsToCheck = NumArgs;
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002528 bool Invalid = false;
2529
Douglas Gregor88a35142008-12-22 05:46:06 +00002530 // If too few arguments are available (and we don't have default
2531 // arguments for the remaining parameters), don't make the call.
2532 if (NumArgs < NumArgsInProto) {
2533 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
2534 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
2535 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange();
2536 // Use default arguments for missing arguments
2537 NumArgsToCheck = NumArgsInProto;
Ted Kremenek8189cde2009-02-07 01:47:29 +00002538 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor88a35142008-12-22 05:46:06 +00002539 }
2540
2541 // If too many are passed and not variadic, error on the extras and drop
2542 // them.
2543 if (NumArgs > NumArgsInProto) {
2544 if (!Proto->isVariadic()) {
2545 Diag(Args[NumArgsInProto]->getLocStart(),
2546 diag::err_typecheck_call_too_many_args)
2547 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange()
2548 << SourceRange(Args[NumArgsInProto]->getLocStart(),
2549 Args[NumArgs-1]->getLocEnd());
2550 // This deletes the extra arguments.
Ted Kremenek8189cde2009-02-07 01:47:29 +00002551 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002552 Invalid = true;
Douglas Gregor88a35142008-12-22 05:46:06 +00002553 }
2554 NumArgsToCheck = NumArgsInProto;
2555 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002556
Douglas Gregor88a35142008-12-22 05:46:06 +00002557 // Continue to check argument types (even if we have too few/many args).
2558 for (unsigned i = 0; i != NumArgsToCheck; i++) {
2559 QualType ProtoArgType = Proto->getArgType(i);
Mike Stumpeed9cac2009-02-19 03:04:26 +00002560
Douglas Gregor88a35142008-12-22 05:46:06 +00002561 Expr *Arg;
Douglas Gregor61366e92008-12-24 00:01:03 +00002562 if (i < NumArgs) {
Douglas Gregor88a35142008-12-22 05:46:06 +00002563 Arg = Args[i];
Douglas Gregor61366e92008-12-24 00:01:03 +00002564
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002565 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2566 ProtoArgType,
2567 diag::err_call_incomplete_argument,
2568 Arg->getSourceRange()))
2569 return true;
2570
Douglas Gregor61366e92008-12-24 00:01:03 +00002571 // Pass the argument.
2572 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
2573 return true;
Anders Carlsson5e300d12009-06-12 16:51:40 +00002574 } else {
2575 if (FDecl->getParamDecl(i)->hasUnparsedDefaultArg()) {
2576 Diag (Call->getSourceRange().getBegin(),
2577 diag::err_use_of_default_argument_to_function_declared_later) <<
2578 FDecl << cast<CXXRecordDecl>(FDecl->getDeclContext())->getDeclName();
2579 Diag(UnparsedDefaultArgLocs[FDecl->getParamDecl(i)],
2580 diag::note_default_argument_declared_here);
Anders Carlssonf54741e2009-06-16 03:37:31 +00002581 } else {
2582 Expr *DefaultExpr = FDecl->getParamDecl(i)->getDefaultArg();
2583
2584 // If the default expression creates temporaries, we need to
2585 // push them to the current stack of expression temporaries so they'll
2586 // be properly destroyed.
2587 if (CXXExprWithTemporaries *E
2588 = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) {
2589 assert(!E->shouldDestroyTemporaries() &&
2590 "Can't destroy temporaries in a default argument expr!");
2591 for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I)
2592 ExprTemporaries.push_back(E->getTemporary(I));
2593 }
Anders Carlsson5e300d12009-06-12 16:51:40 +00002594 }
Anders Carlssonf54741e2009-06-16 03:37:31 +00002595
Douglas Gregor61366e92008-12-24 00:01:03 +00002596 // We already type-checked the argument, so we know it works.
Steve Naroff6ece14c2009-01-21 00:14:39 +00002597 Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i));
Anders Carlsson5e300d12009-06-12 16:51:40 +00002598 }
2599
Douglas Gregor88a35142008-12-22 05:46:06 +00002600 QualType ArgType = Arg->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002601
Douglas Gregor88a35142008-12-22 05:46:06 +00002602 Call->setArg(i, Arg);
2603 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002604
Douglas Gregor88a35142008-12-22 05:46:06 +00002605 // If this is a variadic call, handle args passed through "...".
2606 if (Proto->isVariadic()) {
Anders Carlssondce5e2c2009-01-16 16:48:51 +00002607 VariadicCallType CallType = VariadicFunction;
2608 if (Fn->getType()->isBlockPointerType())
2609 CallType = VariadicBlock; // Block
2610 else if (isa<MemberExpr>(Fn))
2611 CallType = VariadicMethod;
2612
Douglas Gregor88a35142008-12-22 05:46:06 +00002613 // Promote the arguments (C99 6.5.2.2p7).
2614 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
2615 Expr *Arg = Args[i];
Chris Lattner312531a2009-04-12 08:11:20 +00002616 Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType);
Douglas Gregor88a35142008-12-22 05:46:06 +00002617 Call->setArg(i, Arg);
2618 }
2619 }
2620
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002621 return Invalid;
Douglas Gregor88a35142008-12-22 05:46:06 +00002622}
2623
Steve Narofff69936d2007-09-16 03:34:24 +00002624/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00002625/// This provides the location of the left/right parens and a list of comma
2626/// locations.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002627Action::OwningExprResult
2628Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc,
2629 MultiExprArg args,
Douglas Gregor88a35142008-12-22 05:46:06 +00002630 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Sebastian Redl0eb23302009-01-19 00:08:26 +00002631 unsigned NumArgs = args.size();
Anders Carlssonf1b1d592009-05-01 19:30:39 +00002632 Expr *Fn = fn.takeAs<Expr>();
Sebastian Redl0eb23302009-01-19 00:08:26 +00002633 Expr **Args = reinterpret_cast<Expr**>(args.release());
Chris Lattner74c469f2007-07-21 03:03:59 +00002634 assert(Fn && "no function call expression");
Chris Lattner04421082008-04-08 04:40:51 +00002635 FunctionDecl *FDecl = NULL;
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002636 NamedDecl *NDecl = NULL;
Douglas Gregor17330012009-02-04 15:01:18 +00002637 DeclarationName UnqualifiedName;
Douglas Gregor88a35142008-12-22 05:46:06 +00002638
Douglas Gregor88a35142008-12-22 05:46:06 +00002639 if (getLangOptions().CPlusPlus) {
Douglas Gregor17330012009-02-04 15:01:18 +00002640 // Determine whether this is a dependent call inside a C++ template,
Mike Stumpeed9cac2009-02-19 03:04:26 +00002641 // in which case we won't do any semantic analysis now.
Mike Stump390b4cc2009-05-16 07:39:55 +00002642 // FIXME: Will need to cache the results of name lookup (including ADL) in
2643 // Fn.
Douglas Gregor17330012009-02-04 15:01:18 +00002644 bool Dependent = false;
2645 if (Fn->isTypeDependent())
2646 Dependent = true;
2647 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
2648 Dependent = true;
2649
2650 if (Dependent)
Ted Kremenek668bf912009-02-09 20:51:47 +00002651 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
Douglas Gregor17330012009-02-04 15:01:18 +00002652 Context.DependentTy, RParenLoc));
2653
2654 // Determine whether this is a call to an object (C++ [over.call.object]).
2655 if (Fn->getType()->isRecordType())
2656 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
2657 CommaLocs, RParenLoc));
2658
Douglas Gregorfa047642009-02-04 00:32:51 +00002659 // Determine whether this is a call to a member function.
Douglas Gregore53060f2009-06-25 22:08:12 +00002660 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) {
2661 NamedDecl *MemDecl = MemExpr->getMemberDecl();
2662 if (isa<OverloadedFunctionDecl>(MemDecl) ||
2663 isa<CXXMethodDecl>(MemDecl) ||
2664 (isa<FunctionTemplateDecl>(MemDecl) &&
2665 isa<CXXMethodDecl>(
2666 cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl())))
Sebastian Redl0eb23302009-01-19 00:08:26 +00002667 return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
2668 CommaLocs, RParenLoc));
Douglas Gregore53060f2009-06-25 22:08:12 +00002669 }
Douglas Gregor88a35142008-12-22 05:46:06 +00002670 }
2671
Douglas Gregorfa047642009-02-04 00:32:51 +00002672 // If we're directly calling a function, get the appropriate declaration.
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002673 // Also, in C++, keep track of whether we should perform argument-dependent
2674 // lookup and whether there were any explicitly-specified template arguments.
Douglas Gregorfa047642009-02-04 00:32:51 +00002675 Expr *FnExpr = Fn;
2676 bool ADL = true;
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002677 bool HasExplicitTemplateArgs = 0;
2678 const TemplateArgument *ExplicitTemplateArgs = 0;
2679 unsigned NumExplicitTemplateArgs = 0;
Douglas Gregorfa047642009-02-04 00:32:51 +00002680 while (true) {
2681 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr))
2682 FnExpr = IcExpr->getSubExpr();
2683 else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00002684 // Parentheses around a function disable ADL
Douglas Gregor17330012009-02-04 15:01:18 +00002685 // (C++0x [basic.lookup.argdep]p1).
Douglas Gregorfa047642009-02-04 00:32:51 +00002686 ADL = false;
2687 FnExpr = PExpr->getSubExpr();
2688 } else if (isa<UnaryOperator>(FnExpr) &&
Mike Stumpeed9cac2009-02-19 03:04:26 +00002689 cast<UnaryOperator>(FnExpr)->getOpcode()
Douglas Gregorfa047642009-02-04 00:32:51 +00002690 == UnaryOperator::AddrOf) {
2691 FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr();
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002692 } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) {
Chris Lattner90e150d2009-02-14 07:22:29 +00002693 // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1).
2694 ADL &= !isa<QualifiedDeclRefExpr>(DRExpr);
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002695 NDecl = dyn_cast<NamedDecl>(DRExpr->getDecl());
Chris Lattner90e150d2009-02-14 07:22:29 +00002696 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00002697 } else if (UnresolvedFunctionNameExpr *DepName
Chris Lattner90e150d2009-02-14 07:22:29 +00002698 = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) {
2699 UnqualifiedName = DepName->getName();
2700 break;
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002701 } else if (TemplateIdRefExpr *TemplateIdRef
2702 = dyn_cast<TemplateIdRefExpr>(FnExpr)) {
2703 NDecl = TemplateIdRef->getTemplateName().getAsTemplateDecl();
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002704 HasExplicitTemplateArgs = true;
2705 ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs();
2706 NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs();
2707
2708 // C++ [temp.arg.explicit]p6:
2709 // [Note: For simple function names, argument dependent lookup (3.4.2)
2710 // applies even when the function name is not visible within the
2711 // scope of the call. This is because the call still has the syntactic
2712 // form of a function call (3.4.1). But when a function template with
2713 // explicit template arguments is used, the call does not have the
2714 // correct syntactic form unless there is a function template with
2715 // that name visible at the point of the call. If no such name is
2716 // visible, the call is not syntactically well-formed and
2717 // argument-dependent lookup does not apply. If some such name is
2718 // visible, argument dependent lookup applies and additional function
2719 // templates may be found in other namespaces.
2720 //
2721 // The summary of this paragraph is that, if we get to this point and the
2722 // template-id was not a qualified name, then argument-dependent lookup
2723 // is still possible.
2724 if (TemplateIdRef->getQualifier())
2725 ADL = false;
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002726 break;
Douglas Gregorfa047642009-02-04 00:32:51 +00002727 } else {
Chris Lattner90e150d2009-02-14 07:22:29 +00002728 // Any kind of name that does not refer to a declaration (or
2729 // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3).
2730 ADL = false;
Douglas Gregorfa047642009-02-04 00:32:51 +00002731 break;
2732 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002733 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002734
Douglas Gregor17330012009-02-04 15:01:18 +00002735 OverloadedFunctionDecl *Ovl = 0;
Douglas Gregore53060f2009-06-25 22:08:12 +00002736 FunctionTemplateDecl *FunctionTemplate = 0;
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002737 if (NDecl) {
2738 FDecl = dyn_cast<FunctionDecl>(NDecl);
2739 if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl)))
Douglas Gregore53060f2009-06-25 22:08:12 +00002740 FDecl = FunctionTemplate->getTemplatedDecl();
2741 else
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002742 FDecl = dyn_cast<FunctionDecl>(NDecl);
2743 Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl);
Douglas Gregor17330012009-02-04 15:01:18 +00002744 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002745
Douglas Gregore53060f2009-06-25 22:08:12 +00002746 if (Ovl || FunctionTemplate ||
2747 (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) {
Douglas Gregor3e41d602009-02-13 23:20:09 +00002748 // We don't perform ADL for implicit declarations of builtins.
Douglas Gregor3c385e52009-02-14 18:57:46 +00002749 if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit())
Douglas Gregorfa047642009-02-04 00:32:51 +00002750 ADL = false;
2751
Douglas Gregorf9201e02009-02-11 23:02:49 +00002752 // We don't perform ADL in C.
2753 if (!getLangOptions().CPlusPlus)
2754 ADL = false;
2755
Douglas Gregore53060f2009-06-25 22:08:12 +00002756 if (Ovl || FunctionTemplate || ADL) {
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002757 FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName,
2758 HasExplicitTemplateArgs,
2759 ExplicitTemplateArgs,
2760 NumExplicitTemplateArgs,
2761 LParenLoc, Args, NumArgs, CommaLocs,
2762 RParenLoc, ADL);
Douglas Gregorfa047642009-02-04 00:32:51 +00002763 if (!FDecl)
2764 return ExprError();
2765
2766 // Update Fn to refer to the actual function selected.
2767 Expr *NewFn = 0;
Mike Stumpeed9cac2009-02-19 03:04:26 +00002768 if (QualifiedDeclRefExpr *QDRExpr
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002769 = dyn_cast<QualifiedDeclRefExpr>(FnExpr))
Douglas Gregorab452ba2009-03-26 23:50:42 +00002770 NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(),
2771 QDRExpr->getLocation(),
2772 false, false,
2773 QDRExpr->getQualifierRange(),
2774 QDRExpr->getQualifier());
Douglas Gregorfa047642009-02-04 00:32:51 +00002775 else
Mike Stumpeed9cac2009-02-19 03:04:26 +00002776 NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(),
Douglas Gregorfa047642009-02-04 00:32:51 +00002777 Fn->getSourceRange().getBegin());
2778 Fn->Destroy(Context);
2779 Fn = NewFn;
2780 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002781 }
Chris Lattner04421082008-04-08 04:40:51 +00002782
2783 // Promote the function operand.
2784 UsualUnaryConversions(Fn);
2785
Chris Lattner925e60d2007-12-28 05:29:59 +00002786 // Make the call expr early, before semantic checks. This guarantees cleanup
2787 // of arguments and function on error.
Ted Kremenek668bf912009-02-09 20:51:47 +00002788 ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn,
2789 Args, NumArgs,
2790 Context.BoolTy,
2791 RParenLoc));
Sebastian Redl0eb23302009-01-19 00:08:26 +00002792
Steve Naroffdd972f22008-09-05 22:11:13 +00002793 const FunctionType *FuncT;
2794 if (!Fn->getType()->isBlockPointerType()) {
2795 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
2796 // have type pointer to function".
2797 const PointerType *PT = Fn->getType()->getAsPointerType();
2798 if (PT == 0)
Sebastian Redl0eb23302009-01-19 00:08:26 +00002799 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2800 << Fn->getType() << Fn->getSourceRange());
Steve Naroffdd972f22008-09-05 22:11:13 +00002801 FuncT = PT->getPointeeType()->getAsFunctionType();
2802 } else { // This is a block call.
2803 FuncT = Fn->getType()->getAsBlockPointerType()->getPointeeType()->
2804 getAsFunctionType();
2805 }
Chris Lattner925e60d2007-12-28 05:29:59 +00002806 if (FuncT == 0)
Sebastian Redl0eb23302009-01-19 00:08:26 +00002807 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2808 << Fn->getType() << Fn->getSourceRange());
2809
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002810 // Check for a valid return type
2811 if (!FuncT->getResultType()->isVoidType() &&
2812 RequireCompleteType(Fn->getSourceRange().getBegin(),
2813 FuncT->getResultType(),
2814 diag::err_call_incomplete_return,
2815 TheCall->getSourceRange()))
2816 return ExprError();
2817
Chris Lattner925e60d2007-12-28 05:29:59 +00002818 // We know the result type of the call, set it.
Douglas Gregor15da57e2008-10-29 02:00:59 +00002819 TheCall->setType(FuncT->getResultType().getNonReferenceType());
Sebastian Redl0eb23302009-01-19 00:08:26 +00002820
Douglas Gregor72564e72009-02-26 23:50:07 +00002821 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00002822 if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs,
Douglas Gregor88a35142008-12-22 05:46:06 +00002823 RParenLoc))
Sebastian Redl0eb23302009-01-19 00:08:26 +00002824 return ExprError();
Chris Lattner925e60d2007-12-28 05:29:59 +00002825 } else {
Douglas Gregor72564e72009-02-26 23:50:07 +00002826 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redl0eb23302009-01-19 00:08:26 +00002827
Douglas Gregor74734d52009-04-02 15:37:10 +00002828 if (FDecl) {
2829 // Check if we have too few/too many template arguments, based
2830 // on our knowledge of the function definition.
2831 const FunctionDecl *Def = 0;
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002832 if (FDecl->getBody(Def) && NumArgs != Def->param_size()) {
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00002833 const FunctionProtoType *Proto =
2834 Def->getType()->getAsFunctionProtoType();
2835 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) {
2836 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
2837 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
2838 }
2839 }
Douglas Gregor74734d52009-04-02 15:37:10 +00002840 }
2841
Steve Naroffb291ab62007-08-28 23:30:39 +00002842 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner925e60d2007-12-28 05:29:59 +00002843 for (unsigned i = 0; i != NumArgs; i++) {
2844 Expr *Arg = Args[i];
2845 DefaultArgumentPromotion(Arg);
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002846 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2847 Arg->getType(),
2848 diag::err_call_incomplete_argument,
2849 Arg->getSourceRange()))
2850 return ExprError();
Chris Lattner925e60d2007-12-28 05:29:59 +00002851 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +00002852 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002853 }
Chris Lattner925e60d2007-12-28 05:29:59 +00002854
Douglas Gregor88a35142008-12-22 05:46:06 +00002855 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
2856 if (!Method->isStatic())
Sebastian Redl0eb23302009-01-19 00:08:26 +00002857 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
2858 << Fn->getSourceRange());
Douglas Gregor88a35142008-12-22 05:46:06 +00002859
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002860 // Check for sentinels
2861 if (NDecl)
2862 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Chris Lattner59907c42007-08-10 20:18:51 +00002863 // Do special checking on direct calls to functions.
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002864 if (FDecl)
Eli Friedmand38617c2008-05-14 19:38:39 +00002865 return CheckFunctionCall(FDecl, TheCall.take());
Fariborz Jahanian725165f2009-05-18 21:05:18 +00002866 if (NDecl)
2867 return CheckBlockCall(NDecl, TheCall.take());
Chris Lattner59907c42007-08-10 20:18:51 +00002868
Sebastian Redl0eb23302009-01-19 00:08:26 +00002869 return Owned(TheCall.take());
Reid Spencer5f016e22007-07-11 17:01:13 +00002870}
2871
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002872Action::OwningExprResult
2873Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
2874 SourceLocation RParenLoc, ExprArg InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +00002875 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Steve Naroff4aa88f82007-07-19 01:06:55 +00002876 QualType literalType = QualType::getFromOpaquePtr(Ty);
Steve Naroffaff1edd2007-07-19 21:32:11 +00002877 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +00002878 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002879 Expr *literalExpr = static_cast<Expr*>(InitExpr.get());
Anders Carlssond35c8322007-12-05 07:24:19 +00002880
Eli Friedman6223c222008-05-20 05:22:08 +00002881 if (literalType->isArrayType()) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002882 if (literalType->isVariableArrayType())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002883 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
2884 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()));
Douglas Gregor690dc7f2009-05-21 23:48:18 +00002885 } else if (!literalType->isDependentType() &&
2886 RequireCompleteType(LParenLoc, literalType,
2887 diag::err_typecheck_decl_incomplete_type,
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002888 SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002889 return ExprError();
Eli Friedman6223c222008-05-20 05:22:08 +00002890
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002891 if (CheckInitializerTypes(literalExpr, literalType, LParenLoc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002892 DeclarationName(), /*FIXME:DirectInit=*/false))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002893 return ExprError();
Steve Naroffe9b12192008-01-14 18:19:28 +00002894
Chris Lattner371f2582008-12-04 23:50:19 +00002895 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffe9b12192008-01-14 18:19:28 +00002896 if (isFileScope) { // 6.5.2.5p3
Steve Naroffd0091aa2008-01-10 22:15:12 +00002897 if (CheckForConstantInitializer(literalExpr, literalType))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002898 return ExprError();
Steve Naroffd0091aa2008-01-10 22:15:12 +00002899 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002900 InitExpr.release();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002901 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType,
Steve Naroff6ece14c2009-01-21 00:14:39 +00002902 literalExpr, isFileScope));
Steve Naroff4aa88f82007-07-19 01:06:55 +00002903}
2904
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002905Action::OwningExprResult
2906Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist,
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002907 SourceLocation RBraceLoc) {
2908 unsigned NumInit = initlist.size();
2909 Expr **InitList = reinterpret_cast<Expr**>(initlist.release());
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002910
Steve Naroff08d92e42007-09-15 18:49:24 +00002911 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stumpeed9cac2009-02-19 03:04:26 +00002912 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002913
Mike Stumpeed9cac2009-02-19 03:04:26 +00002914 InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit,
Douglas Gregor4c678342009-01-28 21:54:33 +00002915 RBraceLoc);
Chris Lattnerf0467b32008-04-02 04:24:33 +00002916 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002917 return Owned(E);
Steve Naroff4aa88f82007-07-19 01:06:55 +00002918}
2919
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002920/// CheckCastTypes - Check type constraints for casting between types.
Daniel Dunbar58d5ebb2008-08-20 03:55:42 +00002921bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr) {
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002922 UsualUnaryConversions(castExpr);
2923
2924 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
2925 // type needs to be scalar.
2926 if (castType->isVoidType()) {
2927 // Cast to void allows any expr type.
Douglas Gregor898574e2008-12-05 23:32:09 +00002928 } else if (castType->isDependentType() || castExpr->isTypeDependent()) {
2929 // We can't check any more until template instantiation time.
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002930 } else if (!castType->isScalarType() && !castType->isVectorType()) {
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00002931 if (Context.getCanonicalType(castType).getUnqualifiedType() ==
2932 Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) &&
2933 (castType->isStructureType() || castType->isUnionType())) {
2934 // GCC struct/union extension: allow cast to self.
Eli Friedmanb1d796d2009-03-23 00:24:07 +00002935 // FIXME: Check that the cast destination type is complete.
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00002936 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
2937 << castType << castExpr->getSourceRange();
2938 } else if (castType->isUnionType()) {
2939 // GCC cast to union extension
2940 RecordDecl *RD = castType->getAsRecordType()->getDecl();
2941 RecordDecl::field_iterator Field, FieldEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002942 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00002943 Field != FieldEnd; ++Field) {
2944 if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() ==
2945 Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) {
2946 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union)
2947 << castExpr->getSourceRange();
2948 break;
2949 }
2950 }
2951 if (Field == FieldEnd)
2952 return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type)
2953 << castExpr->getType() << castExpr->getSourceRange();
2954 } else {
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002955 // Reject any other conversions to non-scalar types.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002956 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00002957 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002958 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002959 } else if (!castExpr->getType()->isScalarType() &&
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002960 !castExpr->getType()->isVectorType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002961 return Diag(castExpr->getLocStart(),
2962 diag::err_typecheck_expect_scalar_operand)
Chris Lattnerd1625842008-11-24 06:25:27 +00002963 << castExpr->getType() << castExpr->getSourceRange();
Nate Begeman58d29a42009-06-26 00:50:28 +00002964 } else if (castType->isExtVectorType()) {
2965 if (CheckExtVectorCast(TyR, castType, castExpr->getType()))
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002966 return true;
2967 } else if (castType->isVectorType()) {
2968 if (CheckVectorCast(TyR, castType, castExpr->getType()))
2969 return true;
Nate Begeman58d29a42009-06-26 00:50:28 +00002970 } else if (castExpr->getType()->isVectorType()) {
2971 if (CheckVectorCast(TyR, castExpr->getType(), castType))
2972 return true;
Steve Naroff6b9dfd42009-03-04 15:11:40 +00002973 } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) {
Steve Naroffa0c3e9c2009-04-08 23:52:26 +00002974 return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR;
Eli Friedman41826bb2009-05-01 02:23:58 +00002975 } else if (!castType->isArithmeticType()) {
2976 QualType castExprType = castExpr->getType();
2977 if (!castExprType->isIntegralType() && castExprType->isArithmeticType())
2978 return Diag(castExpr->getLocStart(),
2979 diag::err_cast_pointer_from_non_pointer_int)
2980 << castExprType << castExpr->getSourceRange();
2981 } else if (!castExpr->getType()->isArithmeticType()) {
2982 if (!castType->isIntegralType() && castType->isArithmeticType())
2983 return Diag(castExpr->getLocStart(),
2984 diag::err_cast_pointer_to_non_pointer_int)
2985 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002986 }
Fariborz Jahanianb5ff6bf2009-05-22 21:42:52 +00002987 if (isa<ObjCSelectorExpr>(castExpr))
2988 return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr);
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002989 return false;
2990}
2991
Chris Lattnerfe23e212007-12-20 00:44:32 +00002992bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) {
Anders Carlssona64db8f2007-11-27 05:51:55 +00002993 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00002994
Anders Carlssona64db8f2007-11-27 05:51:55 +00002995 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner98be4942008-03-05 18:54:05 +00002996 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssona64db8f2007-11-27 05:51:55 +00002997 return Diag(R.getBegin(),
Mike Stumpeed9cac2009-02-19 03:04:26 +00002998 Ty->isVectorType() ?
Anders Carlssona64db8f2007-11-27 05:51:55 +00002999 diag::err_invalid_conversion_between_vectors :
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003000 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00003001 << VectorTy << Ty << R;
Anders Carlssona64db8f2007-11-27 05:51:55 +00003002 } else
3003 return Diag(R.getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003004 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00003005 << VectorTy << Ty << R;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003006
Anders Carlssona64db8f2007-11-27 05:51:55 +00003007 return false;
3008}
3009
Nate Begeman58d29a42009-06-26 00:50:28 +00003010bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, QualType SrcTy) {
3011 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
3012
Nate Begeman9b10da62009-06-27 22:05:55 +00003013 // If SrcTy is a VectorType, the total size must match to explicitly cast to
3014 // an ExtVectorType.
Nate Begeman58d29a42009-06-26 00:50:28 +00003015 if (SrcTy->isVectorType()) {
3016 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy))
3017 return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
3018 << DestTy << SrcTy << R;
3019 return false;
3020 }
3021
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003022 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begeman58d29a42009-06-26 00:50:28 +00003023 // conversion will take place first from scalar to elt type, and then
3024 // splat from elt type to vector.
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003025 if (SrcTy->isPointerType())
3026 return Diag(R.getBegin(),
3027 diag::err_invalid_conversion_between_vector_and_scalar)
3028 << DestTy << SrcTy << R;
Nate Begeman58d29a42009-06-26 00:50:28 +00003029 return false;
3030}
3031
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003032Action::OwningExprResult
3033Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
3034 SourceLocation RParenLoc, ExprArg Op) {
3035 assert((Ty != 0) && (Op.get() != 0) &&
3036 "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +00003037
Anders Carlssonf1b1d592009-05-01 19:30:39 +00003038 Expr *castExpr = Op.takeAs<Expr>();
Steve Naroff16beff82007-07-16 23:25:18 +00003039 QualType castType = QualType::getFromOpaquePtr(Ty);
3040
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003041 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003042 return ExprError();
Steve Naroff6ece14c2009-01-21 00:14:39 +00003043 return Owned(new (Context) CStyleCastExpr(castType, castExpr, castType,
Mike Stumpeed9cac2009-02-19 03:04:26 +00003044 LParenLoc, RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00003045}
3046
Sebastian Redl28507842009-02-26 14:39:58 +00003047/// Note that lhs is not null here, even if this is the gnu "x ?: y" extension.
3048/// In that case, lhs = cond.
Chris Lattnera119a3b2009-02-18 04:38:20 +00003049/// C99 6.5.15
3050QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
3051 SourceLocation QuestionLoc) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003052 // C++ is sufficiently different to merit its own checker.
3053 if (getLangOptions().CPlusPlus)
3054 return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc);
3055
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003056 UsualUnaryConversions(Cond);
3057 UsualUnaryConversions(LHS);
3058 UsualUnaryConversions(RHS);
3059 QualType CondTy = Cond->getType();
3060 QualType LHSTy = LHS->getType();
3061 QualType RHSTy = RHS->getType();
Steve Naroffc80b4ee2007-07-16 21:54:35 +00003062
Reid Spencer5f016e22007-07-11 17:01:13 +00003063 // first, check the condition.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003064 if (!CondTy->isScalarType()) { // C99 6.5.15p2
3065 Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar)
3066 << CondTy;
3067 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003068 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003069
Chris Lattner70d67a92008-01-06 22:42:25 +00003070 // Now check the two expressions.
Douglas Gregor898574e2008-12-05 23:32:09 +00003071
Chris Lattner70d67a92008-01-06 22:42:25 +00003072 // If both operands have arithmetic type, do the usual arithmetic conversions
3073 // to find a common type: C99 6.5.15p3,5.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003074 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
3075 UsualArithmeticConversions(LHS, RHS);
3076 return LHS->getType();
Steve Naroffa4332e22007-07-17 00:58:39 +00003077 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003078
Chris Lattner70d67a92008-01-06 22:42:25 +00003079 // If both operands are the same structure or union type, the result is that
3080 // type.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003081 if (const RecordType *LHSRT = LHSTy->getAsRecordType()) { // C99 6.5.15p3
3082 if (const RecordType *RHSRT = RHSTy->getAsRecordType())
Chris Lattnera21ddb32007-11-26 01:40:58 +00003083 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stumpeed9cac2009-02-19 03:04:26 +00003084 // "If both the operands have structure or union type, the result has
Chris Lattner70d67a92008-01-06 22:42:25 +00003085 // that type." This implies that CV qualifiers are dropped.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003086 return LHSTy.getUnqualifiedType();
Eli Friedmanb1d796d2009-03-23 00:24:07 +00003087 // FIXME: Type of conditional expression must be complete in C mode.
Reid Spencer5f016e22007-07-11 17:01:13 +00003088 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003089
Chris Lattner70d67a92008-01-06 22:42:25 +00003090 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffe701c0a2008-05-12 21:44:38 +00003091 // The following || allows only one side to be void (a GCC-ism).
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003092 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
3093 if (!LHSTy->isVoidType())
3094 Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3095 << RHS->getSourceRange();
3096 if (!RHSTy->isVoidType())
3097 Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3098 << LHS->getSourceRange();
3099 ImpCastExprToType(LHS, Context.VoidTy);
3100 ImpCastExprToType(RHS, Context.VoidTy);
Eli Friedman0e724012008-06-04 19:47:51 +00003101 return Context.VoidTy;
Steve Naroffe701c0a2008-05-12 21:44:38 +00003102 }
Steve Naroffb6d54e52008-01-08 01:11:38 +00003103 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
3104 // the type of the other operand."
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003105 if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) &&
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003106 RHS->isNullPointerConstant(Context)) {
3107 ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer.
3108 return LHSTy;
Steve Naroffb6d54e52008-01-08 01:11:38 +00003109 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003110 if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) &&
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003111 LHS->isNullPointerConstant(Context)) {
3112 ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer.
3113 return RHSTy;
Steve Naroffb6d54e52008-01-08 01:11:38 +00003114 }
Steve Naroff7154a772009-07-01 14:36:47 +00003115 // Handle block pointer types.
3116 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) {
3117 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
3118 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
3119 QualType destType = Context.getPointerType(Context.VoidTy);
3120 ImpCastExprToType(LHS, destType);
3121 ImpCastExprToType(RHS, destType);
3122 return destType;
3123 }
3124 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3125 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3126 return QualType();
Mike Stumpdd3e1662009-05-07 03:14:14 +00003127 }
Steve Naroff7154a772009-07-01 14:36:47 +00003128 // We have 2 block pointer types.
3129 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3130 // Two identical block pointer types are always compatible.
Mike Stumpdd3e1662009-05-07 03:14:14 +00003131 return LHSTy;
3132 }
Steve Naroff7154a772009-07-01 14:36:47 +00003133 // The block pointer types aren't identical, continue checking.
3134 QualType lhptee = LHSTy->getAsBlockPointerType()->getPointeeType();
3135 QualType rhptee = RHSTy->getAsBlockPointerType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003136
Steve Naroff7154a772009-07-01 14:36:47 +00003137 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3138 rhptee.getUnqualifiedType())) {
Mike Stumpdd3e1662009-05-07 03:14:14 +00003139 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3140 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3141 // In this situation, we assume void* type. No especially good
3142 // reason, but this is what gcc does, and we do have to pick
3143 // to get a consistent AST.
3144 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3145 ImpCastExprToType(LHS, incompatTy);
3146 ImpCastExprToType(RHS, incompatTy);
3147 return incompatTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00003148 }
Steve Naroff7154a772009-07-01 14:36:47 +00003149 // The block pointer types are compatible.
3150 ImpCastExprToType(LHS, LHSTy);
3151 ImpCastExprToType(RHS, LHSTy);
Steve Naroff91588042009-04-08 17:05:15 +00003152 return LHSTy;
3153 }
Steve Naroff7154a772009-07-01 14:36:47 +00003154 // Check constraints for Objective-C object pointers types.
Steve Naroff14108da2009-07-10 23:34:53 +00003155 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
Steve Naroff7154a772009-07-01 14:36:47 +00003156
3157 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3158 // Two identical object pointer types are always compatible.
3159 return LHSTy;
3160 }
Steve Naroff14108da2009-07-10 23:34:53 +00003161 const ObjCObjectPointerType *LHSOPT = LHSTy->getAsObjCObjectPointerType();
3162 const ObjCObjectPointerType *RHSOPT = RHSTy->getAsObjCObjectPointerType();
Steve Naroff7154a772009-07-01 14:36:47 +00003163 QualType compositeType = LHSTy;
3164
3165 // If both operands are interfaces and either operand can be
3166 // assigned to the other, use that type as the composite
3167 // type. This allows
3168 // xxx ? (A*) a : (B*) b
3169 // where B is a subclass of A.
3170 //
3171 // Additionally, as for assignment, if either type is 'id'
3172 // allow silent coercion. Finally, if the types are
3173 // incompatible then make sure to use 'id' as the composite
3174 // type so the result is acceptable for sending messages to.
3175
3176 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
3177 // It could return the composite type.
Steve Naroff14108da2009-07-10 23:34:53 +00003178 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
Steve Naroff7154a772009-07-01 14:36:47 +00003179 compositeType = LHSTy;
Steve Naroff14108da2009-07-10 23:34:53 +00003180 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
Steve Naroff7154a772009-07-01 14:36:47 +00003181 compositeType = RHSTy;
Steve Naroff14108da2009-07-10 23:34:53 +00003182 } else if ((LHSTy->isObjCQualifiedIdType() ||
3183 RHSTy->isObjCQualifiedIdType()) &&
3184 ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
3185 // Need to handle "id<xx>" explicitly.
3186 // GCC allows qualified id and any Objective-C type to devolve to
3187 // id. Currently localizing to here until clear this should be
3188 // part of ObjCQualifiedIdTypesAreCompatible.
3189 compositeType = Context.getObjCIdType();
3190 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
Steve Naroff7154a772009-07-01 14:36:47 +00003191 compositeType = Context.getObjCIdType();
3192 } else {
3193 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
3194 << LHSTy << RHSTy
3195 << LHS->getSourceRange() << RHS->getSourceRange();
3196 QualType incompatTy = Context.getObjCIdType();
3197 ImpCastExprToType(LHS, incompatTy);
3198 ImpCastExprToType(RHS, incompatTy);
3199 return incompatTy;
3200 }
3201 // The object pointer types are compatible.
3202 ImpCastExprToType(LHS, compositeType);
3203 ImpCastExprToType(RHS, compositeType);
3204 return compositeType;
3205 }
3206 // Check constraints for C object pointers types (C99 6.5.15p3,6).
3207 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
3208 // get the "pointed to" types
3209 QualType lhptee = LHSTy->getAsPointerType()->getPointeeType();
3210 QualType rhptee = RHSTy->getAsPointerType()->getPointeeType();
3211
3212 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
3213 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
3214 // Figure out necessary qualifiers (C99 6.5.15p6)
3215 QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers());
3216 QualType destType = Context.getPointerType(destPointee);
3217 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3218 ImpCastExprToType(RHS, destType); // promote to void*
3219 return destType;
3220 }
3221 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
3222 QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers());
3223 QualType destType = Context.getPointerType(destPointee);
3224 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3225 ImpCastExprToType(RHS, destType); // promote to void*
3226 return destType;
3227 }
3228
3229 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3230 // Two identical pointer types are always compatible.
3231 return LHSTy;
3232 }
3233 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3234 rhptee.getUnqualifiedType())) {
3235 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3236 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3237 // In this situation, we assume void* type. No especially good
3238 // reason, but this is what gcc does, and we do have to pick
3239 // to get a consistent AST.
3240 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3241 ImpCastExprToType(LHS, incompatTy);
3242 ImpCastExprToType(RHS, incompatTy);
3243 return incompatTy;
3244 }
3245 // The pointer types are compatible.
3246 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
3247 // differently qualified versions of compatible types, the result type is
3248 // a pointer to an appropriately qualified version of the *composite*
3249 // type.
3250 // FIXME: Need to calculate the composite type.
3251 // FIXME: Need to add qualifiers
3252 ImpCastExprToType(LHS, LHSTy);
3253 ImpCastExprToType(RHS, LHSTy);
3254 return LHSTy;
3255 }
3256
3257 // GCC compatibility: soften pointer/integer mismatch.
3258 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) {
3259 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3260 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3261 ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer.
3262 return RHSTy;
3263 }
3264 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) {
3265 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3266 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3267 ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer.
3268 return LHSTy;
3269 }
Daniel Dunbar5e155f02008-09-11 23:12:46 +00003270
Chris Lattner70d67a92008-01-06 22:42:25 +00003271 // Otherwise, the operands are not compatible.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003272 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3273 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00003274 return QualType();
3275}
3276
Steve Narofff69936d2007-09-16 03:34:24 +00003277/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +00003278/// in the case of a the GNU conditional expr extension.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003279Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
3280 SourceLocation ColonLoc,
3281 ExprArg Cond, ExprArg LHS,
3282 ExprArg RHS) {
3283 Expr *CondExpr = (Expr *) Cond.get();
3284 Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get();
Chris Lattnera21ddb32007-11-26 01:40:58 +00003285
3286 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
3287 // was the condition.
3288 bool isLHSNull = LHSExpr == 0;
3289 if (isLHSNull)
3290 LHSExpr = CondExpr;
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003291
3292 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
Chris Lattner26824902007-07-16 21:39:03 +00003293 RHSExpr, QuestionLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00003294 if (result.isNull())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003295 return ExprError();
3296
3297 Cond.release();
3298 LHS.release();
3299 RHS.release();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003300 return Owned(new (Context) ConditionalOperator(CondExpr,
Steve Naroff6ece14c2009-01-21 00:14:39 +00003301 isLHSNull ? 0 : LHSExpr,
3302 RHSExpr, result));
Reid Spencer5f016e22007-07-11 17:01:13 +00003303}
3304
Reid Spencer5f016e22007-07-11 17:01:13 +00003305
3306// CheckPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stumpeed9cac2009-02-19 03:04:26 +00003307// being closely modeled after the C99 spec:-). The odd characteristic of this
Reid Spencer5f016e22007-07-11 17:01:13 +00003308// routine is it effectively iqnores the qualifiers on the top level pointee.
3309// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
3310// FIXME: add a couple examples in this comment.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003311Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00003312Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
3313 QualType lhptee, rhptee;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003314
Reid Spencer5f016e22007-07-11 17:01:13 +00003315 // get the "pointed to" type (ignoring qualifiers at the top level)
Chris Lattner2dcb6bb2007-07-31 21:27:01 +00003316 lhptee = lhsType->getAsPointerType()->getPointeeType();
3317 rhptee = rhsType->getAsPointerType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003318
Steve Naroff14108da2009-07-10 23:34:53 +00003319 return CheckPointeeTypesForAssignment(lhptee, rhptee);
3320}
3321
3322Sema::AssignConvertType
3323Sema::CheckPointeeTypesForAssignment(QualType lhptee, QualType rhptee) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003324 // make sure we operate on the canonical type
Chris Lattnerb77792e2008-07-26 22:17:49 +00003325 lhptee = Context.getCanonicalType(lhptee);
3326 rhptee = Context.getCanonicalType(rhptee);
Reid Spencer5f016e22007-07-11 17:01:13 +00003327
Chris Lattner5cf216b2008-01-04 18:04:52 +00003328 AssignConvertType ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003329
3330 // C99 6.5.16.1p1: This following citation is common to constraints
3331 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
3332 // qualifiers of the type *pointed to* by the right;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00003333 // FIXME: Handle ExtQualType
Douglas Gregor98cd5992008-10-21 23:43:52 +00003334 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
Chris Lattner5cf216b2008-01-04 18:04:52 +00003335 ConvTy = CompatiblePointerDiscardsQualifiers;
Reid Spencer5f016e22007-07-11 17:01:13 +00003336
Mike Stumpeed9cac2009-02-19 03:04:26 +00003337 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
3338 // incomplete type and the other is a pointer to a qualified or unqualified
Reid Spencer5f016e22007-07-11 17:01:13 +00003339 // version of void...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003340 if (lhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00003341 if (rhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00003342 return ConvTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003343
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003344 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00003345 assert(rhptee->isFunctionType());
3346 return FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003347 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003348
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003349 if (rhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00003350 if (lhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00003351 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003352
3353 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00003354 assert(lhptee->isFunctionType());
3355 return FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003356 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003357 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Reid Spencer5f016e22007-07-11 17:01:13 +00003358 // unqualified versions of compatible types, ...
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003359 lhptee = lhptee.getUnqualifiedType();
3360 rhptee = rhptee.getUnqualifiedType();
3361 if (!Context.typesAreCompatible(lhptee, rhptee)) {
3362 // Check if the pointee types are compatible ignoring the sign.
3363 // We explicitly check for char so that we catch "char" vs
3364 // "unsigned char" on systems where "char" is unsigned.
3365 if (lhptee->isCharType()) {
3366 lhptee = Context.UnsignedCharTy;
3367 } else if (lhptee->isSignedIntegerType()) {
3368 lhptee = Context.getCorrespondingUnsignedType(lhptee);
3369 }
3370 if (rhptee->isCharType()) {
3371 rhptee = Context.UnsignedCharTy;
3372 } else if (rhptee->isSignedIntegerType()) {
3373 rhptee = Context.getCorrespondingUnsignedType(rhptee);
3374 }
3375 if (lhptee == rhptee) {
3376 // Types are compatible ignoring the sign. Qualifier incompatibility
3377 // takes priority over sign incompatibility because the sign
3378 // warning can be disabled.
3379 if (ConvTy != Compatible)
3380 return ConvTy;
3381 return IncompatiblePointerSign;
3382 }
3383 // General pointer incompatibility takes priority over qualifiers.
3384 return IncompatiblePointer;
3385 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00003386 return ConvTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00003387}
3388
Steve Naroff1c7d0672008-09-04 15:10:53 +00003389/// CheckBlockPointerTypesForAssignment - This routine determines whether two
3390/// block pointer types are compatible or whether a block and normal pointer
3391/// are compatible. It is more restrict than comparing two function pointer
3392// types.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003393Sema::AssignConvertType
3394Sema::CheckBlockPointerTypesForAssignment(QualType lhsType,
Steve Naroff1c7d0672008-09-04 15:10:53 +00003395 QualType rhsType) {
3396 QualType lhptee, rhptee;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003397
Steve Naroff1c7d0672008-09-04 15:10:53 +00003398 // get the "pointed to" type (ignoring qualifiers at the top level)
3399 lhptee = lhsType->getAsBlockPointerType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003400 rhptee = rhsType->getAsBlockPointerType()->getPointeeType();
3401
Steve Naroff1c7d0672008-09-04 15:10:53 +00003402 // make sure we operate on the canonical type
3403 lhptee = Context.getCanonicalType(lhptee);
3404 rhptee = Context.getCanonicalType(rhptee);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003405
Steve Naroff1c7d0672008-09-04 15:10:53 +00003406 AssignConvertType ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003407
Steve Naroff1c7d0672008-09-04 15:10:53 +00003408 // For blocks we enforce that qualifiers are identical.
3409 if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers())
3410 ConvTy = CompatiblePointerDiscardsQualifiers;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003411
Eli Friedman26784c12009-06-08 05:08:54 +00003412 if (!Context.typesAreCompatible(lhptee, rhptee))
Mike Stumpeed9cac2009-02-19 03:04:26 +00003413 return IncompatibleBlockPointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00003414 return ConvTy;
3415}
3416
Mike Stumpeed9cac2009-02-19 03:04:26 +00003417/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
3418/// has code to accommodate several GCC extensions when type checking
Reid Spencer5f016e22007-07-11 17:01:13 +00003419/// pointers. Here are some objectionable examples that GCC considers warnings:
3420///
3421/// int a, *pint;
3422/// short *pshort;
3423/// struct foo *pfoo;
3424///
3425/// pint = pshort; // warning: assignment from incompatible pointer type
3426/// a = pint; // warning: assignment makes integer from pointer without a cast
3427/// pint = a; // warning: assignment makes pointer from integer without a cast
3428/// pint = pfoo; // warning: assignment from incompatible pointer type
3429///
3430/// As a result, the code for dealing with pointers is more complex than the
Mike Stumpeed9cac2009-02-19 03:04:26 +00003431/// C99 spec dictates.
Reid Spencer5f016e22007-07-11 17:01:13 +00003432///
Chris Lattner5cf216b2008-01-04 18:04:52 +00003433Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00003434Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattnerfc144e22008-01-04 23:18:45 +00003435 // Get canonical types. We're not formatting these types, just comparing
3436 // them.
Chris Lattnerb77792e2008-07-26 22:17:49 +00003437 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
3438 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003439
3440 if (lhsType == rhsType)
Chris Lattnerd2656dd2008-01-07 17:51:46 +00003441 return Compatible; // Common case: fast path an exact match.
Steve Naroff700204c2007-07-24 21:46:40 +00003442
Douglas Gregor9d293df2008-10-28 00:22:11 +00003443 // If the left-hand side is a reference type, then we are in a
3444 // (rare!) case where we've allowed the use of references in C,
3445 // e.g., as a parameter type in a built-in function. In this case,
3446 // just make sure that the type referenced is compatible with the
3447 // right-hand side type. The caller is responsible for adjusting
3448 // lhsType so that the resulting expression does not have reference
3449 // type.
3450 if (const ReferenceType *lhsTypeRef = lhsType->getAsReferenceType()) {
3451 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType))
Anders Carlsson793680e2007-10-12 23:56:29 +00003452 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003453 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00003454 }
Steve Naroff14108da2009-07-10 23:34:53 +00003455 // FIXME: Look into removing. With ObjCObjectPointerType, I don't see a need.
Chris Lattnereca7be62008-04-07 05:30:13 +00003456 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) {
3457 if (ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType, false))
Fariborz Jahanian411f3732007-12-19 17:45:58 +00003458 return Compatible;
Steve Naroff20373222008-06-03 14:04:54 +00003459 // Relax integer conversions like we do for pointers below.
3460 if (rhsType->isIntegerType())
3461 return IntToPointer;
3462 if (lhsType->isIntegerType())
3463 return PointerToInt;
Steve Naroff39579072008-10-14 22:18:38 +00003464 return IncompatibleObjCQualifiedId;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00003465 }
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003466 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
3467 // to the same ExtVector type.
3468 if (lhsType->isExtVectorType()) {
3469 if (rhsType->isExtVectorType())
3470 return lhsType == rhsType ? Compatible : Incompatible;
3471 if (!rhsType->isVectorType() && rhsType->isArithmeticType())
3472 return Compatible;
3473 }
3474
Nate Begemanbe2341d2008-07-14 18:02:46 +00003475 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003476 // If we are allowing lax vector conversions, and LHS and RHS are both
Mike Stumpeed9cac2009-02-19 03:04:26 +00003477 // vectors, the total size only needs to be the same. This is a bitcast;
Nate Begemanbe2341d2008-07-14 18:02:46 +00003478 // no bits are changed but the result type is different.
Chris Lattnere8b3e962008-01-04 23:32:24 +00003479 if (getLangOptions().LaxVectorConversions &&
3480 lhsType->isVectorType() && rhsType->isVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003481 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00003482 return IncompatibleVectors;
Chris Lattnere8b3e962008-01-04 23:32:24 +00003483 }
3484 return Incompatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003485 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003486
Chris Lattnere8b3e962008-01-04 23:32:24 +00003487 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Reid Spencer5f016e22007-07-11 17:01:13 +00003488 return Compatible;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003489
Chris Lattner78eca282008-04-07 06:49:41 +00003490 if (isa<PointerType>(lhsType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003491 if (rhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00003492 return IntToPointer;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003493
Chris Lattner78eca282008-04-07 06:49:41 +00003494 if (isa<PointerType>(rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003495 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003496
Steve Naroff14108da2009-07-10 23:34:53 +00003497 if (isa<ObjCObjectPointerType>(rhsType)) {
3498 QualType rhptee = rhsType->getAsObjCObjectPointerType()->getPointeeType();
3499 QualType lhptee = lhsType->getAsPointerType()->getPointeeType();
3500 return CheckPointeeTypesForAssignment(lhptee, rhptee);
3501 }
3502
Steve Naroffb4406862008-09-29 18:10:17 +00003503 if (rhsType->getAsBlockPointerType()) {
Steve Naroffdd972f22008-09-05 22:11:13 +00003504 if (lhsType->getAsPointerType()->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003505 return Compatible;
Steve Naroffb4406862008-09-29 18:10:17 +00003506
3507 // Treat block pointers as objects.
Steve Naroff14108da2009-07-10 23:34:53 +00003508 if (getLangOptions().ObjC1 && lhsType->isObjCIdType())
Steve Naroffb4406862008-09-29 18:10:17 +00003509 return Compatible;
3510 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00003511 return Incompatible;
3512 }
3513
3514 if (isa<BlockPointerType>(lhsType)) {
3515 if (rhsType->isIntegerType())
Eli Friedmand8f4f432009-02-25 04:20:42 +00003516 return IntToBlockPointer;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003517
Steve Naroffb4406862008-09-29 18:10:17 +00003518 // Treat block pointers as objects.
Steve Naroff14108da2009-07-10 23:34:53 +00003519 if (getLangOptions().ObjC1 && rhsType->isObjCIdType())
Steve Naroffb4406862008-09-29 18:10:17 +00003520 return Compatible;
3521
Steve Naroff1c7d0672008-09-04 15:10:53 +00003522 if (rhsType->isBlockPointerType())
3523 return CheckBlockPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003524
Steve Naroff1c7d0672008-09-04 15:10:53 +00003525 if (const PointerType *RHSPT = rhsType->getAsPointerType()) {
3526 if (RHSPT->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003527 return Compatible;
Steve Naroff1c7d0672008-09-04 15:10:53 +00003528 }
Chris Lattnerfc144e22008-01-04 23:18:45 +00003529 return Incompatible;
3530 }
3531
Steve Naroff14108da2009-07-10 23:34:53 +00003532 if (isa<ObjCObjectPointerType>(lhsType)) {
3533 if (rhsType->isIntegerType())
3534 return IntToPointer;
3535
3536 if (isa<PointerType>(rhsType)) {
3537 QualType lhptee = lhsType->getAsObjCObjectPointerType()->getPointeeType();
3538 QualType rhptee = rhsType->getAsPointerType()->getPointeeType();
3539 return CheckPointeeTypesForAssignment(lhptee, rhptee);
3540 }
3541 if (rhsType->isObjCObjectPointerType()) {
Steve Naroffde2e22d2009-07-15 18:40:39 +00003542 if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType())
3543 return Compatible;
Steve Naroff14108da2009-07-10 23:34:53 +00003544 QualType lhptee = lhsType->getAsObjCObjectPointerType()->getPointeeType();
3545 QualType rhptee = rhsType->getAsObjCObjectPointerType()->getPointeeType();
3546 return CheckPointeeTypesForAssignment(lhptee, rhptee);
3547 }
3548 if (const PointerType *RHSPT = rhsType->getAsPointerType()) {
3549 if (RHSPT->getPointeeType()->isVoidType())
3550 return Compatible;
3551 }
3552 // Treat block pointers as objects.
3553 if (rhsType->isBlockPointerType())
3554 return Compatible;
3555 return Incompatible;
3556 }
Chris Lattner78eca282008-04-07 06:49:41 +00003557 if (isa<PointerType>(rhsType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003558 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003559 if (lhsType == Context.BoolTy)
3560 return Compatible;
3561
3562 if (lhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00003563 return PointerToInt;
Reid Spencer5f016e22007-07-11 17:01:13 +00003564
Mike Stumpeed9cac2009-02-19 03:04:26 +00003565 if (isa<PointerType>(lhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003566 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003567
3568 if (isa<BlockPointerType>(lhsType) &&
Steve Naroff1c7d0672008-09-04 15:10:53 +00003569 rhsType->getAsPointerType()->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003570 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003571 return Incompatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003572 }
Steve Naroff14108da2009-07-10 23:34:53 +00003573 if (isa<ObjCObjectPointerType>(rhsType)) {
3574 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
3575 if (lhsType == Context.BoolTy)
3576 return Compatible;
3577
3578 if (lhsType->isIntegerType())
3579 return PointerToInt;
3580
3581 if (isa<PointerType>(lhsType)) {
3582 QualType rhptee = lhsType->getAsObjCObjectPointerType()->getPointeeType();
3583 QualType lhptee = rhsType->getAsPointerType()->getPointeeType();
3584 return CheckPointeeTypesForAssignment(lhptee, rhptee);
3585 }
3586 if (isa<BlockPointerType>(lhsType) &&
3587 rhsType->getAsPointerType()->getPointeeType()->isVoidType())
3588 return Compatible;
3589 return Incompatible;
3590 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003591
Chris Lattnerfc144e22008-01-04 23:18:45 +00003592 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Chris Lattner78eca282008-04-07 06:49:41 +00003593 if (Context.typesAreCompatible(lhsType, rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003594 return Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00003595 }
3596 return Incompatible;
3597}
3598
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003599/// \brief Constructs a transparent union from an expression that is
3600/// used to initialize the transparent union.
3601static void ConstructTransparentUnion(ASTContext &C, Expr *&E,
3602 QualType UnionType, FieldDecl *Field) {
3603 // Build an initializer list that designates the appropriate member
3604 // of the transparent union.
3605 InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(),
3606 &E, 1,
3607 SourceLocation());
3608 Initializer->setType(UnionType);
3609 Initializer->setInitializedFieldInUnion(Field);
3610
3611 // Build a compound literal constructing a value of the transparent
3612 // union type from this initializer list.
3613 E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer,
3614 false);
3615}
3616
3617Sema::AssignConvertType
3618Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) {
3619 QualType FromType = rExpr->getType();
3620
3621 // If the ArgType is a Union type, we want to handle a potential
3622 // transparent_union GCC extension.
3623 const RecordType *UT = ArgType->getAsUnionType();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00003624 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003625 return Incompatible;
3626
3627 // The field to initialize within the transparent union.
3628 RecordDecl *UD = UT->getDecl();
3629 FieldDecl *InitField = 0;
3630 // It's compatible if the expression matches any of the fields.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003631 for (RecordDecl::field_iterator it = UD->field_begin(),
3632 itend = UD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003633 it != itend; ++it) {
3634 if (it->getType()->isPointerType()) {
3635 // If the transparent union contains a pointer type, we allow:
3636 // 1) void pointer
3637 // 2) null pointer constant
3638 if (FromType->isPointerType())
3639 if (FromType->getAsPointerType()->getPointeeType()->isVoidType()) {
3640 ImpCastExprToType(rExpr, it->getType());
3641 InitField = *it;
3642 break;
3643 }
3644
3645 if (rExpr->isNullPointerConstant(Context)) {
3646 ImpCastExprToType(rExpr, it->getType());
3647 InitField = *it;
3648 break;
3649 }
3650 }
3651
3652 if (CheckAssignmentConstraints(it->getType(), rExpr->getType())
3653 == Compatible) {
3654 InitField = *it;
3655 break;
3656 }
3657 }
3658
3659 if (!InitField)
3660 return Incompatible;
3661
3662 ConstructTransparentUnion(Context, rExpr, ArgType, InitField);
3663 return Compatible;
3664}
3665
Chris Lattner5cf216b2008-01-04 18:04:52 +00003666Sema::AssignConvertType
Steve Naroff90045e82007-07-13 23:32:42 +00003667Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Douglas Gregor98cd5992008-10-21 23:43:52 +00003668 if (getLangOptions().CPlusPlus) {
3669 if (!lhsType->isRecordType()) {
3670 // C++ 5.17p3: If the left operand is not of class type, the
3671 // expression is implicitly converted (C++ 4) to the
3672 // cv-unqualified type of the left operand.
Douglas Gregor45920e82008-12-19 17:40:08 +00003673 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(),
3674 "assigning"))
Douglas Gregor98cd5992008-10-21 23:43:52 +00003675 return Incompatible;
Chris Lattner2c4463f2009-04-12 09:02:39 +00003676 return Compatible;
Douglas Gregor98cd5992008-10-21 23:43:52 +00003677 }
3678
3679 // FIXME: Currently, we fall through and treat C++ classes like C
3680 // structures.
3681 }
3682
Steve Naroff529a4ad2007-11-27 17:58:44 +00003683 // C99 6.5.16.1p1: the left operand is a pointer and the right is
3684 // a null pointer constant.
Steve Narofff7f52e72009-02-21 21:17:01 +00003685 if ((lhsType->isPointerType() ||
Steve Naroff14108da2009-07-10 23:34:53 +00003686 lhsType->isObjCObjectPointerType() ||
Mike Stumpeed9cac2009-02-19 03:04:26 +00003687 lhsType->isBlockPointerType())
Fariborz Jahanian9d3185e2008-01-03 18:46:52 +00003688 && rExpr->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00003689 ImpCastExprToType(rExpr, lhsType);
Steve Naroff529a4ad2007-11-27 17:58:44 +00003690 return Compatible;
3691 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003692
Chris Lattner943140e2007-10-16 02:55:40 +00003693 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00003694 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff08d92e42007-09-15 18:49:24 +00003695 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Steve Naroff90045e82007-07-13 23:32:42 +00003696 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00003697 //
Mike Stumpeed9cac2009-02-19 03:04:26 +00003698 // Suppress this for references: C++ 8.5.3p5.
Chris Lattner943140e2007-10-16 02:55:40 +00003699 if (!lhsType->isReferenceType())
3700 DefaultFunctionArrayConversion(rExpr);
Steve Narofff1120de2007-08-24 22:33:52 +00003701
Chris Lattner5cf216b2008-01-04 18:04:52 +00003702 Sema::AssignConvertType result =
3703 CheckAssignmentConstraints(lhsType, rExpr->getType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00003704
Steve Narofff1120de2007-08-24 22:33:52 +00003705 // C99 6.5.16.1p2: The value of the right operand is converted to the
3706 // type of the assignment expression.
Douglas Gregor9d293df2008-10-28 00:22:11 +00003707 // CheckAssignmentConstraints allows the left-hand side to be a reference,
3708 // so that we can use references in built-in functions even in C.
3709 // The getNonReferenceType() call makes sure that the resulting expression
3710 // does not have reference type.
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003711 if (result != Incompatible && rExpr->getType() != lhsType)
Douglas Gregor9d293df2008-10-28 00:22:11 +00003712 ImpCastExprToType(rExpr, lhsType.getNonReferenceType());
Steve Narofff1120de2007-08-24 22:33:52 +00003713 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00003714}
3715
Chris Lattner29a1cfb2008-11-18 01:30:42 +00003716QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00003717 Diag(Loc, diag::err_typecheck_invalid_operands)
Chris Lattner22caddc2008-11-23 09:13:29 +00003718 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00003719 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerca5eede2007-12-12 05:47:28 +00003720 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003721}
3722
Mike Stumpeed9cac2009-02-19 03:04:26 +00003723inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex,
Steve Naroff49b45262007-07-13 16:58:59 +00003724 Expr *&rex) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00003725 // For conversion purposes, we ignore any qualifiers.
Nate Begeman1330b0e2008-04-04 01:30:25 +00003726 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +00003727 QualType lhsType =
3728 Context.getCanonicalType(lex->getType()).getUnqualifiedType();
3729 QualType rhsType =
3730 Context.getCanonicalType(rex->getType()).getUnqualifiedType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003731
Nate Begemanbe2341d2008-07-14 18:02:46 +00003732 // If the vector types are identical, return.
Nate Begeman1330b0e2008-04-04 01:30:25 +00003733 if (lhsType == rhsType)
Reid Spencer5f016e22007-07-11 17:01:13 +00003734 return lhsType;
Nate Begeman4119d1a2007-12-30 02:59:45 +00003735
Nate Begemanbe2341d2008-07-14 18:02:46 +00003736 // Handle the case of a vector & extvector type of the same size and element
3737 // type. It would be nice if we only had one vector type someday.
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00003738 if (getLangOptions().LaxVectorConversions) {
3739 // FIXME: Should we warn here?
3740 if (const VectorType *LV = lhsType->getAsVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003741 if (const VectorType *RV = rhsType->getAsVectorType())
3742 if (LV->getElementType() == RV->getElementType() &&
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00003743 LV->getNumElements() == RV->getNumElements()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003744 return lhsType->isExtVectorType() ? lhsType : rhsType;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00003745 }
3746 }
3747 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003748
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003749 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can
3750 // swap back (so that we don't reverse the inputs to a subtract, for instance.
3751 bool swapped = false;
3752 if (rhsType->isExtVectorType()) {
3753 swapped = true;
3754 std::swap(rex, lex);
3755 std::swap(rhsType, lhsType);
3756 }
3757
Nate Begemandde25982009-06-28 19:12:57 +00003758 // Handle the case of an ext vector and scalar.
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003759 if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) {
3760 QualType EltTy = LV->getElementType();
3761 if (EltTy->isIntegralType() && rhsType->isIntegralType()) {
3762 if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) {
Nate Begemandde25982009-06-28 19:12:57 +00003763 ImpCastExprToType(rex, lhsType);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003764 if (swapped) std::swap(rex, lex);
3765 return lhsType;
3766 }
3767 }
3768 if (EltTy->isRealFloatingType() && rhsType->isScalarType() &&
3769 rhsType->isRealFloatingType()) {
3770 if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) {
Nate Begemandde25982009-06-28 19:12:57 +00003771 ImpCastExprToType(rex, lhsType);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003772 if (swapped) std::swap(rex, lex);
3773 return lhsType;
3774 }
Nate Begeman4119d1a2007-12-30 02:59:45 +00003775 }
3776 }
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003777
Nate Begemandde25982009-06-28 19:12:57 +00003778 // Vectors of different size or scalar and non-ext-vector are errors.
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00003779 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Chris Lattnerd1625842008-11-24 06:25:27 +00003780 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00003781 << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00003782 return QualType();
Sebastian Redl22460502009-02-07 00:15:38 +00003783}
3784
Reid Spencer5f016e22007-07-11 17:01:13 +00003785inline QualType Sema::CheckMultiplyDivideOperands(
Mike Stumpeed9cac2009-02-19 03:04:26 +00003786 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00003787{
Daniel Dunbar69d1d002009-01-05 22:42:10 +00003788 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00003789 return CheckVectorOperands(Loc, lex, rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003790
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00003791 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003792
Steve Naroffa4332e22007-07-17 00:58:39 +00003793 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00003794 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00003795 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00003796}
3797
3798inline QualType Sema::CheckRemainderOperands(
Mike Stumpeed9cac2009-02-19 03:04:26 +00003799 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00003800{
Daniel Dunbar523aa602009-01-05 22:55:36 +00003801 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3802 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
3803 return CheckVectorOperands(Loc, lex, rex);
3804 return InvalidOperands(Loc, lex, rex);
3805 }
Steve Naroff90045e82007-07-13 23:32:42 +00003806
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00003807 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003808
Steve Naroffa4332e22007-07-17 00:58:39 +00003809 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00003810 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00003811 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00003812}
3813
3814inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Eli Friedmanab3a8522009-03-28 01:22:36 +00003815 Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy)
Reid Spencer5f016e22007-07-11 17:01:13 +00003816{
Eli Friedmanab3a8522009-03-28 01:22:36 +00003817 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3818 QualType compType = CheckVectorOperands(Loc, lex, rex);
3819 if (CompLHSTy) *CompLHSTy = compType;
3820 return compType;
3821 }
Steve Naroff49b45262007-07-13 16:58:59 +00003822
Eli Friedmanab3a8522009-03-28 01:22:36 +00003823 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Eli Friedmand72d16e2008-05-18 18:08:51 +00003824
Reid Spencer5f016e22007-07-11 17:01:13 +00003825 // handle the common case first (both operands are arithmetic).
Eli Friedmanab3a8522009-03-28 01:22:36 +00003826 if (lex->getType()->isArithmeticType() &&
3827 rex->getType()->isArithmeticType()) {
3828 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00003829 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00003830 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003831
Eli Friedmand72d16e2008-05-18 18:08:51 +00003832 // Put any potential pointer into PExp
3833 Expr* PExp = lex, *IExp = rex;
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003834 if (IExp->getType()->isAnyPointerType())
Eli Friedmand72d16e2008-05-18 18:08:51 +00003835 std::swap(PExp, IExp);
3836
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003837 if (PExp->getType()->isAnyPointerType()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003838
Eli Friedmand72d16e2008-05-18 18:08:51 +00003839 if (IExp->getType()->isIntegerType()) {
Steve Naroff760e3c42009-07-13 21:20:41 +00003840 QualType PointeeTy = PExp->getType()->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00003841
Chris Lattnerb5f15622009-04-24 23:50:08 +00003842 // Check for arithmetic on pointers to incomplete types.
3843 if (PointeeTy->isVoidType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00003844 if (getLangOptions().CPlusPlus) {
3845 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003846 << lex->getSourceRange() << rex->getSourceRange();
Douglas Gregor4ec339f2009-01-19 19:26:10 +00003847 return QualType();
Eli Friedmand72d16e2008-05-18 18:08:51 +00003848 }
Douglas Gregore7450f52009-03-24 19:52:54 +00003849
3850 // GNU extension: arithmetic on pointer to void
3851 Diag(Loc, diag::ext_gnu_void_ptr)
3852 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerb5f15622009-04-24 23:50:08 +00003853 } else if (PointeeTy->isFunctionType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00003854 if (getLangOptions().CPlusPlus) {
3855 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
3856 << lex->getType() << lex->getSourceRange();
3857 return QualType();
3858 }
3859
3860 // GNU extension: arithmetic on pointer to function
3861 Diag(Loc, diag::ext_gnu_ptr_func_arith)
3862 << lex->getType() << lex->getSourceRange();
Steve Naroff9deaeca2009-07-13 21:32:29 +00003863 } else {
Steve Naroff760e3c42009-07-13 21:20:41 +00003864 // Check if we require a complete type.
3865 if (((PExp->getType()->isPointerType() &&
Steve Naroff9deaeca2009-07-13 21:32:29 +00003866 !PExp->getType()->isDependentType()) ||
Steve Naroff760e3c42009-07-13 21:20:41 +00003867 PExp->getType()->isObjCObjectPointerType()) &&
3868 RequireCompleteType(Loc, PointeeTy,
3869 diag::err_typecheck_arithmetic_incomplete_type,
3870 PExp->getSourceRange(), SourceRange(),
3871 PExp->getType()))
3872 return QualType();
3873 }
Chris Lattnerb5f15622009-04-24 23:50:08 +00003874 // Diagnose bad cases where we step over interface counts.
3875 if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
3876 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
3877 << PointeeTy << PExp->getSourceRange();
3878 return QualType();
3879 }
3880
Eli Friedmanab3a8522009-03-28 01:22:36 +00003881 if (CompLHSTy) {
3882 QualType LHSTy = lex->getType();
3883 if (LHSTy->isPromotableIntegerType())
3884 LHSTy = Context.IntTy;
Douglas Gregor2d833e32009-05-02 00:36:19 +00003885 else {
3886 QualType T = isPromotableBitField(lex, Context);
3887 if (!T.isNull())
3888 LHSTy = T;
3889 }
3890
Eli Friedmanab3a8522009-03-28 01:22:36 +00003891 *CompLHSTy = LHSTy;
3892 }
Eli Friedmand72d16e2008-05-18 18:08:51 +00003893 return PExp->getType();
3894 }
3895 }
3896
Chris Lattner29a1cfb2008-11-18 01:30:42 +00003897 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00003898}
3899
Chris Lattnereca7be62008-04-07 05:30:13 +00003900// C99 6.5.6
3901QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex,
Eli Friedmanab3a8522009-03-28 01:22:36 +00003902 SourceLocation Loc, QualType* CompLHSTy) {
3903 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3904 QualType compType = CheckVectorOperands(Loc, lex, rex);
3905 if (CompLHSTy) *CompLHSTy = compType;
3906 return compType;
3907 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003908
Eli Friedmanab3a8522009-03-28 01:22:36 +00003909 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003910
Chris Lattner6e4ab612007-12-09 21:53:25 +00003911 // Enforce type constraints: C99 6.5.6p3.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003912
Chris Lattner6e4ab612007-12-09 21:53:25 +00003913 // Handle the common case first (both operands are arithmetic).
Mike Stumpaf199f32009-05-07 18:43:07 +00003914 if (lex->getType()->isArithmeticType()
3915 && rex->getType()->isArithmeticType()) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00003916 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00003917 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00003918 }
Steve Naroff14108da2009-07-10 23:34:53 +00003919
Chris Lattner6e4ab612007-12-09 21:53:25 +00003920 // Either ptr - int or ptr - ptr.
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003921 if (lex->getType()->isAnyPointerType()) {
Steve Naroff430ee5a2009-07-13 17:19:15 +00003922 QualType lpointee = lex->getType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003923
Douglas Gregore7450f52009-03-24 19:52:54 +00003924 // The LHS must be an completely-defined object type.
Douglas Gregorc983b862009-01-23 00:36:41 +00003925
Douglas Gregore7450f52009-03-24 19:52:54 +00003926 bool ComplainAboutVoid = false;
3927 Expr *ComplainAboutFunc = 0;
3928 if (lpointee->isVoidType()) {
3929 if (getLangOptions().CPlusPlus) {
3930 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
3931 << lex->getSourceRange() << rex->getSourceRange();
3932 return QualType();
3933 }
3934
3935 // GNU C extension: arithmetic on pointer to void
3936 ComplainAboutVoid = true;
3937 } else if (lpointee->isFunctionType()) {
3938 if (getLangOptions().CPlusPlus) {
3939 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattnerd1625842008-11-24 06:25:27 +00003940 << lex->getType() << lex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00003941 return QualType();
3942 }
Douglas Gregore7450f52009-03-24 19:52:54 +00003943
3944 // GNU C extension: arithmetic on pointer to function
3945 ComplainAboutFunc = lex;
3946 } else if (!lpointee->isDependentType() &&
3947 RequireCompleteType(Loc, lpointee,
3948 diag::err_typecheck_sub_ptr_object,
3949 lex->getSourceRange(),
3950 SourceRange(),
3951 lex->getType()))
3952 return QualType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00003953
Chris Lattnerb5f15622009-04-24 23:50:08 +00003954 // Diagnose bad cases where we step over interface counts.
3955 if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
3956 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
3957 << lpointee << lex->getSourceRange();
3958 return QualType();
3959 }
3960
Chris Lattner6e4ab612007-12-09 21:53:25 +00003961 // The result type of a pointer-int computation is the pointer type.
Douglas Gregore7450f52009-03-24 19:52:54 +00003962 if (rex->getType()->isIntegerType()) {
3963 if (ComplainAboutVoid)
3964 Diag(Loc, diag::ext_gnu_void_ptr)
3965 << lex->getSourceRange() << rex->getSourceRange();
3966 if (ComplainAboutFunc)
3967 Diag(Loc, diag::ext_gnu_ptr_func_arith)
3968 << ComplainAboutFunc->getType()
3969 << ComplainAboutFunc->getSourceRange();
3970
Eli Friedmanab3a8522009-03-28 01:22:36 +00003971 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00003972 return lex->getType();
Douglas Gregore7450f52009-03-24 19:52:54 +00003973 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003974
Chris Lattner6e4ab612007-12-09 21:53:25 +00003975 // Handle pointer-pointer subtractions.
3976 if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +00003977 QualType rpointee = RHSPTy->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003978
Douglas Gregore7450f52009-03-24 19:52:54 +00003979 // RHS must be a completely-type object type.
3980 // Handle the GNU void* extension.
3981 if (rpointee->isVoidType()) {
3982 if (getLangOptions().CPlusPlus) {
3983 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
3984 << lex->getSourceRange() << rex->getSourceRange();
3985 return QualType();
3986 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003987
Douglas Gregore7450f52009-03-24 19:52:54 +00003988 ComplainAboutVoid = true;
3989 } else if (rpointee->isFunctionType()) {
3990 if (getLangOptions().CPlusPlus) {
3991 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattnerd1625842008-11-24 06:25:27 +00003992 << rex->getType() << rex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00003993 return QualType();
3994 }
Douglas Gregore7450f52009-03-24 19:52:54 +00003995
3996 // GNU extension: arithmetic on pointer to function
3997 if (!ComplainAboutFunc)
3998 ComplainAboutFunc = rex;
3999 } else if (!rpointee->isDependentType() &&
4000 RequireCompleteType(Loc, rpointee,
4001 diag::err_typecheck_sub_ptr_object,
4002 rex->getSourceRange(),
4003 SourceRange(),
4004 rex->getType()))
4005 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004006
Eli Friedman88d936b2009-05-16 13:54:38 +00004007 if (getLangOptions().CPlusPlus) {
4008 // Pointee types must be the same: C++ [expr.add]
4009 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
4010 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4011 << lex->getType() << rex->getType()
4012 << lex->getSourceRange() << rex->getSourceRange();
4013 return QualType();
4014 }
4015 } else {
4016 // Pointee types must be compatible C99 6.5.6p3
4017 if (!Context.typesAreCompatible(
4018 Context.getCanonicalType(lpointee).getUnqualifiedType(),
4019 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
4020 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4021 << lex->getType() << rex->getType()
4022 << lex->getSourceRange() << rex->getSourceRange();
4023 return QualType();
4024 }
Chris Lattner6e4ab612007-12-09 21:53:25 +00004025 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004026
Douglas Gregore7450f52009-03-24 19:52:54 +00004027 if (ComplainAboutVoid)
4028 Diag(Loc, diag::ext_gnu_void_ptr)
4029 << lex->getSourceRange() << rex->getSourceRange();
4030 if (ComplainAboutFunc)
4031 Diag(Loc, diag::ext_gnu_ptr_func_arith)
4032 << ComplainAboutFunc->getType()
4033 << ComplainAboutFunc->getSourceRange();
Eli Friedmanab3a8522009-03-28 01:22:36 +00004034
4035 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004036 return Context.getPointerDiffType();
4037 }
4038 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004039
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004040 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004041}
4042
Chris Lattnereca7be62008-04-07 05:30:13 +00004043// C99 6.5.7
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004044QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattnereca7be62008-04-07 05:30:13 +00004045 bool isCompAssign) {
Chris Lattnerca5eede2007-12-12 05:47:28 +00004046 // C99 6.5.7p2: Each of the operands shall have integer type.
4047 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004048 return InvalidOperands(Loc, lex, rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004049
Chris Lattnerca5eede2007-12-12 05:47:28 +00004050 // Shifts don't perform usual arithmetic conversions, they just do integer
4051 // promotions on each operand. C99 6.5.7p3
Eli Friedmanab3a8522009-03-28 01:22:36 +00004052 QualType LHSTy;
4053 if (lex->getType()->isPromotableIntegerType())
4054 LHSTy = Context.IntTy;
Douglas Gregor2d833e32009-05-02 00:36:19 +00004055 else {
4056 LHSTy = isPromotableBitField(lex, Context);
4057 if (LHSTy.isNull())
4058 LHSTy = lex->getType();
4059 }
Chris Lattner1dcf2c82007-12-13 07:28:16 +00004060 if (!isCompAssign)
Eli Friedmanab3a8522009-03-28 01:22:36 +00004061 ImpCastExprToType(lex, LHSTy);
4062
Chris Lattnerca5eede2007-12-12 05:47:28 +00004063 UsualUnaryConversions(rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004064
Chris Lattnerca5eede2007-12-12 05:47:28 +00004065 // "The type of the result is that of the promoted left operand."
Eli Friedmanab3a8522009-03-28 01:22:36 +00004066 return LHSTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00004067}
4068
Douglas Gregor0c6db942009-05-04 06:07:12 +00004069// C99 6.5.8, C++ [expr.rel]
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004070QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Douglas Gregora86b8322009-04-06 18:45:53 +00004071 unsigned OpaqueOpc, bool isRelational) {
4072 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc;
4073
Nate Begemanbe2341d2008-07-14 18:02:46 +00004074 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004075 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004076
Chris Lattnera5937dd2007-08-26 01:18:55 +00004077 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff30bf7712007-08-10 18:26:40 +00004078 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
4079 UsualArithmeticConversions(lex, rex);
4080 else {
4081 UsualUnaryConversions(lex);
4082 UsualUnaryConversions(rex);
4083 }
Steve Naroffc80b4ee2007-07-16 21:54:35 +00004084 QualType lType = lex->getType();
4085 QualType rType = rex->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004086
Mike Stumpaf199f32009-05-07 18:43:07 +00004087 if (!lType->isFloatingType()
4088 && !(lType->isBlockPointerType() && isRelational)) {
Chris Lattner55660a72009-03-08 19:39:53 +00004089 // For non-floating point types, check for self-comparisons of the form
4090 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4091 // often indicate logic errors in the program.
Ted Kremenek9ecede72009-03-20 19:57:37 +00004092 // NOTE: Don't warn about comparisons of enum constants. These can arise
4093 // from macro expansions, and are usually quite deliberate.
Chris Lattner55660a72009-03-08 19:39:53 +00004094 Expr *LHSStripped = lex->IgnoreParens();
4095 Expr *RHSStripped = rex->IgnoreParens();
4096 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped))
4097 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped))
Ted Kremenekb82dcd82009-03-20 18:35:45 +00004098 if (DRL->getDecl() == DRR->getDecl() &&
4099 !isa<EnumConstantDecl>(DRL->getDecl()))
Mike Stumpeed9cac2009-02-19 03:04:26 +00004100 Diag(Loc, diag::warn_selfcomparison);
Chris Lattner55660a72009-03-08 19:39:53 +00004101
4102 if (isa<CastExpr>(LHSStripped))
4103 LHSStripped = LHSStripped->IgnoreParenCasts();
4104 if (isa<CastExpr>(RHSStripped))
4105 RHSStripped = RHSStripped->IgnoreParenCasts();
4106
4107 // Warn about comparisons against a string constant (unless the other
4108 // operand is null), the user probably wants strcmp.
Douglas Gregora86b8322009-04-06 18:45:53 +00004109 Expr *literalString = 0;
4110 Expr *literalStringStripped = 0;
Chris Lattner55660a72009-03-08 19:39:53 +00004111 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Douglas Gregora86b8322009-04-06 18:45:53 +00004112 !RHSStripped->isNullPointerConstant(Context)) {
4113 literalString = lex;
4114 literalStringStripped = LHSStripped;
4115 }
Chris Lattner55660a72009-03-08 19:39:53 +00004116 else if ((isa<StringLiteral>(RHSStripped) ||
4117 isa<ObjCEncodeExpr>(RHSStripped)) &&
Douglas Gregora86b8322009-04-06 18:45:53 +00004118 !LHSStripped->isNullPointerConstant(Context)) {
4119 literalString = rex;
4120 literalStringStripped = RHSStripped;
4121 }
4122
4123 if (literalString) {
4124 std::string resultComparison;
4125 switch (Opc) {
4126 case BinaryOperator::LT: resultComparison = ") < 0"; break;
4127 case BinaryOperator::GT: resultComparison = ") > 0"; break;
4128 case BinaryOperator::LE: resultComparison = ") <= 0"; break;
4129 case BinaryOperator::GE: resultComparison = ") >= 0"; break;
4130 case BinaryOperator::EQ: resultComparison = ") == 0"; break;
4131 case BinaryOperator::NE: resultComparison = ") != 0"; break;
4132 default: assert(false && "Invalid comparison operator");
4133 }
4134 Diag(Loc, diag::warn_stringcompare)
4135 << isa<ObjCEncodeExpr>(literalStringStripped)
4136 << literalString->getSourceRange()
Douglas Gregora3a83512009-04-01 23:51:29 +00004137 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ")
4138 << CodeModificationHint::CreateInsertion(lex->getLocStart(),
4139 "strcmp(")
4140 << CodeModificationHint::CreateInsertion(
4141 PP.getLocForEndOfToken(rex->getLocEnd()),
Douglas Gregora86b8322009-04-06 18:45:53 +00004142 resultComparison);
4143 }
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00004144 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004145
Douglas Gregor447b69e2008-11-19 03:25:36 +00004146 // The result of comparisons is 'bool' in C++, 'int' in C.
Chris Lattner55660a72009-03-08 19:39:53 +00004147 QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy;
Douglas Gregor447b69e2008-11-19 03:25:36 +00004148
Chris Lattnera5937dd2007-08-26 01:18:55 +00004149 if (isRelational) {
4150 if (lType->isRealType() && rType->isRealType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00004151 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00004152 } else {
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00004153 // Check for comparisons of floating point operands using != and ==.
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00004154 if (lType->isFloatingType()) {
Chris Lattner55660a72009-03-08 19:39:53 +00004155 assert(rType->isFloatingType());
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004156 CheckFloatComparison(Loc,lex,rex);
Ted Kremenek6a261552007-10-29 16:40:01 +00004157 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004158
Chris Lattnera5937dd2007-08-26 01:18:55 +00004159 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00004160 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00004161 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004162
Chris Lattnerd28f8152007-08-26 01:10:14 +00004163 bool LHSIsNull = lex->isNullPointerConstant(Context);
4164 bool RHSIsNull = rex->isNullPointerConstant(Context);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004165
Chris Lattnera5937dd2007-08-26 01:18:55 +00004166 // All of the following pointer related warnings are GCC extensions, except
4167 // when handling null pointer constants. One day, we can consider making them
4168 // errors (when -pedantic-errors is enabled).
Steve Naroff77878cc2007-08-27 04:08:11 +00004169 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattnerbc896f52008-04-03 05:07:25 +00004170 QualType LCanPointeeTy =
Chris Lattnerb77792e2008-07-26 22:17:49 +00004171 Context.getCanonicalType(lType->getAsPointerType()->getPointeeType());
Chris Lattnerbc896f52008-04-03 05:07:25 +00004172 QualType RCanPointeeTy =
Chris Lattnerb77792e2008-07-26 22:17:49 +00004173 Context.getCanonicalType(rType->getAsPointerType()->getPointeeType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00004174
Douglas Gregorf9334372009-07-06 20:14:23 +00004175 if (isRelational) {
4176 if (lType->isFunctionPointerType() || rType->isFunctionPointerType()) {
Chris Lattner149f1382009-06-30 06:24:05 +00004177 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
4178 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4179 }
Douglas Gregorf9334372009-07-06 20:14:23 +00004180 if (LCanPointeeTy->isVoidType() != RCanPointeeTy->isVoidType()) {
4181 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4182 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4183 }
4184 } else {
4185 if (lType->isFunctionPointerType() != rType->isFunctionPointerType()) {
4186 if (!LHSIsNull && !RHSIsNull)
4187 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4188 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4189 }
Chris Lattner149f1382009-06-30 06:24:05 +00004190 }
Douglas Gregorf9334372009-07-06 20:14:23 +00004191
Douglas Gregor0c6db942009-05-04 06:07:12 +00004192 // Simple check: if the pointee types are identical, we're done.
4193 if (LCanPointeeTy == RCanPointeeTy)
4194 return ResultTy;
4195
4196 if (getLangOptions().CPlusPlus) {
4197 // C++ [expr.rel]p2:
4198 // [...] Pointer conversions (4.10) and qualification
4199 // conversions (4.4) are performed on pointer operands (or on
4200 // a pointer operand and a null pointer constant) to bring
4201 // them to their composite pointer type. [...]
4202 //
4203 // C++ [expr.eq]p2 uses the same notion for (in)equality
4204 // comparisons of pointers.
Douglas Gregorde866f32009-05-05 04:50:50 +00004205 QualType T = FindCompositePointerType(lex, rex);
Douglas Gregor0c6db942009-05-04 06:07:12 +00004206 if (T.isNull()) {
4207 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4208 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4209 return QualType();
4210 }
4211
4212 ImpCastExprToType(lex, T);
4213 ImpCastExprToType(rex, T);
4214 return ResultTy;
4215 }
4216
Steve Naroff66296cb2007-11-13 14:57:38 +00004217 if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2
Chris Lattnerbc896f52008-04-03 05:07:25 +00004218 !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() &&
4219 !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
Steve Naroff14108da2009-07-10 23:34:53 +00004220 RCanPointeeTy.getUnqualifiedType())) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004221 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00004222 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004223 }
Chris Lattner1e0a3902008-01-16 19:17:22 +00004224 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004225 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00004226 }
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004227 // C++ allows comparison of pointers with null pointer constants.
4228 if (getLangOptions().CPlusPlus) {
4229 if (lType->isPointerType() && RHSIsNull) {
4230 ImpCastExprToType(rex, lType);
4231 return ResultTy;
4232 }
4233 if (rType->isPointerType() && LHSIsNull) {
4234 ImpCastExprToType(lex, rType);
4235 return ResultTy;
4236 }
4237 // And comparison of nullptr_t with itself.
4238 if (lType->isNullPtrType() && rType->isNullPtrType())
4239 return ResultTy;
4240 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00004241 // Handle block pointer types.
Mike Stumpdd3e1662009-05-07 03:14:14 +00004242 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) {
Steve Naroff1c7d0672008-09-04 15:10:53 +00004243 QualType lpointee = lType->getAsBlockPointerType()->getPointeeType();
4244 QualType rpointee = rType->getAsBlockPointerType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004245
Steve Naroff1c7d0672008-09-04 15:10:53 +00004246 if (!LHSIsNull && !RHSIsNull &&
Eli Friedman26784c12009-06-08 05:08:54 +00004247 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004248 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattnerd1625842008-11-24 06:25:27 +00004249 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff1c7d0672008-09-04 15:10:53 +00004250 }
4251 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004252 return ResultTy;
Steve Naroff1c7d0672008-09-04 15:10:53 +00004253 }
Steve Naroff59f53942008-09-28 01:11:11 +00004254 // Allow block pointers to be compared with null pointer constants.
Mike Stumpdd3e1662009-05-07 03:14:14 +00004255 if (!isRelational
4256 && ((lType->isBlockPointerType() && rType->isPointerType())
4257 || (lType->isPointerType() && rType->isBlockPointerType()))) {
Steve Naroff59f53942008-09-28 01:11:11 +00004258 if (!LHSIsNull && !RHSIsNull) {
Mike Stumpdd3e1662009-05-07 03:14:14 +00004259 if (!((rType->isPointerType() && rType->getAsPointerType()
4260 ->getPointeeType()->isVoidType())
4261 || (lType->isPointerType() && lType->getAsPointerType()
4262 ->getPointeeType()->isVoidType())))
4263 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
4264 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff59f53942008-09-28 01:11:11 +00004265 }
4266 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004267 return ResultTy;
Steve Naroff59f53942008-09-28 01:11:11 +00004268 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00004269
Steve Naroff14108da2009-07-10 23:34:53 +00004270 if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) {
Steve Naroffa5ad8632008-10-27 10:33:19 +00004271 if (lType->isPointerType() || rType->isPointerType()) {
Steve Naroffa8069f12008-11-17 19:49:16 +00004272 const PointerType *LPT = lType->getAsPointerType();
4273 const PointerType *RPT = rType->getAsPointerType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004274 bool LPtrToVoid = LPT ?
Steve Naroffa8069f12008-11-17 19:49:16 +00004275 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004276 bool RPtrToVoid = RPT ?
Steve Naroffa8069f12008-11-17 19:49:16 +00004277 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004278
Steve Naroffa8069f12008-11-17 19:49:16 +00004279 if (!LPtrToVoid && !RPtrToVoid &&
4280 !Context.typesAreCompatible(lType, rType)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004281 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00004282 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroffa5ad8632008-10-27 10:33:19 +00004283 }
Daniel Dunbarc6cb77f2008-10-23 23:30:52 +00004284 ImpCastExprToType(rex, lType);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004285 return ResultTy;
Steve Naroff87f3b932008-10-20 18:19:10 +00004286 }
Steve Naroff14108da2009-07-10 23:34:53 +00004287 if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) {
4288 if (!Context.areComparableObjCPointerTypes(lType, rType)) {
4289 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4290 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4291 }
Steve Naroff20373222008-06-03 14:04:54 +00004292 ImpCastExprToType(rex, lType);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004293 return ResultTy;
Steve Naroff20373222008-06-03 14:04:54 +00004294 }
Fariborz Jahanian7359f042007-12-20 01:06:58 +00004295 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004296 if (lType->isAnyPointerType() && rType->isIntegerType()) {
Chris Lattner149f1382009-06-30 06:24:05 +00004297 if (isRelational)
4298 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer)
4299 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4300 else if (!RHSIsNull)
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004301 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00004302 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner1e0a3902008-01-16 19:17:22 +00004303 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004304 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00004305 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004306 if (lType->isIntegerType() && rType->isAnyPointerType()) {
Chris Lattner149f1382009-06-30 06:24:05 +00004307 if (isRelational)
4308 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer)
4309 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4310 else if (!LHSIsNull)
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004311 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00004312 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner1e0a3902008-01-16 19:17:22 +00004313 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004314 return ResultTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00004315 }
Steve Naroff39218df2008-09-04 16:56:14 +00004316 // Handle block pointers.
Mike Stumpaf199f32009-05-07 18:43:07 +00004317 if (!isRelational && RHSIsNull
4318 && lType->isBlockPointerType() && rType->isIntegerType()) {
Steve Naroff39218df2008-09-04 16:56:14 +00004319 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004320 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00004321 }
Mike Stumpaf199f32009-05-07 18:43:07 +00004322 if (!isRelational && LHSIsNull
4323 && lType->isIntegerType() && rType->isBlockPointerType()) {
Steve Naroff39218df2008-09-04 16:56:14 +00004324 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004325 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00004326 }
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004327 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004328}
4329
Nate Begemanbe2341d2008-07-14 18:02:46 +00004330/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stumpeed9cac2009-02-19 03:04:26 +00004331/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begemanbe2341d2008-07-14 18:02:46 +00004332/// like a scalar comparison, a vector comparison produces a vector of integer
4333/// types.
4334QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex,
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004335 SourceLocation Loc,
Nate Begemanbe2341d2008-07-14 18:02:46 +00004336 bool isRelational) {
4337 // Check to make sure we're operating on vectors of the same type and width,
4338 // Allowing one side to be a scalar of element type.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004339 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004340 if (vType.isNull())
4341 return vType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004342
Nate Begemanbe2341d2008-07-14 18:02:46 +00004343 QualType lType = lex->getType();
4344 QualType rType = rex->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004345
Nate Begemanbe2341d2008-07-14 18:02:46 +00004346 // For non-floating point types, check for self-comparisons of the form
4347 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4348 // often indicate logic errors in the program.
4349 if (!lType->isFloatingType()) {
4350 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
4351 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
4352 if (DRL->getDecl() == DRR->getDecl())
Mike Stumpeed9cac2009-02-19 03:04:26 +00004353 Diag(Loc, diag::warn_selfcomparison);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004354 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004355
Nate Begemanbe2341d2008-07-14 18:02:46 +00004356 // Check for comparisons of floating point operands using != and ==.
4357 if (!isRelational && lType->isFloatingType()) {
4358 assert (rType->isFloatingType());
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004359 CheckFloatComparison(Loc,lex,rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004360 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004361
Nate Begemanbe2341d2008-07-14 18:02:46 +00004362 // Return the type for the comparison, which is the same as vector type for
4363 // integer vectors, or an integer type of identical size and number of
4364 // elements for floating point vectors.
4365 if (lType->isIntegerType())
4366 return lType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004367
Nate Begemanbe2341d2008-07-14 18:02:46 +00004368 const VectorType *VTy = lType->getAsVectorType();
Nate Begemanbe2341d2008-07-14 18:02:46 +00004369 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
Nate Begeman59b5da62009-01-18 03:20:47 +00004370 if (TypeSize == Context.getTypeSize(Context.IntTy))
Nate Begemanbe2341d2008-07-14 18:02:46 +00004371 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
Chris Lattnerd013aa12009-03-31 07:46:52 +00004372 if (TypeSize == Context.getTypeSize(Context.LongTy))
Nate Begeman59b5da62009-01-18 03:20:47 +00004373 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
4374
Mike Stumpeed9cac2009-02-19 03:04:26 +00004375 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
Nate Begeman59b5da62009-01-18 03:20:47 +00004376 "Unhandled vector element size in vector compare");
Nate Begemanbe2341d2008-07-14 18:02:46 +00004377 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
4378}
4379
Reid Spencer5f016e22007-07-11 17:01:13 +00004380inline QualType Sema::CheckBitwiseOperands(
Mike Stumpeed9cac2009-02-19 03:04:26 +00004381 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00004382{
Steve Naroff3e5e5562007-07-16 22:23:01 +00004383 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004384 return CheckVectorOperands(Loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00004385
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004386 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004387
Steve Naroffa4332e22007-07-17 00:58:39 +00004388 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004389 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004390 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004391}
4392
4393inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Mike Stumpeed9cac2009-02-19 03:04:26 +00004394 Expr *&lex, Expr *&rex, SourceLocation Loc)
Reid Spencer5f016e22007-07-11 17:01:13 +00004395{
Steve Naroffc80b4ee2007-07-16 21:54:35 +00004396 UsualUnaryConversions(lex);
4397 UsualUnaryConversions(rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004398
Eli Friedman5773a6c2008-05-13 20:16:47 +00004399 if (lex->getType()->isScalarType() && rex->getType()->isScalarType())
Reid Spencer5f016e22007-07-11 17:01:13 +00004400 return Context.IntTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004401 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004402}
4403
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004404/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
4405/// is a read-only property; return true if so. A readonly property expression
4406/// depends on various declarations and thus must be treated specially.
4407///
Mike Stumpeed9cac2009-02-19 03:04:26 +00004408static bool IsReadonlyProperty(Expr *E, Sema &S)
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004409{
4410 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
4411 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
4412 if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) {
4413 QualType BaseType = PropExpr->getBase()->getType();
Steve Naroff14108da2009-07-10 23:34:53 +00004414 if (const ObjCObjectPointerType *OPT =
4415 BaseType->getAsObjCInterfacePointerType())
4416 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
4417 if (S.isPropertyReadonly(PDecl, IFace))
4418 return true;
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004419 }
4420 }
4421 return false;
4422}
4423
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004424/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
4425/// emit an error and return true. If so, return false.
4426static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004427 SourceLocation OrigLoc = Loc;
4428 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
4429 &Loc);
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004430 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
4431 IsLV = Expr::MLV_ReadonlyProperty;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004432 if (IsLV == Expr::MLV_Valid)
4433 return false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004434
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004435 unsigned Diag = 0;
4436 bool NeedType = false;
4437 switch (IsLV) { // C99 6.5.16p2
4438 default: assert(0 && "Unknown result from isModifiableLvalue!");
4439 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004440 case Expr::MLV_ArrayType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004441 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
4442 NeedType = true;
4443 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004444 case Expr::MLV_NotObjectType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004445 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
4446 NeedType = true;
4447 break;
Chris Lattnerca354fa2008-11-17 19:51:54 +00004448 case Expr::MLV_LValueCast:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004449 Diag = diag::err_typecheck_lvalue_casts_not_supported;
4450 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00004451 case Expr::MLV_InvalidExpression:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004452 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
4453 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00004454 case Expr::MLV_IncompleteType:
4455 case Expr::MLV_IncompleteVoidType:
Douglas Gregor86447ec2009-03-09 16:13:40 +00004456 return S.RequireCompleteType(Loc, E->getType(),
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004457 diag::err_typecheck_incomplete_type_not_modifiable_lvalue,
4458 E->getSourceRange());
Chris Lattner5cf216b2008-01-04 18:04:52 +00004459 case Expr::MLV_DuplicateVectorComponents:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004460 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
4461 break;
Steve Naroff4f6a7d72008-09-26 14:41:28 +00004462 case Expr::MLV_NotBlockQualified:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004463 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
4464 break;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00004465 case Expr::MLV_ReadonlyProperty:
4466 Diag = diag::error_readonly_property_assignment;
4467 break;
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +00004468 case Expr::MLV_NoSetterProperty:
4469 Diag = diag::error_nosetter_property_assignment;
4470 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00004471 }
Steve Naroffd1861fd2007-07-31 12:34:36 +00004472
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004473 SourceRange Assign;
4474 if (Loc != OrigLoc)
4475 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004476 if (NeedType)
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004477 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004478 else
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004479 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004480 return true;
4481}
4482
4483
4484
4485// C99 6.5.16.1
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004486QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS,
4487 SourceLocation Loc,
4488 QualType CompoundType) {
4489 // Verify that LHS is a modifiable lvalue, and emit error if not.
4490 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004491 return QualType();
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004492
4493 QualType LHSType = LHS->getType();
4494 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004495
Chris Lattner5cf216b2008-01-04 18:04:52 +00004496 AssignConvertType ConvTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004497 if (CompoundType.isNull()) {
Chris Lattner2c156472008-08-21 18:04:13 +00004498 // Simple assignment "x = y".
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004499 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS);
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004500 // Special case of NSObject attributes on c-style pointer types.
4501 if (ConvTy == IncompatiblePointer &&
4502 ((Context.isObjCNSObjectType(LHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00004503 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004504 (Context.isObjCNSObjectType(RHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00004505 LHSType->isObjCObjectPointerType())))
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004506 ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004507
Chris Lattner2c156472008-08-21 18:04:13 +00004508 // If the RHS is a unary plus or minus, check to see if they = and + are
4509 // right next to each other. If so, the user may have typo'd "x =+ 4"
4510 // instead of "x += 4".
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004511 Expr *RHSCheck = RHS;
Chris Lattner2c156472008-08-21 18:04:13 +00004512 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
4513 RHSCheck = ICE->getSubExpr();
4514 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
4515 if ((UO->getOpcode() == UnaryOperator::Plus ||
4516 UO->getOpcode() == UnaryOperator::Minus) &&
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004517 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattner2c156472008-08-21 18:04:13 +00004518 // Only if the two operators are exactly adjacent.
Chris Lattner399bd1b2009-03-08 06:51:10 +00004519 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() &&
4520 // And there is a space or other character before the subexpr of the
4521 // unary +/-. We don't want to warn on "x=-1".
Chris Lattner3e872092009-03-09 07:11:10 +00004522 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
4523 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004524 Diag(Loc, diag::warn_not_compound_assign)
4525 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-")
4526 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner399bd1b2009-03-08 06:51:10 +00004527 }
Chris Lattner2c156472008-08-21 18:04:13 +00004528 }
4529 } else {
4530 // Compound assignment "x += y"
Eli Friedman623712b2009-05-16 05:56:02 +00004531 ConvTy = CheckAssignmentConstraints(LHSType, RHSType);
Chris Lattner2c156472008-08-21 18:04:13 +00004532 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00004533
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004534 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
4535 RHS, "assigning"))
Chris Lattner5cf216b2008-01-04 18:04:52 +00004536 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004537
Reid Spencer5f016e22007-07-11 17:01:13 +00004538 // C99 6.5.16p3: The type of an assignment expression is the type of the
4539 // left operand unless the left operand has qualified type, in which case
Mike Stumpeed9cac2009-02-19 03:04:26 +00004540 // it is the unqualified version of the type of the left operand.
Reid Spencer5f016e22007-07-11 17:01:13 +00004541 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
4542 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00004543 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregor2d833e32009-05-02 00:36:19 +00004544 // operand.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004545 return LHSType.getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004546}
4547
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004548// C99 6.5.17
4549QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) {
Chris Lattner53fcaa92008-07-25 20:54:07 +00004550 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004551 DefaultFunctionArrayConversion(RHS);
Eli Friedmanb1d796d2009-03-23 00:24:07 +00004552
4553 // FIXME: Check that RHS type is complete in C mode (it's legal for it to be
4554 // incomplete in C++).
4555
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004556 return RHS->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004557}
4558
Steve Naroff49b45262007-07-13 16:58:59 +00004559/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
4560/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00004561QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc,
4562 bool isInc) {
Sebastian Redl28507842009-02-26 14:39:58 +00004563 if (Op->isTypeDependent())
4564 return Context.DependentTy;
4565
Chris Lattner3528d352008-11-21 07:05:48 +00004566 QualType ResType = Op->getType();
4567 assert(!ResType.isNull() && "no type for increment/decrement expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00004568
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00004569 if (getLangOptions().CPlusPlus && ResType->isBooleanType()) {
4570 // Decrement of bool is not allowed.
4571 if (!isInc) {
4572 Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
4573 return QualType();
4574 }
4575 // Increment of bool sets it to true, but is deprecated.
4576 Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
4577 } else if (ResType->isRealType()) {
Chris Lattner3528d352008-11-21 07:05:48 +00004578 // OK!
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004579 } else if (ResType->isAnyPointerType()) {
4580 QualType PointeeTy = ResType->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00004581
Chris Lattner3528d352008-11-21 07:05:48 +00004582 // C99 6.5.2.4p2, 6.5.6p2
Steve Naroff14108da2009-07-10 23:34:53 +00004583 if (PointeeTy->isVoidType()) {
Douglas Gregorc983b862009-01-23 00:36:41 +00004584 if (getLangOptions().CPlusPlus) {
4585 Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type)
4586 << Op->getSourceRange();
4587 return QualType();
4588 }
4589
4590 // Pointer to void is a GNU extension in C.
Chris Lattner3528d352008-11-21 07:05:48 +00004591 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
Steve Naroff14108da2009-07-10 23:34:53 +00004592 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorc983b862009-01-23 00:36:41 +00004593 if (getLangOptions().CPlusPlus) {
4594 Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type)
4595 << Op->getType() << Op->getSourceRange();
4596 return QualType();
4597 }
4598
4599 Diag(OpLoc, diag::ext_gnu_ptr_func_arith)
Chris Lattnerd1625842008-11-24 06:25:27 +00004600 << ResType << Op->getSourceRange();
Steve Naroff14108da2009-07-10 23:34:53 +00004601 } else if (RequireCompleteType(OpLoc, PointeeTy,
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00004602 diag::err_typecheck_arithmetic_incomplete_type,
4603 Op->getSourceRange(), SourceRange(),
4604 ResType))
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004605 return QualType();
Chris Lattner3528d352008-11-21 07:05:48 +00004606 } else if (ResType->isComplexType()) {
4607 // C99 does not support ++/-- on complex types, we allow as an extension.
4608 Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00004609 << ResType << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00004610 } else {
4611 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Chris Lattnerd1625842008-11-24 06:25:27 +00004612 << ResType << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00004613 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004614 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004615 // At this point, we know we have a real, complex or pointer type.
Steve Naroffdd10e022007-08-23 21:37:33 +00004616 // Now make sure the operand is a modifiable lvalue.
Chris Lattner3528d352008-11-21 07:05:48 +00004617 if (CheckForModifiableLvalue(Op, OpLoc, *this))
Reid Spencer5f016e22007-07-11 17:01:13 +00004618 return QualType();
Chris Lattner3528d352008-11-21 07:05:48 +00004619 return ResType;
Reid Spencer5f016e22007-07-11 17:01:13 +00004620}
4621
Anders Carlsson369dee42008-02-01 07:15:58 +00004622/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Reid Spencer5f016e22007-07-11 17:01:13 +00004623/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00004624/// where the declaration is needed for type checking. We only need to
4625/// handle cases when the expression references a function designator
4626/// or is an lvalue. Here are some examples:
4627/// - &(x) => x
4628/// - &*****f => f for f a function designator.
4629/// - &s.xx => s
4630/// - &s.zz[1].yy -> s, if zz is an array
4631/// - *(x + 1) -> x, if x is an array
4632/// - &"123"[2] -> 0
4633/// - & __real__ x -> x
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00004634static NamedDecl *getPrimaryDecl(Expr *E) {
Chris Lattnerf0467b32008-04-02 04:24:33 +00004635 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004636 case Stmt::DeclRefExprClass:
Douglas Gregor1a49af92009-01-06 05:10:23 +00004637 case Stmt::QualifiedDeclRefExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00004638 return cast<DeclRefExpr>(E)->getDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00004639 case Stmt::MemberExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00004640 // If this is an arrow operator, the address is an offset from
4641 // the base's value, so the object the base refers to is
4642 // irrelevant.
Chris Lattnerf0467b32008-04-02 04:24:33 +00004643 if (cast<MemberExpr>(E)->isArrow())
Chris Lattnerf82228f2007-11-16 17:46:48 +00004644 return 0;
Eli Friedman23d58ce2009-04-20 08:23:18 +00004645 // Otherwise, the expression refers to a part of the base
Chris Lattnerf0467b32008-04-02 04:24:33 +00004646 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson369dee42008-02-01 07:15:58 +00004647 case Stmt::ArraySubscriptExprClass: {
Mike Stump390b4cc2009-05-16 07:39:55 +00004648 // FIXME: This code shouldn't be necessary! We should catch the implicit
4649 // promotion of register arrays earlier.
Eli Friedman23d58ce2009-04-20 08:23:18 +00004650 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
4651 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
4652 if (ICE->getSubExpr()->getType()->isArrayType())
4653 return getPrimaryDecl(ICE->getSubExpr());
4654 }
4655 return 0;
Anders Carlsson369dee42008-02-01 07:15:58 +00004656 }
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00004657 case Stmt::UnaryOperatorClass: {
4658 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004659
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00004660 switch(UO->getOpcode()) {
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00004661 case UnaryOperator::Real:
4662 case UnaryOperator::Imag:
4663 case UnaryOperator::Extension:
4664 return getPrimaryDecl(UO->getSubExpr());
4665 default:
4666 return 0;
4667 }
4668 }
Reid Spencer5f016e22007-07-11 17:01:13 +00004669 case Stmt::ParenExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00004670 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerf82228f2007-11-16 17:46:48 +00004671 case Stmt::ImplicitCastExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00004672 // If the result of an implicit cast is an l-value, we care about
4673 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattnerf0467b32008-04-02 04:24:33 +00004674 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00004675 default:
4676 return 0;
4677 }
4678}
4679
4680/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stumpeed9cac2009-02-19 03:04:26 +00004681/// designator or an lvalue designating an object. If it is an lvalue, the
Reid Spencer5f016e22007-07-11 17:01:13 +00004682/// object cannot be declared with storage class register or be a bit field.
Mike Stumpeed9cac2009-02-19 03:04:26 +00004683/// Note: The usual conversions are *not* applied to the operand of the &
Reid Spencer5f016e22007-07-11 17:01:13 +00004684/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stumpeed9cac2009-02-19 03:04:26 +00004685/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregor904eed32008-11-10 20:40:00 +00004686/// we allow the '&' but retain the overloaded-function type.
Reid Spencer5f016e22007-07-11 17:01:13 +00004687QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Eli Friedman23d58ce2009-04-20 08:23:18 +00004688 // Make sure to ignore parentheses in subsequent checks
4689 op = op->IgnoreParens();
4690
Douglas Gregor9103bb22008-12-17 22:52:20 +00004691 if (op->isTypeDependent())
4692 return Context.DependentTy;
4693
Steve Naroff08f19672008-01-13 17:10:08 +00004694 if (getLangOptions().C99) {
4695 // Implement C99-only parts of addressof rules.
4696 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
4697 if (uOp->getOpcode() == UnaryOperator::Deref)
4698 // Per C99 6.5.3.2, the address of a deref always returns a valid result
4699 // (assuming the deref expression is valid).
4700 return uOp->getSubExpr()->getType();
4701 }
4702 // Technically, there should be a check for array subscript
4703 // expressions here, but the result of one is always an lvalue anyway.
4704 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00004705 NamedDecl *dcl = getPrimaryDecl(op);
Chris Lattner28be73f2008-07-26 21:30:36 +00004706 Expr::isLvalueResult lval = op->isLvalue(Context);
Nuno Lopes6b6609f2008-12-16 22:59:47 +00004707
Eli Friedman441cf102009-05-16 23:27:50 +00004708 if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
4709 // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00004710 // The operand must be either an l-value or a function designator
Eli Friedman441cf102009-05-16 23:27:50 +00004711 if (!op->getType()->isFunctionType()) {
Chris Lattnerf82228f2007-11-16 17:46:48 +00004712 // FIXME: emit more specific diag...
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00004713 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
4714 << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004715 return QualType();
4716 }
Douglas Gregor33bbbc52009-05-02 02:18:30 +00004717 } else if (op->getBitField()) { // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00004718 // The operand cannot be a bit-field
4719 Diag(OpLoc, diag::err_typecheck_address_of)
4720 << "bit-field" << op->getSourceRange();
Douglas Gregor86f19402008-12-20 23:49:58 +00004721 return QualType();
Nate Begemanb104b1f2009-02-15 22:45:20 +00004722 } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) &&
4723 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){
Eli Friedman23d58ce2009-04-20 08:23:18 +00004724 // The operand cannot be an element of a vector
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004725 Diag(OpLoc, diag::err_typecheck_address_of)
Nate Begemanb104b1f2009-02-15 22:45:20 +00004726 << "vector element" << op->getSourceRange();
Steve Naroffbcb2b612008-02-29 23:30:25 +00004727 return QualType();
Fariborz Jahanian0337f212009-07-07 18:50:52 +00004728 } else if (isa<ObjCPropertyRefExpr>(op)) {
4729 // cannot take address of a property expression.
4730 Diag(OpLoc, diag::err_typecheck_address_of)
4731 << "property expression" << op->getSourceRange();
4732 return QualType();
Steve Naroffbcb2b612008-02-29 23:30:25 +00004733 } else if (dcl) { // C99 6.5.3.2p1
Mike Stumpeed9cac2009-02-19 03:04:26 +00004734 // We have an lvalue with a decl. Make sure the decl is not declared
Reid Spencer5f016e22007-07-11 17:01:13 +00004735 // with the register storage-class specifier.
4736 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
4737 if (vd->getStorageClass() == VarDecl::Register) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004738 Diag(OpLoc, diag::err_typecheck_address_of)
4739 << "register variable" << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004740 return QualType();
4741 }
Douglas Gregor83314aa2009-07-08 20:55:45 +00004742 } else if (isa<OverloadedFunctionDecl>(dcl) ||
4743 isa<FunctionTemplateDecl>(dcl)) {
Douglas Gregor904eed32008-11-10 20:40:00 +00004744 return Context.OverloadTy;
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00004745 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) {
Douglas Gregor29882052008-12-10 21:26:49 +00004746 // Okay: we can take the address of a field.
Sebastian Redlebc07d52009-02-03 20:19:35 +00004747 // Could be a pointer to member, though, if there is an explicit
4748 // scope qualifier for the class.
4749 if (isa<QualifiedDeclRefExpr>(op)) {
4750 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00004751 if (Ctx && Ctx->isRecord()) {
4752 if (FD->getType()->isReferenceType()) {
4753 Diag(OpLoc,
4754 diag::err_cannot_form_pointer_to_member_of_reference_type)
4755 << FD->getDeclName() << FD->getType();
4756 return QualType();
4757 }
4758
Sebastian Redlebc07d52009-02-03 20:19:35 +00004759 return Context.getMemberPointerType(op->getType(),
4760 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00004761 }
Sebastian Redlebc07d52009-02-03 20:19:35 +00004762 }
Anders Carlsson196f7d02009-05-16 21:43:42 +00004763 } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) {
Nuno Lopes6fea8d22008-12-16 22:58:26 +00004764 // Okay: we can take the address of a function.
Sebastian Redl33b399a2009-02-04 21:23:32 +00004765 // As above.
Anders Carlsson196f7d02009-05-16 21:43:42 +00004766 if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance())
4767 return Context.getMemberPointerType(op->getType(),
4768 Context.getTypeDeclType(MD->getParent()).getTypePtr());
4769 } else if (!isa<FunctionDecl>(dcl))
Reid Spencer5f016e22007-07-11 17:01:13 +00004770 assert(0 && "Unknown/unexpected decl type");
Reid Spencer5f016e22007-07-11 17:01:13 +00004771 }
Sebastian Redl33b399a2009-02-04 21:23:32 +00004772
Eli Friedman441cf102009-05-16 23:27:50 +00004773 if (lval == Expr::LV_IncompleteVoidType) {
4774 // Taking the address of a void variable is technically illegal, but we
4775 // allow it in cases which are otherwise valid.
4776 // Example: "extern void x; void* y = &x;".
4777 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
4778 }
4779
Reid Spencer5f016e22007-07-11 17:01:13 +00004780 // If the operand has type "type", the result has type "pointer to type".
4781 return Context.getPointerType(op->getType());
4782}
4783
Chris Lattner22caddc2008-11-23 09:13:29 +00004784QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) {
Sebastian Redl28507842009-02-26 14:39:58 +00004785 if (Op->isTypeDependent())
4786 return Context.DependentTy;
4787
Chris Lattner22caddc2008-11-23 09:13:29 +00004788 UsualUnaryConversions(Op);
4789 QualType Ty = Op->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004790
Chris Lattner22caddc2008-11-23 09:13:29 +00004791 // Note that per both C89 and C99, this is always legal, even if ptype is an
4792 // incomplete type or void. It would be possible to warn about dereferencing
4793 // a void pointer, but it's completely well-defined, and such a warning is
4794 // unlikely to catch any mistakes.
4795 if (const PointerType *PT = Ty->getAsPointerType())
Steve Naroff08f19672008-01-13 17:10:08 +00004796 return PT->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004797
Steve Naroff14108da2009-07-10 23:34:53 +00004798 if (const ObjCObjectPointerType *OPT = Ty->getAsObjCObjectPointerType())
4799 return OPT->getPointeeType();
4800
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004801 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattner22caddc2008-11-23 09:13:29 +00004802 << Ty << Op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004803 return QualType();
4804}
4805
4806static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
4807 tok::TokenKind Kind) {
4808 BinaryOperator::Opcode Opc;
4809 switch (Kind) {
4810 default: assert(0 && "Unknown binop!");
Sebastian Redl22460502009-02-07 00:15:38 +00004811 case tok::periodstar: Opc = BinaryOperator::PtrMemD; break;
4812 case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00004813 case tok::star: Opc = BinaryOperator::Mul; break;
4814 case tok::slash: Opc = BinaryOperator::Div; break;
4815 case tok::percent: Opc = BinaryOperator::Rem; break;
4816 case tok::plus: Opc = BinaryOperator::Add; break;
4817 case tok::minus: Opc = BinaryOperator::Sub; break;
4818 case tok::lessless: Opc = BinaryOperator::Shl; break;
4819 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
4820 case tok::lessequal: Opc = BinaryOperator::LE; break;
4821 case tok::less: Opc = BinaryOperator::LT; break;
4822 case tok::greaterequal: Opc = BinaryOperator::GE; break;
4823 case tok::greater: Opc = BinaryOperator::GT; break;
4824 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
4825 case tok::equalequal: Opc = BinaryOperator::EQ; break;
4826 case tok::amp: Opc = BinaryOperator::And; break;
4827 case tok::caret: Opc = BinaryOperator::Xor; break;
4828 case tok::pipe: Opc = BinaryOperator::Or; break;
4829 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
4830 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
4831 case tok::equal: Opc = BinaryOperator::Assign; break;
4832 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
4833 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
4834 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
4835 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
4836 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
4837 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
4838 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
4839 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
4840 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
4841 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
4842 case tok::comma: Opc = BinaryOperator::Comma; break;
4843 }
4844 return Opc;
4845}
4846
4847static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
4848 tok::TokenKind Kind) {
4849 UnaryOperator::Opcode Opc;
4850 switch (Kind) {
4851 default: assert(0 && "Unknown unary op!");
4852 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
4853 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
4854 case tok::amp: Opc = UnaryOperator::AddrOf; break;
4855 case tok::star: Opc = UnaryOperator::Deref; break;
4856 case tok::plus: Opc = UnaryOperator::Plus; break;
4857 case tok::minus: Opc = UnaryOperator::Minus; break;
4858 case tok::tilde: Opc = UnaryOperator::Not; break;
4859 case tok::exclaim: Opc = UnaryOperator::LNot; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00004860 case tok::kw___real: Opc = UnaryOperator::Real; break;
4861 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
4862 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
4863 }
4864 return Opc;
4865}
4866
Douglas Gregoreaebc752008-11-06 23:29:22 +00004867/// CreateBuiltinBinOp - Creates a new built-in binary operation with
4868/// operator @p Opc at location @c TokLoc. This routine only supports
4869/// built-in operations; ActOnBinOp handles overloaded operators.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004870Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
4871 unsigned Op,
4872 Expr *lhs, Expr *rhs) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00004873 QualType ResultTy; // Result type of the binary operator.
Douglas Gregoreaebc752008-11-06 23:29:22 +00004874 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op;
Eli Friedmanab3a8522009-03-28 01:22:36 +00004875 // The following two variables are used for compound assignment operators
4876 QualType CompLHSTy; // Type of LHS after promotions for computation
4877 QualType CompResultTy; // Type of computation result
Douglas Gregoreaebc752008-11-06 23:29:22 +00004878
4879 switch (Opc) {
Douglas Gregoreaebc752008-11-06 23:29:22 +00004880 case BinaryOperator::Assign:
4881 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType());
4882 break;
Sebastian Redl22460502009-02-07 00:15:38 +00004883 case BinaryOperator::PtrMemD:
4884 case BinaryOperator::PtrMemI:
4885 ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc,
4886 Opc == BinaryOperator::PtrMemI);
4887 break;
4888 case BinaryOperator::Mul:
Douglas Gregoreaebc752008-11-06 23:29:22 +00004889 case BinaryOperator::Div:
4890 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc);
4891 break;
4892 case BinaryOperator::Rem:
4893 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
4894 break;
4895 case BinaryOperator::Add:
4896 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
4897 break;
4898 case BinaryOperator::Sub:
4899 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
4900 break;
Sebastian Redl22460502009-02-07 00:15:38 +00004901 case BinaryOperator::Shl:
Douglas Gregoreaebc752008-11-06 23:29:22 +00004902 case BinaryOperator::Shr:
4903 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc);
4904 break;
4905 case BinaryOperator::LE:
4906 case BinaryOperator::LT:
4907 case BinaryOperator::GE:
4908 case BinaryOperator::GT:
Douglas Gregora86b8322009-04-06 18:45:53 +00004909 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004910 break;
4911 case BinaryOperator::EQ:
4912 case BinaryOperator::NE:
Douglas Gregora86b8322009-04-06 18:45:53 +00004913 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004914 break;
4915 case BinaryOperator::And:
4916 case BinaryOperator::Xor:
4917 case BinaryOperator::Or:
4918 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
4919 break;
4920 case BinaryOperator::LAnd:
4921 case BinaryOperator::LOr:
4922 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc);
4923 break;
4924 case BinaryOperator::MulAssign:
4925 case BinaryOperator::DivAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004926 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true);
4927 CompLHSTy = CompResultTy;
4928 if (!CompResultTy.isNull())
4929 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004930 break;
4931 case BinaryOperator::RemAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004932 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
4933 CompLHSTy = CompResultTy;
4934 if (!CompResultTy.isNull())
4935 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004936 break;
4937 case BinaryOperator::AddAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004938 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy);
4939 if (!CompResultTy.isNull())
4940 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004941 break;
4942 case BinaryOperator::SubAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004943 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy);
4944 if (!CompResultTy.isNull())
4945 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004946 break;
4947 case BinaryOperator::ShlAssign:
4948 case BinaryOperator::ShrAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004949 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true);
4950 CompLHSTy = CompResultTy;
4951 if (!CompResultTy.isNull())
4952 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004953 break;
4954 case BinaryOperator::AndAssign:
4955 case BinaryOperator::XorAssign:
4956 case BinaryOperator::OrAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004957 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
4958 CompLHSTy = CompResultTy;
4959 if (!CompResultTy.isNull())
4960 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004961 break;
4962 case BinaryOperator::Comma:
4963 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc);
4964 break;
4965 }
4966 if (ResultTy.isNull())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004967 return ExprError();
Eli Friedmanab3a8522009-03-28 01:22:36 +00004968 if (CompResultTy.isNull())
Steve Naroff6ece14c2009-01-21 00:14:39 +00004969 return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc));
4970 else
4971 return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy,
Eli Friedmanab3a8522009-03-28 01:22:36 +00004972 CompLHSTy, CompResultTy,
4973 OpLoc));
Douglas Gregoreaebc752008-11-06 23:29:22 +00004974}
4975
Reid Spencer5f016e22007-07-11 17:01:13 +00004976// Binary Operators. 'Tok' is the token for the operator.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004977Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
4978 tok::TokenKind Kind,
4979 ExprArg LHS, ExprArg RHS) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004980 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
Anders Carlssone9146f22009-05-01 19:49:17 +00004981 Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>();
Reid Spencer5f016e22007-07-11 17:01:13 +00004982
Steve Narofff69936d2007-09-16 03:34:24 +00004983 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
4984 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00004985
Douglas Gregor063daf62009-03-13 18:40:31 +00004986 if (getLangOptions().CPlusPlus &&
4987 (lhs->getType()->isOverloadableType() ||
4988 rhs->getType()->isOverloadableType())) {
4989 // Find all of the overloaded operators visible from this
4990 // point. We perform both an operator-name lookup from the local
4991 // scope and an argument-dependent lookup based on the types of
4992 // the arguments.
Douglas Gregor3fd95ce2009-03-13 00:33:25 +00004993 FunctionSet Functions;
Douglas Gregor063daf62009-03-13 18:40:31 +00004994 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc);
4995 if (OverOp != OO_None) {
4996 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(),
4997 Functions);
4998 Expr *Args[2] = { lhs, rhs };
4999 DeclarationName OpName
5000 = Context.DeclarationNames.getCXXOperatorName(OverOp);
5001 ArgumentDependentLookup(OpName, Args, 2, Functions);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005002 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005003
Douglas Gregor063daf62009-03-13 18:40:31 +00005004 // Build the (potentially-overloaded, potentially-dependent)
5005 // binary operation.
5006 return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs);
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005007 }
5008
Douglas Gregoreaebc752008-11-06 23:29:22 +00005009 // Build a built-in binary operation.
5010 return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs);
Reid Spencer5f016e22007-07-11 17:01:13 +00005011}
5012
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005013Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
5014 unsigned OpcIn,
5015 ExprArg InputArg) {
5016 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
Douglas Gregor74253732008-11-19 15:42:04 +00005017
Mike Stump390b4cc2009-05-16 07:39:55 +00005018 // FIXME: Input is modified below, but InputArg is not updated appropriately.
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005019 Expr *Input = (Expr *)InputArg.get();
Reid Spencer5f016e22007-07-11 17:01:13 +00005020 QualType resultType;
5021 switch (Opc) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005022 case UnaryOperator::PostInc:
5023 case UnaryOperator::PostDec:
5024 case UnaryOperator::OffsetOf:
5025 assert(false && "Invalid unary operator");
5026 break;
5027
Reid Spencer5f016e22007-07-11 17:01:13 +00005028 case UnaryOperator::PreInc:
5029 case UnaryOperator::PreDec:
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00005030 resultType = CheckIncrementDecrementOperand(Input, OpLoc,
5031 Opc == UnaryOperator::PreInc);
Reid Spencer5f016e22007-07-11 17:01:13 +00005032 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005033 case UnaryOperator::AddrOf:
Reid Spencer5f016e22007-07-11 17:01:13 +00005034 resultType = CheckAddressOfOperand(Input, OpLoc);
5035 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005036 case UnaryOperator::Deref:
Steve Naroff1ca9b112007-12-18 04:06:57 +00005037 DefaultFunctionArrayConversion(Input);
Reid Spencer5f016e22007-07-11 17:01:13 +00005038 resultType = CheckIndirectionOperand(Input, OpLoc);
5039 break;
5040 case UnaryOperator::Plus:
5041 case UnaryOperator::Minus:
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005042 UsualUnaryConversions(Input);
5043 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005044 if (resultType->isDependentType())
5045 break;
Douglas Gregor74253732008-11-19 15:42:04 +00005046 if (resultType->isArithmeticType()) // C99 6.5.3.3p1
5047 break;
5048 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
5049 resultType->isEnumeralType())
5050 break;
5051 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
5052 Opc == UnaryOperator::Plus &&
5053 resultType->isPointerType())
5054 break;
5055
Sebastian Redl0eb23302009-01-19 00:08:26 +00005056 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5057 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005058 case UnaryOperator::Not: // bitwise complement
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005059 UsualUnaryConversions(Input);
5060 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005061 if (resultType->isDependentType())
5062 break;
Chris Lattner02a65142008-07-25 23:52:49 +00005063 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
5064 if (resultType->isComplexType() || resultType->isComplexIntegerType())
5065 // C99 does not support '~' for complex conjugation.
Chris Lattnerd3a94e22008-11-20 06:06:08 +00005066 Diag(OpLoc, diag::ext_integer_complement_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00005067 << resultType << Input->getSourceRange();
Chris Lattner02a65142008-07-25 23:52:49 +00005068 else if (!resultType->isIntegerType())
Sebastian Redl0eb23302009-01-19 00:08:26 +00005069 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5070 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005071 break;
5072 case UnaryOperator::LNot: // logical negation
5073 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005074 DefaultFunctionArrayConversion(Input);
5075 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005076 if (resultType->isDependentType())
5077 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005078 if (!resultType->isScalarType()) // C99 6.5.3.3p1
Sebastian Redl0eb23302009-01-19 00:08:26 +00005079 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5080 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005081 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redl0eb23302009-01-19 00:08:26 +00005082 // In C++, it's bool. C++ 5.3.1p8
5083 resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00005084 break;
Chris Lattnerdbb36972007-08-24 21:16:53 +00005085 case UnaryOperator::Real:
Chris Lattnerdbb36972007-08-24 21:16:53 +00005086 case UnaryOperator::Imag:
Chris Lattnerba27e2a2009-02-17 08:12:06 +00005087 resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real);
Chris Lattnerdbb36972007-08-24 21:16:53 +00005088 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005089 case UnaryOperator::Extension:
Reid Spencer5f016e22007-07-11 17:01:13 +00005090 resultType = Input->getType();
5091 break;
5092 }
5093 if (resultType.isNull())
Sebastian Redl0eb23302009-01-19 00:08:26 +00005094 return ExprError();
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005095
5096 InputArg.release();
Steve Naroff6ece14c2009-01-21 00:14:39 +00005097 return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00005098}
5099
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005100// Unary Operators. 'Tok' is the token for the operator.
5101Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
5102 tok::TokenKind Op, ExprArg input) {
5103 Expr *Input = (Expr*)input.get();
5104 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
5105
5106 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) {
5107 // Find all of the overloaded operators visible from this
5108 // point. We perform both an operator-name lookup from the local
5109 // scope and an argument-dependent lookup based on the types of
5110 // the arguments.
5111 FunctionSet Functions;
5112 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
5113 if (OverOp != OO_None) {
5114 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
5115 Functions);
5116 DeclarationName OpName
5117 = Context.DeclarationNames.getCXXOperatorName(OverOp);
5118 ArgumentDependentLookup(OpName, &Input, 1, Functions);
5119 }
5120
5121 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input));
5122 }
5123
5124 return CreateBuiltinUnaryOp(OpLoc, Opc, move(input));
5125}
5126
Steve Naroff1b273c42007-09-16 14:56:35 +00005127/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Sebastian Redlf53597f2009-03-15 17:47:39 +00005128Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
5129 SourceLocation LabLoc,
5130 IdentifierInfo *LabelII) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005131 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +00005132 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Mike Stumpeed9cac2009-02-19 03:04:26 +00005133
Daniel Dunbar0ffb1252008-08-04 16:51:22 +00005134 // If we haven't seen this label yet, create a forward reference. It
5135 // will be validated and/or cleaned up in ActOnFinishFunctionBody.
Steve Naroffcaaacec2009-03-13 15:38:40 +00005136 if (LabelDecl == 0)
Steve Naroff6ece14c2009-01-21 00:14:39 +00005137 LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005138
Reid Spencer5f016e22007-07-11 17:01:13 +00005139 // Create the AST node. The address of a label always has type 'void*'.
Sebastian Redlf53597f2009-03-15 17:47:39 +00005140 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
5141 Context.getPointerType(Context.VoidTy)));
Reid Spencer5f016e22007-07-11 17:01:13 +00005142}
5143
Sebastian Redlf53597f2009-03-15 17:47:39 +00005144Sema::OwningExprResult
5145Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt,
5146 SourceLocation RPLoc) { // "({..})"
5147 Stmt *SubStmt = static_cast<Stmt*>(substmt.get());
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005148 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
5149 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
5150
Eli Friedmandca2b732009-01-24 23:09:00 +00005151 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Chris Lattner4a049f02009-04-25 19:11:05 +00005152 if (isFileScope)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005153 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedmandca2b732009-01-24 23:09:00 +00005154
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005155 // FIXME: there are a variety of strange constraints to enforce here, for
5156 // example, it is not possible to goto into a stmt expression apparently.
5157 // More semantic analysis is needed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005158
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005159 // If there are sub stmts in the compound stmt, take the type of the last one
5160 // as the type of the stmtexpr.
5161 QualType Ty = Context.VoidTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005162
Chris Lattner611b2ec2008-07-26 19:51:01 +00005163 if (!Compound->body_empty()) {
5164 Stmt *LastStmt = Compound->body_back();
5165 // If LastStmt is a label, skip down through into the body.
5166 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt))
5167 LastStmt = Label->getSubStmt();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005168
Chris Lattner611b2ec2008-07-26 19:51:01 +00005169 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt))
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005170 Ty = LastExpr->getType();
Chris Lattner611b2ec2008-07-26 19:51:01 +00005171 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005172
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005173 // FIXME: Check that expression type is complete/non-abstract; statement
5174 // expressions are not lvalues.
5175
Sebastian Redlf53597f2009-03-15 17:47:39 +00005176 substmt.release();
5177 return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc));
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005178}
Steve Naroffd34e9152007-08-01 22:05:33 +00005179
Sebastian Redlf53597f2009-03-15 17:47:39 +00005180Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
5181 SourceLocation BuiltinLoc,
5182 SourceLocation TypeLoc,
5183 TypeTy *argty,
5184 OffsetOfComponent *CompPtr,
5185 unsigned NumComponents,
5186 SourceLocation RPLoc) {
5187 // FIXME: This function leaks all expressions in the offset components on
5188 // error.
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005189 QualType ArgTy = QualType::getFromOpaquePtr(argty);
5190 assert(!ArgTy.isNull() && "Missing type argument!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00005191
Sebastian Redl28507842009-02-26 14:39:58 +00005192 bool Dependent = ArgTy->isDependentType();
5193
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005194 // We must have at least one component that refers to the type, and the first
5195 // one is known to be a field designator. Verify that the ArgTy represents
5196 // a struct/union/class.
Sebastian Redl28507842009-02-26 14:39:58 +00005197 if (!Dependent && !ArgTy->isRecordType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00005198 return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005199
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005200 // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable
5201 // with an incomplete type would be illegal.
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +00005202
Eli Friedman35183ac2009-02-27 06:44:11 +00005203 // Otherwise, create a null pointer as the base, and iteratively process
5204 // the offsetof designators.
5205 QualType ArgTyPtr = Context.getPointerType(ArgTy);
5206 Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005207 Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref,
Eli Friedman35183ac2009-02-27 06:44:11 +00005208 ArgTy, SourceLocation());
Eli Friedman1d242592009-01-26 01:33:06 +00005209
Chris Lattner9e2b75c2007-08-31 21:49:13 +00005210 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
5211 // GCC extension, diagnose them.
Eli Friedman35183ac2009-02-27 06:44:11 +00005212 // FIXME: This diagnostic isn't actually visible because the location is in
5213 // a system header!
Chris Lattner9e2b75c2007-08-31 21:49:13 +00005214 if (NumComponents != 1)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00005215 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
5216 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005217
Sebastian Redl28507842009-02-26 14:39:58 +00005218 if (!Dependent) {
Eli Friedmanc0d600c2009-05-03 21:22:18 +00005219 bool DidWarnAboutNonPOD = false;
Anders Carlsson5992e4a2009-05-02 18:36:10 +00005220
Sebastian Redl28507842009-02-26 14:39:58 +00005221 // FIXME: Dependent case loses a lot of information here. And probably
5222 // leaks like a sieve.
5223 for (unsigned i = 0; i != NumComponents; ++i) {
5224 const OffsetOfComponent &OC = CompPtr[i];
5225 if (OC.isBrackets) {
5226 // Offset of an array sub-field. TODO: Should we allow vector elements?
5227 const ArrayType *AT = Context.getAsArrayType(Res->getType());
5228 if (!AT) {
5229 Res->Destroy(Context);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005230 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
5231 << Res->getType());
Sebastian Redl28507842009-02-26 14:39:58 +00005232 }
5233
5234 // FIXME: C++: Verify that operator[] isn't overloaded.
5235
Eli Friedman35183ac2009-02-27 06:44:11 +00005236 // Promote the array so it looks more like a normal array subscript
5237 // expression.
5238 DefaultFunctionArrayConversion(Res);
5239
Sebastian Redl28507842009-02-26 14:39:58 +00005240 // C99 6.5.2.1p1
5241 Expr *Idx = static_cast<Expr*>(OC.U.E);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005242 // FIXME: Leaks Res
Sebastian Redl28507842009-02-26 14:39:58 +00005243 if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00005244 return ExprError(Diag(Idx->getLocStart(),
Chris Lattner338395d2009-04-25 22:50:55 +00005245 diag::err_typecheck_subscript_not_integer)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005246 << Idx->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +00005247
5248 Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(),
5249 OC.LocEnd);
5250 continue;
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005251 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005252
Sebastian Redl28507842009-02-26 14:39:58 +00005253 const RecordType *RC = Res->getType()->getAsRecordType();
5254 if (!RC) {
5255 Res->Destroy(Context);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005256 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
5257 << Res->getType());
Sebastian Redl28507842009-02-26 14:39:58 +00005258 }
Chris Lattner704fe352007-08-30 17:59:59 +00005259
Sebastian Redl28507842009-02-26 14:39:58 +00005260 // Get the decl corresponding to this.
5261 RecordDecl *RD = RC->getDecl();
Anders Carlsson6d7f1492009-05-01 23:20:30 +00005262 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
Anders Carlsson5992e4a2009-05-02 18:36:10 +00005263 if (!CRD->isPOD() && !DidWarnAboutNonPOD) {
Anders Carlssonf9b8bc62009-05-02 17:45:47 +00005264 ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type)
5265 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
5266 << Res->getType());
Anders Carlsson5992e4a2009-05-02 18:36:10 +00005267 DidWarnAboutNonPOD = true;
5268 }
Anders Carlsson6d7f1492009-05-01 23:20:30 +00005269 }
5270
Sebastian Redl28507842009-02-26 14:39:58 +00005271 FieldDecl *MemberDecl
5272 = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo,
5273 LookupMemberName)
5274 .getAsDecl());
Sebastian Redlf53597f2009-03-15 17:47:39 +00005275 // FIXME: Leaks Res
Sebastian Redl28507842009-02-26 14:39:58 +00005276 if (!MemberDecl)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005277 return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member)
5278 << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd));
Mike Stumpeed9cac2009-02-19 03:04:26 +00005279
Sebastian Redl28507842009-02-26 14:39:58 +00005280 // FIXME: C++: Verify that MemberDecl isn't a static field.
5281 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedmane9356962009-04-26 20:50:44 +00005282 if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00005283 Res = BuildAnonymousStructUnionMemberReference(
5284 SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>();
Eli Friedmane9356962009-04-26 20:50:44 +00005285 } else {
5286 // MemberDecl->getType() doesn't get the right qualifiers, but it
5287 // doesn't matter here.
5288 Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd,
5289 MemberDecl->getType().getNonReferenceType());
5290 }
Sebastian Redl28507842009-02-26 14:39:58 +00005291 }
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005292 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005293
Sebastian Redlf53597f2009-03-15 17:47:39 +00005294 return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf,
5295 Context.getSizeType(), BuiltinLoc));
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005296}
5297
5298
Sebastian Redlf53597f2009-03-15 17:47:39 +00005299Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
5300 TypeTy *arg1,TypeTy *arg2,
5301 SourceLocation RPLoc) {
Steve Naroffd34e9152007-08-01 22:05:33 +00005302 QualType argT1 = QualType::getFromOpaquePtr(arg1);
5303 QualType argT2 = QualType::getFromOpaquePtr(arg2);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005304
Steve Naroffd34e9152007-08-01 22:05:33 +00005305 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
Mike Stumpeed9cac2009-02-19 03:04:26 +00005306
Douglas Gregorc12a9c52009-05-19 22:28:02 +00005307 if (getLangOptions().CPlusPlus) {
5308 Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus)
5309 << SourceRange(BuiltinLoc, RPLoc);
5310 return ExprError();
5311 }
5312
Sebastian Redlf53597f2009-03-15 17:47:39 +00005313 return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc,
5314 argT1, argT2, RPLoc));
Steve Naroffd34e9152007-08-01 22:05:33 +00005315}
5316
Sebastian Redlf53597f2009-03-15 17:47:39 +00005317Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
5318 ExprArg cond,
5319 ExprArg expr1, ExprArg expr2,
5320 SourceLocation RPLoc) {
5321 Expr *CondExpr = static_cast<Expr*>(cond.get());
5322 Expr *LHSExpr = static_cast<Expr*>(expr1.get());
5323 Expr *RHSExpr = static_cast<Expr*>(expr2.get());
Mike Stumpeed9cac2009-02-19 03:04:26 +00005324
Steve Naroffd04fdd52007-08-03 21:21:27 +00005325 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
5326
Sebastian Redl28507842009-02-26 14:39:58 +00005327 QualType resType;
Douglas Gregorc9ecc572009-05-19 22:43:30 +00005328 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl28507842009-02-26 14:39:58 +00005329 resType = Context.DependentTy;
5330 } else {
5331 // The conditional expression is required to be a constant expression.
5332 llvm::APSInt condEval(32);
5333 SourceLocation ExpLoc;
5334 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Sebastian Redlf53597f2009-03-15 17:47:39 +00005335 return ExprError(Diag(ExpLoc,
5336 diag::err_typecheck_choose_expr_requires_constant)
5337 << CondExpr->getSourceRange());
Steve Naroffd04fdd52007-08-03 21:21:27 +00005338
Sebastian Redl28507842009-02-26 14:39:58 +00005339 // If the condition is > zero, then the AST type is the same as the LSHExpr.
5340 resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType();
5341 }
5342
Sebastian Redlf53597f2009-03-15 17:47:39 +00005343 cond.release(); expr1.release(); expr2.release();
5344 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
5345 resType, RPLoc));
Steve Naroffd04fdd52007-08-03 21:21:27 +00005346}
5347
Steve Naroff4eb206b2008-09-03 18:15:37 +00005348//===----------------------------------------------------------------------===//
5349// Clang Extensions.
5350//===----------------------------------------------------------------------===//
5351
5352/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff090276f2008-10-10 01:28:17 +00005353void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00005354 // Analyze block parameters.
5355 BlockSemaInfo *BSI = new BlockSemaInfo();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005356
Steve Naroff4eb206b2008-09-03 18:15:37 +00005357 // Add BSI to CurBlock.
5358 BSI->PrevBlockInfo = CurBlock;
5359 CurBlock = BSI;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005360
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005361 BSI->ReturnType = QualType();
Steve Naroff4eb206b2008-09-03 18:15:37 +00005362 BSI->TheScope = BlockScope;
Mike Stumpb83d2872009-02-19 22:01:56 +00005363 BSI->hasBlockDeclRefExprs = false;
Chris Lattner17a78302009-04-19 05:28:12 +00005364 BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking;
5365 CurFunctionNeedsScopeChecking = false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005366
Steve Naroff090276f2008-10-10 01:28:17 +00005367 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc);
Douglas Gregor44b43212008-12-11 16:49:14 +00005368 PushDeclContext(BlockScope, BSI->TheDecl);
Steve Naroff090276f2008-10-10 01:28:17 +00005369}
5370
Mike Stump98eb8a72009-02-04 22:31:32 +00005371void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpaf199f32009-05-07 18:43:07 +00005372 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
Mike Stump98eb8a72009-02-04 22:31:32 +00005373
5374 if (ParamInfo.getNumTypeObjects() == 0
5375 || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) {
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00005376 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Mike Stump98eb8a72009-02-04 22:31:32 +00005377 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5378
Mike Stump4eeab842009-04-28 01:10:27 +00005379 if (T->isArrayType()) {
5380 Diag(ParamInfo.getSourceRange().getBegin(),
5381 diag::err_block_returns_array);
5382 return;
5383 }
5384
Mike Stump98eb8a72009-02-04 22:31:32 +00005385 // The parameter list is optional, if there was none, assume ().
5386 if (!T->isFunctionType())
5387 T = Context.getFunctionType(T, NULL, 0, 0, 0);
5388
5389 CurBlock->hasPrototype = true;
5390 CurBlock->isVariadic = false;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005391 // Check for a valid sentinel attribute on this block.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00005392 if (CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005393 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00005394 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005395 // FIXME: remove the attribute.
5396 }
Chris Lattner9097af12009-04-11 19:27:54 +00005397 QualType RetTy = T.getTypePtr()->getAsFunctionType()->getResultType();
5398
5399 // Do not allow returning a objc interface by-value.
5400 if (RetTy->isObjCInterfaceType()) {
5401 Diag(ParamInfo.getSourceRange().getBegin(),
5402 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5403 return;
5404 }
Mike Stump98eb8a72009-02-04 22:31:32 +00005405 return;
5406 }
5407
Steve Naroff4eb206b2008-09-03 18:15:37 +00005408 // Analyze arguments to block.
5409 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function &&
5410 "Not a function declarator!");
5411 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005412
Steve Naroff090276f2008-10-10 01:28:17 +00005413 CurBlock->hasPrototype = FTI.hasPrototype;
5414 CurBlock->isVariadic = true;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005415
Steve Naroff4eb206b2008-09-03 18:15:37 +00005416 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
5417 // no arguments, not a function that takes a single void argument.
5418 if (FTI.hasPrototype &&
5419 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattnerb28317a2009-03-28 19:18:32 +00005420 (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&&
5421 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00005422 // empty arg list, don't push any params.
Steve Naroff090276f2008-10-10 01:28:17 +00005423 CurBlock->isVariadic = false;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005424 } else if (FTI.hasPrototype) {
5425 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
Chris Lattnerb28317a2009-03-28 19:18:32 +00005426 CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>());
Steve Naroff090276f2008-10-10 01:28:17 +00005427 CurBlock->isVariadic = FTI.isVariadic;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005428 }
Jay Foadbeaaccd2009-05-21 09:52:38 +00005429 CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(),
Chris Lattner9097af12009-04-11 19:27:54 +00005430 CurBlock->Params.size());
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +00005431 CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic);
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00005432 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Steve Naroff090276f2008-10-10 01:28:17 +00005433 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
5434 E = CurBlock->TheDecl->param_end(); AI != E; ++AI)
5435 // If this has an identifier, add it to the scope stack.
5436 if ((*AI)->getIdentifier())
5437 PushOnScopeChains(*AI, CurBlock->TheScope);
Chris Lattner9097af12009-04-11 19:27:54 +00005438
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005439 // Check for a valid sentinel attribute on this block.
Douglas Gregor68584ed2009-06-18 16:11:24 +00005440 if (!CurBlock->isVariadic &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00005441 CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005442 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00005443 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005444 // FIXME: remove the attribute.
5445 }
5446
Chris Lattner9097af12009-04-11 19:27:54 +00005447 // Analyze the return type.
5448 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5449 QualType RetTy = T->getAsFunctionType()->getResultType();
5450
5451 // Do not allow returning a objc interface by-value.
5452 if (RetTy->isObjCInterfaceType()) {
5453 Diag(ParamInfo.getSourceRange().getBegin(),
5454 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5455 } else if (!RetTy->isDependentType())
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005456 CurBlock->ReturnType = RetTy;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005457}
5458
5459/// ActOnBlockError - If there is an error parsing a block, this callback
5460/// is invoked to pop the information about the block from the action impl.
5461void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
5462 // Ensure that CurBlock is deleted.
5463 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005464
Chris Lattner17a78302009-04-19 05:28:12 +00005465 CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking;
5466
Steve Naroff4eb206b2008-09-03 18:15:37 +00005467 // Pop off CurBlock, handle nested blocks.
Chris Lattner5c59e2b2009-04-21 22:38:46 +00005468 PopDeclContext();
Steve Naroff4eb206b2008-09-03 18:15:37 +00005469 CurBlock = CurBlock->PrevBlockInfo;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005470 // FIXME: Delete the ParmVarDecl objects as well???
Steve Naroff4eb206b2008-09-03 18:15:37 +00005471}
5472
5473/// ActOnBlockStmtExpr - This is called when the body of a block statement
5474/// literal was successfully completed. ^(int x){...}
Sebastian Redlf53597f2009-03-15 17:47:39 +00005475Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
5476 StmtArg body, Scope *CurScope) {
Chris Lattner9af55002009-03-27 04:18:06 +00005477 // If blocks are disabled, emit an error.
5478 if (!LangOpts.Blocks)
5479 Diag(CaretLoc, diag::err_blocks_disable);
5480
Steve Naroff4eb206b2008-09-03 18:15:37 +00005481 // Ensure that CurBlock is deleted.
5482 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock);
Steve Naroff4eb206b2008-09-03 18:15:37 +00005483
Steve Naroff090276f2008-10-10 01:28:17 +00005484 PopDeclContext();
5485
Steve Naroff4eb206b2008-09-03 18:15:37 +00005486 // Pop off CurBlock, handle nested blocks.
5487 CurBlock = CurBlock->PrevBlockInfo;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005488
Steve Naroff4eb206b2008-09-03 18:15:37 +00005489 QualType RetTy = Context.VoidTy;
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005490 if (!BSI->ReturnType.isNull())
5491 RetTy = BSI->ReturnType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005492
Steve Naroff4eb206b2008-09-03 18:15:37 +00005493 llvm::SmallVector<QualType, 8> ArgTypes;
5494 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i)
5495 ArgTypes.push_back(BSI->Params[i]->getType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00005496
Steve Naroff4eb206b2008-09-03 18:15:37 +00005497 QualType BlockTy;
5498 if (!BSI->hasPrototype)
Eli Friedman687abff2009-06-08 04:24:21 +00005499 BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0);
Steve Naroff4eb206b2008-09-03 18:15:37 +00005500 else
Jay Foadbeaaccd2009-05-21 09:52:38 +00005501 BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00005502 BSI->isVariadic, 0);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005503
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005504 // FIXME: Check that return/parameter types are complete/non-abstract
Douglas Gregore0762c92009-06-19 23:52:42 +00005505 DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end());
Steve Naroff4eb206b2008-09-03 18:15:37 +00005506 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005507
Chris Lattner17a78302009-04-19 05:28:12 +00005508 // If needed, diagnose invalid gotos and switches in the block.
5509 if (CurFunctionNeedsScopeChecking)
5510 DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get()));
5511 CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking;
5512
Anders Carlssone9146f22009-05-01 19:49:17 +00005513 BSI->TheDecl->setBody(body.takeAs<CompoundStmt>());
Sebastian Redlf53597f2009-03-15 17:47:39 +00005514 return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy,
5515 BSI->hasBlockDeclRefExprs));
Steve Naroff4eb206b2008-09-03 18:15:37 +00005516}
5517
Sebastian Redlf53597f2009-03-15 17:47:39 +00005518Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
5519 ExprArg expr, TypeTy *type,
5520 SourceLocation RPLoc) {
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005521 QualType T = QualType::getFromOpaquePtr(type);
Chris Lattner0d20b8a2009-04-05 15:49:53 +00005522 Expr *E = static_cast<Expr*>(expr.get());
5523 Expr *OrigExpr = E;
5524
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005525 InitBuiltinVaListType();
Eli Friedmanc34bcde2008-08-09 23:32:40 +00005526
5527 // Get the va_list type
5528 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedman5c091ba2009-05-16 12:46:54 +00005529 if (VaListType->isArrayType()) {
5530 // Deal with implicit array decay; for example, on x86-64,
5531 // va_list is an array, but it's supposed to decay to
5532 // a pointer for va_arg.
Eli Friedmanc34bcde2008-08-09 23:32:40 +00005533 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedman5c091ba2009-05-16 12:46:54 +00005534 // Make sure the input expression also decays appropriately.
5535 UsualUnaryConversions(E);
5536 } else {
5537 // Otherwise, the va_list argument must be an l-value because
5538 // it is modified by va_arg.
Douglas Gregordd027302009-05-19 23:10:31 +00005539 if (!E->isTypeDependent() &&
5540 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedman5c091ba2009-05-16 12:46:54 +00005541 return ExprError();
5542 }
Eli Friedmanc34bcde2008-08-09 23:32:40 +00005543
Douglas Gregordd027302009-05-19 23:10:31 +00005544 if (!E->isTypeDependent() &&
5545 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redlf53597f2009-03-15 17:47:39 +00005546 return ExprError(Diag(E->getLocStart(),
5547 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattner0d20b8a2009-04-05 15:49:53 +00005548 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner9dc8f192009-04-05 00:59:53 +00005549 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005550
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005551 // FIXME: Check that type is complete/non-abstract
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005552 // FIXME: Warn if a non-POD type is passed in.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005553
Sebastian Redlf53597f2009-03-15 17:47:39 +00005554 expr.release();
5555 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(),
5556 RPLoc));
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005557}
5558
Sebastian Redlf53597f2009-03-15 17:47:39 +00005559Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregor2d8b2732008-11-29 04:51:27 +00005560 // The type of __null will be int or long, depending on the size of
5561 // pointers on the target.
5562 QualType Ty;
5563 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth())
5564 Ty = Context.IntTy;
5565 else
5566 Ty = Context.LongTy;
5567
Sebastian Redlf53597f2009-03-15 17:47:39 +00005568 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregor2d8b2732008-11-29 04:51:27 +00005569}
5570
Chris Lattner5cf216b2008-01-04 18:04:52 +00005571bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
5572 SourceLocation Loc,
5573 QualType DstType, QualType SrcType,
5574 Expr *SrcExpr, const char *Flavor) {
5575 // Decode the result (notice that AST's are still created for extensions).
5576 bool isInvalid = false;
5577 unsigned DiagKind;
5578 switch (ConvTy) {
5579 default: assert(0 && "Unknown conversion type");
5580 case Compatible: return false;
Chris Lattnerb7b61152008-01-04 18:22:42 +00005581 case PointerToInt:
Chris Lattner5cf216b2008-01-04 18:04:52 +00005582 DiagKind = diag::ext_typecheck_convert_pointer_int;
5583 break;
Chris Lattnerb7b61152008-01-04 18:22:42 +00005584 case IntToPointer:
5585 DiagKind = diag::ext_typecheck_convert_int_pointer;
5586 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005587 case IncompatiblePointer:
5588 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
5589 break;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00005590 case IncompatiblePointerSign:
5591 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
5592 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005593 case FunctionVoidPointer:
5594 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
5595 break;
5596 case CompatiblePointerDiscardsQualifiers:
Douglas Gregor77a52232008-09-12 00:47:35 +00005597 // If the qualifiers lost were because we were applying the
5598 // (deprecated) C++ conversion from a string literal to a char*
5599 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
5600 // Ideally, this check would be performed in
5601 // CheckPointerTypesForAssignment. However, that would require a
5602 // bit of refactoring (so that the second argument is an
5603 // expression, rather than a type), which should be done as part
5604 // of a larger effort to fix CheckPointerTypesForAssignment for
5605 // C++ semantics.
5606 if (getLangOptions().CPlusPlus &&
5607 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
5608 return false;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005609 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
5610 break;
Steve Naroff1c7d0672008-09-04 15:10:53 +00005611 case IntToBlockPointer:
5612 DiagKind = diag::err_int_to_block_pointer;
5613 break;
5614 case IncompatibleBlockPointer:
Mike Stump25efa102009-04-21 22:51:42 +00005615 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00005616 break;
Steve Naroff39579072008-10-14 22:18:38 +00005617 case IncompatibleObjCQualifiedId:
Mike Stumpeed9cac2009-02-19 03:04:26 +00005618 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff39579072008-10-14 22:18:38 +00005619 // it can give a more specific diagnostic.
5620 DiagKind = diag::warn_incompatible_qualified_id;
5621 break;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00005622 case IncompatibleVectors:
5623 DiagKind = diag::warn_incompatible_vectors;
5624 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005625 case Incompatible:
5626 DiagKind = diag::err_typecheck_convert_incompatible;
5627 isInvalid = true;
5628 break;
5629 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005630
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005631 Diag(Loc, DiagKind) << DstType << SrcType << Flavor
5632 << SrcExpr->getSourceRange();
Chris Lattner5cf216b2008-01-04 18:04:52 +00005633 return isInvalid;
5634}
Anders Carlssone21555e2008-11-30 19:50:32 +00005635
Chris Lattner3bf68932009-04-25 21:59:05 +00005636bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){
Eli Friedman3b5ccca2009-04-25 22:26:58 +00005637 llvm::APSInt ICEResult;
5638 if (E->isIntegerConstantExpr(ICEResult, Context)) {
5639 if (Result)
5640 *Result = ICEResult;
5641 return false;
5642 }
5643
Anders Carlssone21555e2008-11-30 19:50:32 +00005644 Expr::EvalResult EvalResult;
5645
Mike Stumpeed9cac2009-02-19 03:04:26 +00005646 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
Anders Carlssone21555e2008-11-30 19:50:32 +00005647 EvalResult.HasSideEffects) {
5648 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
5649
5650 if (EvalResult.Diag) {
5651 // We only show the note if it's not the usual "invalid subexpression"
5652 // or if it's actually in a subexpression.
5653 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
5654 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
5655 Diag(EvalResult.DiagLoc, EvalResult.Diag);
5656 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005657
Anders Carlssone21555e2008-11-30 19:50:32 +00005658 return true;
5659 }
5660
Eli Friedman3b5ccca2009-04-25 22:26:58 +00005661 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
5662 E->getSourceRange();
Anders Carlssone21555e2008-11-30 19:50:32 +00005663
Eli Friedman3b5ccca2009-04-25 22:26:58 +00005664 if (EvalResult.Diag &&
5665 Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored)
5666 Diag(EvalResult.DiagLoc, EvalResult.Diag);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005667
Anders Carlssone21555e2008-11-30 19:50:32 +00005668 if (Result)
5669 *Result = EvalResult.Val.getInt();
5670 return false;
5671}
Douglas Gregore0762c92009-06-19 23:52:42 +00005672
Douglas Gregorac7610d2009-06-22 20:57:11 +00005673Sema::ExpressionEvaluationContext
5674Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) {
5675 // Introduce a new set of potentially referenced declarations to the stack.
5676 if (NewContext == PotentiallyPotentiallyEvaluated)
5677 PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls());
5678
5679 std::swap(ExprEvalContext, NewContext);
5680 return NewContext;
5681}
5682
5683void
5684Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext,
5685 ExpressionEvaluationContext NewContext) {
5686 ExprEvalContext = NewContext;
5687
5688 if (OldContext == PotentiallyPotentiallyEvaluated) {
5689 // Mark any remaining declarations in the current position of the stack
5690 // as "referenced". If they were not meant to be referenced, semantic
5691 // analysis would have eliminated them (e.g., in ActOnCXXTypeId).
5692 PotentiallyReferencedDecls RemainingDecls;
5693 RemainingDecls.swap(PotentiallyReferencedDeclStack.back());
5694 PotentiallyReferencedDeclStack.pop_back();
5695
5696 for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(),
5697 IEnd = RemainingDecls.end();
5698 I != IEnd; ++I)
5699 MarkDeclarationReferenced(I->first, I->second);
5700 }
5701}
Douglas Gregore0762c92009-06-19 23:52:42 +00005702
5703/// \brief Note that the given declaration was referenced in the source code.
5704///
5705/// This routine should be invoke whenever a given declaration is referenced
5706/// in the source code, and where that reference occurred. If this declaration
5707/// reference means that the the declaration is used (C++ [basic.def.odr]p2,
5708/// C99 6.9p3), then the declaration will be marked as used.
5709///
5710/// \param Loc the location where the declaration was referenced.
5711///
5712/// \param D the declaration that has been referenced by the source code.
5713void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) {
5714 assert(D && "No declaration?");
5715
Douglas Gregord7f37bf2009-06-22 23:06:13 +00005716 if (D->isUsed())
5717 return;
5718
Douglas Gregore0762c92009-06-19 23:52:42 +00005719 // Mark a parameter declaration "used", regardless of whether we're in a
5720 // template or not.
5721 if (isa<ParmVarDecl>(D))
5722 D->setUsed(true);
5723
5724 // Do not mark anything as "used" within a dependent context; wait for
5725 // an instantiation.
5726 if (CurContext->isDependentContext())
5727 return;
5728
Douglas Gregorac7610d2009-06-22 20:57:11 +00005729 switch (ExprEvalContext) {
5730 case Unevaluated:
5731 // We are in an expression that is not potentially evaluated; do nothing.
5732 return;
5733
5734 case PotentiallyEvaluated:
5735 // We are in a potentially-evaluated expression, so this declaration is
5736 // "used"; handle this below.
5737 break;
5738
5739 case PotentiallyPotentiallyEvaluated:
5740 // We are in an expression that may be potentially evaluated; queue this
5741 // declaration reference until we know whether the expression is
5742 // potentially evaluated.
5743 PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D));
5744 return;
5745 }
5746
Douglas Gregore0762c92009-06-19 23:52:42 +00005747 // Note that this declaration has been used.
Fariborz Jahanianb7f4cc02009-06-22 17:30:33 +00005748 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005749 unsigned TypeQuals;
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00005750 if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) {
5751 if (!Constructor->isUsed())
5752 DefineImplicitDefaultConstructor(Loc, Constructor);
5753 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005754 else if (Constructor->isImplicit() &&
5755 Constructor->isCopyConstructor(Context, TypeQuals)) {
5756 if (!Constructor->isUsed())
5757 DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals);
5758 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005759 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
5760 if (Destructor->isImplicit() && !Destructor->isUsed())
5761 DefineImplicitDestructor(Loc, Destructor);
5762
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005763 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) {
5764 if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
5765 MethodDecl->getOverloadedOperator() == OO_Equal) {
5766 if (!MethodDecl->isUsed())
5767 DefineImplicitOverloadedAssign(Loc, MethodDecl);
5768 }
5769 }
Fariborz Jahanianf5ed9e02009-06-24 22:09:44 +00005770 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor1637be72009-06-26 00:10:03 +00005771 // Implicit instantiation of function templates and member functions of
5772 // class templates.
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00005773 if (!Function->getBody()) {
Douglas Gregor1637be72009-06-26 00:10:03 +00005774 // FIXME: distinguish between implicit instantiations of function
5775 // templates and explicit specializations (the latter don't get
5776 // instantiated, naturally).
5777 if (Function->getInstantiatedFromMemberFunction() ||
5778 Function->getPrimaryTemplate())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00005779 PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00005780 }
5781
5782
Douglas Gregore0762c92009-06-19 23:52:42 +00005783 // FIXME: keep track of references to static functions
Douglas Gregore0762c92009-06-19 23:52:42 +00005784 Function->setUsed(true);
5785 return;
Douglas Gregord7f37bf2009-06-22 23:06:13 +00005786 }
Douglas Gregore0762c92009-06-19 23:52:42 +00005787
5788 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
5789 (void)Var;
5790 // FIXME: implicit template instantiation
5791 // FIXME: keep track of references to static data?
5792 D->setUsed(true);
5793 }
5794}
5795