blob: bb3f21a21266efc6c34c9a8930901d12f3ffeece [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()
Ted Kremenek35366a62009-07-17 17:50:17 +0000136 ? Ty->getAsPointerType()->getPointeeType()->getAsFunctionType()
137 : Ty->getAsBlockPointerType()->getPointeeType()->getAsFunctionType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000138 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();
Ted Kremenek35366a62009-07-17 17:50:17 +0000759 if (const PointerType *ObjectPtr = ObjectType->getAsPointerType()) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000760 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;
Mon P Wangc6a38a42009-07-22 03:08:17 +0000797 unsigned BaseAddrSpace = BaseObjectExpr->getType().getAddressSpace();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000798 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
799 FI = AnonFields.rbegin(), FIEnd = AnonFields.rend();
800 FI != FIEnd; ++FI) {
801 QualType MemberType = (*FI)->getType();
802 if (!(*FI)->isMutable()) {
803 unsigned combinedQualifiers
804 = MemberType.getCVRQualifiers() | ExtraQuals;
805 MemberType = MemberType.getQualifiedType(combinedQualifiers);
806 }
Mon P Wangc6a38a42009-07-22 03:08:17 +0000807 if (BaseAddrSpace != MemberType.getAddressSpace())
808 MemberType = Context.getAddrSpaceQualType(MemberType, BaseAddrSpace);
Douglas Gregore0762c92009-06-19 23:52:42 +0000809 MarkDeclarationReferenced(Loc, *FI);
Steve Naroff6ece14c2009-01-21 00:14:39 +0000810 Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI,
811 OpLoc, MemberType);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000812 BaseObjectIsPointer = false;
813 ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000814 }
815
Sebastian Redlcd965b92009-01-18 18:53:16 +0000816 return Owned(Result);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000817}
818
Douglas Gregor10c42622008-11-18 15:03:34 +0000819/// ActOnDeclarationNameExpr - The parser has read some kind of name
820/// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine
821/// performs lookup on that name and returns an expression that refers
822/// to that name. This routine isn't directly called from the parser,
823/// because the parser doesn't know about DeclarationName. Rather,
824/// this routine is called by ActOnIdentifierExpr,
825/// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr,
826/// which form the DeclarationName from the corresponding syntactic
827/// forms.
828///
829/// HasTrailingLParen indicates whether this identifier is used in a
830/// function call context. LookupCtx is only used for a C++
831/// qualified-id (foo::bar) to indicate the class or namespace that
832/// the identifier must be a member of.
Douglas Gregor5c37de72008-12-06 00:22:45 +0000833///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000834/// isAddressOfOperand means that this expression is the direct operand
835/// of an address-of operator. This matters because this is the only
836/// situation where a qualified name referencing a non-static member may
837/// appear outside a member function of this class.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000838Sema::OwningExprResult
839Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc,
840 DeclarationName Name, bool HasTrailingLParen,
Douglas Gregor17330012009-02-04 15:01:18 +0000841 const CXXScopeSpec *SS,
Sebastian Redlebc07d52009-02-03 20:19:35 +0000842 bool isAddressOfOperand) {
Chris Lattner8a934232008-03-31 00:36:02 +0000843 // Could be enum-constant, value decl, instance variable, etc.
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000844 if (SS && SS->isInvalid())
845 return ExprError();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000846
847 // C++ [temp.dep.expr]p3:
848 // An id-expression is type-dependent if it contains:
849 // -- a nested-name-specifier that contains a class-name that
850 // names a dependent type.
Douglas Gregor00c44862009-05-29 14:49:33 +0000851 // FIXME: Member of the current instantiation.
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000852 if (SS && isDependentScopeSpecifier(*SS)) {
Douglas Gregorab452ba2009-03-26 23:50:42 +0000853 return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy,
854 Loc, SS->getRange(),
Anders Carlsson9b31df42009-07-09 00:05:08 +0000855 static_cast<NestedNameSpecifier *>(SS->getScopeRep()),
856 isAddressOfOperand));
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000857 }
858
Douglas Gregor3e41d602009-02-13 23:20:09 +0000859 LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName,
860 false, true, Loc);
Douglas Gregor7176fff2009-01-15 00:26:24 +0000861
Sebastian Redlcd965b92009-01-18 18:53:16 +0000862 if (Lookup.isAmbiguous()) {
863 DiagnoseAmbiguousLookup(Lookup, Name, Loc,
864 SS && SS->isSet() ? SS->getRange()
865 : SourceRange());
866 return ExprError();
Chris Lattner5cb10d32009-04-24 22:30:50 +0000867 }
868
869 NamedDecl *D = Lookup.getAsDecl();
Douglas Gregor5c37de72008-12-06 00:22:45 +0000870
Chris Lattner8a934232008-03-31 00:36:02 +0000871 // If this reference is in an Objective-C method, then ivar lookup happens as
872 // well.
Douglas Gregor10c42622008-11-18 15:03:34 +0000873 IdentifierInfo *II = Name.getAsIdentifierInfo();
874 if (II && getCurMethodDecl()) {
Chris Lattner8a934232008-03-31 00:36:02 +0000875 // There are two cases to handle here. 1) scoped lookup could have failed,
876 // in which case we should look for an ivar. 2) scoped lookup could have
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000877 // found a decl, but that decl is outside the current instance method (i.e.
878 // a global variable). In these two cases, we do a lookup for an ivar with
879 // this name, if the lookup sucedes, we replace it our current decl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000880 if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000881 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000882 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000883 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Chris Lattner553905d2009-02-16 17:19:12 +0000884 // Check if referencing a field with __attribute__((deprecated)).
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000885 if (DiagnoseUseOfDecl(IV, Loc))
886 return ExprError();
Chris Lattner5cb10d32009-04-24 22:30:50 +0000887
888 // If we're referencing an invalid decl, just return this as a silent
889 // error node. The error diagnostic was already emitted on the decl.
890 if (IV->isInvalidDecl())
891 return ExprError();
892
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000893 bool IsClsMethod = getCurMethodDecl()->isClassMethod();
894 // If a class method attemps to use a free standing ivar, this is
895 // an error.
896 if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod())
897 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
898 << IV->getDeclName());
899 // If a class method uses a global variable, even if an ivar with
900 // same name exists, use the global.
901 if (!IsClsMethod) {
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000902 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
903 ClassDeclared != IFace)
904 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
Mike Stump390b4cc2009-05-16 07:39:55 +0000905 // FIXME: This should use a new expr for a direct reference, don't
906 // turn this into Self->ivar, just return a BareIVarExpr or something.
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000907 IdentifierInfo &II = Context.Idents.get("self");
Argyrios Kyrtzidisecd1bae2009-07-18 08:49:37 +0000908 OwningExprResult SelfExpr = ActOnIdentifierExpr(S, SourceLocation(),
909 II, false);
Douglas Gregore0762c92009-06-19 23:52:42 +0000910 MarkDeclarationReferenced(Loc, IV);
Daniel Dunbar525c9b72009-04-21 01:19:28 +0000911 return Owned(new (Context)
912 ObjCIvarRefExpr(IV, IV->getType(), Loc,
Anders Carlssone9146f22009-05-01 19:49:17 +0000913 SelfExpr.takeAs<Expr>(), true, true));
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000914 }
Chris Lattner8a934232008-03-31 00:36:02 +0000915 }
916 }
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000917 else if (getCurMethodDecl()->isInstanceMethod()) {
918 // We should warn if a local variable hides an ivar.
919 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000920 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000921 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000922 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
923 IFace == ClassDeclared)
Chris Lattner5cb10d32009-04-24 22:30:50 +0000924 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000925 }
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000926 }
Steve Naroff76de9d72008-08-10 19:10:41 +0000927 // Needed to implement property "super.method" notation.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000928 if (D == 0 && II->isStr("super")) {
Steve Naroffdd53eb52009-03-05 20:12:00 +0000929 QualType T;
930
931 if (getCurMethodDecl()->isInstanceMethod())
Steve Naroff14108da2009-07-10 23:34:53 +0000932 T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType(
933 getCurMethodDecl()->getClassInterface()));
Steve Naroffdd53eb52009-03-05 20:12:00 +0000934 else
935 T = Context.getObjCClassType();
Steve Naroff6ece14c2009-01-21 00:14:39 +0000936 return Owned(new (Context) ObjCSuperExpr(Loc, T));
Steve Naroffe3e9add2008-06-02 23:03:37 +0000937 }
Chris Lattner8a934232008-03-31 00:36:02 +0000938 }
Douglas Gregorc71e28c2009-02-16 19:28:42 +0000939
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000940 // Determine whether this name might be a candidate for
941 // argument-dependent lookup.
942 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
943 HasTrailingLParen;
944
945 if (ADL && D == 0) {
Douglas Gregorc71e28c2009-02-16 19:28:42 +0000946 // We've seen something of the form
947 //
948 // identifier(
949 //
950 // and we did not find any entity by the name
951 // "identifier". However, this identifier is still subject to
952 // argument-dependent lookup, so keep track of the name.
953 return Owned(new (Context) UnresolvedFunctionNameExpr(Name,
954 Context.OverloadTy,
955 Loc));
956 }
957
Reid Spencer5f016e22007-07-11 17:01:13 +0000958 if (D == 0) {
959 // Otherwise, this could be an implicitly declared function reference (legal
960 // in C90, extension in C99).
Douglas Gregor10c42622008-11-18 15:03:34 +0000961 if (HasTrailingLParen && II &&
Chris Lattner8a934232008-03-31 00:36:02 +0000962 !getLangOptions().CPlusPlus) // Not in C++.
Douglas Gregor10c42622008-11-18 15:03:34 +0000963 D = ImplicitlyDefineFunction(Loc, *II, S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000964 else {
965 // If this name wasn't predeclared and if this is not a function call,
966 // diagnose the problem.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000967 if (SS && !SS->isEmpty())
Sebastian Redlcd965b92009-01-18 18:53:16 +0000968 return ExprError(Diag(Loc, diag::err_typecheck_no_member)
969 << Name << SS->getRange());
Douglas Gregor10c42622008-11-18 15:03:34 +0000970 else if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
971 Name.getNameKind() == DeclarationName::CXXConversionFunctionName)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000972 return ExprError(Diag(Loc, diag::err_undeclared_use)
973 << Name.getAsString());
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000974 else
Sebastian Redlcd965b92009-01-18 18:53:16 +0000975 return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000976 }
977 }
Douglas Gregor751f9a42009-06-30 15:47:41 +0000978
979 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
980 // Warn about constructs like:
981 // if (void *X = foo()) { ... } else { X }.
982 // In the else block, the pointer is always false.
983
984 // FIXME: In a template instantiation, we don't have scope
985 // information to check this property.
986 if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) {
987 Scope *CheckS = S;
988 while (CheckS) {
989 if (CheckS->isWithinElse() &&
990 CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) {
991 if (Var->getType()->isBooleanType())
992 ExprError(Diag(Loc, diag::warn_value_always_false)
993 << Var->getDeclName());
994 else
995 ExprError(Diag(Loc, diag::warn_value_always_zero)
996 << Var->getDeclName());
997 break;
998 }
999
1000 // Move up one more control parent to check again.
1001 CheckS = CheckS->getControlParent();
1002 if (CheckS)
1003 CheckS = CheckS->getParent();
1004 }
1005 }
1006 } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) {
1007 if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) {
1008 // C99 DR 316 says that, if a function type comes from a
1009 // function definition (without a prototype), that type is only
1010 // used for checking compatibility. Therefore, when referencing
1011 // the function, we pretend that we don't have the full function
1012 // type.
1013 if (DiagnoseUseOfDecl(Func, Loc))
1014 return ExprError();
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001015
Douglas Gregor751f9a42009-06-30 15:47:41 +00001016 QualType T = Func->getType();
1017 QualType NoProtoType = T;
1018 if (const FunctionProtoType *Proto = T->getAsFunctionProtoType())
1019 NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType());
1020 return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS);
1021 }
1022 }
1023
1024 return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand);
1025}
1026
1027/// \brief Complete semantic analysis for a reference to the given declaration.
1028Sema::OwningExprResult
1029Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D,
1030 bool HasTrailingLParen,
1031 const CXXScopeSpec *SS,
1032 bool isAddressOfOperand) {
1033 assert(D && "Cannot refer to a NULL declaration");
1034 DeclarationName Name = D->getDeclName();
1035
Sebastian Redlebc07d52009-02-03 20:19:35 +00001036 // If this is an expression of the form &Class::member, don't build an
1037 // implicit member ref, because we want a pointer to the member in general,
1038 // not any specific instance's member.
1039 if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) {
Douglas Gregore4e5b052009-03-19 00:18:19 +00001040 DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001041 if (D && isa<CXXRecordDecl>(DC)) {
Sebastian Redlebc07d52009-02-03 20:19:35 +00001042 QualType DType;
1043 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
1044 DType = FD->getType().getNonReferenceType();
1045 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
1046 DType = Method->getType();
1047 } else if (isa<OverloadedFunctionDecl>(D)) {
1048 DType = Context.OverloadTy;
1049 }
1050 // Could be an inner type. That's diagnosed below, so ignore it here.
1051 if (!DType.isNull()) {
1052 // The pointer is type- and value-dependent if it points into something
1053 // dependent.
Douglas Gregor00c44862009-05-29 14:49:33 +00001054 bool Dependent = DC->isDependentContext();
Anders Carlssone41590d2009-06-24 00:10:43 +00001055 return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS);
Sebastian Redlebc07d52009-02-03 20:19:35 +00001056 }
1057 }
1058 }
1059
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001060 // We may have found a field within an anonymous union or struct
1061 // (C++ [class.union]).
1062 if (FieldDecl *FD = dyn_cast<FieldDecl>(D))
1063 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
1064 return BuildAnonymousStructUnionMemberReference(Loc, FD);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001065
Douglas Gregor88a35142008-12-22 05:46:06 +00001066 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
1067 if (!MD->isStatic()) {
1068 // C++ [class.mfct.nonstatic]p2:
1069 // [...] if name lookup (3.4.1) resolves the name in the
1070 // id-expression to a nonstatic nontype member of class X or of
1071 // a base class of X, the id-expression is transformed into a
1072 // class member access expression (5.2.5) using (*this) (9.3.2)
1073 // as the postfix-expression to the left of the '.' operator.
1074 DeclContext *Ctx = 0;
1075 QualType MemberType;
1076 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
1077 Ctx = FD->getDeclContext();
1078 MemberType = FD->getType();
1079
Ted Kremenek35366a62009-07-17 17:50:17 +00001080 if (const ReferenceType *RefType = MemberType->getAsReferenceType())
Douglas Gregor88a35142008-12-22 05:46:06 +00001081 MemberType = RefType->getPointeeType();
1082 else if (!FD->isMutable()) {
1083 unsigned combinedQualifiers
1084 = MemberType.getCVRQualifiers() | MD->getTypeQualifiers();
1085 MemberType = MemberType.getQualifiedType(combinedQualifiers);
1086 }
1087 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
1088 if (!Method->isStatic()) {
1089 Ctx = Method->getParent();
1090 MemberType = Method->getType();
1091 }
1092 } else if (OverloadedFunctionDecl *Ovl
1093 = dyn_cast<OverloadedFunctionDecl>(D)) {
1094 for (OverloadedFunctionDecl::function_iterator
1095 Func = Ovl->function_begin(),
1096 FuncEnd = Ovl->function_end();
1097 Func != FuncEnd; ++Func) {
1098 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func))
1099 if (!DMethod->isStatic()) {
1100 Ctx = Ovl->getDeclContext();
1101 MemberType = Context.OverloadTy;
1102 break;
1103 }
1104 }
1105 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001106
1107 if (Ctx && Ctx->isRecord()) {
Douglas Gregor88a35142008-12-22 05:46:06 +00001108 QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx));
1109 QualType ThisType = Context.getTagDeclType(MD->getParent());
1110 if ((Context.getCanonicalType(CtxType)
1111 == Context.getCanonicalType(ThisType)) ||
1112 IsDerivedFrom(ThisType, CtxType)) {
1113 // Build the implicit member access expression.
Steve Naroff6ece14c2009-01-21 00:14:39 +00001114 Expr *This = new (Context) CXXThisExpr(SourceLocation(),
Mike Stumpeed9cac2009-02-19 03:04:26 +00001115 MD->getThisType(Context));
Douglas Gregore0762c92009-06-19 23:52:42 +00001116 MarkDeclarationReferenced(Loc, D);
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001117 return Owned(new (Context) MemberExpr(This, true, D,
Eli Friedman72527132009-04-29 17:56:47 +00001118 Loc, MemberType));
Douglas Gregor88a35142008-12-22 05:46:06 +00001119 }
1120 }
1121 }
1122 }
1123
Douglas Gregor44b43212008-12-11 16:49:14 +00001124 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001125 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
1126 if (MD->isStatic())
1127 // "invalid use of member 'x' in static member function"
Sebastian Redlcd965b92009-01-18 18:53:16 +00001128 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
1129 << FD->getDeclName());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001130 }
1131
Douglas Gregor88a35142008-12-22 05:46:06 +00001132 // Any other ways we could have found the field in a well-formed
1133 // program would have been turned into implicit member expressions
1134 // above.
Sebastian Redlcd965b92009-01-18 18:53:16 +00001135 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
1136 << FD->getDeclName());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001137 }
Douglas Gregor88a35142008-12-22 05:46:06 +00001138
Reid Spencer5f016e22007-07-11 17:01:13 +00001139 if (isa<TypedefDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +00001140 return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001141 if (isa<ObjCInterfaceDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +00001142 return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001143 if (isa<NamespaceDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +00001144 return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name);
Reid Spencer5f016e22007-07-11 17:01:13 +00001145
Steve Naroffdd972f22008-09-05 22:11:13 +00001146 // Make the DeclRefExpr or BlockDeclRefExpr for the decl.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001147 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D))
Anders Carlssone41590d2009-06-24 00:10:43 +00001148 return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc,
1149 false, false, SS);
Douglas Gregorc15cb382009-02-09 23:23:08 +00001150 else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
Anders Carlssone41590d2009-06-24 00:10:43 +00001151 return BuildDeclRefExpr(Template, Context.OverloadTy, Loc,
1152 false, false, SS);
Steve Naroffdd972f22008-09-05 22:11:13 +00001153 ValueDecl *VD = cast<ValueDecl>(D);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001154
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001155 // Check whether this declaration can be used. Note that we suppress
1156 // this check when we're going to perform argument-dependent lookup
1157 // on this function name, because this might not be the function
1158 // that overload resolution actually selects.
Douglas Gregor751f9a42009-06-30 15:47:41 +00001159 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
1160 HasTrailingLParen;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001161 if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc))
1162 return ExprError();
1163
Steve Naroffdd972f22008-09-05 22:11:13 +00001164 // Only create DeclRefExpr's for valid Decl's.
1165 if (VD->isInvalidDecl())
Sebastian Redlcd965b92009-01-18 18:53:16 +00001166 return ExprError();
1167
Chris Lattner639e2d32008-10-20 05:16:36 +00001168 // If the identifier reference is inside a block, and it refers to a value
1169 // that is outside the block, create a BlockDeclRefExpr instead of a
1170 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
1171 // the block is formed.
Steve Naroffdd972f22008-09-05 22:11:13 +00001172 //
Chris Lattner639e2d32008-10-20 05:16:36 +00001173 // We do not do this for things like enum constants, global variables, etc,
1174 // as they do not get snapshotted.
1175 //
1176 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) {
Douglas Gregore0762c92009-06-19 23:52:42 +00001177 MarkDeclarationReferenced(Loc, VD);
Eli Friedman5fdeae12009-03-22 23:00:19 +00001178 QualType ExprTy = VD->getType().getNonReferenceType();
Steve Naroff090276f2008-10-10 01:28:17 +00001179 // The BlocksAttr indicates the variable is bound by-reference.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001180 if (VD->getAttr<BlocksAttr>())
Eli Friedman5fdeae12009-03-22 23:00:19 +00001181 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true));
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00001182 // This is to record that a 'const' was actually synthesize and added.
1183 bool constAdded = !ExprTy.isConstQualified();
Steve Naroff090276f2008-10-10 01:28:17 +00001184 // Variable will be bound by-copy, make it const within the closure.
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00001185
Eli Friedman5fdeae12009-03-22 23:00:19 +00001186 ExprTy.addConst();
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00001187 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false,
1188 constAdded));
Steve Naroff090276f2008-10-10 01:28:17 +00001189 }
1190 // If this reference is not in a block or if the referenced variable is
1191 // within the block, create a normal DeclRefExpr.
Douglas Gregor898574e2008-12-05 23:32:09 +00001192
Douglas Gregor898574e2008-12-05 23:32:09 +00001193 bool TypeDependent = false;
Douglas Gregor83f96f62008-12-10 20:57:37 +00001194 bool ValueDependent = false;
1195 if (getLangOptions().CPlusPlus) {
1196 // C++ [temp.dep.expr]p3:
1197 // An id-expression is type-dependent if it contains:
1198 // - an identifier that was declared with a dependent type,
1199 if (VD->getType()->isDependentType())
1200 TypeDependent = true;
1201 // - FIXME: a template-id that is dependent,
1202 // - a conversion-function-id that specifies a dependent type,
1203 else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
1204 Name.getCXXNameType()->isDependentType())
1205 TypeDependent = true;
1206 // - a nested-name-specifier that contains a class-name that
1207 // names a dependent type.
1208 else if (SS && !SS->isEmpty()) {
Douglas Gregore4e5b052009-03-19 00:18:19 +00001209 for (DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor83f96f62008-12-10 20:57:37 +00001210 DC; DC = DC->getParent()) {
1211 // FIXME: could stop early at namespace scope.
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001212 if (DC->isRecord()) {
Douglas Gregor83f96f62008-12-10 20:57:37 +00001213 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
1214 if (Context.getTypeDeclType(Record)->isDependentType()) {
1215 TypeDependent = true;
1216 break;
1217 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001218 }
1219 }
1220 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001221
Douglas Gregor83f96f62008-12-10 20:57:37 +00001222 // C++ [temp.dep.constexpr]p2:
1223 //
1224 // An identifier is value-dependent if it is:
1225 // - a name declared with a dependent type,
1226 if (TypeDependent)
1227 ValueDependent = true;
1228 // - the name of a non-type template parameter,
1229 else if (isa<NonTypeTemplateParmDecl>(VD))
1230 ValueDependent = true;
1231 // - a constant with integral or enumeration type and is
1232 // initialized with an expression that is value-dependent
Eli Friedmanc1494122009-06-11 01:11:20 +00001233 else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) {
1234 if (Dcl->getType().getCVRQualifiers() == QualType::Const &&
1235 Dcl->getInit()) {
1236 ValueDependent = Dcl->getInit()->isValueDependent();
1237 }
1238 }
Douglas Gregor83f96f62008-12-10 20:57:37 +00001239 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001240
Anders Carlssone41590d2009-06-24 00:10:43 +00001241 return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc,
1242 TypeDependent, ValueDependent, SS);
Reid Spencer5f016e22007-07-11 17:01:13 +00001243}
1244
Sebastian Redlcd965b92009-01-18 18:53:16 +00001245Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
1246 tok::TokenKind Kind) {
Chris Lattnerd9f69102008-08-10 01:53:14 +00001247 PredefinedExpr::IdentType IT;
Sebastian Redlcd965b92009-01-18 18:53:16 +00001248
Reid Spencer5f016e22007-07-11 17:01:13 +00001249 switch (Kind) {
Chris Lattner1423ea42008-01-12 18:39:25 +00001250 default: assert(0 && "Unknown simple primary expr!");
Chris Lattnerd9f69102008-08-10 01:53:14 +00001251 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
1252 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
1253 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001254 }
Chris Lattner1423ea42008-01-12 18:39:25 +00001255
Chris Lattnerfa28b302008-01-12 08:14:25 +00001256 // Pre-defined identifiers are of type char[x], where x is the length of the
1257 // string.
Chris Lattner8f978d52008-01-12 19:32:28 +00001258 unsigned Length;
Chris Lattner371f2582008-12-04 23:50:19 +00001259 if (FunctionDecl *FD = getCurFunctionDecl())
1260 Length = FD->getIdentifier()->getLength();
Chris Lattnerb0da9232008-12-12 05:05:20 +00001261 else if (ObjCMethodDecl *MD = getCurMethodDecl())
1262 Length = MD->getSynthesizedMethodSize();
1263 else {
1264 Diag(Loc, diag::ext_predef_outside_function);
1265 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
1266 Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0;
1267 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001268
1269
Chris Lattner8f978d52008-01-12 19:32:28 +00001270 llvm::APInt LengthI(32, Length + 1);
Chris Lattner1423ea42008-01-12 18:39:25 +00001271 QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const);
Chris Lattner8f978d52008-01-12 19:32:28 +00001272 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
Steve Naroff6ece14c2009-01-21 00:14:39 +00001273 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Reid Spencer5f016e22007-07-11 17:01:13 +00001274}
1275
Sebastian Redlcd965b92009-01-18 18:53:16 +00001276Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001277 llvm::SmallString<16> CharBuffer;
1278 CharBuffer.resize(Tok.getLength());
1279 const char *ThisTokBegin = &CharBuffer[0];
1280 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001281
Reid Spencer5f016e22007-07-11 17:01:13 +00001282 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1283 Tok.getLocation(), PP);
1284 if (Literal.hadError())
Sebastian Redlcd965b92009-01-18 18:53:16 +00001285 return ExprError();
Chris Lattnerfc62bfd2008-03-01 08:32:21 +00001286
1287 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy;
1288
Sebastian Redle91b3bc2009-01-20 22:23:13 +00001289 return Owned(new (Context) CharacterLiteral(Literal.getValue(),
1290 Literal.isWide(),
1291 type, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001292}
1293
Sebastian Redlcd965b92009-01-18 18:53:16 +00001294Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) {
1295 // Fast path for a single digit (which is quite common). A single digit
Reid Spencer5f016e22007-07-11 17:01:13 +00001296 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
1297 if (Tok.getLength() == 1) {
Chris Lattner7216dc92009-01-26 22:36:52 +00001298 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Chris Lattner0c21e842009-01-16 07:10:29 +00001299 unsigned IntSize = Context.Target.getIntWidth();
Steve Naroff6ece14c2009-01-21 00:14:39 +00001300 return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'),
Steve Naroff0a473932009-01-20 19:53:53 +00001301 Context.IntTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001302 }
Ted Kremenek28396602009-01-13 23:19:12 +00001303
Reid Spencer5f016e22007-07-11 17:01:13 +00001304 llvm::SmallString<512> IntegerBuffer;
Chris Lattner2a299042008-09-30 20:53:45 +00001305 // Add padding so that NumericLiteralParser can overread by one character.
1306 IntegerBuffer.resize(Tok.getLength()+1);
Reid Spencer5f016e22007-07-11 17:01:13 +00001307 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlcd965b92009-01-18 18:53:16 +00001308
Reid Spencer5f016e22007-07-11 17:01:13 +00001309 // Get the spelling of the token, which eliminates trigraphs, etc.
1310 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001311
Reid Spencer5f016e22007-07-11 17:01:13 +00001312 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1313 Tok.getLocation(), PP);
1314 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +00001315 return ExprError();
1316
Chris Lattner5d661452007-08-26 03:42:43 +00001317 Expr *Res;
Sebastian Redlcd965b92009-01-18 18:53:16 +00001318
Chris Lattner5d661452007-08-26 03:42:43 +00001319 if (Literal.isFloatingLiteral()) {
Chris Lattner525a0502007-09-22 18:29:59 +00001320 QualType Ty;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001321 if (Literal.isFloat)
Chris Lattner525a0502007-09-22 18:29:59 +00001322 Ty = Context.FloatTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001323 else if (!Literal.isLong)
Chris Lattner525a0502007-09-22 18:29:59 +00001324 Ty = Context.DoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001325 else
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00001326 Ty = Context.LongDoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001327
1328 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
1329
Ted Kremenek720c4ec2007-11-29 00:56:49 +00001330 // isExact will be set by GetFloatValue().
1331 bool isExact = false;
Chris Lattner001d64d2009-06-29 17:34:55 +00001332 llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact);
1333 Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation());
Sebastian Redlcd965b92009-01-18 18:53:16 +00001334
Chris Lattner5d661452007-08-26 03:42:43 +00001335 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlcd965b92009-01-18 18:53:16 +00001336 return ExprError();
Chris Lattner5d661452007-08-26 03:42:43 +00001337 } else {
Chris Lattnerf0467b32008-04-02 04:24:33 +00001338 QualType Ty;
Reid Spencer5f016e22007-07-11 17:01:13 +00001339
Neil Boothb9449512007-08-29 22:00:19 +00001340 // long long is a C99 feature.
1341 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth79859c32007-08-29 22:13:52 +00001342 Literal.isLongLong)
Neil Boothb9449512007-08-29 22:00:19 +00001343 Diag(Tok.getLocation(), diag::ext_longlong);
1344
Reid Spencer5f016e22007-07-11 17:01:13 +00001345 // Get the value in the widest-possible width.
Chris Lattner98be4942008-03-05 18:54:05 +00001346 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001347
Reid Spencer5f016e22007-07-11 17:01:13 +00001348 if (Literal.GetIntegerValue(ResultVal)) {
1349 // If this value didn't fit into uintmax_t, warn and force to ull.
1350 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattnerf0467b32008-04-02 04:24:33 +00001351 Ty = Context.UnsignedLongLongTy;
1352 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner98be4942008-03-05 18:54:05 +00001353 "long long is not intmax_t?");
Reid Spencer5f016e22007-07-11 17:01:13 +00001354 } else {
1355 // If this value fits into a ULL, try to figure out what else it fits into
1356 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlcd965b92009-01-18 18:53:16 +00001357
Reid Spencer5f016e22007-07-11 17:01:13 +00001358 // Octal, Hexadecimal, and integers with a U suffix are allowed to
1359 // be an unsigned int.
1360 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
1361
1362 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001363 unsigned Width = 0;
Chris Lattner97c51562007-08-23 21:58:08 +00001364 if (!Literal.isLong && !Literal.isLongLong) {
1365 // Are int/unsigned possibilities?
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001366 unsigned IntSize = Context.Target.getIntWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001367
Reid Spencer5f016e22007-07-11 17:01:13 +00001368 // Does it fit in a unsigned int?
1369 if (ResultVal.isIntN(IntSize)) {
1370 // Does it fit in a signed int?
1371 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001372 Ty = Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001373 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001374 Ty = Context.UnsignedIntTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001375 Width = IntSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001376 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001377 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001378
Reid Spencer5f016e22007-07-11 17:01:13 +00001379 // Are long/unsigned long possibilities?
Chris Lattnerf0467b32008-04-02 04:24:33 +00001380 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001381 unsigned LongSize = Context.Target.getLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001382
Reid Spencer5f016e22007-07-11 17:01:13 +00001383 // Does it fit in a unsigned long?
1384 if (ResultVal.isIntN(LongSize)) {
1385 // Does it fit in a signed long?
1386 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001387 Ty = Context.LongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001388 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001389 Ty = Context.UnsignedLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001390 Width = LongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001391 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001392 }
1393
Reid Spencer5f016e22007-07-11 17:01:13 +00001394 // Finally, check long long if needed.
Chris Lattnerf0467b32008-04-02 04:24:33 +00001395 if (Ty.isNull()) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001396 unsigned LongLongSize = Context.Target.getLongLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001397
Reid Spencer5f016e22007-07-11 17:01:13 +00001398 // Does it fit in a unsigned long long?
1399 if (ResultVal.isIntN(LongLongSize)) {
1400 // Does it fit in a signed long long?
1401 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001402 Ty = Context.LongLongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001403 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001404 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001405 Width = LongLongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001406 }
1407 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001408
Reid Spencer5f016e22007-07-11 17:01:13 +00001409 // If we still couldn't decide a type, we probably have something that
1410 // does not fit in a signed long long, but has no U suffix.
Chris Lattnerf0467b32008-04-02 04:24:33 +00001411 if (Ty.isNull()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001412 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattnerf0467b32008-04-02 04:24:33 +00001413 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001414 Width = Context.Target.getLongLongWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +00001415 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001416
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001417 if (ResultVal.getBitWidth() != Width)
1418 ResultVal.trunc(Width);
Reid Spencer5f016e22007-07-11 17:01:13 +00001419 }
Sebastian Redle91b3bc2009-01-20 22:23:13 +00001420 Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001421 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001422
Chris Lattner5d661452007-08-26 03:42:43 +00001423 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
1424 if (Literal.isImaginary)
Steve Naroff6ece14c2009-01-21 00:14:39 +00001425 Res = new (Context) ImaginaryLiteral(Res,
1426 Context.getComplexType(Res->getType()));
Sebastian Redlcd965b92009-01-18 18:53:16 +00001427
1428 return Owned(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +00001429}
1430
Sebastian Redlcd965b92009-01-18 18:53:16 +00001431Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L,
1432 SourceLocation R, ExprArg Val) {
Anders Carlssone9146f22009-05-01 19:49:17 +00001433 Expr *E = Val.takeAs<Expr>();
Chris Lattnerf0467b32008-04-02 04:24:33 +00001434 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Naroff6ece14c2009-01-21 00:14:39 +00001435 return Owned(new (Context) ParenExpr(L, R, E));
Reid Spencer5f016e22007-07-11 17:01:13 +00001436}
1437
1438/// The UsualUnaryConversions() function is *not* called by this routine.
1439/// See C99 6.3.2.1p[2-4] for more details.
Sebastian Redl28507842009-02-26 14:39:58 +00001440bool Sema::CheckSizeOfAlignOfOperand(QualType exprType,
Sebastian Redl05189992008-11-11 17:56:53 +00001441 SourceLocation OpLoc,
1442 const SourceRange &ExprRange,
1443 bool isSizeof) {
Sebastian Redl28507842009-02-26 14:39:58 +00001444 if (exprType->isDependentType())
1445 return false;
1446
Reid Spencer5f016e22007-07-11 17:01:13 +00001447 // C99 6.5.3.4p1:
Chris Lattner01072922009-01-24 19:46:37 +00001448 if (isa<FunctionType>(exprType)) {
Chris Lattner1efaa952009-04-24 00:30:45 +00001449 // alignof(function) is allowed as an extension.
Chris Lattner01072922009-01-24 19:46:37 +00001450 if (isSizeof)
1451 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange;
1452 return false;
1453 }
1454
Chris Lattner1efaa952009-04-24 00:30:45 +00001455 // Allow sizeof(void)/alignof(void) as an extension.
Chris Lattner01072922009-01-24 19:46:37 +00001456 if (exprType->isVoidType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001457 Diag(OpLoc, diag::ext_sizeof_void_type)
1458 << (isSizeof ? "sizeof" : "__alignof") << ExprRange;
Chris Lattner01072922009-01-24 19:46:37 +00001459 return false;
1460 }
Chris Lattnerca790922009-04-21 19:55:16 +00001461
Chris Lattner1efaa952009-04-24 00:30:45 +00001462 if (RequireCompleteType(OpLoc, exprType,
1463 isSizeof ? diag::err_sizeof_incomplete_type :
1464 diag::err_alignof_incomplete_type,
1465 ExprRange))
1466 return true;
1467
1468 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
Fariborz Jahanianced1e282009-04-24 17:34:33 +00001469 if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) {
Chris Lattner1efaa952009-04-24 00:30:45 +00001470 Diag(OpLoc, diag::err_sizeof_nonfragile_interface)
Chris Lattner5cb10d32009-04-24 22:30:50 +00001471 << exprType << isSizeof << ExprRange;
1472 return true;
Chris Lattnerca790922009-04-21 19:55:16 +00001473 }
1474
Chris Lattner1efaa952009-04-24 00:30:45 +00001475 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001476}
1477
Chris Lattner31e21e02009-01-24 20:17:12 +00001478bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc,
1479 const SourceRange &ExprRange) {
1480 E = E->IgnoreParens();
Sebastian Redl28507842009-02-26 14:39:58 +00001481
Chris Lattner31e21e02009-01-24 20:17:12 +00001482 // alignof decl is always ok.
1483 if (isa<DeclRefExpr>(E))
1484 return false;
Sebastian Redl28507842009-02-26 14:39:58 +00001485
1486 // Cannot know anything else if the expression is dependent.
1487 if (E->isTypeDependent())
1488 return false;
1489
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001490 if (E->getBitField()) {
1491 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange;
1492 return true;
Chris Lattner31e21e02009-01-24 20:17:12 +00001493 }
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001494
1495 // Alignment of a field access is always okay, so long as it isn't a
1496 // bit-field.
1497 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
Mike Stump8e1fab22009-07-22 18:58:19 +00001498 if (isa<FieldDecl>(ME->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001499 return false;
1500
Chris Lattner31e21e02009-01-24 20:17:12 +00001501 return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false);
1502}
1503
Douglas Gregorba498172009-03-13 21:01:28 +00001504/// \brief Build a sizeof or alignof expression given a type operand.
1505Action::OwningExprResult
1506Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc,
1507 bool isSizeOf, SourceRange R) {
1508 if (T.isNull())
1509 return ExprError();
1510
1511 if (!T->isDependentType() &&
1512 CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf))
1513 return ExprError();
1514
1515 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1516 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T,
1517 Context.getSizeType(), OpLoc,
1518 R.getEnd()));
1519}
1520
1521/// \brief Build a sizeof or alignof expression given an expression
1522/// operand.
1523Action::OwningExprResult
1524Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc,
1525 bool isSizeOf, SourceRange R) {
1526 // Verify that the operand is valid.
1527 bool isInvalid = false;
1528 if (E->isTypeDependent()) {
1529 // Delay type-checking for type-dependent expressions.
1530 } else if (!isSizeOf) {
1531 isInvalid = CheckAlignOfExpr(E, OpLoc, R);
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001532 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Douglas Gregorba498172009-03-13 21:01:28 +00001533 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0;
1534 isInvalid = true;
1535 } else {
1536 isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true);
1537 }
1538
1539 if (isInvalid)
1540 return ExprError();
1541
1542 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1543 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E,
1544 Context.getSizeType(), OpLoc,
1545 R.getEnd()));
1546}
1547
Sebastian Redl05189992008-11-11 17:56:53 +00001548/// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and
1549/// the same for @c alignof and @c __alignof
1550/// Note that the ArgRange is invalid if isType is false.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001551Action::OwningExprResult
Sebastian Redl05189992008-11-11 17:56:53 +00001552Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType,
1553 void *TyOrEx, const SourceRange &ArgRange) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001554 // If error parsing type, ignore.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001555 if (TyOrEx == 0) return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001556
Sebastian Redl05189992008-11-11 17:56:53 +00001557 if (isType) {
Douglas Gregorba498172009-03-13 21:01:28 +00001558 QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx);
1559 return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange);
1560 }
Sebastian Redl05189992008-11-11 17:56:53 +00001561
Douglas Gregorba498172009-03-13 21:01:28 +00001562 // Get the end location.
1563 Expr *ArgEx = (Expr *)TyOrEx;
1564 Action::OwningExprResult Result
1565 = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange());
1566
1567 if (Result.isInvalid())
1568 DeleteExpr(ArgEx);
1569
1570 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001571}
1572
Chris Lattnerba27e2a2009-02-17 08:12:06 +00001573QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) {
Sebastian Redl28507842009-02-26 14:39:58 +00001574 if (V->isTypeDependent())
1575 return Context.DependentTy;
Chris Lattnerdbb36972007-08-24 21:16:53 +00001576
Chris Lattnercc26ed72007-08-26 05:39:26 +00001577 // These operators return the element type of a complex type.
Chris Lattnerdbb36972007-08-24 21:16:53 +00001578 if (const ComplexType *CT = V->getType()->getAsComplexType())
1579 return CT->getElementType();
Chris Lattnercc26ed72007-08-26 05:39:26 +00001580
1581 // Otherwise they pass through real integer and floating point types here.
1582 if (V->getType()->isArithmeticType())
1583 return V->getType();
1584
1585 // Reject anything else.
Chris Lattnerba27e2a2009-02-17 08:12:06 +00001586 Diag(Loc, diag::err_realimag_invalid_type) << V->getType()
1587 << (isReal ? "__real" : "__imag");
Chris Lattnercc26ed72007-08-26 05:39:26 +00001588 return QualType();
Chris Lattnerdbb36972007-08-24 21:16:53 +00001589}
1590
1591
Reid Spencer5f016e22007-07-11 17:01:13 +00001592
Sebastian Redl0eb23302009-01-19 00:08:26 +00001593Action::OwningExprResult
1594Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
1595 tok::TokenKind Kind, ExprArg Input) {
1596 Expr *Arg = (Expr *)Input.get();
Douglas Gregor74253732008-11-19 15:42:04 +00001597
Reid Spencer5f016e22007-07-11 17:01:13 +00001598 UnaryOperator::Opcode Opc;
1599 switch (Kind) {
1600 default: assert(0 && "Unknown unary op!");
1601 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
1602 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
1603 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00001604
Douglas Gregor74253732008-11-19 15:42:04 +00001605 if (getLangOptions().CPlusPlus &&
1606 (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) {
1607 // Which overloaded operator?
Sebastian Redl0eb23302009-01-19 00:08:26 +00001608 OverloadedOperatorKind OverOp =
Douglas Gregor74253732008-11-19 15:42:04 +00001609 (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus;
1610
1611 // C++ [over.inc]p1:
1612 //
1613 // [...] If the function is a member function with one
1614 // parameter (which shall be of type int) or a non-member
1615 // function with two parameters (the second of which shall be
1616 // of type int), it defines the postfix increment operator ++
1617 // for objects of that type. When the postfix increment is
1618 // called as a result of using the ++ operator, the int
1619 // argument will have value zero.
1620 Expr *Args[2] = {
1621 Arg,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001622 new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0,
1623 /*isSigned=*/true), Context.IntTy, SourceLocation())
Douglas Gregor74253732008-11-19 15:42:04 +00001624 };
1625
1626 // Build the candidate set for overloading
1627 OverloadCandidateSet CandidateSet;
Douglas Gregor063daf62009-03-13 18:40:31 +00001628 AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet);
Douglas Gregor74253732008-11-19 15:42:04 +00001629
1630 // Perform overload resolution.
1631 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001632 switch (BestViableFunction(CandidateSet, OpLoc, Best)) {
Douglas Gregor74253732008-11-19 15:42:04 +00001633 case OR_Success: {
1634 // We found a built-in operator or an overloaded operator.
1635 FunctionDecl *FnDecl = Best->Function;
1636
1637 if (FnDecl) {
1638 // We matched an overloaded operator. Build a call to that
1639 // operator.
1640
1641 // Convert the arguments.
1642 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1643 if (PerformObjectArgumentInitialization(Arg, Method))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001644 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001645 } else {
1646 // Convert the arguments.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001647 if (PerformCopyInitialization(Arg,
Douglas Gregor74253732008-11-19 15:42:04 +00001648 FnDecl->getParamDecl(0)->getType(),
1649 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001650 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001651 }
1652
1653 // Determine the result type
Sebastian Redl0eb23302009-01-19 00:08:26 +00001654 QualType ResultTy
Douglas Gregor74253732008-11-19 15:42:04 +00001655 = FnDecl->getType()->getAsFunctionType()->getResultType();
1656 ResultTy = ResultTy.getNonReferenceType();
Sebastian Redl0eb23302009-01-19 00:08:26 +00001657
Douglas Gregor74253732008-11-19 15:42:04 +00001658 // Build the actual expression node.
Steve Naroff6ece14c2009-01-21 00:14:39 +00001659 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
Mike Stump488e25b2009-02-19 02:54:59 +00001660 SourceLocation());
Douglas Gregor74253732008-11-19 15:42:04 +00001661 UsualUnaryConversions(FnExpr);
1662
Sebastian Redl0eb23302009-01-19 00:08:26 +00001663 Input.release();
Douglas Gregor7ff69262009-05-27 05:00:47 +00001664 Args[0] = Arg;
Douglas Gregor063daf62009-03-13 18:40:31 +00001665 return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr,
1666 Args, 2, ResultTy,
1667 OpLoc));
Douglas Gregor74253732008-11-19 15:42:04 +00001668 } else {
1669 // We matched a built-in operator. Convert the arguments, then
1670 // break out so that we will build the appropriate built-in
1671 // operator node.
1672 if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0],
1673 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001674 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001675
1676 break;
Sebastian Redl0eb23302009-01-19 00:08:26 +00001677 }
Douglas Gregor74253732008-11-19 15:42:04 +00001678 }
1679
1680 case OR_No_Viable_Function:
1681 // No viable function; fall through to handling this as a
1682 // built-in operator, which will produce an error message for us.
1683 break;
1684
1685 case OR_Ambiguous:
1686 Diag(OpLoc, diag::err_ovl_ambiguous_oper)
1687 << UnaryOperator::getOpcodeStr(Opc)
1688 << Arg->getSourceRange();
1689 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001690 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001691
1692 case OR_Deleted:
1693 Diag(OpLoc, diag::err_ovl_deleted_oper)
1694 << Best->Function->isDeleted()
1695 << UnaryOperator::getOpcodeStr(Opc)
1696 << Arg->getSourceRange();
1697 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1698 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001699 }
1700
1701 // Either we found no viable overloaded operator or we matched a
1702 // built-in operator. In either case, fall through to trying to
1703 // build a built-in operation.
1704 }
1705
Eli Friedmande99a452009-07-22 22:25:00 +00001706 return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input));
Reid Spencer5f016e22007-07-11 17:01:13 +00001707}
1708
Sebastian Redl0eb23302009-01-19 00:08:26 +00001709Action::OwningExprResult
1710Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc,
1711 ExprArg Idx, SourceLocation RLoc) {
1712 Expr *LHSExp = static_cast<Expr*>(Base.get()),
1713 *RHSExp = static_cast<Expr*>(Idx.get());
Chris Lattner12d9ff62007-07-16 00:14:47 +00001714
Douglas Gregor337c6b92008-11-19 17:17:41 +00001715 if (getLangOptions().CPlusPlus &&
Douglas Gregor3384c9c2009-05-19 00:01:19 +00001716 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
1717 Base.release();
1718 Idx.release();
1719 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
1720 Context.DependentTy, RLoc));
1721 }
1722
1723 if (getLangOptions().CPlusPlus &&
Sebastian Redl0eb23302009-01-19 00:08:26 +00001724 (LHSExp->getType()->isRecordType() ||
Eli Friedman03f332a2008-12-15 22:34:21 +00001725 LHSExp->getType()->isEnumeralType() ||
1726 RHSExp->getType()->isRecordType() ||
1727 RHSExp->getType()->isEnumeralType())) {
Douglas Gregor337c6b92008-11-19 17:17:41 +00001728 // Add the appropriate overloaded operators (C++ [over.match.oper])
1729 // to the candidate set.
1730 OverloadCandidateSet CandidateSet;
1731 Expr *Args[2] = { LHSExp, RHSExp };
Douglas Gregor063daf62009-03-13 18:40:31 +00001732 AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet,
1733 SourceRange(LLoc, RLoc));
Sebastian Redl0eb23302009-01-19 00:08:26 +00001734
Douglas Gregor337c6b92008-11-19 17:17:41 +00001735 // Perform overload resolution.
1736 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001737 switch (BestViableFunction(CandidateSet, LLoc, Best)) {
Douglas Gregor337c6b92008-11-19 17:17:41 +00001738 case OR_Success: {
1739 // We found a built-in operator or an overloaded operator.
1740 FunctionDecl *FnDecl = Best->Function;
1741
1742 if (FnDecl) {
1743 // We matched an overloaded operator. Build a call to that
1744 // operator.
1745
1746 // Convert the arguments.
1747 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1748 if (PerformObjectArgumentInitialization(LHSExp, Method) ||
1749 PerformCopyInitialization(RHSExp,
1750 FnDecl->getParamDecl(0)->getType(),
1751 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001752 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001753 } else {
1754 // Convert the arguments.
1755 if (PerformCopyInitialization(LHSExp,
1756 FnDecl->getParamDecl(0)->getType(),
1757 "passing") ||
1758 PerformCopyInitialization(RHSExp,
1759 FnDecl->getParamDecl(1)->getType(),
1760 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001761 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001762 }
1763
1764 // Determine the result type
Sebastian Redl0eb23302009-01-19 00:08:26 +00001765 QualType ResultTy
Douglas Gregor337c6b92008-11-19 17:17:41 +00001766 = FnDecl->getType()->getAsFunctionType()->getResultType();
1767 ResultTy = ResultTy.getNonReferenceType();
Sebastian Redl0eb23302009-01-19 00:08:26 +00001768
Douglas Gregor337c6b92008-11-19 17:17:41 +00001769 // Build the actual expression node.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001770 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
1771 SourceLocation());
Douglas Gregor337c6b92008-11-19 17:17:41 +00001772 UsualUnaryConversions(FnExpr);
1773
Sebastian Redl0eb23302009-01-19 00:08:26 +00001774 Base.release();
1775 Idx.release();
Douglas Gregor7ff69262009-05-27 05:00:47 +00001776 Args[0] = LHSExp;
1777 Args[1] = RHSExp;
Douglas Gregor063daf62009-03-13 18:40:31 +00001778 return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript,
1779 FnExpr, Args, 2,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001780 ResultTy, LLoc));
Douglas Gregor337c6b92008-11-19 17:17:41 +00001781 } else {
1782 // We matched a built-in operator. Convert the arguments, then
1783 // break out so that we will build the appropriate built-in
1784 // operator node.
1785 if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0],
1786 "passing") ||
1787 PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1],
1788 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001789 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001790
1791 break;
1792 }
1793 }
1794
1795 case OR_No_Viable_Function:
1796 // No viable function; fall through to handling this as a
1797 // built-in operator, which will produce an error message for us.
1798 break;
1799
1800 case OR_Ambiguous:
1801 Diag(LLoc, diag::err_ovl_ambiguous_oper)
1802 << "[]"
1803 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1804 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001805 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001806
1807 case OR_Deleted:
1808 Diag(LLoc, diag::err_ovl_deleted_oper)
1809 << Best->Function->isDeleted()
1810 << "[]"
1811 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1812 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1813 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001814 }
1815
1816 // Either we found no viable overloaded operator or we matched a
1817 // built-in operator. In either case, fall through to trying to
1818 // build a built-in operation.
1819 }
1820
Chris Lattner12d9ff62007-07-16 00:14:47 +00001821 // Perform default conversions.
1822 DefaultFunctionArrayConversion(LHSExp);
1823 DefaultFunctionArrayConversion(RHSExp);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001824
Chris Lattner12d9ff62007-07-16 00:14:47 +00001825 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001826
Reid Spencer5f016e22007-07-11 17:01:13 +00001827 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001828 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stumpeed9cac2009-02-19 03:04:26 +00001829 // in the subscript position. As a result, we need to derive the array base
Reid Spencer5f016e22007-07-11 17:01:13 +00001830 // and index from the expression types.
Chris Lattner12d9ff62007-07-16 00:14:47 +00001831 Expr *BaseExpr, *IndexExpr;
1832 QualType ResultType;
Sebastian Redl28507842009-02-26 14:39:58 +00001833 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
1834 BaseExpr = LHSExp;
1835 IndexExpr = RHSExp;
1836 ResultType = Context.DependentTy;
Ted Kremenek35366a62009-07-17 17:50:17 +00001837 } else if (const PointerType *PTy = LHSTy->getAsPointerType()) {
Chris Lattner12d9ff62007-07-16 00:14:47 +00001838 BaseExpr = LHSExp;
1839 IndexExpr = RHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00001840 ResultType = PTy->getPointeeType();
Ted Kremenek35366a62009-07-17 17:50:17 +00001841 } else if (const PointerType *PTy = RHSTy->getAsPointerType()) {
Chris Lattner7a2e0472007-07-16 00:23:25 +00001842 // Handle the uncommon case of "123[Ptr]".
Chris Lattner12d9ff62007-07-16 00:14:47 +00001843 BaseExpr = RHSExp;
1844 IndexExpr = LHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00001845 ResultType = PTy->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00001846 } else if (const ObjCObjectPointerType *PTy =
1847 LHSTy->getAsObjCObjectPointerType()) {
1848 BaseExpr = LHSExp;
1849 IndexExpr = RHSExp;
1850 ResultType = PTy->getPointeeType();
1851 } else if (const ObjCObjectPointerType *PTy =
1852 RHSTy->getAsObjCObjectPointerType()) {
1853 // Handle the uncommon case of "123[Ptr]".
1854 BaseExpr = RHSExp;
1855 IndexExpr = LHSExp;
1856 ResultType = PTy->getPointeeType();
Chris Lattnerc8629632007-07-31 19:29:30 +00001857 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) {
1858 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner12d9ff62007-07-16 00:14:47 +00001859 IndexExpr = RHSExp;
Nate Begeman334a8022009-01-18 00:45:31 +00001860
Chris Lattner12d9ff62007-07-16 00:14:47 +00001861 // FIXME: need to deal with const...
1862 ResultType = VTy->getElementType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00001863 } else if (LHSTy->isArrayType()) {
1864 // If we see an array that wasn't promoted by
1865 // DefaultFunctionArrayConversion, it must be an array that
1866 // wasn't promoted because of the C90 rule that doesn't
1867 // allow promoting non-lvalue arrays. Warn, then
1868 // force the promotion here.
1869 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1870 LHSExp->getSourceRange();
1871 ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy));
1872 LHSTy = LHSExp->getType();
1873
1874 BaseExpr = LHSExp;
1875 IndexExpr = RHSExp;
Ted Kremenek35366a62009-07-17 17:50:17 +00001876 ResultType = LHSTy->getAsPointerType()->getPointeeType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00001877 } else if (RHSTy->isArrayType()) {
1878 // Same as previous, except for 123[f().a] case
1879 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1880 RHSExp->getSourceRange();
1881 ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy));
1882 RHSTy = RHSExp->getType();
1883
1884 BaseExpr = RHSExp;
1885 IndexExpr = LHSExp;
Ted Kremenek35366a62009-07-17 17:50:17 +00001886 ResultType = RHSTy->getAsPointerType()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001887 } else {
Chris Lattner338395d2009-04-25 22:50:55 +00001888 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
1889 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +00001890 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001891 // C99 6.5.2.1p1
Sebastian Redl28507842009-02-26 14:39:58 +00001892 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent())
Chris Lattner338395d2009-04-25 22:50:55 +00001893 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
1894 << IndexExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00001895
Douglas Gregore7450f52009-03-24 19:52:54 +00001896 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
1897 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
1898 // type. Note that Functions are not objects, and that (in C99 parlance)
1899 // incomplete types are not object types.
1900 if (ResultType->isFunctionType()) {
1901 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
1902 << ResultType << BaseExpr->getSourceRange();
1903 return ExprError();
1904 }
Chris Lattner1efaa952009-04-24 00:30:45 +00001905
Douglas Gregore7450f52009-03-24 19:52:54 +00001906 if (!ResultType->isDependentType() &&
Chris Lattner1efaa952009-04-24 00:30:45 +00001907 RequireCompleteType(LLoc, ResultType, diag::err_subscript_incomplete_type,
Douglas Gregore7450f52009-03-24 19:52:54 +00001908 BaseExpr->getSourceRange()))
1909 return ExprError();
Chris Lattner1efaa952009-04-24 00:30:45 +00001910
1911 // Diagnose bad cases where we step over interface counts.
1912 if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
1913 Diag(LLoc, diag::err_subscript_nonfragile_interface)
1914 << ResultType << BaseExpr->getSourceRange();
1915 return ExprError();
1916 }
1917
Sebastian Redl0eb23302009-01-19 00:08:26 +00001918 Base.release();
1919 Idx.release();
Mike Stumpeed9cac2009-02-19 03:04:26 +00001920 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001921 ResultType, RLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001922}
1923
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001924QualType Sema::
Nate Begeman213541a2008-04-18 23:10:10 +00001925CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc,
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001926 IdentifierInfo &CompName, SourceLocation CompLoc) {
Nate Begeman213541a2008-04-18 23:10:10 +00001927 const ExtVectorType *vecType = baseType->getAsExtVectorType();
Nate Begeman8a997642008-05-09 06:41:27 +00001928
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001929 // The vector accessor can't exceed the number of elements.
1930 const char *compStr = CompName.getName();
Nate Begeman353417a2009-01-18 01:47:54 +00001931
Mike Stumpeed9cac2009-02-19 03:04:26 +00001932 // This flag determines whether or not the component is one of the four
Nate Begeman353417a2009-01-18 01:47:54 +00001933 // special names that indicate a subset of exactly half the elements are
1934 // to be selected.
1935 bool HalvingSwizzle = false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00001936
Nate Begeman353417a2009-01-18 01:47:54 +00001937 // This flag determines whether or not CompName has an 's' char prefix,
1938 // indicating that it is a string of hex values to be used as vector indices.
Nate Begeman131f4652009-06-25 21:06:09 +00001939 bool HexSwizzle = *compStr == 's' || *compStr == 'S';
Nate Begeman8a997642008-05-09 06:41:27 +00001940
1941 // Check that we've found one of the special components, or that the component
1942 // names must come from the same set.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001943 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
Nate Begeman353417a2009-01-18 01:47:54 +00001944 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
1945 HalvingSwizzle = true;
Nate Begeman8a997642008-05-09 06:41:27 +00001946 } else if (vecType->getPointAccessorIdx(*compStr) != -1) {
Chris Lattner88dca042007-08-02 22:33:49 +00001947 do
1948 compStr++;
1949 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
Nate Begeman353417a2009-01-18 01:47:54 +00001950 } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) {
Chris Lattner88dca042007-08-02 22:33:49 +00001951 do
1952 compStr++;
Nate Begeman353417a2009-01-18 01:47:54 +00001953 while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1);
Chris Lattner88dca042007-08-02 22:33:49 +00001954 }
Nate Begeman353417a2009-01-18 01:47:54 +00001955
Mike Stumpeed9cac2009-02-19 03:04:26 +00001956 if (!HalvingSwizzle && *compStr) {
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001957 // We didn't get to the end of the string. This means the component names
1958 // didn't come from the same set *or* we encountered an illegal name.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001959 Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
1960 << std::string(compStr,compStr+1) << SourceRange(CompLoc);
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001961 return QualType();
1962 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00001963
Nate Begeman353417a2009-01-18 01:47:54 +00001964 // Ensure no component accessor exceeds the width of the vector type it
1965 // operates on.
1966 if (!HalvingSwizzle) {
1967 compStr = CompName.getName();
1968
1969 if (HexSwizzle)
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001970 compStr++;
Nate Begeman353417a2009-01-18 01:47:54 +00001971
1972 while (*compStr) {
1973 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
1974 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
1975 << baseType << SourceRange(CompLoc);
1976 return QualType();
1977 }
1978 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001979 }
Nate Begeman8a997642008-05-09 06:41:27 +00001980
Nate Begeman353417a2009-01-18 01:47:54 +00001981 // If this is a halving swizzle, verify that the base type has an even
1982 // number of elements.
1983 if (HalvingSwizzle && (vecType->getNumElements() & 1U)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001984 Diag(OpLoc, diag::err_ext_vector_component_requires_even)
Chris Lattnerd1625842008-11-24 06:25:27 +00001985 << baseType << SourceRange(CompLoc);
Nate Begeman8a997642008-05-09 06:41:27 +00001986 return QualType();
1987 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00001988
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001989 // The component accessor looks fine - now we need to compute the actual type.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001990 // The vector type is implied by the component accessor. For example,
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001991 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begeman353417a2009-01-18 01:47:54 +00001992 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
Nate Begeman8a997642008-05-09 06:41:27 +00001993 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
Nate Begeman353417a2009-01-18 01:47:54 +00001994 unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2
1995 : CompName.getLength();
1996 if (HexSwizzle)
1997 CompSize--;
1998
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001999 if (CompSize == 1)
2000 return vecType->getElementType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002001
Nate Begeman213541a2008-04-18 23:10:10 +00002002 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize);
Mike Stumpeed9cac2009-02-19 03:04:26 +00002003 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begeman213541a2008-04-18 23:10:10 +00002004 // diagostics look bad. We want extended vector types to appear built-in.
2005 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) {
2006 if (ExtVectorDecls[i]->getUnderlyingType() == VT)
2007 return Context.getTypedefType(ExtVectorDecls[i]);
Steve Naroffbea0b342007-07-29 16:33:31 +00002008 }
2009 return VT; // should never get here (a typedef type should always be found).
Steve Naroffe1b31fe2007-07-27 22:15:19 +00002010}
2011
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002012static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
2013 IdentifierInfo &Member,
Douglas Gregor6ab35242009-04-09 21:40:53 +00002014 const Selector &Sel,
2015 ASTContext &Context) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002016
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002017 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(&Member))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002018 return PD;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002019 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002020 return OMD;
2021
2022 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(),
2023 E = PDecl->protocol_end(); I != E; ++I) {
Douglas Gregor6ab35242009-04-09 21:40:53 +00002024 if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel,
2025 Context))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002026 return D;
2027 }
2028 return 0;
2029}
2030
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00002031static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy,
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002032 IdentifierInfo &Member,
Douglas Gregor6ab35242009-04-09 21:40:53 +00002033 const Selector &Sel,
2034 ASTContext &Context) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002035 // Check protocols on qualified interfaces.
2036 Decl *GDecl = 0;
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00002037 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002038 E = QIdTy->qual_end(); I != E; ++I) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002039 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002040 GDecl = PD;
2041 break;
2042 }
2043 // Also must look for a getter name which uses property syntax.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002044 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002045 GDecl = OMD;
2046 break;
2047 }
2048 }
2049 if (!GDecl) {
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00002050 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002051 E = QIdTy->qual_end(); I != E; ++I) {
2052 // Search in the protocol-qualifier list of current protocol.
Douglas Gregor6ab35242009-04-09 21:40:53 +00002053 GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context);
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00002054 if (GDecl)
2055 return GDecl;
2056 }
2057 }
2058 return GDecl;
2059}
Chris Lattner76a642f2009-02-15 22:43:40 +00002060
Fariborz Jahanianef79bc92009-04-07 18:28:06 +00002061/// FindMethodInNestedImplementations - Look up a method in current and
2062/// all base class implementations.
2063///
2064ObjCMethodDecl *Sema::FindMethodInNestedImplementations(
2065 const ObjCInterfaceDecl *IFace,
2066 const Selector &Sel) {
2067 ObjCMethodDecl *Method = 0;
Argyrios Kyrtzidis87018772009-07-21 00:06:04 +00002068 if (ObjCImplementationDecl *ImpDecl = IFace->getImplementation())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002069 Method = ImpDecl->getInstanceMethod(Sel);
Fariborz Jahanianef79bc92009-04-07 18:28:06 +00002070
2071 if (!Method && IFace->getSuperClass())
2072 return FindMethodInNestedImplementations(IFace->getSuperClass(), Sel);
2073 return Method;
2074}
2075
Sebastian Redl0eb23302009-01-19 00:08:26 +00002076Action::OwningExprResult
2077Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
2078 tok::TokenKind OpKind, SourceLocation MemberLoc,
Fariborz Jahaniana6e3ac52009-03-04 22:30:12 +00002079 IdentifierInfo &Member,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002080 DeclPtrTy ObjCImpDecl) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00002081 Expr *BaseExpr = Base.takeAs<Expr>();
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002082 assert(BaseExpr && "no record expression");
Steve Naroff3cc4af82007-12-16 21:42:28 +00002083
2084 // Perform default conversions.
2085 DefaultFunctionArrayConversion(BaseExpr);
Sebastian Redl0eb23302009-01-19 00:08:26 +00002086
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002087 QualType BaseType = BaseExpr->getType();
2088 assert(!BaseType.isNull() && "no type for member expression");
Sebastian Redl0eb23302009-01-19 00:08:26 +00002089
Chris Lattner68a057b2008-07-21 04:36:39 +00002090 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
2091 // must have pointer type, and the accessed type is the pointee.
Reid Spencer5f016e22007-07-11 17:01:13 +00002092 if (OpKind == tok::arrow) {
Anders Carlssonffce2df2009-05-15 23:10:19 +00002093 if (BaseType->isDependentType())
Douglas Gregor1c0ca592009-05-22 21:13:27 +00002094 return Owned(new (Context) CXXUnresolvedMemberExpr(Context,
2095 BaseExpr, true,
2096 OpLoc,
2097 DeclarationName(&Member),
2098 MemberLoc));
Ted Kremenek35366a62009-07-17 17:50:17 +00002099 else if (const PointerType *PT = BaseType->getAsPointerType())
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002100 BaseType = PT->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00002101 else if (BaseType->isObjCObjectPointerType())
2102 ;
Douglas Gregor8ba10742008-11-20 16:27:02 +00002103 else if (getLangOptions().CPlusPlus && BaseType->isRecordType())
Sebastian Redl0eb23302009-01-19 00:08:26 +00002104 return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc,
2105 MemberLoc, Member));
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002106 else
Sebastian Redl0eb23302009-01-19 00:08:26 +00002107 return ExprError(Diag(MemberLoc,
2108 diag::err_typecheck_member_reference_arrow)
2109 << BaseType << BaseExpr->getSourceRange());
Anders Carlssonffce2df2009-05-15 23:10:19 +00002110 } else {
Anders Carlsson4ef27702009-05-16 20:31:20 +00002111 if (BaseType->isDependentType()) {
2112 // Require that the base type isn't a pointer type
2113 // (so we'll report an error for)
2114 // T* t;
2115 // t.f;
2116 //
2117 // In Obj-C++, however, the above expression is valid, since it could be
2118 // accessing the 'f' property if T is an Obj-C interface. The extra check
2119 // allows this, while still reporting an error if T is a struct pointer.
Ted Kremenek35366a62009-07-17 17:50:17 +00002120 const PointerType *PT = BaseType->getAsPointerType();
Anders Carlsson4ef27702009-05-16 20:31:20 +00002121
2122 if (!PT || (getLangOptions().ObjC1 &&
2123 !PT->getPointeeType()->isRecordType()))
Douglas Gregor1c0ca592009-05-22 21:13:27 +00002124 return Owned(new (Context) CXXUnresolvedMemberExpr(Context,
2125 BaseExpr, false,
2126 OpLoc,
2127 DeclarationName(&Member),
2128 MemberLoc));
Anders Carlsson4ef27702009-05-16 20:31:20 +00002129 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002130 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002131
Chris Lattner68a057b2008-07-21 04:36:39 +00002132 // Handle field access to simple records. This also handles access to fields
2133 // of the ObjC 'id' struct.
Ted Kremenek35366a62009-07-17 17:50:17 +00002134 if (const RecordType *RTy = BaseType->getAsRecordType()) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002135 RecordDecl *RDecl = RTy->getDecl();
Douglas Gregor86447ec2009-03-09 16:13:40 +00002136 if (RequireCompleteType(OpLoc, BaseType,
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002137 diag::err_typecheck_incomplete_tag,
2138 BaseExpr->getSourceRange()))
2139 return ExprError();
2140
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002141 // The record definition is complete, now make sure the member is valid.
Mike Stump390b4cc2009-05-16 07:39:55 +00002142 // FIXME: Qualified name lookup for C++ is a bit more complicated than this.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002143 LookupResult Result
Mike Stumpeed9cac2009-02-19 03:04:26 +00002144 = LookupQualifiedName(RDecl, DeclarationName(&Member),
Douglas Gregor4c921ae2009-01-30 01:04:22 +00002145 LookupMemberName, false);
Douglas Gregor7176fff2009-01-15 00:26:24 +00002146
Douglas Gregor7176fff2009-01-15 00:26:24 +00002147 if (!Result)
Sebastian Redl0eb23302009-01-19 00:08:26 +00002148 return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member)
2149 << &Member << BaseExpr->getSourceRange());
Chris Lattnera3d25242009-03-31 08:18:48 +00002150 if (Result.isAmbiguous()) {
Sebastian Redl0eb23302009-01-19 00:08:26 +00002151 DiagnoseAmbiguousLookup(Result, DeclarationName(&Member),
2152 MemberLoc, BaseExpr->getSourceRange());
2153 return ExprError();
Chris Lattnera3d25242009-03-31 08:18:48 +00002154 }
2155
2156 NamedDecl *MemberDecl = Result;
Douglas Gregor44b43212008-12-11 16:49:14 +00002157
Chris Lattner56cd21b2009-02-13 22:08:30 +00002158 // If the decl being referenced had an error, return an error for this
2159 // sub-expr without emitting another error, in order to avoid cascading
2160 // error cases.
2161 if (MemberDecl->isInvalidDecl())
2162 return ExprError();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002163
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002164 // Check the use of this field
2165 if (DiagnoseUseOfDecl(MemberDecl, MemberLoc))
2166 return ExprError();
Chris Lattner56cd21b2009-02-13 22:08:30 +00002167
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002168 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002169 // We may have found a field within an anonymous union or struct
2170 // (C++ [class.union]).
2171 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
Sebastian Redlcd965b92009-01-18 18:53:16 +00002172 return BuildAnonymousStructUnionMemberReference(MemberLoc, FD,
Sebastian Redl0eb23302009-01-19 00:08:26 +00002173 BaseExpr, OpLoc);
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002174
Douglas Gregor86f19402008-12-20 23:49:58 +00002175 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002176 QualType MemberType = FD->getType();
Ted Kremenek35366a62009-07-17 17:50:17 +00002177 if (const ReferenceType *Ref = MemberType->getAsReferenceType())
Douglas Gregor86f19402008-12-20 23:49:58 +00002178 MemberType = Ref->getPointeeType();
2179 else {
Mon P Wangc6a38a42009-07-22 03:08:17 +00002180 unsigned BaseAddrSpace = BaseType.getAddressSpace();
Douglas Gregor86f19402008-12-20 23:49:58 +00002181 unsigned combinedQualifiers =
2182 MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers();
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002183 if (FD->isMutable())
Douglas Gregor86f19402008-12-20 23:49:58 +00002184 combinedQualifiers &= ~QualType::Const;
2185 MemberType = MemberType.getQualifiedType(combinedQualifiers);
Mon P Wangc6a38a42009-07-22 03:08:17 +00002186 if (BaseAddrSpace != MemberType.getAddressSpace())
2187 MemberType = Context.getAddrSpaceQualType(MemberType, BaseAddrSpace);
Douglas Gregor86f19402008-12-20 23:49:58 +00002188 }
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.
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00002253 if (!Setter)
2254 Setter = IFace->getCategoryClassMethod(SetterSel);
Steve Naroff14108da2009-07-10 23:34:53 +00002255
2256 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2257 return ExprError();
2258
2259 if (Getter || Setter) {
2260 QualType PType;
2261
2262 if (Getter)
2263 PType = Getter->getResultType();
2264 else {
2265 for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(),
2266 E = Setter->param_end(); PI != E; ++PI)
2267 PType = (*PI)->getType();
2268 }
2269 // FIXME: we must check that the setter has property type.
2270 return Owned(new (Context) ObjCKVCRefExpr(Getter, PType,
2271 Setter, MemberLoc, BaseExpr));
2272 }
2273 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2274 << &Member << BaseType);
2275 }
2276 }
Chris Lattnera38e6b12008-07-21 04:59:05 +00002277 // Handle access to Objective-C instance variables, such as "Obj->ivar" and
2278 // (*Obj).ivar.
Steve Naroff14108da2009-07-10 23:34:53 +00002279 if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) ||
2280 (OpKind == tok::period && BaseType->isObjCInterfaceType())) {
2281 const ObjCObjectPointerType *OPT = BaseType->getAsObjCObjectPointerType();
2282 const ObjCInterfaceType *IFaceT =
2283 OPT ? OPT->getInterfaceType() : BaseType->getAsObjCInterfaceType();
Steve Naroff14108da2009-07-10 23:34:53 +00002284
Steve Naroffc70e8d92009-07-16 00:25:06 +00002285 if (IFaceT) {
2286 ObjCInterfaceDecl *IDecl = IFaceT->getDecl();
2287 ObjCInterfaceDecl *ClassDeclared;
2288 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(&Member, ClassDeclared);
2289
2290 if (IV) {
2291 // If the decl being referenced had an error, return an error for this
2292 // sub-expr without emitting another error, in order to avoid cascading
2293 // error cases.
2294 if (IV->isInvalidDecl())
2295 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002296
Steve Naroffc70e8d92009-07-16 00:25:06 +00002297 // Check whether we can reference this field.
2298 if (DiagnoseUseOfDecl(IV, MemberLoc))
2299 return ExprError();
2300 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
2301 IV->getAccessControl() != ObjCIvarDecl::Package) {
2302 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
2303 if (ObjCMethodDecl *MD = getCurMethodDecl())
2304 ClassOfMethodDecl = MD->getClassInterface();
2305 else if (ObjCImpDecl && getCurFunctionDecl()) {
2306 // Case of a c-function declared inside an objc implementation.
2307 // FIXME: For a c-style function nested inside an objc implementation
2308 // class, there is no implementation context available, so we pass
2309 // down the context as argument to this routine. Ideally, this context
2310 // need be passed down in the AST node and somehow calculated from the
2311 // AST for a function decl.
2312 Decl *ImplDecl = ObjCImpDecl.getAs<Decl>();
2313 if (ObjCImplementationDecl *IMPD =
2314 dyn_cast<ObjCImplementationDecl>(ImplDecl))
2315 ClassOfMethodDecl = IMPD->getClassInterface();
2316 else if (ObjCCategoryImplDecl* CatImplClass =
2317 dyn_cast<ObjCCategoryImplDecl>(ImplDecl))
2318 ClassOfMethodDecl = CatImplClass->getClassInterface();
2319 }
2320
2321 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
2322 if (ClassDeclared != IDecl ||
2323 ClassOfMethodDecl != ClassDeclared)
2324 Diag(MemberLoc, diag::error_private_ivar_access)
2325 << IV->getDeclName();
2326 }
2327 // @protected
2328 else if (!IDecl->isSuperClassOf(ClassOfMethodDecl))
2329 Diag(MemberLoc, diag::error_protected_ivar_access)
2330 << IV->getDeclName();
Steve Naroffb06d8752009-03-04 18:34:24 +00002331 }
Steve Naroffc70e8d92009-07-16 00:25:06 +00002332
2333 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(),
2334 MemberLoc, BaseExpr,
2335 OpKind == tok::arrow));
Fariborz Jahanian935fd762009-03-03 01:21:12 +00002336 }
Steve Naroffc70e8d92009-07-16 00:25:06 +00002337 return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
2338 << IDecl->getDeclName() << &Member
2339 << BaseExpr->getSourceRange());
Fariborz Jahanianaaa63a72008-12-13 22:20:28 +00002340 }
Steve Naroffc70e8d92009-07-16 00:25:06 +00002341 // We don't have an interface. FIXME: deal with ObjC builtin 'id' type.
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002342 }
Steve Naroffde2e22d2009-07-15 18:40:39 +00002343 // Handle properties on 'id' and qualified "id".
2344 if (OpKind == tok::period && (BaseType->isObjCIdType() ||
2345 BaseType->isObjCQualifiedIdType())) {
2346 const ObjCObjectPointerType *QIdTy = BaseType->getAsObjCObjectPointerType();
2347
Steve Naroff14108da2009-07-10 23:34:53 +00002348 // Check protocols on qualified interfaces.
2349 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
2350 if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) {
2351 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
2352 // Check the use of this declaration
2353 if (DiagnoseUseOfDecl(PD, MemberLoc))
2354 return ExprError();
2355
2356 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2357 MemberLoc, BaseExpr));
2358 }
2359 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
2360 // Check the use of this method.
2361 if (DiagnoseUseOfDecl(OMD, MemberLoc))
2362 return ExprError();
2363
2364 return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel,
2365 OMD->getResultType(),
2366 OMD, OpLoc, MemberLoc,
2367 NULL, 0));
2368 }
2369 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002370
Steve Naroff14108da2009-07-10 23:34:53 +00002371 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2372 << &Member << BaseType);
2373 }
Chris Lattnera38e6b12008-07-21 04:59:05 +00002374 // Handle Objective-C property access, which is "Obj.property" where Obj is a
2375 // pointer to a (potentially qualified) interface type.
Steve Naroff14108da2009-07-10 23:34:53 +00002376 const ObjCObjectPointerType *OPT;
2377 if (OpKind == tok::period &&
2378 (OPT = BaseType->getAsObjCInterfacePointerType())) {
2379 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
2380 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
2381
Daniel Dunbar2307d312008-09-03 01:05:41 +00002382 // Search for a declared property first.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002383 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(&Member)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002384 // Check whether we can reference this property.
2385 if (DiagnoseUseOfDecl(PD, MemberLoc))
2386 return ExprError();
Fariborz Jahanian4c2743f2009-05-08 19:36:34 +00002387 QualType ResTy = PD->getType();
2388 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002389 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Fariborz Jahanianc001e892009-05-08 20:20:55 +00002390 if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))
2391 ResTy = Getter->getResultType();
Fariborz Jahanian4c2743f2009-05-08 19:36:34 +00002392 return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy,
Chris Lattner7eba82e2009-02-16 18:35:08 +00002393 MemberLoc, BaseExpr));
2394 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00002395 // Check protocols on qualified interfaces.
Steve Naroff67ef8ea2009-07-20 17:56:53 +00002396 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2397 E = OPT->qual_end(); I != E; ++I)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002398 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002399 // Check whether we can reference this property.
2400 if (DiagnoseUseOfDecl(PD, MemberLoc))
2401 return ExprError();
Chris Lattner7eba82e2009-02-16 18:35:08 +00002402
Steve Naroff6ece14c2009-01-21 00:14:39 +00002403 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
Chris Lattner7eba82e2009-02-16 18:35:08 +00002404 MemberLoc, BaseExpr));
2405 }
Steve Naroff14108da2009-07-10 23:34:53 +00002406 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2407 E = OPT->qual_end(); I != E; ++I)
2408 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) {
2409 // Check whether we can reference this property.
2410 if (DiagnoseUseOfDecl(PD, MemberLoc))
2411 return ExprError();
Daniel Dunbar2307d312008-09-03 01:05:41 +00002412
Steve Naroff14108da2009-07-10 23:34:53 +00002413 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2414 MemberLoc, BaseExpr));
2415 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00002416 // If that failed, look for an "implicit" property by seeing if the nullary
2417 // selector is implemented.
2418
2419 // FIXME: The logic for looking up nullary and unary selectors should be
2420 // shared with the code in ActOnInstanceMessage.
2421
2422 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002423 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Sebastian Redl0eb23302009-01-19 00:08:26 +00002424
Daniel Dunbar2307d312008-09-03 01:05:41 +00002425 // If this reference is in an @implementation, check for 'private' methods.
2426 if (!Getter)
Fariborz Jahanianef79bc92009-04-07 18:28:06 +00002427 Getter = FindMethodInNestedImplementations(IFace, Sel);
Daniel Dunbar2307d312008-09-03 01:05:41 +00002428
Steve Naroff7692ed62008-10-22 19:16:27 +00002429 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00002430 if (!Getter)
2431 Getter = IFace->getCategoryInstanceMethod(Sel);
Daniel Dunbar2307d312008-09-03 01:05:41 +00002432 if (Getter) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002433 // Check if we can reference this property.
2434 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2435 return ExprError();
Steve Naroff1ca66942009-03-11 13:48:17 +00002436 }
2437 // If we found a getter then this may be a valid dot-reference, we
2438 // will look for the matching setter, in case it is needed.
2439 Selector SetterSel =
2440 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2441 PP.getSelectorTable(), &Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002442 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
Steve Naroff1ca66942009-03-11 13:48:17 +00002443 if (!Setter) {
2444 // If this reference is in an @implementation, also check for 'private'
2445 // methods.
Fariborz Jahanianef79bc92009-04-07 18:28:06 +00002446 Setter = FindMethodInNestedImplementations(IFace, SetterSel);
Steve Naroff1ca66942009-03-11 13:48:17 +00002447 }
2448 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00002449 if (!Setter)
2450 Setter = IFace->getCategoryInstanceMethod(SetterSel);
Sebastian Redl0eb23302009-01-19 00:08:26 +00002451
Steve Naroff1ca66942009-03-11 13:48:17 +00002452 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2453 return ExprError();
2454
2455 if (Getter || Setter) {
2456 QualType PType;
2457
2458 if (Getter)
2459 PType = Getter->getResultType();
2460 else {
2461 for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(),
2462 E = Setter->param_end(); PI != E; ++PI)
2463 PType = (*PI)->getType();
2464 }
2465 // FIXME: we must check that the setter has property type.
2466 return Owned(new (Context) ObjCKVCRefExpr(Getter, PType,
2467 Setter, MemberLoc, BaseExpr));
2468 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002469 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2470 << &Member << BaseType);
Fariborz Jahanian232220c2007-11-12 22:29:28 +00002471 }
Steve Naroffdd53eb52009-03-05 20:12:00 +00002472
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002473 // Handle 'field access' to vectors, such as 'V.xx'.
Chris Lattner73525de2009-02-16 21:11:58 +00002474 if (BaseType->isExtVectorType()) {
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002475 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc);
2476 if (ret.isNull())
Sebastian Redl0eb23302009-01-19 00:08:26 +00002477 return ExprError();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002478 return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member,
Steve Naroff6ece14c2009-01-21 00:14:39 +00002479 MemberLoc));
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002480 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002481
Douglas Gregor214f31a2009-03-27 06:00:30 +00002482 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
2483 << BaseType << BaseExpr->getSourceRange();
2484
2485 // If the user is trying to apply -> or . to a function or function
2486 // pointer, it's probably because they forgot parentheses to call
2487 // the function. Suggest the addition of those parentheses.
2488 if (BaseType == Context.OverloadTy ||
2489 BaseType->isFunctionType() ||
2490 (BaseType->isPointerType() &&
Ted Kremenek35366a62009-07-17 17:50:17 +00002491 BaseType->getAsPointerType()->isFunctionType())) {
Douglas Gregor214f31a2009-03-27 06:00:30 +00002492 SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd());
2493 Diag(Loc, diag::note_member_reference_needs_call)
2494 << CodeModificationHint::CreateInsertion(Loc, "()");
2495 }
2496
2497 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002498}
2499
Douglas Gregor88a35142008-12-22 05:46:06 +00002500/// ConvertArgumentsForCall - Converts the arguments specified in
2501/// Args/NumArgs to the parameter types of the function FDecl with
2502/// function prototype Proto. Call is the call expression itself, and
2503/// Fn is the function expression. For a C++ member function, this
2504/// routine does not attempt to convert the object argument. Returns
2505/// true if the call is ill-formed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00002506bool
2507Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor88a35142008-12-22 05:46:06 +00002508 FunctionDecl *FDecl,
Douglas Gregor72564e72009-02-26 23:50:07 +00002509 const FunctionProtoType *Proto,
Douglas Gregor88a35142008-12-22 05:46:06 +00002510 Expr **Args, unsigned NumArgs,
2511 SourceLocation RParenLoc) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00002512 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor88a35142008-12-22 05:46:06 +00002513 // assignment, to the types of the corresponding parameter, ...
2514 unsigned NumArgsInProto = Proto->getNumArgs();
2515 unsigned NumArgsToCheck = NumArgs;
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002516 bool Invalid = false;
2517
Douglas Gregor88a35142008-12-22 05:46:06 +00002518 // If too few arguments are available (and we don't have default
2519 // arguments for the remaining parameters), don't make the call.
2520 if (NumArgs < NumArgsInProto) {
2521 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
2522 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
2523 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange();
2524 // Use default arguments for missing arguments
2525 NumArgsToCheck = NumArgsInProto;
Ted Kremenek8189cde2009-02-07 01:47:29 +00002526 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor88a35142008-12-22 05:46:06 +00002527 }
2528
2529 // If too many are passed and not variadic, error on the extras and drop
2530 // them.
2531 if (NumArgs > NumArgsInProto) {
2532 if (!Proto->isVariadic()) {
2533 Diag(Args[NumArgsInProto]->getLocStart(),
2534 diag::err_typecheck_call_too_many_args)
2535 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange()
2536 << SourceRange(Args[NumArgsInProto]->getLocStart(),
2537 Args[NumArgs-1]->getLocEnd());
2538 // This deletes the extra arguments.
Ted Kremenek8189cde2009-02-07 01:47:29 +00002539 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002540 Invalid = true;
Douglas Gregor88a35142008-12-22 05:46:06 +00002541 }
2542 NumArgsToCheck = NumArgsInProto;
2543 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002544
Douglas Gregor88a35142008-12-22 05:46:06 +00002545 // Continue to check argument types (even if we have too few/many args).
2546 for (unsigned i = 0; i != NumArgsToCheck; i++) {
2547 QualType ProtoArgType = Proto->getArgType(i);
Mike Stumpeed9cac2009-02-19 03:04:26 +00002548
Douglas Gregor88a35142008-12-22 05:46:06 +00002549 Expr *Arg;
Douglas Gregor61366e92008-12-24 00:01:03 +00002550 if (i < NumArgs) {
Douglas Gregor88a35142008-12-22 05:46:06 +00002551 Arg = Args[i];
Douglas Gregor61366e92008-12-24 00:01:03 +00002552
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002553 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2554 ProtoArgType,
2555 diag::err_call_incomplete_argument,
2556 Arg->getSourceRange()))
2557 return true;
2558
Douglas Gregor61366e92008-12-24 00:01:03 +00002559 // Pass the argument.
2560 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
2561 return true;
Anders Carlsson5e300d12009-06-12 16:51:40 +00002562 } else {
2563 if (FDecl->getParamDecl(i)->hasUnparsedDefaultArg()) {
2564 Diag (Call->getSourceRange().getBegin(),
2565 diag::err_use_of_default_argument_to_function_declared_later) <<
2566 FDecl << cast<CXXRecordDecl>(FDecl->getDeclContext())->getDeclName();
2567 Diag(UnparsedDefaultArgLocs[FDecl->getParamDecl(i)],
2568 diag::note_default_argument_declared_here);
Anders Carlssonf54741e2009-06-16 03:37:31 +00002569 } else {
2570 Expr *DefaultExpr = FDecl->getParamDecl(i)->getDefaultArg();
2571
2572 // If the default expression creates temporaries, we need to
2573 // push them to the current stack of expression temporaries so they'll
2574 // be properly destroyed.
2575 if (CXXExprWithTemporaries *E
2576 = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) {
2577 assert(!E->shouldDestroyTemporaries() &&
2578 "Can't destroy temporaries in a default argument expr!");
2579 for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I)
2580 ExprTemporaries.push_back(E->getTemporary(I));
2581 }
Anders Carlsson5e300d12009-06-12 16:51:40 +00002582 }
Anders Carlssonf54741e2009-06-16 03:37:31 +00002583
Douglas Gregor61366e92008-12-24 00:01:03 +00002584 // We already type-checked the argument, so we know it works.
Steve Naroff6ece14c2009-01-21 00:14:39 +00002585 Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i));
Anders Carlsson5e300d12009-06-12 16:51:40 +00002586 }
2587
Douglas Gregor88a35142008-12-22 05:46:06 +00002588 QualType ArgType = Arg->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002589
Douglas Gregor88a35142008-12-22 05:46:06 +00002590 Call->setArg(i, Arg);
2591 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002592
Douglas Gregor88a35142008-12-22 05:46:06 +00002593 // If this is a variadic call, handle args passed through "...".
2594 if (Proto->isVariadic()) {
Anders Carlssondce5e2c2009-01-16 16:48:51 +00002595 VariadicCallType CallType = VariadicFunction;
2596 if (Fn->getType()->isBlockPointerType())
2597 CallType = VariadicBlock; // Block
2598 else if (isa<MemberExpr>(Fn))
2599 CallType = VariadicMethod;
2600
Douglas Gregor88a35142008-12-22 05:46:06 +00002601 // Promote the arguments (C99 6.5.2.2p7).
2602 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
2603 Expr *Arg = Args[i];
Chris Lattner312531a2009-04-12 08:11:20 +00002604 Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType);
Douglas Gregor88a35142008-12-22 05:46:06 +00002605 Call->setArg(i, Arg);
2606 }
2607 }
2608
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002609 return Invalid;
Douglas Gregor88a35142008-12-22 05:46:06 +00002610}
2611
Steve Narofff69936d2007-09-16 03:34:24 +00002612/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00002613/// This provides the location of the left/right parens and a list of comma
2614/// locations.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002615Action::OwningExprResult
2616Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc,
2617 MultiExprArg args,
Douglas Gregor88a35142008-12-22 05:46:06 +00002618 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Sebastian Redl0eb23302009-01-19 00:08:26 +00002619 unsigned NumArgs = args.size();
Anders Carlssonf1b1d592009-05-01 19:30:39 +00002620 Expr *Fn = fn.takeAs<Expr>();
Sebastian Redl0eb23302009-01-19 00:08:26 +00002621 Expr **Args = reinterpret_cast<Expr**>(args.release());
Chris Lattner74c469f2007-07-21 03:03:59 +00002622 assert(Fn && "no function call expression");
Chris Lattner04421082008-04-08 04:40:51 +00002623 FunctionDecl *FDecl = NULL;
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002624 NamedDecl *NDecl = NULL;
Douglas Gregor17330012009-02-04 15:01:18 +00002625 DeclarationName UnqualifiedName;
Douglas Gregor88a35142008-12-22 05:46:06 +00002626
Douglas Gregor88a35142008-12-22 05:46:06 +00002627 if (getLangOptions().CPlusPlus) {
Douglas Gregor17330012009-02-04 15:01:18 +00002628 // Determine whether this is a dependent call inside a C++ template,
Mike Stumpeed9cac2009-02-19 03:04:26 +00002629 // in which case we won't do any semantic analysis now.
Mike Stump390b4cc2009-05-16 07:39:55 +00002630 // FIXME: Will need to cache the results of name lookup (including ADL) in
2631 // Fn.
Douglas Gregor17330012009-02-04 15:01:18 +00002632 bool Dependent = false;
2633 if (Fn->isTypeDependent())
2634 Dependent = true;
2635 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
2636 Dependent = true;
2637
2638 if (Dependent)
Ted Kremenek668bf912009-02-09 20:51:47 +00002639 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
Douglas Gregor17330012009-02-04 15:01:18 +00002640 Context.DependentTy, RParenLoc));
2641
2642 // Determine whether this is a call to an object (C++ [over.call.object]).
2643 if (Fn->getType()->isRecordType())
2644 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
2645 CommaLocs, RParenLoc));
2646
Douglas Gregorfa047642009-02-04 00:32:51 +00002647 // Determine whether this is a call to a member function.
Douglas Gregore53060f2009-06-25 22:08:12 +00002648 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) {
2649 NamedDecl *MemDecl = MemExpr->getMemberDecl();
2650 if (isa<OverloadedFunctionDecl>(MemDecl) ||
2651 isa<CXXMethodDecl>(MemDecl) ||
2652 (isa<FunctionTemplateDecl>(MemDecl) &&
2653 isa<CXXMethodDecl>(
2654 cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl())))
Sebastian Redl0eb23302009-01-19 00:08:26 +00002655 return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
2656 CommaLocs, RParenLoc));
Douglas Gregore53060f2009-06-25 22:08:12 +00002657 }
Douglas Gregor88a35142008-12-22 05:46:06 +00002658 }
2659
Douglas Gregorfa047642009-02-04 00:32:51 +00002660 // If we're directly calling a function, get the appropriate declaration.
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002661 // Also, in C++, keep track of whether we should perform argument-dependent
2662 // lookup and whether there were any explicitly-specified template arguments.
Douglas Gregorfa047642009-02-04 00:32:51 +00002663 Expr *FnExpr = Fn;
2664 bool ADL = true;
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002665 bool HasExplicitTemplateArgs = 0;
2666 const TemplateArgument *ExplicitTemplateArgs = 0;
2667 unsigned NumExplicitTemplateArgs = 0;
Douglas Gregorfa047642009-02-04 00:32:51 +00002668 while (true) {
2669 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr))
2670 FnExpr = IcExpr->getSubExpr();
2671 else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00002672 // Parentheses around a function disable ADL
Douglas Gregor17330012009-02-04 15:01:18 +00002673 // (C++0x [basic.lookup.argdep]p1).
Douglas Gregorfa047642009-02-04 00:32:51 +00002674 ADL = false;
2675 FnExpr = PExpr->getSubExpr();
2676 } else if (isa<UnaryOperator>(FnExpr) &&
Mike Stumpeed9cac2009-02-19 03:04:26 +00002677 cast<UnaryOperator>(FnExpr)->getOpcode()
Douglas Gregorfa047642009-02-04 00:32:51 +00002678 == UnaryOperator::AddrOf) {
2679 FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr();
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002680 } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) {
Chris Lattner90e150d2009-02-14 07:22:29 +00002681 // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1).
2682 ADL &= !isa<QualifiedDeclRefExpr>(DRExpr);
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002683 NDecl = dyn_cast<NamedDecl>(DRExpr->getDecl());
Chris Lattner90e150d2009-02-14 07:22:29 +00002684 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00002685 } else if (UnresolvedFunctionNameExpr *DepName
Chris Lattner90e150d2009-02-14 07:22:29 +00002686 = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) {
2687 UnqualifiedName = DepName->getName();
2688 break;
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002689 } else if (TemplateIdRefExpr *TemplateIdRef
2690 = dyn_cast<TemplateIdRefExpr>(FnExpr)) {
2691 NDecl = TemplateIdRef->getTemplateName().getAsTemplateDecl();
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002692 HasExplicitTemplateArgs = true;
2693 ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs();
2694 NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs();
2695
2696 // C++ [temp.arg.explicit]p6:
2697 // [Note: For simple function names, argument dependent lookup (3.4.2)
2698 // applies even when the function name is not visible within the
2699 // scope of the call. This is because the call still has the syntactic
2700 // form of a function call (3.4.1). But when a function template with
2701 // explicit template arguments is used, the call does not have the
2702 // correct syntactic form unless there is a function template with
2703 // that name visible at the point of the call. If no such name is
2704 // visible, the call is not syntactically well-formed and
2705 // argument-dependent lookup does not apply. If some such name is
2706 // visible, argument dependent lookup applies and additional function
2707 // templates may be found in other namespaces.
2708 //
2709 // The summary of this paragraph is that, if we get to this point and the
2710 // template-id was not a qualified name, then argument-dependent lookup
2711 // is still possible.
2712 if (TemplateIdRef->getQualifier())
2713 ADL = false;
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002714 break;
Douglas Gregorfa047642009-02-04 00:32:51 +00002715 } else {
Chris Lattner90e150d2009-02-14 07:22:29 +00002716 // Any kind of name that does not refer to a declaration (or
2717 // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3).
2718 ADL = false;
Douglas Gregorfa047642009-02-04 00:32:51 +00002719 break;
2720 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002721 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002722
Douglas Gregor17330012009-02-04 15:01:18 +00002723 OverloadedFunctionDecl *Ovl = 0;
Douglas Gregore53060f2009-06-25 22:08:12 +00002724 FunctionTemplateDecl *FunctionTemplate = 0;
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002725 if (NDecl) {
2726 FDecl = dyn_cast<FunctionDecl>(NDecl);
2727 if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl)))
Douglas Gregore53060f2009-06-25 22:08:12 +00002728 FDecl = FunctionTemplate->getTemplatedDecl();
2729 else
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002730 FDecl = dyn_cast<FunctionDecl>(NDecl);
2731 Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl);
Douglas Gregor17330012009-02-04 15:01:18 +00002732 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002733
Douglas Gregore53060f2009-06-25 22:08:12 +00002734 if (Ovl || FunctionTemplate ||
2735 (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) {
Douglas Gregor3e41d602009-02-13 23:20:09 +00002736 // We don't perform ADL for implicit declarations of builtins.
Douglas Gregor3c385e52009-02-14 18:57:46 +00002737 if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit())
Douglas Gregorfa047642009-02-04 00:32:51 +00002738 ADL = false;
2739
Douglas Gregorf9201e02009-02-11 23:02:49 +00002740 // We don't perform ADL in C.
2741 if (!getLangOptions().CPlusPlus)
2742 ADL = false;
2743
Douglas Gregore53060f2009-06-25 22:08:12 +00002744 if (Ovl || FunctionTemplate || ADL) {
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002745 FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName,
2746 HasExplicitTemplateArgs,
2747 ExplicitTemplateArgs,
2748 NumExplicitTemplateArgs,
2749 LParenLoc, Args, NumArgs, CommaLocs,
2750 RParenLoc, ADL);
Douglas Gregorfa047642009-02-04 00:32:51 +00002751 if (!FDecl)
2752 return ExprError();
2753
2754 // Update Fn to refer to the actual function selected.
2755 Expr *NewFn = 0;
Mike Stumpeed9cac2009-02-19 03:04:26 +00002756 if (QualifiedDeclRefExpr *QDRExpr
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002757 = dyn_cast<QualifiedDeclRefExpr>(FnExpr))
Douglas Gregorab452ba2009-03-26 23:50:42 +00002758 NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(),
2759 QDRExpr->getLocation(),
2760 false, false,
2761 QDRExpr->getQualifierRange(),
2762 QDRExpr->getQualifier());
Douglas Gregorfa047642009-02-04 00:32:51 +00002763 else
Mike Stumpeed9cac2009-02-19 03:04:26 +00002764 NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(),
Douglas Gregorfa047642009-02-04 00:32:51 +00002765 Fn->getSourceRange().getBegin());
2766 Fn->Destroy(Context);
2767 Fn = NewFn;
2768 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002769 }
Chris Lattner04421082008-04-08 04:40:51 +00002770
2771 // Promote the function operand.
2772 UsualUnaryConversions(Fn);
2773
Chris Lattner925e60d2007-12-28 05:29:59 +00002774 // Make the call expr early, before semantic checks. This guarantees cleanup
2775 // of arguments and function on error.
Ted Kremenek668bf912009-02-09 20:51:47 +00002776 ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn,
2777 Args, NumArgs,
2778 Context.BoolTy,
2779 RParenLoc));
Sebastian Redl0eb23302009-01-19 00:08:26 +00002780
Steve Naroffdd972f22008-09-05 22:11:13 +00002781 const FunctionType *FuncT;
2782 if (!Fn->getType()->isBlockPointerType()) {
2783 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
2784 // have type pointer to function".
Ted Kremenek35366a62009-07-17 17:50:17 +00002785 const PointerType *PT = Fn->getType()->getAsPointerType();
Steve Naroffdd972f22008-09-05 22:11:13 +00002786 if (PT == 0)
Sebastian Redl0eb23302009-01-19 00:08:26 +00002787 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2788 << Fn->getType() << Fn->getSourceRange());
Steve Naroffdd972f22008-09-05 22:11:13 +00002789 FuncT = PT->getPointeeType()->getAsFunctionType();
2790 } else { // This is a block call.
Ted Kremenek35366a62009-07-17 17:50:17 +00002791 FuncT = Fn->getType()->getAsBlockPointerType()->getPointeeType()->
Steve Naroffdd972f22008-09-05 22:11:13 +00002792 getAsFunctionType();
2793 }
Chris Lattner925e60d2007-12-28 05:29:59 +00002794 if (FuncT == 0)
Sebastian Redl0eb23302009-01-19 00:08:26 +00002795 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2796 << Fn->getType() << Fn->getSourceRange());
2797
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002798 // Check for a valid return type
2799 if (!FuncT->getResultType()->isVoidType() &&
2800 RequireCompleteType(Fn->getSourceRange().getBegin(),
2801 FuncT->getResultType(),
2802 diag::err_call_incomplete_return,
2803 TheCall->getSourceRange()))
2804 return ExprError();
2805
Chris Lattner925e60d2007-12-28 05:29:59 +00002806 // We know the result type of the call, set it.
Douglas Gregor15da57e2008-10-29 02:00:59 +00002807 TheCall->setType(FuncT->getResultType().getNonReferenceType());
Sebastian Redl0eb23302009-01-19 00:08:26 +00002808
Douglas Gregor72564e72009-02-26 23:50:07 +00002809 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00002810 if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs,
Douglas Gregor88a35142008-12-22 05:46:06 +00002811 RParenLoc))
Sebastian Redl0eb23302009-01-19 00:08:26 +00002812 return ExprError();
Chris Lattner925e60d2007-12-28 05:29:59 +00002813 } else {
Douglas Gregor72564e72009-02-26 23:50:07 +00002814 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redl0eb23302009-01-19 00:08:26 +00002815
Douglas Gregor74734d52009-04-02 15:37:10 +00002816 if (FDecl) {
2817 // Check if we have too few/too many template arguments, based
2818 // on our knowledge of the function definition.
2819 const FunctionDecl *Def = 0;
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002820 if (FDecl->getBody(Def) && NumArgs != Def->param_size()) {
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00002821 const FunctionProtoType *Proto =
2822 Def->getType()->getAsFunctionProtoType();
2823 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) {
2824 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
2825 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
2826 }
2827 }
Douglas Gregor74734d52009-04-02 15:37:10 +00002828 }
2829
Steve Naroffb291ab62007-08-28 23:30:39 +00002830 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner925e60d2007-12-28 05:29:59 +00002831 for (unsigned i = 0; i != NumArgs; i++) {
2832 Expr *Arg = Args[i];
2833 DefaultArgumentPromotion(Arg);
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002834 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2835 Arg->getType(),
2836 diag::err_call_incomplete_argument,
2837 Arg->getSourceRange()))
2838 return ExprError();
Chris Lattner925e60d2007-12-28 05:29:59 +00002839 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +00002840 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002841 }
Chris Lattner925e60d2007-12-28 05:29:59 +00002842
Douglas Gregor88a35142008-12-22 05:46:06 +00002843 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
2844 if (!Method->isStatic())
Sebastian Redl0eb23302009-01-19 00:08:26 +00002845 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
2846 << Fn->getSourceRange());
Douglas Gregor88a35142008-12-22 05:46:06 +00002847
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002848 // Check for sentinels
2849 if (NDecl)
2850 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Chris Lattner59907c42007-08-10 20:18:51 +00002851 // Do special checking on direct calls to functions.
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002852 if (FDecl)
Eli Friedmand38617c2008-05-14 19:38:39 +00002853 return CheckFunctionCall(FDecl, TheCall.take());
Fariborz Jahanian725165f2009-05-18 21:05:18 +00002854 if (NDecl)
2855 return CheckBlockCall(NDecl, TheCall.take());
Chris Lattner59907c42007-08-10 20:18:51 +00002856
Sebastian Redl0eb23302009-01-19 00:08:26 +00002857 return Owned(TheCall.take());
Reid Spencer5f016e22007-07-11 17:01:13 +00002858}
2859
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002860Action::OwningExprResult
2861Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
2862 SourceLocation RParenLoc, ExprArg InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +00002863 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Steve Naroff4aa88f82007-07-19 01:06:55 +00002864 QualType literalType = QualType::getFromOpaquePtr(Ty);
Steve Naroffaff1edd2007-07-19 21:32:11 +00002865 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +00002866 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002867 Expr *literalExpr = static_cast<Expr*>(InitExpr.get());
Anders Carlssond35c8322007-12-05 07:24:19 +00002868
Eli Friedman6223c222008-05-20 05:22:08 +00002869 if (literalType->isArrayType()) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002870 if (literalType->isVariableArrayType())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002871 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
2872 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()));
Douglas Gregor690dc7f2009-05-21 23:48:18 +00002873 } else if (!literalType->isDependentType() &&
2874 RequireCompleteType(LParenLoc, literalType,
2875 diag::err_typecheck_decl_incomplete_type,
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002876 SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002877 return ExprError();
Eli Friedman6223c222008-05-20 05:22:08 +00002878
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002879 if (CheckInitializerTypes(literalExpr, literalType, LParenLoc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002880 DeclarationName(), /*FIXME:DirectInit=*/false))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002881 return ExprError();
Steve Naroffe9b12192008-01-14 18:19:28 +00002882
Chris Lattner371f2582008-12-04 23:50:19 +00002883 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffe9b12192008-01-14 18:19:28 +00002884 if (isFileScope) { // 6.5.2.5p3
Steve Naroffd0091aa2008-01-10 22:15:12 +00002885 if (CheckForConstantInitializer(literalExpr, literalType))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002886 return ExprError();
Steve Naroffd0091aa2008-01-10 22:15:12 +00002887 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002888 InitExpr.release();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002889 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType,
Steve Naroff6ece14c2009-01-21 00:14:39 +00002890 literalExpr, isFileScope));
Steve Naroff4aa88f82007-07-19 01:06:55 +00002891}
2892
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002893Action::OwningExprResult
2894Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist,
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002895 SourceLocation RBraceLoc) {
2896 unsigned NumInit = initlist.size();
2897 Expr **InitList = reinterpret_cast<Expr**>(initlist.release());
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00002898
Steve Naroff08d92e42007-09-15 18:49:24 +00002899 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stumpeed9cac2009-02-19 03:04:26 +00002900 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002901
Mike Stumpeed9cac2009-02-19 03:04:26 +00002902 InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit,
Douglas Gregor4c678342009-01-28 21:54:33 +00002903 RBraceLoc);
Chris Lattnerf0467b32008-04-02 04:24:33 +00002904 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00002905 return Owned(E);
Steve Naroff4aa88f82007-07-19 01:06:55 +00002906}
2907
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002908/// CheckCastTypes - Check type constraints for casting between types.
Daniel Dunbar58d5ebb2008-08-20 03:55:42 +00002909bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr) {
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002910 UsualUnaryConversions(castExpr);
2911
2912 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
2913 // type needs to be scalar.
2914 if (castType->isVoidType()) {
2915 // Cast to void allows any expr type.
Douglas Gregor898574e2008-12-05 23:32:09 +00002916 } else if (castType->isDependentType() || castExpr->isTypeDependent()) {
2917 // We can't check any more until template instantiation time.
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002918 } else if (!castType->isScalarType() && !castType->isVectorType()) {
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00002919 if (Context.getCanonicalType(castType).getUnqualifiedType() ==
2920 Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) &&
2921 (castType->isStructureType() || castType->isUnionType())) {
2922 // GCC struct/union extension: allow cast to self.
Eli Friedmanb1d796d2009-03-23 00:24:07 +00002923 // FIXME: Check that the cast destination type is complete.
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00002924 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
2925 << castType << castExpr->getSourceRange();
2926 } else if (castType->isUnionType()) {
2927 // GCC cast to union extension
Ted Kremenek35366a62009-07-17 17:50:17 +00002928 RecordDecl *RD = castType->getAsRecordType()->getDecl();
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00002929 RecordDecl::field_iterator Field, FieldEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002930 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00002931 Field != FieldEnd; ++Field) {
2932 if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() ==
2933 Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) {
2934 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union)
2935 << castExpr->getSourceRange();
2936 break;
2937 }
2938 }
2939 if (Field == FieldEnd)
2940 return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type)
2941 << castExpr->getType() << castExpr->getSourceRange();
2942 } else {
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002943 // Reject any other conversions to non-scalar types.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002944 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00002945 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002946 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002947 } else if (!castExpr->getType()->isScalarType() &&
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002948 !castExpr->getType()->isVectorType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002949 return Diag(castExpr->getLocStart(),
2950 diag::err_typecheck_expect_scalar_operand)
Chris Lattnerd1625842008-11-24 06:25:27 +00002951 << castExpr->getType() << castExpr->getSourceRange();
Nate Begeman58d29a42009-06-26 00:50:28 +00002952 } else if (castType->isExtVectorType()) {
2953 if (CheckExtVectorCast(TyR, castType, castExpr->getType()))
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002954 return true;
2955 } else if (castType->isVectorType()) {
2956 if (CheckVectorCast(TyR, castType, castExpr->getType()))
2957 return true;
Nate Begeman58d29a42009-06-26 00:50:28 +00002958 } else if (castExpr->getType()->isVectorType()) {
2959 if (CheckVectorCast(TyR, castExpr->getType(), castType))
2960 return true;
Steve Naroff6b9dfd42009-03-04 15:11:40 +00002961 } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) {
Steve Naroffa0c3e9c2009-04-08 23:52:26 +00002962 return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR;
Eli Friedman41826bb2009-05-01 02:23:58 +00002963 } else if (!castType->isArithmeticType()) {
2964 QualType castExprType = castExpr->getType();
2965 if (!castExprType->isIntegralType() && castExprType->isArithmeticType())
2966 return Diag(castExpr->getLocStart(),
2967 diag::err_cast_pointer_from_non_pointer_int)
2968 << castExprType << castExpr->getSourceRange();
2969 } else if (!castExpr->getType()->isArithmeticType()) {
2970 if (!castType->isIntegralType() && castType->isArithmeticType())
2971 return Diag(castExpr->getLocStart(),
2972 diag::err_cast_pointer_to_non_pointer_int)
2973 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002974 }
Fariborz Jahanianb5ff6bf2009-05-22 21:42:52 +00002975 if (isa<ObjCSelectorExpr>(castExpr))
2976 return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr);
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00002977 return false;
2978}
2979
Chris Lattnerfe23e212007-12-20 00:44:32 +00002980bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) {
Anders Carlssona64db8f2007-11-27 05:51:55 +00002981 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00002982
Anders Carlssona64db8f2007-11-27 05:51:55 +00002983 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner98be4942008-03-05 18:54:05 +00002984 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssona64db8f2007-11-27 05:51:55 +00002985 return Diag(R.getBegin(),
Mike Stumpeed9cac2009-02-19 03:04:26 +00002986 Ty->isVectorType() ?
Anders Carlssona64db8f2007-11-27 05:51:55 +00002987 diag::err_invalid_conversion_between_vectors :
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002988 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00002989 << VectorTy << Ty << R;
Anders Carlssona64db8f2007-11-27 05:51:55 +00002990 } else
2991 return Diag(R.getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002992 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00002993 << VectorTy << Ty << R;
Mike Stumpeed9cac2009-02-19 03:04:26 +00002994
Anders Carlssona64db8f2007-11-27 05:51:55 +00002995 return false;
2996}
2997
Nate Begeman58d29a42009-06-26 00:50:28 +00002998bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, QualType SrcTy) {
2999 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
3000
Nate Begeman9b10da62009-06-27 22:05:55 +00003001 // If SrcTy is a VectorType, the total size must match to explicitly cast to
3002 // an ExtVectorType.
Nate Begeman58d29a42009-06-26 00:50:28 +00003003 if (SrcTy->isVectorType()) {
3004 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy))
3005 return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
3006 << DestTy << SrcTy << R;
3007 return false;
3008 }
3009
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003010 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begeman58d29a42009-06-26 00:50:28 +00003011 // conversion will take place first from scalar to elt type, and then
3012 // splat from elt type to vector.
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003013 if (SrcTy->isPointerType())
3014 return Diag(R.getBegin(),
3015 diag::err_invalid_conversion_between_vector_and_scalar)
3016 << DestTy << SrcTy << R;
Nate Begeman58d29a42009-06-26 00:50:28 +00003017 return false;
3018}
3019
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003020Action::OwningExprResult
3021Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
3022 SourceLocation RParenLoc, ExprArg Op) {
3023 assert((Ty != 0) && (Op.get() != 0) &&
3024 "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +00003025
Anders Carlssonf1b1d592009-05-01 19:30:39 +00003026 Expr *castExpr = Op.takeAs<Expr>();
Steve Naroff16beff82007-07-16 23:25:18 +00003027 QualType castType = QualType::getFromOpaquePtr(Ty);
3028
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003029 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003030 return ExprError();
Steve Naroff6ece14c2009-01-21 00:14:39 +00003031 return Owned(new (Context) CStyleCastExpr(castType, castExpr, castType,
Mike Stumpeed9cac2009-02-19 03:04:26 +00003032 LParenLoc, RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00003033}
3034
Sebastian Redl28507842009-02-26 14:39:58 +00003035/// Note that lhs is not null here, even if this is the gnu "x ?: y" extension.
3036/// In that case, lhs = cond.
Chris Lattnera119a3b2009-02-18 04:38:20 +00003037/// C99 6.5.15
3038QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
3039 SourceLocation QuestionLoc) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003040 // C++ is sufficiently different to merit its own checker.
3041 if (getLangOptions().CPlusPlus)
3042 return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc);
3043
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003044 UsualUnaryConversions(Cond);
3045 UsualUnaryConversions(LHS);
3046 UsualUnaryConversions(RHS);
3047 QualType CondTy = Cond->getType();
3048 QualType LHSTy = LHS->getType();
3049 QualType RHSTy = RHS->getType();
Steve Naroffc80b4ee2007-07-16 21:54:35 +00003050
Reid Spencer5f016e22007-07-11 17:01:13 +00003051 // first, check the condition.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003052 if (!CondTy->isScalarType()) { // C99 6.5.15p2
3053 Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar)
3054 << CondTy;
3055 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003056 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003057
Chris Lattner70d67a92008-01-06 22:42:25 +00003058 // Now check the two expressions.
Douglas Gregor898574e2008-12-05 23:32:09 +00003059
Chris Lattner70d67a92008-01-06 22:42:25 +00003060 // If both operands have arithmetic type, do the usual arithmetic conversions
3061 // to find a common type: C99 6.5.15p3,5.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003062 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
3063 UsualArithmeticConversions(LHS, RHS);
3064 return LHS->getType();
Steve Naroffa4332e22007-07-17 00:58:39 +00003065 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003066
Chris Lattner70d67a92008-01-06 22:42:25 +00003067 // If both operands are the same structure or union type, the result is that
3068 // type.
Ted Kremenek35366a62009-07-17 17:50:17 +00003069 if (const RecordType *LHSRT = LHSTy->getAsRecordType()) { // C99 6.5.15p3
3070 if (const RecordType *RHSRT = RHSTy->getAsRecordType())
Chris Lattnera21ddb32007-11-26 01:40:58 +00003071 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stumpeed9cac2009-02-19 03:04:26 +00003072 // "If both the operands have structure or union type, the result has
Chris Lattner70d67a92008-01-06 22:42:25 +00003073 // that type." This implies that CV qualifiers are dropped.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003074 return LHSTy.getUnqualifiedType();
Eli Friedmanb1d796d2009-03-23 00:24:07 +00003075 // FIXME: Type of conditional expression must be complete in C mode.
Reid Spencer5f016e22007-07-11 17:01:13 +00003076 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003077
Chris Lattner70d67a92008-01-06 22:42:25 +00003078 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffe701c0a2008-05-12 21:44:38 +00003079 // The following || allows only one side to be void (a GCC-ism).
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003080 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
3081 if (!LHSTy->isVoidType())
3082 Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3083 << RHS->getSourceRange();
3084 if (!RHSTy->isVoidType())
3085 Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3086 << LHS->getSourceRange();
3087 ImpCastExprToType(LHS, Context.VoidTy);
3088 ImpCastExprToType(RHS, Context.VoidTy);
Eli Friedman0e724012008-06-04 19:47:51 +00003089 return Context.VoidTy;
Steve Naroffe701c0a2008-05-12 21:44:38 +00003090 }
Steve Naroffb6d54e52008-01-08 01:11:38 +00003091 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
3092 // the type of the other operand."
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003093 if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) &&
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003094 RHS->isNullPointerConstant(Context)) {
3095 ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer.
3096 return LHSTy;
Steve Naroffb6d54e52008-01-08 01:11:38 +00003097 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003098 if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) &&
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003099 LHS->isNullPointerConstant(Context)) {
3100 ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer.
3101 return RHSTy;
Steve Naroffb6d54e52008-01-08 01:11:38 +00003102 }
Steve Naroff7154a772009-07-01 14:36:47 +00003103 // Handle block pointer types.
3104 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) {
3105 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
3106 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
3107 QualType destType = Context.getPointerType(Context.VoidTy);
3108 ImpCastExprToType(LHS, destType);
3109 ImpCastExprToType(RHS, destType);
3110 return destType;
3111 }
3112 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3113 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3114 return QualType();
Mike Stumpdd3e1662009-05-07 03:14:14 +00003115 }
Steve Naroff7154a772009-07-01 14:36:47 +00003116 // We have 2 block pointer types.
3117 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3118 // Two identical block pointer types are always compatible.
Mike Stumpdd3e1662009-05-07 03:14:14 +00003119 return LHSTy;
3120 }
Steve Naroff7154a772009-07-01 14:36:47 +00003121 // The block pointer types aren't identical, continue checking.
Ted Kremenek35366a62009-07-17 17:50:17 +00003122 QualType lhptee = LHSTy->getAsBlockPointerType()->getPointeeType();
3123 QualType rhptee = RHSTy->getAsBlockPointerType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003124
Steve Naroff7154a772009-07-01 14:36:47 +00003125 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3126 rhptee.getUnqualifiedType())) {
Mike Stumpdd3e1662009-05-07 03:14:14 +00003127 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3128 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3129 // In this situation, we assume void* type. No especially good
3130 // reason, but this is what gcc does, and we do have to pick
3131 // to get a consistent AST.
3132 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3133 ImpCastExprToType(LHS, incompatTy);
3134 ImpCastExprToType(RHS, incompatTy);
3135 return incompatTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00003136 }
Steve Naroff7154a772009-07-01 14:36:47 +00003137 // The block pointer types are compatible.
3138 ImpCastExprToType(LHS, LHSTy);
3139 ImpCastExprToType(RHS, LHSTy);
Steve Naroff91588042009-04-08 17:05:15 +00003140 return LHSTy;
3141 }
Steve Naroff7154a772009-07-01 14:36:47 +00003142 // Check constraints for Objective-C object pointers types.
Steve Naroff14108da2009-07-10 23:34:53 +00003143 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
Steve Naroff7154a772009-07-01 14:36:47 +00003144
3145 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3146 // Two identical object pointer types are always compatible.
3147 return LHSTy;
3148 }
Steve Naroff14108da2009-07-10 23:34:53 +00003149 const ObjCObjectPointerType *LHSOPT = LHSTy->getAsObjCObjectPointerType();
3150 const ObjCObjectPointerType *RHSOPT = RHSTy->getAsObjCObjectPointerType();
Steve Naroff7154a772009-07-01 14:36:47 +00003151 QualType compositeType = LHSTy;
3152
3153 // If both operands are interfaces and either operand can be
3154 // assigned to the other, use that type as the composite
3155 // type. This allows
3156 // xxx ? (A*) a : (B*) b
3157 // where B is a subclass of A.
3158 //
3159 // Additionally, as for assignment, if either type is 'id'
3160 // allow silent coercion. Finally, if the types are
3161 // incompatible then make sure to use 'id' as the composite
3162 // type so the result is acceptable for sending messages to.
3163
3164 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
3165 // It could return the composite type.
Steve Naroff14108da2009-07-10 23:34:53 +00003166 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
Steve Naroff7154a772009-07-01 14:36:47 +00003167 compositeType = LHSTy;
Steve Naroff14108da2009-07-10 23:34:53 +00003168 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
Steve Naroff7154a772009-07-01 14:36:47 +00003169 compositeType = RHSTy;
Steve Naroff14108da2009-07-10 23:34:53 +00003170 } else if ((LHSTy->isObjCQualifiedIdType() ||
3171 RHSTy->isObjCQualifiedIdType()) &&
3172 ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
3173 // Need to handle "id<xx>" explicitly.
3174 // GCC allows qualified id and any Objective-C type to devolve to
3175 // id. Currently localizing to here until clear this should be
3176 // part of ObjCQualifiedIdTypesAreCompatible.
3177 compositeType = Context.getObjCIdType();
3178 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
Steve Naroff7154a772009-07-01 14:36:47 +00003179 compositeType = Context.getObjCIdType();
3180 } else {
3181 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
3182 << LHSTy << RHSTy
3183 << LHS->getSourceRange() << RHS->getSourceRange();
3184 QualType incompatTy = Context.getObjCIdType();
3185 ImpCastExprToType(LHS, incompatTy);
3186 ImpCastExprToType(RHS, incompatTy);
3187 return incompatTy;
3188 }
3189 // The object pointer types are compatible.
3190 ImpCastExprToType(LHS, compositeType);
3191 ImpCastExprToType(RHS, compositeType);
3192 return compositeType;
3193 }
3194 // Check constraints for C object pointers types (C99 6.5.15p3,6).
3195 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
3196 // get the "pointed to" types
Ted Kremenek35366a62009-07-17 17:50:17 +00003197 QualType lhptee = LHSTy->getAsPointerType()->getPointeeType();
3198 QualType rhptee = RHSTy->getAsPointerType()->getPointeeType();
Steve Naroff7154a772009-07-01 14:36:47 +00003199
3200 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
3201 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
3202 // Figure out necessary qualifiers (C99 6.5.15p6)
3203 QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers());
3204 QualType destType = Context.getPointerType(destPointee);
3205 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3206 ImpCastExprToType(RHS, destType); // promote to void*
3207 return destType;
3208 }
3209 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
3210 QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers());
3211 QualType destType = Context.getPointerType(destPointee);
3212 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3213 ImpCastExprToType(RHS, destType); // promote to void*
3214 return destType;
3215 }
3216
3217 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3218 // Two identical pointer types are always compatible.
3219 return LHSTy;
3220 }
3221 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3222 rhptee.getUnqualifiedType())) {
3223 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3224 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3225 // In this situation, we assume void* type. No especially good
3226 // reason, but this is what gcc does, and we do have to pick
3227 // to get a consistent AST.
3228 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3229 ImpCastExprToType(LHS, incompatTy);
3230 ImpCastExprToType(RHS, incompatTy);
3231 return incompatTy;
3232 }
3233 // The pointer types are compatible.
3234 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
3235 // differently qualified versions of compatible types, the result type is
3236 // a pointer to an appropriately qualified version of the *composite*
3237 // type.
3238 // FIXME: Need to calculate the composite type.
3239 // FIXME: Need to add qualifiers
3240 ImpCastExprToType(LHS, LHSTy);
3241 ImpCastExprToType(RHS, LHSTy);
3242 return LHSTy;
3243 }
3244
3245 // GCC compatibility: soften pointer/integer mismatch.
3246 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) {
3247 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3248 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3249 ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer.
3250 return RHSTy;
3251 }
3252 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) {
3253 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3254 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3255 ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer.
3256 return LHSTy;
3257 }
Daniel Dunbar5e155f02008-09-11 23:12:46 +00003258
Chris Lattner70d67a92008-01-06 22:42:25 +00003259 // Otherwise, the operands are not compatible.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003260 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3261 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00003262 return QualType();
3263}
3264
Steve Narofff69936d2007-09-16 03:34:24 +00003265/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +00003266/// in the case of a the GNU conditional expr extension.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003267Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
3268 SourceLocation ColonLoc,
3269 ExprArg Cond, ExprArg LHS,
3270 ExprArg RHS) {
3271 Expr *CondExpr = (Expr *) Cond.get();
3272 Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get();
Chris Lattnera21ddb32007-11-26 01:40:58 +00003273
3274 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
3275 // was the condition.
3276 bool isLHSNull = LHSExpr == 0;
3277 if (isLHSNull)
3278 LHSExpr = CondExpr;
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003279
3280 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
Chris Lattner26824902007-07-16 21:39:03 +00003281 RHSExpr, QuestionLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00003282 if (result.isNull())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003283 return ExprError();
3284
3285 Cond.release();
3286 LHS.release();
3287 RHS.release();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003288 return Owned(new (Context) ConditionalOperator(CondExpr,
Steve Naroff6ece14c2009-01-21 00:14:39 +00003289 isLHSNull ? 0 : LHSExpr,
3290 RHSExpr, result));
Reid Spencer5f016e22007-07-11 17:01:13 +00003291}
3292
Reid Spencer5f016e22007-07-11 17:01:13 +00003293// CheckPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stumpeed9cac2009-02-19 03:04:26 +00003294// being closely modeled after the C99 spec:-). The odd characteristic of this
Reid Spencer5f016e22007-07-11 17:01:13 +00003295// routine is it effectively iqnores the qualifiers on the top level pointee.
3296// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
3297// FIXME: add a couple examples in this comment.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003298Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00003299Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
3300 QualType lhptee, rhptee;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003301
Reid Spencer5f016e22007-07-11 17:01:13 +00003302 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenek35366a62009-07-17 17:50:17 +00003303 lhptee = lhsType->getAsPointerType()->getPointeeType();
3304 rhptee = rhsType->getAsPointerType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003305
Reid Spencer5f016e22007-07-11 17:01:13 +00003306 // make sure we operate on the canonical type
Chris Lattnerb77792e2008-07-26 22:17:49 +00003307 lhptee = Context.getCanonicalType(lhptee);
3308 rhptee = Context.getCanonicalType(rhptee);
Reid Spencer5f016e22007-07-11 17:01:13 +00003309
Chris Lattner5cf216b2008-01-04 18:04:52 +00003310 AssignConvertType ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003311
3312 // C99 6.5.16.1p1: This following citation is common to constraints
3313 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
3314 // qualifiers of the type *pointed to* by the right;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00003315 // FIXME: Handle ExtQualType
Douglas Gregor98cd5992008-10-21 23:43:52 +00003316 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
Chris Lattner5cf216b2008-01-04 18:04:52 +00003317 ConvTy = CompatiblePointerDiscardsQualifiers;
Reid Spencer5f016e22007-07-11 17:01:13 +00003318
Mike Stumpeed9cac2009-02-19 03:04:26 +00003319 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
3320 // incomplete type and the other is a pointer to a qualified or unqualified
Reid Spencer5f016e22007-07-11 17:01:13 +00003321 // version of void...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003322 if (lhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00003323 if (rhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00003324 return ConvTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003325
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003326 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00003327 assert(rhptee->isFunctionType());
3328 return FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003329 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003330
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003331 if (rhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00003332 if (lhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00003333 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003334
3335 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00003336 assert(lhptee->isFunctionType());
3337 return FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003338 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003339 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Reid Spencer5f016e22007-07-11 17:01:13 +00003340 // unqualified versions of compatible types, ...
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003341 lhptee = lhptee.getUnqualifiedType();
3342 rhptee = rhptee.getUnqualifiedType();
3343 if (!Context.typesAreCompatible(lhptee, rhptee)) {
3344 // Check if the pointee types are compatible ignoring the sign.
3345 // We explicitly check for char so that we catch "char" vs
3346 // "unsigned char" on systems where "char" is unsigned.
3347 if (lhptee->isCharType()) {
3348 lhptee = Context.UnsignedCharTy;
3349 } else if (lhptee->isSignedIntegerType()) {
3350 lhptee = Context.getCorrespondingUnsignedType(lhptee);
3351 }
3352 if (rhptee->isCharType()) {
3353 rhptee = Context.UnsignedCharTy;
3354 } else if (rhptee->isSignedIntegerType()) {
3355 rhptee = Context.getCorrespondingUnsignedType(rhptee);
3356 }
3357 if (lhptee == rhptee) {
3358 // Types are compatible ignoring the sign. Qualifier incompatibility
3359 // takes priority over sign incompatibility because the sign
3360 // warning can be disabled.
3361 if (ConvTy != Compatible)
3362 return ConvTy;
3363 return IncompatiblePointerSign;
3364 }
3365 // General pointer incompatibility takes priority over qualifiers.
3366 return IncompatiblePointer;
3367 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00003368 return ConvTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00003369}
3370
Steve Naroff1c7d0672008-09-04 15:10:53 +00003371/// CheckBlockPointerTypesForAssignment - This routine determines whether two
3372/// block pointer types are compatible or whether a block and normal pointer
3373/// are compatible. It is more restrict than comparing two function pointer
3374// types.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003375Sema::AssignConvertType
3376Sema::CheckBlockPointerTypesForAssignment(QualType lhsType,
Steve Naroff1c7d0672008-09-04 15:10:53 +00003377 QualType rhsType) {
3378 QualType lhptee, rhptee;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003379
Steve Naroff1c7d0672008-09-04 15:10:53 +00003380 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenek35366a62009-07-17 17:50:17 +00003381 lhptee = lhsType->getAsBlockPointerType()->getPointeeType();
3382 rhptee = rhsType->getAsBlockPointerType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003383
Steve Naroff1c7d0672008-09-04 15:10:53 +00003384 // make sure we operate on the canonical type
3385 lhptee = Context.getCanonicalType(lhptee);
3386 rhptee = Context.getCanonicalType(rhptee);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003387
Steve Naroff1c7d0672008-09-04 15:10:53 +00003388 AssignConvertType ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003389
Steve Naroff1c7d0672008-09-04 15:10:53 +00003390 // For blocks we enforce that qualifiers are identical.
3391 if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers())
3392 ConvTy = CompatiblePointerDiscardsQualifiers;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003393
Eli Friedman26784c12009-06-08 05:08:54 +00003394 if (!Context.typesAreCompatible(lhptee, rhptee))
Mike Stumpeed9cac2009-02-19 03:04:26 +00003395 return IncompatibleBlockPointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00003396 return ConvTy;
3397}
3398
Mike Stumpeed9cac2009-02-19 03:04:26 +00003399/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
3400/// has code to accommodate several GCC extensions when type checking
Reid Spencer5f016e22007-07-11 17:01:13 +00003401/// pointers. Here are some objectionable examples that GCC considers warnings:
3402///
3403/// int a, *pint;
3404/// short *pshort;
3405/// struct foo *pfoo;
3406///
3407/// pint = pshort; // warning: assignment from incompatible pointer type
3408/// a = pint; // warning: assignment makes integer from pointer without a cast
3409/// pint = a; // warning: assignment makes pointer from integer without a cast
3410/// pint = pfoo; // warning: assignment from incompatible pointer type
3411///
3412/// As a result, the code for dealing with pointers is more complex than the
Mike Stumpeed9cac2009-02-19 03:04:26 +00003413/// C99 spec dictates.
Reid Spencer5f016e22007-07-11 17:01:13 +00003414///
Chris Lattner5cf216b2008-01-04 18:04:52 +00003415Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00003416Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattnerfc144e22008-01-04 23:18:45 +00003417 // Get canonical types. We're not formatting these types, just comparing
3418 // them.
Chris Lattnerb77792e2008-07-26 22:17:49 +00003419 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
3420 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003421
3422 if (lhsType == rhsType)
Chris Lattnerd2656dd2008-01-07 17:51:46 +00003423 return Compatible; // Common case: fast path an exact match.
Steve Naroff700204c2007-07-24 21:46:40 +00003424
Douglas Gregor9d293df2008-10-28 00:22:11 +00003425 // If the left-hand side is a reference type, then we are in a
3426 // (rare!) case where we've allowed the use of references in C,
3427 // e.g., as a parameter type in a built-in function. In this case,
3428 // just make sure that the type referenced is compatible with the
3429 // right-hand side type. The caller is responsible for adjusting
3430 // lhsType so that the resulting expression does not have reference
3431 // type.
Ted Kremenek35366a62009-07-17 17:50:17 +00003432 if (const ReferenceType *lhsTypeRef = lhsType->getAsReferenceType()) {
Douglas Gregor9d293df2008-10-28 00:22:11 +00003433 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType))
Anders Carlsson793680e2007-10-12 23:56:29 +00003434 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003435 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00003436 }
Steve Naroff14108da2009-07-10 23:34:53 +00003437 // FIXME: Look into removing. With ObjCObjectPointerType, I don't see a need.
Chris Lattnereca7be62008-04-07 05:30:13 +00003438 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) {
3439 if (ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType, false))
Fariborz Jahanian411f3732007-12-19 17:45:58 +00003440 return Compatible;
Steve Naroff20373222008-06-03 14:04:54 +00003441 // Relax integer conversions like we do for pointers below.
3442 if (rhsType->isIntegerType())
3443 return IntToPointer;
3444 if (lhsType->isIntegerType())
3445 return PointerToInt;
Steve Naroff39579072008-10-14 22:18:38 +00003446 return IncompatibleObjCQualifiedId;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00003447 }
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003448 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
3449 // to the same ExtVector type.
3450 if (lhsType->isExtVectorType()) {
3451 if (rhsType->isExtVectorType())
3452 return lhsType == rhsType ? Compatible : Incompatible;
3453 if (!rhsType->isVectorType() && rhsType->isArithmeticType())
3454 return Compatible;
3455 }
3456
Nate Begemanbe2341d2008-07-14 18:02:46 +00003457 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003458 // If we are allowing lax vector conversions, and LHS and RHS are both
Mike Stumpeed9cac2009-02-19 03:04:26 +00003459 // vectors, the total size only needs to be the same. This is a bitcast;
Nate Begemanbe2341d2008-07-14 18:02:46 +00003460 // no bits are changed but the result type is different.
Chris Lattnere8b3e962008-01-04 23:32:24 +00003461 if (getLangOptions().LaxVectorConversions &&
3462 lhsType->isVectorType() && rhsType->isVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003463 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00003464 return IncompatibleVectors;
Chris Lattnere8b3e962008-01-04 23:32:24 +00003465 }
3466 return Incompatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003467 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003468
Chris Lattnere8b3e962008-01-04 23:32:24 +00003469 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Reid Spencer5f016e22007-07-11 17:01:13 +00003470 return Compatible;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003471
Chris Lattner78eca282008-04-07 06:49:41 +00003472 if (isa<PointerType>(lhsType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003473 if (rhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00003474 return IntToPointer;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003475
Chris Lattner78eca282008-04-07 06:49:41 +00003476 if (isa<PointerType>(rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003477 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003478
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003479 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff14108da2009-07-10 23:34:53 +00003480 if (isa<ObjCObjectPointerType>(rhsType)) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003481 if (lhsType->isVoidPointerType()) // an exception to the rule.
3482 return Compatible;
3483 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003484 }
Ted Kremenek35366a62009-07-17 17:50:17 +00003485 if (rhsType->getAsBlockPointerType()) {
3486 if (lhsType->getAsPointerType()->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003487 return Compatible;
Steve Naroffb4406862008-09-29 18:10:17 +00003488
3489 // Treat block pointers as objects.
Steve Naroff14108da2009-07-10 23:34:53 +00003490 if (getLangOptions().ObjC1 && lhsType->isObjCIdType())
Steve Naroffb4406862008-09-29 18:10:17 +00003491 return Compatible;
3492 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00003493 return Incompatible;
3494 }
3495
3496 if (isa<BlockPointerType>(lhsType)) {
3497 if (rhsType->isIntegerType())
Eli Friedmand8f4f432009-02-25 04:20:42 +00003498 return IntToBlockPointer;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003499
Steve Naroffb4406862008-09-29 18:10:17 +00003500 // Treat block pointers as objects.
Steve Naroff14108da2009-07-10 23:34:53 +00003501 if (getLangOptions().ObjC1 && rhsType->isObjCIdType())
Steve Naroffb4406862008-09-29 18:10:17 +00003502 return Compatible;
3503
Steve Naroff1c7d0672008-09-04 15:10:53 +00003504 if (rhsType->isBlockPointerType())
3505 return CheckBlockPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003506
Ted Kremenek35366a62009-07-17 17:50:17 +00003507 if (const PointerType *RHSPT = rhsType->getAsPointerType()) {
Steve Naroff1c7d0672008-09-04 15:10:53 +00003508 if (RHSPT->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003509 return Compatible;
Steve Naroff1c7d0672008-09-04 15:10:53 +00003510 }
Chris Lattnerfc144e22008-01-04 23:18:45 +00003511 return Incompatible;
3512 }
3513
Steve Naroff14108da2009-07-10 23:34:53 +00003514 if (isa<ObjCObjectPointerType>(lhsType)) {
3515 if (rhsType->isIntegerType())
3516 return IntToPointer;
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003517
3518 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff14108da2009-07-10 23:34:53 +00003519 if (isa<PointerType>(rhsType)) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003520 if (rhsType->isVoidPointerType()) // an exception to the rule.
3521 return Compatible;
3522 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003523 }
3524 if (rhsType->isObjCObjectPointerType()) {
Steve Naroffde2e22d2009-07-15 18:40:39 +00003525 if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType())
3526 return Compatible;
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003527 if (Context.typesAreCompatible(lhsType, rhsType))
3528 return Compatible;
3529 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003530 }
Ted Kremenek35366a62009-07-17 17:50:17 +00003531 if (const PointerType *RHSPT = rhsType->getAsPointerType()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003532 if (RHSPT->getPointeeType()->isVoidType())
3533 return Compatible;
3534 }
3535 // Treat block pointers as objects.
3536 if (rhsType->isBlockPointerType())
3537 return Compatible;
3538 return Incompatible;
3539 }
Chris Lattner78eca282008-04-07 06:49:41 +00003540 if (isa<PointerType>(rhsType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003541 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003542 if (lhsType == Context.BoolTy)
3543 return Compatible;
3544
3545 if (lhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00003546 return PointerToInt;
Reid Spencer5f016e22007-07-11 17:01:13 +00003547
Mike Stumpeed9cac2009-02-19 03:04:26 +00003548 if (isa<PointerType>(lhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003549 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003550
3551 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenek35366a62009-07-17 17:50:17 +00003552 rhsType->getAsPointerType()->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003553 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003554 return Incompatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003555 }
Steve Naroff14108da2009-07-10 23:34:53 +00003556 if (isa<ObjCObjectPointerType>(rhsType)) {
3557 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
3558 if (lhsType == Context.BoolTy)
3559 return Compatible;
3560
3561 if (lhsType->isIntegerType())
3562 return PointerToInt;
3563
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003564 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff14108da2009-07-10 23:34:53 +00003565 if (isa<PointerType>(lhsType)) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003566 if (lhsType->isVoidPointerType()) // an exception to the rule.
3567 return Compatible;
3568 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003569 }
3570 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenek35366a62009-07-17 17:50:17 +00003571 rhsType->getAsPointerType()->getPointeeType()->isVoidType())
Steve Naroff14108da2009-07-10 23:34:53 +00003572 return Compatible;
3573 return Incompatible;
3574 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003575
Chris Lattnerfc144e22008-01-04 23:18:45 +00003576 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Chris Lattner78eca282008-04-07 06:49:41 +00003577 if (Context.typesAreCompatible(lhsType, rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003578 return Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00003579 }
3580 return Incompatible;
3581}
3582
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003583/// \brief Constructs a transparent union from an expression that is
3584/// used to initialize the transparent union.
3585static void ConstructTransparentUnion(ASTContext &C, Expr *&E,
3586 QualType UnionType, FieldDecl *Field) {
3587 // Build an initializer list that designates the appropriate member
3588 // of the transparent union.
3589 InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(),
3590 &E, 1,
3591 SourceLocation());
3592 Initializer->setType(UnionType);
3593 Initializer->setInitializedFieldInUnion(Field);
3594
3595 // Build a compound literal constructing a value of the transparent
3596 // union type from this initializer list.
3597 E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer,
3598 false);
3599}
3600
3601Sema::AssignConvertType
3602Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) {
3603 QualType FromType = rExpr->getType();
3604
3605 // If the ArgType is a Union type, we want to handle a potential
3606 // transparent_union GCC extension.
3607 const RecordType *UT = ArgType->getAsUnionType();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00003608 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003609 return Incompatible;
3610
3611 // The field to initialize within the transparent union.
3612 RecordDecl *UD = UT->getDecl();
3613 FieldDecl *InitField = 0;
3614 // It's compatible if the expression matches any of the fields.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003615 for (RecordDecl::field_iterator it = UD->field_begin(),
3616 itend = UD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003617 it != itend; ++it) {
3618 if (it->getType()->isPointerType()) {
3619 // If the transparent union contains a pointer type, we allow:
3620 // 1) void pointer
3621 // 2) null pointer constant
3622 if (FromType->isPointerType())
Ted Kremenek35366a62009-07-17 17:50:17 +00003623 if (FromType->getAsPointerType()->getPointeeType()->isVoidType()) {
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003624 ImpCastExprToType(rExpr, it->getType());
3625 InitField = *it;
3626 break;
3627 }
3628
3629 if (rExpr->isNullPointerConstant(Context)) {
3630 ImpCastExprToType(rExpr, it->getType());
3631 InitField = *it;
3632 break;
3633 }
3634 }
3635
3636 if (CheckAssignmentConstraints(it->getType(), rExpr->getType())
3637 == Compatible) {
3638 InitField = *it;
3639 break;
3640 }
3641 }
3642
3643 if (!InitField)
3644 return Incompatible;
3645
3646 ConstructTransparentUnion(Context, rExpr, ArgType, InitField);
3647 return Compatible;
3648}
3649
Chris Lattner5cf216b2008-01-04 18:04:52 +00003650Sema::AssignConvertType
Steve Naroff90045e82007-07-13 23:32:42 +00003651Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Douglas Gregor98cd5992008-10-21 23:43:52 +00003652 if (getLangOptions().CPlusPlus) {
3653 if (!lhsType->isRecordType()) {
3654 // C++ 5.17p3: If the left operand is not of class type, the
3655 // expression is implicitly converted (C++ 4) to the
3656 // cv-unqualified type of the left operand.
Douglas Gregor45920e82008-12-19 17:40:08 +00003657 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(),
3658 "assigning"))
Douglas Gregor98cd5992008-10-21 23:43:52 +00003659 return Incompatible;
Chris Lattner2c4463f2009-04-12 09:02:39 +00003660 return Compatible;
Douglas Gregor98cd5992008-10-21 23:43:52 +00003661 }
3662
3663 // FIXME: Currently, we fall through and treat C++ classes like C
3664 // structures.
3665 }
3666
Steve Naroff529a4ad2007-11-27 17:58:44 +00003667 // C99 6.5.16.1p1: the left operand is a pointer and the right is
3668 // a null pointer constant.
Steve Narofff7f52e72009-02-21 21:17:01 +00003669 if ((lhsType->isPointerType() ||
Steve Naroff14108da2009-07-10 23:34:53 +00003670 lhsType->isObjCObjectPointerType() ||
Mike Stumpeed9cac2009-02-19 03:04:26 +00003671 lhsType->isBlockPointerType())
Fariborz Jahanian9d3185e2008-01-03 18:46:52 +00003672 && rExpr->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00003673 ImpCastExprToType(rExpr, lhsType);
Steve Naroff529a4ad2007-11-27 17:58:44 +00003674 return Compatible;
3675 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003676
Chris Lattner943140e2007-10-16 02:55:40 +00003677 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00003678 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff08d92e42007-09-15 18:49:24 +00003679 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Steve Naroff90045e82007-07-13 23:32:42 +00003680 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00003681 //
Mike Stumpeed9cac2009-02-19 03:04:26 +00003682 // Suppress this for references: C++ 8.5.3p5.
Chris Lattner943140e2007-10-16 02:55:40 +00003683 if (!lhsType->isReferenceType())
3684 DefaultFunctionArrayConversion(rExpr);
Steve Narofff1120de2007-08-24 22:33:52 +00003685
Chris Lattner5cf216b2008-01-04 18:04:52 +00003686 Sema::AssignConvertType result =
3687 CheckAssignmentConstraints(lhsType, rExpr->getType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00003688
Steve Narofff1120de2007-08-24 22:33:52 +00003689 // C99 6.5.16.1p2: The value of the right operand is converted to the
3690 // type of the assignment expression.
Douglas Gregor9d293df2008-10-28 00:22:11 +00003691 // CheckAssignmentConstraints allows the left-hand side to be a reference,
3692 // so that we can use references in built-in functions even in C.
3693 // The getNonReferenceType() call makes sure that the resulting expression
3694 // does not have reference type.
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003695 if (result != Incompatible && rExpr->getType() != lhsType)
Douglas Gregor9d293df2008-10-28 00:22:11 +00003696 ImpCastExprToType(rExpr, lhsType.getNonReferenceType());
Steve Narofff1120de2007-08-24 22:33:52 +00003697 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00003698}
3699
Chris Lattner29a1cfb2008-11-18 01:30:42 +00003700QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00003701 Diag(Loc, diag::err_typecheck_invalid_operands)
Chris Lattner22caddc2008-11-23 09:13:29 +00003702 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00003703 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerca5eede2007-12-12 05:47:28 +00003704 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003705}
3706
Mike Stumpeed9cac2009-02-19 03:04:26 +00003707inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex,
Steve Naroff49b45262007-07-13 16:58:59 +00003708 Expr *&rex) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00003709 // For conversion purposes, we ignore any qualifiers.
Nate Begeman1330b0e2008-04-04 01:30:25 +00003710 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +00003711 QualType lhsType =
3712 Context.getCanonicalType(lex->getType()).getUnqualifiedType();
3713 QualType rhsType =
3714 Context.getCanonicalType(rex->getType()).getUnqualifiedType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003715
Nate Begemanbe2341d2008-07-14 18:02:46 +00003716 // If the vector types are identical, return.
Nate Begeman1330b0e2008-04-04 01:30:25 +00003717 if (lhsType == rhsType)
Reid Spencer5f016e22007-07-11 17:01:13 +00003718 return lhsType;
Nate Begeman4119d1a2007-12-30 02:59:45 +00003719
Nate Begemanbe2341d2008-07-14 18:02:46 +00003720 // Handle the case of a vector & extvector type of the same size and element
3721 // type. It would be nice if we only had one vector type someday.
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00003722 if (getLangOptions().LaxVectorConversions) {
3723 // FIXME: Should we warn here?
3724 if (const VectorType *LV = lhsType->getAsVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003725 if (const VectorType *RV = rhsType->getAsVectorType())
3726 if (LV->getElementType() == RV->getElementType() &&
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00003727 LV->getNumElements() == RV->getNumElements()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003728 return lhsType->isExtVectorType() ? lhsType : rhsType;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00003729 }
3730 }
3731 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003732
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003733 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can
3734 // swap back (so that we don't reverse the inputs to a subtract, for instance.
3735 bool swapped = false;
3736 if (rhsType->isExtVectorType()) {
3737 swapped = true;
3738 std::swap(rex, lex);
3739 std::swap(rhsType, lhsType);
3740 }
3741
Nate Begemandde25982009-06-28 19:12:57 +00003742 // Handle the case of an ext vector and scalar.
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003743 if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) {
3744 QualType EltTy = LV->getElementType();
3745 if (EltTy->isIntegralType() && rhsType->isIntegralType()) {
3746 if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) {
Nate Begemandde25982009-06-28 19:12:57 +00003747 ImpCastExprToType(rex, lhsType);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003748 if (swapped) std::swap(rex, lex);
3749 return lhsType;
3750 }
3751 }
3752 if (EltTy->isRealFloatingType() && rhsType->isScalarType() &&
3753 rhsType->isRealFloatingType()) {
3754 if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) {
Nate Begemandde25982009-06-28 19:12:57 +00003755 ImpCastExprToType(rex, lhsType);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003756 if (swapped) std::swap(rex, lex);
3757 return lhsType;
3758 }
Nate Begeman4119d1a2007-12-30 02:59:45 +00003759 }
3760 }
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003761
Nate Begemandde25982009-06-28 19:12:57 +00003762 // Vectors of different size or scalar and non-ext-vector are errors.
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00003763 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Chris Lattnerd1625842008-11-24 06:25:27 +00003764 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00003765 << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00003766 return QualType();
Sebastian Redl22460502009-02-07 00:15:38 +00003767}
3768
Reid Spencer5f016e22007-07-11 17:01:13 +00003769inline QualType Sema::CheckMultiplyDivideOperands(
Mike Stumpeed9cac2009-02-19 03:04:26 +00003770 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00003771{
Daniel Dunbar69d1d002009-01-05 22:42:10 +00003772 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00003773 return CheckVectorOperands(Loc, lex, rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003774
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00003775 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003776
Steve Naroffa4332e22007-07-17 00:58:39 +00003777 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00003778 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00003779 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00003780}
3781
3782inline QualType Sema::CheckRemainderOperands(
Mike Stumpeed9cac2009-02-19 03:04:26 +00003783 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00003784{
Daniel Dunbar523aa602009-01-05 22:55:36 +00003785 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3786 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
3787 return CheckVectorOperands(Loc, lex, rex);
3788 return InvalidOperands(Loc, lex, rex);
3789 }
Steve Naroff90045e82007-07-13 23:32:42 +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()->isIntegerType() && rex->getType()->isIntegerType())
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::CheckAdditionOperands( // C99 6.5.6
Eli Friedmanab3a8522009-03-28 01:22:36 +00003799 Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy)
Reid Spencer5f016e22007-07-11 17:01:13 +00003800{
Eli Friedmanab3a8522009-03-28 01:22:36 +00003801 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3802 QualType compType = CheckVectorOperands(Loc, lex, rex);
3803 if (CompLHSTy) *CompLHSTy = compType;
3804 return compType;
3805 }
Steve Naroff49b45262007-07-13 16:58:59 +00003806
Eli Friedmanab3a8522009-03-28 01:22:36 +00003807 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Eli Friedmand72d16e2008-05-18 18:08:51 +00003808
Reid Spencer5f016e22007-07-11 17:01:13 +00003809 // handle the common case first (both operands are arithmetic).
Eli Friedmanab3a8522009-03-28 01:22:36 +00003810 if (lex->getType()->isArithmeticType() &&
3811 rex->getType()->isArithmeticType()) {
3812 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00003813 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00003814 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003815
Eli Friedmand72d16e2008-05-18 18:08:51 +00003816 // Put any potential pointer into PExp
3817 Expr* PExp = lex, *IExp = rex;
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003818 if (IExp->getType()->isAnyPointerType())
Eli Friedmand72d16e2008-05-18 18:08:51 +00003819 std::swap(PExp, IExp);
3820
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003821 if (PExp->getType()->isAnyPointerType()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003822
Eli Friedmand72d16e2008-05-18 18:08:51 +00003823 if (IExp->getType()->isIntegerType()) {
Steve Naroff760e3c42009-07-13 21:20:41 +00003824 QualType PointeeTy = PExp->getType()->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00003825
Chris Lattnerb5f15622009-04-24 23:50:08 +00003826 // Check for arithmetic on pointers to incomplete types.
3827 if (PointeeTy->isVoidType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00003828 if (getLangOptions().CPlusPlus) {
3829 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003830 << lex->getSourceRange() << rex->getSourceRange();
Douglas Gregor4ec339f2009-01-19 19:26:10 +00003831 return QualType();
Eli Friedmand72d16e2008-05-18 18:08:51 +00003832 }
Douglas Gregore7450f52009-03-24 19:52:54 +00003833
3834 // GNU extension: arithmetic on pointer to void
3835 Diag(Loc, diag::ext_gnu_void_ptr)
3836 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerb5f15622009-04-24 23:50:08 +00003837 } else if (PointeeTy->isFunctionType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00003838 if (getLangOptions().CPlusPlus) {
3839 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
3840 << lex->getType() << lex->getSourceRange();
3841 return QualType();
3842 }
3843
3844 // GNU extension: arithmetic on pointer to function
3845 Diag(Loc, diag::ext_gnu_ptr_func_arith)
3846 << lex->getType() << lex->getSourceRange();
Steve Naroff9deaeca2009-07-13 21:32:29 +00003847 } else {
Steve Naroff760e3c42009-07-13 21:20:41 +00003848 // Check if we require a complete type.
3849 if (((PExp->getType()->isPointerType() &&
Steve Naroff9deaeca2009-07-13 21:32:29 +00003850 !PExp->getType()->isDependentType()) ||
Steve Naroff760e3c42009-07-13 21:20:41 +00003851 PExp->getType()->isObjCObjectPointerType()) &&
3852 RequireCompleteType(Loc, PointeeTy,
3853 diag::err_typecheck_arithmetic_incomplete_type,
3854 PExp->getSourceRange(), SourceRange(),
3855 PExp->getType()))
3856 return QualType();
3857 }
Chris Lattnerb5f15622009-04-24 23:50:08 +00003858 // Diagnose bad cases where we step over interface counts.
3859 if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
3860 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
3861 << PointeeTy << PExp->getSourceRange();
3862 return QualType();
3863 }
3864
Eli Friedmanab3a8522009-03-28 01:22:36 +00003865 if (CompLHSTy) {
3866 QualType LHSTy = lex->getType();
3867 if (LHSTy->isPromotableIntegerType())
3868 LHSTy = Context.IntTy;
Douglas Gregor2d833e32009-05-02 00:36:19 +00003869 else {
3870 QualType T = isPromotableBitField(lex, Context);
3871 if (!T.isNull())
3872 LHSTy = T;
3873 }
3874
Eli Friedmanab3a8522009-03-28 01:22:36 +00003875 *CompLHSTy = LHSTy;
3876 }
Eli Friedmand72d16e2008-05-18 18:08:51 +00003877 return PExp->getType();
3878 }
3879 }
3880
Chris Lattner29a1cfb2008-11-18 01:30:42 +00003881 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00003882}
3883
Chris Lattnereca7be62008-04-07 05:30:13 +00003884// C99 6.5.6
3885QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex,
Eli Friedmanab3a8522009-03-28 01:22:36 +00003886 SourceLocation Loc, QualType* CompLHSTy) {
3887 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3888 QualType compType = CheckVectorOperands(Loc, lex, rex);
3889 if (CompLHSTy) *CompLHSTy = compType;
3890 return compType;
3891 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003892
Eli Friedmanab3a8522009-03-28 01:22:36 +00003893 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003894
Chris Lattner6e4ab612007-12-09 21:53:25 +00003895 // Enforce type constraints: C99 6.5.6p3.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003896
Chris Lattner6e4ab612007-12-09 21:53:25 +00003897 // Handle the common case first (both operands are arithmetic).
Mike Stumpaf199f32009-05-07 18:43:07 +00003898 if (lex->getType()->isArithmeticType()
3899 && rex->getType()->isArithmeticType()) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00003900 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00003901 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00003902 }
Steve Naroff14108da2009-07-10 23:34:53 +00003903
Chris Lattner6e4ab612007-12-09 21:53:25 +00003904 // Either ptr - int or ptr - ptr.
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003905 if (lex->getType()->isAnyPointerType()) {
Steve Naroff430ee5a2009-07-13 17:19:15 +00003906 QualType lpointee = lex->getType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003907
Douglas Gregore7450f52009-03-24 19:52:54 +00003908 // The LHS must be an completely-defined object type.
Douglas Gregorc983b862009-01-23 00:36:41 +00003909
Douglas Gregore7450f52009-03-24 19:52:54 +00003910 bool ComplainAboutVoid = false;
3911 Expr *ComplainAboutFunc = 0;
3912 if (lpointee->isVoidType()) {
3913 if (getLangOptions().CPlusPlus) {
3914 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
3915 << lex->getSourceRange() << rex->getSourceRange();
3916 return QualType();
3917 }
3918
3919 // GNU C extension: arithmetic on pointer to void
3920 ComplainAboutVoid = true;
3921 } else if (lpointee->isFunctionType()) {
3922 if (getLangOptions().CPlusPlus) {
3923 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattnerd1625842008-11-24 06:25:27 +00003924 << lex->getType() << lex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00003925 return QualType();
3926 }
Douglas Gregore7450f52009-03-24 19:52:54 +00003927
3928 // GNU C extension: arithmetic on pointer to function
3929 ComplainAboutFunc = lex;
3930 } else if (!lpointee->isDependentType() &&
3931 RequireCompleteType(Loc, lpointee,
3932 diag::err_typecheck_sub_ptr_object,
3933 lex->getSourceRange(),
3934 SourceRange(),
3935 lex->getType()))
3936 return QualType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00003937
Chris Lattnerb5f15622009-04-24 23:50:08 +00003938 // Diagnose bad cases where we step over interface counts.
3939 if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
3940 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
3941 << lpointee << lex->getSourceRange();
3942 return QualType();
3943 }
3944
Chris Lattner6e4ab612007-12-09 21:53:25 +00003945 // The result type of a pointer-int computation is the pointer type.
Douglas Gregore7450f52009-03-24 19:52:54 +00003946 if (rex->getType()->isIntegerType()) {
3947 if (ComplainAboutVoid)
3948 Diag(Loc, diag::ext_gnu_void_ptr)
3949 << lex->getSourceRange() << rex->getSourceRange();
3950 if (ComplainAboutFunc)
3951 Diag(Loc, diag::ext_gnu_ptr_func_arith)
3952 << ComplainAboutFunc->getType()
3953 << ComplainAboutFunc->getSourceRange();
3954
Eli Friedmanab3a8522009-03-28 01:22:36 +00003955 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00003956 return lex->getType();
Douglas Gregore7450f52009-03-24 19:52:54 +00003957 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003958
Chris Lattner6e4ab612007-12-09 21:53:25 +00003959 // Handle pointer-pointer subtractions.
Ted Kremenek35366a62009-07-17 17:50:17 +00003960 if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +00003961 QualType rpointee = RHSPTy->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003962
Douglas Gregore7450f52009-03-24 19:52:54 +00003963 // RHS must be a completely-type object type.
3964 // Handle the GNU void* extension.
3965 if (rpointee->isVoidType()) {
3966 if (getLangOptions().CPlusPlus) {
3967 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
3968 << lex->getSourceRange() << rex->getSourceRange();
3969 return QualType();
3970 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003971
Douglas Gregore7450f52009-03-24 19:52:54 +00003972 ComplainAboutVoid = true;
3973 } else if (rpointee->isFunctionType()) {
3974 if (getLangOptions().CPlusPlus) {
3975 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattnerd1625842008-11-24 06:25:27 +00003976 << rex->getType() << rex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00003977 return QualType();
3978 }
Douglas Gregore7450f52009-03-24 19:52:54 +00003979
3980 // GNU extension: arithmetic on pointer to function
3981 if (!ComplainAboutFunc)
3982 ComplainAboutFunc = rex;
3983 } else if (!rpointee->isDependentType() &&
3984 RequireCompleteType(Loc, rpointee,
3985 diag::err_typecheck_sub_ptr_object,
3986 rex->getSourceRange(),
3987 SourceRange(),
3988 rex->getType()))
3989 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003990
Eli Friedman88d936b2009-05-16 13:54:38 +00003991 if (getLangOptions().CPlusPlus) {
3992 // Pointee types must be the same: C++ [expr.add]
3993 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
3994 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
3995 << lex->getType() << rex->getType()
3996 << lex->getSourceRange() << rex->getSourceRange();
3997 return QualType();
3998 }
3999 } else {
4000 // Pointee types must be compatible C99 6.5.6p3
4001 if (!Context.typesAreCompatible(
4002 Context.getCanonicalType(lpointee).getUnqualifiedType(),
4003 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
4004 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4005 << lex->getType() << rex->getType()
4006 << lex->getSourceRange() << rex->getSourceRange();
4007 return QualType();
4008 }
Chris Lattner6e4ab612007-12-09 21:53:25 +00004009 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004010
Douglas Gregore7450f52009-03-24 19:52:54 +00004011 if (ComplainAboutVoid)
4012 Diag(Loc, diag::ext_gnu_void_ptr)
4013 << lex->getSourceRange() << rex->getSourceRange();
4014 if (ComplainAboutFunc)
4015 Diag(Loc, diag::ext_gnu_ptr_func_arith)
4016 << ComplainAboutFunc->getType()
4017 << ComplainAboutFunc->getSourceRange();
Eli Friedmanab3a8522009-03-28 01:22:36 +00004018
4019 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004020 return Context.getPointerDiffType();
4021 }
4022 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004023
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004024 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004025}
4026
Chris Lattnereca7be62008-04-07 05:30:13 +00004027// C99 6.5.7
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004028QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattnereca7be62008-04-07 05:30:13 +00004029 bool isCompAssign) {
Chris Lattnerca5eede2007-12-12 05:47:28 +00004030 // C99 6.5.7p2: Each of the operands shall have integer type.
4031 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004032 return InvalidOperands(Loc, lex, rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004033
Chris Lattnerca5eede2007-12-12 05:47:28 +00004034 // Shifts don't perform usual arithmetic conversions, they just do integer
4035 // promotions on each operand. C99 6.5.7p3
Eli Friedmanab3a8522009-03-28 01:22:36 +00004036 QualType LHSTy;
4037 if (lex->getType()->isPromotableIntegerType())
4038 LHSTy = Context.IntTy;
Douglas Gregor2d833e32009-05-02 00:36:19 +00004039 else {
4040 LHSTy = isPromotableBitField(lex, Context);
4041 if (LHSTy.isNull())
4042 LHSTy = lex->getType();
4043 }
Chris Lattner1dcf2c82007-12-13 07:28:16 +00004044 if (!isCompAssign)
Eli Friedmanab3a8522009-03-28 01:22:36 +00004045 ImpCastExprToType(lex, LHSTy);
4046
Chris Lattnerca5eede2007-12-12 05:47:28 +00004047 UsualUnaryConversions(rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004048
Chris Lattnerca5eede2007-12-12 05:47:28 +00004049 // "The type of the result is that of the promoted left operand."
Eli Friedmanab3a8522009-03-28 01:22:36 +00004050 return LHSTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00004051}
4052
Douglas Gregor0c6db942009-05-04 06:07:12 +00004053// C99 6.5.8, C++ [expr.rel]
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004054QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Douglas Gregora86b8322009-04-06 18:45:53 +00004055 unsigned OpaqueOpc, bool isRelational) {
4056 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc;
4057
Nate Begemanbe2341d2008-07-14 18:02:46 +00004058 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004059 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004060
Chris Lattnera5937dd2007-08-26 01:18:55 +00004061 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff30bf7712007-08-10 18:26:40 +00004062 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
4063 UsualArithmeticConversions(lex, rex);
4064 else {
4065 UsualUnaryConversions(lex);
4066 UsualUnaryConversions(rex);
4067 }
Steve Naroffc80b4ee2007-07-16 21:54:35 +00004068 QualType lType = lex->getType();
4069 QualType rType = rex->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004070
Mike Stumpaf199f32009-05-07 18:43:07 +00004071 if (!lType->isFloatingType()
4072 && !(lType->isBlockPointerType() && isRelational)) {
Chris Lattner55660a72009-03-08 19:39:53 +00004073 // For non-floating point types, check for self-comparisons of the form
4074 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4075 // often indicate logic errors in the program.
Ted Kremenek9ecede72009-03-20 19:57:37 +00004076 // NOTE: Don't warn about comparisons of enum constants. These can arise
4077 // from macro expansions, and are usually quite deliberate.
Chris Lattner55660a72009-03-08 19:39:53 +00004078 Expr *LHSStripped = lex->IgnoreParens();
4079 Expr *RHSStripped = rex->IgnoreParens();
4080 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped))
4081 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped))
Ted Kremenekb82dcd82009-03-20 18:35:45 +00004082 if (DRL->getDecl() == DRR->getDecl() &&
4083 !isa<EnumConstantDecl>(DRL->getDecl()))
Mike Stumpeed9cac2009-02-19 03:04:26 +00004084 Diag(Loc, diag::warn_selfcomparison);
Chris Lattner55660a72009-03-08 19:39:53 +00004085
4086 if (isa<CastExpr>(LHSStripped))
4087 LHSStripped = LHSStripped->IgnoreParenCasts();
4088 if (isa<CastExpr>(RHSStripped))
4089 RHSStripped = RHSStripped->IgnoreParenCasts();
4090
4091 // Warn about comparisons against a string constant (unless the other
4092 // operand is null), the user probably wants strcmp.
Douglas Gregora86b8322009-04-06 18:45:53 +00004093 Expr *literalString = 0;
4094 Expr *literalStringStripped = 0;
Chris Lattner55660a72009-03-08 19:39:53 +00004095 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Douglas Gregora86b8322009-04-06 18:45:53 +00004096 !RHSStripped->isNullPointerConstant(Context)) {
4097 literalString = lex;
4098 literalStringStripped = LHSStripped;
4099 }
Chris Lattner55660a72009-03-08 19:39:53 +00004100 else if ((isa<StringLiteral>(RHSStripped) ||
4101 isa<ObjCEncodeExpr>(RHSStripped)) &&
Douglas Gregora86b8322009-04-06 18:45:53 +00004102 !LHSStripped->isNullPointerConstant(Context)) {
4103 literalString = rex;
4104 literalStringStripped = RHSStripped;
4105 }
4106
4107 if (literalString) {
4108 std::string resultComparison;
4109 switch (Opc) {
4110 case BinaryOperator::LT: resultComparison = ") < 0"; break;
4111 case BinaryOperator::GT: resultComparison = ") > 0"; break;
4112 case BinaryOperator::LE: resultComparison = ") <= 0"; break;
4113 case BinaryOperator::GE: resultComparison = ") >= 0"; break;
4114 case BinaryOperator::EQ: resultComparison = ") == 0"; break;
4115 case BinaryOperator::NE: resultComparison = ") != 0"; break;
4116 default: assert(false && "Invalid comparison operator");
4117 }
4118 Diag(Loc, diag::warn_stringcompare)
4119 << isa<ObjCEncodeExpr>(literalStringStripped)
4120 << literalString->getSourceRange()
Douglas Gregora3a83512009-04-01 23:51:29 +00004121 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ")
4122 << CodeModificationHint::CreateInsertion(lex->getLocStart(),
4123 "strcmp(")
4124 << CodeModificationHint::CreateInsertion(
4125 PP.getLocForEndOfToken(rex->getLocEnd()),
Douglas Gregora86b8322009-04-06 18:45:53 +00004126 resultComparison);
4127 }
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00004128 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004129
Douglas Gregor447b69e2008-11-19 03:25:36 +00004130 // The result of comparisons is 'bool' in C++, 'int' in C.
Chris Lattner55660a72009-03-08 19:39:53 +00004131 QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy;
Douglas Gregor447b69e2008-11-19 03:25:36 +00004132
Chris Lattnera5937dd2007-08-26 01:18:55 +00004133 if (isRelational) {
4134 if (lType->isRealType() && rType->isRealType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00004135 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00004136 } else {
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00004137 // Check for comparisons of floating point operands using != and ==.
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00004138 if (lType->isFloatingType()) {
Chris Lattner55660a72009-03-08 19:39:53 +00004139 assert(rType->isFloatingType());
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004140 CheckFloatComparison(Loc,lex,rex);
Ted Kremenek6a261552007-10-29 16:40:01 +00004141 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004142
Chris Lattnera5937dd2007-08-26 01:18:55 +00004143 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00004144 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00004145 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004146
Chris Lattnerd28f8152007-08-26 01:10:14 +00004147 bool LHSIsNull = lex->isNullPointerConstant(Context);
4148 bool RHSIsNull = rex->isNullPointerConstant(Context);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004149
Chris Lattnera5937dd2007-08-26 01:18:55 +00004150 // All of the following pointer related warnings are GCC extensions, except
4151 // when handling null pointer constants. One day, we can consider making them
4152 // errors (when -pedantic-errors is enabled).
Steve Naroff77878cc2007-08-27 04:08:11 +00004153 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattnerbc896f52008-04-03 05:07:25 +00004154 QualType LCanPointeeTy =
Ted Kremenek35366a62009-07-17 17:50:17 +00004155 Context.getCanonicalType(lType->getAsPointerType()->getPointeeType());
Chris Lattnerbc896f52008-04-03 05:07:25 +00004156 QualType RCanPointeeTy =
Ted Kremenek35366a62009-07-17 17:50:17 +00004157 Context.getCanonicalType(rType->getAsPointerType()->getPointeeType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00004158
Douglas Gregorf9334372009-07-06 20:14:23 +00004159 if (isRelational) {
4160 if (lType->isFunctionPointerType() || rType->isFunctionPointerType()) {
Chris Lattner149f1382009-06-30 06:24:05 +00004161 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
4162 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4163 }
Douglas Gregorf9334372009-07-06 20:14:23 +00004164 if (LCanPointeeTy->isVoidType() != RCanPointeeTy->isVoidType()) {
4165 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4166 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4167 }
4168 } else {
4169 if (lType->isFunctionPointerType() != rType->isFunctionPointerType()) {
4170 if (!LHSIsNull && !RHSIsNull)
4171 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4172 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4173 }
Chris Lattner149f1382009-06-30 06:24:05 +00004174 }
Douglas Gregorf9334372009-07-06 20:14:23 +00004175
Douglas Gregor0c6db942009-05-04 06:07:12 +00004176 // Simple check: if the pointee types are identical, we're done.
4177 if (LCanPointeeTy == RCanPointeeTy)
4178 return ResultTy;
4179
4180 if (getLangOptions().CPlusPlus) {
4181 // C++ [expr.rel]p2:
4182 // [...] Pointer conversions (4.10) and qualification
4183 // conversions (4.4) are performed on pointer operands (or on
4184 // a pointer operand and a null pointer constant) to bring
4185 // them to their composite pointer type. [...]
4186 //
4187 // C++ [expr.eq]p2 uses the same notion for (in)equality
4188 // comparisons of pointers.
Douglas Gregorde866f32009-05-05 04:50:50 +00004189 QualType T = FindCompositePointerType(lex, rex);
Douglas Gregor0c6db942009-05-04 06:07:12 +00004190 if (T.isNull()) {
4191 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4192 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4193 return QualType();
4194 }
4195
4196 ImpCastExprToType(lex, T);
4197 ImpCastExprToType(rex, T);
4198 return ResultTy;
4199 }
4200
Steve Naroff66296cb2007-11-13 14:57:38 +00004201 if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2
Chris Lattnerbc896f52008-04-03 05:07:25 +00004202 !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() &&
4203 !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
Steve Naroff14108da2009-07-10 23:34:53 +00004204 RCanPointeeTy.getUnqualifiedType())) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004205 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00004206 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004207 }
Chris Lattner1e0a3902008-01-16 19:17:22 +00004208 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004209 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00004210 }
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004211 // C++ allows comparison of pointers with null pointer constants.
4212 if (getLangOptions().CPlusPlus) {
4213 if (lType->isPointerType() && RHSIsNull) {
4214 ImpCastExprToType(rex, lType);
4215 return ResultTy;
4216 }
4217 if (rType->isPointerType() && LHSIsNull) {
4218 ImpCastExprToType(lex, rType);
4219 return ResultTy;
4220 }
4221 // And comparison of nullptr_t with itself.
4222 if (lType->isNullPtrType() && rType->isNullPtrType())
4223 return ResultTy;
4224 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00004225 // Handle block pointer types.
Mike Stumpdd3e1662009-05-07 03:14:14 +00004226 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) {
Ted Kremenek35366a62009-07-17 17:50:17 +00004227 QualType lpointee = lType->getAsBlockPointerType()->getPointeeType();
4228 QualType rpointee = rType->getAsBlockPointerType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004229
Steve Naroff1c7d0672008-09-04 15:10:53 +00004230 if (!LHSIsNull && !RHSIsNull &&
Eli Friedman26784c12009-06-08 05:08:54 +00004231 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004232 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattnerd1625842008-11-24 06:25:27 +00004233 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff1c7d0672008-09-04 15:10:53 +00004234 }
4235 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004236 return ResultTy;
Steve Naroff1c7d0672008-09-04 15:10:53 +00004237 }
Steve Naroff59f53942008-09-28 01:11:11 +00004238 // Allow block pointers to be compared with null pointer constants.
Mike Stumpdd3e1662009-05-07 03:14:14 +00004239 if (!isRelational
4240 && ((lType->isBlockPointerType() && rType->isPointerType())
4241 || (lType->isPointerType() && rType->isBlockPointerType()))) {
Steve Naroff59f53942008-09-28 01:11:11 +00004242 if (!LHSIsNull && !RHSIsNull) {
Ted Kremenek35366a62009-07-17 17:50:17 +00004243 if (!((rType->isPointerType() && rType->getAsPointerType()
Mike Stumpdd3e1662009-05-07 03:14:14 +00004244 ->getPointeeType()->isVoidType())
Ted Kremenek35366a62009-07-17 17:50:17 +00004245 || (lType->isPointerType() && lType->getAsPointerType()
Mike Stumpdd3e1662009-05-07 03:14:14 +00004246 ->getPointeeType()->isVoidType())))
4247 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
4248 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff59f53942008-09-28 01:11:11 +00004249 }
4250 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004251 return ResultTy;
Steve Naroff59f53942008-09-28 01:11:11 +00004252 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00004253
Steve Naroff14108da2009-07-10 23:34:53 +00004254 if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) {
Steve Naroffa5ad8632008-10-27 10:33:19 +00004255 if (lType->isPointerType() || rType->isPointerType()) {
Ted Kremenek35366a62009-07-17 17:50:17 +00004256 const PointerType *LPT = lType->getAsPointerType();
4257 const PointerType *RPT = rType->getAsPointerType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004258 bool LPtrToVoid = LPT ?
Steve Naroffa8069f12008-11-17 19:49:16 +00004259 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004260 bool RPtrToVoid = RPT ?
Steve Naroffa8069f12008-11-17 19:49:16 +00004261 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004262
Steve Naroffa8069f12008-11-17 19:49:16 +00004263 if (!LPtrToVoid && !RPtrToVoid &&
4264 !Context.typesAreCompatible(lType, rType)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004265 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00004266 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroffa5ad8632008-10-27 10:33:19 +00004267 }
Daniel Dunbarc6cb77f2008-10-23 23:30:52 +00004268 ImpCastExprToType(rex, lType);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004269 return ResultTy;
Steve Naroff87f3b932008-10-20 18:19:10 +00004270 }
Steve Naroff14108da2009-07-10 23:34:53 +00004271 if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) {
4272 if (!Context.areComparableObjCPointerTypes(lType, rType)) {
4273 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4274 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4275 }
Steve Naroff20373222008-06-03 14:04:54 +00004276 ImpCastExprToType(rex, lType);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004277 return ResultTy;
Steve Naroff20373222008-06-03 14:04:54 +00004278 }
Fariborz Jahanian7359f042007-12-20 01:06:58 +00004279 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004280 if (lType->isAnyPointerType() && rType->isIntegerType()) {
Chris Lattner149f1382009-06-30 06:24:05 +00004281 if (isRelational)
4282 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer)
4283 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4284 else if (!RHSIsNull)
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004285 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00004286 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner1e0a3902008-01-16 19:17:22 +00004287 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004288 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00004289 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004290 if (lType->isIntegerType() && rType->isAnyPointerType()) {
Chris Lattner149f1382009-06-30 06:24:05 +00004291 if (isRelational)
4292 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer)
4293 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4294 else if (!LHSIsNull)
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004295 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00004296 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner1e0a3902008-01-16 19:17:22 +00004297 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004298 return ResultTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00004299 }
Steve Naroff39218df2008-09-04 16:56:14 +00004300 // Handle block pointers.
Mike Stumpaf199f32009-05-07 18:43:07 +00004301 if (!isRelational && RHSIsNull
4302 && lType->isBlockPointerType() && rType->isIntegerType()) {
Steve Naroff39218df2008-09-04 16:56:14 +00004303 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004304 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00004305 }
Mike Stumpaf199f32009-05-07 18:43:07 +00004306 if (!isRelational && LHSIsNull
4307 && lType->isIntegerType() && rType->isBlockPointerType()) {
Steve Naroff39218df2008-09-04 16:56:14 +00004308 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00004309 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00004310 }
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004311 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004312}
4313
Nate Begemanbe2341d2008-07-14 18:02:46 +00004314/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stumpeed9cac2009-02-19 03:04:26 +00004315/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begemanbe2341d2008-07-14 18:02:46 +00004316/// like a scalar comparison, a vector comparison produces a vector of integer
4317/// types.
4318QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex,
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004319 SourceLocation Loc,
Nate Begemanbe2341d2008-07-14 18:02:46 +00004320 bool isRelational) {
4321 // Check to make sure we're operating on vectors of the same type and width,
4322 // Allowing one side to be a scalar of element type.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004323 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004324 if (vType.isNull())
4325 return vType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004326
Nate Begemanbe2341d2008-07-14 18:02:46 +00004327 QualType lType = lex->getType();
4328 QualType rType = rex->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004329
Nate Begemanbe2341d2008-07-14 18:02:46 +00004330 // For non-floating point types, check for self-comparisons of the form
4331 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4332 // often indicate logic errors in the program.
4333 if (!lType->isFloatingType()) {
4334 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
4335 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
4336 if (DRL->getDecl() == DRR->getDecl())
Mike Stumpeed9cac2009-02-19 03:04:26 +00004337 Diag(Loc, diag::warn_selfcomparison);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004338 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004339
Nate Begemanbe2341d2008-07-14 18:02:46 +00004340 // Check for comparisons of floating point operands using != and ==.
4341 if (!isRelational && lType->isFloatingType()) {
4342 assert (rType->isFloatingType());
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004343 CheckFloatComparison(Loc,lex,rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004344 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004345
Nate Begemanbe2341d2008-07-14 18:02:46 +00004346 // Return the type for the comparison, which is the same as vector type for
4347 // integer vectors, or an integer type of identical size and number of
4348 // elements for floating point vectors.
4349 if (lType->isIntegerType())
4350 return lType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004351
Nate Begemanbe2341d2008-07-14 18:02:46 +00004352 const VectorType *VTy = lType->getAsVectorType();
Nate Begemanbe2341d2008-07-14 18:02:46 +00004353 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
Nate Begeman59b5da62009-01-18 03:20:47 +00004354 if (TypeSize == Context.getTypeSize(Context.IntTy))
Nate Begemanbe2341d2008-07-14 18:02:46 +00004355 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
Chris Lattnerd013aa12009-03-31 07:46:52 +00004356 if (TypeSize == Context.getTypeSize(Context.LongTy))
Nate Begeman59b5da62009-01-18 03:20:47 +00004357 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
4358
Mike Stumpeed9cac2009-02-19 03:04:26 +00004359 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
Nate Begeman59b5da62009-01-18 03:20:47 +00004360 "Unhandled vector element size in vector compare");
Nate Begemanbe2341d2008-07-14 18:02:46 +00004361 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
4362}
4363
Reid Spencer5f016e22007-07-11 17:01:13 +00004364inline QualType Sema::CheckBitwiseOperands(
Mike Stumpeed9cac2009-02-19 03:04:26 +00004365 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00004366{
Steve Naroff3e5e5562007-07-16 22:23:01 +00004367 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004368 return CheckVectorOperands(Loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00004369
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004370 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004371
Steve Naroffa4332e22007-07-17 00:58:39 +00004372 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004373 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004374 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004375}
4376
4377inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Mike Stumpeed9cac2009-02-19 03:04:26 +00004378 Expr *&lex, Expr *&rex, SourceLocation Loc)
Reid Spencer5f016e22007-07-11 17:01:13 +00004379{
Steve Naroffc80b4ee2007-07-16 21:54:35 +00004380 UsualUnaryConversions(lex);
4381 UsualUnaryConversions(rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004382
Eli Friedman5773a6c2008-05-13 20:16:47 +00004383 if (lex->getType()->isScalarType() && rex->getType()->isScalarType())
Reid Spencer5f016e22007-07-11 17:01:13 +00004384 return Context.IntTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004385 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004386}
4387
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004388/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
4389/// is a read-only property; return true if so. A readonly property expression
4390/// depends on various declarations and thus must be treated specially.
4391///
Mike Stumpeed9cac2009-02-19 03:04:26 +00004392static bool IsReadonlyProperty(Expr *E, Sema &S)
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004393{
4394 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
4395 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
4396 if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) {
4397 QualType BaseType = PropExpr->getBase()->getType();
Steve Naroff14108da2009-07-10 23:34:53 +00004398 if (const ObjCObjectPointerType *OPT =
4399 BaseType->getAsObjCInterfacePointerType())
4400 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
4401 if (S.isPropertyReadonly(PDecl, IFace))
4402 return true;
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004403 }
4404 }
4405 return false;
4406}
4407
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004408/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
4409/// emit an error and return true. If so, return false.
4410static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004411 SourceLocation OrigLoc = Loc;
4412 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
4413 &Loc);
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004414 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
4415 IsLV = Expr::MLV_ReadonlyProperty;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004416 if (IsLV == Expr::MLV_Valid)
4417 return false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004418
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004419 unsigned Diag = 0;
4420 bool NeedType = false;
4421 switch (IsLV) { // C99 6.5.16p2
4422 default: assert(0 && "Unknown result from isModifiableLvalue!");
4423 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004424 case Expr::MLV_ArrayType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004425 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
4426 NeedType = true;
4427 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004428 case Expr::MLV_NotObjectType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004429 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
4430 NeedType = true;
4431 break;
Chris Lattnerca354fa2008-11-17 19:51:54 +00004432 case Expr::MLV_LValueCast:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004433 Diag = diag::err_typecheck_lvalue_casts_not_supported;
4434 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00004435 case Expr::MLV_InvalidExpression:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004436 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
4437 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00004438 case Expr::MLV_IncompleteType:
4439 case Expr::MLV_IncompleteVoidType:
Douglas Gregor86447ec2009-03-09 16:13:40 +00004440 return S.RequireCompleteType(Loc, E->getType(),
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004441 diag::err_typecheck_incomplete_type_not_modifiable_lvalue,
4442 E->getSourceRange());
Chris Lattner5cf216b2008-01-04 18:04:52 +00004443 case Expr::MLV_DuplicateVectorComponents:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004444 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
4445 break;
Steve Naroff4f6a7d72008-09-26 14:41:28 +00004446 case Expr::MLV_NotBlockQualified:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004447 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
4448 break;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00004449 case Expr::MLV_ReadonlyProperty:
4450 Diag = diag::error_readonly_property_assignment;
4451 break;
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +00004452 case Expr::MLV_NoSetterProperty:
4453 Diag = diag::error_nosetter_property_assignment;
4454 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00004455 }
Steve Naroffd1861fd2007-07-31 12:34:36 +00004456
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004457 SourceRange Assign;
4458 if (Loc != OrigLoc)
4459 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004460 if (NeedType)
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004461 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004462 else
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004463 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004464 return true;
4465}
4466
4467
4468
4469// C99 6.5.16.1
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004470QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS,
4471 SourceLocation Loc,
4472 QualType CompoundType) {
4473 // Verify that LHS is a modifiable lvalue, and emit error if not.
4474 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004475 return QualType();
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004476
4477 QualType LHSType = LHS->getType();
4478 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004479
Chris Lattner5cf216b2008-01-04 18:04:52 +00004480 AssignConvertType ConvTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004481 if (CompoundType.isNull()) {
Chris Lattner2c156472008-08-21 18:04:13 +00004482 // Simple assignment "x = y".
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004483 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS);
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004484 // Special case of NSObject attributes on c-style pointer types.
4485 if (ConvTy == IncompatiblePointer &&
4486 ((Context.isObjCNSObjectType(LHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00004487 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004488 (Context.isObjCNSObjectType(RHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00004489 LHSType->isObjCObjectPointerType())))
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004490 ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004491
Chris Lattner2c156472008-08-21 18:04:13 +00004492 // If the RHS is a unary plus or minus, check to see if they = and + are
4493 // right next to each other. If so, the user may have typo'd "x =+ 4"
4494 // instead of "x += 4".
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004495 Expr *RHSCheck = RHS;
Chris Lattner2c156472008-08-21 18:04:13 +00004496 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
4497 RHSCheck = ICE->getSubExpr();
4498 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
4499 if ((UO->getOpcode() == UnaryOperator::Plus ||
4500 UO->getOpcode() == UnaryOperator::Minus) &&
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004501 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattner2c156472008-08-21 18:04:13 +00004502 // Only if the two operators are exactly adjacent.
Chris Lattner399bd1b2009-03-08 06:51:10 +00004503 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() &&
4504 // And there is a space or other character before the subexpr of the
4505 // unary +/-. We don't want to warn on "x=-1".
Chris Lattner3e872092009-03-09 07:11:10 +00004506 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
4507 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004508 Diag(Loc, diag::warn_not_compound_assign)
4509 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-")
4510 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner399bd1b2009-03-08 06:51:10 +00004511 }
Chris Lattner2c156472008-08-21 18:04:13 +00004512 }
4513 } else {
4514 // Compound assignment "x += y"
Eli Friedman623712b2009-05-16 05:56:02 +00004515 ConvTy = CheckAssignmentConstraints(LHSType, RHSType);
Chris Lattner2c156472008-08-21 18:04:13 +00004516 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00004517
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004518 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
4519 RHS, "assigning"))
Chris Lattner5cf216b2008-01-04 18:04:52 +00004520 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004521
Reid Spencer5f016e22007-07-11 17:01:13 +00004522 // C99 6.5.16p3: The type of an assignment expression is the type of the
4523 // left operand unless the left operand has qualified type, in which case
Mike Stumpeed9cac2009-02-19 03:04:26 +00004524 // it is the unqualified version of the type of the left operand.
Reid Spencer5f016e22007-07-11 17:01:13 +00004525 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
4526 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00004527 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregor2d833e32009-05-02 00:36:19 +00004528 // operand.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004529 return LHSType.getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004530}
4531
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004532// C99 6.5.17
4533QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) {
Chris Lattner53fcaa92008-07-25 20:54:07 +00004534 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004535 DefaultFunctionArrayConversion(RHS);
Eli Friedmanb1d796d2009-03-23 00:24:07 +00004536
4537 // FIXME: Check that RHS type is complete in C mode (it's legal for it to be
4538 // incomplete in C++).
4539
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004540 return RHS->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004541}
4542
Steve Naroff49b45262007-07-13 16:58:59 +00004543/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
4544/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00004545QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc,
4546 bool isInc) {
Sebastian Redl28507842009-02-26 14:39:58 +00004547 if (Op->isTypeDependent())
4548 return Context.DependentTy;
4549
Chris Lattner3528d352008-11-21 07:05:48 +00004550 QualType ResType = Op->getType();
4551 assert(!ResType.isNull() && "no type for increment/decrement expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00004552
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00004553 if (getLangOptions().CPlusPlus && ResType->isBooleanType()) {
4554 // Decrement of bool is not allowed.
4555 if (!isInc) {
4556 Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
4557 return QualType();
4558 }
4559 // Increment of bool sets it to true, but is deprecated.
4560 Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
4561 } else if (ResType->isRealType()) {
Chris Lattner3528d352008-11-21 07:05:48 +00004562 // OK!
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004563 } else if (ResType->isAnyPointerType()) {
4564 QualType PointeeTy = ResType->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00004565
Chris Lattner3528d352008-11-21 07:05:48 +00004566 // C99 6.5.2.4p2, 6.5.6p2
Steve Naroff14108da2009-07-10 23:34:53 +00004567 if (PointeeTy->isVoidType()) {
Douglas Gregorc983b862009-01-23 00:36:41 +00004568 if (getLangOptions().CPlusPlus) {
4569 Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type)
4570 << Op->getSourceRange();
4571 return QualType();
4572 }
4573
4574 // Pointer to void is a GNU extension in C.
Chris Lattner3528d352008-11-21 07:05:48 +00004575 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
Steve Naroff14108da2009-07-10 23:34:53 +00004576 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorc983b862009-01-23 00:36:41 +00004577 if (getLangOptions().CPlusPlus) {
4578 Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type)
4579 << Op->getType() << Op->getSourceRange();
4580 return QualType();
4581 }
4582
4583 Diag(OpLoc, diag::ext_gnu_ptr_func_arith)
Chris Lattnerd1625842008-11-24 06:25:27 +00004584 << ResType << Op->getSourceRange();
Steve Naroff14108da2009-07-10 23:34:53 +00004585 } else if (RequireCompleteType(OpLoc, PointeeTy,
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00004586 diag::err_typecheck_arithmetic_incomplete_type,
4587 Op->getSourceRange(), SourceRange(),
4588 ResType))
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004589 return QualType();
Fariborz Jahanian9f8a04f2009-07-16 17:59:14 +00004590 // Diagnose bad cases where we step over interface counts.
4591 else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4592 Diag(OpLoc, diag::err_arithmetic_nonfragile_interface)
4593 << PointeeTy << Op->getSourceRange();
4594 return QualType();
4595 }
Chris Lattner3528d352008-11-21 07:05:48 +00004596 } else if (ResType->isComplexType()) {
4597 // C99 does not support ++/-- on complex types, we allow as an extension.
4598 Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00004599 << ResType << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00004600 } else {
4601 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Chris Lattnerd1625842008-11-24 06:25:27 +00004602 << ResType << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00004603 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004604 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004605 // At this point, we know we have a real, complex or pointer type.
Steve Naroffdd10e022007-08-23 21:37:33 +00004606 // Now make sure the operand is a modifiable lvalue.
Chris Lattner3528d352008-11-21 07:05:48 +00004607 if (CheckForModifiableLvalue(Op, OpLoc, *this))
Reid Spencer5f016e22007-07-11 17:01:13 +00004608 return QualType();
Chris Lattner3528d352008-11-21 07:05:48 +00004609 return ResType;
Reid Spencer5f016e22007-07-11 17:01:13 +00004610}
4611
Anders Carlsson369dee42008-02-01 07:15:58 +00004612/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Reid Spencer5f016e22007-07-11 17:01:13 +00004613/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00004614/// where the declaration is needed for type checking. We only need to
4615/// handle cases when the expression references a function designator
4616/// or is an lvalue. Here are some examples:
4617/// - &(x) => x
4618/// - &*****f => f for f a function designator.
4619/// - &s.xx => s
4620/// - &s.zz[1].yy -> s, if zz is an array
4621/// - *(x + 1) -> x, if x is an array
4622/// - &"123"[2] -> 0
4623/// - & __real__ x -> x
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00004624static NamedDecl *getPrimaryDecl(Expr *E) {
Chris Lattnerf0467b32008-04-02 04:24:33 +00004625 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004626 case Stmt::DeclRefExprClass:
Douglas Gregor1a49af92009-01-06 05:10:23 +00004627 case Stmt::QualifiedDeclRefExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00004628 return cast<DeclRefExpr>(E)->getDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00004629 case Stmt::MemberExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00004630 // If this is an arrow operator, the address is an offset from
4631 // the base's value, so the object the base refers to is
4632 // irrelevant.
Chris Lattnerf0467b32008-04-02 04:24:33 +00004633 if (cast<MemberExpr>(E)->isArrow())
Chris Lattnerf82228f2007-11-16 17:46:48 +00004634 return 0;
Eli Friedman23d58ce2009-04-20 08:23:18 +00004635 // Otherwise, the expression refers to a part of the base
Chris Lattnerf0467b32008-04-02 04:24:33 +00004636 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson369dee42008-02-01 07:15:58 +00004637 case Stmt::ArraySubscriptExprClass: {
Mike Stump390b4cc2009-05-16 07:39:55 +00004638 // FIXME: This code shouldn't be necessary! We should catch the implicit
4639 // promotion of register arrays earlier.
Eli Friedman23d58ce2009-04-20 08:23:18 +00004640 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
4641 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
4642 if (ICE->getSubExpr()->getType()->isArrayType())
4643 return getPrimaryDecl(ICE->getSubExpr());
4644 }
4645 return 0;
Anders Carlsson369dee42008-02-01 07:15:58 +00004646 }
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00004647 case Stmt::UnaryOperatorClass: {
4648 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004649
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00004650 switch(UO->getOpcode()) {
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00004651 case UnaryOperator::Real:
4652 case UnaryOperator::Imag:
4653 case UnaryOperator::Extension:
4654 return getPrimaryDecl(UO->getSubExpr());
4655 default:
4656 return 0;
4657 }
4658 }
Reid Spencer5f016e22007-07-11 17:01:13 +00004659 case Stmt::ParenExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00004660 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerf82228f2007-11-16 17:46:48 +00004661 case Stmt::ImplicitCastExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00004662 // If the result of an implicit cast is an l-value, we care about
4663 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattnerf0467b32008-04-02 04:24:33 +00004664 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00004665 default:
4666 return 0;
4667 }
4668}
4669
4670/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stumpeed9cac2009-02-19 03:04:26 +00004671/// designator or an lvalue designating an object. If it is an lvalue, the
Reid Spencer5f016e22007-07-11 17:01:13 +00004672/// object cannot be declared with storage class register or be a bit field.
Mike Stumpeed9cac2009-02-19 03:04:26 +00004673/// Note: The usual conversions are *not* applied to the operand of the &
Reid Spencer5f016e22007-07-11 17:01:13 +00004674/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stumpeed9cac2009-02-19 03:04:26 +00004675/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregor904eed32008-11-10 20:40:00 +00004676/// we allow the '&' but retain the overloaded-function type.
Reid Spencer5f016e22007-07-11 17:01:13 +00004677QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Eli Friedman23d58ce2009-04-20 08:23:18 +00004678 // Make sure to ignore parentheses in subsequent checks
4679 op = op->IgnoreParens();
4680
Douglas Gregor9103bb22008-12-17 22:52:20 +00004681 if (op->isTypeDependent())
4682 return Context.DependentTy;
4683
Steve Naroff08f19672008-01-13 17:10:08 +00004684 if (getLangOptions().C99) {
4685 // Implement C99-only parts of addressof rules.
4686 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
4687 if (uOp->getOpcode() == UnaryOperator::Deref)
4688 // Per C99 6.5.3.2, the address of a deref always returns a valid result
4689 // (assuming the deref expression is valid).
4690 return uOp->getSubExpr()->getType();
4691 }
4692 // Technically, there should be a check for array subscript
4693 // expressions here, but the result of one is always an lvalue anyway.
4694 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00004695 NamedDecl *dcl = getPrimaryDecl(op);
Chris Lattner28be73f2008-07-26 21:30:36 +00004696 Expr::isLvalueResult lval = op->isLvalue(Context);
Nuno Lopes6b6609f2008-12-16 22:59:47 +00004697
Eli Friedman441cf102009-05-16 23:27:50 +00004698 if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
4699 // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00004700 // The operand must be either an l-value or a function designator
Eli Friedman441cf102009-05-16 23:27:50 +00004701 if (!op->getType()->isFunctionType()) {
Chris Lattnerf82228f2007-11-16 17:46:48 +00004702 // FIXME: emit more specific diag...
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00004703 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
4704 << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004705 return QualType();
4706 }
Douglas Gregor33bbbc52009-05-02 02:18:30 +00004707 } else if (op->getBitField()) { // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00004708 // The operand cannot be a bit-field
4709 Diag(OpLoc, diag::err_typecheck_address_of)
4710 << "bit-field" << op->getSourceRange();
Douglas Gregor86f19402008-12-20 23:49:58 +00004711 return QualType();
Nate Begemanb104b1f2009-02-15 22:45:20 +00004712 } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) &&
4713 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){
Eli Friedman23d58ce2009-04-20 08:23:18 +00004714 // The operand cannot be an element of a vector
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004715 Diag(OpLoc, diag::err_typecheck_address_of)
Nate Begemanb104b1f2009-02-15 22:45:20 +00004716 << "vector element" << op->getSourceRange();
Steve Naroffbcb2b612008-02-29 23:30:25 +00004717 return QualType();
Fariborz Jahanian0337f212009-07-07 18:50:52 +00004718 } else if (isa<ObjCPropertyRefExpr>(op)) {
4719 // cannot take address of a property expression.
4720 Diag(OpLoc, diag::err_typecheck_address_of)
4721 << "property expression" << op->getSourceRange();
4722 return QualType();
Steve Naroffbcb2b612008-02-29 23:30:25 +00004723 } else if (dcl) { // C99 6.5.3.2p1
Mike Stumpeed9cac2009-02-19 03:04:26 +00004724 // We have an lvalue with a decl. Make sure the decl is not declared
Reid Spencer5f016e22007-07-11 17:01:13 +00004725 // with the register storage-class specifier.
4726 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
4727 if (vd->getStorageClass() == VarDecl::Register) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004728 Diag(OpLoc, diag::err_typecheck_address_of)
4729 << "register variable" << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004730 return QualType();
4731 }
Douglas Gregor83314aa2009-07-08 20:55:45 +00004732 } else if (isa<OverloadedFunctionDecl>(dcl) ||
4733 isa<FunctionTemplateDecl>(dcl)) {
Douglas Gregor904eed32008-11-10 20:40:00 +00004734 return Context.OverloadTy;
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00004735 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) {
Douglas Gregor29882052008-12-10 21:26:49 +00004736 // Okay: we can take the address of a field.
Sebastian Redlebc07d52009-02-03 20:19:35 +00004737 // Could be a pointer to member, though, if there is an explicit
4738 // scope qualifier for the class.
4739 if (isa<QualifiedDeclRefExpr>(op)) {
4740 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00004741 if (Ctx && Ctx->isRecord()) {
4742 if (FD->getType()->isReferenceType()) {
4743 Diag(OpLoc,
4744 diag::err_cannot_form_pointer_to_member_of_reference_type)
4745 << FD->getDeclName() << FD->getType();
4746 return QualType();
4747 }
4748
Sebastian Redlebc07d52009-02-03 20:19:35 +00004749 return Context.getMemberPointerType(op->getType(),
4750 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00004751 }
Sebastian Redlebc07d52009-02-03 20:19:35 +00004752 }
Anders Carlsson196f7d02009-05-16 21:43:42 +00004753 } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) {
Nuno Lopes6fea8d22008-12-16 22:58:26 +00004754 // Okay: we can take the address of a function.
Sebastian Redl33b399a2009-02-04 21:23:32 +00004755 // As above.
Anders Carlsson196f7d02009-05-16 21:43:42 +00004756 if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance())
4757 return Context.getMemberPointerType(op->getType(),
4758 Context.getTypeDeclType(MD->getParent()).getTypePtr());
4759 } else if (!isa<FunctionDecl>(dcl))
Reid Spencer5f016e22007-07-11 17:01:13 +00004760 assert(0 && "Unknown/unexpected decl type");
Reid Spencer5f016e22007-07-11 17:01:13 +00004761 }
Sebastian Redl33b399a2009-02-04 21:23:32 +00004762
Eli Friedman441cf102009-05-16 23:27:50 +00004763 if (lval == Expr::LV_IncompleteVoidType) {
4764 // Taking the address of a void variable is technically illegal, but we
4765 // allow it in cases which are otherwise valid.
4766 // Example: "extern void x; void* y = &x;".
4767 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
4768 }
4769
Reid Spencer5f016e22007-07-11 17:01:13 +00004770 // If the operand has type "type", the result has type "pointer to type".
4771 return Context.getPointerType(op->getType());
4772}
4773
Chris Lattner22caddc2008-11-23 09:13:29 +00004774QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) {
Sebastian Redl28507842009-02-26 14:39:58 +00004775 if (Op->isTypeDependent())
4776 return Context.DependentTy;
4777
Chris Lattner22caddc2008-11-23 09:13:29 +00004778 UsualUnaryConversions(Op);
4779 QualType Ty = Op->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004780
Chris Lattner22caddc2008-11-23 09:13:29 +00004781 // Note that per both C89 and C99, this is always legal, even if ptype is an
4782 // incomplete type or void. It would be possible to warn about dereferencing
4783 // a void pointer, but it's completely well-defined, and such a warning is
4784 // unlikely to catch any mistakes.
Ted Kremenek35366a62009-07-17 17:50:17 +00004785 if (const PointerType *PT = Ty->getAsPointerType())
Steve Naroff08f19672008-01-13 17:10:08 +00004786 return PT->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004787
Steve Naroff14108da2009-07-10 23:34:53 +00004788 if (const ObjCObjectPointerType *OPT = Ty->getAsObjCObjectPointerType())
4789 return OPT->getPointeeType();
4790
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004791 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattner22caddc2008-11-23 09:13:29 +00004792 << Ty << Op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004793 return QualType();
4794}
4795
4796static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
4797 tok::TokenKind Kind) {
4798 BinaryOperator::Opcode Opc;
4799 switch (Kind) {
4800 default: assert(0 && "Unknown binop!");
Sebastian Redl22460502009-02-07 00:15:38 +00004801 case tok::periodstar: Opc = BinaryOperator::PtrMemD; break;
4802 case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00004803 case tok::star: Opc = BinaryOperator::Mul; break;
4804 case tok::slash: Opc = BinaryOperator::Div; break;
4805 case tok::percent: Opc = BinaryOperator::Rem; break;
4806 case tok::plus: Opc = BinaryOperator::Add; break;
4807 case tok::minus: Opc = BinaryOperator::Sub; break;
4808 case tok::lessless: Opc = BinaryOperator::Shl; break;
4809 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
4810 case tok::lessequal: Opc = BinaryOperator::LE; break;
4811 case tok::less: Opc = BinaryOperator::LT; break;
4812 case tok::greaterequal: Opc = BinaryOperator::GE; break;
4813 case tok::greater: Opc = BinaryOperator::GT; break;
4814 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
4815 case tok::equalequal: Opc = BinaryOperator::EQ; break;
4816 case tok::amp: Opc = BinaryOperator::And; break;
4817 case tok::caret: Opc = BinaryOperator::Xor; break;
4818 case tok::pipe: Opc = BinaryOperator::Or; break;
4819 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
4820 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
4821 case tok::equal: Opc = BinaryOperator::Assign; break;
4822 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
4823 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
4824 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
4825 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
4826 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
4827 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
4828 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
4829 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
4830 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
4831 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
4832 case tok::comma: Opc = BinaryOperator::Comma; break;
4833 }
4834 return Opc;
4835}
4836
4837static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
4838 tok::TokenKind Kind) {
4839 UnaryOperator::Opcode Opc;
4840 switch (Kind) {
4841 default: assert(0 && "Unknown unary op!");
4842 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
4843 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
4844 case tok::amp: Opc = UnaryOperator::AddrOf; break;
4845 case tok::star: Opc = UnaryOperator::Deref; break;
4846 case tok::plus: Opc = UnaryOperator::Plus; break;
4847 case tok::minus: Opc = UnaryOperator::Minus; break;
4848 case tok::tilde: Opc = UnaryOperator::Not; break;
4849 case tok::exclaim: Opc = UnaryOperator::LNot; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00004850 case tok::kw___real: Opc = UnaryOperator::Real; break;
4851 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
4852 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
4853 }
4854 return Opc;
4855}
4856
Douglas Gregoreaebc752008-11-06 23:29:22 +00004857/// CreateBuiltinBinOp - Creates a new built-in binary operation with
4858/// operator @p Opc at location @c TokLoc. This routine only supports
4859/// built-in operations; ActOnBinOp handles overloaded operators.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004860Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
4861 unsigned Op,
4862 Expr *lhs, Expr *rhs) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00004863 QualType ResultTy; // Result type of the binary operator.
Douglas Gregoreaebc752008-11-06 23:29:22 +00004864 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op;
Eli Friedmanab3a8522009-03-28 01:22:36 +00004865 // The following two variables are used for compound assignment operators
4866 QualType CompLHSTy; // Type of LHS after promotions for computation
4867 QualType CompResultTy; // Type of computation result
Douglas Gregoreaebc752008-11-06 23:29:22 +00004868
4869 switch (Opc) {
Douglas Gregoreaebc752008-11-06 23:29:22 +00004870 case BinaryOperator::Assign:
4871 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType());
4872 break;
Sebastian Redl22460502009-02-07 00:15:38 +00004873 case BinaryOperator::PtrMemD:
4874 case BinaryOperator::PtrMemI:
4875 ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc,
4876 Opc == BinaryOperator::PtrMemI);
4877 break;
4878 case BinaryOperator::Mul:
Douglas Gregoreaebc752008-11-06 23:29:22 +00004879 case BinaryOperator::Div:
4880 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc);
4881 break;
4882 case BinaryOperator::Rem:
4883 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
4884 break;
4885 case BinaryOperator::Add:
4886 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
4887 break;
4888 case BinaryOperator::Sub:
4889 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
4890 break;
Sebastian Redl22460502009-02-07 00:15:38 +00004891 case BinaryOperator::Shl:
Douglas Gregoreaebc752008-11-06 23:29:22 +00004892 case BinaryOperator::Shr:
4893 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc);
4894 break;
4895 case BinaryOperator::LE:
4896 case BinaryOperator::LT:
4897 case BinaryOperator::GE:
4898 case BinaryOperator::GT:
Douglas Gregora86b8322009-04-06 18:45:53 +00004899 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004900 break;
4901 case BinaryOperator::EQ:
4902 case BinaryOperator::NE:
Douglas Gregora86b8322009-04-06 18:45:53 +00004903 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004904 break;
4905 case BinaryOperator::And:
4906 case BinaryOperator::Xor:
4907 case BinaryOperator::Or:
4908 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
4909 break;
4910 case BinaryOperator::LAnd:
4911 case BinaryOperator::LOr:
4912 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc);
4913 break;
4914 case BinaryOperator::MulAssign:
4915 case BinaryOperator::DivAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004916 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true);
4917 CompLHSTy = CompResultTy;
4918 if (!CompResultTy.isNull())
4919 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004920 break;
4921 case BinaryOperator::RemAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004922 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
4923 CompLHSTy = CompResultTy;
4924 if (!CompResultTy.isNull())
4925 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004926 break;
4927 case BinaryOperator::AddAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004928 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy);
4929 if (!CompResultTy.isNull())
4930 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004931 break;
4932 case BinaryOperator::SubAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004933 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy);
4934 if (!CompResultTy.isNull())
4935 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004936 break;
4937 case BinaryOperator::ShlAssign:
4938 case BinaryOperator::ShrAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004939 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true);
4940 CompLHSTy = CompResultTy;
4941 if (!CompResultTy.isNull())
4942 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004943 break;
4944 case BinaryOperator::AndAssign:
4945 case BinaryOperator::XorAssign:
4946 case BinaryOperator::OrAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00004947 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
4948 CompLHSTy = CompResultTy;
4949 if (!CompResultTy.isNull())
4950 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00004951 break;
4952 case BinaryOperator::Comma:
4953 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc);
4954 break;
4955 }
4956 if (ResultTy.isNull())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004957 return ExprError();
Eli Friedmanab3a8522009-03-28 01:22:36 +00004958 if (CompResultTy.isNull())
Steve Naroff6ece14c2009-01-21 00:14:39 +00004959 return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc));
4960 else
4961 return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy,
Eli Friedmanab3a8522009-03-28 01:22:36 +00004962 CompLHSTy, CompResultTy,
4963 OpLoc));
Douglas Gregoreaebc752008-11-06 23:29:22 +00004964}
4965
Reid Spencer5f016e22007-07-11 17:01:13 +00004966// Binary Operators. 'Tok' is the token for the operator.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004967Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
4968 tok::TokenKind Kind,
4969 ExprArg LHS, ExprArg RHS) {
Reid Spencer5f016e22007-07-11 17:01:13 +00004970 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
Anders Carlssone9146f22009-05-01 19:49:17 +00004971 Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>();
Reid Spencer5f016e22007-07-11 17:01:13 +00004972
Steve Narofff69936d2007-09-16 03:34:24 +00004973 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
4974 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00004975
Douglas Gregor063daf62009-03-13 18:40:31 +00004976 if (getLangOptions().CPlusPlus &&
4977 (lhs->getType()->isOverloadableType() ||
4978 rhs->getType()->isOverloadableType())) {
4979 // Find all of the overloaded operators visible from this
4980 // point. We perform both an operator-name lookup from the local
4981 // scope and an argument-dependent lookup based on the types of
4982 // the arguments.
Douglas Gregor3fd95ce2009-03-13 00:33:25 +00004983 FunctionSet Functions;
Douglas Gregor063daf62009-03-13 18:40:31 +00004984 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc);
4985 if (OverOp != OO_None) {
4986 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(),
4987 Functions);
4988 Expr *Args[2] = { lhs, rhs };
4989 DeclarationName OpName
4990 = Context.DeclarationNames.getCXXOperatorName(OverOp);
4991 ArgumentDependentLookup(OpName, Args, 2, Functions);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00004992 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004993
Douglas Gregor063daf62009-03-13 18:40:31 +00004994 // Build the (potentially-overloaded, potentially-dependent)
4995 // binary operation.
4996 return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs);
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004997 }
4998
Douglas Gregoreaebc752008-11-06 23:29:22 +00004999 // Build a built-in binary operation.
5000 return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs);
Reid Spencer5f016e22007-07-11 17:01:13 +00005001}
5002
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005003Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
5004 unsigned OpcIn,
5005 ExprArg InputArg) {
5006 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
Douglas Gregor74253732008-11-19 15:42:04 +00005007
Mike Stump390b4cc2009-05-16 07:39:55 +00005008 // FIXME: Input is modified below, but InputArg is not updated appropriately.
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005009 Expr *Input = (Expr *)InputArg.get();
Reid Spencer5f016e22007-07-11 17:01:13 +00005010 QualType resultType;
5011 switch (Opc) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005012 case UnaryOperator::OffsetOf:
5013 assert(false && "Invalid unary operator");
5014 break;
5015
Reid Spencer5f016e22007-07-11 17:01:13 +00005016 case UnaryOperator::PreInc:
5017 case UnaryOperator::PreDec:
Eli Friedmande99a452009-07-22 22:25:00 +00005018 case UnaryOperator::PostInc:
5019 case UnaryOperator::PostDec:
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00005020 resultType = CheckIncrementDecrementOperand(Input, OpLoc,
Eli Friedmande99a452009-07-22 22:25:00 +00005021 Opc == UnaryOperator::PreInc ||
5022 Opc == UnaryOperator::PostInc);
Reid Spencer5f016e22007-07-11 17:01:13 +00005023 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005024 case UnaryOperator::AddrOf:
Reid Spencer5f016e22007-07-11 17:01:13 +00005025 resultType = CheckAddressOfOperand(Input, OpLoc);
5026 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005027 case UnaryOperator::Deref:
Steve Naroff1ca9b112007-12-18 04:06:57 +00005028 DefaultFunctionArrayConversion(Input);
Reid Spencer5f016e22007-07-11 17:01:13 +00005029 resultType = CheckIndirectionOperand(Input, OpLoc);
5030 break;
5031 case UnaryOperator::Plus:
5032 case UnaryOperator::Minus:
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005033 UsualUnaryConversions(Input);
5034 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005035 if (resultType->isDependentType())
5036 break;
Douglas Gregor74253732008-11-19 15:42:04 +00005037 if (resultType->isArithmeticType()) // C99 6.5.3.3p1
5038 break;
5039 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
5040 resultType->isEnumeralType())
5041 break;
5042 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
5043 Opc == UnaryOperator::Plus &&
5044 resultType->isPointerType())
5045 break;
5046
Sebastian Redl0eb23302009-01-19 00:08:26 +00005047 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5048 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005049 case UnaryOperator::Not: // bitwise complement
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005050 UsualUnaryConversions(Input);
5051 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005052 if (resultType->isDependentType())
5053 break;
Chris Lattner02a65142008-07-25 23:52:49 +00005054 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
5055 if (resultType->isComplexType() || resultType->isComplexIntegerType())
5056 // C99 does not support '~' for complex conjugation.
Chris Lattnerd3a94e22008-11-20 06:06:08 +00005057 Diag(OpLoc, diag::ext_integer_complement_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00005058 << resultType << Input->getSourceRange();
Chris Lattner02a65142008-07-25 23:52:49 +00005059 else if (!resultType->isIntegerType())
Sebastian Redl0eb23302009-01-19 00:08:26 +00005060 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5061 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005062 break;
5063 case UnaryOperator::LNot: // logical negation
5064 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005065 DefaultFunctionArrayConversion(Input);
5066 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005067 if (resultType->isDependentType())
5068 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005069 if (!resultType->isScalarType()) // C99 6.5.3.3p1
Sebastian Redl0eb23302009-01-19 00:08:26 +00005070 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5071 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005072 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redl0eb23302009-01-19 00:08:26 +00005073 // In C++, it's bool. C++ 5.3.1p8
5074 resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00005075 break;
Chris Lattnerdbb36972007-08-24 21:16:53 +00005076 case UnaryOperator::Real:
Chris Lattnerdbb36972007-08-24 21:16:53 +00005077 case UnaryOperator::Imag:
Chris Lattnerba27e2a2009-02-17 08:12:06 +00005078 resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real);
Chris Lattnerdbb36972007-08-24 21:16:53 +00005079 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005080 case UnaryOperator::Extension:
Reid Spencer5f016e22007-07-11 17:01:13 +00005081 resultType = Input->getType();
5082 break;
5083 }
5084 if (resultType.isNull())
Sebastian Redl0eb23302009-01-19 00:08:26 +00005085 return ExprError();
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005086
5087 InputArg.release();
Steve Naroff6ece14c2009-01-21 00:14:39 +00005088 return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00005089}
5090
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005091// Unary Operators. 'Tok' is the token for the operator.
5092Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
5093 tok::TokenKind Op, ExprArg input) {
5094 Expr *Input = (Expr*)input.get();
5095 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
5096
5097 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) {
5098 // Find all of the overloaded operators visible from this
5099 // point. We perform both an operator-name lookup from the local
5100 // scope and an argument-dependent lookup based on the types of
5101 // the arguments.
5102 FunctionSet Functions;
5103 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
5104 if (OverOp != OO_None) {
5105 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
5106 Functions);
5107 DeclarationName OpName
5108 = Context.DeclarationNames.getCXXOperatorName(OverOp);
5109 ArgumentDependentLookup(OpName, &Input, 1, Functions);
5110 }
5111
5112 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input));
5113 }
5114
5115 return CreateBuiltinUnaryOp(OpLoc, Opc, move(input));
5116}
5117
Steve Naroff1b273c42007-09-16 14:56:35 +00005118/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Sebastian Redlf53597f2009-03-15 17:47:39 +00005119Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
5120 SourceLocation LabLoc,
5121 IdentifierInfo *LabelII) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005122 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +00005123 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Mike Stumpeed9cac2009-02-19 03:04:26 +00005124
Daniel Dunbar0ffb1252008-08-04 16:51:22 +00005125 // If we haven't seen this label yet, create a forward reference. It
5126 // will be validated and/or cleaned up in ActOnFinishFunctionBody.
Steve Naroffcaaacec2009-03-13 15:38:40 +00005127 if (LabelDecl == 0)
Steve Naroff6ece14c2009-01-21 00:14:39 +00005128 LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005129
Reid Spencer5f016e22007-07-11 17:01:13 +00005130 // Create the AST node. The address of a label always has type 'void*'.
Sebastian Redlf53597f2009-03-15 17:47:39 +00005131 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
5132 Context.getPointerType(Context.VoidTy)));
Reid Spencer5f016e22007-07-11 17:01:13 +00005133}
5134
Sebastian Redlf53597f2009-03-15 17:47:39 +00005135Sema::OwningExprResult
5136Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt,
5137 SourceLocation RPLoc) { // "({..})"
5138 Stmt *SubStmt = static_cast<Stmt*>(substmt.get());
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005139 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
5140 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
5141
Eli Friedmandca2b732009-01-24 23:09:00 +00005142 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Chris Lattner4a049f02009-04-25 19:11:05 +00005143 if (isFileScope)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005144 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedmandca2b732009-01-24 23:09:00 +00005145
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005146 // FIXME: there are a variety of strange constraints to enforce here, for
5147 // example, it is not possible to goto into a stmt expression apparently.
5148 // More semantic analysis is needed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005149
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005150 // If there are sub stmts in the compound stmt, take the type of the last one
5151 // as the type of the stmtexpr.
5152 QualType Ty = Context.VoidTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005153
Chris Lattner611b2ec2008-07-26 19:51:01 +00005154 if (!Compound->body_empty()) {
5155 Stmt *LastStmt = Compound->body_back();
5156 // If LastStmt is a label, skip down through into the body.
5157 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt))
5158 LastStmt = Label->getSubStmt();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005159
Chris Lattner611b2ec2008-07-26 19:51:01 +00005160 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt))
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005161 Ty = LastExpr->getType();
Chris Lattner611b2ec2008-07-26 19:51:01 +00005162 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005163
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005164 // FIXME: Check that expression type is complete/non-abstract; statement
5165 // expressions are not lvalues.
5166
Sebastian Redlf53597f2009-03-15 17:47:39 +00005167 substmt.release();
5168 return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc));
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005169}
Steve Naroffd34e9152007-08-01 22:05:33 +00005170
Sebastian Redlf53597f2009-03-15 17:47:39 +00005171Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
5172 SourceLocation BuiltinLoc,
5173 SourceLocation TypeLoc,
5174 TypeTy *argty,
5175 OffsetOfComponent *CompPtr,
5176 unsigned NumComponents,
5177 SourceLocation RPLoc) {
5178 // FIXME: This function leaks all expressions in the offset components on
5179 // error.
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005180 QualType ArgTy = QualType::getFromOpaquePtr(argty);
5181 assert(!ArgTy.isNull() && "Missing type argument!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00005182
Sebastian Redl28507842009-02-26 14:39:58 +00005183 bool Dependent = ArgTy->isDependentType();
5184
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005185 // We must have at least one component that refers to the type, and the first
5186 // one is known to be a field designator. Verify that the ArgTy represents
5187 // a struct/union/class.
Sebastian Redl28507842009-02-26 14:39:58 +00005188 if (!Dependent && !ArgTy->isRecordType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00005189 return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005190
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005191 // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable
5192 // with an incomplete type would be illegal.
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +00005193
Eli Friedman35183ac2009-02-27 06:44:11 +00005194 // Otherwise, create a null pointer as the base, and iteratively process
5195 // the offsetof designators.
5196 QualType ArgTyPtr = Context.getPointerType(ArgTy);
5197 Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005198 Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref,
Eli Friedman35183ac2009-02-27 06:44:11 +00005199 ArgTy, SourceLocation());
Eli Friedman1d242592009-01-26 01:33:06 +00005200
Chris Lattner9e2b75c2007-08-31 21:49:13 +00005201 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
5202 // GCC extension, diagnose them.
Eli Friedman35183ac2009-02-27 06:44:11 +00005203 // FIXME: This diagnostic isn't actually visible because the location is in
5204 // a system header!
Chris Lattner9e2b75c2007-08-31 21:49:13 +00005205 if (NumComponents != 1)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00005206 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
5207 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005208
Sebastian Redl28507842009-02-26 14:39:58 +00005209 if (!Dependent) {
Eli Friedmanc0d600c2009-05-03 21:22:18 +00005210 bool DidWarnAboutNonPOD = false;
Anders Carlsson5992e4a2009-05-02 18:36:10 +00005211
Sebastian Redl28507842009-02-26 14:39:58 +00005212 // FIXME: Dependent case loses a lot of information here. And probably
5213 // leaks like a sieve.
5214 for (unsigned i = 0; i != NumComponents; ++i) {
5215 const OffsetOfComponent &OC = CompPtr[i];
5216 if (OC.isBrackets) {
5217 // Offset of an array sub-field. TODO: Should we allow vector elements?
5218 const ArrayType *AT = Context.getAsArrayType(Res->getType());
5219 if (!AT) {
5220 Res->Destroy(Context);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005221 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
5222 << Res->getType());
Sebastian Redl28507842009-02-26 14:39:58 +00005223 }
5224
5225 // FIXME: C++: Verify that operator[] isn't overloaded.
5226
Eli Friedman35183ac2009-02-27 06:44:11 +00005227 // Promote the array so it looks more like a normal array subscript
5228 // expression.
5229 DefaultFunctionArrayConversion(Res);
5230
Sebastian Redl28507842009-02-26 14:39:58 +00005231 // C99 6.5.2.1p1
5232 Expr *Idx = static_cast<Expr*>(OC.U.E);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005233 // FIXME: Leaks Res
Sebastian Redl28507842009-02-26 14:39:58 +00005234 if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00005235 return ExprError(Diag(Idx->getLocStart(),
Chris Lattner338395d2009-04-25 22:50:55 +00005236 diag::err_typecheck_subscript_not_integer)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005237 << Idx->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +00005238
5239 Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(),
5240 OC.LocEnd);
5241 continue;
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005242 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005243
Ted Kremenek35366a62009-07-17 17:50:17 +00005244 const RecordType *RC = Res->getType()->getAsRecordType();
Sebastian Redl28507842009-02-26 14:39:58 +00005245 if (!RC) {
5246 Res->Destroy(Context);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005247 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
5248 << Res->getType());
Sebastian Redl28507842009-02-26 14:39:58 +00005249 }
Chris Lattner704fe352007-08-30 17:59:59 +00005250
Sebastian Redl28507842009-02-26 14:39:58 +00005251 // Get the decl corresponding to this.
5252 RecordDecl *RD = RC->getDecl();
Anders Carlsson6d7f1492009-05-01 23:20:30 +00005253 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
Anders Carlsson5992e4a2009-05-02 18:36:10 +00005254 if (!CRD->isPOD() && !DidWarnAboutNonPOD) {
Anders Carlssonf9b8bc62009-05-02 17:45:47 +00005255 ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type)
5256 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
5257 << Res->getType());
Anders Carlsson5992e4a2009-05-02 18:36:10 +00005258 DidWarnAboutNonPOD = true;
5259 }
Anders Carlsson6d7f1492009-05-01 23:20:30 +00005260 }
5261
Sebastian Redl28507842009-02-26 14:39:58 +00005262 FieldDecl *MemberDecl
5263 = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo,
5264 LookupMemberName)
5265 .getAsDecl());
Sebastian Redlf53597f2009-03-15 17:47:39 +00005266 // FIXME: Leaks Res
Sebastian Redl28507842009-02-26 14:39:58 +00005267 if (!MemberDecl)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005268 return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member)
5269 << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd));
Mike Stumpeed9cac2009-02-19 03:04:26 +00005270
Sebastian Redl28507842009-02-26 14:39:58 +00005271 // FIXME: C++: Verify that MemberDecl isn't a static field.
5272 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedmane9356962009-04-26 20:50:44 +00005273 if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00005274 Res = BuildAnonymousStructUnionMemberReference(
5275 SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>();
Eli Friedmane9356962009-04-26 20:50:44 +00005276 } else {
5277 // MemberDecl->getType() doesn't get the right qualifiers, but it
5278 // doesn't matter here.
5279 Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd,
5280 MemberDecl->getType().getNonReferenceType());
5281 }
Sebastian Redl28507842009-02-26 14:39:58 +00005282 }
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005283 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005284
Sebastian Redlf53597f2009-03-15 17:47:39 +00005285 return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf,
5286 Context.getSizeType(), BuiltinLoc));
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005287}
5288
5289
Sebastian Redlf53597f2009-03-15 17:47:39 +00005290Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
5291 TypeTy *arg1,TypeTy *arg2,
5292 SourceLocation RPLoc) {
Steve Naroffd34e9152007-08-01 22:05:33 +00005293 QualType argT1 = QualType::getFromOpaquePtr(arg1);
5294 QualType argT2 = QualType::getFromOpaquePtr(arg2);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005295
Steve Naroffd34e9152007-08-01 22:05:33 +00005296 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
Mike Stumpeed9cac2009-02-19 03:04:26 +00005297
Douglas Gregorc12a9c52009-05-19 22:28:02 +00005298 if (getLangOptions().CPlusPlus) {
5299 Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus)
5300 << SourceRange(BuiltinLoc, RPLoc);
5301 return ExprError();
5302 }
5303
Sebastian Redlf53597f2009-03-15 17:47:39 +00005304 return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc,
5305 argT1, argT2, RPLoc));
Steve Naroffd34e9152007-08-01 22:05:33 +00005306}
5307
Sebastian Redlf53597f2009-03-15 17:47:39 +00005308Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
5309 ExprArg cond,
5310 ExprArg expr1, ExprArg expr2,
5311 SourceLocation RPLoc) {
5312 Expr *CondExpr = static_cast<Expr*>(cond.get());
5313 Expr *LHSExpr = static_cast<Expr*>(expr1.get());
5314 Expr *RHSExpr = static_cast<Expr*>(expr2.get());
Mike Stumpeed9cac2009-02-19 03:04:26 +00005315
Steve Naroffd04fdd52007-08-03 21:21:27 +00005316 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
5317
Sebastian Redl28507842009-02-26 14:39:58 +00005318 QualType resType;
Douglas Gregorc9ecc572009-05-19 22:43:30 +00005319 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl28507842009-02-26 14:39:58 +00005320 resType = Context.DependentTy;
5321 } else {
5322 // The conditional expression is required to be a constant expression.
5323 llvm::APSInt condEval(32);
5324 SourceLocation ExpLoc;
5325 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Sebastian Redlf53597f2009-03-15 17:47:39 +00005326 return ExprError(Diag(ExpLoc,
5327 diag::err_typecheck_choose_expr_requires_constant)
5328 << CondExpr->getSourceRange());
Steve Naroffd04fdd52007-08-03 21:21:27 +00005329
Sebastian Redl28507842009-02-26 14:39:58 +00005330 // If the condition is > zero, then the AST type is the same as the LSHExpr.
5331 resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType();
5332 }
5333
Sebastian Redlf53597f2009-03-15 17:47:39 +00005334 cond.release(); expr1.release(); expr2.release();
5335 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
5336 resType, RPLoc));
Steve Naroffd04fdd52007-08-03 21:21:27 +00005337}
5338
Steve Naroff4eb206b2008-09-03 18:15:37 +00005339//===----------------------------------------------------------------------===//
5340// Clang Extensions.
5341//===----------------------------------------------------------------------===//
5342
5343/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff090276f2008-10-10 01:28:17 +00005344void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00005345 // Analyze block parameters.
5346 BlockSemaInfo *BSI = new BlockSemaInfo();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005347
Steve Naroff4eb206b2008-09-03 18:15:37 +00005348 // Add BSI to CurBlock.
5349 BSI->PrevBlockInfo = CurBlock;
5350 CurBlock = BSI;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005351
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005352 BSI->ReturnType = QualType();
Steve Naroff4eb206b2008-09-03 18:15:37 +00005353 BSI->TheScope = BlockScope;
Mike Stumpb83d2872009-02-19 22:01:56 +00005354 BSI->hasBlockDeclRefExprs = false;
Chris Lattner17a78302009-04-19 05:28:12 +00005355 BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking;
5356 CurFunctionNeedsScopeChecking = false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005357
Steve Naroff090276f2008-10-10 01:28:17 +00005358 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc);
Douglas Gregor44b43212008-12-11 16:49:14 +00005359 PushDeclContext(BlockScope, BSI->TheDecl);
Steve Naroff090276f2008-10-10 01:28:17 +00005360}
5361
Mike Stump98eb8a72009-02-04 22:31:32 +00005362void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpaf199f32009-05-07 18:43:07 +00005363 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
Mike Stump98eb8a72009-02-04 22:31:32 +00005364
5365 if (ParamInfo.getNumTypeObjects() == 0
5366 || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) {
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00005367 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Mike Stump98eb8a72009-02-04 22:31:32 +00005368 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5369
Mike Stump4eeab842009-04-28 01:10:27 +00005370 if (T->isArrayType()) {
5371 Diag(ParamInfo.getSourceRange().getBegin(),
5372 diag::err_block_returns_array);
5373 return;
5374 }
5375
Mike Stump98eb8a72009-02-04 22:31:32 +00005376 // The parameter list is optional, if there was none, assume ().
5377 if (!T->isFunctionType())
5378 T = Context.getFunctionType(T, NULL, 0, 0, 0);
5379
5380 CurBlock->hasPrototype = true;
5381 CurBlock->isVariadic = false;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005382 // Check for a valid sentinel attribute on this block.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00005383 if (CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005384 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00005385 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005386 // FIXME: remove the attribute.
5387 }
Chris Lattner9097af12009-04-11 19:27:54 +00005388 QualType RetTy = T.getTypePtr()->getAsFunctionType()->getResultType();
5389
5390 // Do not allow returning a objc interface by-value.
5391 if (RetTy->isObjCInterfaceType()) {
5392 Diag(ParamInfo.getSourceRange().getBegin(),
5393 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5394 return;
5395 }
Mike Stump98eb8a72009-02-04 22:31:32 +00005396 return;
5397 }
5398
Steve Naroff4eb206b2008-09-03 18:15:37 +00005399 // Analyze arguments to block.
5400 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function &&
5401 "Not a function declarator!");
5402 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005403
Steve Naroff090276f2008-10-10 01:28:17 +00005404 CurBlock->hasPrototype = FTI.hasPrototype;
5405 CurBlock->isVariadic = true;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005406
Steve Naroff4eb206b2008-09-03 18:15:37 +00005407 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
5408 // no arguments, not a function that takes a single void argument.
5409 if (FTI.hasPrototype &&
5410 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattnerb28317a2009-03-28 19:18:32 +00005411 (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&&
5412 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00005413 // empty arg list, don't push any params.
Steve Naroff090276f2008-10-10 01:28:17 +00005414 CurBlock->isVariadic = false;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005415 } else if (FTI.hasPrototype) {
5416 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
Chris Lattnerb28317a2009-03-28 19:18:32 +00005417 CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>());
Steve Naroff090276f2008-10-10 01:28:17 +00005418 CurBlock->isVariadic = FTI.isVariadic;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005419 }
Jay Foadbeaaccd2009-05-21 09:52:38 +00005420 CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(),
Chris Lattner9097af12009-04-11 19:27:54 +00005421 CurBlock->Params.size());
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +00005422 CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic);
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00005423 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Steve Naroff090276f2008-10-10 01:28:17 +00005424 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
5425 E = CurBlock->TheDecl->param_end(); AI != E; ++AI)
5426 // If this has an identifier, add it to the scope stack.
5427 if ((*AI)->getIdentifier())
5428 PushOnScopeChains(*AI, CurBlock->TheScope);
Chris Lattner9097af12009-04-11 19:27:54 +00005429
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005430 // Check for a valid sentinel attribute on this block.
Douglas Gregor68584ed2009-06-18 16:11:24 +00005431 if (!CurBlock->isVariadic &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00005432 CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005433 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00005434 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005435 // FIXME: remove the attribute.
5436 }
5437
Chris Lattner9097af12009-04-11 19:27:54 +00005438 // Analyze the return type.
5439 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5440 QualType RetTy = T->getAsFunctionType()->getResultType();
5441
5442 // Do not allow returning a objc interface by-value.
5443 if (RetTy->isObjCInterfaceType()) {
5444 Diag(ParamInfo.getSourceRange().getBegin(),
5445 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5446 } else if (!RetTy->isDependentType())
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005447 CurBlock->ReturnType = RetTy;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005448}
5449
5450/// ActOnBlockError - If there is an error parsing a block, this callback
5451/// is invoked to pop the information about the block from the action impl.
5452void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
5453 // Ensure that CurBlock is deleted.
5454 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005455
Chris Lattner17a78302009-04-19 05:28:12 +00005456 CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking;
5457
Steve Naroff4eb206b2008-09-03 18:15:37 +00005458 // Pop off CurBlock, handle nested blocks.
Chris Lattner5c59e2b2009-04-21 22:38:46 +00005459 PopDeclContext();
Steve Naroff4eb206b2008-09-03 18:15:37 +00005460 CurBlock = CurBlock->PrevBlockInfo;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005461 // FIXME: Delete the ParmVarDecl objects as well???
Steve Naroff4eb206b2008-09-03 18:15:37 +00005462}
5463
5464/// ActOnBlockStmtExpr - This is called when the body of a block statement
5465/// literal was successfully completed. ^(int x){...}
Sebastian Redlf53597f2009-03-15 17:47:39 +00005466Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
5467 StmtArg body, Scope *CurScope) {
Chris Lattner9af55002009-03-27 04:18:06 +00005468 // If blocks are disabled, emit an error.
5469 if (!LangOpts.Blocks)
5470 Diag(CaretLoc, diag::err_blocks_disable);
5471
Steve Naroff4eb206b2008-09-03 18:15:37 +00005472 // Ensure that CurBlock is deleted.
5473 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock);
Steve Naroff4eb206b2008-09-03 18:15:37 +00005474
Steve Naroff090276f2008-10-10 01:28:17 +00005475 PopDeclContext();
5476
Steve Naroff4eb206b2008-09-03 18:15:37 +00005477 // Pop off CurBlock, handle nested blocks.
5478 CurBlock = CurBlock->PrevBlockInfo;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005479
Steve Naroff4eb206b2008-09-03 18:15:37 +00005480 QualType RetTy = Context.VoidTy;
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005481 if (!BSI->ReturnType.isNull())
5482 RetTy = BSI->ReturnType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005483
Steve Naroff4eb206b2008-09-03 18:15:37 +00005484 llvm::SmallVector<QualType, 8> ArgTypes;
5485 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i)
5486 ArgTypes.push_back(BSI->Params[i]->getType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00005487
Steve Naroff4eb206b2008-09-03 18:15:37 +00005488 QualType BlockTy;
5489 if (!BSI->hasPrototype)
Eli Friedman687abff2009-06-08 04:24:21 +00005490 BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0);
Steve Naroff4eb206b2008-09-03 18:15:37 +00005491 else
Jay Foadbeaaccd2009-05-21 09:52:38 +00005492 BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00005493 BSI->isVariadic, 0);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005494
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005495 // FIXME: Check that return/parameter types are complete/non-abstract
Douglas Gregore0762c92009-06-19 23:52:42 +00005496 DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end());
Steve Naroff4eb206b2008-09-03 18:15:37 +00005497 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005498
Chris Lattner17a78302009-04-19 05:28:12 +00005499 // If needed, diagnose invalid gotos and switches in the block.
5500 if (CurFunctionNeedsScopeChecking)
5501 DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get()));
5502 CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking;
5503
Anders Carlssone9146f22009-05-01 19:49:17 +00005504 BSI->TheDecl->setBody(body.takeAs<CompoundStmt>());
Sebastian Redlf53597f2009-03-15 17:47:39 +00005505 return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy,
5506 BSI->hasBlockDeclRefExprs));
Steve Naroff4eb206b2008-09-03 18:15:37 +00005507}
5508
Sebastian Redlf53597f2009-03-15 17:47:39 +00005509Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
5510 ExprArg expr, TypeTy *type,
5511 SourceLocation RPLoc) {
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005512 QualType T = QualType::getFromOpaquePtr(type);
Chris Lattner0d20b8a2009-04-05 15:49:53 +00005513 Expr *E = static_cast<Expr*>(expr.get());
5514 Expr *OrigExpr = E;
5515
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005516 InitBuiltinVaListType();
Eli Friedmanc34bcde2008-08-09 23:32:40 +00005517
5518 // Get the va_list type
5519 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedman5c091ba2009-05-16 12:46:54 +00005520 if (VaListType->isArrayType()) {
5521 // Deal with implicit array decay; for example, on x86-64,
5522 // va_list is an array, but it's supposed to decay to
5523 // a pointer for va_arg.
Eli Friedmanc34bcde2008-08-09 23:32:40 +00005524 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedman5c091ba2009-05-16 12:46:54 +00005525 // Make sure the input expression also decays appropriately.
5526 UsualUnaryConversions(E);
5527 } else {
5528 // Otherwise, the va_list argument must be an l-value because
5529 // it is modified by va_arg.
Douglas Gregordd027302009-05-19 23:10:31 +00005530 if (!E->isTypeDependent() &&
5531 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedman5c091ba2009-05-16 12:46:54 +00005532 return ExprError();
5533 }
Eli Friedmanc34bcde2008-08-09 23:32:40 +00005534
Douglas Gregordd027302009-05-19 23:10:31 +00005535 if (!E->isTypeDependent() &&
5536 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redlf53597f2009-03-15 17:47:39 +00005537 return ExprError(Diag(E->getLocStart(),
5538 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattner0d20b8a2009-04-05 15:49:53 +00005539 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner9dc8f192009-04-05 00:59:53 +00005540 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005541
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005542 // FIXME: Check that type is complete/non-abstract
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005543 // FIXME: Warn if a non-POD type is passed in.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005544
Sebastian Redlf53597f2009-03-15 17:47:39 +00005545 expr.release();
5546 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(),
5547 RPLoc));
Anders Carlsson7c50aca2007-10-15 20:28:48 +00005548}
5549
Sebastian Redlf53597f2009-03-15 17:47:39 +00005550Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregor2d8b2732008-11-29 04:51:27 +00005551 // The type of __null will be int or long, depending on the size of
5552 // pointers on the target.
5553 QualType Ty;
5554 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth())
5555 Ty = Context.IntTy;
5556 else
5557 Ty = Context.LongTy;
5558
Sebastian Redlf53597f2009-03-15 17:47:39 +00005559 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregor2d8b2732008-11-29 04:51:27 +00005560}
5561
Chris Lattner5cf216b2008-01-04 18:04:52 +00005562bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
5563 SourceLocation Loc,
5564 QualType DstType, QualType SrcType,
5565 Expr *SrcExpr, const char *Flavor) {
5566 // Decode the result (notice that AST's are still created for extensions).
5567 bool isInvalid = false;
5568 unsigned DiagKind;
5569 switch (ConvTy) {
5570 default: assert(0 && "Unknown conversion type");
5571 case Compatible: return false;
Chris Lattnerb7b61152008-01-04 18:22:42 +00005572 case PointerToInt:
Chris Lattner5cf216b2008-01-04 18:04:52 +00005573 DiagKind = diag::ext_typecheck_convert_pointer_int;
5574 break;
Chris Lattnerb7b61152008-01-04 18:22:42 +00005575 case IntToPointer:
5576 DiagKind = diag::ext_typecheck_convert_int_pointer;
5577 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005578 case IncompatiblePointer:
5579 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
5580 break;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00005581 case IncompatiblePointerSign:
5582 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
5583 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005584 case FunctionVoidPointer:
5585 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
5586 break;
5587 case CompatiblePointerDiscardsQualifiers:
Douglas Gregor77a52232008-09-12 00:47:35 +00005588 // If the qualifiers lost were because we were applying the
5589 // (deprecated) C++ conversion from a string literal to a char*
5590 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
5591 // Ideally, this check would be performed in
5592 // CheckPointerTypesForAssignment. However, that would require a
5593 // bit of refactoring (so that the second argument is an
5594 // expression, rather than a type), which should be done as part
5595 // of a larger effort to fix CheckPointerTypesForAssignment for
5596 // C++ semantics.
5597 if (getLangOptions().CPlusPlus &&
5598 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
5599 return false;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005600 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
5601 break;
Steve Naroff1c7d0672008-09-04 15:10:53 +00005602 case IntToBlockPointer:
5603 DiagKind = diag::err_int_to_block_pointer;
5604 break;
5605 case IncompatibleBlockPointer:
Mike Stump25efa102009-04-21 22:51:42 +00005606 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00005607 break;
Steve Naroff39579072008-10-14 22:18:38 +00005608 case IncompatibleObjCQualifiedId:
Mike Stumpeed9cac2009-02-19 03:04:26 +00005609 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff39579072008-10-14 22:18:38 +00005610 // it can give a more specific diagnostic.
5611 DiagKind = diag::warn_incompatible_qualified_id;
5612 break;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00005613 case IncompatibleVectors:
5614 DiagKind = diag::warn_incompatible_vectors;
5615 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005616 case Incompatible:
5617 DiagKind = diag::err_typecheck_convert_incompatible;
5618 isInvalid = true;
5619 break;
5620 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005621
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005622 Diag(Loc, DiagKind) << DstType << SrcType << Flavor
5623 << SrcExpr->getSourceRange();
Chris Lattner5cf216b2008-01-04 18:04:52 +00005624 return isInvalid;
5625}
Anders Carlssone21555e2008-11-30 19:50:32 +00005626
Chris Lattner3bf68932009-04-25 21:59:05 +00005627bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){
Eli Friedman3b5ccca2009-04-25 22:26:58 +00005628 llvm::APSInt ICEResult;
5629 if (E->isIntegerConstantExpr(ICEResult, Context)) {
5630 if (Result)
5631 *Result = ICEResult;
5632 return false;
5633 }
5634
Anders Carlssone21555e2008-11-30 19:50:32 +00005635 Expr::EvalResult EvalResult;
5636
Mike Stumpeed9cac2009-02-19 03:04:26 +00005637 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
Anders Carlssone21555e2008-11-30 19:50:32 +00005638 EvalResult.HasSideEffects) {
5639 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
5640
5641 if (EvalResult.Diag) {
5642 // We only show the note if it's not the usual "invalid subexpression"
5643 // or if it's actually in a subexpression.
5644 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
5645 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
5646 Diag(EvalResult.DiagLoc, EvalResult.Diag);
5647 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005648
Anders Carlssone21555e2008-11-30 19:50:32 +00005649 return true;
5650 }
5651
Eli Friedman3b5ccca2009-04-25 22:26:58 +00005652 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
5653 E->getSourceRange();
Anders Carlssone21555e2008-11-30 19:50:32 +00005654
Eli Friedman3b5ccca2009-04-25 22:26:58 +00005655 if (EvalResult.Diag &&
5656 Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored)
5657 Diag(EvalResult.DiagLoc, EvalResult.Diag);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005658
Anders Carlssone21555e2008-11-30 19:50:32 +00005659 if (Result)
5660 *Result = EvalResult.Val.getInt();
5661 return false;
5662}
Douglas Gregore0762c92009-06-19 23:52:42 +00005663
Douglas Gregorac7610d2009-06-22 20:57:11 +00005664Sema::ExpressionEvaluationContext
5665Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) {
5666 // Introduce a new set of potentially referenced declarations to the stack.
5667 if (NewContext == PotentiallyPotentiallyEvaluated)
5668 PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls());
5669
5670 std::swap(ExprEvalContext, NewContext);
5671 return NewContext;
5672}
5673
5674void
5675Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext,
5676 ExpressionEvaluationContext NewContext) {
5677 ExprEvalContext = NewContext;
5678
5679 if (OldContext == PotentiallyPotentiallyEvaluated) {
5680 // Mark any remaining declarations in the current position of the stack
5681 // as "referenced". If they were not meant to be referenced, semantic
5682 // analysis would have eliminated them (e.g., in ActOnCXXTypeId).
5683 PotentiallyReferencedDecls RemainingDecls;
5684 RemainingDecls.swap(PotentiallyReferencedDeclStack.back());
5685 PotentiallyReferencedDeclStack.pop_back();
5686
5687 for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(),
5688 IEnd = RemainingDecls.end();
5689 I != IEnd; ++I)
5690 MarkDeclarationReferenced(I->first, I->second);
5691 }
5692}
Douglas Gregore0762c92009-06-19 23:52:42 +00005693
5694/// \brief Note that the given declaration was referenced in the source code.
5695///
5696/// This routine should be invoke whenever a given declaration is referenced
5697/// in the source code, and where that reference occurred. If this declaration
5698/// reference means that the the declaration is used (C++ [basic.def.odr]p2,
5699/// C99 6.9p3), then the declaration will be marked as used.
5700///
5701/// \param Loc the location where the declaration was referenced.
5702///
5703/// \param D the declaration that has been referenced by the source code.
5704void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) {
5705 assert(D && "No declaration?");
5706
Douglas Gregord7f37bf2009-06-22 23:06:13 +00005707 if (D->isUsed())
5708 return;
5709
Douglas Gregore0762c92009-06-19 23:52:42 +00005710 // Mark a parameter declaration "used", regardless of whether we're in a
5711 // template or not.
5712 if (isa<ParmVarDecl>(D))
5713 D->setUsed(true);
5714
5715 // Do not mark anything as "used" within a dependent context; wait for
5716 // an instantiation.
5717 if (CurContext->isDependentContext())
5718 return;
5719
Douglas Gregorac7610d2009-06-22 20:57:11 +00005720 switch (ExprEvalContext) {
5721 case Unevaluated:
5722 // We are in an expression that is not potentially evaluated; do nothing.
5723 return;
5724
5725 case PotentiallyEvaluated:
5726 // We are in a potentially-evaluated expression, so this declaration is
5727 // "used"; handle this below.
5728 break;
5729
5730 case PotentiallyPotentiallyEvaluated:
5731 // We are in an expression that may be potentially evaluated; queue this
5732 // declaration reference until we know whether the expression is
5733 // potentially evaluated.
5734 PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D));
5735 return;
5736 }
5737
Douglas Gregore0762c92009-06-19 23:52:42 +00005738 // Note that this declaration has been used.
Fariborz Jahanianb7f4cc02009-06-22 17:30:33 +00005739 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005740 unsigned TypeQuals;
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00005741 if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) {
5742 if (!Constructor->isUsed())
5743 DefineImplicitDefaultConstructor(Loc, Constructor);
5744 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005745 else if (Constructor->isImplicit() &&
5746 Constructor->isCopyConstructor(Context, TypeQuals)) {
5747 if (!Constructor->isUsed())
5748 DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals);
5749 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005750 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
5751 if (Destructor->isImplicit() && !Destructor->isUsed())
5752 DefineImplicitDestructor(Loc, Destructor);
5753
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005754 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) {
5755 if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
5756 MethodDecl->getOverloadedOperator() == OO_Equal) {
5757 if (!MethodDecl->isUsed())
5758 DefineImplicitOverloadedAssign(Loc, MethodDecl);
5759 }
5760 }
Fariborz Jahanianf5ed9e02009-06-24 22:09:44 +00005761 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor1637be72009-06-26 00:10:03 +00005762 // Implicit instantiation of function templates and member functions of
5763 // class templates.
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00005764 if (!Function->getBody()) {
Douglas Gregor1637be72009-06-26 00:10:03 +00005765 // FIXME: distinguish between implicit instantiations of function
5766 // templates and explicit specializations (the latter don't get
5767 // instantiated, naturally).
5768 if (Function->getInstantiatedFromMemberFunction() ||
5769 Function->getPrimaryTemplate())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00005770 PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00005771 }
5772
5773
Douglas Gregore0762c92009-06-19 23:52:42 +00005774 // FIXME: keep track of references to static functions
Douglas Gregore0762c92009-06-19 23:52:42 +00005775 Function->setUsed(true);
5776 return;
Douglas Gregord7f37bf2009-06-22 23:06:13 +00005777 }
Douglas Gregore0762c92009-06-19 23:52:42 +00005778
5779 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
5780 (void)Var;
5781 // FIXME: implicit template instantiation
5782 // FIXME: keep track of references to static data?
5783 D->setUsed(true);
5784 }
5785}
5786