blob: ad62ae7d84b5e31b0d9b212ced2dbaadf0f9da2d [file] [log] [blame]
Chris Lattner5b183d82006-11-10 05:03:26 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner5b183d82006-11-10 05:03:26 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Chris Lattnercb6a3822006-11-10 06:20:45 +000015#include "clang/AST/ASTContext.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000016#include "clang/AST/DeclObjC.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000017#include "clang/AST/DeclTemplate.h"
Chris Lattneraa9c7ae2008-04-08 04:40:51 +000018#include "clang/AST/ExprCXX.h"
Steve Naroff021ca182008-05-29 21:12:08 +000019#include "clang/AST/ExprObjC.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000020#include "clang/Basic/PartialDiagnostic.h"
Steve Narofff2fb89e2007-03-13 20:29:44 +000021#include "clang/Basic/SourceManager.h"
Chris Lattner5b183d82006-11-10 05:03:26 +000022#include "clang/Basic/TargetInfo.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000023#include "clang/Lex/LiteralSupport.h"
24#include "clang/Lex/Preprocessor.h"
Steve Naroffc540d662008-09-03 18:15:37 +000025#include "clang/Parse/DeclSpec.h"
Chris Lattner07d754a2008-10-26 23:43:26 +000026#include "clang/Parse/Designator.h"
Steve Naroffc540d662008-09-03 18:15:37 +000027#include "clang/Parse/Scope.h"
Chris Lattner5b183d82006-11-10 05:03:26 +000028using namespace clang;
29
David Chisnall9f57c292009-08-17 16:35:33 +000030
Douglas Gregor171c45a2009-02-18 21:56:37 +000031/// \brief Determine whether the use of this declaration is valid, and
32/// emit any corresponding diagnostics.
33///
34/// This routine diagnoses various problems with referencing
35/// declarations that can occur when using a declaration. For example,
36/// it might warn if a deprecated or unavailable declaration is being
37/// used, or produce an error (and return true) if a C++0x deleted
38/// function is being used.
39///
40/// \returns true if there was an error (this declaration cannot be
41/// referenced), false otherwise.
42bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) {
Chris Lattner4bf74fd2009-02-15 22:43:40 +000043 // See if the decl is deprecated.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +000044 if (D->getAttr<DeprecatedAttr>()) {
Douglas Gregor171c45a2009-02-18 21:56:37 +000045 // Implementing deprecated stuff requires referencing deprecated
46 // stuff. Don't warn if we are implementing a deprecated
47 // construct.
Chris Lattner46d6b132009-02-16 19:35:30 +000048 bool isSilenced = false;
Mike Stump11289f42009-09-09 15:08:12 +000049
Chris Lattner46d6b132009-02-16 19:35:30 +000050 if (NamedDecl *ND = getCurFunctionOrMethodDecl()) {
51 // If this reference happens *in* a deprecated function or method, don't
52 // warn.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +000053 isSilenced = ND->getAttr<DeprecatedAttr>();
Mike Stump11289f42009-09-09 15:08:12 +000054
Chris Lattner46d6b132009-02-16 19:35:30 +000055 // If this is an Objective-C method implementation, check to see if the
56 // method was deprecated on the declaration, not the definition.
57 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) {
58 // The semantic decl context of a ObjCMethodDecl is the
59 // ObjCImplementationDecl.
60 if (ObjCImplementationDecl *Impl
61 = dyn_cast<ObjCImplementationDecl>(MD->getParent())) {
Mike Stump11289f42009-09-09 15:08:12 +000062
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +000063 MD = Impl->getClassInterface()->getMethod(MD->getSelector(),
Chris Lattner46d6b132009-02-16 19:35:30 +000064 MD->isInstanceMethod());
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +000065 isSilenced |= MD && MD->getAttr<DeprecatedAttr>();
Chris Lattner46d6b132009-02-16 19:35:30 +000066 }
67 }
68 }
Mike Stump11289f42009-09-09 15:08:12 +000069
Chris Lattner46d6b132009-02-16 19:35:30 +000070 if (!isSilenced)
Chris Lattner4bf74fd2009-02-15 22:43:40 +000071 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
72 }
73
Douglas Gregor171c45a2009-02-18 21:56:37 +000074 // See if this is a deleted function.
Douglas Gregorde681d42009-02-24 04:26:15 +000075 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor171c45a2009-02-18 21:56:37 +000076 if (FD->isDeleted()) {
77 Diag(Loc, diag::err_deleted_function_use);
78 Diag(D->getLocation(), diag::note_unavailable_here) << true;
79 return true;
80 }
Douglas Gregorde681d42009-02-24 04:26:15 +000081 }
Douglas Gregor171c45a2009-02-18 21:56:37 +000082
83 // See if the decl is unavailable
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +000084 if (D->getAttr<UnavailableAttr>()) {
Chris Lattner4bf74fd2009-02-15 22:43:40 +000085 Diag(Loc, diag::warn_unavailable) << D->getDeclName();
Douglas Gregor171c45a2009-02-18 21:56:37 +000086 Diag(D->getLocation(), diag::note_unavailable_here) << 0;
87 }
88
Douglas Gregor171c45a2009-02-18 21:56:37 +000089 return false;
Chris Lattner4bf74fd2009-02-15 22:43:40 +000090}
91
Fariborz Jahanian027b8862009-05-13 18:09:35 +000092/// DiagnoseSentinelCalls - This routine checks on method dispatch calls
Mike Stump11289f42009-09-09 15:08:12 +000093/// (and other functions in future), which have been declared with sentinel
Fariborz Jahanian027b8862009-05-13 18:09:35 +000094/// attribute. It warns if call does not have the sentinel argument.
95///
96void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
Mike Stump11289f42009-09-09 15:08:12 +000097 Expr **Args, unsigned NumArgs) {
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +000098 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
Mike Stump11289f42009-09-09 15:08:12 +000099 if (!attr)
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000100 return;
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000101 int sentinelPos = attr->getSentinel();
102 int nullPos = attr->getNullPos();
Mike Stump11289f42009-09-09 15:08:12 +0000103
Mike Stump87c57ac2009-05-16 07:39:55 +0000104 // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common
105 // base class. Then we won't be needing two versions of the same code.
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000106 unsigned int i = 0;
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000107 bool warnNotEnoughArgs = false;
108 int isMethod = 0;
109 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
110 // skip over named parameters.
111 ObjCMethodDecl::param_iterator P, E = MD->param_end();
112 for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) {
113 if (nullPos)
114 --nullPos;
115 else
116 ++i;
117 }
118 warnNotEnoughArgs = (P != E || i >= NumArgs);
119 isMethod = 1;
Mike Stump12b8ce12009-08-04 21:02:39 +0000120 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000121 // skip over named parameters.
122 ObjCMethodDecl::param_iterator P, E = FD->param_end();
123 for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) {
124 if (nullPos)
125 --nullPos;
126 else
127 ++i;
128 }
129 warnNotEnoughArgs = (P != E || i >= NumArgs);
Mike Stump12b8ce12009-08-04 21:02:39 +0000130 } else if (VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000131 // block or function pointer call.
132 QualType Ty = V->getType();
133 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stump11289f42009-09-09 15:08:12 +0000134 const FunctionType *FT = Ty->isFunctionPointerType()
John McCall9dd450b2009-09-21 23:43:11 +0000135 ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>()
136 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000137 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) {
138 unsigned NumArgsInProto = Proto->getNumArgs();
139 unsigned k;
140 for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) {
141 if (nullPos)
142 --nullPos;
143 else
144 ++i;
145 }
146 warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs);
147 }
148 if (Ty->isBlockPointerType())
149 isMethod = 2;
Mike Stump12b8ce12009-08-04 21:02:39 +0000150 } else
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000151 return;
Mike Stump12b8ce12009-08-04 21:02:39 +0000152 } else
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000153 return;
154
155 if (warnNotEnoughArgs) {
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000156 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000157 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000158 return;
159 }
160 int sentinel = i;
161 while (sentinelPos > 0 && i < NumArgs-1) {
162 --sentinelPos;
163 ++i;
164 }
165 if (sentinelPos > 0) {
166 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000167 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000168 return;
169 }
170 while (i < NumArgs-1) {
171 ++i;
172 ++sentinel;
173 }
174 Expr *sentinelExpr = Args[sentinel];
175 if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() ||
Douglas Gregor56751b52009-09-25 04:25:58 +0000176 !sentinelExpr->isNullPointerConstant(Context,
177 Expr::NPC_ValueDependentIsNull))) {
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000178 Diag(Loc, diag::warn_missing_sentinel) << isMethod;
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000179 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000180 }
181 return;
Fariborz Jahanian027b8862009-05-13 18:09:35 +0000182}
183
Douglas Gregor87f95b02009-02-26 21:00:50 +0000184SourceRange Sema::getExprRange(ExprTy *E) const {
185 Expr *Ex = (Expr *)E;
186 return Ex? Ex->getSourceRange() : SourceRange();
187}
188
Chris Lattner513165e2008-07-25 21:10:04 +0000189//===----------------------------------------------------------------------===//
190// Standard Promotions and Conversions
191//===----------------------------------------------------------------------===//
192
Chris Lattner513165e2008-07-25 21:10:04 +0000193/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
194void Sema::DefaultFunctionArrayConversion(Expr *&E) {
195 QualType Ty = E->getType();
196 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
197
Chris Lattner513165e2008-07-25 21:10:04 +0000198 if (Ty->isFunctionType())
Mike Stump11289f42009-09-09 15:08:12 +0000199 ImpCastExprToType(E, Context.getPointerType(Ty),
Anders Carlsson6904f642009-09-01 20:37:18 +0000200 CastExpr::CK_FunctionToPointerDecay);
Chris Lattner61f60a02008-07-25 21:33:13 +0000201 else if (Ty->isArrayType()) {
202 // In C90 mode, arrays only promote to pointers if the array expression is
203 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
204 // type 'array of type' is converted to an expression that has type 'pointer
205 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
206 // that has type 'array of type' ...". The relevant change is "an lvalue"
207 // (C90) to "an expression" (C99).
Argyrios Kyrtzidis9321c742008-09-11 04:25:59 +0000208 //
209 // C++ 4.2p1:
210 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
211 // T" can be converted to an rvalue of type "pointer to T".
212 //
213 if (getLangOptions().C99 || getLangOptions().CPlusPlus ||
214 E->isLvalue(Context) == Expr::LV_Valid)
Anders Carlsson8fc489d2009-08-07 23:48:20 +0000215 ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
216 CastExpr::CK_ArrayToPointerDecay);
Chris Lattner61f60a02008-07-25 21:33:13 +0000217 }
Chris Lattner513165e2008-07-25 21:10:04 +0000218}
219
220/// UsualUnaryConversions - Performs various conversions that are common to most
Mike Stump11289f42009-09-09 15:08:12 +0000221/// operators (C99 6.3). The conversions of array and function types are
Chris Lattner513165e2008-07-25 21:10:04 +0000222/// sometimes surpressed. For example, the array->pointer conversion doesn't
223/// apply if the array is an argument to the sizeof or address (&) operators.
224/// In these instances, this routine should *not* be called.
225Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
226 QualType Ty = Expr->getType();
227 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
Mike Stump11289f42009-09-09 15:08:12 +0000228
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000229 // C99 6.3.1.1p2:
230 //
231 // The following may be used in an expression wherever an int or
232 // unsigned int may be used:
233 // - an object or expression with an integer type whose integer
234 // conversion rank is less than or equal to the rank of int
235 // and unsigned int.
236 // - A bit-field of type _Bool, int, signed int, or unsigned int.
237 //
238 // If an int can represent all values of the original type, the
239 // value is converted to an int; otherwise, it is converted to an
240 // unsigned int. These are called the integer promotions. All
241 // other types are unchanged by the integer promotions.
Eli Friedman629ffb92009-08-20 04:21:42 +0000242 QualType PTy = Context.isPromotableBitField(Expr);
243 if (!PTy.isNull()) {
244 ImpCastExprToType(Expr, PTy);
245 return Expr;
246 }
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000247 if (Ty->isPromotableIntegerType()) {
Eli Friedman5ae98ee2009-08-19 07:44:53 +0000248 QualType PT = Context.getPromotedIntegerType(Ty);
249 ImpCastExprToType(Expr, PT);
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000250 return Expr;
Eli Friedman629ffb92009-08-20 04:21:42 +0000251 }
252
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000253 DefaultFunctionArrayConversion(Expr);
Chris Lattner513165e2008-07-25 21:10:04 +0000254 return Expr;
255}
256
Chris Lattner2ce500f2008-07-25 22:25:12 +0000257/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
Mike Stump11289f42009-09-09 15:08:12 +0000258/// do not have a prototype. Arguments that have type float are promoted to
Chris Lattner2ce500f2008-07-25 22:25:12 +0000259/// double. All other argument types are converted by UsualUnaryConversions().
260void Sema::DefaultArgumentPromotion(Expr *&Expr) {
261 QualType Ty = Expr->getType();
262 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
Mike Stump11289f42009-09-09 15:08:12 +0000263
Chris Lattner2ce500f2008-07-25 22:25:12 +0000264 // If this is a 'float' (CVR qualified or typedef) promote to double.
John McCall9dd450b2009-09-21 23:43:11 +0000265 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
Chris Lattner2ce500f2008-07-25 22:25:12 +0000266 if (BT->getKind() == BuiltinType::Float)
267 return ImpCastExprToType(Expr, Context.DoubleTy);
Mike Stump11289f42009-09-09 15:08:12 +0000268
Chris Lattner2ce500f2008-07-25 22:25:12 +0000269 UsualUnaryConversions(Expr);
270}
271
Chris Lattnera8a7d0f2009-04-12 08:11:20 +0000272/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
273/// will warn if the resulting type is not a POD type, and rejects ObjC
274/// interfaces passed by value. This returns true if the argument type is
275/// completely illegal.
276bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) {
Anders Carlssona7d069d2009-01-16 16:48:51 +0000277 DefaultArgumentPromotion(Expr);
Mike Stump11289f42009-09-09 15:08:12 +0000278
Chris Lattnera8a7d0f2009-04-12 08:11:20 +0000279 if (Expr->getType()->isObjCInterfaceType()) {
280 Diag(Expr->getLocStart(),
281 diag::err_cannot_pass_objc_interface_to_vararg)
282 << Expr->getType() << CT;
283 return true;
Anders Carlssona7d069d2009-01-16 16:48:51 +0000284 }
Mike Stump11289f42009-09-09 15:08:12 +0000285
Chris Lattnera8a7d0f2009-04-12 08:11:20 +0000286 if (!Expr->getType()->isPODType())
287 Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg)
288 << Expr->getType() << CT;
289
290 return false;
Anders Carlssona7d069d2009-01-16 16:48:51 +0000291}
292
293
Chris Lattner513165e2008-07-25 21:10:04 +0000294/// UsualArithmeticConversions - Performs various conversions that are common to
295/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
Mike Stump11289f42009-09-09 15:08:12 +0000296/// routine returns the first non-arithmetic type found. The client is
Chris Lattner513165e2008-07-25 21:10:04 +0000297/// responsible for emitting appropriate error diagnostics.
298/// FIXME: verify the conversion rules for "complex int" are consistent with
299/// GCC.
300QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
301 bool isCompAssign) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +0000302 if (!isCompAssign)
Chris Lattner513165e2008-07-25 21:10:04 +0000303 UsualUnaryConversions(lhsExpr);
Eli Friedman8b7b1b12009-03-28 01:22:36 +0000304
305 UsualUnaryConversions(rhsExpr);
Douglas Gregora11693b2008-11-12 17:17:38 +0000306
Mike Stump11289f42009-09-09 15:08:12 +0000307 // For conversion purposes, we ignore any qualifiers.
Chris Lattner513165e2008-07-25 21:10:04 +0000308 // For example, "const float" and "float" are equivalent.
Chris Lattner574dee62008-07-26 22:17:49 +0000309 QualType lhs =
310 Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType();
Mike Stump11289f42009-09-09 15:08:12 +0000311 QualType rhs =
Chris Lattner574dee62008-07-26 22:17:49 +0000312 Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType();
Douglas Gregora11693b2008-11-12 17:17:38 +0000313
314 // If both types are identical, no conversion is needed.
315 if (lhs == rhs)
316 return lhs;
317
318 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
319 // The caller can deal with this (e.g. pointer + int).
320 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
321 return lhs;
322
Douglas Gregord2c2d172009-05-02 00:36:19 +0000323 // Perform bitfield promotions.
Eli Friedman629ffb92009-08-20 04:21:42 +0000324 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr);
Douglas Gregord2c2d172009-05-02 00:36:19 +0000325 if (!LHSBitfieldPromoteTy.isNull())
326 lhs = LHSBitfieldPromoteTy;
Eli Friedman629ffb92009-08-20 04:21:42 +0000327 QualType RHSBitfieldPromoteTy = Context.isPromotableBitField(rhsExpr);
Douglas Gregord2c2d172009-05-02 00:36:19 +0000328 if (!RHSBitfieldPromoteTy.isNull())
329 rhs = RHSBitfieldPromoteTy;
330
Eli Friedman5ae98ee2009-08-19 07:44:53 +0000331 QualType destType = Context.UsualArithmeticConversionsType(lhs, rhs);
Eli Friedman8b7b1b12009-03-28 01:22:36 +0000332 if (!isCompAssign)
Douglas Gregora11693b2008-11-12 17:17:38 +0000333 ImpCastExprToType(lhsExpr, destType);
Eli Friedman8b7b1b12009-03-28 01:22:36 +0000334 ImpCastExprToType(rhsExpr, destType);
Douglas Gregora11693b2008-11-12 17:17:38 +0000335 return destType;
336}
337
Chris Lattner513165e2008-07-25 21:10:04 +0000338//===----------------------------------------------------------------------===//
339// Semantic Analysis for various Expression Types
340//===----------------------------------------------------------------------===//
341
342
Steve Naroff83895f72007-09-16 03:34:24 +0000343/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Chris Lattner5b183d82006-11-10 05:03:26 +0000344/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
345/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
346/// multiple tokens. However, the common case is that StringToks points to one
347/// string.
Sebastian Redlffbcf962009-01-18 18:53:16 +0000348///
349Action::OwningExprResult
Steve Naroff83895f72007-09-16 03:34:24 +0000350Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Chris Lattner5b183d82006-11-10 05:03:26 +0000351 assert(NumStringToks && "Must have at least one string!");
352
Chris Lattner8a24e582009-01-16 18:51:42 +0000353 StringLiteralParser Literal(StringToks, NumStringToks, PP);
Steve Naroff4f88b312007-03-13 22:37:02 +0000354 if (Literal.hadError)
Sebastian Redlffbcf962009-01-18 18:53:16 +0000355 return ExprError();
Chris Lattner5b183d82006-11-10 05:03:26 +0000356
Chris Lattner23b7eb62007-06-15 23:05:46 +0000357 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
Chris Lattner5b183d82006-11-10 05:03:26 +0000358 for (unsigned i = 0; i != NumStringToks; ++i)
359 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattner36fc8792008-02-11 00:02:17 +0000360
Chris Lattner36fc8792008-02-11 00:02:17 +0000361 QualType StrTy = Context.CharTy;
Argyrios Kyrtzidiscbad7252008-08-09 17:20:01 +0000362 if (Literal.AnyWide) StrTy = Context.getWCharType();
Chris Lattner36fc8792008-02-11 00:02:17 +0000363 if (Literal.Pascal) StrTy = Context.UnsignedCharTy;
Douglas Gregoraa1e21d2008-09-12 00:47:35 +0000364
365 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
366 if (getLangOptions().CPlusPlus)
367 StrTy.addConst();
Sebastian Redlffbcf962009-01-18 18:53:16 +0000368
Chris Lattner36fc8792008-02-11 00:02:17 +0000369 // Get an array type for the string, according to C99 6.4.5. This includes
370 // the nul terminator character as well as the string length for pascal
371 // strings.
372 StrTy = Context.getConstantArrayType(StrTy,
Chris Lattnerd42c29f2009-02-26 23:01:51 +0000373 llvm::APInt(32, Literal.GetNumStringChars()+1),
Chris Lattner36fc8792008-02-11 00:02:17 +0000374 ArrayType::Normal, 0);
Mike Stump11289f42009-09-09 15:08:12 +0000375
Chris Lattner5b183d82006-11-10 05:03:26 +0000376 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Mike Stump11289f42009-09-09 15:08:12 +0000377 return Owned(StringLiteral::Create(Context, Literal.GetString(),
Chris Lattnerf83b5af2009-02-18 06:40:38 +0000378 Literal.GetStringLength(),
379 Literal.AnyWide, StrTy,
380 &StringTokLocs[0],
381 StringTokLocs.size()));
Chris Lattner5b183d82006-11-10 05:03:26 +0000382}
383
Chris Lattner2a9d9892008-10-20 05:16:36 +0000384/// ShouldSnapshotBlockValueReference - Return true if a reference inside of
385/// CurBlock to VD should cause it to be snapshotted (as we do for auto
386/// variables defined outside the block) or false if this is not needed (e.g.
387/// for values inside the block or for globals).
388///
Chris Lattner497d7b02009-04-21 22:26:47 +0000389/// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records
390/// up-to-date.
391///
Chris Lattner2a9d9892008-10-20 05:16:36 +0000392static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock,
393 ValueDecl *VD) {
394 // If the value is defined inside the block, we couldn't snapshot it even if
395 // we wanted to.
396 if (CurBlock->TheDecl == VD->getDeclContext())
397 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000398
Chris Lattner2a9d9892008-10-20 05:16:36 +0000399 // If this is an enum constant or function, it is constant, don't snapshot.
400 if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD))
401 return false;
402
403 // If this is a reference to an extern, static, or global variable, no need to
404 // snapshot it.
405 // FIXME: What about 'const' variables in C++?
406 if (const VarDecl *Var = dyn_cast<VarDecl>(VD))
Chris Lattner497d7b02009-04-21 22:26:47 +0000407 if (!Var->hasLocalStorage())
408 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000409
Chris Lattner497d7b02009-04-21 22:26:47 +0000410 // Blocks that have these can't be constant.
411 CurBlock->hasBlockDeclRefExprs = true;
412
413 // If we have nested blocks, the decl may be declared in an outer block (in
414 // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may
415 // be defined outside all of the current blocks (in which case the blocks do
416 // all get the bit). Walk the nesting chain.
417 for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock;
418 NextBlock = NextBlock->PrevBlockInfo) {
419 // If we found the defining block for the variable, don't mark the block as
420 // having a reference outside it.
421 if (NextBlock->TheDecl == VD->getDeclContext())
422 break;
Mike Stump11289f42009-09-09 15:08:12 +0000423
Chris Lattner497d7b02009-04-21 22:26:47 +0000424 // Otherwise, the DeclRef from the inner block causes the outer one to need
425 // a snapshot as well.
426 NextBlock->hasBlockDeclRefExprs = true;
427 }
Mike Stump11289f42009-09-09 15:08:12 +0000428
Chris Lattner2a9d9892008-10-20 05:16:36 +0000429 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000430}
431
Chris Lattner2a9d9892008-10-20 05:16:36 +0000432
433
Steve Naroff30d242c2007-09-15 18:49:24 +0000434/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Chris Lattnerac18be92006-11-20 06:49:47 +0000435/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
Steve Naroff157c4032008-03-19 23:46:26 +0000436/// identifier is used in a function call context.
Sebastian Redlffbcf962009-01-18 18:53:16 +0000437/// SS is only used for a C++ qualified-id (foo::bar) to indicate the
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000438/// class or namespace that the identifier must be a member of.
Sebastian Redlffbcf962009-01-18 18:53:16 +0000439Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
440 IdentifierInfo &II,
441 bool HasTrailingLParen,
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000442 const CXXScopeSpec *SS,
443 bool isAddressOfOperand) {
444 return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS,
Douglas Gregorb8a9a412009-02-04 15:01:18 +0000445 isAddressOfOperand);
Douglas Gregor4ea80432008-11-18 15:03:34 +0000446}
447
Douglas Gregorc7acfdf2009-01-06 05:10:23 +0000448/// BuildDeclRefExpr - Build either a DeclRefExpr or a
449/// QualifiedDeclRefExpr based on whether or not SS is a
450/// nested-name-specifier.
Anders Carlsson946b86d2009-06-24 00:10:43 +0000451Sema::OwningExprResult
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000452Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc,
453 bool TypeDependent, bool ValueDependent,
454 const CXXScopeSpec *SS) {
Anders Carlsson364035d12009-06-26 19:16:07 +0000455 if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) {
456 Diag(Loc,
Mike Stump11289f42009-09-09 15:08:12 +0000457 diag::err_auto_variable_cannot_appear_in_own_initializer)
Anders Carlsson364035d12009-06-26 19:16:07 +0000458 << D->getDeclName();
459 return ExprError();
460 }
Mike Stump11289f42009-09-09 15:08:12 +0000461
Anders Carlsson946b86d2009-06-24 00:10:43 +0000462 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
463 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
464 if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) {
465 if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) {
Mike Stump11289f42009-09-09 15:08:12 +0000466 Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function)
Anders Carlsson946b86d2009-06-24 00:10:43 +0000467 << D->getIdentifier() << FD->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +0000468 Diag(D->getLocation(), diag::note_local_variable_declared_here)
Anders Carlsson946b86d2009-06-24 00:10:43 +0000469 << D->getIdentifier();
470 return ExprError();
471 }
472 }
473 }
474 }
Mike Stump11289f42009-09-09 15:08:12 +0000475
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000476 MarkDeclarationReferenced(Loc, D);
Mike Stump11289f42009-09-09 15:08:12 +0000477
Anders Carlsson946b86d2009-06-24 00:10:43 +0000478 Expr *E;
Douglas Gregor18353912009-03-19 03:51:16 +0000479 if (SS && !SS->isEmpty()) {
Mike Stump11289f42009-09-09 15:08:12 +0000480 E = new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent,
Anders Carlsson946b86d2009-06-24 00:10:43 +0000481 ValueDependent, SS->getRange(),
Douglas Gregorc23500e2009-03-26 23:56:24 +0000482 static_cast<NestedNameSpecifier *>(SS->getScopeRep()));
Douglas Gregor18353912009-03-19 03:51:16 +0000483 } else
Anders Carlsson946b86d2009-06-24 00:10:43 +0000484 E = new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent);
Mike Stump11289f42009-09-09 15:08:12 +0000485
Anders Carlsson946b86d2009-06-24 00:10:43 +0000486 return Owned(E);
Douglas Gregorc7acfdf2009-01-06 05:10:23 +0000487}
488
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000489/// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or
490/// variable corresponding to the anonymous union or struct whose type
491/// is Record.
Douglas Gregorbcced4e2009-04-09 21:40:53 +0000492static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context,
493 RecordDecl *Record) {
Mike Stump11289f42009-09-09 15:08:12 +0000494 assert(Record->isAnonymousStructOrUnion() &&
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000495 "Record must be an anonymous struct or union!");
Mike Stump11289f42009-09-09 15:08:12 +0000496
Mike Stump87c57ac2009-05-16 07:39:55 +0000497 // FIXME: Once Decls are directly linked together, this will be an O(1)
498 // operation rather than a slow walk through DeclContext's vector (which
499 // itself will be eliminated). DeclGroups might make this even better.
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000500 DeclContext *Ctx = Record->getDeclContext();
Mike Stump11289f42009-09-09 15:08:12 +0000501 for (DeclContext::decl_iterator D = Ctx->decls_begin(),
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000502 DEnd = Ctx->decls_end();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000503 D != DEnd; ++D) {
504 if (*D == Record) {
505 // The object for the anonymous struct/union directly
506 // follows its type in the list of declarations.
507 ++D;
508 assert(D != DEnd && "Missing object for anonymous record");
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000509 assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed");
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000510 return *D;
511 }
512 }
513
514 assert(false && "Missing object for anonymous record");
515 return 0;
516}
517
Douglas Gregord5846a12009-04-15 06:41:24 +0000518/// \brief Given a field that represents a member of an anonymous
519/// struct/union, build the path from that field's context to the
520/// actual member.
521///
522/// Construct the sequence of field member references we'll have to
523/// perform to get to the field in the anonymous union/struct. The
524/// list of members is built from the field outward, so traverse it
525/// backwards to go from an object in the current context to the field
526/// we found.
527///
528/// \returns The variable from which the field access should begin,
529/// for an anonymous struct/union that is not a member of another
530/// class. Otherwise, returns NULL.
531VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field,
532 llvm::SmallVectorImpl<FieldDecl *> &Path) {
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000533 assert(Field->getDeclContext()->isRecord() &&
534 cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion()
535 && "Field must be stored inside an anonymous struct or union");
536
Douglas Gregord5846a12009-04-15 06:41:24 +0000537 Path.push_back(Field);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000538 VarDecl *BaseObject = 0;
539 DeclContext *Ctx = Field->getDeclContext();
540 do {
541 RecordDecl *Record = cast<RecordDecl>(Ctx);
Douglas Gregorbcced4e2009-04-09 21:40:53 +0000542 Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000543 if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject))
Douglas Gregord5846a12009-04-15 06:41:24 +0000544 Path.push_back(AnonField);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000545 else {
546 BaseObject = cast<VarDecl>(AnonObject);
547 break;
548 }
549 Ctx = Ctx->getParent();
Mike Stump11289f42009-09-09 15:08:12 +0000550 } while (Ctx->isRecord() &&
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000551 cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion());
Douglas Gregord5846a12009-04-15 06:41:24 +0000552
553 return BaseObject;
554}
555
556Sema::OwningExprResult
557Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc,
558 FieldDecl *Field,
559 Expr *BaseObjectExpr,
560 SourceLocation OpLoc) {
561 llvm::SmallVector<FieldDecl *, 4> AnonFields;
Mike Stump11289f42009-09-09 15:08:12 +0000562 VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field,
Douglas Gregord5846a12009-04-15 06:41:24 +0000563 AnonFields);
564
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000565 // Build the expression that refers to the base object, from
566 // which we will build a sequence of member references to each
567 // of the anonymous union objects and, eventually, the field we
568 // found via name lookup.
569 bool BaseObjectIsPointer = false;
John McCall8ccfcb52009-09-24 19:53:00 +0000570 Qualifiers BaseQuals;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000571 if (BaseObject) {
572 // BaseObject is an anonymous struct/union variable (and is,
573 // therefore, not part of another non-anonymous record).
Ted Kremenek5a201952009-02-07 01:47:29 +0000574 if (BaseObjectExpr) BaseObjectExpr->Destroy(Context);
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000575 MarkDeclarationReferenced(Loc, BaseObject);
Steve Narofff6009ed2009-01-21 00:14:39 +0000576 BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(),
Mike Stump4e1f26a2009-02-19 03:04:26 +0000577 SourceLocation());
John McCall8ccfcb52009-09-24 19:53:00 +0000578 BaseQuals
579 = Context.getCanonicalType(BaseObject->getType()).getQualifiers();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000580 } else if (BaseObjectExpr) {
581 // The caller provided the base object expression. Determine
582 // whether its a pointer and whether it adds any qualifiers to the
583 // anonymous struct/union fields we're looking into.
584 QualType ObjectType = BaseObjectExpr->getType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000585 if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) {
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000586 BaseObjectIsPointer = true;
587 ObjectType = ObjectPtr->getPointeeType();
588 }
John McCall8ccfcb52009-09-24 19:53:00 +0000589 BaseQuals
590 = Context.getCanonicalType(ObjectType).getQualifiers();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000591 } else {
592 // We've found a member of an anonymous struct/union that is
593 // inside a non-anonymous struct/union, so in a well-formed
594 // program our base object expression is "this".
595 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
596 if (!MD->isStatic()) {
Mike Stump11289f42009-09-09 15:08:12 +0000597 QualType AnonFieldType
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000598 = Context.getTagDeclType(
599 cast<RecordDecl>(AnonFields.back()->getDeclContext()));
600 QualType ThisType = Context.getTagDeclType(MD->getParent());
Mike Stump11289f42009-09-09 15:08:12 +0000601 if ((Context.getCanonicalType(AnonFieldType)
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000602 == Context.getCanonicalType(ThisType)) ||
603 IsDerivedFrom(ThisType, AnonFieldType)) {
604 // Our base object expression is "this".
Steve Narofff6009ed2009-01-21 00:14:39 +0000605 BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(),
Mike Stump4e1f26a2009-02-19 03:04:26 +0000606 MD->getThisType(Context));
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000607 BaseObjectIsPointer = true;
608 }
609 } else {
Sebastian Redlffbcf962009-01-18 18:53:16 +0000610 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
611 << Field->getDeclName());
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000612 }
John McCall8ccfcb52009-09-24 19:53:00 +0000613 BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000614 }
615
Mike Stump11289f42009-09-09 15:08:12 +0000616 if (!BaseObjectExpr)
Sebastian Redlffbcf962009-01-18 18:53:16 +0000617 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
618 << Field->getDeclName());
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000619 }
620
621 // Build the implicit member references to the field of the
622 // anonymous struct/union.
623 Expr *Result = BaseObjectExpr;
John McCall8ccfcb52009-09-24 19:53:00 +0000624 Qualifiers ResultQuals = BaseQuals;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000625 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
626 FI = AnonFields.rbegin(), FIEnd = AnonFields.rend();
627 FI != FIEnd; ++FI) {
628 QualType MemberType = (*FI)->getType();
John McCall8ccfcb52009-09-24 19:53:00 +0000629 Qualifiers MemberTypeQuals =
630 Context.getCanonicalType(MemberType).getQualifiers();
631
632 // CVR attributes from the base are picked up by members,
633 // except that 'mutable' members don't pick up 'const'.
634 if ((*FI)->isMutable())
635 ResultQuals.removeConst();
636
637 // GC attributes are never picked up by members.
638 ResultQuals.removeObjCGCAttr();
639
640 // TR 18037 does not allow fields to be declared with address spaces.
641 assert(!MemberTypeQuals.hasAddressSpace());
642
643 Qualifiers NewQuals = ResultQuals + MemberTypeQuals;
644 if (NewQuals != MemberTypeQuals)
645 MemberType = Context.getQualifiedType(MemberType, NewQuals);
646
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000647 MarkDeclarationReferenced(Loc, *FI);
Douglas Gregorc1905232009-08-26 22:36:53 +0000648 // FIXME: Might this end up being a qualified name?
Steve Narofff6009ed2009-01-21 00:14:39 +0000649 Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI,
650 OpLoc, MemberType);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000651 BaseObjectIsPointer = false;
John McCall8ccfcb52009-09-24 19:53:00 +0000652 ResultQuals = NewQuals;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000653 }
654
Sebastian Redlffbcf962009-01-18 18:53:16 +0000655 return Owned(Result);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000656}
657
Douglas Gregor4ea80432008-11-18 15:03:34 +0000658/// ActOnDeclarationNameExpr - The parser has read some kind of name
659/// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine
660/// performs lookup on that name and returns an expression that refers
661/// to that name. This routine isn't directly called from the parser,
662/// because the parser doesn't know about DeclarationName. Rather,
663/// this routine is called by ActOnIdentifierExpr,
664/// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr,
665/// which form the DeclarationName from the corresponding syntactic
666/// forms.
667///
668/// HasTrailingLParen indicates whether this identifier is used in a
669/// function call context. LookupCtx is only used for a C++
670/// qualified-id (foo::bar) to indicate the class or namespace that
671/// the identifier must be a member of.
Douglas Gregorb0846b02008-12-06 00:22:45 +0000672///
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000673/// isAddressOfOperand means that this expression is the direct operand
674/// of an address-of operator. This matters because this is the only
675/// situation where a qualified name referencing a non-static member may
676/// appear outside a member function of this class.
Sebastian Redlffbcf962009-01-18 18:53:16 +0000677Sema::OwningExprResult
678Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc,
679 DeclarationName Name, bool HasTrailingLParen,
Mike Stump11289f42009-09-09 15:08:12 +0000680 const CXXScopeSpec *SS,
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000681 bool isAddressOfOperand) {
Chris Lattner59a25942008-03-31 00:36:02 +0000682 // Could be enum-constant, value decl, instance variable, etc.
Douglas Gregored8f2882009-01-30 01:04:22 +0000683 if (SS && SS->isInvalid())
684 return ExprError();
Douglas Gregor90a1a652009-03-19 17:26:29 +0000685
686 // C++ [temp.dep.expr]p3:
687 // An id-expression is type-dependent if it contains:
688 // -- a nested-name-specifier that contains a class-name that
689 // names a dependent type.
Douglas Gregor82dbbd72009-05-29 14:49:33 +0000690 // FIXME: Member of the current instantiation.
Douglas Gregor90a1a652009-03-19 17:26:29 +0000691 if (SS && isDependentScopeSpecifier(*SS)) {
Douglas Gregorf21eb492009-03-26 23:50:42 +0000692 return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy,
Mike Stump11289f42009-09-09 15:08:12 +0000693 Loc, SS->getRange(),
Anders Carlsson03f89b12009-07-09 00:05:08 +0000694 static_cast<NestedNameSpecifier *>(SS->getScopeRep()),
695 isAddressOfOperand));
Douglas Gregor90a1a652009-03-19 17:26:29 +0000696 }
697
John McCall9f3059a2009-10-09 21:13:30 +0000698 LookupResult Lookup;
699 LookupParsedName(Lookup, S, SS, Name, LookupOrdinaryName, false, true, Loc);
Douglas Gregor960b5bc2009-01-15 00:26:24 +0000700
Sebastian Redlffbcf962009-01-18 18:53:16 +0000701 if (Lookup.isAmbiguous()) {
702 DiagnoseAmbiguousLookup(Lookup, Name, Loc,
703 SS && SS->isSet() ? SS->getRange()
704 : SourceRange());
705 return ExprError();
Chris Lattnercd2a8c52009-04-24 22:30:50 +0000706 }
Mike Stump11289f42009-09-09 15:08:12 +0000707
John McCall9f3059a2009-10-09 21:13:30 +0000708 NamedDecl *D = Lookup.getAsSingleDecl(Context);
Douglas Gregorb0846b02008-12-06 00:22:45 +0000709
Chris Lattner59a25942008-03-31 00:36:02 +0000710 // If this reference is in an Objective-C method, then ivar lookup happens as
711 // well.
Douglas Gregor4ea80432008-11-18 15:03:34 +0000712 IdentifierInfo *II = Name.getAsIdentifierInfo();
713 if (II && getCurMethodDecl()) {
Chris Lattner59a25942008-03-31 00:36:02 +0000714 // There are two cases to handle here. 1) scoped lookup could have failed,
715 // in which case we should look for an ivar. 2) scoped lookup could have
Mike Stump11289f42009-09-09 15:08:12 +0000716 // found a decl, but that decl is outside the current instance method (i.e.
717 // a global variable). In these two cases, we do a lookup for an ivar with
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000718 // this name, if the lookup sucedes, we replace it our current decl.
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000719 if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) {
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +0000720 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +0000721 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000722 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Chris Lattner50afe312009-02-16 17:19:12 +0000723 // Check if referencing a field with __attribute__((deprecated)).
Douglas Gregor171c45a2009-02-18 21:56:37 +0000724 if (DiagnoseUseOfDecl(IV, Loc))
725 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +0000726
Chris Lattnercd2a8c52009-04-24 22:30:50 +0000727 // If we're referencing an invalid decl, just return this as a silent
728 // error node. The error diagnostic was already emitted on the decl.
729 if (IV->isInvalidDecl())
730 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +0000731
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000732 bool IsClsMethod = getCurMethodDecl()->isClassMethod();
733 // If a class method attemps to use a free standing ivar, this is
734 // an error.
735 if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod())
736 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
737 << IV->getDeclName());
738 // If a class method uses a global variable, even if an ivar with
739 // same name exists, use the global.
740 if (!IsClsMethod) {
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +0000741 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
742 ClassDeclared != IFace)
743 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
Mike Stump87c57ac2009-05-16 07:39:55 +0000744 // FIXME: This should use a new expr for a direct reference, don't
745 // turn this into Self->ivar, just return a BareIVarExpr or something.
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000746 IdentifierInfo &II = Context.Idents.get("self");
Argyrios Kyrtzidise1a8c622009-07-18 08:49:37 +0000747 OwningExprResult SelfExpr = ActOnIdentifierExpr(S, SourceLocation(),
748 II, false);
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000749 MarkDeclarationReferenced(Loc, IV);
Mike Stump11289f42009-09-09 15:08:12 +0000750 return Owned(new (Context)
751 ObjCIvarRefExpr(IV, IV->getType(), Loc,
Anders Carlssonb781bcd2009-05-01 19:49:17 +0000752 SelfExpr.takeAs<Expr>(), true, true));
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000753 }
Chris Lattner59a25942008-03-31 00:36:02 +0000754 }
Mike Stump12b8ce12009-08-04 21:02:39 +0000755 } else if (getCurMethodDecl()->isInstanceMethod()) {
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000756 // We should warn if a local variable hides an ivar.
757 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +0000758 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000759 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +0000760 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
761 IFace == ClassDeclared)
Chris Lattnercd2a8c52009-04-24 22:30:50 +0000762 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +0000763 }
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000764 }
Steve Naroff0d7c6db2008-08-10 19:10:41 +0000765 // Needed to implement property "super.method" notation.
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000766 if (D == 0 && II->isStr("super")) {
Steve Naroffe29c4dd2009-03-05 20:12:00 +0000767 QualType T;
Mike Stump11289f42009-09-09 15:08:12 +0000768
Steve Naroffe29c4dd2009-03-05 20:12:00 +0000769 if (getCurMethodDecl()->isInstanceMethod())
Steve Naroff7cae42b2009-07-10 23:34:53 +0000770 T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType(
771 getCurMethodDecl()->getClassInterface()));
Steve Naroffe29c4dd2009-03-05 20:12:00 +0000772 else
773 T = Context.getObjCClassType();
Steve Narofff6009ed2009-01-21 00:14:39 +0000774 return Owned(new (Context) ObjCSuperExpr(Loc, T));
Steve Naroffebf4cb42008-06-02 23:03:37 +0000775 }
Chris Lattner59a25942008-03-31 00:36:02 +0000776 }
Douglas Gregorf15f5d32009-02-16 19:28:42 +0000777
Douglas Gregor171c45a2009-02-18 21:56:37 +0000778 // Determine whether this name might be a candidate for
779 // argument-dependent lookup.
Mike Stump11289f42009-09-09 15:08:12 +0000780 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
Douglas Gregor171c45a2009-02-18 21:56:37 +0000781 HasTrailingLParen;
782
783 if (ADL && D == 0) {
Douglas Gregorf15f5d32009-02-16 19:28:42 +0000784 // We've seen something of the form
785 //
786 // identifier(
787 //
788 // and we did not find any entity by the name
789 // "identifier". However, this identifier is still subject to
790 // argument-dependent lookup, so keep track of the name.
791 return Owned(new (Context) UnresolvedFunctionNameExpr(Name,
792 Context.OverloadTy,
793 Loc));
794 }
795
Chris Lattner17ed4872006-11-20 04:58:19 +0000796 if (D == 0) {
Bill Wendling4073ed52007-02-13 01:51:42 +0000797 // Otherwise, this could be an implicitly declared function reference (legal
Chris Lattner9561a0b2007-01-28 08:20:04 +0000798 // in C90, extension in C99).
Douglas Gregor4ea80432008-11-18 15:03:34 +0000799 if (HasTrailingLParen && II &&
Chris Lattner59a25942008-03-31 00:36:02 +0000800 !getLangOptions().CPlusPlus) // Not in C++.
Douglas Gregor4ea80432008-11-18 15:03:34 +0000801 D = ImplicitlyDefineFunction(Loc, *II, S);
Steve Naroff92e30f82007-04-02 22:35:25 +0000802 else {
Chris Lattnerac18be92006-11-20 06:49:47 +0000803 // If this name wasn't predeclared and if this is not a function call,
804 // diagnose the problem.
Douglas Gregore40876a2009-10-13 21:16:44 +0000805 if (SS && !SS->isEmpty())
806 return ExprError(Diag(Loc, diag::err_no_member)
807 << Name << computeDeclContext(*SS, false)
808 << SS->getRange());
809 else if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
Douglas Gregor4ea80432008-11-18 15:03:34 +0000810 Name.getNameKind() == DeclarationName::CXXConversionFunctionName)
Sebastian Redlffbcf962009-01-18 18:53:16 +0000811 return ExprError(Diag(Loc, diag::err_undeclared_use)
812 << Name.getAsString());
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000813 else
Sebastian Redlffbcf962009-01-18 18:53:16 +0000814 return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name);
Steve Naroff92e30f82007-04-02 22:35:25 +0000815 }
Chris Lattner17ed4872006-11-20 04:58:19 +0000816 }
Mike Stump11289f42009-09-09 15:08:12 +0000817
Douglas Gregor3256d042009-06-30 15:47:41 +0000818 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
819 // Warn about constructs like:
820 // if (void *X = foo()) { ... } else { X }.
821 // In the else block, the pointer is always false.
Mike Stump11289f42009-09-09 15:08:12 +0000822
Douglas Gregor3256d042009-06-30 15:47:41 +0000823 // FIXME: In a template instantiation, we don't have scope
824 // information to check this property.
825 if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) {
826 Scope *CheckS = S;
827 while (CheckS) {
Mike Stump11289f42009-09-09 15:08:12 +0000828 if (CheckS->isWithinElse() &&
Douglas Gregor3256d042009-06-30 15:47:41 +0000829 CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) {
830 if (Var->getType()->isBooleanType())
831 ExprError(Diag(Loc, diag::warn_value_always_false)
832 << Var->getDeclName());
833 else
834 ExprError(Diag(Loc, diag::warn_value_always_zero)
835 << Var->getDeclName());
836 break;
837 }
Mike Stump11289f42009-09-09 15:08:12 +0000838
Douglas Gregor3256d042009-06-30 15:47:41 +0000839 // Move up one more control parent to check again.
840 CheckS = CheckS->getControlParent();
841 if (CheckS)
842 CheckS = CheckS->getParent();
843 }
844 }
845 } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) {
846 if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) {
847 // C99 DR 316 says that, if a function type comes from a
848 // function definition (without a prototype), that type is only
849 // used for checking compatibility. Therefore, when referencing
850 // the function, we pretend that we don't have the full function
851 // type.
852 if (DiagnoseUseOfDecl(Func, Loc))
853 return ExprError();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000854
Douglas Gregor3256d042009-06-30 15:47:41 +0000855 QualType T = Func->getType();
856 QualType NoProtoType = T;
John McCall9dd450b2009-09-21 23:43:11 +0000857 if (const FunctionProtoType *Proto = T->getAs<FunctionProtoType>())
Douglas Gregor3256d042009-06-30 15:47:41 +0000858 NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType());
859 return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS);
860 }
861 }
Mike Stump11289f42009-09-09 15:08:12 +0000862
Douglas Gregor3256d042009-06-30 15:47:41 +0000863 return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand);
864}
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000865/// \brief Cast member's object to its own class if necessary.
Fariborz Jahanian3f150832009-07-29 19:40:11 +0000866bool
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000867Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) {
868 if (FieldDecl *FD = dyn_cast<FieldDecl>(Member))
Mike Stump11289f42009-09-09 15:08:12 +0000869 if (CXXRecordDecl *RD =
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000870 dyn_cast<CXXRecordDecl>(FD->getDeclContext())) {
Mike Stump11289f42009-09-09 15:08:12 +0000871 QualType DestType =
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000872 Context.getCanonicalType(Context.getTypeDeclType(RD));
Fariborz Jahanian4b12ed12009-07-29 20:41:46 +0000873 if (DestType->isDependentType() || From->getType()->isDependentType())
874 return false;
875 QualType FromRecordType = From->getType();
876 QualType DestRecordType = DestType;
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000877 if (FromRecordType->getAs<PointerType>()) {
Fariborz Jahanian4b12ed12009-07-29 20:41:46 +0000878 DestType = Context.getPointerType(DestType);
879 FromRecordType = FromRecordType->getPointeeType();
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000880 }
Fariborz Jahanian4b12ed12009-07-29 20:41:46 +0000881 if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) &&
882 CheckDerivedToBaseConversion(FromRecordType,
883 DestRecordType,
884 From->getSourceRange().getBegin(),
885 From->getSourceRange()))
886 return true;
Anders Carlssona076d142009-07-31 01:23:52 +0000887 ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase,
888 /*isLvalue=*/true);
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000889 }
Fariborz Jahanian3f150832009-07-29 19:40:11 +0000890 return false;
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000891}
Douglas Gregor3256d042009-06-30 15:47:41 +0000892
Douglas Gregorf405d7e2009-08-31 23:41:50 +0000893/// \brief Build a MemberExpr AST node.
Mike Stump11289f42009-09-09 15:08:12 +0000894static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow,
895 const CXXScopeSpec *SS, NamedDecl *Member,
Douglas Gregorc1905232009-08-26 22:36:53 +0000896 SourceLocation Loc, QualType Ty) {
897 if (SS && SS->isSet())
Mike Stump11289f42009-09-09 15:08:12 +0000898 return MemberExpr::Create(C, Base, isArrow,
Douglas Gregorf405d7e2009-08-31 23:41:50 +0000899 (NestedNameSpecifier *)SS->getScopeRep(),
Mike Stump11289f42009-09-09 15:08:12 +0000900 SS->getRange(), Member, Loc,
Douglas Gregor84f14dd2009-09-01 00:37:14 +0000901 // FIXME: Explicit template argument lists
902 false, SourceLocation(), 0, 0, SourceLocation(),
903 Ty);
Mike Stump11289f42009-09-09 15:08:12 +0000904
Douglas Gregorc1905232009-08-26 22:36:53 +0000905 return new (C) MemberExpr(Base, isArrow, Member, Loc, Ty);
906}
907
Douglas Gregor3256d042009-06-30 15:47:41 +0000908/// \brief Complete semantic analysis for a reference to the given declaration.
909Sema::OwningExprResult
910Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D,
911 bool HasTrailingLParen,
Mike Stump11289f42009-09-09 15:08:12 +0000912 const CXXScopeSpec *SS,
Douglas Gregor3256d042009-06-30 15:47:41 +0000913 bool isAddressOfOperand) {
914 assert(D && "Cannot refer to a NULL declaration");
915 DeclarationName Name = D->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +0000916
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000917 // If this is an expression of the form &Class::member, don't build an
918 // implicit member ref, because we want a pointer to the member in general,
919 // not any specific instance's member.
920 if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) {
Douglas Gregor52537682009-03-19 00:18:19 +0000921 DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor2ada0482009-02-04 17:27:36 +0000922 if (D && isa<CXXRecordDecl>(DC)) {
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000923 QualType DType;
924 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
925 DType = FD->getType().getNonReferenceType();
926 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
927 DType = Method->getType();
928 } else if (isa<OverloadedFunctionDecl>(D)) {
929 DType = Context.OverloadTy;
930 }
931 // Could be an inner type. That's diagnosed below, so ignore it here.
932 if (!DType.isNull()) {
933 // The pointer is type- and value-dependent if it points into something
934 // dependent.
Douglas Gregor82dbbd72009-05-29 14:49:33 +0000935 bool Dependent = DC->isDependentContext();
Anders Carlsson946b86d2009-06-24 00:10:43 +0000936 return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS);
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000937 }
938 }
939 }
940
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000941 // We may have found a field within an anonymous union or struct
942 // (C++ [class.union]).
943 if (FieldDecl *FD = dyn_cast<FieldDecl>(D))
944 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
945 return BuildAnonymousStructUnionMemberReference(Loc, FD);
Sebastian Redlffbcf962009-01-18 18:53:16 +0000946
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000947 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
948 if (!MD->isStatic()) {
Mike Stump11289f42009-09-09 15:08:12 +0000949 // C++ [class.mfct.nonstatic]p2:
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000950 // [...] if name lookup (3.4.1) resolves the name in the
951 // id-expression to a nonstatic nontype member of class X or of
952 // a base class of X, the id-expression is transformed into a
953 // class member access expression (5.2.5) using (*this) (9.3.2)
954 // as the postfix-expression to the left of the '.' operator.
955 DeclContext *Ctx = 0;
956 QualType MemberType;
957 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
958 Ctx = FD->getDeclContext();
959 MemberType = FD->getType();
960
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000961 if (const ReferenceType *RefType = MemberType->getAs<ReferenceType>())
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000962 MemberType = RefType->getPointeeType();
John McCall8ccfcb52009-09-24 19:53:00 +0000963 else if (!FD->isMutable())
964 MemberType
965 = Context.getQualifiedType(MemberType,
966 Qualifiers::fromCVRMask(MD->getTypeQualifiers()));
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000967 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
968 if (!Method->isStatic()) {
969 Ctx = Method->getParent();
970 MemberType = Method->getType();
971 }
Mike Stump11289f42009-09-09 15:08:12 +0000972 } else if (FunctionTemplateDecl *FunTmpl
Douglas Gregor97628d62009-08-21 00:16:32 +0000973 = dyn_cast<FunctionTemplateDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +0000974 if (CXXMethodDecl *Method
Douglas Gregor97628d62009-08-21 00:16:32 +0000975 = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl())) {
Mike Stump11289f42009-09-09 15:08:12 +0000976 if (!Method->isStatic()) {
Douglas Gregor97628d62009-08-21 00:16:32 +0000977 Ctx = Method->getParent();
978 MemberType = Context.OverloadTy;
979 }
980 }
Mike Stump11289f42009-09-09 15:08:12 +0000981 } else if (OverloadedFunctionDecl *Ovl
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000982 = dyn_cast<OverloadedFunctionDecl>(D)) {
Douglas Gregor97628d62009-08-21 00:16:32 +0000983 // FIXME: We need an abstraction for iterating over one or more function
984 // templates or functions. This code is far too repetitive!
Mike Stump11289f42009-09-09 15:08:12 +0000985 for (OverloadedFunctionDecl::function_iterator
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000986 Func = Ovl->function_begin(),
987 FuncEnd = Ovl->function_end();
988 Func != FuncEnd; ++Func) {
Douglas Gregor97628d62009-08-21 00:16:32 +0000989 CXXMethodDecl *DMethod = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000990 if (FunctionTemplateDecl *FunTmpl
Douglas Gregor97628d62009-08-21 00:16:32 +0000991 = dyn_cast<FunctionTemplateDecl>(*Func))
992 DMethod = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
993 else
994 DMethod = dyn_cast<CXXMethodDecl>(*Func);
995
996 if (DMethod && !DMethod->isStatic()) {
997 Ctx = DMethod->getDeclContext();
998 MemberType = Context.OverloadTy;
999 break;
1000 }
Douglas Gregor97fd6e22008-12-22 05:46:06 +00001001 }
1002 }
Douglas Gregor9ac7a072009-01-07 00:43:41 +00001003
1004 if (Ctx && Ctx->isRecord()) {
Douglas Gregor97fd6e22008-12-22 05:46:06 +00001005 QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx));
1006 QualType ThisType = Context.getTagDeclType(MD->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00001007 if ((Context.getCanonicalType(CtxType)
Douglas Gregor97fd6e22008-12-22 05:46:06 +00001008 == Context.getCanonicalType(ThisType)) ||
1009 IsDerivedFrom(ThisType, CtxType)) {
1010 // Build the implicit member access expression.
Steve Narofff6009ed2009-01-21 00:14:39 +00001011 Expr *This = new (Context) CXXThisExpr(SourceLocation(),
Mike Stump4e1f26a2009-02-19 03:04:26 +00001012 MD->getThisType(Context));
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00001013 MarkDeclarationReferenced(Loc, D);
Fariborz Jahanian3f150832009-07-29 19:40:11 +00001014 if (PerformObjectMemberConversion(This, D))
1015 return ExprError();
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00001016
Anders Carlsson99056f22009-09-11 05:54:14 +00001017 bool ShouldCheckUse = true;
1018 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
1019 // Don't diagnose the use of a virtual member function unless it's
1020 // explicitly qualified.
1021 if (MD->isVirtual() && (!SS || !SS->isSet()))
1022 ShouldCheckUse = false;
1023 }
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00001024
Anders Carlsson99056f22009-09-11 05:54:14 +00001025 if (ShouldCheckUse && DiagnoseUseOfDecl(D, Loc))
Anders Carlsson21776b72009-08-08 16:55:18 +00001026 return ExprError();
Douglas Gregorc1905232009-08-26 22:36:53 +00001027 return Owned(BuildMemberExpr(Context, This, true, SS, D,
1028 Loc, MemberType));
Douglas Gregor97fd6e22008-12-22 05:46:06 +00001029 }
1030 }
1031 }
1032 }
1033
Douglas Gregor91f84212008-12-11 16:49:14 +00001034 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001035 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
1036 if (MD->isStatic())
1037 // "invalid use of member 'x' in static member function"
Sebastian Redlffbcf962009-01-18 18:53:16 +00001038 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
1039 << FD->getDeclName());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001040 }
1041
Douglas Gregor97fd6e22008-12-22 05:46:06 +00001042 // Any other ways we could have found the field in a well-formed
1043 // program would have been turned into implicit member expressions
1044 // above.
Sebastian Redlffbcf962009-01-18 18:53:16 +00001045 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
1046 << FD->getDeclName());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001047 }
Douglas Gregor97fd6e22008-12-22 05:46:06 +00001048
Steve Naroff46ba1eb2007-04-03 23:13:13 +00001049 if (isa<TypedefDecl>(D))
Sebastian Redlffbcf962009-01-18 18:53:16 +00001050 return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name);
Ted Kremenek1b0ea822008-01-07 19:49:32 +00001051 if (isa<ObjCInterfaceDecl>(D))
Sebastian Redlffbcf962009-01-18 18:53:16 +00001052 return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00001053 if (isa<NamespaceDecl>(D))
Sebastian Redlffbcf962009-01-18 18:53:16 +00001054 return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name);
Steve Narofff1e53692007-03-23 22:27:02 +00001055
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001056 // Make the DeclRefExpr or BlockDeclRefExpr for the decl.
Douglas Gregor5251f1b2008-10-21 16:13:35 +00001057 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D))
Anders Carlsson946b86d2009-06-24 00:10:43 +00001058 return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc,
1059 false, false, SS);
Douglas Gregord32e0282009-02-09 23:23:08 +00001060 else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
Anders Carlsson946b86d2009-06-24 00:10:43 +00001061 return BuildDeclRefExpr(Template, Context.OverloadTy, Loc,
1062 false, false, SS);
Anders Carlsson938b1002009-08-29 01:06:32 +00001063 else if (UnresolvedUsingDecl *UD = dyn_cast<UnresolvedUsingDecl>(D))
Mike Stump11289f42009-09-09 15:08:12 +00001064 return BuildDeclRefExpr(UD, Context.DependentTy, Loc,
1065 /*TypeDependent=*/true,
Anders Carlsson938b1002009-08-29 01:06:32 +00001066 /*ValueDependent=*/true, SS);
1067
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001068 ValueDecl *VD = cast<ValueDecl>(D);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001069
Douglas Gregor171c45a2009-02-18 21:56:37 +00001070 // Check whether this declaration can be used. Note that we suppress
1071 // this check when we're going to perform argument-dependent lookup
1072 // on this function name, because this might not be the function
1073 // that overload resolution actually selects.
Mike Stump11289f42009-09-09 15:08:12 +00001074 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
Douglas Gregor3256d042009-06-30 15:47:41 +00001075 HasTrailingLParen;
Douglas Gregor171c45a2009-02-18 21:56:37 +00001076 if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc))
1077 return ExprError();
1078
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001079 // Only create DeclRefExpr's for valid Decl's.
1080 if (VD->isInvalidDecl())
Sebastian Redlffbcf962009-01-18 18:53:16 +00001081 return ExprError();
1082
Chris Lattner2a9d9892008-10-20 05:16:36 +00001083 // If the identifier reference is inside a block, and it refers to a value
1084 // that is outside the block, create a BlockDeclRefExpr instead of a
1085 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
1086 // the block is formed.
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001087 //
Chris Lattner2a9d9892008-10-20 05:16:36 +00001088 // We do not do this for things like enum constants, global variables, etc,
1089 // as they do not get snapshotted.
1090 //
1091 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) {
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00001092 MarkDeclarationReferenced(Loc, VD);
Eli Friedman7fa3faa2009-03-22 23:00:19 +00001093 QualType ExprTy = VD->getType().getNonReferenceType();
Steve Naroff1d95e5a2008-10-10 01:28:17 +00001094 // The BlocksAttr indicates the variable is bound by-reference.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001095 if (VD->getAttr<BlocksAttr>())
Eli Friedman7fa3faa2009-03-22 23:00:19 +00001096 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true));
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00001097 // This is to record that a 'const' was actually synthesize and added.
1098 bool constAdded = !ExprTy.isConstQualified();
Steve Naroff1d95e5a2008-10-10 01:28:17 +00001099 // Variable will be bound by-copy, make it const within the closure.
Mike Stump11289f42009-09-09 15:08:12 +00001100
Eli Friedman7fa3faa2009-03-22 23:00:19 +00001101 ExprTy.addConst();
Mike Stump11289f42009-09-09 15:08:12 +00001102 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false,
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00001103 constAdded));
Steve Naroff1d95e5a2008-10-10 01:28:17 +00001104 }
1105 // If this reference is not in a block or if the referenced variable is
1106 // within the block, create a normal DeclRefExpr.
Douglas Gregor4619e432008-12-05 23:32:09 +00001107
Douglas Gregor4619e432008-12-05 23:32:09 +00001108 bool TypeDependent = false;
Douglas Gregor872ffce2008-12-10 20:57:37 +00001109 bool ValueDependent = false;
1110 if (getLangOptions().CPlusPlus) {
1111 // C++ [temp.dep.expr]p3:
Mike Stump11289f42009-09-09 15:08:12 +00001112 // An id-expression is type-dependent if it contains:
Douglas Gregor872ffce2008-12-10 20:57:37 +00001113 // - an identifier that was declared with a dependent type,
1114 if (VD->getType()->isDependentType())
1115 TypeDependent = true;
1116 // - FIXME: a template-id that is dependent,
1117 // - a conversion-function-id that specifies a dependent type,
1118 else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
1119 Name.getCXXNameType()->isDependentType())
1120 TypeDependent = true;
1121 // - a nested-name-specifier that contains a class-name that
1122 // names a dependent type.
1123 else if (SS && !SS->isEmpty()) {
Douglas Gregor52537682009-03-19 00:18:19 +00001124 for (DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor872ffce2008-12-10 20:57:37 +00001125 DC; DC = DC->getParent()) {
1126 // FIXME: could stop early at namespace scope.
Douglas Gregor9ac7a072009-01-07 00:43:41 +00001127 if (DC->isRecord()) {
Douglas Gregor872ffce2008-12-10 20:57:37 +00001128 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
1129 if (Context.getTypeDeclType(Record)->isDependentType()) {
1130 TypeDependent = true;
1131 break;
1132 }
Douglas Gregor4619e432008-12-05 23:32:09 +00001133 }
1134 }
1135 }
Douglas Gregor4619e432008-12-05 23:32:09 +00001136
Douglas Gregor872ffce2008-12-10 20:57:37 +00001137 // C++ [temp.dep.constexpr]p2:
1138 //
1139 // An identifier is value-dependent if it is:
1140 // - a name declared with a dependent type,
1141 if (TypeDependent)
1142 ValueDependent = true;
1143 // - the name of a non-type template parameter,
1144 else if (isa<NonTypeTemplateParmDecl>(VD))
1145 ValueDependent = true;
1146 // - a constant with integral or enumeration type and is
1147 // initialized with an expression that is value-dependent
Eli Friedmandd49ee32009-06-11 01:11:20 +00001148 else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) {
John McCall8ccfcb52009-09-24 19:53:00 +00001149 if (Dcl->getType().getCVRQualifiers() == Qualifiers::Const &&
Eli Friedmandd49ee32009-06-11 01:11:20 +00001150 Dcl->getInit()) {
1151 ValueDependent = Dcl->getInit()->isValueDependent();
1152 }
1153 }
Douglas Gregor872ffce2008-12-10 20:57:37 +00001154 }
Douglas Gregor4619e432008-12-05 23:32:09 +00001155
Anders Carlsson946b86d2009-06-24 00:10:43 +00001156 return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc,
1157 TypeDependent, ValueDependent, SS);
Chris Lattner17ed4872006-11-20 04:58:19 +00001158}
Chris Lattnere168f762006-11-10 05:29:30 +00001159
Sebastian Redlffbcf962009-01-18 18:53:16 +00001160Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
1161 tok::TokenKind Kind) {
Chris Lattner6307f192008-08-10 01:53:14 +00001162 PredefinedExpr::IdentType IT;
Sebastian Redlffbcf962009-01-18 18:53:16 +00001163
Chris Lattnere168f762006-11-10 05:29:30 +00001164 switch (Kind) {
Chris Lattner317e6ba2008-01-12 18:39:25 +00001165 default: assert(0 && "Unknown simple primary expr!");
Chris Lattner6307f192008-08-10 01:53:14 +00001166 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
1167 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
1168 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Chris Lattnere168f762006-11-10 05:29:30 +00001169 }
Chris Lattner317e6ba2008-01-12 18:39:25 +00001170
Chris Lattnera81a0272008-01-12 08:14:25 +00001171 // Pre-defined identifiers are of type char[x], where x is the length of the
1172 // string.
Mike Stump11289f42009-09-09 15:08:12 +00001173
Anders Carlsson2fb08242009-09-08 18:24:21 +00001174 Decl *currentDecl = getCurFunctionOrMethodDecl();
1175 if (!currentDecl) {
Chris Lattnerf45c5ec2008-12-12 05:05:20 +00001176 Diag(Loc, diag::ext_predef_outside_function);
Anders Carlsson2fb08242009-09-08 18:24:21 +00001177 currentDecl = Context.getTranslationUnitDecl();
Chris Lattnerf45c5ec2008-12-12 05:05:20 +00001178 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001179
Anders Carlsson0b209a82009-09-11 01:22:35 +00001180 QualType ResTy;
1181 if (cast<DeclContext>(currentDecl)->isDependentContext()) {
1182 ResTy = Context.DependentTy;
1183 } else {
1184 unsigned Length =
1185 PredefinedExpr::ComputeName(Context, IT, currentDecl).length();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001186
Anders Carlsson0b209a82009-09-11 01:22:35 +00001187 llvm::APInt LengthI(32, Length + 1);
John McCall8ccfcb52009-09-24 19:53:00 +00001188 ResTy = Context.CharTy.withConst();
Anders Carlsson0b209a82009-09-11 01:22:35 +00001189 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
1190 }
Steve Narofff6009ed2009-01-21 00:14:39 +00001191 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Chris Lattnere168f762006-11-10 05:29:30 +00001192}
1193
Sebastian Redlffbcf962009-01-18 18:53:16 +00001194Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Chris Lattner23b7eb62007-06-15 23:05:46 +00001195 llvm::SmallString<16> CharBuffer;
Steve Naroffae4143e2007-04-26 20:39:23 +00001196 CharBuffer.resize(Tok.getLength());
1197 const char *ThisTokBegin = &CharBuffer[0];
1198 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001199
Steve Naroffae4143e2007-04-26 20:39:23 +00001200 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1201 Tok.getLocation(), PP);
1202 if (Literal.hadError())
Sebastian Redlffbcf962009-01-18 18:53:16 +00001203 return ExprError();
Chris Lattneref24b382008-03-01 08:32:21 +00001204
1205 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy;
1206
Sebastian Redl20614a72009-01-20 22:23:13 +00001207 return Owned(new (Context) CharacterLiteral(Literal.getValue(),
1208 Literal.isWide(),
1209 type, Tok.getLocation()));
Steve Naroffae4143e2007-04-26 20:39:23 +00001210}
1211
Sebastian Redlffbcf962009-01-18 18:53:16 +00001212Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) {
1213 // Fast path for a single digit (which is quite common). A single digit
Steve Narofff2fb89e2007-03-13 20:29:44 +00001214 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
1215 if (Tok.getLength() == 1) {
Chris Lattner9240b3e2009-01-26 22:36:52 +00001216 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Chris Lattnerc4c18192009-01-16 07:10:29 +00001217 unsigned IntSize = Context.Target.getIntWidth();
Steve Narofff6009ed2009-01-21 00:14:39 +00001218 return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'),
Steve Naroff5faaef72009-01-20 19:53:53 +00001219 Context.IntTy, Tok.getLocation()));
Steve Narofff2fb89e2007-03-13 20:29:44 +00001220 }
Ted Kremeneke9814182009-01-13 23:19:12 +00001221
Chris Lattner23b7eb62007-06-15 23:05:46 +00001222 llvm::SmallString<512> IntegerBuffer;
Chris Lattnera1cf5f92008-09-30 20:53:45 +00001223 // Add padding so that NumericLiteralParser can overread by one character.
1224 IntegerBuffer.resize(Tok.getLength()+1);
Steve Naroff8160ea22007-03-06 01:09:46 +00001225 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlffbcf962009-01-18 18:53:16 +00001226
Chris Lattner67ca9252007-05-21 01:08:44 +00001227 // Get the spelling of the token, which eliminates trigraphs, etc.
Steve Naroff8160ea22007-03-06 01:09:46 +00001228 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001229
Mike Stump11289f42009-09-09 15:08:12 +00001230 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
Steve Naroff451d8f162007-03-12 23:22:38 +00001231 Tok.getLocation(), PP);
Steve Narofff2fb89e2007-03-13 20:29:44 +00001232 if (Literal.hadError)
Sebastian Redlffbcf962009-01-18 18:53:16 +00001233 return ExprError();
1234
Chris Lattner1c20a172007-08-26 03:42:43 +00001235 Expr *Res;
Sebastian Redlffbcf962009-01-18 18:53:16 +00001236
Chris Lattner1c20a172007-08-26 03:42:43 +00001237 if (Literal.isFloatingLiteral()) {
Chris Lattnerec0a6d92007-09-22 18:29:59 +00001238 QualType Ty;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001239 if (Literal.isFloat)
Chris Lattnerec0a6d92007-09-22 18:29:59 +00001240 Ty = Context.FloatTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001241 else if (!Literal.isLong)
Chris Lattnerec0a6d92007-09-22 18:29:59 +00001242 Ty = Context.DoubleTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001243 else
Chris Lattner7570e9c2008-03-08 08:52:55 +00001244 Ty = Context.LongDoubleTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001245
1246 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
1247
Ted Kremenek3a2c9502007-11-29 00:56:49 +00001248 // isExact will be set by GetFloatValue().
1249 bool isExact = false;
Chris Lattnere4edb8e2009-06-29 17:34:55 +00001250 llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact);
1251 Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation());
Sebastian Redlffbcf962009-01-18 18:53:16 +00001252
Chris Lattner1c20a172007-08-26 03:42:43 +00001253 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlffbcf962009-01-18 18:53:16 +00001254 return ExprError();
Chris Lattner1c20a172007-08-26 03:42:43 +00001255 } else {
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001256 QualType Ty;
Chris Lattner67ca9252007-05-21 01:08:44 +00001257
Neil Boothac582c52007-08-29 22:00:19 +00001258 // long long is a C99 feature.
1259 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth4a1ee052007-08-29 22:13:52 +00001260 Literal.isLongLong)
Neil Boothac582c52007-08-29 22:00:19 +00001261 Diag(Tok.getLocation(), diag::ext_longlong);
1262
Chris Lattner67ca9252007-05-21 01:08:44 +00001263 // Get the value in the widest-possible width.
Chris Lattner37e05872008-03-05 18:54:05 +00001264 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001265
Chris Lattner67ca9252007-05-21 01:08:44 +00001266 if (Literal.GetIntegerValue(ResultVal)) {
1267 // If this value didn't fit into uintmax_t, warn and force to ull.
1268 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001269 Ty = Context.UnsignedLongLongTy;
1270 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner37e05872008-03-05 18:54:05 +00001271 "long long is not intmax_t?");
Steve Naroff09ef4742007-03-09 23:16:33 +00001272 } else {
Chris Lattner67ca9252007-05-21 01:08:44 +00001273 // If this value fits into a ULL, try to figure out what else it fits into
1274 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlffbcf962009-01-18 18:53:16 +00001275
Chris Lattner67ca9252007-05-21 01:08:44 +00001276 // Octal, Hexadecimal, and integers with a U suffix are allowed to
1277 // be an unsigned int.
1278 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
1279
1280 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner55258cf2008-05-09 05:59:00 +00001281 unsigned Width = 0;
Chris Lattner7b939cf2007-08-23 21:58:08 +00001282 if (!Literal.isLong && !Literal.isLongLong) {
1283 // Are int/unsigned possibilities?
Chris Lattner55258cf2008-05-09 05:59:00 +00001284 unsigned IntSize = Context.Target.getIntWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001285
Chris Lattner67ca9252007-05-21 01:08:44 +00001286 // Does it fit in a unsigned int?
1287 if (ResultVal.isIntN(IntSize)) {
1288 // Does it fit in a signed int?
1289 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001290 Ty = Context.IntTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00001291 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001292 Ty = Context.UnsignedIntTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001293 Width = IntSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00001294 }
Chris Lattner67ca9252007-05-21 01:08:44 +00001295 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001296
Chris Lattner67ca9252007-05-21 01:08:44 +00001297 // Are long/unsigned long possibilities?
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001298 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattner55258cf2008-05-09 05:59:00 +00001299 unsigned LongSize = Context.Target.getLongWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001300
Chris Lattner67ca9252007-05-21 01:08:44 +00001301 // Does it fit in a unsigned long?
1302 if (ResultVal.isIntN(LongSize)) {
1303 // Does it fit in a signed long?
1304 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001305 Ty = Context.LongTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00001306 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001307 Ty = Context.UnsignedLongTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001308 Width = LongSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00001309 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001310 }
1311
Chris Lattner67ca9252007-05-21 01:08:44 +00001312 // Finally, check long long if needed.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001313 if (Ty.isNull()) {
Chris Lattner55258cf2008-05-09 05:59:00 +00001314 unsigned LongLongSize = Context.Target.getLongLongWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001315
Chris Lattner67ca9252007-05-21 01:08:44 +00001316 // Does it fit in a unsigned long long?
1317 if (ResultVal.isIntN(LongLongSize)) {
1318 // Does it fit in a signed long long?
1319 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001320 Ty = Context.LongLongTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00001321 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001322 Ty = Context.UnsignedLongLongTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001323 Width = LongLongSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00001324 }
1325 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001326
Chris Lattner67ca9252007-05-21 01:08:44 +00001327 // If we still couldn't decide a type, we probably have something that
1328 // does not fit in a signed long long, but has no U suffix.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001329 if (Ty.isNull()) {
Chris Lattner67ca9252007-05-21 01:08:44 +00001330 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001331 Ty = Context.UnsignedLongLongTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001332 Width = Context.Target.getLongLongWidth();
Chris Lattner67ca9252007-05-21 01:08:44 +00001333 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001334
Chris Lattner55258cf2008-05-09 05:59:00 +00001335 if (ResultVal.getBitWidth() != Width)
1336 ResultVal.trunc(Width);
Steve Naroff09ef4742007-03-09 23:16:33 +00001337 }
Sebastian Redl20614a72009-01-20 22:23:13 +00001338 Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation());
Steve Naroff09ef4742007-03-09 23:16:33 +00001339 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001340
Chris Lattner1c20a172007-08-26 03:42:43 +00001341 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
1342 if (Literal.isImaginary)
Mike Stump11289f42009-09-09 15:08:12 +00001343 Res = new (Context) ImaginaryLiteral(Res,
Steve Narofff6009ed2009-01-21 00:14:39 +00001344 Context.getComplexType(Res->getType()));
Sebastian Redlffbcf962009-01-18 18:53:16 +00001345
1346 return Owned(Res);
Chris Lattnere168f762006-11-10 05:29:30 +00001347}
1348
Sebastian Redlffbcf962009-01-18 18:53:16 +00001349Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L,
1350 SourceLocation R, ExprArg Val) {
Anders Carlssonb781bcd2009-05-01 19:49:17 +00001351 Expr *E = Val.takeAs<Expr>();
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001352 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Narofff6009ed2009-01-21 00:14:39 +00001353 return Owned(new (Context) ParenExpr(L, R, E));
Chris Lattnere168f762006-11-10 05:29:30 +00001354}
1355
Steve Naroff71b59a92007-06-04 22:22:31 +00001356/// The UsualUnaryConversions() function is *not* called by this routine.
Steve Naroffa78fe7e2007-05-16 19:47:19 +00001357/// See C99 6.3.2.1p[2-4] for more details.
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001358bool Sema::CheckSizeOfAlignOfOperand(QualType exprType,
Sebastian Redl6f282892008-11-11 17:56:53 +00001359 SourceLocation OpLoc,
1360 const SourceRange &ExprRange,
1361 bool isSizeof) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001362 if (exprType->isDependentType())
1363 return false;
1364
Steve Naroff043d45d2007-05-15 02:32:35 +00001365 // C99 6.5.3.4p1:
Chris Lattnerb1355b12009-01-24 19:46:37 +00001366 if (isa<FunctionType>(exprType)) {
Chris Lattner62975a72009-04-24 00:30:45 +00001367 // alignof(function) is allowed as an extension.
Chris Lattnerb1355b12009-01-24 19:46:37 +00001368 if (isSizeof)
1369 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange;
1370 return false;
1371 }
Mike Stump11289f42009-09-09 15:08:12 +00001372
Chris Lattner62975a72009-04-24 00:30:45 +00001373 // Allow sizeof(void)/alignof(void) as an extension.
Chris Lattnerb1355b12009-01-24 19:46:37 +00001374 if (exprType->isVoidType()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001375 Diag(OpLoc, diag::ext_sizeof_void_type)
1376 << (isSizeof ? "sizeof" : "__alignof") << ExprRange;
Chris Lattnerb1355b12009-01-24 19:46:37 +00001377 return false;
1378 }
Mike Stump11289f42009-09-09 15:08:12 +00001379
Chris Lattner62975a72009-04-24 00:30:45 +00001380 if (RequireCompleteType(OpLoc, exprType,
Mike Stump11289f42009-09-09 15:08:12 +00001381 isSizeof ? diag::err_sizeof_incomplete_type :
Anders Carlssond624e162009-08-26 23:45:07 +00001382 PDiag(diag::err_alignof_incomplete_type)
1383 << ExprRange))
Chris Lattner62975a72009-04-24 00:30:45 +00001384 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001385
Chris Lattner62975a72009-04-24 00:30:45 +00001386 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
Fariborz Jahanian1dcb3222009-04-24 17:34:33 +00001387 if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) {
Chris Lattner62975a72009-04-24 00:30:45 +00001388 Diag(OpLoc, diag::err_sizeof_nonfragile_interface)
Chris Lattnercd2a8c52009-04-24 22:30:50 +00001389 << exprType << isSizeof << ExprRange;
1390 return true;
Chris Lattner37920f52009-04-21 19:55:16 +00001391 }
Mike Stump11289f42009-09-09 15:08:12 +00001392
Chris Lattner62975a72009-04-24 00:30:45 +00001393 return false;
Steve Naroff043d45d2007-05-15 02:32:35 +00001394}
1395
Chris Lattner8dff0172009-01-24 20:17:12 +00001396bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc,
1397 const SourceRange &ExprRange) {
1398 E = E->IgnoreParens();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001399
Mike Stump11289f42009-09-09 15:08:12 +00001400 // alignof decl is always ok.
Chris Lattner8dff0172009-01-24 20:17:12 +00001401 if (isa<DeclRefExpr>(E))
1402 return false;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001403
1404 // Cannot know anything else if the expression is dependent.
1405 if (E->isTypeDependent())
1406 return false;
1407
Douglas Gregor71235ec2009-05-02 02:18:30 +00001408 if (E->getBitField()) {
1409 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange;
1410 return true;
Chris Lattner8dff0172009-01-24 20:17:12 +00001411 }
Douglas Gregor71235ec2009-05-02 02:18:30 +00001412
1413 // Alignment of a field access is always okay, so long as it isn't a
1414 // bit-field.
1415 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
Mike Stump212005c2009-07-22 18:58:19 +00001416 if (isa<FieldDecl>(ME->getMemberDecl()))
Douglas Gregor71235ec2009-05-02 02:18:30 +00001417 return false;
1418
Chris Lattner8dff0172009-01-24 20:17:12 +00001419 return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false);
1420}
1421
Douglas Gregor0950e412009-03-13 21:01:28 +00001422/// \brief Build a sizeof or alignof expression given a type operand.
Mike Stump11289f42009-09-09 15:08:12 +00001423Action::OwningExprResult
1424Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc,
Douglas Gregor0950e412009-03-13 21:01:28 +00001425 bool isSizeOf, SourceRange R) {
1426 if (T.isNull())
1427 return ExprError();
1428
1429 if (!T->isDependentType() &&
1430 CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf))
1431 return ExprError();
1432
1433 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1434 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T,
1435 Context.getSizeType(), OpLoc,
1436 R.getEnd()));
1437}
1438
1439/// \brief Build a sizeof or alignof expression given an expression
1440/// operand.
Mike Stump11289f42009-09-09 15:08:12 +00001441Action::OwningExprResult
1442Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc,
Douglas Gregor0950e412009-03-13 21:01:28 +00001443 bool isSizeOf, SourceRange R) {
1444 // Verify that the operand is valid.
1445 bool isInvalid = false;
1446 if (E->isTypeDependent()) {
1447 // Delay type-checking for type-dependent expressions.
1448 } else if (!isSizeOf) {
1449 isInvalid = CheckAlignOfExpr(E, OpLoc, R);
Douglas Gregor71235ec2009-05-02 02:18:30 +00001450 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Douglas Gregor0950e412009-03-13 21:01:28 +00001451 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0;
1452 isInvalid = true;
1453 } else {
1454 isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true);
1455 }
1456
1457 if (isInvalid)
1458 return ExprError();
1459
1460 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1461 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E,
1462 Context.getSizeType(), OpLoc,
1463 R.getEnd()));
1464}
1465
Sebastian Redl6f282892008-11-11 17:56:53 +00001466/// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and
1467/// the same for @c alignof and @c __alignof
1468/// Note that the ArgRange is invalid if isType is false.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001469Action::OwningExprResult
Sebastian Redl6f282892008-11-11 17:56:53 +00001470Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType,
1471 void *TyOrEx, const SourceRange &ArgRange) {
Chris Lattner0d8b1a12006-11-20 04:34:45 +00001472 // If error parsing type, ignore.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001473 if (TyOrEx == 0) return ExprError();
Steve Naroff043d45d2007-05-15 02:32:35 +00001474
Sebastian Redl6f282892008-11-11 17:56:53 +00001475 if (isType) {
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00001476 // FIXME: Preserve type source info.
1477 QualType ArgTy = GetTypeFromParser(TyOrEx);
Douglas Gregor0950e412009-03-13 21:01:28 +00001478 return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange);
Mike Stump11289f42009-09-09 15:08:12 +00001479 }
Sebastian Redl6f282892008-11-11 17:56:53 +00001480
Douglas Gregor0950e412009-03-13 21:01:28 +00001481 // Get the end location.
1482 Expr *ArgEx = (Expr *)TyOrEx;
1483 Action::OwningExprResult Result
1484 = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange());
1485
1486 if (Result.isInvalid())
1487 DeleteExpr(ArgEx);
1488
1489 return move(Result);
Chris Lattnere168f762006-11-10 05:29:30 +00001490}
1491
Chris Lattner709322b2009-02-17 08:12:06 +00001492QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001493 if (V->isTypeDependent())
1494 return Context.DependentTy;
Mike Stump11289f42009-09-09 15:08:12 +00001495
Chris Lattnere267f5d2007-08-26 05:39:26 +00001496 // These operators return the element type of a complex type.
John McCall9dd450b2009-09-21 23:43:11 +00001497 if (const ComplexType *CT = V->getType()->getAs<ComplexType>())
Chris Lattner30b5dd02007-08-24 21:16:53 +00001498 return CT->getElementType();
Mike Stump11289f42009-09-09 15:08:12 +00001499
Chris Lattnere267f5d2007-08-26 05:39:26 +00001500 // Otherwise they pass through real integer and floating point types here.
1501 if (V->getType()->isArithmeticType())
1502 return V->getType();
Mike Stump11289f42009-09-09 15:08:12 +00001503
Chris Lattnere267f5d2007-08-26 05:39:26 +00001504 // Reject anything else.
Chris Lattner709322b2009-02-17 08:12:06 +00001505 Diag(Loc, diag::err_realimag_invalid_type) << V->getType()
1506 << (isReal ? "__real" : "__imag");
Chris Lattnere267f5d2007-08-26 05:39:26 +00001507 return QualType();
Chris Lattner30b5dd02007-08-24 21:16:53 +00001508}
1509
1510
Chris Lattnere168f762006-11-10 05:29:30 +00001511
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001512Action::OwningExprResult
1513Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
1514 tok::TokenKind Kind, ExprArg Input) {
Nate Begeman5ec4b312009-08-10 23:49:36 +00001515 // Since this might be a postfix expression, get rid of ParenListExprs.
1516 Input = MaybeConvertParenListExprToParenExpr(S, move(Input));
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001517 Expr *Arg = (Expr *)Input.get();
Douglas Gregord08452f2008-11-19 15:42:04 +00001518
Chris Lattnere168f762006-11-10 05:29:30 +00001519 UnaryOperator::Opcode Opc;
1520 switch (Kind) {
1521 default: assert(0 && "Unknown unary op!");
1522 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
1523 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
1524 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001525
Douglas Gregord08452f2008-11-19 15:42:04 +00001526 if (getLangOptions().CPlusPlus &&
1527 (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) {
1528 // Which overloaded operator?
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001529 OverloadedOperatorKind OverOp =
Douglas Gregord08452f2008-11-19 15:42:04 +00001530 (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus;
1531
1532 // C++ [over.inc]p1:
1533 //
1534 // [...] If the function is a member function with one
1535 // parameter (which shall be of type int) or a non-member
1536 // function with two parameters (the second of which shall be
1537 // of type int), it defines the postfix increment operator ++
1538 // for objects of that type. When the postfix increment is
1539 // called as a result of using the ++ operator, the int
1540 // argument will have value zero.
Mike Stump11289f42009-09-09 15:08:12 +00001541 Expr *Args[2] = {
1542 Arg,
1543 new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0,
Steve Narofff6009ed2009-01-21 00:14:39 +00001544 /*isSigned=*/true), Context.IntTy, SourceLocation())
Douglas Gregord08452f2008-11-19 15:42:04 +00001545 };
1546
1547 // Build the candidate set for overloading
1548 OverloadCandidateSet CandidateSet;
Douglas Gregor1baf54e2009-03-13 18:40:31 +00001549 AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet);
Douglas Gregord08452f2008-11-19 15:42:04 +00001550
1551 // Perform overload resolution.
1552 OverloadCandidateSet::iterator Best;
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00001553 switch (BestViableFunction(CandidateSet, OpLoc, Best)) {
Douglas Gregord08452f2008-11-19 15:42:04 +00001554 case OR_Success: {
1555 // We found a built-in operator or an overloaded operator.
1556 FunctionDecl *FnDecl = Best->Function;
1557
1558 if (FnDecl) {
1559 // We matched an overloaded operator. Build a call to that
1560 // operator.
1561
1562 // Convert the arguments.
1563 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1564 if (PerformObjectArgumentInitialization(Arg, Method))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001565 return ExprError();
Douglas Gregord08452f2008-11-19 15:42:04 +00001566 } else {
1567 // Convert the arguments.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001568 if (PerformCopyInitialization(Arg,
Douglas Gregord08452f2008-11-19 15:42:04 +00001569 FnDecl->getParamDecl(0)->getType(),
1570 "passing"))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001571 return ExprError();
Douglas Gregord08452f2008-11-19 15:42:04 +00001572 }
1573
1574 // Determine the result type
Anders Carlsson3d5829c2009-10-13 21:49:31 +00001575 QualType ResultTy = FnDecl->getResultType().getNonReferenceType();
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001576
Douglas Gregord08452f2008-11-19 15:42:04 +00001577 // Build the actual expression node.
Steve Narofff6009ed2009-01-21 00:14:39 +00001578 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
Mike Stump82191d02009-02-19 02:54:59 +00001579 SourceLocation());
Douglas Gregord08452f2008-11-19 15:42:04 +00001580 UsualUnaryConversions(FnExpr);
1581
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001582 Input.release();
Douglas Gregor2517f332009-05-27 05:00:47 +00001583 Args[0] = Arg;
Anders Carlsson3d5829c2009-10-13 21:49:31 +00001584
1585 ExprOwningPtr<CXXOperatorCallExpr>
1586 TheCall(this, new (Context) CXXOperatorCallExpr(Context, OverOp,
1587 FnExpr, Args, 2,
1588 ResultTy, OpLoc));
1589
1590 if (CheckCallReturnType(FnDecl->getResultType(), OpLoc, TheCall.get(),
1591 FnDecl))
1592 return ExprError();
Anders Carlsson834facc2009-10-13 22:22:09 +00001593 return Owned(TheCall.release());
1594
Douglas Gregord08452f2008-11-19 15:42:04 +00001595 } else {
1596 // We matched a built-in operator. Convert the arguments, then
1597 // break out so that we will build the appropriate built-in
1598 // operator node.
1599 if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0],
1600 "passing"))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001601 return ExprError();
Douglas Gregord08452f2008-11-19 15:42:04 +00001602
1603 break;
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001604 }
Douglas Gregord08452f2008-11-19 15:42:04 +00001605 }
1606
Douglas Gregor66950a32009-09-30 21:46:01 +00001607 case OR_No_Viable_Function: {
1608 // No viable function; try checking this as a built-in operator, which
1609 // will fail and provide a diagnostic. Then, print the overload
1610 // candidates.
1611 OwningExprResult Result = CreateBuiltinUnaryOp(OpLoc, Opc, move(Input));
1612 assert(Result.isInvalid() &&
1613 "C++ postfix-unary operator overloading is missing candidates!");
1614 if (Result.isInvalid())
1615 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
1616
1617 return move(Result);
1618 }
1619
Douglas Gregord08452f2008-11-19 15:42:04 +00001620 case OR_Ambiguous:
1621 Diag(OpLoc, diag::err_ovl_ambiguous_oper)
1622 << UnaryOperator::getOpcodeStr(Opc)
1623 << Arg->getSourceRange();
1624 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001625 return ExprError();
Douglas Gregor171c45a2009-02-18 21:56:37 +00001626
1627 case OR_Deleted:
1628 Diag(OpLoc, diag::err_ovl_deleted_oper)
1629 << Best->Function->isDeleted()
1630 << UnaryOperator::getOpcodeStr(Opc)
1631 << Arg->getSourceRange();
1632 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1633 return ExprError();
Douglas Gregord08452f2008-11-19 15:42:04 +00001634 }
1635
1636 // Either we found no viable overloaded operator or we matched a
1637 // built-in operator. In either case, fall through to trying to
1638 // build a built-in operation.
1639 }
1640
Eli Friedmanf32f0a72009-07-22 23:24:42 +00001641 Input.release();
1642 Input = Arg;
Eli Friedman6aea5752009-07-22 22:25:00 +00001643 return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input));
Chris Lattnere168f762006-11-10 05:29:30 +00001644}
1645
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001646Action::OwningExprResult
1647Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc,
1648 ExprArg Idx, SourceLocation RLoc) {
Nate Begeman5ec4b312009-08-10 23:49:36 +00001649 // Since this might be a postfix expression, get rid of ParenListExprs.
1650 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
1651
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001652 Expr *LHSExp = static_cast<Expr*>(Base.get()),
1653 *RHSExp = static_cast<Expr*>(Idx.get());
Mike Stump11289f42009-09-09 15:08:12 +00001654
Douglas Gregor40412ac2008-11-19 17:17:41 +00001655 if (getLangOptions().CPlusPlus &&
Douglas Gregor7a77a6b2009-05-19 00:01:19 +00001656 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
1657 Base.release();
1658 Idx.release();
1659 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
1660 Context.DependentTy, RLoc));
1661 }
1662
Mike Stump11289f42009-09-09 15:08:12 +00001663 if (getLangOptions().CPlusPlus &&
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001664 (LHSExp->getType()->isRecordType() ||
Eli Friedman254a1a22008-12-15 22:34:21 +00001665 LHSExp->getType()->isEnumeralType() ||
1666 RHSExp->getType()->isRecordType() ||
1667 RHSExp->getType()->isEnumeralType())) {
Mike Stump11289f42009-09-09 15:08:12 +00001668 // Add the appropriate overloaded operators (C++ [over.match.oper])
Douglas Gregor40412ac2008-11-19 17:17:41 +00001669 // to the candidate set.
1670 OverloadCandidateSet CandidateSet;
1671 Expr *Args[2] = { LHSExp, RHSExp };
Douglas Gregor1baf54e2009-03-13 18:40:31 +00001672 AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet,
1673 SourceRange(LLoc, RLoc));
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001674
Douglas Gregor40412ac2008-11-19 17:17:41 +00001675 // Perform overload resolution.
1676 OverloadCandidateSet::iterator Best;
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00001677 switch (BestViableFunction(CandidateSet, LLoc, Best)) {
Douglas Gregor40412ac2008-11-19 17:17:41 +00001678 case OR_Success: {
1679 // We found a built-in operator or an overloaded operator.
1680 FunctionDecl *FnDecl = Best->Function;
1681
1682 if (FnDecl) {
1683 // We matched an overloaded operator. Build a call to that
1684 // operator.
1685
1686 // Convert the arguments.
1687 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1688 if (PerformObjectArgumentInitialization(LHSExp, Method) ||
Mike Stump11289f42009-09-09 15:08:12 +00001689 PerformCopyInitialization(RHSExp,
Douglas Gregor40412ac2008-11-19 17:17:41 +00001690 FnDecl->getParamDecl(0)->getType(),
1691 "passing"))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001692 return ExprError();
Douglas Gregor40412ac2008-11-19 17:17:41 +00001693 } else {
1694 // Convert the arguments.
1695 if (PerformCopyInitialization(LHSExp,
1696 FnDecl->getParamDecl(0)->getType(),
1697 "passing") ||
1698 PerformCopyInitialization(RHSExp,
1699 FnDecl->getParamDecl(1)->getType(),
1700 "passing"))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001701 return ExprError();
Douglas Gregor40412ac2008-11-19 17:17:41 +00001702 }
1703
1704 // Determine the result type
Anders Carlsson834facc2009-10-13 22:22:09 +00001705 QualType ResultTy = FnDecl->getResultType().getNonReferenceType();
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001706
Douglas Gregor40412ac2008-11-19 17:17:41 +00001707 // Build the actual expression node.
Mike Stump4e1f26a2009-02-19 03:04:26 +00001708 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
1709 SourceLocation());
Douglas Gregor40412ac2008-11-19 17:17:41 +00001710 UsualUnaryConversions(FnExpr);
1711
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001712 Base.release();
1713 Idx.release();
Douglas Gregor2517f332009-05-27 05:00:47 +00001714 Args[0] = LHSExp;
1715 Args[1] = RHSExp;
Anders Carlsson834facc2009-10-13 22:22:09 +00001716
1717 ExprOwningPtr<CXXOperatorCallExpr>
1718 TheCall(this, new (Context) CXXOperatorCallExpr(Context, OO_Subscript,
1719 FnExpr, Args, 2,
1720 ResultTy, RLoc));
1721 if (CheckCallReturnType(FnDecl->getResultType(), LLoc, TheCall.get(),
1722 FnDecl))
1723 return ExprError();
1724
1725 return Owned(TheCall.release());
Douglas Gregor40412ac2008-11-19 17:17:41 +00001726 } else {
1727 // We matched a built-in operator. Convert the arguments, then
1728 // break out so that we will build the appropriate built-in
1729 // operator node.
1730 if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0],
1731 "passing") ||
1732 PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1],
1733 "passing"))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001734 return ExprError();
Douglas Gregor40412ac2008-11-19 17:17:41 +00001735
1736 break;
1737 }
1738 }
1739
1740 case OR_No_Viable_Function:
1741 // No viable function; fall through to handling this as a
1742 // built-in operator, which will produce an error message for us.
1743 break;
1744
1745 case OR_Ambiguous:
1746 Diag(LLoc, diag::err_ovl_ambiguous_oper)
1747 << "[]"
1748 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1749 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001750 return ExprError();
Douglas Gregor171c45a2009-02-18 21:56:37 +00001751
1752 case OR_Deleted:
1753 Diag(LLoc, diag::err_ovl_deleted_oper)
1754 << Best->Function->isDeleted()
1755 << "[]"
1756 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1757 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1758 return ExprError();
Douglas Gregor40412ac2008-11-19 17:17:41 +00001759 }
1760
1761 // Either we found no viable overloaded operator or we matched a
1762 // built-in operator. In either case, fall through to trying to
1763 // build a built-in operation.
1764 }
1765
Chris Lattner36d572b2007-07-16 00:14:47 +00001766 // Perform default conversions.
1767 DefaultFunctionArrayConversion(LHSExp);
1768 DefaultFunctionArrayConversion(RHSExp);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001769
Chris Lattner36d572b2007-07-16 00:14:47 +00001770 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Steve Narofff1e53692007-03-23 22:27:02 +00001771
Steve Naroffc1aadb12007-03-28 21:49:40 +00001772 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattnerf17bd422007-08-30 17:45:32 +00001773 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stump4e1f26a2009-02-19 03:04:26 +00001774 // in the subscript position. As a result, we need to derive the array base
Steve Narofff1e53692007-03-23 22:27:02 +00001775 // and index from the expression types.
Chris Lattner36d572b2007-07-16 00:14:47 +00001776 Expr *BaseExpr, *IndexExpr;
1777 QualType ResultType;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001778 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
1779 BaseExpr = LHSExp;
1780 IndexExpr = RHSExp;
1781 ResultType = Context.DependentTy;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001782 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
Chris Lattner36d572b2007-07-16 00:14:47 +00001783 BaseExpr = LHSExp;
1784 IndexExpr = RHSExp;
Chris Lattner36d572b2007-07-16 00:14:47 +00001785 ResultType = PTy->getPointeeType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001786 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
Chris Lattneraee0cfd2007-07-16 00:23:25 +00001787 // Handle the uncommon case of "123[Ptr]".
Chris Lattner36d572b2007-07-16 00:14:47 +00001788 BaseExpr = RHSExp;
1789 IndexExpr = LHSExp;
Chris Lattner36d572b2007-07-16 00:14:47 +00001790 ResultType = PTy->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00001791 } else if (const ObjCObjectPointerType *PTy =
John McCall9dd450b2009-09-21 23:43:11 +00001792 LHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00001793 BaseExpr = LHSExp;
1794 IndexExpr = RHSExp;
1795 ResultType = PTy->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00001796 } else if (const ObjCObjectPointerType *PTy =
John McCall9dd450b2009-09-21 23:43:11 +00001797 RHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00001798 // Handle the uncommon case of "123[Ptr]".
1799 BaseExpr = RHSExp;
1800 IndexExpr = LHSExp;
1801 ResultType = PTy->getPointeeType();
John McCall9dd450b2009-09-21 23:43:11 +00001802 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
Chris Lattner41977962007-07-31 19:29:30 +00001803 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner36d572b2007-07-16 00:14:47 +00001804 IndexExpr = RHSExp;
Nate Begemanc1bf0612009-01-18 00:45:31 +00001805
Chris Lattner36d572b2007-07-16 00:14:47 +00001806 // FIXME: need to deal with const...
1807 ResultType = VTy->getElementType();
Eli Friedmanab2784f2009-04-25 23:46:54 +00001808 } else if (LHSTy->isArrayType()) {
1809 // If we see an array that wasn't promoted by
1810 // DefaultFunctionArrayConversion, it must be an array that
1811 // wasn't promoted because of the C90 rule that doesn't
1812 // allow promoting non-lvalue arrays. Warn, then
1813 // force the promotion here.
1814 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1815 LHSExp->getSourceRange();
1816 ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy));
1817 LHSTy = LHSExp->getType();
1818
1819 BaseExpr = LHSExp;
1820 IndexExpr = RHSExp;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001821 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
Eli Friedmanab2784f2009-04-25 23:46:54 +00001822 } else if (RHSTy->isArrayType()) {
1823 // Same as previous, except for 123[f().a] case
1824 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1825 RHSExp->getSourceRange();
1826 ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy));
1827 RHSTy = RHSExp->getType();
1828
1829 BaseExpr = RHSExp;
1830 IndexExpr = LHSExp;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001831 ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroffb3096442007-06-09 03:47:53 +00001832 } else {
Chris Lattner003af242009-04-25 22:50:55 +00001833 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
1834 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001835 }
Steve Naroffc1aadb12007-03-28 21:49:40 +00001836 // C99 6.5.2.1p1
Nate Begeman5ec4b312009-08-10 23:49:36 +00001837 if (!(IndexExpr->getType()->isIntegerType() &&
1838 IndexExpr->getType()->isScalarType()) && !IndexExpr->isTypeDependent())
Chris Lattner003af242009-04-25 22:50:55 +00001839 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
1840 << IndexExpr->getSourceRange());
Steve Naroffb29cdd52007-07-10 18:23:31 +00001841
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00001842 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
Sam Weinigb7608d72009-09-14 20:14:57 +00001843 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
1844 && !IndexExpr->isTypeDependent())
Sam Weinig914244e2009-09-14 01:58:58 +00001845 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
1846
Douglas Gregorac1fb652009-03-24 19:52:54 +00001847 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
Mike Stump11289f42009-09-09 15:08:12 +00001848 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
1849 // type. Note that Functions are not objects, and that (in C99 parlance)
Douglas Gregorac1fb652009-03-24 19:52:54 +00001850 // incomplete types are not object types.
1851 if (ResultType->isFunctionType()) {
1852 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
1853 << ResultType << BaseExpr->getSourceRange();
1854 return ExprError();
1855 }
Mike Stump11289f42009-09-09 15:08:12 +00001856
Douglas Gregorac1fb652009-03-24 19:52:54 +00001857 if (!ResultType->isDependentType() &&
Mike Stump11289f42009-09-09 15:08:12 +00001858 RequireCompleteType(LLoc, ResultType,
Anders Carlssond624e162009-08-26 23:45:07 +00001859 PDiag(diag::err_subscript_incomplete_type)
1860 << BaseExpr->getSourceRange()))
Douglas Gregorac1fb652009-03-24 19:52:54 +00001861 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00001862
Chris Lattner62975a72009-04-24 00:30:45 +00001863 // Diagnose bad cases where we step over interface counts.
1864 if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
1865 Diag(LLoc, diag::err_subscript_nonfragile_interface)
1866 << ResultType << BaseExpr->getSourceRange();
1867 return ExprError();
1868 }
Mike Stump11289f42009-09-09 15:08:12 +00001869
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001870 Base.release();
1871 Idx.release();
Mike Stump4e1f26a2009-02-19 03:04:26 +00001872 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
Steve Narofff6009ed2009-01-21 00:14:39 +00001873 ResultType, RLoc));
Chris Lattnere168f762006-11-10 05:29:30 +00001874}
1875
Steve Narofff8fd09e2007-07-27 22:15:19 +00001876QualType Sema::
Nate Begemance4d7fc2008-04-18 23:10:10 +00001877CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc,
Mike Stump11289f42009-09-09 15:08:12 +00001878 const IdentifierInfo *CompName,
Anders Carlssonf571c112009-08-26 18:25:21 +00001879 SourceLocation CompLoc) {
Daniel Dunbarc0429402009-10-18 02:09:38 +00001880 // FIXME: Share logic with ExtVectorElementExpr::containsDuplicateElements,
1881 // see FIXME there.
1882 //
1883 // FIXME: This logic can be greatly simplified by splitting it along
1884 // halving/not halving and reworking the component checking.
John McCall9dd450b2009-09-21 23:43:11 +00001885 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
Nate Begemanf322eab2008-05-09 06:41:27 +00001886
Steve Narofff8fd09e2007-07-27 22:15:19 +00001887 // The vector accessor can't exceed the number of elements.
Anders Carlssonf571c112009-08-26 18:25:21 +00001888 const char *compStr = CompName->getName();
Nate Begemanbb70bf62009-01-18 01:47:54 +00001889
Mike Stump4e1f26a2009-02-19 03:04:26 +00001890 // This flag determines whether or not the component is one of the four
Nate Begemanbb70bf62009-01-18 01:47:54 +00001891 // special names that indicate a subset of exactly half the elements are
1892 // to be selected.
1893 bool HalvingSwizzle = false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00001894
Nate Begemanbb70bf62009-01-18 01:47:54 +00001895 // This flag determines whether or not CompName has an 's' char prefix,
1896 // indicating that it is a string of hex values to be used as vector indices.
Nate Begeman0359e122009-06-25 21:06:09 +00001897 bool HexSwizzle = *compStr == 's' || *compStr == 'S';
Nate Begemanf322eab2008-05-09 06:41:27 +00001898
1899 // Check that we've found one of the special components, or that the component
1900 // names must come from the same set.
Mike Stump4e1f26a2009-02-19 03:04:26 +00001901 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
Nate Begemanbb70bf62009-01-18 01:47:54 +00001902 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
1903 HalvingSwizzle = true;
Nate Begemanf322eab2008-05-09 06:41:27 +00001904 } else if (vecType->getPointAccessorIdx(*compStr) != -1) {
Chris Lattner7e152db2007-08-02 22:33:49 +00001905 do
1906 compStr++;
1907 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
Nate Begemanbb70bf62009-01-18 01:47:54 +00001908 } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) {
Chris Lattner7e152db2007-08-02 22:33:49 +00001909 do
1910 compStr++;
Nate Begemanbb70bf62009-01-18 01:47:54 +00001911 while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1);
Chris Lattner7e152db2007-08-02 22:33:49 +00001912 }
Nate Begemanbb70bf62009-01-18 01:47:54 +00001913
Mike Stump4e1f26a2009-02-19 03:04:26 +00001914 if (!HalvingSwizzle && *compStr) {
Steve Narofff8fd09e2007-07-27 22:15:19 +00001915 // We didn't get to the end of the string. This means the component names
1916 // didn't come from the same set *or* we encountered an illegal name.
Chris Lattner3b054132008-11-19 05:08:23 +00001917 Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
1918 << std::string(compStr,compStr+1) << SourceRange(CompLoc);
Steve Narofff8fd09e2007-07-27 22:15:19 +00001919 return QualType();
1920 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00001921
Nate Begemanbb70bf62009-01-18 01:47:54 +00001922 // Ensure no component accessor exceeds the width of the vector type it
1923 // operates on.
1924 if (!HalvingSwizzle) {
Anders Carlssonf571c112009-08-26 18:25:21 +00001925 compStr = CompName->getName();
Nate Begemanbb70bf62009-01-18 01:47:54 +00001926
1927 if (HexSwizzle)
Steve Narofff8fd09e2007-07-27 22:15:19 +00001928 compStr++;
Nate Begemanbb70bf62009-01-18 01:47:54 +00001929
1930 while (*compStr) {
1931 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
1932 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
1933 << baseType << SourceRange(CompLoc);
1934 return QualType();
1935 }
1936 }
Steve Narofff8fd09e2007-07-27 22:15:19 +00001937 }
Nate Begemanf322eab2008-05-09 06:41:27 +00001938
Nate Begemanbb70bf62009-01-18 01:47:54 +00001939 // If this is a halving swizzle, verify that the base type has an even
1940 // number of elements.
1941 if (HalvingSwizzle && (vecType->getNumElements() & 1U)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001942 Diag(OpLoc, diag::err_ext_vector_component_requires_even)
Chris Lattner1e5665e2008-11-24 06:25:27 +00001943 << baseType << SourceRange(CompLoc);
Nate Begemanf322eab2008-05-09 06:41:27 +00001944 return QualType();
1945 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00001946
Steve Narofff8fd09e2007-07-27 22:15:19 +00001947 // The component accessor looks fine - now we need to compute the actual type.
Mike Stump4e1f26a2009-02-19 03:04:26 +00001948 // The vector type is implied by the component accessor. For example,
Steve Narofff8fd09e2007-07-27 22:15:19 +00001949 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begemanbb70bf62009-01-18 01:47:54 +00001950 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
Nate Begemanf322eab2008-05-09 06:41:27 +00001951 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
Nate Begemanbb70bf62009-01-18 01:47:54 +00001952 unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2
Anders Carlssonf571c112009-08-26 18:25:21 +00001953 : CompName->getLength();
Nate Begemanbb70bf62009-01-18 01:47:54 +00001954 if (HexSwizzle)
1955 CompSize--;
1956
Steve Narofff8fd09e2007-07-27 22:15:19 +00001957 if (CompSize == 1)
1958 return vecType->getElementType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00001959
Nate Begemance4d7fc2008-04-18 23:10:10 +00001960 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize);
Mike Stump4e1f26a2009-02-19 03:04:26 +00001961 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begemance4d7fc2008-04-18 23:10:10 +00001962 // diagostics look bad. We want extended vector types to appear built-in.
1963 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) {
1964 if (ExtVectorDecls[i]->getUnderlyingType() == VT)
1965 return Context.getTypedefType(ExtVectorDecls[i]);
Steve Naroffddf5a1d2007-07-29 16:33:31 +00001966 }
1967 return VT; // should never get here (a typedef type should always be found).
Steve Narofff8fd09e2007-07-27 22:15:19 +00001968}
1969
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001970static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
Anders Carlssonf571c112009-08-26 18:25:21 +00001971 IdentifierInfo *Member,
Douglas Gregorbcced4e2009-04-09 21:40:53 +00001972 const Selector &Sel,
1973 ASTContext &Context) {
Mike Stump11289f42009-09-09 15:08:12 +00001974
Anders Carlssonf571c112009-08-26 18:25:21 +00001975 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member))
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001976 return PD;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001977 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001978 return OMD;
Mike Stump11289f42009-09-09 15:08:12 +00001979
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001980 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(),
1981 E = PDecl->protocol_end(); I != E; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +00001982 if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel,
Douglas Gregorbcced4e2009-04-09 21:40:53 +00001983 Context))
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001984 return D;
1985 }
1986 return 0;
1987}
1988
Steve Narofffb4330f2009-06-17 22:40:22 +00001989static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy,
Anders Carlssonf571c112009-08-26 18:25:21 +00001990 IdentifierInfo *Member,
Douglas Gregorbcced4e2009-04-09 21:40:53 +00001991 const Selector &Sel,
1992 ASTContext &Context) {
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001993 // Check protocols on qualified interfaces.
1994 Decl *GDecl = 0;
Steve Narofffb4330f2009-06-17 22:40:22 +00001995 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001996 E = QIdTy->qual_end(); I != E; ++I) {
Anders Carlssonf571c112009-08-26 18:25:21 +00001997 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001998 GDecl = PD;
1999 break;
2000 }
2001 // Also must look for a getter name which uses property syntax.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002002 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002003 GDecl = OMD;
2004 break;
2005 }
2006 }
2007 if (!GDecl) {
Steve Narofffb4330f2009-06-17 22:40:22 +00002008 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002009 E = QIdTy->qual_end(); I != E; ++I) {
2010 // Search in the protocol-qualifier list of current protocol.
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002011 GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context);
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002012 if (GDecl)
2013 return GDecl;
2014 }
2015 }
2016 return GDecl;
2017}
Chris Lattner4bf74fd2009-02-15 22:43:40 +00002018
Mike Stump11289f42009-09-09 15:08:12 +00002019Action::OwningExprResult
Anders Carlssonf571c112009-08-26 18:25:21 +00002020Sema::BuildMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002021 tok::TokenKind OpKind, SourceLocation MemberLoc,
Mike Stump11289f42009-09-09 15:08:12 +00002022 DeclarationName MemberName,
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002023 bool HasExplicitTemplateArgs,
2024 SourceLocation LAngleLoc,
2025 const TemplateArgument *ExplicitTemplateArgs,
2026 unsigned NumExplicitTemplateArgs,
2027 SourceLocation RAngleLoc,
Douglas Gregor2b6ca462009-09-03 21:38:09 +00002028 DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS,
2029 NamedDecl *FirstQualifierInScope) {
Douglas Gregord8061562009-08-06 03:17:00 +00002030 if (SS && SS->isInvalid())
2031 return ExprError();
2032
Nate Begeman5ec4b312009-08-10 23:49:36 +00002033 // Since this might be a postfix expression, get rid of ParenListExprs.
2034 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
2035
Anders Carlsson3cbc8592009-05-01 19:30:39 +00002036 Expr *BaseExpr = Base.takeAs<Expr>();
Douglas Gregorad8a3362009-09-04 17:36:40 +00002037 assert(BaseExpr && "no base expression");
Mike Stump11289f42009-09-09 15:08:12 +00002038
Steve Naroffeaaae462007-12-16 21:42:28 +00002039 // Perform default conversions.
2040 DefaultFunctionArrayConversion(BaseExpr);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002041
Steve Naroff185616f2007-07-26 03:11:44 +00002042 QualType BaseType = BaseExpr->getType();
David Chisnall9f57c292009-08-17 16:35:33 +00002043 // If this is an Objective-C pseudo-builtin and a definition is provided then
2044 // use that.
2045 if (BaseType->isObjCIdType()) {
2046 // We have an 'id' type. Rather than fall through, we check if this
2047 // is a reference to 'isa'.
2048 if (BaseType != Context.ObjCIdRedefinitionType) {
2049 BaseType = Context.ObjCIdRedefinitionType;
2050 ImpCastExprToType(BaseExpr, BaseType);
2051 }
David Chisnall9f57c292009-08-17 16:35:33 +00002052 }
Steve Naroff185616f2007-07-26 03:11:44 +00002053 assert(!BaseType.isNull() && "no type for member expression");
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002054
Fariborz Jahaniane983d172009-09-22 16:48:37 +00002055 // Handle properties on ObjC 'Class' types.
2056 if (OpKind == tok::period && BaseType->isObjCClassType()) {
2057 // Also must look for a getter name which uses property syntax.
2058 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
2059 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
2060 if (ObjCMethodDecl *MD = getCurMethodDecl()) {
2061 ObjCInterfaceDecl *IFace = MD->getClassInterface();
2062 ObjCMethodDecl *Getter;
2063 // FIXME: need to also look locally in the implementation.
2064 if ((Getter = IFace->lookupClassMethod(Sel))) {
2065 // Check the use of this method.
2066 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2067 return ExprError();
2068 }
2069 // If we found a getter then this may be a valid dot-reference, we
2070 // will look for the matching setter, in case it is needed.
2071 Selector SetterSel =
2072 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2073 PP.getSelectorTable(), Member);
2074 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
2075 if (!Setter) {
2076 // If this reference is in an @implementation, also check for 'private'
2077 // methods.
Steve Naroffbb69c942009-10-01 23:46:04 +00002078 Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
Fariborz Jahaniane983d172009-09-22 16:48:37 +00002079 }
2080 // Look through local category implementations associated with the class.
2081 if (!Setter)
2082 Setter = IFace->getCategoryClassMethod(SetterSel);
2083
2084 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2085 return ExprError();
2086
2087 if (Getter || Setter) {
2088 QualType PType;
2089
2090 if (Getter)
2091 PType = Getter->getResultType();
2092 else
2093 // Get the expression type from Setter's incoming parameter.
2094 PType = (*(Setter->param_end() -1))->getType();
2095 // FIXME: we must check that the setter has property type.
2096 return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter,
2097 PType,
2098 Setter, MemberLoc, BaseExpr));
2099 }
2100 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2101 << MemberName << BaseType);
2102 }
2103 }
2104
2105 if (BaseType->isObjCClassType() &&
2106 BaseType != Context.ObjCClassRedefinitionType) {
2107 BaseType = Context.ObjCClassRedefinitionType;
2108 ImpCastExprToType(BaseExpr, BaseType);
2109 }
2110
Chris Lattner4befd732008-07-21 04:36:39 +00002111 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
2112 // must have pointer type, and the accessed type is the pointee.
Steve Narofff1e53692007-03-23 22:27:02 +00002113 if (OpKind == tok::arrow) {
Douglas Gregor2b6ca462009-09-03 21:38:09 +00002114 if (BaseType->isDependentType()) {
2115 NestedNameSpecifier *Qualifier = 0;
2116 if (SS) {
2117 Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep());
2118 if (!FirstQualifierInScope)
2119 FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier);
2120 }
Mike Stump11289f42009-09-09 15:08:12 +00002121
2122 return Owned(CXXUnresolvedMemberExpr::Create(Context, BaseExpr, true,
Douglas Gregor308047d2009-09-09 00:23:06 +00002123 OpLoc, Qualifier,
Douglas Gregorc26e0f62009-09-03 16:14:30 +00002124 SS? SS->getRange() : SourceRange(),
Douglas Gregor308047d2009-09-09 00:23:06 +00002125 FirstQualifierInScope,
2126 MemberName,
2127 MemberLoc,
2128 HasExplicitTemplateArgs,
2129 LAngleLoc,
2130 ExplicitTemplateArgs,
2131 NumExplicitTemplateArgs,
2132 RAngleLoc));
Douglas Gregor2b6ca462009-09-03 21:38:09 +00002133 }
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002134 else if (const PointerType *PT = BaseType->getAs<PointerType>())
Steve Naroff185616f2007-07-26 03:11:44 +00002135 BaseType = PT->getPointeeType();
Steve Naroff7cae42b2009-07-10 23:34:53 +00002136 else if (BaseType->isObjCObjectPointerType())
2137 ;
Steve Naroff185616f2007-07-26 03:11:44 +00002138 else
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002139 return ExprError(Diag(MemberLoc,
2140 diag::err_typecheck_member_reference_arrow)
2141 << BaseType << BaseExpr->getSourceRange());
Fariborz Jahaniane983d172009-09-22 16:48:37 +00002142 } else if (BaseType->isDependentType()) {
Mike Stump11289f42009-09-09 15:08:12 +00002143 // Require that the base type isn't a pointer type
Anders Carlsson524d5a42009-05-16 20:31:20 +00002144 // (so we'll report an error for)
2145 // T* t;
2146 // t.f;
Mike Stump11289f42009-09-09 15:08:12 +00002147 //
Anders Carlsson524d5a42009-05-16 20:31:20 +00002148 // In Obj-C++, however, the above expression is valid, since it could be
2149 // accessing the 'f' property if T is an Obj-C interface. The extra check
2150 // allows this, while still reporting an error if T is a struct pointer.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002151 const PointerType *PT = BaseType->getAs<PointerType>();
Anders Carlsson524d5a42009-05-16 20:31:20 +00002152
Mike Stump11289f42009-09-09 15:08:12 +00002153 if (!PT || (getLangOptions().ObjC1 &&
Douglas Gregor2b6ca462009-09-03 21:38:09 +00002154 !PT->getPointeeType()->isRecordType())) {
2155 NestedNameSpecifier *Qualifier = 0;
2156 if (SS) {
2157 Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep());
2158 if (!FirstQualifierInScope)
2159 FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier);
2160 }
Mike Stump11289f42009-09-09 15:08:12 +00002161
Douglas Gregor308047d2009-09-09 00:23:06 +00002162 return Owned(CXXUnresolvedMemberExpr::Create(Context,
Mike Stump11289f42009-09-09 15:08:12 +00002163 BaseExpr, false,
2164 OpLoc,
Douglas Gregor308047d2009-09-09 00:23:06 +00002165 Qualifier,
Douglas Gregorc26e0f62009-09-03 16:14:30 +00002166 SS? SS->getRange() : SourceRange(),
Douglas Gregor308047d2009-09-09 00:23:06 +00002167 FirstQualifierInScope,
2168 MemberName,
2169 MemberLoc,
2170 HasExplicitTemplateArgs,
2171 LAngleLoc,
2172 ExplicitTemplateArgs,
2173 NumExplicitTemplateArgs,
2174 RAngleLoc));
Douglas Gregor2b6ca462009-09-03 21:38:09 +00002175 }
Anders Carlsson524d5a42009-05-16 20:31:20 +00002176 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002177
Chris Lattner4befd732008-07-21 04:36:39 +00002178 // Handle field access to simple records. This also handles access to fields
2179 // of the ObjC 'id' struct.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002180 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
Steve Naroff185616f2007-07-26 03:11:44 +00002181 RecordDecl *RDecl = RTy->getDecl();
Douglas Gregored0cfbd2009-03-09 16:13:40 +00002182 if (RequireCompleteType(OpLoc, BaseType,
Anders Carlssond624e162009-08-26 23:45:07 +00002183 PDiag(diag::err_typecheck_incomplete_tag)
2184 << BaseExpr->getSourceRange()))
Douglas Gregordd430f72009-01-19 19:26:10 +00002185 return ExprError();
2186
Douglas Gregord8061562009-08-06 03:17:00 +00002187 DeclContext *DC = RDecl;
2188 if (SS && SS->isSet()) {
2189 // If the member name was a qualified-id, look into the
2190 // nested-name-specifier.
2191 DC = computeDeclContext(*SS, false);
Douglas Gregor0b3d95a2009-10-17 22:37:54 +00002192
2193 if (!isa<TypeDecl>(DC)) {
2194 Diag(MemberLoc, diag::err_qualified_member_nonclass)
2195 << DC << SS->getRange();
2196 return ExprError();
2197 }
Mike Stump11289f42009-09-09 15:08:12 +00002198
2199 // FIXME: If DC is not computable, we should build a
Douglas Gregord8061562009-08-06 03:17:00 +00002200 // CXXUnresolvedMemberExpr.
2201 assert(DC && "Cannot handle non-computable dependent contexts in lookup");
2202 }
2203
Steve Naroff185616f2007-07-26 03:11:44 +00002204 // The record definition is complete, now make sure the member is valid.
John McCall9f3059a2009-10-09 21:13:30 +00002205 LookupResult Result;
2206 LookupQualifiedName(Result, DC, MemberName, LookupMemberName, false);
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002207
John McCall9f3059a2009-10-09 21:13:30 +00002208 if (Result.empty())
Douglas Gregore40876a2009-10-13 21:16:44 +00002209 return ExprError(Diag(MemberLoc, diag::err_no_member)
2210 << MemberName << DC << BaseExpr->getSourceRange());
Chris Lattnerfe4847e2009-03-31 08:18:48 +00002211 if (Result.isAmbiguous()) {
Anders Carlssonf571c112009-08-26 18:25:21 +00002212 DiagnoseAmbiguousLookup(Result, MemberName, MemberLoc,
2213 BaseExpr->getSourceRange());
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002214 return ExprError();
Chris Lattnerfe4847e2009-03-31 08:18:48 +00002215 }
Mike Stump11289f42009-09-09 15:08:12 +00002216
John McCall9f3059a2009-10-09 21:13:30 +00002217 NamedDecl *MemberDecl = Result.getAsSingleDecl(Context);
2218
Douglas Gregorc26e0f62009-09-03 16:14:30 +00002219 if (SS && SS->isSet()) {
John McCall9f3059a2009-10-09 21:13:30 +00002220 TypeDecl* TyD = cast<TypeDecl>(MemberDecl->getDeclContext());
Mike Stump11289f42009-09-09 15:08:12 +00002221 QualType BaseTypeCanon
Douglas Gregorc26e0f62009-09-03 16:14:30 +00002222 = Context.getCanonicalType(BaseType).getUnqualifiedType();
Mike Stump11289f42009-09-09 15:08:12 +00002223 QualType MemberTypeCanon
John McCall9f3059a2009-10-09 21:13:30 +00002224 = Context.getCanonicalType(Context.getTypeDeclType(TyD));
Mike Stump11289f42009-09-09 15:08:12 +00002225
Douglas Gregorc26e0f62009-09-03 16:14:30 +00002226 if (BaseTypeCanon != MemberTypeCanon &&
2227 !IsDerivedFrom(BaseTypeCanon, MemberTypeCanon))
2228 return ExprError(Diag(SS->getBeginLoc(),
2229 diag::err_not_direct_base_or_virtual)
2230 << MemberTypeCanon << BaseTypeCanon);
2231 }
Mike Stump11289f42009-09-09 15:08:12 +00002232
Chris Lattner303284a2009-02-13 22:08:30 +00002233 // If the decl being referenced had an error, return an error for this
2234 // sub-expr without emitting another error, in order to avoid cascading
2235 // error cases.
2236 if (MemberDecl->isInvalidDecl())
2237 return ExprError();
Mike Stump4e1f26a2009-02-19 03:04:26 +00002238
Anders Carlsson04e1e222009-09-10 20:48:14 +00002239 bool ShouldCheckUse = true;
2240 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) {
2241 // Don't diagnose the use of a virtual member function unless it's
2242 // explicitly qualified.
2243 if (MD->isVirtual() && (!SS || !SS->isSet()))
2244 ShouldCheckUse = false;
2245 }
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00002246
Douglas Gregor171c45a2009-02-18 21:56:37 +00002247 // Check the use of this field
Anders Carlsson04e1e222009-09-10 20:48:14 +00002248 if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc))
Douglas Gregor171c45a2009-02-18 21:56:37 +00002249 return ExprError();
Chris Lattner303284a2009-02-13 22:08:30 +00002250
Douglas Gregor55297ac2008-12-23 00:26:44 +00002251 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
Douglas Gregor9ac7a072009-01-07 00:43:41 +00002252 // We may have found a field within an anonymous union or struct
2253 // (C++ [class.union]).
2254 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
Sebastian Redlffbcf962009-01-18 18:53:16 +00002255 return BuildAnonymousStructUnionMemberReference(MemberLoc, FD,
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002256 BaseExpr, OpLoc);
Douglas Gregor9ac7a072009-01-07 00:43:41 +00002257
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00002258 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
Douglas Gregor55297ac2008-12-23 00:26:44 +00002259 QualType MemberType = FD->getType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002260 if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>())
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00002261 MemberType = Ref->getPointeeType();
2262 else {
John McCall8ccfcb52009-09-24 19:53:00 +00002263 Qualifiers BaseQuals = BaseType.getQualifiers();
2264 BaseQuals.removeObjCGCAttr();
2265 if (FD->isMutable()) BaseQuals.removeConst();
2266
2267 Qualifiers MemberQuals
2268 = Context.getCanonicalType(MemberType).getQualifiers();
2269
2270 Qualifiers Combined = BaseQuals + MemberQuals;
2271 if (Combined != MemberQuals)
2272 MemberType = Context.getQualifiedType(MemberType, Combined);
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00002273 }
Eli Friedman1242fff2008-02-06 22:48:16 +00002274
Douglas Gregor77b50e12009-06-22 23:06:13 +00002275 MarkDeclarationReferenced(MemberLoc, FD);
Fariborz Jahanian3f150832009-07-29 19:40:11 +00002276 if (PerformObjectMemberConversion(BaseExpr, FD))
2277 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002278 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
Douglas Gregorc1905232009-08-26 22:36:53 +00002279 FD, MemberLoc, MemberType));
Chris Lattnerfe4847e2009-03-31 08:18:48 +00002280 }
Mike Stump11289f42009-09-09 15:08:12 +00002281
Douglas Gregor77b50e12009-06-22 23:06:13 +00002282 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) {
2283 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorc1905232009-08-26 22:36:53 +00002284 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2285 Var, MemberLoc,
2286 Var->getType().getNonReferenceType()));
Douglas Gregor77b50e12009-06-22 23:06:13 +00002287 }
2288 if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) {
2289 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorc1905232009-08-26 22:36:53 +00002290 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2291 MemberFn, MemberLoc,
2292 MemberFn->getType()));
Douglas Gregor77b50e12009-06-22 23:06:13 +00002293 }
Mike Stump11289f42009-09-09 15:08:12 +00002294 if (FunctionTemplateDecl *FunTmpl
Douglas Gregor97628d62009-08-21 00:16:32 +00002295 = dyn_cast<FunctionTemplateDecl>(MemberDecl)) {
2296 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Mike Stump11289f42009-09-09 15:08:12 +00002297
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002298 if (HasExplicitTemplateArgs)
Mike Stump11289f42009-09-09 15:08:12 +00002299 return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow,
2300 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002301 SS? SS->getRange() : SourceRange(),
Mike Stump11289f42009-09-09 15:08:12 +00002302 FunTmpl, MemberLoc, true,
2303 LAngleLoc, ExplicitTemplateArgs,
2304 NumExplicitTemplateArgs, RAngleLoc,
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002305 Context.OverloadTy));
Mike Stump11289f42009-09-09 15:08:12 +00002306
Douglas Gregorc1905232009-08-26 22:36:53 +00002307 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2308 FunTmpl, MemberLoc,
2309 Context.OverloadTy));
Douglas Gregor97628d62009-08-21 00:16:32 +00002310 }
Chris Lattnerfe4847e2009-03-31 08:18:48 +00002311 if (OverloadedFunctionDecl *Ovl
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002312 = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) {
2313 if (HasExplicitTemplateArgs)
Mike Stump11289f42009-09-09 15:08:12 +00002314 return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow,
2315 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002316 SS? SS->getRange() : SourceRange(),
Mike Stump11289f42009-09-09 15:08:12 +00002317 Ovl, MemberLoc, true,
2318 LAngleLoc, ExplicitTemplateArgs,
2319 NumExplicitTemplateArgs, RAngleLoc,
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002320 Context.OverloadTy));
2321
Douglas Gregorc1905232009-08-26 22:36:53 +00002322 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2323 Ovl, MemberLoc, Context.OverloadTy));
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002324 }
Douglas Gregor77b50e12009-06-22 23:06:13 +00002325 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) {
2326 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorc1905232009-08-26 22:36:53 +00002327 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2328 Enum, MemberLoc, Enum->getType()));
Douglas Gregor77b50e12009-06-22 23:06:13 +00002329 }
Chris Lattnerfe4847e2009-03-31 08:18:48 +00002330 if (isa<TypeDecl>(MemberDecl))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002331 return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type)
Anders Carlssonf571c112009-08-26 18:25:21 +00002332 << MemberName << int(OpKind == tok::arrow));
Eli Friedman1242fff2008-02-06 22:48:16 +00002333
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00002334 // We found a declaration kind that we didn't expect. This is a
2335 // generic error message that tells the user that she can't refer
2336 // to this member with '.' or '->'.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002337 return ExprError(Diag(MemberLoc,
2338 diag::err_typecheck_member_reference_unknown)
Anders Carlssonf571c112009-08-26 18:25:21 +00002339 << MemberName << int(OpKind == tok::arrow));
Chris Lattnerb63a7452008-07-21 04:28:12 +00002340 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002341
Douglas Gregorad8a3362009-09-04 17:36:40 +00002342 // Handle pseudo-destructors (C++ [expr.pseudo]). Since anything referring
2343 // into a record type was handled above, any destructor we see here is a
2344 // pseudo-destructor.
2345 if (MemberName.getNameKind() == DeclarationName::CXXDestructorName) {
2346 // C++ [expr.pseudo]p2:
Mike Stump11289f42009-09-09 15:08:12 +00002347 // The left hand side of the dot operator shall be of scalar type. The
2348 // left hand side of the arrow operator shall be of pointer to scalar
Douglas Gregorad8a3362009-09-04 17:36:40 +00002349 // type.
2350 if (!BaseType->isScalarType())
2351 return Owned(Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
2352 << BaseType << BaseExpr->getSourceRange());
Mike Stump11289f42009-09-09 15:08:12 +00002353
Douglas Gregorad8a3362009-09-04 17:36:40 +00002354 // [...] The type designated by the pseudo-destructor-name shall be the
2355 // same as the object type.
2356 if (!MemberName.getCXXNameType()->isDependentType() &&
2357 !Context.hasSameUnqualifiedType(BaseType, MemberName.getCXXNameType()))
2358 return Owned(Diag(OpLoc, diag::err_pseudo_dtor_type_mismatch)
2359 << BaseType << MemberName.getCXXNameType()
2360 << BaseExpr->getSourceRange() << SourceRange(MemberLoc));
Mike Stump11289f42009-09-09 15:08:12 +00002361
2362 // [...] Furthermore, the two type-names in a pseudo-destructor-name of
Douglas Gregorad8a3362009-09-04 17:36:40 +00002363 // the form
2364 //
Mike Stump11289f42009-09-09 15:08:12 +00002365 // ::[opt] nested-name-specifier[opt] type-name :: ̃ type-name
2366 //
Douglas Gregorad8a3362009-09-04 17:36:40 +00002367 // shall designate the same scalar type.
2368 //
2369 // FIXME: DPG can't see any way to trigger this particular clause, so it
2370 // isn't checked here.
Mike Stump11289f42009-09-09 15:08:12 +00002371
Douglas Gregorad8a3362009-09-04 17:36:40 +00002372 // FIXME: We've lost the precise spelling of the type by going through
2373 // DeclarationName. Can we do better?
2374 return Owned(new (Context) CXXPseudoDestructorExpr(Context, BaseExpr,
Mike Stump11289f42009-09-09 15:08:12 +00002375 OpKind == tok::arrow,
Douglas Gregorad8a3362009-09-04 17:36:40 +00002376 OpLoc,
Mike Stump11289f42009-09-09 15:08:12 +00002377 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregorad8a3362009-09-04 17:36:40 +00002378 SS? SS->getRange() : SourceRange(),
2379 MemberName.getCXXNameType(),
2380 MemberLoc));
2381 }
Mike Stump11289f42009-09-09 15:08:12 +00002382
Chris Lattnerdc420f42008-07-21 04:59:05 +00002383 // Handle access to Objective-C instance variables, such as "Obj->ivar" and
2384 // (*Obj).ivar.
Steve Naroff7cae42b2009-07-10 23:34:53 +00002385 if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) ||
2386 (OpKind == tok::period && BaseType->isObjCInterfaceType())) {
John McCall9dd450b2009-09-21 23:43:11 +00002387 const ObjCObjectPointerType *OPT = BaseType->getAs<ObjCObjectPointerType>();
Mike Stump11289f42009-09-09 15:08:12 +00002388 const ObjCInterfaceType *IFaceT =
John McCall9dd450b2009-09-21 23:43:11 +00002389 OPT ? OPT->getInterfaceType() : BaseType->getAs<ObjCInterfaceType>();
Steve Naroffa057ba92009-07-16 00:25:06 +00002390 if (IFaceT) {
Anders Carlssonf571c112009-08-26 18:25:21 +00002391 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
2392
Steve Naroffa057ba92009-07-16 00:25:06 +00002393 ObjCInterfaceDecl *IDecl = IFaceT->getDecl();
2394 ObjCInterfaceDecl *ClassDeclared;
Anders Carlssonf571c112009-08-26 18:25:21 +00002395 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
Mike Stump11289f42009-09-09 15:08:12 +00002396
Steve Naroffa057ba92009-07-16 00:25:06 +00002397 if (IV) {
2398 // If the decl being referenced had an error, return an error for this
2399 // sub-expr without emitting another error, in order to avoid cascading
2400 // error cases.
2401 if (IV->isInvalidDecl())
2402 return ExprError();
Douglas Gregor171c45a2009-02-18 21:56:37 +00002403
Steve Naroffa057ba92009-07-16 00:25:06 +00002404 // Check whether we can reference this field.
2405 if (DiagnoseUseOfDecl(IV, MemberLoc))
2406 return ExprError();
2407 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
2408 IV->getAccessControl() != ObjCIvarDecl::Package) {
2409 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
2410 if (ObjCMethodDecl *MD = getCurMethodDecl())
2411 ClassOfMethodDecl = MD->getClassInterface();
2412 else if (ObjCImpDecl && getCurFunctionDecl()) {
2413 // Case of a c-function declared inside an objc implementation.
2414 // FIXME: For a c-style function nested inside an objc implementation
2415 // class, there is no implementation context available, so we pass
2416 // down the context as argument to this routine. Ideally, this context
2417 // need be passed down in the AST node and somehow calculated from the
2418 // AST for a function decl.
2419 Decl *ImplDecl = ObjCImpDecl.getAs<Decl>();
Mike Stump11289f42009-09-09 15:08:12 +00002420 if (ObjCImplementationDecl *IMPD =
Steve Naroffa057ba92009-07-16 00:25:06 +00002421 dyn_cast<ObjCImplementationDecl>(ImplDecl))
2422 ClassOfMethodDecl = IMPD->getClassInterface();
2423 else if (ObjCCategoryImplDecl* CatImplClass =
2424 dyn_cast<ObjCCategoryImplDecl>(ImplDecl))
2425 ClassOfMethodDecl = CatImplClass->getClassInterface();
2426 }
Mike Stump11289f42009-09-09 15:08:12 +00002427
2428 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
2429 if (ClassDeclared != IDecl ||
Steve Naroffa057ba92009-07-16 00:25:06 +00002430 ClassOfMethodDecl != ClassDeclared)
Mike Stump11289f42009-09-09 15:08:12 +00002431 Diag(MemberLoc, diag::error_private_ivar_access)
Steve Naroffa057ba92009-07-16 00:25:06 +00002432 << IV->getDeclName();
Mike Stump12b8ce12009-08-04 21:02:39 +00002433 } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl))
2434 // @protected
Mike Stump11289f42009-09-09 15:08:12 +00002435 Diag(MemberLoc, diag::error_protected_ivar_access)
Steve Naroffa057ba92009-07-16 00:25:06 +00002436 << IV->getDeclName();
Steve Naroffd1b64be2009-03-04 18:34:24 +00002437 }
Steve Naroffa057ba92009-07-16 00:25:06 +00002438
2439 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(),
2440 MemberLoc, BaseExpr,
2441 OpKind == tok::arrow));
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +00002442 }
Steve Naroffa057ba92009-07-16 00:25:06 +00002443 return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
Anders Carlssonf571c112009-08-26 18:25:21 +00002444 << IDecl->getDeclName() << MemberName
Steve Naroffa057ba92009-07-16 00:25:06 +00002445 << BaseExpr->getSourceRange());
Fariborz Jahanianb1378f92008-12-13 22:20:28 +00002446 }
Chris Lattnerb63a7452008-07-21 04:28:12 +00002447 }
Steve Naroff1329fa02009-07-15 18:40:39 +00002448 // Handle properties on 'id' and qualified "id".
Mike Stump11289f42009-09-09 15:08:12 +00002449 if (OpKind == tok::period && (BaseType->isObjCIdType() ||
Steve Naroff1329fa02009-07-15 18:40:39 +00002450 BaseType->isObjCQualifiedIdType())) {
John McCall9dd450b2009-09-21 23:43:11 +00002451 const ObjCObjectPointerType *QIdTy = BaseType->getAs<ObjCObjectPointerType>();
Anders Carlssonf571c112009-08-26 18:25:21 +00002452 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Mike Stump11289f42009-09-09 15:08:12 +00002453
Steve Naroff7cae42b2009-07-10 23:34:53 +00002454 // Check protocols on qualified interfaces.
Anders Carlssonf571c112009-08-26 18:25:21 +00002455 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Steve Naroff7cae42b2009-07-10 23:34:53 +00002456 if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) {
2457 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
2458 // Check the use of this declaration
2459 if (DiagnoseUseOfDecl(PD, MemberLoc))
2460 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002461
Steve Naroff7cae42b2009-07-10 23:34:53 +00002462 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2463 MemberLoc, BaseExpr));
2464 }
2465 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
2466 // Check the use of this method.
2467 if (DiagnoseUseOfDecl(OMD, MemberLoc))
2468 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002469
Steve Naroff7cae42b2009-07-10 23:34:53 +00002470 return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel,
Mike Stump11289f42009-09-09 15:08:12 +00002471 OMD->getResultType(),
2472 OMD, OpLoc, MemberLoc,
Steve Naroff7cae42b2009-07-10 23:34:53 +00002473 NULL, 0));
2474 }
2475 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002476
Steve Naroff7cae42b2009-07-10 23:34:53 +00002477 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
Anders Carlssonf571c112009-08-26 18:25:21 +00002478 << MemberName << BaseType);
Steve Naroff7cae42b2009-07-10 23:34:53 +00002479 }
Chris Lattnerdc420f42008-07-21 04:59:05 +00002480 // Handle Objective-C property access, which is "Obj.property" where Obj is a
2481 // pointer to a (potentially qualified) interface type.
Steve Naroff7cae42b2009-07-10 23:34:53 +00002482 const ObjCObjectPointerType *OPT;
Mike Stump11289f42009-09-09 15:08:12 +00002483 if (OpKind == tok::period &&
Steve Naroff7cae42b2009-07-10 23:34:53 +00002484 (OPT = BaseType->getAsObjCInterfacePointerType())) {
2485 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
2486 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
Anders Carlssonf571c112009-08-26 18:25:21 +00002487 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Mike Stump11289f42009-09-09 15:08:12 +00002488
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002489 // Search for a declared property first.
Anders Carlssonf571c112009-08-26 18:25:21 +00002490 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) {
Douglas Gregor171c45a2009-02-18 21:56:37 +00002491 // Check whether we can reference this property.
2492 if (DiagnoseUseOfDecl(PD, MemberLoc))
2493 return ExprError();
Fariborz Jahanianb2ab73d2009-05-08 19:36:34 +00002494 QualType ResTy = PD->getType();
Anders Carlssonf571c112009-08-26 18:25:21 +00002495 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002496 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Fariborz Jahanianfe9e3942009-05-08 20:20:55 +00002497 if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))
2498 ResTy = Getter->getResultType();
Fariborz Jahanianb2ab73d2009-05-08 19:36:34 +00002499 return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy,
Chris Lattner43df5562009-02-16 18:35:08 +00002500 MemberLoc, BaseExpr));
2501 }
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002502 // Check protocols on qualified interfaces.
Steve Naroffaccc4882009-07-20 17:56:53 +00002503 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2504 E = OPT->qual_end(); I != E; ++I)
Anders Carlssonf571c112009-08-26 18:25:21 +00002505 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Douglas Gregor171c45a2009-02-18 21:56:37 +00002506 // Check whether we can reference this property.
2507 if (DiagnoseUseOfDecl(PD, MemberLoc))
2508 return ExprError();
Chris Lattner43df5562009-02-16 18:35:08 +00002509
Steve Narofff6009ed2009-01-21 00:14:39 +00002510 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
Chris Lattner43df5562009-02-16 18:35:08 +00002511 MemberLoc, BaseExpr));
2512 }
Steve Naroff7cae42b2009-07-10 23:34:53 +00002513 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2514 E = OPT->qual_end(); I != E; ++I)
Anders Carlssonf571c112009-08-26 18:25:21 +00002515 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00002516 // Check whether we can reference this property.
2517 if (DiagnoseUseOfDecl(PD, MemberLoc))
2518 return ExprError();
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002519
Steve Naroff7cae42b2009-07-10 23:34:53 +00002520 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2521 MemberLoc, BaseExpr));
2522 }
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002523 // If that failed, look for an "implicit" property by seeing if the nullary
2524 // selector is implemented.
2525
2526 // FIXME: The logic for looking up nullary and unary selectors should be
2527 // shared with the code in ActOnInstanceMessage.
2528
Anders Carlssonf571c112009-08-26 18:25:21 +00002529 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002530 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002531
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002532 // If this reference is in an @implementation, check for 'private' methods.
2533 if (!Getter)
Steve Naroffbb69c942009-10-01 23:46:04 +00002534 Getter = IFace->lookupPrivateInstanceMethod(Sel);
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002535
Steve Naroff1df62692008-10-22 19:16:27 +00002536 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1559d67b2009-07-21 00:06:20 +00002537 if (!Getter)
2538 Getter = IFace->getCategoryInstanceMethod(Sel);
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002539 if (Getter) {
Douglas Gregor171c45a2009-02-18 21:56:37 +00002540 // Check if we can reference this property.
2541 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2542 return ExprError();
Steve Naroff1d984fe2009-03-11 13:48:17 +00002543 }
2544 // If we found a getter then this may be a valid dot-reference, we
2545 // will look for the matching setter, in case it is needed.
Mike Stump11289f42009-09-09 15:08:12 +00002546 Selector SetterSel =
2547 SelectorTable::constructSetterName(PP.getIdentifierTable(),
Anders Carlssonf571c112009-08-26 18:25:21 +00002548 PP.getSelectorTable(), Member);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002549 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
Steve Naroff1d984fe2009-03-11 13:48:17 +00002550 if (!Setter) {
2551 // If this reference is in an @implementation, also check for 'private'
2552 // methods.
Steve Naroffbb69c942009-10-01 23:46:04 +00002553 Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
Steve Naroff1d984fe2009-03-11 13:48:17 +00002554 }
2555 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1559d67b2009-07-21 00:06:20 +00002556 if (!Setter)
2557 Setter = IFace->getCategoryInstanceMethod(SetterSel);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002558
Steve Naroff1d984fe2009-03-11 13:48:17 +00002559 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2560 return ExprError();
2561
2562 if (Getter || Setter) {
2563 QualType PType;
2564
2565 if (Getter)
2566 PType = Getter->getResultType();
Fariborz Jahanian88cc2342009-08-18 20:50:23 +00002567 else
2568 // Get the expression type from Setter's incoming parameter.
2569 PType = (*(Setter->param_end() -1))->getType();
Steve Naroff1d984fe2009-03-11 13:48:17 +00002570 // FIXME: we must check that the setter has property type.
Fariborz Jahanian9a846652009-08-20 17:02:02 +00002571 return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType,
Steve Naroff1d984fe2009-03-11 13:48:17 +00002572 Setter, MemberLoc, BaseExpr));
2573 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002574 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
Anders Carlssonf571c112009-08-26 18:25:21 +00002575 << MemberName << BaseType);
Fariborz Jahanian21f54ee2007-11-12 22:29:28 +00002576 }
Mike Stump11289f42009-09-09 15:08:12 +00002577
Steve Naroffe87026a2009-07-24 17:54:45 +00002578 // Handle the following exceptional case (*Obj).isa.
Mike Stump11289f42009-09-09 15:08:12 +00002579 if (OpKind == tok::period &&
Steve Naroffe87026a2009-07-24 17:54:45 +00002580 BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) &&
Anders Carlssonf571c112009-08-26 18:25:21 +00002581 MemberName.getAsIdentifierInfo()->isStr("isa"))
Steve Naroffe87026a2009-07-24 17:54:45 +00002582 return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc,
2583 Context.getObjCIdType()));
2584
Chris Lattnerb63a7452008-07-21 04:28:12 +00002585 // Handle 'field access' to vectors, such as 'V.xx'.
Chris Lattner6c7ce102009-02-16 21:11:58 +00002586 if (BaseType->isExtVectorType()) {
Anders Carlssonf571c112009-08-26 18:25:21 +00002587 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Chris Lattnerb63a7452008-07-21 04:28:12 +00002588 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc);
2589 if (ret.isNull())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002590 return ExprError();
Anders Carlssonf571c112009-08-26 18:25:21 +00002591 return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, *Member,
Steve Narofff6009ed2009-01-21 00:14:39 +00002592 MemberLoc));
Chris Lattnerb63a7452008-07-21 04:28:12 +00002593 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002594
Douglas Gregor0b08ba42009-03-27 06:00:30 +00002595 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
2596 << BaseType << BaseExpr->getSourceRange();
2597
2598 // If the user is trying to apply -> or . to a function or function
2599 // pointer, it's probably because they forgot parentheses to call
2600 // the function. Suggest the addition of those parentheses.
Mike Stump11289f42009-09-09 15:08:12 +00002601 if (BaseType == Context.OverloadTy ||
Douglas Gregor0b08ba42009-03-27 06:00:30 +00002602 BaseType->isFunctionType() ||
Mike Stump11289f42009-09-09 15:08:12 +00002603 (BaseType->isPointerType() &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002604 BaseType->getAs<PointerType>()->isFunctionType())) {
Douglas Gregor0b08ba42009-03-27 06:00:30 +00002605 SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd());
2606 Diag(Loc, diag::note_member_reference_needs_call)
2607 << CodeModificationHint::CreateInsertion(Loc, "()");
2608 }
2609
2610 return ExprError();
Chris Lattnere168f762006-11-10 05:29:30 +00002611}
2612
Anders Carlssonf571c112009-08-26 18:25:21 +00002613Action::OwningExprResult
2614Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
2615 tok::TokenKind OpKind, SourceLocation MemberLoc,
2616 IdentifierInfo &Member,
2617 DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS) {
Mike Stump11289f42009-09-09 15:08:12 +00002618 return BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind, MemberLoc,
Anders Carlssonf571c112009-08-26 18:25:21 +00002619 DeclarationName(&Member), ObjCImpDecl, SS);
2620}
2621
Anders Carlsson355933d2009-08-25 03:49:14 +00002622Sema::OwningExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
2623 FunctionDecl *FD,
2624 ParmVarDecl *Param) {
2625 if (Param->hasUnparsedDefaultArg()) {
2626 Diag (CallLoc,
2627 diag::err_use_of_default_argument_to_function_declared_later) <<
2628 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +00002629 Diag(UnparsedDefaultArgLocs[Param],
Anders Carlsson355933d2009-08-25 03:49:14 +00002630 diag::note_default_argument_declared_here);
2631 } else {
2632 if (Param->hasUninstantiatedDefaultArg()) {
2633 Expr *UninstExpr = Param->getUninstantiatedDefaultArg();
2634
2635 // Instantiate the expression.
Douglas Gregor01afeef2009-08-28 20:31:08 +00002636 MultiLevelTemplateArgumentList ArgList = getTemplateInstantiationArgs(FD);
Anders Carlsson657bad42009-09-05 05:14:19 +00002637
Mike Stump11289f42009-09-09 15:08:12 +00002638 InstantiatingTemplate Inst(*this, CallLoc, Param,
2639 ArgList.getInnermost().getFlatArgumentList(),
Douglas Gregor01afeef2009-08-28 20:31:08 +00002640 ArgList.getInnermost().flat_size());
Anders Carlsson355933d2009-08-25 03:49:14 +00002641
John McCall76d824f2009-08-25 22:02:44 +00002642 OwningExprResult Result = SubstExpr(UninstExpr, ArgList);
Mike Stump11289f42009-09-09 15:08:12 +00002643 if (Result.isInvalid())
Anders Carlsson355933d2009-08-25 03:49:14 +00002644 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002645
2646 if (SetParamDefaultArgument(Param, move(Result),
Anders Carlsson355933d2009-08-25 03:49:14 +00002647 /*FIXME:EqualLoc*/
2648 UninstExpr->getSourceRange().getBegin()))
2649 return ExprError();
2650 }
Mike Stump11289f42009-09-09 15:08:12 +00002651
Anders Carlsson355933d2009-08-25 03:49:14 +00002652 Expr *DefaultExpr = Param->getDefaultArg();
Mike Stump11289f42009-09-09 15:08:12 +00002653
Anders Carlsson355933d2009-08-25 03:49:14 +00002654 // If the default expression creates temporaries, we need to
2655 // push them to the current stack of expression temporaries so they'll
2656 // be properly destroyed.
Mike Stump11289f42009-09-09 15:08:12 +00002657 if (CXXExprWithTemporaries *E
Anders Carlsson355933d2009-08-25 03:49:14 +00002658 = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) {
Mike Stump11289f42009-09-09 15:08:12 +00002659 assert(!E->shouldDestroyTemporaries() &&
Anders Carlsson355933d2009-08-25 03:49:14 +00002660 "Can't destroy temporaries in a default argument expr!");
2661 for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I)
2662 ExprTemporaries.push_back(E->getTemporary(I));
2663 }
2664 }
2665
2666 // We already type-checked the argument, so we know it works.
2667 return Owned(CXXDefaultArgExpr::Create(Context, Param));
2668}
2669
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002670/// ConvertArgumentsForCall - Converts the arguments specified in
2671/// Args/NumArgs to the parameter types of the function FDecl with
2672/// function prototype Proto. Call is the call expression itself, and
2673/// Fn is the function expression. For a C++ member function, this
2674/// routine does not attempt to convert the object argument. Returns
2675/// true if the call is ill-formed.
Mike Stump4e1f26a2009-02-19 03:04:26 +00002676bool
2677Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002678 FunctionDecl *FDecl,
Douglas Gregordeaad8c2009-02-26 23:50:07 +00002679 const FunctionProtoType *Proto,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002680 Expr **Args, unsigned NumArgs,
2681 SourceLocation RParenLoc) {
Mike Stump4e1f26a2009-02-19 03:04:26 +00002682 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002683 // assignment, to the types of the corresponding parameter, ...
2684 unsigned NumArgsInProto = Proto->getNumArgs();
2685 unsigned NumArgsToCheck = NumArgs;
Douglas Gregorb6b99612009-01-23 21:30:56 +00002686 bool Invalid = false;
2687
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002688 // If too few arguments are available (and we don't have default
2689 // arguments for the remaining parameters), don't make the call.
2690 if (NumArgs < NumArgsInProto) {
2691 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
2692 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
2693 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange();
2694 // Use default arguments for missing arguments
2695 NumArgsToCheck = NumArgsInProto;
Ted Kremenek5a201952009-02-07 01:47:29 +00002696 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002697 }
2698
2699 // If too many are passed and not variadic, error on the extras and drop
2700 // them.
2701 if (NumArgs > NumArgsInProto) {
2702 if (!Proto->isVariadic()) {
2703 Diag(Args[NumArgsInProto]->getLocStart(),
2704 diag::err_typecheck_call_too_many_args)
2705 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange()
2706 << SourceRange(Args[NumArgsInProto]->getLocStart(),
2707 Args[NumArgs-1]->getLocEnd());
2708 // This deletes the extra arguments.
Ted Kremenek5a201952009-02-07 01:47:29 +00002709 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregorb6b99612009-01-23 21:30:56 +00002710 Invalid = true;
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002711 }
2712 NumArgsToCheck = NumArgsInProto;
2713 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00002714
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002715 // Continue to check argument types (even if we have too few/many args).
2716 for (unsigned i = 0; i != NumArgsToCheck; i++) {
2717 QualType ProtoArgType = Proto->getArgType(i);
Mike Stump4e1f26a2009-02-19 03:04:26 +00002718
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002719 Expr *Arg;
Douglas Gregor58354032008-12-24 00:01:03 +00002720 if (i < NumArgs) {
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002721 Arg = Args[i];
Douglas Gregor58354032008-12-24 00:01:03 +00002722
Eli Friedman3164fb12009-03-22 22:00:50 +00002723 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2724 ProtoArgType,
Anders Carlssond624e162009-08-26 23:45:07 +00002725 PDiag(diag::err_call_incomplete_argument)
2726 << Arg->getSourceRange()))
Eli Friedman3164fb12009-03-22 22:00:50 +00002727 return true;
2728
Douglas Gregor58354032008-12-24 00:01:03 +00002729 // Pass the argument.
2730 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
2731 return true;
Anders Carlsson84613c42009-06-12 16:51:40 +00002732 } else {
Anders Carlssonc80a1272009-08-25 02:29:20 +00002733 ParmVarDecl *Param = FDecl->getParamDecl(i);
Mike Stump11289f42009-09-09 15:08:12 +00002734
2735 OwningExprResult ArgExpr =
Anders Carlsson355933d2009-08-25 03:49:14 +00002736 BuildCXXDefaultArgExpr(Call->getSourceRange().getBegin(),
2737 FDecl, Param);
2738 if (ArgExpr.isInvalid())
2739 return true;
Mike Stump11289f42009-09-09 15:08:12 +00002740
Anders Carlsson355933d2009-08-25 03:49:14 +00002741 Arg = ArgExpr.takeAs<Expr>();
Anders Carlsson84613c42009-06-12 16:51:40 +00002742 }
Mike Stump11289f42009-09-09 15:08:12 +00002743
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002744 Call->setArg(i, Arg);
2745 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00002746
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002747 // If this is a variadic call, handle args passed through "...".
2748 if (Proto->isVariadic()) {
Anders Carlssona7d069d2009-01-16 16:48:51 +00002749 VariadicCallType CallType = VariadicFunction;
2750 if (Fn->getType()->isBlockPointerType())
2751 CallType = VariadicBlock; // Block
2752 else if (isa<MemberExpr>(Fn))
2753 CallType = VariadicMethod;
2754
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002755 // Promote the arguments (C99 6.5.2.2p7).
2756 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
2757 Expr *Arg = Args[i];
Chris Lattnera8a7d0f2009-04-12 08:11:20 +00002758 Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002759 Call->setArg(i, Arg);
2760 }
2761 }
2762
Douglas Gregorb6b99612009-01-23 21:30:56 +00002763 return Invalid;
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002764}
2765
Douglas Gregorcabea402009-09-22 15:41:20 +00002766/// \brief "Deconstruct" the function argument of a call expression to find
2767/// the underlying declaration (if any), the name of the called function,
2768/// whether argument-dependent lookup is available, whether it has explicit
2769/// template arguments, etc.
2770void Sema::DeconstructCallFunction(Expr *FnExpr,
2771 NamedDecl *&Function,
2772 DeclarationName &Name,
2773 NestedNameSpecifier *&Qualifier,
2774 SourceRange &QualifierRange,
2775 bool &ArgumentDependentLookup,
2776 bool &HasExplicitTemplateArguments,
2777 const TemplateArgument *&ExplicitTemplateArgs,
2778 unsigned &NumExplicitTemplateArgs) {
2779 // Set defaults for all of the output parameters.
2780 Function = 0;
2781 Name = DeclarationName();
2782 Qualifier = 0;
2783 QualifierRange = SourceRange();
2784 ArgumentDependentLookup = getLangOptions().CPlusPlus;
2785 HasExplicitTemplateArguments = false;
2786
2787 // If we're directly calling a function, get the appropriate declaration.
2788 // Also, in C++, keep track of whether we should perform argument-dependent
2789 // lookup and whether there were any explicitly-specified template arguments.
2790 while (true) {
2791 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr))
2792 FnExpr = IcExpr->getSubExpr();
2793 else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) {
2794 // Parentheses around a function disable ADL
2795 // (C++0x [basic.lookup.argdep]p1).
2796 ArgumentDependentLookup = false;
2797 FnExpr = PExpr->getSubExpr();
2798 } else if (isa<UnaryOperator>(FnExpr) &&
2799 cast<UnaryOperator>(FnExpr)->getOpcode()
2800 == UnaryOperator::AddrOf) {
2801 FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr();
2802 } else if (QualifiedDeclRefExpr *QDRExpr
2803 = dyn_cast<QualifiedDeclRefExpr>(FnExpr)) {
2804 // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1).
2805 ArgumentDependentLookup = false;
2806 Qualifier = QDRExpr->getQualifier();
2807 QualifierRange = QDRExpr->getQualifierRange();
2808 Function = dyn_cast<NamedDecl>(QDRExpr->getDecl());
2809 break;
2810 } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) {
2811 Function = dyn_cast<NamedDecl>(DRExpr->getDecl());
2812 break;
2813 } else if (UnresolvedFunctionNameExpr *DepName
2814 = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) {
2815 Name = DepName->getName();
2816 break;
2817 } else if (TemplateIdRefExpr *TemplateIdRef
2818 = dyn_cast<TemplateIdRefExpr>(FnExpr)) {
2819 Function = TemplateIdRef->getTemplateName().getAsTemplateDecl();
2820 if (!Function)
2821 Function = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl();
2822 HasExplicitTemplateArguments = true;
2823 ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs();
2824 NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs();
2825
2826 // C++ [temp.arg.explicit]p6:
2827 // [Note: For simple function names, argument dependent lookup (3.4.2)
2828 // applies even when the function name is not visible within the
2829 // scope of the call. This is because the call still has the syntactic
2830 // form of a function call (3.4.1). But when a function template with
2831 // explicit template arguments is used, the call does not have the
2832 // correct syntactic form unless there is a function template with
2833 // that name visible at the point of the call. If no such name is
2834 // visible, the call is not syntactically well-formed and
2835 // argument-dependent lookup does not apply. If some such name is
2836 // visible, argument dependent lookup applies and additional function
2837 // templates may be found in other namespaces.
2838 //
2839 // The summary of this paragraph is that, if we get to this point and the
2840 // template-id was not a qualified name, then argument-dependent lookup
2841 // is still possible.
2842 if ((Qualifier = TemplateIdRef->getQualifier())) {
2843 ArgumentDependentLookup = false;
2844 QualifierRange = TemplateIdRef->getQualifierRange();
2845 }
2846 break;
2847 } else {
2848 // Any kind of name that does not refer to a declaration (or
2849 // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3).
2850 ArgumentDependentLookup = false;
2851 break;
2852 }
2853 }
2854}
2855
Steve Naroff83895f72007-09-16 03:34:24 +00002856/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Chris Lattnere168f762006-11-10 05:29:30 +00002857/// This provides the location of the left/right parens and a list of comma
2858/// locations.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002859Action::OwningExprResult
2860Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc,
2861 MultiExprArg args,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002862 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002863 unsigned NumArgs = args.size();
Nate Begeman5ec4b312009-08-10 23:49:36 +00002864
2865 // Since this might be a postfix expression, get rid of ParenListExprs.
2866 fn = MaybeConvertParenListExprToParenExpr(S, move(fn));
Mike Stump11289f42009-09-09 15:08:12 +00002867
Anders Carlsson3cbc8592009-05-01 19:30:39 +00002868 Expr *Fn = fn.takeAs<Expr>();
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002869 Expr **Args = reinterpret_cast<Expr**>(args.release());
Chris Lattner38dbdb22007-07-21 03:03:59 +00002870 assert(Fn && "no function call expression");
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002871 FunctionDecl *FDecl = NULL;
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00002872 NamedDecl *NDecl = NULL;
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002873 DeclarationName UnqualifiedName;
Mike Stump11289f42009-09-09 15:08:12 +00002874
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002875 if (getLangOptions().CPlusPlus) {
Douglas Gregorad8a3362009-09-04 17:36:40 +00002876 // If this is a pseudo-destructor expression, build the call immediately.
2877 if (isa<CXXPseudoDestructorExpr>(Fn)) {
2878 if (NumArgs > 0) {
2879 // Pseudo-destructor calls should not have any arguments.
2880 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
2881 << CodeModificationHint::CreateRemoval(
2882 SourceRange(Args[0]->getLocStart(),
2883 Args[NumArgs-1]->getLocEnd()));
Mike Stump11289f42009-09-09 15:08:12 +00002884
Douglas Gregorad8a3362009-09-04 17:36:40 +00002885 for (unsigned I = 0; I != NumArgs; ++I)
2886 Args[I]->Destroy(Context);
Mike Stump11289f42009-09-09 15:08:12 +00002887
Douglas Gregorad8a3362009-09-04 17:36:40 +00002888 NumArgs = 0;
2889 }
Mike Stump11289f42009-09-09 15:08:12 +00002890
Douglas Gregorad8a3362009-09-04 17:36:40 +00002891 return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy,
2892 RParenLoc));
2893 }
Mike Stump11289f42009-09-09 15:08:12 +00002894
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002895 // Determine whether this is a dependent call inside a C++ template,
Mike Stump4e1f26a2009-02-19 03:04:26 +00002896 // in which case we won't do any semantic analysis now.
Mike Stump87c57ac2009-05-16 07:39:55 +00002897 // FIXME: Will need to cache the results of name lookup (including ADL) in
2898 // Fn.
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002899 bool Dependent = false;
2900 if (Fn->isTypeDependent())
2901 Dependent = true;
2902 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
2903 Dependent = true;
2904
2905 if (Dependent)
Ted Kremenekd7b4f402009-02-09 20:51:47 +00002906 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002907 Context.DependentTy, RParenLoc));
2908
2909 // Determine whether this is a call to an object (C++ [over.call.object]).
2910 if (Fn->getType()->isRecordType())
2911 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
2912 CommaLocs, RParenLoc));
2913
Douglas Gregore254f902009-02-04 00:32:51 +00002914 // Determine whether this is a call to a member function.
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002915 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) {
2916 NamedDecl *MemDecl = MemExpr->getMemberDecl();
2917 if (isa<OverloadedFunctionDecl>(MemDecl) ||
2918 isa<CXXMethodDecl>(MemDecl) ||
2919 (isa<FunctionTemplateDecl>(MemDecl) &&
2920 isa<CXXMethodDecl>(
2921 cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl())))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002922 return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
2923 CommaLocs, RParenLoc));
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002924 }
Anders Carlsson61914b52009-10-03 17:40:22 +00002925
2926 // Determine whether this is a call to a pointer-to-member function.
2927 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Fn->IgnoreParens())) {
2928 if (BO->getOpcode() == BinaryOperator::PtrMemD ||
2929 BO->getOpcode() == BinaryOperator::PtrMemI) {
2930 const FunctionProtoType *FPT = cast<FunctionProtoType>(BO->getType());
Anders Carlsson63dce022009-10-15 00:41:48 +00002931 QualType ResultTy = FPT->getResultType().getNonReferenceType();
Anders Carlsson61914b52009-10-03 17:40:22 +00002932
Anders Carlsson63dce022009-10-15 00:41:48 +00002933 ExprOwningPtr<CXXMemberCallExpr>
2934 TheCall(this, new (Context) CXXMemberCallExpr(Context, BO, Args,
2935 NumArgs, ResultTy,
2936 RParenLoc));
Anders Carlsson61914b52009-10-03 17:40:22 +00002937
Anders Carlsson63dce022009-10-15 00:41:48 +00002938 if (CheckCallReturnType(FPT->getResultType(),
2939 BO->getRHS()->getSourceRange().getBegin(),
2940 TheCall.get(), 0))
2941 return ExprError();
2942
Anders Carlsson61914b52009-10-03 17:40:22 +00002943 if (ConvertArgumentsForCall(&*TheCall, BO, 0, FPT, Args, NumArgs,
2944 RParenLoc))
2945 return ExprError();
2946
2947 return Owned(MaybeBindToTemporary(TheCall.release()).release());
2948 }
2949 }
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002950 }
2951
Douglas Gregore254f902009-02-04 00:32:51 +00002952 // If we're directly calling a function, get the appropriate declaration.
Mike Stump11289f42009-09-09 15:08:12 +00002953 // Also, in C++, keep track of whether we should perform argument-dependent
Douglas Gregor89026b52009-06-30 23:57:56 +00002954 // lookup and whether there were any explicitly-specified template arguments.
Douglas Gregore254f902009-02-04 00:32:51 +00002955 bool ADL = true;
Douglas Gregor89026b52009-06-30 23:57:56 +00002956 bool HasExplicitTemplateArgs = 0;
2957 const TemplateArgument *ExplicitTemplateArgs = 0;
2958 unsigned NumExplicitTemplateArgs = 0;
Douglas Gregorcabea402009-09-22 15:41:20 +00002959 NestedNameSpecifier *Qualifier = 0;
2960 SourceRange QualifierRange;
2961 DeconstructCallFunction(Fn, NDecl, UnqualifiedName, Qualifier, QualifierRange,
2962 ADL,HasExplicitTemplateArgs, ExplicitTemplateArgs,
2963 NumExplicitTemplateArgs);
Mike Stump4e1f26a2009-02-19 03:04:26 +00002964
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002965 OverloadedFunctionDecl *Ovl = 0;
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002966 FunctionTemplateDecl *FunctionTemplate = 0;
Douglas Gregora727cb92009-06-30 22:34:41 +00002967 if (NDecl) {
2968 FDecl = dyn_cast<FunctionDecl>(NDecl);
2969 if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl)))
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002970 FDecl = FunctionTemplate->getTemplatedDecl();
2971 else
Douglas Gregora727cb92009-06-30 22:34:41 +00002972 FDecl = dyn_cast<FunctionDecl>(NDecl);
2973 Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl);
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002974 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +00002975
Mike Stump11289f42009-09-09 15:08:12 +00002976 if (Ovl || FunctionTemplate ||
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002977 (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) {
Douglas Gregorb9063fc2009-02-13 23:20:09 +00002978 // We don't perform ADL for implicit declarations of builtins.
Douglas Gregor15fc9562009-09-12 00:22:50 +00002979 if (FDecl && FDecl->getBuiltinID() && FDecl->isImplicit())
Douglas Gregore254f902009-02-04 00:32:51 +00002980 ADL = false;
2981
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00002982 // We don't perform ADL in C.
2983 if (!getLangOptions().CPlusPlus)
2984 ADL = false;
2985
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002986 if (Ovl || FunctionTemplate || ADL) {
Mike Stump11289f42009-09-09 15:08:12 +00002987 FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName,
Douglas Gregor89026b52009-06-30 23:57:56 +00002988 HasExplicitTemplateArgs,
2989 ExplicitTemplateArgs,
2990 NumExplicitTemplateArgs,
Mike Stump11289f42009-09-09 15:08:12 +00002991 LParenLoc, Args, NumArgs, CommaLocs,
Douglas Gregor89026b52009-06-30 23:57:56 +00002992 RParenLoc, ADL);
Douglas Gregore254f902009-02-04 00:32:51 +00002993 if (!FDecl)
2994 return ExprError();
2995
2996 // Update Fn to refer to the actual function selected.
2997 Expr *NewFn = 0;
Douglas Gregorcabea402009-09-22 15:41:20 +00002998 if (Qualifier)
Douglas Gregorf21eb492009-03-26 23:50:42 +00002999 NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(),
Douglas Gregorcabea402009-09-22 15:41:20 +00003000 Fn->getLocStart(),
Douglas Gregorf21eb492009-03-26 23:50:42 +00003001 false, false,
Douglas Gregorcabea402009-09-22 15:41:20 +00003002 QualifierRange,
3003 Qualifier);
Douglas Gregore254f902009-02-04 00:32:51 +00003004 else
Mike Stump4e1f26a2009-02-19 03:04:26 +00003005 NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(),
Douglas Gregorcabea402009-09-22 15:41:20 +00003006 Fn->getLocStart());
Douglas Gregore254f902009-02-04 00:32:51 +00003007 Fn->Destroy(Context);
3008 Fn = NewFn;
3009 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +00003010 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00003011
3012 // Promote the function operand.
3013 UsualUnaryConversions(Fn);
3014
Chris Lattner08464942007-12-28 05:29:59 +00003015 // Make the call expr early, before semantic checks. This guarantees cleanup
3016 // of arguments and function on error.
Ted Kremenekd7b4f402009-02-09 20:51:47 +00003017 ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn,
3018 Args, NumArgs,
3019 Context.BoolTy,
3020 RParenLoc));
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003021
Steve Naroff8de9c3a2008-09-05 22:11:13 +00003022 const FunctionType *FuncT;
3023 if (!Fn->getType()->isBlockPointerType()) {
3024 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
3025 // have type pointer to function".
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003026 const PointerType *PT = Fn->getType()->getAs<PointerType>();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00003027 if (PT == 0)
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003028 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
3029 << Fn->getType() << Fn->getSourceRange());
John McCall9dd450b2009-09-21 23:43:11 +00003030 FuncT = PT->getPointeeType()->getAs<FunctionType>();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00003031 } else { // This is a block call.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003032 FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()->
John McCall9dd450b2009-09-21 23:43:11 +00003033 getAs<FunctionType>();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00003034 }
Chris Lattner08464942007-12-28 05:29:59 +00003035 if (FuncT == 0)
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003036 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
3037 << Fn->getType() << Fn->getSourceRange());
3038
Eli Friedman3164fb12009-03-22 22:00:50 +00003039 // Check for a valid return type
Anders Carlsson7f84ed92009-10-09 23:51:55 +00003040 if (CheckCallReturnType(FuncT->getResultType(),
3041 Fn->getSourceRange().getBegin(), TheCall.get(),
3042 FDecl))
Eli Friedman3164fb12009-03-22 22:00:50 +00003043 return ExprError();
3044
Chris Lattner08464942007-12-28 05:29:59 +00003045 // We know the result type of the call, set it.
Douglas Gregor786ab212008-10-29 02:00:59 +00003046 TheCall->setType(FuncT->getResultType().getNonReferenceType());
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003047
Douglas Gregordeaad8c2009-02-26 23:50:07 +00003048 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
Mike Stump4e1f26a2009-02-19 03:04:26 +00003049 if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003050 RParenLoc))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003051 return ExprError();
Chris Lattner08464942007-12-28 05:29:59 +00003052 } else {
Douglas Gregordeaad8c2009-02-26 23:50:07 +00003053 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003054
Douglas Gregord8e97de2009-04-02 15:37:10 +00003055 if (FDecl) {
3056 // Check if we have too few/too many template arguments, based
3057 // on our knowledge of the function definition.
3058 const FunctionDecl *Def = 0;
Argyrios Kyrtzidisddcd1322009-06-30 02:35:26 +00003059 if (FDecl->getBody(Def) && NumArgs != Def->param_size()) {
Eli Friedmanfcbf7d22009-06-01 09:24:59 +00003060 const FunctionProtoType *Proto =
John McCall9dd450b2009-09-21 23:43:11 +00003061 Def->getType()->getAs<FunctionProtoType>();
Eli Friedmanfcbf7d22009-06-01 09:24:59 +00003062 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) {
3063 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
3064 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
3065 }
3066 }
Douglas Gregord8e97de2009-04-02 15:37:10 +00003067 }
3068
Steve Naroff0b661582007-08-28 23:30:39 +00003069 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner08464942007-12-28 05:29:59 +00003070 for (unsigned i = 0; i != NumArgs; i++) {
3071 Expr *Arg = Args[i];
3072 DefaultArgumentPromotion(Arg);
Eli Friedman3164fb12009-03-22 22:00:50 +00003073 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
3074 Arg->getType(),
Anders Carlssond624e162009-08-26 23:45:07 +00003075 PDiag(diag::err_call_incomplete_argument)
3076 << Arg->getSourceRange()))
Eli Friedman3164fb12009-03-22 22:00:50 +00003077 return ExprError();
Chris Lattner08464942007-12-28 05:29:59 +00003078 TheCall->setArg(i, Arg);
Steve Naroff0b661582007-08-28 23:30:39 +00003079 }
Steve Naroffae4143e2007-04-26 20:39:23 +00003080 }
Chris Lattner08464942007-12-28 05:29:59 +00003081
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003082 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
3083 if (!Method->isStatic())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003084 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
3085 << Fn->getSourceRange());
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003086
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00003087 // Check for sentinels
3088 if (NDecl)
3089 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Mike Stump11289f42009-09-09 15:08:12 +00003090
Chris Lattnerb87b1b32007-08-10 20:18:51 +00003091 // Do special checking on direct calls to functions.
Anders Carlssonbc4c1072009-08-16 01:56:34 +00003092 if (FDecl) {
3093 if (CheckFunctionCall(FDecl, TheCall.get()))
3094 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00003095
Douglas Gregor15fc9562009-09-12 00:22:50 +00003096 if (unsigned BuiltinID = FDecl->getBuiltinID())
Anders Carlssonbc4c1072009-08-16 01:56:34 +00003097 return CheckBuiltinFunctionCall(BuiltinID, TheCall.take());
3098 } else if (NDecl) {
3099 if (CheckBlockCall(NDecl, TheCall.get()))
3100 return ExprError();
3101 }
Chris Lattnerb87b1b32007-08-10 20:18:51 +00003102
Anders Carlssonf8984012009-08-16 03:06:32 +00003103 return MaybeBindToTemporary(TheCall.take());
Chris Lattnere168f762006-11-10 05:29:30 +00003104}
3105
Sebastian Redlb5d49352009-01-19 22:31:54 +00003106Action::OwningExprResult
3107Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
3108 SourceLocation RParenLoc, ExprArg InitExpr) {
Steve Naroff83895f72007-09-16 03:34:24 +00003109 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00003110 //FIXME: Preserve type source info.
3111 QualType literalType = GetTypeFromParser(Ty);
Steve Naroff57eb2c52007-07-19 21:32:11 +00003112 // FIXME: put back this assert when initializers are worked out.
Steve Naroff83895f72007-09-16 03:34:24 +00003113 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Sebastian Redlb5d49352009-01-19 22:31:54 +00003114 Expr *literalExpr = static_cast<Expr*>(InitExpr.get());
Anders Carlsson2c1ec6d2007-12-05 07:24:19 +00003115
Eli Friedman37a186d2008-05-20 05:22:08 +00003116 if (literalType->isArrayType()) {
Chris Lattner7adf0762008-08-04 07:31:14 +00003117 if (literalType->isVariableArrayType())
Sebastian Redlb5d49352009-01-19 22:31:54 +00003118 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
3119 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()));
Douglas Gregor1c37d9e2009-05-21 23:48:18 +00003120 } else if (!literalType->isDependentType() &&
3121 RequireCompleteType(LParenLoc, literalType,
Anders Carlssond624e162009-08-26 23:45:07 +00003122 PDiag(diag::err_typecheck_decl_incomplete_type)
Mike Stump11289f42009-09-09 15:08:12 +00003123 << SourceRange(LParenLoc,
Anders Carlssond624e162009-08-26 23:45:07 +00003124 literalExpr->getSourceRange().getEnd())))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003125 return ExprError();
Eli Friedman37a186d2008-05-20 05:22:08 +00003126
Sebastian Redlb5d49352009-01-19 22:31:54 +00003127 if (CheckInitializerTypes(literalExpr, literalType, LParenLoc,
Douglas Gregor5fb53972009-01-14 15:45:31 +00003128 DeclarationName(), /*FIXME:DirectInit=*/false))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003129 return ExprError();
Steve Naroffd32419d2008-01-14 18:19:28 +00003130
Chris Lattner79413952008-12-04 23:50:19 +00003131 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffd32419d2008-01-14 18:19:28 +00003132 if (isFileScope) { // 6.5.2.5p3
Steve Naroff98f72032008-01-10 22:15:12 +00003133 if (CheckForConstantInitializer(literalExpr, literalType))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003134 return ExprError();
Steve Naroff98f72032008-01-10 22:15:12 +00003135 }
Sebastian Redlb5d49352009-01-19 22:31:54 +00003136 InitExpr.release();
Mike Stump4e1f26a2009-02-19 03:04:26 +00003137 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType,
Steve Narofff6009ed2009-01-21 00:14:39 +00003138 literalExpr, isFileScope));
Steve Narofffbd09832007-07-19 01:06:55 +00003139}
3140
Sebastian Redlb5d49352009-01-19 22:31:54 +00003141Action::OwningExprResult
3142Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist,
Sebastian Redlb5d49352009-01-19 22:31:54 +00003143 SourceLocation RBraceLoc) {
3144 unsigned NumInit = initlist.size();
3145 Expr **InitList = reinterpret_cast<Expr**>(initlist.release());
Anders Carlsson4692db02007-08-31 04:56:16 +00003146
Steve Naroff30d242c2007-09-15 18:49:24 +00003147 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stump4e1f26a2009-02-19 03:04:26 +00003148 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redlb5d49352009-01-19 22:31:54 +00003149
Mike Stump4e1f26a2009-02-19 03:04:26 +00003150 InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit,
Douglas Gregor347f7ea2009-01-28 21:54:33 +00003151 RBraceLoc);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003152 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redlb5d49352009-01-19 22:31:54 +00003153 return Owned(E);
Steve Narofffbd09832007-07-19 01:06:55 +00003154}
3155
Anders Carlsson094c4592009-10-18 18:12:03 +00003156static CastExpr::CastKind getScalarCastKind(ASTContext &Context,
3157 QualType SrcTy, QualType DestTy) {
3158 if (Context.getCanonicalType(SrcTy).getUnqualifiedType() ==
3159 Context.getCanonicalType(DestTy).getUnqualifiedType())
3160 return CastExpr::CK_NoOp;
3161
3162 if (SrcTy->hasPointerRepresentation()) {
3163 if (DestTy->hasPointerRepresentation())
3164 return CastExpr::CK_BitCast;
3165 if (DestTy->isIntegerType())
3166 return CastExpr::CK_PointerToIntegral;
3167 }
3168
3169 if (SrcTy->isIntegerType()) {
3170 if (DestTy->isIntegerType())
3171 return CastExpr::CK_IntegralCast;
3172 if (DestTy->hasPointerRepresentation())
3173 return CastExpr::CK_IntegralToPointer;
3174 if (DestTy->isRealFloatingType())
3175 return CastExpr::CK_IntegralToFloating;
3176 }
3177
3178 if (SrcTy->isRealFloatingType()) {
3179 if (DestTy->isRealFloatingType())
3180 return CastExpr::CK_FloatingCast;
3181 if (DestTy->isIntegerType())
3182 return CastExpr::CK_FloatingToIntegral;
3183 }
3184
3185 // FIXME: Assert here.
3186 // assert(false && "Unhandled cast combination!");
3187 return CastExpr::CK_Unknown;
3188}
3189
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003190/// CheckCastTypes - Check type constraints for casting between types.
Sebastian Redl955a0672009-07-29 13:50:23 +00003191bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr,
Mike Stump11289f42009-09-09 15:08:12 +00003192 CastExpr::CastKind& Kind,
Fariborz Jahanian1cec0c42009-08-26 18:55:36 +00003193 CXXMethodDecl *& ConversionDecl,
3194 bool FunctionalStyle) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00003195 if (getLangOptions().CPlusPlus)
Fariborz Jahanian1cec0c42009-08-26 18:55:36 +00003196 return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle,
3197 ConversionDecl);
Sebastian Redl9f831db2009-07-25 15:41:38 +00003198
Eli Friedmanda8d4de2009-08-15 19:02:19 +00003199 DefaultFunctionArrayConversion(castExpr);
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003200
3201 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
3202 // type needs to be scalar.
3203 if (castType->isVoidType()) {
3204 // Cast to void allows any expr type.
Anders Carlssonef918ac2009-10-16 02:35:04 +00003205 Kind = CastExpr::CK_ToVoid;
3206 return false;
3207 }
3208
3209 if (!castType->isScalarType() && !castType->isVectorType()) {
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003210 if (Context.getCanonicalType(castType).getUnqualifiedType() ==
3211 Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) &&
3212 (castType->isStructureType() || castType->isUnionType())) {
3213 // GCC struct/union extension: allow cast to self.
Eli Friedmanba961a92009-03-23 00:24:07 +00003214 // FIXME: Check that the cast destination type is complete.
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003215 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
3216 << castType << castExpr->getSourceRange();
Anders Carlssonec143772009-08-07 23:22:37 +00003217 Kind = CastExpr::CK_NoOp;
Anders Carlsson525b76b2009-10-16 02:48:28 +00003218 return false;
3219 }
3220
3221 if (castType->isUnionType()) {
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003222 // GCC cast to union extension
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003223 RecordDecl *RD = castType->getAs<RecordType>()->getDecl();
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003224 RecordDecl::field_iterator Field, FieldEnd;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003225 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003226 Field != FieldEnd; ++Field) {
3227 if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() ==
3228 Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) {
3229 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union)
3230 << castExpr->getSourceRange();
3231 break;
3232 }
3233 }
3234 if (Field == FieldEnd)
3235 return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type)
3236 << castExpr->getType() << castExpr->getSourceRange();
Anders Carlssonec143772009-08-07 23:22:37 +00003237 Kind = CastExpr::CK_ToUnion;
Anders Carlsson525b76b2009-10-16 02:48:28 +00003238 return false;
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003239 }
Anders Carlsson525b76b2009-10-16 02:48:28 +00003240
3241 // Reject any other conversions to non-scalar types.
3242 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
3243 << castType << castExpr->getSourceRange();
3244 }
3245
3246 if (!castExpr->getType()->isScalarType() &&
3247 !castExpr->getType()->isVectorType()) {
Chris Lattner3b054132008-11-19 05:08:23 +00003248 return Diag(castExpr->getLocStart(),
3249 diag::err_typecheck_expect_scalar_operand)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003250 << castExpr->getType() << castExpr->getSourceRange();
Anders Carlsson525b76b2009-10-16 02:48:28 +00003251 }
3252
Anders Carlsson43d70f82009-10-16 05:23:41 +00003253 if (castType->isExtVectorType())
3254 return CheckExtVectorCast(TyR, castType, castExpr, Kind);
3255
Anders Carlsson525b76b2009-10-16 02:48:28 +00003256 if (castType->isVectorType())
3257 return CheckVectorCast(TyR, castType, castExpr->getType(), Kind);
3258 if (castExpr->getType()->isVectorType())
3259 return CheckVectorCast(TyR, castExpr->getType(), castType, Kind);
3260
3261 if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr))
Steve Naroffb47acdb2009-04-08 23:52:26 +00003262 return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR;
Anders Carlsson525b76b2009-10-16 02:48:28 +00003263
Anders Carlsson43d70f82009-10-16 05:23:41 +00003264 if (isa<ObjCSelectorExpr>(castExpr))
3265 return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr);
3266
Anders Carlsson525b76b2009-10-16 02:48:28 +00003267 if (!castType->isArithmeticType()) {
Eli Friedmanf4e3ad62009-05-01 02:23:58 +00003268 QualType castExprType = castExpr->getType();
3269 if (!castExprType->isIntegralType() && castExprType->isArithmeticType())
3270 return Diag(castExpr->getLocStart(),
3271 diag::err_cast_pointer_from_non_pointer_int)
3272 << castExprType << castExpr->getSourceRange();
3273 } else if (!castExpr->getType()->isArithmeticType()) {
3274 if (!castType->isIntegralType() && castType->isArithmeticType())
3275 return Diag(castExpr->getLocStart(),
3276 diag::err_cast_pointer_to_non_pointer_int)
3277 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003278 }
Anders Carlsson094c4592009-10-18 18:12:03 +00003279
3280 Kind = getScalarCastKind(Context, castExpr->getType(), castType);
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003281 return false;
3282}
3283
Anders Carlsson525b76b2009-10-16 02:48:28 +00003284bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
3285 CastExpr::CastKind &Kind) {
Anders Carlssonde71adf2007-11-27 05:51:55 +00003286 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stump4e1f26a2009-02-19 03:04:26 +00003287
Anders Carlssonde71adf2007-11-27 05:51:55 +00003288 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner37e05872008-03-05 18:54:05 +00003289 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssonde71adf2007-11-27 05:51:55 +00003290 return Diag(R.getBegin(),
Mike Stump4e1f26a2009-02-19 03:04:26 +00003291 Ty->isVectorType() ?
Anders Carlssonde71adf2007-11-27 05:51:55 +00003292 diag::err_invalid_conversion_between_vectors :
Chris Lattner3b054132008-11-19 05:08:23 +00003293 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003294 << VectorTy << Ty << R;
Anders Carlssonde71adf2007-11-27 05:51:55 +00003295 } else
3296 return Diag(R.getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +00003297 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003298 << VectorTy << Ty << R;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003299
Anders Carlsson525b76b2009-10-16 02:48:28 +00003300 Kind = CastExpr::CK_BitCast;
Anders Carlssonde71adf2007-11-27 05:51:55 +00003301 return false;
3302}
3303
Anders Carlsson43d70f82009-10-16 05:23:41 +00003304bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, Expr *&CastExpr,
3305 CastExpr::CastKind &Kind) {
Nate Begemanc69b7402009-06-26 00:50:28 +00003306 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
Anders Carlsson43d70f82009-10-16 05:23:41 +00003307
3308 QualType SrcTy = CastExpr->getType();
3309
Nate Begemanc8961a42009-06-27 22:05:55 +00003310 // If SrcTy is a VectorType, the total size must match to explicitly cast to
3311 // an ExtVectorType.
Nate Begemanc69b7402009-06-26 00:50:28 +00003312 if (SrcTy->isVectorType()) {
3313 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy))
3314 return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
3315 << DestTy << SrcTy << R;
Anders Carlsson43d70f82009-10-16 05:23:41 +00003316 Kind = CastExpr::CK_BitCast;
Nate Begemanc69b7402009-06-26 00:50:28 +00003317 return false;
3318 }
3319
Nate Begemanbd956c42009-06-28 02:36:38 +00003320 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begemanc69b7402009-06-26 00:50:28 +00003321 // conversion will take place first from scalar to elt type, and then
3322 // splat from elt type to vector.
Nate Begemanbd956c42009-06-28 02:36:38 +00003323 if (SrcTy->isPointerType())
3324 return Diag(R.getBegin(),
3325 diag::err_invalid_conversion_between_vector_and_scalar)
3326 << DestTy << SrcTy << R;
Anders Carlsson43d70f82009-10-16 05:23:41 +00003327
3328 // FIXME: Pass a cast kind to the implicit cast expr.
3329 ImpCastExprToType(CastExpr, DestTy->getAs<ExtVectorType>()->getElementType());
3330
3331 Kind = CastExpr::CK_VectorSplat;
Nate Begemanc69b7402009-06-26 00:50:28 +00003332 return false;
3333}
3334
Sebastian Redlb5d49352009-01-19 22:31:54 +00003335Action::OwningExprResult
Nate Begeman5ec4b312009-08-10 23:49:36 +00003336Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, TypeTy *Ty,
Sebastian Redlb5d49352009-01-19 22:31:54 +00003337 SourceLocation RParenLoc, ExprArg Op) {
Anders Carlssonf10e4142009-08-07 22:21:05 +00003338 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Mike Stump11289f42009-09-09 15:08:12 +00003339
Sebastian Redlb5d49352009-01-19 22:31:54 +00003340 assert((Ty != 0) && (Op.get() != 0) &&
3341 "ActOnCastExpr(): missing type or expr");
Steve Naroff1a2cf6b2007-07-16 23:25:18 +00003342
Nate Begeman5ec4b312009-08-10 23:49:36 +00003343 Expr *castExpr = (Expr *)Op.get();
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00003344 //FIXME: Preserve type source info.
3345 QualType castType = GetTypeFromParser(Ty);
Mike Stump11289f42009-09-09 15:08:12 +00003346
Nate Begeman5ec4b312009-08-10 23:49:36 +00003347 // If the Expr being casted is a ParenListExpr, handle it specially.
3348 if (isa<ParenListExpr>(castExpr))
3349 return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, move(Op),castType);
Anders Carlssone9766d52009-09-09 21:33:21 +00003350 CXXMethodDecl *Method = 0;
Mike Stump11289f42009-09-09 15:08:12 +00003351 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr,
Anders Carlssone9766d52009-09-09 21:33:21 +00003352 Kind, Method))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003353 return ExprError();
Anders Carlssone9766d52009-09-09 21:33:21 +00003354
3355 if (Method) {
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00003356 OwningExprResult CastArg = BuildCXXCastArgument(LParenLoc, castType, Kind,
Anders Carlssone9766d52009-09-09 21:33:21 +00003357 Method, move(Op));
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00003358
Anders Carlssone9766d52009-09-09 21:33:21 +00003359 if (CastArg.isInvalid())
3360 return ExprError();
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00003361
Anders Carlssone9766d52009-09-09 21:33:21 +00003362 castExpr = CastArg.takeAs<Expr>();
3363 } else {
3364 Op.release();
Fariborz Jahanian3df87672009-08-29 19:15:16 +00003365 }
Mike Stump11289f42009-09-09 15:08:12 +00003366
Sebastian Redl9f831db2009-07-25 15:41:38 +00003367 return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(),
Mike Stump11289f42009-09-09 15:08:12 +00003368 Kind, castExpr, castType,
Anders Carlssonf10e4142009-08-07 22:21:05 +00003369 LParenLoc, RParenLoc));
Chris Lattnere168f762006-11-10 05:29:30 +00003370}
3371
Nate Begeman5ec4b312009-08-10 23:49:36 +00003372/// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence
3373/// of comma binary operators.
3374Action::OwningExprResult
3375Sema::MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg EA) {
3376 Expr *expr = EA.takeAs<Expr>();
3377 ParenListExpr *E = dyn_cast<ParenListExpr>(expr);
3378 if (!E)
3379 return Owned(expr);
Mike Stump11289f42009-09-09 15:08:12 +00003380
Nate Begeman5ec4b312009-08-10 23:49:36 +00003381 OwningExprResult Result(*this, E->getExpr(0));
Mike Stump11289f42009-09-09 15:08:12 +00003382
Nate Begeman5ec4b312009-08-10 23:49:36 +00003383 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
3384 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, move(Result),
3385 Owned(E->getExpr(i)));
Mike Stump11289f42009-09-09 15:08:12 +00003386
Nate Begeman5ec4b312009-08-10 23:49:36 +00003387 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), move(Result));
3388}
3389
3390Action::OwningExprResult
3391Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc,
3392 SourceLocation RParenLoc, ExprArg Op,
3393 QualType Ty) {
3394 ParenListExpr *PE = (ParenListExpr *)Op.get();
Mike Stump11289f42009-09-09 15:08:12 +00003395
3396 // If this is an altivec initializer, '(' type ')' '(' init, ..., init ')'
Nate Begeman5ec4b312009-08-10 23:49:36 +00003397 // then handle it as such.
3398 if (getLangOptions().AltiVec && Ty->isVectorType()) {
3399 if (PE->getNumExprs() == 0) {
3400 Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer);
3401 return ExprError();
3402 }
3403
3404 llvm::SmallVector<Expr *, 8> initExprs;
3405 for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i)
3406 initExprs.push_back(PE->getExpr(i));
3407
3408 // FIXME: This means that pretty-printing the final AST will produce curly
3409 // braces instead of the original commas.
3410 Op.release();
Mike Stump11289f42009-09-09 15:08:12 +00003411 InitListExpr *E = new (Context) InitListExpr(LParenLoc, &initExprs[0],
Nate Begeman5ec4b312009-08-10 23:49:36 +00003412 initExprs.size(), RParenLoc);
3413 E->setType(Ty);
Mike Stump11289f42009-09-09 15:08:12 +00003414 return ActOnCompoundLiteral(LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,
Nate Begeman5ec4b312009-08-10 23:49:36 +00003415 Owned(E));
3416 } else {
Mike Stump11289f42009-09-09 15:08:12 +00003417 // This is not an AltiVec-style cast, so turn the ParenListExpr into a
Nate Begeman5ec4b312009-08-10 23:49:36 +00003418 // sequence of BinOp comma operators.
3419 Op = MaybeConvertParenListExprToParenExpr(S, move(Op));
3420 return ActOnCastExpr(S, LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,move(Op));
3421 }
3422}
3423
3424Action::OwningExprResult Sema::ActOnParenListExpr(SourceLocation L,
3425 SourceLocation R,
3426 MultiExprArg Val) {
3427 unsigned nexprs = Val.size();
3428 Expr **exprs = reinterpret_cast<Expr**>(Val.release());
3429 assert((exprs != 0) && "ActOnParenListExpr() missing expr list");
3430 Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R);
3431 return Owned(expr);
3432}
3433
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00003434/// Note that lhs is not null here, even if this is the gnu "x ?: y" extension.
3435/// In that case, lhs = cond.
Chris Lattner2c486602009-02-18 04:38:20 +00003436/// C99 6.5.15
3437QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
3438 SourceLocation QuestionLoc) {
Sebastian Redl1a99f442009-04-16 17:51:27 +00003439 // C++ is sufficiently different to merit its own checker.
3440 if (getLangOptions().CPlusPlus)
3441 return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc);
3442
Chris Lattner432cff52009-02-18 04:28:32 +00003443 UsualUnaryConversions(Cond);
3444 UsualUnaryConversions(LHS);
3445 UsualUnaryConversions(RHS);
3446 QualType CondTy = Cond->getType();
3447 QualType LHSTy = LHS->getType();
3448 QualType RHSTy = RHS->getType();
Steve Naroff31090012007-07-16 21:54:35 +00003449
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003450 // first, check the condition.
Sebastian Redl1a99f442009-04-16 17:51:27 +00003451 if (!CondTy->isScalarType()) { // C99 6.5.15p2
3452 Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar)
3453 << CondTy;
3454 return QualType();
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003455 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003456
Chris Lattnere2949f42008-01-06 22:42:25 +00003457 // Now check the two expressions.
Nate Begeman5ec4b312009-08-10 23:49:36 +00003458 if (LHSTy->isVectorType() || RHSTy->isVectorType())
3459 return CheckVectorOperands(QuestionLoc, LHS, RHS);
Douglas Gregor4619e432008-12-05 23:32:09 +00003460
Chris Lattnere2949f42008-01-06 22:42:25 +00003461 // If both operands have arithmetic type, do the usual arithmetic conversions
3462 // to find a common type: C99 6.5.15p3,5.
Chris Lattner432cff52009-02-18 04:28:32 +00003463 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
3464 UsualArithmeticConversions(LHS, RHS);
3465 return LHS->getType();
Steve Naroffdbd9e892007-07-17 00:58:39 +00003466 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003467
Chris Lattnere2949f42008-01-06 22:42:25 +00003468 // If both operands are the same structure or union type, the result is that
3469 // type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003470 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3
3471 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
Chris Lattner2ab40a62007-11-26 01:40:58 +00003472 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stump4e1f26a2009-02-19 03:04:26 +00003473 // "If both the operands have structure or union type, the result has
Chris Lattnere2949f42008-01-06 22:42:25 +00003474 // that type." This implies that CV qualifiers are dropped.
Chris Lattner432cff52009-02-18 04:28:32 +00003475 return LHSTy.getUnqualifiedType();
Eli Friedmanba961a92009-03-23 00:24:07 +00003476 // FIXME: Type of conditional expression must be complete in C mode.
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003477 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003478
Chris Lattnere2949f42008-01-06 22:42:25 +00003479 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffbf1516c2008-05-12 21:44:38 +00003480 // The following || allows only one side to be void (a GCC-ism).
Chris Lattner432cff52009-02-18 04:28:32 +00003481 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
3482 if (!LHSTy->isVoidType())
3483 Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3484 << RHS->getSourceRange();
3485 if (!RHSTy->isVoidType())
3486 Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3487 << LHS->getSourceRange();
3488 ImpCastExprToType(LHS, Context.VoidTy);
3489 ImpCastExprToType(RHS, Context.VoidTy);
Eli Friedman3e1852f2008-06-04 19:47:51 +00003490 return Context.VoidTy;
Steve Naroffbf1516c2008-05-12 21:44:38 +00003491 }
Steve Naroff039ad3c2008-01-08 01:11:38 +00003492 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
3493 // the type of the other operand."
Steve Naroff6b712a72009-07-14 18:25:06 +00003494 if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00003495 RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Chris Lattner432cff52009-02-18 04:28:32 +00003496 ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer.
3497 return LHSTy;
Steve Naroff039ad3c2008-01-08 01:11:38 +00003498 }
Steve Naroff6b712a72009-07-14 18:25:06 +00003499 if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00003500 LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Chris Lattner432cff52009-02-18 04:28:32 +00003501 ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer.
3502 return RHSTy;
Steve Naroff039ad3c2008-01-08 01:11:38 +00003503 }
David Chisnall9f57c292009-08-17 16:35:33 +00003504 // Handle things like Class and struct objc_class*. Here we case the result
3505 // to the pseudo-builtin, because that will be implicitly cast back to the
3506 // redefinition type if an attempt is made to access its fields.
3507 if (LHSTy->isObjCClassType() &&
3508 (RHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) {
3509 ImpCastExprToType(RHS, LHSTy);
3510 return LHSTy;
3511 }
3512 if (RHSTy->isObjCClassType() &&
3513 (LHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) {
3514 ImpCastExprToType(LHS, RHSTy);
3515 return RHSTy;
3516 }
3517 // And the same for struct objc_object* / id
3518 if (LHSTy->isObjCIdType() &&
3519 (RHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) {
3520 ImpCastExprToType(RHS, LHSTy);
3521 return LHSTy;
3522 }
3523 if (RHSTy->isObjCIdType() &&
3524 (LHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) {
3525 ImpCastExprToType(LHS, RHSTy);
3526 return RHSTy;
3527 }
Steve Naroff05efa972009-07-01 14:36:47 +00003528 // Handle block pointer types.
3529 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) {
3530 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
3531 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
3532 QualType destType = Context.getPointerType(Context.VoidTy);
Mike Stump11289f42009-09-09 15:08:12 +00003533 ImpCastExprToType(LHS, destType);
Steve Naroff05efa972009-07-01 14:36:47 +00003534 ImpCastExprToType(RHS, destType);
3535 return destType;
3536 }
3537 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3538 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3539 return QualType();
Mike Stump1b821b42009-05-07 03:14:14 +00003540 }
Steve Naroff05efa972009-07-01 14:36:47 +00003541 // We have 2 block pointer types.
3542 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3543 // Two identical block pointer types are always compatible.
Mike Stump1b821b42009-05-07 03:14:14 +00003544 return LHSTy;
3545 }
Steve Naroff05efa972009-07-01 14:36:47 +00003546 // The block pointer types aren't identical, continue checking.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003547 QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType();
3548 QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00003549
Steve Naroff05efa972009-07-01 14:36:47 +00003550 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3551 rhptee.getUnqualifiedType())) {
Mike Stump1b821b42009-05-07 03:14:14 +00003552 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3553 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3554 // In this situation, we assume void* type. No especially good
3555 // reason, but this is what gcc does, and we do have to pick
3556 // to get a consistent AST.
3557 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3558 ImpCastExprToType(LHS, incompatTy);
3559 ImpCastExprToType(RHS, incompatTy);
3560 return incompatTy;
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003561 }
Steve Naroff05efa972009-07-01 14:36:47 +00003562 // The block pointer types are compatible.
3563 ImpCastExprToType(LHS, LHSTy);
3564 ImpCastExprToType(RHS, LHSTy);
Steve Naroffea4c7802009-04-08 17:05:15 +00003565 return LHSTy;
3566 }
Steve Naroff05efa972009-07-01 14:36:47 +00003567 // Check constraints for Objective-C object pointers types.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003568 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
Mike Stump11289f42009-09-09 15:08:12 +00003569
Steve Naroff05efa972009-07-01 14:36:47 +00003570 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3571 // Two identical object pointer types are always compatible.
3572 return LHSTy;
3573 }
John McCall9dd450b2009-09-21 23:43:11 +00003574 const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>();
3575 const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>();
Steve Naroff05efa972009-07-01 14:36:47 +00003576 QualType compositeType = LHSTy;
Mike Stump11289f42009-09-09 15:08:12 +00003577
Steve Naroff05efa972009-07-01 14:36:47 +00003578 // If both operands are interfaces and either operand can be
3579 // assigned to the other, use that type as the composite
3580 // type. This allows
3581 // xxx ? (A*) a : (B*) b
3582 // where B is a subclass of A.
3583 //
3584 // Additionally, as for assignment, if either type is 'id'
3585 // allow silent coercion. Finally, if the types are
3586 // incompatible then make sure to use 'id' as the composite
3587 // type so the result is acceptable for sending messages to.
3588
3589 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
3590 // It could return the composite type.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003591 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
Fariborz Jahaniana83c0162009-08-22 22:27:17 +00003592 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
Steve Naroff7cae42b2009-07-10 23:34:53 +00003593 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
Fariborz Jahaniana83c0162009-08-22 22:27:17 +00003594 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
Mike Stump11289f42009-09-09 15:08:12 +00003595 } else if ((LHSTy->isObjCQualifiedIdType() ||
Steve Naroff7cae42b2009-07-10 23:34:53 +00003596 RHSTy->isObjCQualifiedIdType()) &&
Steve Naroff8e6aee52009-07-23 01:01:38 +00003597 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
Mike Stump11289f42009-09-09 15:08:12 +00003598 // Need to handle "id<xx>" explicitly.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003599 // GCC allows qualified id and any Objective-C type to devolve to
3600 // id. Currently localizing to here until clear this should be
3601 // part of ObjCQualifiedIdTypesAreCompatible.
3602 compositeType = Context.getObjCIdType();
3603 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
Steve Naroff05efa972009-07-01 14:36:47 +00003604 compositeType = Context.getObjCIdType();
3605 } else {
3606 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
3607 << LHSTy << RHSTy
3608 << LHS->getSourceRange() << RHS->getSourceRange();
3609 QualType incompatTy = Context.getObjCIdType();
3610 ImpCastExprToType(LHS, incompatTy);
3611 ImpCastExprToType(RHS, incompatTy);
3612 return incompatTy;
3613 }
3614 // The object pointer types are compatible.
3615 ImpCastExprToType(LHS, compositeType);
3616 ImpCastExprToType(RHS, compositeType);
3617 return compositeType;
3618 }
Steve Naroff85d97152009-07-29 15:09:39 +00003619 // Check Objective-C object pointer types and 'void *'
3620 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003621 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
John McCall9dd450b2009-09-21 23:43:11 +00003622 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
John McCall8ccfcb52009-09-24 19:53:00 +00003623 QualType destPointee
3624 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
Steve Naroff85d97152009-07-29 15:09:39 +00003625 QualType destType = Context.getPointerType(destPointee);
3626 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3627 ImpCastExprToType(RHS, destType); // promote to void*
3628 return destType;
3629 }
3630 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
John McCall9dd450b2009-09-21 23:43:11 +00003631 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003632 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
John McCall8ccfcb52009-09-24 19:53:00 +00003633 QualType destPointee
3634 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
Steve Naroff85d97152009-07-29 15:09:39 +00003635 QualType destType = Context.getPointerType(destPointee);
3636 ImpCastExprToType(RHS, destType); // add qualifiers if necessary
3637 ImpCastExprToType(LHS, destType); // promote to void*
3638 return destType;
3639 }
Steve Naroff05efa972009-07-01 14:36:47 +00003640 // Check constraints for C object pointers types (C99 6.5.15p3,6).
3641 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
3642 // get the "pointed to" types
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003643 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
3644 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroff05efa972009-07-01 14:36:47 +00003645
3646 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
3647 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
3648 // Figure out necessary qualifiers (C99 6.5.15p6)
John McCall8ccfcb52009-09-24 19:53:00 +00003649 QualType destPointee
3650 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
Steve Naroff05efa972009-07-01 14:36:47 +00003651 QualType destType = Context.getPointerType(destPointee);
3652 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3653 ImpCastExprToType(RHS, destType); // promote to void*
3654 return destType;
3655 }
3656 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00003657 QualType destPointee
3658 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
Steve Naroff05efa972009-07-01 14:36:47 +00003659 QualType destType = Context.getPointerType(destPointee);
3660 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3661 ImpCastExprToType(RHS, destType); // promote to void*
3662 return destType;
3663 }
3664
3665 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3666 // Two identical pointer types are always compatible.
3667 return LHSTy;
3668 }
3669 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3670 rhptee.getUnqualifiedType())) {
3671 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3672 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3673 // In this situation, we assume void* type. No especially good
3674 // reason, but this is what gcc does, and we do have to pick
3675 // to get a consistent AST.
3676 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3677 ImpCastExprToType(LHS, incompatTy);
3678 ImpCastExprToType(RHS, incompatTy);
3679 return incompatTy;
3680 }
3681 // The pointer types are compatible.
3682 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
3683 // differently qualified versions of compatible types, the result type is
3684 // a pointer to an appropriately qualified version of the *composite*
3685 // type.
3686 // FIXME: Need to calculate the composite type.
3687 // FIXME: Need to add qualifiers
3688 ImpCastExprToType(LHS, LHSTy);
3689 ImpCastExprToType(RHS, LHSTy);
3690 return LHSTy;
3691 }
Mike Stump11289f42009-09-09 15:08:12 +00003692
Steve Naroff05efa972009-07-01 14:36:47 +00003693 // GCC compatibility: soften pointer/integer mismatch.
3694 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) {
3695 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3696 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3697 ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer.
3698 return RHSTy;
3699 }
3700 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) {
3701 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3702 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3703 ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer.
3704 return LHSTy;
3705 }
Daniel Dunbar484603b2008-09-11 23:12:46 +00003706
Chris Lattnere2949f42008-01-06 22:42:25 +00003707 // Otherwise, the operands are not compatible.
Chris Lattner432cff52009-02-18 04:28:32 +00003708 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3709 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003710 return QualType();
Steve Narofff8a28c52007-05-15 20:29:32 +00003711}
3712
Steve Naroff83895f72007-09-16 03:34:24 +00003713/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Chris Lattnere168f762006-11-10 05:29:30 +00003714/// in the case of a the GNU conditional expr extension.
Sebastian Redlb5d49352009-01-19 22:31:54 +00003715Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
3716 SourceLocation ColonLoc,
3717 ExprArg Cond, ExprArg LHS,
3718 ExprArg RHS) {
3719 Expr *CondExpr = (Expr *) Cond.get();
3720 Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get();
Chris Lattner2ab40a62007-11-26 01:40:58 +00003721
3722 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
3723 // was the condition.
3724 bool isLHSNull = LHSExpr == 0;
3725 if (isLHSNull)
3726 LHSExpr = CondExpr;
Sebastian Redlb5d49352009-01-19 22:31:54 +00003727
3728 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
Chris Lattnerdaaa9f22007-07-16 21:39:03 +00003729 RHSExpr, QuestionLoc);
Steve Narofff8a28c52007-05-15 20:29:32 +00003730 if (result.isNull())
Sebastian Redlb5d49352009-01-19 22:31:54 +00003731 return ExprError();
3732
3733 Cond.release();
3734 LHS.release();
3735 RHS.release();
Douglas Gregor7e112b02009-08-26 14:37:04 +00003736 return Owned(new (Context) ConditionalOperator(CondExpr, QuestionLoc,
Steve Narofff6009ed2009-01-21 00:14:39 +00003737 isLHSNull ? 0 : LHSExpr,
Douglas Gregor7e112b02009-08-26 14:37:04 +00003738 ColonLoc, RHSExpr, result));
Chris Lattnere168f762006-11-10 05:29:30 +00003739}
3740
Steve Naroff3f597292007-05-11 22:18:03 +00003741// CheckPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stump4e1f26a2009-02-19 03:04:26 +00003742// being closely modeled after the C99 spec:-). The odd characteristic of this
Steve Naroff3f597292007-05-11 22:18:03 +00003743// routine is it effectively iqnores the qualifiers on the top level pointee.
3744// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
3745// FIXME: add a couple examples in this comment.
Mike Stump4e1f26a2009-02-19 03:04:26 +00003746Sema::AssignConvertType
Steve Naroff98cf3e92007-06-06 18:38:38 +00003747Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
Steve Naroff3f597292007-05-11 22:18:03 +00003748 QualType lhptee, rhptee;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003749
David Chisnall9f57c292009-08-17 16:35:33 +00003750 if ((lhsType->isObjCClassType() &&
3751 (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) ||
3752 (rhsType->isObjCClassType() &&
3753 (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) {
3754 return Compatible;
3755 }
3756
Steve Naroff1f4d7272007-05-11 04:00:31 +00003757 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003758 lhptee = lhsType->getAs<PointerType>()->getPointeeType();
3759 rhptee = rhsType->getAs<PointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00003760
Steve Naroff1f4d7272007-05-11 04:00:31 +00003761 // make sure we operate on the canonical type
Chris Lattner574dee62008-07-26 22:17:49 +00003762 lhptee = Context.getCanonicalType(lhptee);
3763 rhptee = Context.getCanonicalType(rhptee);
Steve Naroff1f4d7272007-05-11 04:00:31 +00003764
Chris Lattner9bad62c2008-01-04 18:04:52 +00003765 AssignConvertType ConvTy = Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003766
3767 // C99 6.5.16.1p1: This following citation is common to constraints
3768 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
3769 // qualifiers of the type *pointed to* by the right;
Fariborz Jahanianece85822009-02-17 18:27:45 +00003770 // FIXME: Handle ExtQualType
Douglas Gregor9a657932008-10-21 23:43:52 +00003771 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
Chris Lattner9bad62c2008-01-04 18:04:52 +00003772 ConvTy = CompatiblePointerDiscardsQualifiers;
Steve Naroff3f597292007-05-11 22:18:03 +00003773
Mike Stump4e1f26a2009-02-19 03:04:26 +00003774 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
3775 // incomplete type and the other is a pointer to a qualified or unqualified
Steve Naroff3f597292007-05-11 22:18:03 +00003776 // version of void...
Chris Lattner0a788432008-01-03 22:56:36 +00003777 if (lhptee->isVoidType()) {
Chris Lattnerb3a176d2008-04-02 06:59:01 +00003778 if (rhptee->isIncompleteOrObjectType())
Chris Lattner9bad62c2008-01-04 18:04:52 +00003779 return ConvTy;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003780
Chris Lattner0a788432008-01-03 22:56:36 +00003781 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerb3a176d2008-04-02 06:59:01 +00003782 assert(rhptee->isFunctionType());
3783 return FunctionVoidPointer;
Chris Lattner0a788432008-01-03 22:56:36 +00003784 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003785
Chris Lattner0a788432008-01-03 22:56:36 +00003786 if (rhptee->isVoidType()) {
Chris Lattnerb3a176d2008-04-02 06:59:01 +00003787 if (lhptee->isIncompleteOrObjectType())
Chris Lattner9bad62c2008-01-04 18:04:52 +00003788 return ConvTy;
Chris Lattner0a788432008-01-03 22:56:36 +00003789
3790 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerb3a176d2008-04-02 06:59:01 +00003791 assert(lhptee->isFunctionType());
3792 return FunctionVoidPointer;
Chris Lattner0a788432008-01-03 22:56:36 +00003793 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003794 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Steve Naroff3f597292007-05-11 22:18:03 +00003795 // unqualified versions of compatible types, ...
Eli Friedman80160bd2009-03-22 23:59:44 +00003796 lhptee = lhptee.getUnqualifiedType();
3797 rhptee = rhptee.getUnqualifiedType();
3798 if (!Context.typesAreCompatible(lhptee, rhptee)) {
3799 // Check if the pointee types are compatible ignoring the sign.
3800 // We explicitly check for char so that we catch "char" vs
3801 // "unsigned char" on systems where "char" is unsigned.
Chris Lattnerec3a1562009-10-17 20:33:28 +00003802 if (lhptee->isCharType())
Eli Friedman80160bd2009-03-22 23:59:44 +00003803 lhptee = Context.UnsignedCharTy;
Chris Lattnerec3a1562009-10-17 20:33:28 +00003804 else if (lhptee->isSignedIntegerType())
Eli Friedman80160bd2009-03-22 23:59:44 +00003805 lhptee = Context.getCorrespondingUnsignedType(lhptee);
Chris Lattnerec3a1562009-10-17 20:33:28 +00003806
3807 if (rhptee->isCharType())
Eli Friedman80160bd2009-03-22 23:59:44 +00003808 rhptee = Context.UnsignedCharTy;
Chris Lattnerec3a1562009-10-17 20:33:28 +00003809 else if (rhptee->isSignedIntegerType())
Eli Friedman80160bd2009-03-22 23:59:44 +00003810 rhptee = Context.getCorrespondingUnsignedType(rhptee);
Chris Lattnerec3a1562009-10-17 20:33:28 +00003811
Eli Friedman80160bd2009-03-22 23:59:44 +00003812 if (lhptee == rhptee) {
3813 // Types are compatible ignoring the sign. Qualifier incompatibility
3814 // takes priority over sign incompatibility because the sign
3815 // warning can be disabled.
3816 if (ConvTy != Compatible)
3817 return ConvTy;
3818 return IncompatiblePointerSign;
3819 }
3820 // General pointer incompatibility takes priority over qualifiers.
Mike Stump11289f42009-09-09 15:08:12 +00003821 return IncompatiblePointer;
Eli Friedman80160bd2009-03-22 23:59:44 +00003822 }
Chris Lattner9bad62c2008-01-04 18:04:52 +00003823 return ConvTy;
Steve Naroff1f4d7272007-05-11 04:00:31 +00003824}
3825
Steve Naroff081c7422008-09-04 15:10:53 +00003826/// CheckBlockPointerTypesForAssignment - This routine determines whether two
3827/// block pointer types are compatible or whether a block and normal pointer
3828/// are compatible. It is more restrict than comparing two function pointer
3829// types.
Mike Stump4e1f26a2009-02-19 03:04:26 +00003830Sema::AssignConvertType
3831Sema::CheckBlockPointerTypesForAssignment(QualType lhsType,
Steve Naroff081c7422008-09-04 15:10:53 +00003832 QualType rhsType) {
3833 QualType lhptee, rhptee;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003834
Steve Naroff081c7422008-09-04 15:10:53 +00003835 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003836 lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType();
3837 rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00003838
Steve Naroff081c7422008-09-04 15:10:53 +00003839 // make sure we operate on the canonical type
3840 lhptee = Context.getCanonicalType(lhptee);
3841 rhptee = Context.getCanonicalType(rhptee);
Mike Stump4e1f26a2009-02-19 03:04:26 +00003842
Steve Naroff081c7422008-09-04 15:10:53 +00003843 AssignConvertType ConvTy = Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003844
Steve Naroff081c7422008-09-04 15:10:53 +00003845 // For blocks we enforce that qualifiers are identical.
3846 if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers())
3847 ConvTy = CompatiblePointerDiscardsQualifiers;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003848
Eli Friedmana6638ca2009-06-08 05:08:54 +00003849 if (!Context.typesAreCompatible(lhptee, rhptee))
Mike Stump4e1f26a2009-02-19 03:04:26 +00003850 return IncompatibleBlockPointer;
Steve Naroff081c7422008-09-04 15:10:53 +00003851 return ConvTy;
3852}
3853
Mike Stump4e1f26a2009-02-19 03:04:26 +00003854/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
3855/// has code to accommodate several GCC extensions when type checking
Steve Naroff17f76e02007-05-03 21:03:48 +00003856/// pointers. Here are some objectionable examples that GCC considers warnings:
3857///
3858/// int a, *pint;
3859/// short *pshort;
3860/// struct foo *pfoo;
3861///
3862/// pint = pshort; // warning: assignment from incompatible pointer type
3863/// a = pint; // warning: assignment makes integer from pointer without a cast
3864/// pint = a; // warning: assignment makes pointer from integer without a cast
3865/// pint = pfoo; // warning: assignment from incompatible pointer type
3866///
3867/// As a result, the code for dealing with pointers is more complex than the
Mike Stump4e1f26a2009-02-19 03:04:26 +00003868/// C99 spec dictates.
Steve Naroff17f76e02007-05-03 21:03:48 +00003869///
Chris Lattner9bad62c2008-01-04 18:04:52 +00003870Sema::AssignConvertType
Steve Naroff98cf3e92007-06-06 18:38:38 +00003871Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattnera52c2f22008-01-04 23:18:45 +00003872 // Get canonical types. We're not formatting these types, just comparing
3873 // them.
Chris Lattner574dee62008-07-26 22:17:49 +00003874 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
3875 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedman3360d892008-05-30 18:07:22 +00003876
3877 if (lhsType == rhsType)
Chris Lattnerf5c973d2008-01-07 17:51:46 +00003878 return Compatible; // Common case: fast path an exact match.
Steve Naroff44fd8ff2007-07-24 21:46:40 +00003879
David Chisnall9f57c292009-08-17 16:35:33 +00003880 if ((lhsType->isObjCClassType() &&
3881 (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) ||
3882 (rhsType->isObjCClassType() &&
3883 (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) {
3884 return Compatible;
3885 }
3886
Douglas Gregor6b754842008-10-28 00:22:11 +00003887 // If the left-hand side is a reference type, then we are in a
3888 // (rare!) case where we've allowed the use of references in C,
3889 // e.g., as a parameter type in a built-in function. In this case,
3890 // just make sure that the type referenced is compatible with the
3891 // right-hand side type. The caller is responsible for adjusting
3892 // lhsType so that the resulting expression does not have reference
3893 // type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003894 if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) {
Douglas Gregor6b754842008-10-28 00:22:11 +00003895 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType))
Anders Carlsson24ebce62007-10-12 23:56:29 +00003896 return Compatible;
Chris Lattnera52c2f22008-01-04 23:18:45 +00003897 return Incompatible;
Fariborz Jahaniana1e34202007-12-19 17:45:58 +00003898 }
Nate Begemanbd956c42009-06-28 02:36:38 +00003899 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
3900 // to the same ExtVector type.
3901 if (lhsType->isExtVectorType()) {
3902 if (rhsType->isExtVectorType())
3903 return lhsType == rhsType ? Compatible : Incompatible;
3904 if (!rhsType->isVectorType() && rhsType->isArithmeticType())
3905 return Compatible;
3906 }
Mike Stump11289f42009-09-09 15:08:12 +00003907
Nate Begeman191a6b12008-07-14 18:02:46 +00003908 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Nate Begeman191a6b12008-07-14 18:02:46 +00003909 // If we are allowing lax vector conversions, and LHS and RHS are both
Mike Stump4e1f26a2009-02-19 03:04:26 +00003910 // vectors, the total size only needs to be the same. This is a bitcast;
Nate Begeman191a6b12008-07-14 18:02:46 +00003911 // no bits are changed but the result type is different.
Chris Lattner881a2122008-01-04 23:32:24 +00003912 if (getLangOptions().LaxVectorConversions &&
3913 lhsType->isVectorType() && rhsType->isVectorType()) {
Nate Begeman191a6b12008-07-14 18:02:46 +00003914 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))
Anders Carlssondb5a9b62009-01-30 23:17:46 +00003915 return IncompatibleVectors;
Chris Lattner881a2122008-01-04 23:32:24 +00003916 }
3917 return Incompatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003918 }
Eli Friedman3360d892008-05-30 18:07:22 +00003919
Chris Lattner881a2122008-01-04 23:32:24 +00003920 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Steve Naroff98cf3e92007-06-06 18:38:38 +00003921 return Compatible;
Eli Friedman3360d892008-05-30 18:07:22 +00003922
Chris Lattnerec646832008-04-07 06:49:41 +00003923 if (isa<PointerType>(lhsType)) {
Steve Naroff98cf3e92007-06-06 18:38:38 +00003924 if (rhsType->isIntegerType())
Chris Lattner940cfeb2008-01-04 18:22:42 +00003925 return IntToPointer;
Eli Friedman3360d892008-05-30 18:07:22 +00003926
Chris Lattnerec646832008-04-07 06:49:41 +00003927 if (isa<PointerType>(rhsType))
Steve Naroff98cf3e92007-06-06 18:38:38 +00003928 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stump4e1f26a2009-02-19 03:04:26 +00003929
Steve Naroffaccc4882009-07-20 17:56:53 +00003930 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003931 if (isa<ObjCObjectPointerType>(rhsType)) {
Steve Naroffaccc4882009-07-20 17:56:53 +00003932 if (lhsType->isVoidPointerType()) // an exception to the rule.
3933 return Compatible;
3934 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00003935 }
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003936 if (rhsType->getAs<BlockPointerType>()) {
3937 if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregore7dd1452008-11-27 00:44:28 +00003938 return Compatible;
Steve Naroff32d072c2008-09-29 18:10:17 +00003939
3940 // Treat block pointers as objects.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003941 if (getLangOptions().ObjC1 && lhsType->isObjCIdType())
Steve Naroff32d072c2008-09-29 18:10:17 +00003942 return Compatible;
3943 }
Steve Naroff081c7422008-09-04 15:10:53 +00003944 return Incompatible;
3945 }
3946
3947 if (isa<BlockPointerType>(lhsType)) {
3948 if (rhsType->isIntegerType())
Eli Friedman8163b7a2009-02-25 04:20:42 +00003949 return IntToBlockPointer;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003950
Steve Naroff32d072c2008-09-29 18:10:17 +00003951 // Treat block pointers as objects.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003952 if (getLangOptions().ObjC1 && rhsType->isObjCIdType())
Steve Naroff32d072c2008-09-29 18:10:17 +00003953 return Compatible;
3954
Steve Naroff081c7422008-09-04 15:10:53 +00003955 if (rhsType->isBlockPointerType())
3956 return CheckBlockPointerTypesForAssignment(lhsType, rhsType);
Mike Stump4e1f26a2009-02-19 03:04:26 +00003957
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003958 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff081c7422008-09-04 15:10:53 +00003959 if (RHSPT->getPointeeType()->isVoidType())
Douglas Gregore7dd1452008-11-27 00:44:28 +00003960 return Compatible;
Steve Naroff081c7422008-09-04 15:10:53 +00003961 }
Chris Lattnera52c2f22008-01-04 23:18:45 +00003962 return Incompatible;
3963 }
3964
Steve Naroff7cae42b2009-07-10 23:34:53 +00003965 if (isa<ObjCObjectPointerType>(lhsType)) {
3966 if (rhsType->isIntegerType())
3967 return IntToPointer;
Mike Stump11289f42009-09-09 15:08:12 +00003968
Steve Naroffaccc4882009-07-20 17:56:53 +00003969 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003970 if (isa<PointerType>(rhsType)) {
Steve Naroffaccc4882009-07-20 17:56:53 +00003971 if (rhsType->isVoidPointerType()) // an exception to the rule.
3972 return Compatible;
3973 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00003974 }
3975 if (rhsType->isObjCObjectPointerType()) {
Steve Naroff1329fa02009-07-15 18:40:39 +00003976 if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType())
3977 return Compatible;
Steve Naroffaccc4882009-07-20 17:56:53 +00003978 if (Context.typesAreCompatible(lhsType, rhsType))
3979 return Compatible;
Steve Naroff8e6aee52009-07-23 01:01:38 +00003980 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType())
3981 return IncompatibleObjCQualifiedId;
Steve Naroffaccc4882009-07-20 17:56:53 +00003982 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00003983 }
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003984 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00003985 if (RHSPT->getPointeeType()->isVoidType())
3986 return Compatible;
3987 }
3988 // Treat block pointers as objects.
3989 if (rhsType->isBlockPointerType())
3990 return Compatible;
3991 return Incompatible;
3992 }
Chris Lattnerec646832008-04-07 06:49:41 +00003993 if (isa<PointerType>(rhsType)) {
Steve Naroff98cf3e92007-06-06 18:38:38 +00003994 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
Eli Friedman3360d892008-05-30 18:07:22 +00003995 if (lhsType == Context.BoolTy)
3996 return Compatible;
3997
3998 if (lhsType->isIntegerType())
Chris Lattner940cfeb2008-01-04 18:22:42 +00003999 return PointerToInt;
Steve Naroff98cf3e92007-06-06 18:38:38 +00004000
Mike Stump4e1f26a2009-02-19 03:04:26 +00004001 if (isa<PointerType>(lhsType))
Steve Naroff98cf3e92007-06-06 18:38:38 +00004002 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004003
4004 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004005 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregore7dd1452008-11-27 00:44:28 +00004006 return Compatible;
Chris Lattnera52c2f22008-01-04 23:18:45 +00004007 return Incompatible;
Chris Lattnera52c2f22008-01-04 23:18:45 +00004008 }
Steve Naroff7cae42b2009-07-10 23:34:53 +00004009 if (isa<ObjCObjectPointerType>(rhsType)) {
4010 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
4011 if (lhsType == Context.BoolTy)
4012 return Compatible;
4013
4014 if (lhsType->isIntegerType())
4015 return PointerToInt;
4016
Steve Naroffaccc4882009-07-20 17:56:53 +00004017 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff7cae42b2009-07-10 23:34:53 +00004018 if (isa<PointerType>(lhsType)) {
Steve Naroffaccc4882009-07-20 17:56:53 +00004019 if (lhsType->isVoidPointerType()) // an exception to the rule.
4020 return Compatible;
4021 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00004022 }
4023 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004024 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Steve Naroff7cae42b2009-07-10 23:34:53 +00004025 return Compatible;
4026 return Incompatible;
4027 }
Eli Friedman3360d892008-05-30 18:07:22 +00004028
Chris Lattnera52c2f22008-01-04 23:18:45 +00004029 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Chris Lattnerec646832008-04-07 06:49:41 +00004030 if (Context.typesAreCompatible(lhsType, rhsType))
Steve Naroff98cf3e92007-06-06 18:38:38 +00004031 return Compatible;
Bill Wendling216423b2007-05-30 06:30:29 +00004032 }
Steve Naroff98cf3e92007-06-06 18:38:38 +00004033 return Incompatible;
Steve Naroff9eb24652007-05-02 21:58:15 +00004034}
4035
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004036/// \brief Constructs a transparent union from an expression that is
4037/// used to initialize the transparent union.
Mike Stump11289f42009-09-09 15:08:12 +00004038static void ConstructTransparentUnion(ASTContext &C, Expr *&E,
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004039 QualType UnionType, FieldDecl *Field) {
4040 // Build an initializer list that designates the appropriate member
4041 // of the transparent union.
4042 InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(),
4043 &E, 1,
4044 SourceLocation());
4045 Initializer->setType(UnionType);
4046 Initializer->setInitializedFieldInUnion(Field);
4047
4048 // Build a compound literal constructing a value of the transparent
4049 // union type from this initializer list.
4050 E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer,
4051 false);
4052}
4053
4054Sema::AssignConvertType
4055Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) {
4056 QualType FromType = rExpr->getType();
4057
Mike Stump11289f42009-09-09 15:08:12 +00004058 // If the ArgType is a Union type, we want to handle a potential
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004059 // transparent_union GCC extension.
4060 const RecordType *UT = ArgType->getAsUnionType();
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00004061 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004062 return Incompatible;
4063
4064 // The field to initialize within the transparent union.
4065 RecordDecl *UD = UT->getDecl();
4066 FieldDecl *InitField = 0;
4067 // It's compatible if the expression matches any of the fields.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004068 for (RecordDecl::field_iterator it = UD->field_begin(),
4069 itend = UD->field_end();
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004070 it != itend; ++it) {
4071 if (it->getType()->isPointerType()) {
4072 // If the transparent union contains a pointer type, we allow:
4073 // 1) void pointer
4074 // 2) null pointer constant
4075 if (FromType->isPointerType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004076 if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) {
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004077 ImpCastExprToType(rExpr, it->getType());
4078 InitField = *it;
4079 break;
4080 }
Mike Stump11289f42009-09-09 15:08:12 +00004081
Douglas Gregor56751b52009-09-25 04:25:58 +00004082 if (rExpr->isNullPointerConstant(Context,
4083 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004084 ImpCastExprToType(rExpr, it->getType());
4085 InitField = *it;
4086 break;
4087 }
4088 }
4089
4090 if (CheckAssignmentConstraints(it->getType(), rExpr->getType())
4091 == Compatible) {
4092 InitField = *it;
4093 break;
4094 }
4095 }
4096
4097 if (!InitField)
4098 return Incompatible;
4099
4100 ConstructTransparentUnion(Context, rExpr, ArgType, InitField);
4101 return Compatible;
4102}
4103
Chris Lattner9bad62c2008-01-04 18:04:52 +00004104Sema::AssignConvertType
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004105Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Douglas Gregor9a657932008-10-21 23:43:52 +00004106 if (getLangOptions().CPlusPlus) {
4107 if (!lhsType->isRecordType()) {
4108 // C++ 5.17p3: If the left operand is not of class type, the
4109 // expression is implicitly converted (C++ 4) to the
4110 // cv-unqualified type of the left operand.
Douglas Gregor47d3f272008-12-19 17:40:08 +00004111 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(),
4112 "assigning"))
Douglas Gregor9a657932008-10-21 23:43:52 +00004113 return Incompatible;
Chris Lattner0d5640c2009-04-12 09:02:39 +00004114 return Compatible;
Douglas Gregor9a657932008-10-21 23:43:52 +00004115 }
4116
4117 // FIXME: Currently, we fall through and treat C++ classes like C
4118 // structures.
4119 }
4120
Steve Naroff0ee0b0a2007-11-27 17:58:44 +00004121 // C99 6.5.16.1p1: the left operand is a pointer and the right is
4122 // a null pointer constant.
Mike Stump11289f42009-09-09 15:08:12 +00004123 if ((lhsType->isPointerType() ||
4124 lhsType->isObjCObjectPointerType() ||
Mike Stump4e1f26a2009-02-19 03:04:26 +00004125 lhsType->isBlockPointerType())
Douglas Gregor56751b52009-09-25 04:25:58 +00004126 && rExpr->isNullPointerConstant(Context,
4127 Expr::NPC_ValueDependentIsNull)) {
Chris Lattnera65e1f32008-01-16 19:17:22 +00004128 ImpCastExprToType(rExpr, lhsType);
Steve Naroff0ee0b0a2007-11-27 17:58:44 +00004129 return Compatible;
4130 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004131
Chris Lattnere6dcd502007-10-16 02:55:40 +00004132 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004133 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff30d242c2007-09-15 18:49:24 +00004134 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004135 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattnere6dcd502007-10-16 02:55:40 +00004136 //
Mike Stump4e1f26a2009-02-19 03:04:26 +00004137 // Suppress this for references: C++ 8.5.3p5.
Chris Lattnere6dcd502007-10-16 02:55:40 +00004138 if (!lhsType->isReferenceType())
4139 DefaultFunctionArrayConversion(rExpr);
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00004140
Chris Lattner9bad62c2008-01-04 18:04:52 +00004141 Sema::AssignConvertType result =
4142 CheckAssignmentConstraints(lhsType, rExpr->getType());
Mike Stump4e1f26a2009-02-19 03:04:26 +00004143
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00004144 // C99 6.5.16.1p2: The value of the right operand is converted to the
4145 // type of the assignment expression.
Douglas Gregor6b754842008-10-28 00:22:11 +00004146 // CheckAssignmentConstraints allows the left-hand side to be a reference,
4147 // so that we can use references in built-in functions even in C.
4148 // The getNonReferenceType() call makes sure that the resulting expression
4149 // does not have reference type.
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004150 if (result != Incompatible && rExpr->getType() != lhsType)
Douglas Gregor6b754842008-10-28 00:22:11 +00004151 ImpCastExprToType(rExpr, lhsType.getNonReferenceType());
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00004152 return result;
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004153}
4154
Chris Lattner326f7572008-11-18 01:30:42 +00004155QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) {
Chris Lattner377d1f82008-11-18 22:52:51 +00004156 Diag(Loc, diag::err_typecheck_invalid_operands)
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00004157 << lex->getType() << rex->getType()
Chris Lattner377d1f82008-11-18 22:52:51 +00004158 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner5c11c412007-12-12 05:47:28 +00004159 return QualType();
Steve Naroff6f49f5d2007-05-29 14:23:36 +00004160}
4161
Mike Stump4e1f26a2009-02-19 03:04:26 +00004162inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex,
Steve Naroff7a5af782007-07-13 16:58:59 +00004163 Expr *&rex) {
Mike Stump4e1f26a2009-02-19 03:04:26 +00004164 // For conversion purposes, we ignore any qualifiers.
Nate Begeman002e4bd2008-04-04 01:30:25 +00004165 // For example, "const float" and "float" are equivalent.
Chris Lattner574dee62008-07-26 22:17:49 +00004166 QualType lhsType =
4167 Context.getCanonicalType(lex->getType()).getUnqualifiedType();
4168 QualType rhsType =
4169 Context.getCanonicalType(rex->getType()).getUnqualifiedType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004170
Nate Begeman191a6b12008-07-14 18:02:46 +00004171 // If the vector types are identical, return.
Nate Begeman002e4bd2008-04-04 01:30:25 +00004172 if (lhsType == rhsType)
Steve Naroff84ff4b42007-07-09 21:31:10 +00004173 return lhsType;
Nate Begeman330aaa72007-12-30 02:59:45 +00004174
Nate Begeman191a6b12008-07-14 18:02:46 +00004175 // Handle the case of a vector & extvector type of the same size and element
4176 // type. It would be nice if we only had one vector type someday.
Anders Carlssondb5a9b62009-01-30 23:17:46 +00004177 if (getLangOptions().LaxVectorConversions) {
4178 // FIXME: Should we warn here?
John McCall9dd450b2009-09-21 23:43:11 +00004179 if (const VectorType *LV = lhsType->getAs<VectorType>()) {
4180 if (const VectorType *RV = rhsType->getAs<VectorType>())
Nate Begeman191a6b12008-07-14 18:02:46 +00004181 if (LV->getElementType() == RV->getElementType() &&
Anders Carlssondb5a9b62009-01-30 23:17:46 +00004182 LV->getNumElements() == RV->getNumElements()) {
Nate Begeman191a6b12008-07-14 18:02:46 +00004183 return lhsType->isExtVectorType() ? lhsType : rhsType;
Anders Carlssondb5a9b62009-01-30 23:17:46 +00004184 }
4185 }
4186 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004187
Nate Begemanbd956c42009-06-28 02:36:38 +00004188 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can
4189 // swap back (so that we don't reverse the inputs to a subtract, for instance.
4190 bool swapped = false;
4191 if (rhsType->isExtVectorType()) {
4192 swapped = true;
4193 std::swap(rex, lex);
4194 std::swap(rhsType, lhsType);
4195 }
Mike Stump11289f42009-09-09 15:08:12 +00004196
Nate Begeman886448d2009-06-28 19:12:57 +00004197 // Handle the case of an ext vector and scalar.
John McCall9dd450b2009-09-21 23:43:11 +00004198 if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) {
Nate Begemanbd956c42009-06-28 02:36:38 +00004199 QualType EltTy = LV->getElementType();
4200 if (EltTy->isIntegralType() && rhsType->isIntegralType()) {
4201 if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) {
Nate Begeman886448d2009-06-28 19:12:57 +00004202 ImpCastExprToType(rex, lhsType);
Nate Begemanbd956c42009-06-28 02:36:38 +00004203 if (swapped) std::swap(rex, lex);
4204 return lhsType;
4205 }
4206 }
4207 if (EltTy->isRealFloatingType() && rhsType->isScalarType() &&
4208 rhsType->isRealFloatingType()) {
4209 if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) {
Nate Begeman886448d2009-06-28 19:12:57 +00004210 ImpCastExprToType(rex, lhsType);
Nate Begemanbd956c42009-06-28 02:36:38 +00004211 if (swapped) std::swap(rex, lex);
4212 return lhsType;
4213 }
Nate Begeman330aaa72007-12-30 02:59:45 +00004214 }
4215 }
Mike Stump11289f42009-09-09 15:08:12 +00004216
Nate Begeman886448d2009-06-28 19:12:57 +00004217 // Vectors of different size or scalar and non-ext-vector are errors.
Chris Lattner377d1f82008-11-18 22:52:51 +00004218 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004219 << lex->getType() << rex->getType()
Chris Lattner377d1f82008-11-18 22:52:51 +00004220 << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff84ff4b42007-07-09 21:31:10 +00004221 return QualType();
Sebastian Redl112a97662009-02-07 00:15:38 +00004222}
4223
Steve Naroff218bc2b2007-05-04 21:54:46 +00004224inline QualType Sema::CheckMultiplyDivideOperands(
Mike Stump11289f42009-09-09 15:08:12 +00004225 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Daniel Dunbar060d5e22009-01-05 22:42:10 +00004226 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner326f7572008-11-18 01:30:42 +00004227 return CheckVectorOperands(Loc, lex, rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004228
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004229 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004230
Steve Naroffdbd9e892007-07-17 00:58:39 +00004231 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004232 return compType;
Chris Lattner326f7572008-11-18 01:30:42 +00004233 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00004234}
4235
Steve Naroff218bc2b2007-05-04 21:54:46 +00004236inline QualType Sema::CheckRemainderOperands(
Mike Stump11289f42009-09-09 15:08:12 +00004237 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Daniel Dunbar0d2bfec2009-01-05 22:55:36 +00004238 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4239 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
4240 return CheckVectorOperands(Loc, lex, rex);
4241 return InvalidOperands(Loc, lex, rex);
4242 }
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004243
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004244 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004245
Steve Naroffdbd9e892007-07-17 00:58:39 +00004246 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004247 return compType;
Chris Lattner326f7572008-11-18 01:30:42 +00004248 return InvalidOperands(Loc, lex, rex);
Steve Naroff218bc2b2007-05-04 21:54:46 +00004249}
4250
4251inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Mike Stump11289f42009-09-09 15:08:12 +00004252 Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004253 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4254 QualType compType = CheckVectorOperands(Loc, lex, rex);
4255 if (CompLHSTy) *CompLHSTy = compType;
4256 return compType;
4257 }
Steve Naroff7a5af782007-07-13 16:58:59 +00004258
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004259 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Eli Friedman8e122982008-05-18 18:08:51 +00004260
Steve Naroffe4718892007-04-27 18:30:00 +00004261 // handle the common case first (both operands are arithmetic).
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004262 if (lex->getType()->isArithmeticType() &&
4263 rex->getType()->isArithmeticType()) {
4264 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004265 return compType;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004266 }
Steve Naroff218bc2b2007-05-04 21:54:46 +00004267
Eli Friedman8e122982008-05-18 18:08:51 +00004268 // Put any potential pointer into PExp
4269 Expr* PExp = lex, *IExp = rex;
Steve Naroff6b712a72009-07-14 18:25:06 +00004270 if (IExp->getType()->isAnyPointerType())
Eli Friedman8e122982008-05-18 18:08:51 +00004271 std::swap(PExp, IExp);
4272
Steve Naroff6b712a72009-07-14 18:25:06 +00004273 if (PExp->getType()->isAnyPointerType()) {
Mike Stump11289f42009-09-09 15:08:12 +00004274
Eli Friedman8e122982008-05-18 18:08:51 +00004275 if (IExp->getType()->isIntegerType()) {
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004276 QualType PointeeTy = PExp->getType()->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00004277
Chris Lattner12bdebb2009-04-24 23:50:08 +00004278 // Check for arithmetic on pointers to incomplete types.
4279 if (PointeeTy->isVoidType()) {
Douglas Gregorac1fb652009-03-24 19:52:54 +00004280 if (getLangOptions().CPlusPlus) {
4281 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
Chris Lattner3b054132008-11-19 05:08:23 +00004282 << lex->getSourceRange() << rex->getSourceRange();
Douglas Gregordd430f72009-01-19 19:26:10 +00004283 return QualType();
Eli Friedman8e122982008-05-18 18:08:51 +00004284 }
Douglas Gregorac1fb652009-03-24 19:52:54 +00004285
4286 // GNU extension: arithmetic on pointer to void
4287 Diag(Loc, diag::ext_gnu_void_ptr)
4288 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner12bdebb2009-04-24 23:50:08 +00004289 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorac1fb652009-03-24 19:52:54 +00004290 if (getLangOptions().CPlusPlus) {
4291 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
4292 << lex->getType() << lex->getSourceRange();
4293 return QualType();
4294 }
4295
4296 // GNU extension: arithmetic on pointer to function
4297 Diag(Loc, diag::ext_gnu_ptr_func_arith)
4298 << lex->getType() << lex->getSourceRange();
Steve Naroffa63372d2009-07-13 21:32:29 +00004299 } else {
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004300 // Check if we require a complete type.
Mike Stump11289f42009-09-09 15:08:12 +00004301 if (((PExp->getType()->isPointerType() &&
Steve Naroffa63372d2009-07-13 21:32:29 +00004302 !PExp->getType()->isDependentType()) ||
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004303 PExp->getType()->isObjCObjectPointerType()) &&
4304 RequireCompleteType(Loc, PointeeTy,
Mike Stump11289f42009-09-09 15:08:12 +00004305 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
4306 << PExp->getSourceRange()
Anders Carlsson029fc692009-08-26 22:59:12 +00004307 << PExp->getType()))
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004308 return QualType();
4309 }
Chris Lattner12bdebb2009-04-24 23:50:08 +00004310 // Diagnose bad cases where we step over interface counts.
4311 if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4312 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4313 << PointeeTy << PExp->getSourceRange();
4314 return QualType();
4315 }
Mike Stump11289f42009-09-09 15:08:12 +00004316
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004317 if (CompLHSTy) {
Eli Friedman629ffb92009-08-20 04:21:42 +00004318 QualType LHSTy = Context.isPromotableBitField(lex);
4319 if (LHSTy.isNull()) {
4320 LHSTy = lex->getType();
4321 if (LHSTy->isPromotableIntegerType())
4322 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregord2c2d172009-05-02 00:36:19 +00004323 }
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004324 *CompLHSTy = LHSTy;
4325 }
Eli Friedman8e122982008-05-18 18:08:51 +00004326 return PExp->getType();
4327 }
4328 }
4329
Chris Lattner326f7572008-11-18 01:30:42 +00004330 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00004331}
4332
Chris Lattner2a3569b2008-04-07 05:30:13 +00004333// C99 6.5.6
4334QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex,
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004335 SourceLocation Loc, QualType* CompLHSTy) {
4336 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4337 QualType compType = CheckVectorOperands(Loc, lex, rex);
4338 if (CompLHSTy) *CompLHSTy = compType;
4339 return compType;
4340 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004341
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004342 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004343
Chris Lattner4d62f422007-12-09 21:53:25 +00004344 // Enforce type constraints: C99 6.5.6p3.
Mike Stump4e1f26a2009-02-19 03:04:26 +00004345
Chris Lattner4d62f422007-12-09 21:53:25 +00004346 // Handle the common case first (both operands are arithmetic).
Mike Stumpf70bcf72009-05-07 18:43:07 +00004347 if (lex->getType()->isArithmeticType()
4348 && rex->getType()->isArithmeticType()) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004349 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004350 return compType;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004351 }
Mike Stump11289f42009-09-09 15:08:12 +00004352
Chris Lattner4d62f422007-12-09 21:53:25 +00004353 // Either ptr - int or ptr - ptr.
Steve Naroff6b712a72009-07-14 18:25:06 +00004354 if (lex->getType()->isAnyPointerType()) {
Steve Naroff4eed7a12009-07-13 17:19:15 +00004355 QualType lpointee = lex->getType()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004356
Douglas Gregorac1fb652009-03-24 19:52:54 +00004357 // The LHS must be an completely-defined object type.
Douglas Gregorf6cd9282009-01-23 00:36:41 +00004358
Douglas Gregorac1fb652009-03-24 19:52:54 +00004359 bool ComplainAboutVoid = false;
4360 Expr *ComplainAboutFunc = 0;
4361 if (lpointee->isVoidType()) {
4362 if (getLangOptions().CPlusPlus) {
4363 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4364 << lex->getSourceRange() << rex->getSourceRange();
4365 return QualType();
4366 }
4367
4368 // GNU C extension: arithmetic on pointer to void
4369 ComplainAboutVoid = true;
4370 } else if (lpointee->isFunctionType()) {
4371 if (getLangOptions().CPlusPlus) {
4372 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004373 << lex->getType() << lex->getSourceRange();
Chris Lattner4d62f422007-12-09 21:53:25 +00004374 return QualType();
4375 }
Douglas Gregorac1fb652009-03-24 19:52:54 +00004376
4377 // GNU C extension: arithmetic on pointer to function
4378 ComplainAboutFunc = lex;
4379 } else if (!lpointee->isDependentType() &&
Mike Stump11289f42009-09-09 15:08:12 +00004380 RequireCompleteType(Loc, lpointee,
Anders Carlsson029fc692009-08-26 22:59:12 +00004381 PDiag(diag::err_typecheck_sub_ptr_object)
Mike Stump11289f42009-09-09 15:08:12 +00004382 << lex->getSourceRange()
Anders Carlsson029fc692009-08-26 22:59:12 +00004383 << lex->getType()))
Douglas Gregorac1fb652009-03-24 19:52:54 +00004384 return QualType();
Chris Lattner4d62f422007-12-09 21:53:25 +00004385
Chris Lattner12bdebb2009-04-24 23:50:08 +00004386 // Diagnose bad cases where we step over interface counts.
4387 if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4388 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4389 << lpointee << lex->getSourceRange();
4390 return QualType();
4391 }
Mike Stump11289f42009-09-09 15:08:12 +00004392
Chris Lattner4d62f422007-12-09 21:53:25 +00004393 // The result type of a pointer-int computation is the pointer type.
Douglas Gregorac1fb652009-03-24 19:52:54 +00004394 if (rex->getType()->isIntegerType()) {
4395 if (ComplainAboutVoid)
4396 Diag(Loc, diag::ext_gnu_void_ptr)
4397 << lex->getSourceRange() << rex->getSourceRange();
4398 if (ComplainAboutFunc)
4399 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump11289f42009-09-09 15:08:12 +00004400 << ComplainAboutFunc->getType()
Douglas Gregorac1fb652009-03-24 19:52:54 +00004401 << ComplainAboutFunc->getSourceRange();
4402
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004403 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner4d62f422007-12-09 21:53:25 +00004404 return lex->getType();
Douglas Gregorac1fb652009-03-24 19:52:54 +00004405 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004406
Chris Lattner4d62f422007-12-09 21:53:25 +00004407 // Handle pointer-pointer subtractions.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004408 if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) {
Eli Friedman1974e532008-02-08 01:19:44 +00004409 QualType rpointee = RHSPTy->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004410
Douglas Gregorac1fb652009-03-24 19:52:54 +00004411 // RHS must be a completely-type object type.
4412 // Handle the GNU void* extension.
4413 if (rpointee->isVoidType()) {
4414 if (getLangOptions().CPlusPlus) {
4415 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4416 << lex->getSourceRange() << rex->getSourceRange();
4417 return QualType();
4418 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004419
Douglas Gregorac1fb652009-03-24 19:52:54 +00004420 ComplainAboutVoid = true;
4421 } else if (rpointee->isFunctionType()) {
4422 if (getLangOptions().CPlusPlus) {
4423 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004424 << rex->getType() << rex->getSourceRange();
Chris Lattner4d62f422007-12-09 21:53:25 +00004425 return QualType();
4426 }
Douglas Gregorac1fb652009-03-24 19:52:54 +00004427
4428 // GNU extension: arithmetic on pointer to function
4429 if (!ComplainAboutFunc)
4430 ComplainAboutFunc = rex;
4431 } else if (!rpointee->isDependentType() &&
4432 RequireCompleteType(Loc, rpointee,
Anders Carlsson029fc692009-08-26 22:59:12 +00004433 PDiag(diag::err_typecheck_sub_ptr_object)
4434 << rex->getSourceRange()
4435 << rex->getType()))
Douglas Gregorac1fb652009-03-24 19:52:54 +00004436 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004437
Eli Friedman168fe152009-05-16 13:54:38 +00004438 if (getLangOptions().CPlusPlus) {
4439 // Pointee types must be the same: C++ [expr.add]
4440 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
4441 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4442 << lex->getType() << rex->getType()
4443 << lex->getSourceRange() << rex->getSourceRange();
4444 return QualType();
4445 }
4446 } else {
4447 // Pointee types must be compatible C99 6.5.6p3
4448 if (!Context.typesAreCompatible(
4449 Context.getCanonicalType(lpointee).getUnqualifiedType(),
4450 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
4451 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4452 << lex->getType() << rex->getType()
4453 << lex->getSourceRange() << rex->getSourceRange();
4454 return QualType();
4455 }
Chris Lattner4d62f422007-12-09 21:53:25 +00004456 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004457
Douglas Gregorac1fb652009-03-24 19:52:54 +00004458 if (ComplainAboutVoid)
4459 Diag(Loc, diag::ext_gnu_void_ptr)
4460 << lex->getSourceRange() << rex->getSourceRange();
4461 if (ComplainAboutFunc)
4462 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump11289f42009-09-09 15:08:12 +00004463 << ComplainAboutFunc->getType()
Douglas Gregorac1fb652009-03-24 19:52:54 +00004464 << ComplainAboutFunc->getSourceRange();
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004465
4466 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner4d62f422007-12-09 21:53:25 +00004467 return Context.getPointerDiffType();
4468 }
4469 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004470
Chris Lattner326f7572008-11-18 01:30:42 +00004471 return InvalidOperands(Loc, lex, rex);
Steve Naroff218bc2b2007-05-04 21:54:46 +00004472}
4473
Chris Lattner2a3569b2008-04-07 05:30:13 +00004474// C99 6.5.7
Chris Lattner326f7572008-11-18 01:30:42 +00004475QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattner2a3569b2008-04-07 05:30:13 +00004476 bool isCompAssign) {
Chris Lattner5c11c412007-12-12 05:47:28 +00004477 // C99 6.5.7p2: Each of the operands shall have integer type.
4478 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
Chris Lattner326f7572008-11-18 01:30:42 +00004479 return InvalidOperands(Loc, lex, rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004480
Chris Lattner5c11c412007-12-12 05:47:28 +00004481 // Shifts don't perform usual arithmetic conversions, they just do integer
4482 // promotions on each operand. C99 6.5.7p3
Eli Friedman629ffb92009-08-20 04:21:42 +00004483 QualType LHSTy = Context.isPromotableBitField(lex);
4484 if (LHSTy.isNull()) {
4485 LHSTy = lex->getType();
4486 if (LHSTy->isPromotableIntegerType())
4487 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregord2c2d172009-05-02 00:36:19 +00004488 }
Chris Lattner3c133402007-12-13 07:28:16 +00004489 if (!isCompAssign)
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004490 ImpCastExprToType(lex, LHSTy);
4491
Chris Lattner5c11c412007-12-12 05:47:28 +00004492 UsualUnaryConversions(rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004493
Ryan Flynnf53fab82009-08-07 16:20:20 +00004494 // Sanity-check shift operands
4495 llvm::APSInt Right;
4496 // Check right/shifter operand
Daniel Dunbar687fa862009-09-17 06:31:27 +00004497 if (!rex->isValueDependent() &&
4498 rex->isIntegerConstantExpr(Right, Context)) {
Ryan Flynn2f085712009-08-08 19:18:23 +00004499 if (Right.isNegative())
Ryan Flynnf53fab82009-08-07 16:20:20 +00004500 Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange();
4501 else {
4502 llvm::APInt LeftBits(Right.getBitWidth(),
4503 Context.getTypeSize(lex->getType()));
4504 if (Right.uge(LeftBits))
4505 Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange();
4506 }
4507 }
4508
Chris Lattner5c11c412007-12-12 05:47:28 +00004509 // "The type of the result is that of the promoted left operand."
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004510 return LHSTy;
Steve Naroff26c8ea52007-03-21 21:08:52 +00004511}
4512
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004513// C99 6.5.8, C++ [expr.rel]
Chris Lattner326f7572008-11-18 01:30:42 +00004514QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Douglas Gregor7a5bc762009-04-06 18:45:53 +00004515 unsigned OpaqueOpc, bool isRelational) {
4516 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc;
4517
Nate Begeman191a6b12008-07-14 18:02:46 +00004518 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner326f7572008-11-18 01:30:42 +00004519 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004520
Chris Lattnerb620c342007-08-26 01:18:55 +00004521 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff47fea352007-08-10 18:26:40 +00004522 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
4523 UsualArithmeticConversions(lex, rex);
4524 else {
4525 UsualUnaryConversions(lex);
4526 UsualUnaryConversions(rex);
4527 }
Steve Naroff31090012007-07-16 21:54:35 +00004528 QualType lType = lex->getType();
4529 QualType rType = rex->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004530
Mike Stumpf70bcf72009-05-07 18:43:07 +00004531 if (!lType->isFloatingType()
4532 && !(lType->isBlockPointerType() && isRelational)) {
Chris Lattner222b8bd2009-03-08 19:39:53 +00004533 // For non-floating point types, check for self-comparisons of the form
4534 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4535 // often indicate logic errors in the program.
Mike Stump11289f42009-09-09 15:08:12 +00004536 // NOTE: Don't warn about comparisons of enum constants. These can arise
Ted Kremenekde9e9682009-03-20 19:57:37 +00004537 // from macro expansions, and are usually quite deliberate.
Chris Lattner222b8bd2009-03-08 19:39:53 +00004538 Expr *LHSStripped = lex->IgnoreParens();
4539 Expr *RHSStripped = rex->IgnoreParens();
4540 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped))
4541 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped))
Ted Kremenek9ffbe412009-03-20 18:35:45 +00004542 if (DRL->getDecl() == DRR->getDecl() &&
4543 !isa<EnumConstantDecl>(DRL->getDecl()))
Mike Stump4e1f26a2009-02-19 03:04:26 +00004544 Diag(Loc, diag::warn_selfcomparison);
Mike Stump11289f42009-09-09 15:08:12 +00004545
Chris Lattner222b8bd2009-03-08 19:39:53 +00004546 if (isa<CastExpr>(LHSStripped))
4547 LHSStripped = LHSStripped->IgnoreParenCasts();
4548 if (isa<CastExpr>(RHSStripped))
4549 RHSStripped = RHSStripped->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +00004550
Chris Lattner222b8bd2009-03-08 19:39:53 +00004551 // Warn about comparisons against a string constant (unless the other
4552 // operand is null), the user probably wants strcmp.
Douglas Gregor7a5bc762009-04-06 18:45:53 +00004553 Expr *literalString = 0;
4554 Expr *literalStringStripped = 0;
Chris Lattner222b8bd2009-03-08 19:39:53 +00004555 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00004556 !RHSStripped->isNullPointerConstant(Context,
4557 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregor7a5bc762009-04-06 18:45:53 +00004558 literalString = lex;
4559 literalStringStripped = LHSStripped;
Mike Stump12b8ce12009-08-04 21:02:39 +00004560 } else if ((isa<StringLiteral>(RHSStripped) ||
4561 isa<ObjCEncodeExpr>(RHSStripped)) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00004562 !LHSStripped->isNullPointerConstant(Context,
4563 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregor7a5bc762009-04-06 18:45:53 +00004564 literalString = rex;
4565 literalStringStripped = RHSStripped;
4566 }
4567
4568 if (literalString) {
4569 std::string resultComparison;
4570 switch (Opc) {
4571 case BinaryOperator::LT: resultComparison = ") < 0"; break;
4572 case BinaryOperator::GT: resultComparison = ") > 0"; break;
4573 case BinaryOperator::LE: resultComparison = ") <= 0"; break;
4574 case BinaryOperator::GE: resultComparison = ") >= 0"; break;
4575 case BinaryOperator::EQ: resultComparison = ") == 0"; break;
4576 case BinaryOperator::NE: resultComparison = ") != 0"; break;
4577 default: assert(false && "Invalid comparison operator");
4578 }
4579 Diag(Loc, diag::warn_stringcompare)
4580 << isa<ObjCEncodeExpr>(literalStringStripped)
4581 << literalString->getSourceRange()
Douglas Gregor170512f2009-04-01 23:51:29 +00004582 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ")
4583 << CodeModificationHint::CreateInsertion(lex->getLocStart(),
4584 "strcmp(")
4585 << CodeModificationHint::CreateInsertion(
4586 PP.getLocForEndOfToken(rex->getLocEnd()),
Douglas Gregor7a5bc762009-04-06 18:45:53 +00004587 resultComparison);
4588 }
Ted Kremeneke451eae2007-10-29 16:58:49 +00004589 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004590
Douglas Gregorca63811b2008-11-19 03:25:36 +00004591 // The result of comparisons is 'bool' in C++, 'int' in C.
Chris Lattner222b8bd2009-03-08 19:39:53 +00004592 QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy;
Douglas Gregorca63811b2008-11-19 03:25:36 +00004593
Chris Lattnerb620c342007-08-26 01:18:55 +00004594 if (isRelational) {
4595 if (lType->isRealType() && rType->isRealType())
Douglas Gregorca63811b2008-11-19 03:25:36 +00004596 return ResultTy;
Chris Lattnerb620c342007-08-26 01:18:55 +00004597 } else {
Ted Kremeneke2763b02007-10-29 17:13:39 +00004598 // Check for comparisons of floating point operands using != and ==.
Ted Kremeneke2763b02007-10-29 17:13:39 +00004599 if (lType->isFloatingType()) {
Chris Lattner222b8bd2009-03-08 19:39:53 +00004600 assert(rType->isFloatingType());
Chris Lattner326f7572008-11-18 01:30:42 +00004601 CheckFloatComparison(Loc,lex,rex);
Ted Kremenekd4ecc6d2007-10-29 16:40:01 +00004602 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004603
Chris Lattnerb620c342007-08-26 01:18:55 +00004604 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregorca63811b2008-11-19 03:25:36 +00004605 return ResultTy;
Chris Lattnerb620c342007-08-26 01:18:55 +00004606 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004607
Douglas Gregor56751b52009-09-25 04:25:58 +00004608 bool LHSIsNull = lex->isNullPointerConstant(Context,
4609 Expr::NPC_ValueDependentIsNull);
4610 bool RHSIsNull = rex->isNullPointerConstant(Context,
4611 Expr::NPC_ValueDependentIsNull);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004612
Chris Lattnerb620c342007-08-26 01:18:55 +00004613 // All of the following pointer related warnings are GCC extensions, except
4614 // when handling null pointer constants. One day, we can consider making them
4615 // errors (when -pedantic-errors is enabled).
Steve Naroff808eb8f2007-08-27 04:08:11 +00004616 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattner3a0702e2008-04-03 05:07:25 +00004617 QualType LCanPointeeTy =
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004618 Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType());
Chris Lattner3a0702e2008-04-03 05:07:25 +00004619 QualType RCanPointeeTy =
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004620 Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType());
Mike Stump4e1f26a2009-02-19 03:04:26 +00004621
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004622 if (getLangOptions().CPlusPlus) {
Eli Friedman16c209612009-08-23 00:27:47 +00004623 if (LCanPointeeTy == RCanPointeeTy)
4624 return ResultTy;
4625
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004626 // C++ [expr.rel]p2:
4627 // [...] Pointer conversions (4.10) and qualification
4628 // conversions (4.4) are performed on pointer operands (or on
4629 // a pointer operand and a null pointer constant) to bring
4630 // them to their composite pointer type. [...]
4631 //
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004632 // C++ [expr.eq]p1 uses the same notion for (in)equality
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004633 // comparisons of pointers.
Douglas Gregorb8420462009-05-05 04:50:50 +00004634 QualType T = FindCompositePointerType(lex, rex);
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004635 if (T.isNull()) {
4636 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4637 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4638 return QualType();
4639 }
4640
4641 ImpCastExprToType(lex, T);
4642 ImpCastExprToType(rex, T);
4643 return ResultTy;
4644 }
Eli Friedman16c209612009-08-23 00:27:47 +00004645 // C99 6.5.9p2 and C99 6.5.8p2
4646 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
4647 RCanPointeeTy.getUnqualifiedType())) {
4648 // Valid unless a relational comparison of function pointers
4649 if (isRelational && LCanPointeeTy->isFunctionType()) {
4650 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
4651 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4652 }
4653 } else if (!isRelational &&
4654 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
4655 // Valid unless comparison between non-null pointer and function pointer
4656 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
4657 && !LHSIsNull && !RHSIsNull) {
4658 Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void)
4659 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4660 }
4661 } else {
4662 // Invalid
Chris Lattner377d1f82008-11-18 22:52:51 +00004663 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004664 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff75c17232007-06-13 21:41:08 +00004665 }
Eli Friedman16c209612009-08-23 00:27:47 +00004666 if (LCanPointeeTy != RCanPointeeTy)
4667 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregorca63811b2008-11-19 03:25:36 +00004668 return ResultTy;
Steve Naroffcdee44c2007-08-16 21:48:38 +00004669 }
Mike Stump11289f42009-09-09 15:08:12 +00004670
Sebastian Redl576fd422009-05-10 18:38:11 +00004671 if (getLangOptions().CPlusPlus) {
Mike Stump11289f42009-09-09 15:08:12 +00004672 // Comparison of pointers with null pointer constants and equality
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004673 // comparisons of member pointers to null pointer constants.
Mike Stump11289f42009-09-09 15:08:12 +00004674 if (RHSIsNull &&
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004675 (lType->isPointerType() ||
4676 (!isRelational && lType->isMemberPointerType()))) {
Anders Carlsson83133d92009-08-24 18:03:14 +00004677 ImpCastExprToType(rex, lType, CastExpr::CK_NullToMemberPointer);
Sebastian Redl576fd422009-05-10 18:38:11 +00004678 return ResultTy;
4679 }
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004680 if (LHSIsNull &&
4681 (rType->isPointerType() ||
4682 (!isRelational && rType->isMemberPointerType()))) {
Anders Carlsson83133d92009-08-24 18:03:14 +00004683 ImpCastExprToType(lex, rType, CastExpr::CK_NullToMemberPointer);
Sebastian Redl576fd422009-05-10 18:38:11 +00004684 return ResultTy;
4685 }
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004686
4687 // Comparison of member pointers.
Mike Stump11289f42009-09-09 15:08:12 +00004688 if (!isRelational &&
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004689 lType->isMemberPointerType() && rType->isMemberPointerType()) {
4690 // C++ [expr.eq]p2:
Mike Stump11289f42009-09-09 15:08:12 +00004691 // In addition, pointers to members can be compared, or a pointer to
4692 // member and a null pointer constant. Pointer to member conversions
4693 // (4.11) and qualification conversions (4.4) are performed to bring
4694 // them to a common type. If one operand is a null pointer constant,
4695 // the common type is the type of the other operand. Otherwise, the
4696 // common type is a pointer to member type similar (4.4) to the type
4697 // of one of the operands, with a cv-qualification signature (4.4)
4698 // that is the union of the cv-qualification signatures of the operand
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004699 // types.
4700 QualType T = FindCompositePointerType(lex, rex);
4701 if (T.isNull()) {
4702 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4703 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4704 return QualType();
4705 }
Mike Stump11289f42009-09-09 15:08:12 +00004706
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004707 ImpCastExprToType(lex, T);
4708 ImpCastExprToType(rex, T);
4709 return ResultTy;
4710 }
Mike Stump11289f42009-09-09 15:08:12 +00004711
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004712 // Comparison of nullptr_t with itself.
Sebastian Redl576fd422009-05-10 18:38:11 +00004713 if (lType->isNullPtrType() && rType->isNullPtrType())
4714 return ResultTy;
4715 }
Mike Stump11289f42009-09-09 15:08:12 +00004716
Steve Naroff081c7422008-09-04 15:10:53 +00004717 // Handle block pointer types.
Mike Stump1b821b42009-05-07 03:14:14 +00004718 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004719 QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType();
4720 QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004721
Steve Naroff081c7422008-09-04 15:10:53 +00004722 if (!LHSIsNull && !RHSIsNull &&
Eli Friedmana6638ca2009-06-08 05:08:54 +00004723 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattner377d1f82008-11-18 22:52:51 +00004724 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004725 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff081c7422008-09-04 15:10:53 +00004726 }
4727 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregorca63811b2008-11-19 03:25:36 +00004728 return ResultTy;
Steve Naroff081c7422008-09-04 15:10:53 +00004729 }
Steve Naroffe18f94c2008-09-28 01:11:11 +00004730 // Allow block pointers to be compared with null pointer constants.
Mike Stump1b821b42009-05-07 03:14:14 +00004731 if (!isRelational
4732 && ((lType->isBlockPointerType() && rType->isPointerType())
4733 || (lType->isPointerType() && rType->isBlockPointerType()))) {
Steve Naroffe18f94c2008-09-28 01:11:11 +00004734 if (!LHSIsNull && !RHSIsNull) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004735 if (!((rType->isPointerType() && rType->getAs<PointerType>()
Mike Stump1b821b42009-05-07 03:14:14 +00004736 ->getPointeeType()->isVoidType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004737 || (lType->isPointerType() && lType->getAs<PointerType>()
Mike Stump1b821b42009-05-07 03:14:14 +00004738 ->getPointeeType()->isVoidType())))
4739 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
4740 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroffe18f94c2008-09-28 01:11:11 +00004741 }
4742 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregorca63811b2008-11-19 03:25:36 +00004743 return ResultTy;
Steve Naroffe18f94c2008-09-28 01:11:11 +00004744 }
Steve Naroff081c7422008-09-04 15:10:53 +00004745
Steve Naroff7cae42b2009-07-10 23:34:53 +00004746 if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) {
Steve Naroff1d4a9a32008-10-27 10:33:19 +00004747 if (lType->isPointerType() || rType->isPointerType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004748 const PointerType *LPT = lType->getAs<PointerType>();
4749 const PointerType *RPT = rType->getAs<PointerType>();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004750 bool LPtrToVoid = LPT ?
Steve Naroff753567f2008-11-17 19:49:16 +00004751 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004752 bool RPtrToVoid = RPT ?
Steve Naroff753567f2008-11-17 19:49:16 +00004753 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004754
Steve Naroff753567f2008-11-17 19:49:16 +00004755 if (!LPtrToVoid && !RPtrToVoid &&
4756 !Context.typesAreCompatible(lType, rType)) {
Chris Lattner377d1f82008-11-18 22:52:51 +00004757 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004758 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff1d4a9a32008-10-27 10:33:19 +00004759 }
Daniel Dunbar340b5dd2008-10-23 23:30:52 +00004760 ImpCastExprToType(rex, lType);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004761 return ResultTy;
Steve Naroffea54d9e2008-10-20 18:19:10 +00004762 }
Steve Naroff7cae42b2009-07-10 23:34:53 +00004763 if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) {
Chris Lattnerf8344db2009-08-22 18:58:31 +00004764 if (!Context.areComparableObjCPointerTypes(lType, rType))
Steve Naroff7cae42b2009-07-10 23:34:53 +00004765 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4766 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroffb788d9b2008-06-03 14:04:54 +00004767 ImpCastExprToType(rex, lType);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004768 return ResultTy;
Steve Naroffb788d9b2008-06-03 14:04:54 +00004769 }
Fariborz Jahanian134cbef2007-12-20 01:06:58 +00004770 }
Steve Naroff6b712a72009-07-14 18:25:06 +00004771 if (lType->isAnyPointerType() && rType->isIntegerType()) {
Chris Lattnerd99bd522009-08-23 00:03:44 +00004772 unsigned DiagID = 0;
4773 if (RHSIsNull) {
4774 if (isRelational)
4775 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
4776 } else if (isRelational)
4777 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
4778 else
4779 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump11289f42009-09-09 15:08:12 +00004780
Chris Lattnerd99bd522009-08-23 00:03:44 +00004781 if (DiagID) {
Chris Lattnerf8344db2009-08-22 18:58:31 +00004782 Diag(Loc, DiagID)
Chris Lattnerd466ea12009-06-30 06:24:05 +00004783 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerf8344db2009-08-22 18:58:31 +00004784 }
Chris Lattnera65e1f32008-01-16 19:17:22 +00004785 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregorca63811b2008-11-19 03:25:36 +00004786 return ResultTy;
Steve Naroffcdee44c2007-08-16 21:48:38 +00004787 }
Steve Naroff6b712a72009-07-14 18:25:06 +00004788 if (lType->isIntegerType() && rType->isAnyPointerType()) {
Chris Lattnerd99bd522009-08-23 00:03:44 +00004789 unsigned DiagID = 0;
4790 if (LHSIsNull) {
4791 if (isRelational)
4792 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
4793 } else if (isRelational)
4794 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
4795 else
4796 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump11289f42009-09-09 15:08:12 +00004797
Chris Lattnerd99bd522009-08-23 00:03:44 +00004798 if (DiagID) {
Chris Lattnerf8344db2009-08-22 18:58:31 +00004799 Diag(Loc, DiagID)
Chris Lattnerd466ea12009-06-30 06:24:05 +00004800 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerf8344db2009-08-22 18:58:31 +00004801 }
Chris Lattnera65e1f32008-01-16 19:17:22 +00004802 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregorca63811b2008-11-19 03:25:36 +00004803 return ResultTy;
Steve Naroff043d45d2007-05-15 02:32:35 +00004804 }
Steve Naroff4b191572008-09-04 16:56:14 +00004805 // Handle block pointers.
Mike Stumpf70bcf72009-05-07 18:43:07 +00004806 if (!isRelational && RHSIsNull
4807 && lType->isBlockPointerType() && rType->isIntegerType()) {
Steve Naroff4b191572008-09-04 16:56:14 +00004808 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregorca63811b2008-11-19 03:25:36 +00004809 return ResultTy;
Steve Naroff4b191572008-09-04 16:56:14 +00004810 }
Mike Stumpf70bcf72009-05-07 18:43:07 +00004811 if (!isRelational && LHSIsNull
4812 && lType->isIntegerType() && rType->isBlockPointerType()) {
Steve Naroff4b191572008-09-04 16:56:14 +00004813 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregorca63811b2008-11-19 03:25:36 +00004814 return ResultTy;
Steve Naroff4b191572008-09-04 16:56:14 +00004815 }
Chris Lattner326f7572008-11-18 01:30:42 +00004816 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00004817}
4818
Nate Begeman191a6b12008-07-14 18:02:46 +00004819/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stump4e1f26a2009-02-19 03:04:26 +00004820/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begeman191a6b12008-07-14 18:02:46 +00004821/// like a scalar comparison, a vector comparison produces a vector of integer
4822/// types.
4823QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex,
Chris Lattner326f7572008-11-18 01:30:42 +00004824 SourceLocation Loc,
Nate Begeman191a6b12008-07-14 18:02:46 +00004825 bool isRelational) {
4826 // Check to make sure we're operating on vectors of the same type and width,
4827 // Allowing one side to be a scalar of element type.
Chris Lattner326f7572008-11-18 01:30:42 +00004828 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begeman191a6b12008-07-14 18:02:46 +00004829 if (vType.isNull())
4830 return vType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004831
Nate Begeman191a6b12008-07-14 18:02:46 +00004832 QualType lType = lex->getType();
4833 QualType rType = rex->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004834
Nate Begeman191a6b12008-07-14 18:02:46 +00004835 // For non-floating point types, check for self-comparisons of the form
4836 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4837 // often indicate logic errors in the program.
4838 if (!lType->isFloatingType()) {
4839 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
4840 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
4841 if (DRL->getDecl() == DRR->getDecl())
Mike Stump4e1f26a2009-02-19 03:04:26 +00004842 Diag(Loc, diag::warn_selfcomparison);
Nate Begeman191a6b12008-07-14 18:02:46 +00004843 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004844
Nate Begeman191a6b12008-07-14 18:02:46 +00004845 // Check for comparisons of floating point operands using != and ==.
4846 if (!isRelational && lType->isFloatingType()) {
4847 assert (rType->isFloatingType());
Chris Lattner326f7572008-11-18 01:30:42 +00004848 CheckFloatComparison(Loc,lex,rex);
Nate Begeman191a6b12008-07-14 18:02:46 +00004849 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004850
Nate Begeman191a6b12008-07-14 18:02:46 +00004851 // Return the type for the comparison, which is the same as vector type for
4852 // integer vectors, or an integer type of identical size and number of
4853 // elements for floating point vectors.
4854 if (lType->isIntegerType())
4855 return lType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004856
John McCall9dd450b2009-09-21 23:43:11 +00004857 const VectorType *VTy = lType->getAs<VectorType>();
Nate Begeman191a6b12008-07-14 18:02:46 +00004858 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00004859 if (TypeSize == Context.getTypeSize(Context.IntTy))
Nate Begeman191a6b12008-07-14 18:02:46 +00004860 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
Chris Lattner5d688962009-03-31 07:46:52 +00004861 if (TypeSize == Context.getTypeSize(Context.LongTy))
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00004862 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
4863
Mike Stump4e1f26a2009-02-19 03:04:26 +00004864 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00004865 "Unhandled vector element size in vector compare");
Nate Begeman191a6b12008-07-14 18:02:46 +00004866 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
4867}
4868
Steve Naroff218bc2b2007-05-04 21:54:46 +00004869inline QualType Sema::CheckBitwiseOperands(
Mike Stump11289f42009-09-09 15:08:12 +00004870 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Steve Naroff94a5aca2007-07-16 22:23:01 +00004871 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner326f7572008-11-18 01:30:42 +00004872 return CheckVectorOperands(Loc, lex, rex);
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004873
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004874 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004875
Steve Naroffdbd9e892007-07-17 00:58:39 +00004876 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004877 return compType;
Chris Lattner326f7572008-11-18 01:30:42 +00004878 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00004879}
4880
Steve Naroff218bc2b2007-05-04 21:54:46 +00004881inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Mike Stump11289f42009-09-09 15:08:12 +00004882 Expr *&lex, Expr *&rex, SourceLocation Loc) {
Steve Naroff31090012007-07-16 21:54:35 +00004883 UsualUnaryConversions(lex);
4884 UsualUnaryConversions(rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004885
Anders Carlsson35a99d92009-10-16 01:44:21 +00004886 if (!lex->getType()->isScalarType() || !rex->getType()->isScalarType())
4887 return InvalidOperands(Loc, lex, rex);
4888
4889 if (Context.getLangOptions().CPlusPlus) {
4890 // C++ [expr.log.and]p2
4891 // C++ [expr.log.or]p2
4892 return Context.BoolTy;
4893 }
4894
4895 return Context.IntTy;
Steve Naroffae4143e2007-04-26 20:39:23 +00004896}
4897
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00004898/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
4899/// is a read-only property; return true if so. A readonly property expression
4900/// depends on various declarations and thus must be treated specially.
4901///
Mike Stump11289f42009-09-09 15:08:12 +00004902static bool IsReadonlyProperty(Expr *E, Sema &S) {
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00004903 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
4904 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
4905 if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) {
4906 QualType BaseType = PropExpr->getBase()->getType();
Mike Stump11289f42009-09-09 15:08:12 +00004907 if (const ObjCObjectPointerType *OPT =
Steve Naroff7cae42b2009-07-10 23:34:53 +00004908 BaseType->getAsObjCInterfacePointerType())
4909 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
4910 if (S.isPropertyReadonly(PDecl, IFace))
4911 return true;
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00004912 }
4913 }
4914 return false;
4915}
4916
Chris Lattner30bd3272008-11-18 01:22:49 +00004917/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
4918/// emit an error and return true. If so, return false.
4919static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00004920 SourceLocation OrigLoc = Loc;
Mike Stump11289f42009-09-09 15:08:12 +00004921 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00004922 &Loc);
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00004923 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
4924 IsLV = Expr::MLV_ReadonlyProperty;
Chris Lattner30bd3272008-11-18 01:22:49 +00004925 if (IsLV == Expr::MLV_Valid)
4926 return false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004927
Chris Lattner30bd3272008-11-18 01:22:49 +00004928 unsigned Diag = 0;
4929 bool NeedType = false;
4930 switch (IsLV) { // C99 6.5.16p2
4931 default: assert(0 && "Unknown result from isModifiableLvalue!");
4932 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004933 case Expr::MLV_ArrayType:
Chris Lattner30bd3272008-11-18 01:22:49 +00004934 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
4935 NeedType = true;
4936 break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004937 case Expr::MLV_NotObjectType:
Chris Lattner30bd3272008-11-18 01:22:49 +00004938 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
4939 NeedType = true;
4940 break;
Chris Lattner9b3bbe92008-11-17 19:51:54 +00004941 case Expr::MLV_LValueCast:
Chris Lattner30bd3272008-11-18 01:22:49 +00004942 Diag = diag::err_typecheck_lvalue_casts_not_supported;
4943 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00004944 case Expr::MLV_InvalidExpression:
Chris Lattner30bd3272008-11-18 01:22:49 +00004945 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
4946 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00004947 case Expr::MLV_IncompleteType:
4948 case Expr::MLV_IncompleteVoidType:
Douglas Gregored0cfbd2009-03-09 16:13:40 +00004949 return S.RequireCompleteType(Loc, E->getType(),
Anders Carlssond624e162009-08-26 23:45:07 +00004950 PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue)
4951 << E->getSourceRange());
Chris Lattner9bad62c2008-01-04 18:04:52 +00004952 case Expr::MLV_DuplicateVectorComponents:
Chris Lattner30bd3272008-11-18 01:22:49 +00004953 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
4954 break;
Steve Naroffba756cb2008-09-26 14:41:28 +00004955 case Expr::MLV_NotBlockQualified:
Chris Lattner30bd3272008-11-18 01:22:49 +00004956 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
4957 break;
Fariborz Jahanian8a1810f2008-11-22 18:39:36 +00004958 case Expr::MLV_ReadonlyProperty:
4959 Diag = diag::error_readonly_property_assignment;
4960 break;
Fariborz Jahanian5118c412008-11-22 20:25:50 +00004961 case Expr::MLV_NoSetterProperty:
4962 Diag = diag::error_nosetter_property_assignment;
4963 break;
Steve Naroff218bc2b2007-05-04 21:54:46 +00004964 }
Steve Naroffad373bd2007-07-31 12:34:36 +00004965
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00004966 SourceRange Assign;
4967 if (Loc != OrigLoc)
4968 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattner30bd3272008-11-18 01:22:49 +00004969 if (NeedType)
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00004970 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattner30bd3272008-11-18 01:22:49 +00004971 else
Mike Stump11289f42009-09-09 15:08:12 +00004972 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattner30bd3272008-11-18 01:22:49 +00004973 return true;
4974}
4975
4976
4977
4978// C99 6.5.16.1
Chris Lattner326f7572008-11-18 01:30:42 +00004979QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS,
4980 SourceLocation Loc,
4981 QualType CompoundType) {
4982 // Verify that LHS is a modifiable lvalue, and emit error if not.
4983 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattner30bd3272008-11-18 01:22:49 +00004984 return QualType();
Chris Lattner326f7572008-11-18 01:30:42 +00004985
4986 QualType LHSType = LHS->getType();
4987 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004988
Chris Lattner9bad62c2008-01-04 18:04:52 +00004989 AssignConvertType ConvTy;
Chris Lattner326f7572008-11-18 01:30:42 +00004990 if (CompoundType.isNull()) {
Chris Lattnerea714382008-08-21 18:04:13 +00004991 // Simple assignment "x = y".
Chris Lattner326f7572008-11-18 01:30:42 +00004992 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS);
Fariborz Jahanian255c0952009-01-13 23:34:40 +00004993 // Special case of NSObject attributes on c-style pointer types.
4994 if (ConvTy == IncompatiblePointer &&
4995 ((Context.isObjCNSObjectType(LHSType) &&
Steve Naroff79d12152009-07-16 15:41:00 +00004996 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanian255c0952009-01-13 23:34:40 +00004997 (Context.isObjCNSObjectType(RHSType) &&
Steve Naroff79d12152009-07-16 15:41:00 +00004998 LHSType->isObjCObjectPointerType())))
Fariborz Jahanian255c0952009-01-13 23:34:40 +00004999 ConvTy = Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005000
Chris Lattnerea714382008-08-21 18:04:13 +00005001 // If the RHS is a unary plus or minus, check to see if they = and + are
5002 // right next to each other. If so, the user may have typo'd "x =+ 4"
5003 // instead of "x += 4".
Chris Lattner326f7572008-11-18 01:30:42 +00005004 Expr *RHSCheck = RHS;
Chris Lattnerea714382008-08-21 18:04:13 +00005005 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
5006 RHSCheck = ICE->getSubExpr();
5007 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
5008 if ((UO->getOpcode() == UnaryOperator::Plus ||
5009 UO->getOpcode() == UnaryOperator::Minus) &&
Chris Lattner326f7572008-11-18 01:30:42 +00005010 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattnerea714382008-08-21 18:04:13 +00005011 // Only if the two operators are exactly adjacent.
Chris Lattner36c39c92009-03-08 06:51:10 +00005012 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() &&
5013 // And there is a space or other character before the subexpr of the
5014 // unary +/-. We don't want to warn on "x=-1".
Chris Lattnered9f14c2009-03-09 07:11:10 +00005015 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
5016 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattner29e812b2008-11-20 06:06:08 +00005017 Diag(Loc, diag::warn_not_compound_assign)
5018 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-")
5019 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner36c39c92009-03-08 06:51:10 +00005020 }
Chris Lattnerea714382008-08-21 18:04:13 +00005021 }
5022 } else {
5023 // Compound assignment "x += y"
Eli Friedmanb05c41e2009-05-16 05:56:02 +00005024 ConvTy = CheckAssignmentConstraints(LHSType, RHSType);
Chris Lattnerea714382008-08-21 18:04:13 +00005025 }
Chris Lattner9bad62c2008-01-04 18:04:52 +00005026
Chris Lattner326f7572008-11-18 01:30:42 +00005027 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
5028 RHS, "assigning"))
Chris Lattner9bad62c2008-01-04 18:04:52 +00005029 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005030
Steve Naroff98cf3e92007-06-06 18:38:38 +00005031 // C99 6.5.16p3: The type of an assignment expression is the type of the
5032 // left operand unless the left operand has qualified type, in which case
Mike Stump4e1f26a2009-02-19 03:04:26 +00005033 // it is the unqualified version of the type of the left operand.
Steve Naroff98cf3e92007-06-06 18:38:38 +00005034 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
5035 // is converted to the type of the assignment expression (above).
Chris Lattnerf17bd422007-08-30 17:45:32 +00005036 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregord2c2d172009-05-02 00:36:19 +00005037 // operand.
Chris Lattner326f7572008-11-18 01:30:42 +00005038 return LHSType.getUnqualifiedType();
Steve Naroffae4143e2007-04-26 20:39:23 +00005039}
5040
Chris Lattner326f7572008-11-18 01:30:42 +00005041// C99 6.5.17
5042QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) {
Chris Lattnerf6e1e302008-07-25 20:54:07 +00005043 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions.
Chris Lattner326f7572008-11-18 01:30:42 +00005044 DefaultFunctionArrayConversion(RHS);
Eli Friedmanba961a92009-03-23 00:24:07 +00005045
5046 // FIXME: Check that RHS type is complete in C mode (it's legal for it to be
5047 // incomplete in C++).
5048
Chris Lattner326f7572008-11-18 01:30:42 +00005049 return RHS->getType();
Steve Naroff95af0132007-03-30 23:47:58 +00005050}
5051
Steve Naroff7a5af782007-07-13 16:58:59 +00005052/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
5053/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Sebastian Redle10c2c32008-12-20 09:35:34 +00005054QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc,
5055 bool isInc) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005056 if (Op->isTypeDependent())
5057 return Context.DependentTy;
5058
Chris Lattner6b0cf142008-11-21 07:05:48 +00005059 QualType ResType = Op->getType();
5060 assert(!ResType.isNull() && "no type for increment/decrement expression");
Steve Naroffd50c88e2007-04-05 21:15:20 +00005061
Sebastian Redle10c2c32008-12-20 09:35:34 +00005062 if (getLangOptions().CPlusPlus && ResType->isBooleanType()) {
5063 // Decrement of bool is not allowed.
5064 if (!isInc) {
5065 Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
5066 return QualType();
5067 }
5068 // Increment of bool sets it to true, but is deprecated.
5069 Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
5070 } else if (ResType->isRealType()) {
Chris Lattner6b0cf142008-11-21 07:05:48 +00005071 // OK!
Steve Naroff6b712a72009-07-14 18:25:06 +00005072 } else if (ResType->isAnyPointerType()) {
5073 QualType PointeeTy = ResType->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00005074
Chris Lattner6b0cf142008-11-21 07:05:48 +00005075 // C99 6.5.2.4p2, 6.5.6p2
Steve Naroff7cae42b2009-07-10 23:34:53 +00005076 if (PointeeTy->isVoidType()) {
Douglas Gregorf6cd9282009-01-23 00:36:41 +00005077 if (getLangOptions().CPlusPlus) {
5078 Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type)
5079 << Op->getSourceRange();
5080 return QualType();
5081 }
5082
5083 // Pointer to void is a GNU extension in C.
Chris Lattner6b0cf142008-11-21 07:05:48 +00005084 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
Steve Naroff7cae42b2009-07-10 23:34:53 +00005085 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorf6cd9282009-01-23 00:36:41 +00005086 if (getLangOptions().CPlusPlus) {
5087 Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type)
5088 << Op->getType() << Op->getSourceRange();
5089 return QualType();
5090 }
5091
5092 Diag(OpLoc, diag::ext_gnu_ptr_func_arith)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005093 << ResType << Op->getSourceRange();
Steve Naroff7cae42b2009-07-10 23:34:53 +00005094 } else if (RequireCompleteType(OpLoc, PointeeTy,
Anders Carlsson029fc692009-08-26 22:59:12 +00005095 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
Mike Stump11289f42009-09-09 15:08:12 +00005096 << Op->getSourceRange()
Anders Carlsson029fc692009-08-26 22:59:12 +00005097 << ResType))
Douglas Gregordd430f72009-01-19 19:26:10 +00005098 return QualType();
Fariborz Jahanianca75db72009-07-16 17:59:14 +00005099 // Diagnose bad cases where we step over interface counts.
5100 else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
5101 Diag(OpLoc, diag::err_arithmetic_nonfragile_interface)
5102 << PointeeTy << Op->getSourceRange();
5103 return QualType();
5104 }
Chris Lattner6b0cf142008-11-21 07:05:48 +00005105 } else if (ResType->isComplexType()) {
5106 // C99 does not support ++/-- on complex types, we allow as an extension.
5107 Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005108 << ResType << Op->getSourceRange();
Chris Lattner6b0cf142008-11-21 07:05:48 +00005109 } else {
5110 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005111 << ResType << Op->getSourceRange();
Chris Lattner6b0cf142008-11-21 07:05:48 +00005112 return QualType();
Steve Naroff46ba1eb2007-04-03 23:13:13 +00005113 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005114 // At this point, we know we have a real, complex or pointer type.
Steve Naroff9e1e5512007-08-23 21:37:33 +00005115 // Now make sure the operand is a modifiable lvalue.
Chris Lattner6b0cf142008-11-21 07:05:48 +00005116 if (CheckForModifiableLvalue(Op, OpLoc, *this))
Steve Naroff35d85152007-05-07 00:24:15 +00005117 return QualType();
Chris Lattner6b0cf142008-11-21 07:05:48 +00005118 return ResType;
Steve Naroff26c8ea52007-03-21 21:08:52 +00005119}
5120
Anders Carlsson806700f2008-02-01 07:15:58 +00005121/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Steve Naroff47500512007-04-19 23:00:49 +00005122/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005123/// where the declaration is needed for type checking. We only need to
5124/// handle cases when the expression references a function designator
5125/// or is an lvalue. Here are some examples:
5126/// - &(x) => x
5127/// - &*****f => f for f a function designator.
5128/// - &s.xx => s
5129/// - &s.zz[1].yy -> s, if zz is an array
5130/// - *(x + 1) -> x, if x is an array
5131/// - &"123"[2] -> 0
5132/// - & __real__ x -> x
Douglas Gregor5251f1b2008-10-21 16:13:35 +00005133static NamedDecl *getPrimaryDecl(Expr *E) {
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005134 switch (E->getStmtClass()) {
Steve Naroff47500512007-04-19 23:00:49 +00005135 case Stmt::DeclRefExprClass:
Douglas Gregorc7acfdf2009-01-06 05:10:23 +00005136 case Stmt::QualifiedDeclRefExprClass:
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005137 return cast<DeclRefExpr>(E)->getDecl();
Steve Naroff47500512007-04-19 23:00:49 +00005138 case Stmt::MemberExprClass:
Eli Friedman3a1e6922009-04-20 08:23:18 +00005139 // If this is an arrow operator, the address is an offset from
5140 // the base's value, so the object the base refers to is
5141 // irrelevant.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005142 if (cast<MemberExpr>(E)->isArrow())
Chris Lattner48d52842007-11-16 17:46:48 +00005143 return 0;
Eli Friedman3a1e6922009-04-20 08:23:18 +00005144 // Otherwise, the expression refers to a part of the base
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005145 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson806700f2008-02-01 07:15:58 +00005146 case Stmt::ArraySubscriptExprClass: {
Mike Stump87c57ac2009-05-16 07:39:55 +00005147 // FIXME: This code shouldn't be necessary! We should catch the implicit
5148 // promotion of register arrays earlier.
Eli Friedman3a1e6922009-04-20 08:23:18 +00005149 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
5150 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
5151 if (ICE->getSubExpr()->getType()->isArrayType())
5152 return getPrimaryDecl(ICE->getSubExpr());
5153 }
5154 return 0;
Anders Carlsson806700f2008-02-01 07:15:58 +00005155 }
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005156 case Stmt::UnaryOperatorClass: {
5157 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005158
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005159 switch(UO->getOpcode()) {
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005160 case UnaryOperator::Real:
5161 case UnaryOperator::Imag:
5162 case UnaryOperator::Extension:
5163 return getPrimaryDecl(UO->getSubExpr());
5164 default:
5165 return 0;
5166 }
5167 }
Steve Naroff47500512007-04-19 23:00:49 +00005168 case Stmt::ParenExprClass:
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005169 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner48d52842007-11-16 17:46:48 +00005170 case Stmt::ImplicitCastExprClass:
Eli Friedman3a1e6922009-04-20 08:23:18 +00005171 // If the result of an implicit cast is an l-value, we care about
5172 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005173 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Steve Naroff47500512007-04-19 23:00:49 +00005174 default:
5175 return 0;
5176 }
5177}
5178
5179/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stump4e1f26a2009-02-19 03:04:26 +00005180/// designator or an lvalue designating an object. If it is an lvalue, the
Steve Naroff47500512007-04-19 23:00:49 +00005181/// object cannot be declared with storage class register or be a bit field.
Mike Stump4e1f26a2009-02-19 03:04:26 +00005182/// Note: The usual conversions are *not* applied to the operand of the &
Steve Naroffa78fe7e2007-05-16 19:47:19 +00005183/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stump4e1f26a2009-02-19 03:04:26 +00005184/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregorcd695e52008-11-10 20:40:00 +00005185/// we allow the '&' but retain the overloaded-function type.
Steve Naroff35d85152007-05-07 00:24:15 +00005186QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Eli Friedman3a1e6922009-04-20 08:23:18 +00005187 // Make sure to ignore parentheses in subsequent checks
5188 op = op->IgnoreParens();
5189
Douglas Gregor19b8c4f2008-12-17 22:52:20 +00005190 if (op->isTypeDependent())
5191 return Context.DependentTy;
5192
Steve Naroff826e91a2008-01-13 17:10:08 +00005193 if (getLangOptions().C99) {
5194 // Implement C99-only parts of addressof rules.
5195 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
5196 if (uOp->getOpcode() == UnaryOperator::Deref)
5197 // Per C99 6.5.3.2, the address of a deref always returns a valid result
5198 // (assuming the deref expression is valid).
5199 return uOp->getSubExpr()->getType();
5200 }
5201 // Technically, there should be a check for array subscript
5202 // expressions here, but the result of one is always an lvalue anyway.
5203 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +00005204 NamedDecl *dcl = getPrimaryDecl(op);
Chris Lattner67315442008-07-26 21:30:36 +00005205 Expr::isLvalueResult lval = op->isLvalue(Context);
Nuno Lopes17f345f2008-12-16 22:59:47 +00005206
Eli Friedmance7f9002009-05-16 23:27:50 +00005207 if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
5208 // C99 6.5.3.2p1
Eli Friedman3a1e6922009-04-20 08:23:18 +00005209 // The operand must be either an l-value or a function designator
Eli Friedmance7f9002009-05-16 23:27:50 +00005210 if (!op->getType()->isFunctionType()) {
Chris Lattner48d52842007-11-16 17:46:48 +00005211 // FIXME: emit more specific diag...
Chris Lattnerf490e152008-11-19 05:27:50 +00005212 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
5213 << op->getSourceRange();
Steve Naroff35d85152007-05-07 00:24:15 +00005214 return QualType();
5215 }
Douglas Gregor71235ec2009-05-02 02:18:30 +00005216 } else if (op->getBitField()) { // C99 6.5.3.2p1
Eli Friedman3a1e6922009-04-20 08:23:18 +00005217 // The operand cannot be a bit-field
5218 Diag(OpLoc, diag::err_typecheck_address_of)
5219 << "bit-field" << op->getSourceRange();
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00005220 return QualType();
Nate Begemana6b47a42009-02-15 22:45:20 +00005221 } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) &&
5222 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){
Eli Friedman3a1e6922009-04-20 08:23:18 +00005223 // The operand cannot be an element of a vector
Chris Lattner29e812b2008-11-20 06:06:08 +00005224 Diag(OpLoc, diag::err_typecheck_address_of)
Nate Begemana6b47a42009-02-15 22:45:20 +00005225 << "vector element" << op->getSourceRange();
Steve Naroffb96e4ab62008-02-29 23:30:25 +00005226 return QualType();
Fariborz Jahanian385db802009-07-07 18:50:52 +00005227 } else if (isa<ObjCPropertyRefExpr>(op)) {
5228 // cannot take address of a property expression.
5229 Diag(OpLoc, diag::err_typecheck_address_of)
5230 << "property expression" << op->getSourceRange();
5231 return QualType();
Anders Carlsson3fa58d12009-09-14 23:15:26 +00005232 } else if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(op)) {
5233 // FIXME: Can LHS ever be null here?
Anders Carlsson01ccf992009-09-15 16:03:44 +00005234 if (!CheckAddressOfOperand(CO->getTrueExpr(), OpLoc).isNull())
5235 return CheckAddressOfOperand(CO->getFalseExpr(), OpLoc);
Steve Naroffb96e4ab62008-02-29 23:30:25 +00005236 } else if (dcl) { // C99 6.5.3.2p1
Mike Stump4e1f26a2009-02-19 03:04:26 +00005237 // We have an lvalue with a decl. Make sure the decl is not declared
Steve Naroff47500512007-04-19 23:00:49 +00005238 // with the register storage-class specifier.
5239 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
Steve Naroff35d85152007-05-07 00:24:15 +00005240 if (vd->getStorageClass() == VarDecl::Register) {
Chris Lattner29e812b2008-11-20 06:06:08 +00005241 Diag(OpLoc, diag::err_typecheck_address_of)
5242 << "register variable" << op->getSourceRange();
Steve Naroff35d85152007-05-07 00:24:15 +00005243 return QualType();
5244 }
Douglas Gregor9b146582009-07-08 20:55:45 +00005245 } else if (isa<OverloadedFunctionDecl>(dcl) ||
5246 isa<FunctionTemplateDecl>(dcl)) {
Douglas Gregorcd695e52008-11-10 20:40:00 +00005247 return Context.OverloadTy;
Anders Carlsson0b675f52009-07-08 21:45:58 +00005248 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) {
Douglas Gregor9aa8b552008-12-10 21:26:49 +00005249 // Okay: we can take the address of a field.
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005250 // Could be a pointer to member, though, if there is an explicit
5251 // scope qualifier for the class.
5252 if (isa<QualifiedDeclRefExpr>(op)) {
5253 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlsson0b675f52009-07-08 21:45:58 +00005254 if (Ctx && Ctx->isRecord()) {
5255 if (FD->getType()->isReferenceType()) {
Mike Stump11289f42009-09-09 15:08:12 +00005256 Diag(OpLoc,
Anders Carlsson0b675f52009-07-08 21:45:58 +00005257 diag::err_cannot_form_pointer_to_member_of_reference_type)
5258 << FD->getDeclName() << FD->getType();
5259 return QualType();
5260 }
Mike Stump11289f42009-09-09 15:08:12 +00005261
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005262 return Context.getMemberPointerType(op->getType(),
5263 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
Anders Carlsson0b675f52009-07-08 21:45:58 +00005264 }
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005265 }
Anders Carlsson5b535762009-05-16 21:43:42 +00005266 } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) {
Nuno Lopes5773a1b2008-12-16 22:58:26 +00005267 // Okay: we can take the address of a function.
Sebastian Redl18f8ff62009-02-04 21:23:32 +00005268 // As above.
Anders Carlsson5b535762009-05-16 21:43:42 +00005269 if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance())
5270 return Context.getMemberPointerType(op->getType(),
5271 Context.getTypeDeclType(MD->getParent()).getTypePtr());
5272 } else if (!isa<FunctionDecl>(dcl))
Steve Narofff633d092007-04-25 19:01:39 +00005273 assert(0 && "Unknown/unexpected decl type");
Steve Naroff47500512007-04-19 23:00:49 +00005274 }
Sebastian Redl18f8ff62009-02-04 21:23:32 +00005275
Eli Friedmance7f9002009-05-16 23:27:50 +00005276 if (lval == Expr::LV_IncompleteVoidType) {
5277 // Taking the address of a void variable is technically illegal, but we
5278 // allow it in cases which are otherwise valid.
5279 // Example: "extern void x; void* y = &x;".
5280 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
5281 }
5282
Steve Naroff47500512007-04-19 23:00:49 +00005283 // If the operand has type "type", the result has type "pointer to type".
Steve Naroff35d85152007-05-07 00:24:15 +00005284 return Context.getPointerType(op->getType());
Steve Naroff47500512007-04-19 23:00:49 +00005285}
5286
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005287QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005288 if (Op->isTypeDependent())
5289 return Context.DependentTy;
5290
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005291 UsualUnaryConversions(Op);
5292 QualType Ty = Op->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005293
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005294 // Note that per both C89 and C99, this is always legal, even if ptype is an
5295 // incomplete type or void. It would be possible to warn about dereferencing
5296 // a void pointer, but it's completely well-defined, and such a warning is
5297 // unlikely to catch any mistakes.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005298 if (const PointerType *PT = Ty->getAs<PointerType>())
Steve Naroff826e91a2008-01-13 17:10:08 +00005299 return PT->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005300
John McCall9dd450b2009-09-21 23:43:11 +00005301 if (const ObjCObjectPointerType *OPT = Ty->getAs<ObjCObjectPointerType>())
Fariborz Jahanianf15d4b62009-09-03 00:43:07 +00005302 return OPT->getPointeeType();
Steve Naroff7cae42b2009-07-10 23:34:53 +00005303
Chris Lattner29e812b2008-11-20 06:06:08 +00005304 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005305 << Ty << Op->getSourceRange();
Steve Naroff35d85152007-05-07 00:24:15 +00005306 return QualType();
Steve Naroff1926c832007-04-24 00:23:05 +00005307}
Steve Naroff218bc2b2007-05-04 21:54:46 +00005308
5309static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
5310 tok::TokenKind Kind) {
5311 BinaryOperator::Opcode Opc;
5312 switch (Kind) {
5313 default: assert(0 && "Unknown binop!");
Sebastian Redl112a97662009-02-07 00:15:38 +00005314 case tok::periodstar: Opc = BinaryOperator::PtrMemD; break;
5315 case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break;
Steve Naroff218bc2b2007-05-04 21:54:46 +00005316 case tok::star: Opc = BinaryOperator::Mul; break;
5317 case tok::slash: Opc = BinaryOperator::Div; break;
5318 case tok::percent: Opc = BinaryOperator::Rem; break;
5319 case tok::plus: Opc = BinaryOperator::Add; break;
5320 case tok::minus: Opc = BinaryOperator::Sub; break;
5321 case tok::lessless: Opc = BinaryOperator::Shl; break;
5322 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
5323 case tok::lessequal: Opc = BinaryOperator::LE; break;
5324 case tok::less: Opc = BinaryOperator::LT; break;
5325 case tok::greaterequal: Opc = BinaryOperator::GE; break;
5326 case tok::greater: Opc = BinaryOperator::GT; break;
5327 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
5328 case tok::equalequal: Opc = BinaryOperator::EQ; break;
5329 case tok::amp: Opc = BinaryOperator::And; break;
5330 case tok::caret: Opc = BinaryOperator::Xor; break;
5331 case tok::pipe: Opc = BinaryOperator::Or; break;
5332 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
5333 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
5334 case tok::equal: Opc = BinaryOperator::Assign; break;
5335 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
5336 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
5337 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
5338 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
5339 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
5340 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
5341 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
5342 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
5343 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
5344 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
5345 case tok::comma: Opc = BinaryOperator::Comma; break;
5346 }
5347 return Opc;
5348}
5349
Steve Naroff35d85152007-05-07 00:24:15 +00005350static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
5351 tok::TokenKind Kind) {
5352 UnaryOperator::Opcode Opc;
5353 switch (Kind) {
5354 default: assert(0 && "Unknown unary op!");
5355 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
5356 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
5357 case tok::amp: Opc = UnaryOperator::AddrOf; break;
5358 case tok::star: Opc = UnaryOperator::Deref; break;
5359 case tok::plus: Opc = UnaryOperator::Plus; break;
5360 case tok::minus: Opc = UnaryOperator::Minus; break;
5361 case tok::tilde: Opc = UnaryOperator::Not; break;
5362 case tok::exclaim: Opc = UnaryOperator::LNot; break;
Steve Naroff35d85152007-05-07 00:24:15 +00005363 case tok::kw___real: Opc = UnaryOperator::Real; break;
5364 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
Chris Lattnerd0f76512007-06-08 22:16:53 +00005365 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
Steve Naroff35d85152007-05-07 00:24:15 +00005366 }
5367 return Opc;
5368}
5369
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005370/// CreateBuiltinBinOp - Creates a new built-in binary operation with
5371/// operator @p Opc at location @c TokLoc. This routine only supports
5372/// built-in operations; ActOnBinOp handles overloaded operators.
Sebastian Redlb5d49352009-01-19 22:31:54 +00005373Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
5374 unsigned Op,
5375 Expr *lhs, Expr *rhs) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005376 QualType ResultTy; // Result type of the binary operator.
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005377 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005378 // The following two variables are used for compound assignment operators
5379 QualType CompLHSTy; // Type of LHS after promotions for computation
5380 QualType CompResultTy; // Type of computation result
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005381
5382 switch (Opc) {
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005383 case BinaryOperator::Assign:
5384 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType());
5385 break;
Sebastian Redl112a97662009-02-07 00:15:38 +00005386 case BinaryOperator::PtrMemD:
5387 case BinaryOperator::PtrMemI:
5388 ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc,
5389 Opc == BinaryOperator::PtrMemI);
5390 break;
5391 case BinaryOperator::Mul:
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005392 case BinaryOperator::Div:
5393 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc);
5394 break;
5395 case BinaryOperator::Rem:
5396 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
5397 break;
5398 case BinaryOperator::Add:
5399 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
5400 break;
5401 case BinaryOperator::Sub:
5402 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
5403 break;
Sebastian Redl112a97662009-02-07 00:15:38 +00005404 case BinaryOperator::Shl:
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005405 case BinaryOperator::Shr:
5406 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc);
5407 break;
5408 case BinaryOperator::LE:
5409 case BinaryOperator::LT:
5410 case BinaryOperator::GE:
5411 case BinaryOperator::GT:
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005412 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005413 break;
5414 case BinaryOperator::EQ:
5415 case BinaryOperator::NE:
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005416 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005417 break;
5418 case BinaryOperator::And:
5419 case BinaryOperator::Xor:
5420 case BinaryOperator::Or:
5421 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
5422 break;
5423 case BinaryOperator::LAnd:
5424 case BinaryOperator::LOr:
5425 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc);
5426 break;
5427 case BinaryOperator::MulAssign:
5428 case BinaryOperator::DivAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005429 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true);
5430 CompLHSTy = CompResultTy;
5431 if (!CompResultTy.isNull())
5432 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005433 break;
5434 case BinaryOperator::RemAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005435 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
5436 CompLHSTy = CompResultTy;
5437 if (!CompResultTy.isNull())
5438 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005439 break;
5440 case BinaryOperator::AddAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005441 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy);
5442 if (!CompResultTy.isNull())
5443 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005444 break;
5445 case BinaryOperator::SubAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005446 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy);
5447 if (!CompResultTy.isNull())
5448 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005449 break;
5450 case BinaryOperator::ShlAssign:
5451 case BinaryOperator::ShrAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005452 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true);
5453 CompLHSTy = CompResultTy;
5454 if (!CompResultTy.isNull())
5455 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005456 break;
5457 case BinaryOperator::AndAssign:
5458 case BinaryOperator::XorAssign:
5459 case BinaryOperator::OrAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005460 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
5461 CompLHSTy = CompResultTy;
5462 if (!CompResultTy.isNull())
5463 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005464 break;
5465 case BinaryOperator::Comma:
5466 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc);
5467 break;
5468 }
5469 if (ResultTy.isNull())
Sebastian Redlb5d49352009-01-19 22:31:54 +00005470 return ExprError();
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005471 if (CompResultTy.isNull())
Steve Narofff6009ed2009-01-21 00:14:39 +00005472 return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc));
5473 else
5474 return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy,
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005475 CompLHSTy, CompResultTy,
5476 OpLoc));
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005477}
5478
Steve Naroff218bc2b2007-05-04 21:54:46 +00005479// Binary Operators. 'Tok' is the token for the operator.
Sebastian Redlb5d49352009-01-19 22:31:54 +00005480Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
5481 tok::TokenKind Kind,
5482 ExprArg LHS, ExprArg RHS) {
Steve Naroff218bc2b2007-05-04 21:54:46 +00005483 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
Anders Carlssonb781bcd2009-05-01 19:49:17 +00005484 Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>();
Steve Naroff218bc2b2007-05-04 21:54:46 +00005485
Steve Naroff83895f72007-09-16 03:34:24 +00005486 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
5487 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Steve Naroff218bc2b2007-05-04 21:54:46 +00005488
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005489 if (getLangOptions().CPlusPlus &&
Mike Stump11289f42009-09-09 15:08:12 +00005490 (lhs->getType()->isOverloadableType() ||
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005491 rhs->getType()->isOverloadableType())) {
5492 // Find all of the overloaded operators visible from this
5493 // point. We perform both an operator-name lookup from the local
5494 // scope and an argument-dependent lookup based on the types of
5495 // the arguments.
Douglas Gregord2b7ef62009-03-13 00:33:25 +00005496 FunctionSet Functions;
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005497 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc);
5498 if (OverOp != OO_None) {
5499 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(),
5500 Functions);
5501 Expr *Args[2] = { lhs, rhs };
Mike Stump11289f42009-09-09 15:08:12 +00005502 DeclarationName OpName
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005503 = Context.DeclarationNames.getCXXOperatorName(OverOp);
5504 ArgumentDependentLookup(OpName, Args, 2, Functions);
Douglas Gregora11693b2008-11-12 17:17:38 +00005505 }
Sebastian Redlb5d49352009-01-19 22:31:54 +00005506
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005507 // Build the (potentially-overloaded, potentially-dependent)
5508 // binary operation.
5509 return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs);
Sebastian Redlb5d49352009-01-19 22:31:54 +00005510 }
5511
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005512 // Build a built-in binary operation.
5513 return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs);
Steve Naroff218bc2b2007-05-04 21:54:46 +00005514}
5515
Douglas Gregor084d8552009-03-13 23:49:33 +00005516Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
Mike Stump11289f42009-09-09 15:08:12 +00005517 unsigned OpcIn,
Douglas Gregor084d8552009-03-13 23:49:33 +00005518 ExprArg InputArg) {
5519 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
Douglas Gregord08452f2008-11-19 15:42:04 +00005520
Mike Stump87c57ac2009-05-16 07:39:55 +00005521 // FIXME: Input is modified below, but InputArg is not updated appropriately.
Douglas Gregor084d8552009-03-13 23:49:33 +00005522 Expr *Input = (Expr *)InputArg.get();
Steve Naroff35d85152007-05-07 00:24:15 +00005523 QualType resultType;
5524 switch (Opc) {
Douglas Gregor084d8552009-03-13 23:49:33 +00005525 case UnaryOperator::OffsetOf:
5526 assert(false && "Invalid unary operator");
5527 break;
5528
Steve Naroff35d85152007-05-07 00:24:15 +00005529 case UnaryOperator::PreInc:
5530 case UnaryOperator::PreDec:
Eli Friedman6aea5752009-07-22 22:25:00 +00005531 case UnaryOperator::PostInc:
5532 case UnaryOperator::PostDec:
Sebastian Redle10c2c32008-12-20 09:35:34 +00005533 resultType = CheckIncrementDecrementOperand(Input, OpLoc,
Eli Friedman6aea5752009-07-22 22:25:00 +00005534 Opc == UnaryOperator::PreInc ||
5535 Opc == UnaryOperator::PostInc);
Steve Naroff35d85152007-05-07 00:24:15 +00005536 break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005537 case UnaryOperator::AddrOf:
Chris Lattner86554282007-06-08 22:32:33 +00005538 resultType = CheckAddressOfOperand(Input, OpLoc);
Steve Naroff35d85152007-05-07 00:24:15 +00005539 break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005540 case UnaryOperator::Deref:
Steve Naroffb7235642007-12-18 04:06:57 +00005541 DefaultFunctionArrayConversion(Input);
Chris Lattner86554282007-06-08 22:32:33 +00005542 resultType = CheckIndirectionOperand(Input, OpLoc);
Steve Naroff35d85152007-05-07 00:24:15 +00005543 break;
5544 case UnaryOperator::Plus:
5545 case UnaryOperator::Minus:
Steve Naroff31090012007-07-16 21:54:35 +00005546 UsualUnaryConversions(Input);
5547 resultType = Input->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005548 if (resultType->isDependentType())
5549 break;
Douglas Gregord08452f2008-11-19 15:42:04 +00005550 if (resultType->isArithmeticType()) // C99 6.5.3.3p1
5551 break;
5552 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
5553 resultType->isEnumeralType())
5554 break;
5555 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
5556 Opc == UnaryOperator::Plus &&
5557 resultType->isPointerType())
5558 break;
5559
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005560 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5561 << resultType << Input->getSourceRange());
Steve Naroff35d85152007-05-07 00:24:15 +00005562 case UnaryOperator::Not: // bitwise complement
Steve Naroff31090012007-07-16 21:54:35 +00005563 UsualUnaryConversions(Input);
5564 resultType = Input->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005565 if (resultType->isDependentType())
5566 break;
Chris Lattner0d707612008-07-25 23:52:49 +00005567 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
5568 if (resultType->isComplexType() || resultType->isComplexIntegerType())
5569 // C99 does not support '~' for complex conjugation.
Chris Lattner29e812b2008-11-20 06:06:08 +00005570 Diag(OpLoc, diag::ext_integer_complement_complex)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005571 << resultType << Input->getSourceRange();
Chris Lattner0d707612008-07-25 23:52:49 +00005572 else if (!resultType->isIntegerType())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005573 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5574 << resultType << Input->getSourceRange());
Steve Naroff35d85152007-05-07 00:24:15 +00005575 break;
5576 case UnaryOperator::LNot: // logical negation
Steve Naroff71b59a92007-06-04 22:22:31 +00005577 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroff31090012007-07-16 21:54:35 +00005578 DefaultFunctionArrayConversion(Input);
5579 resultType = Input->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005580 if (resultType->isDependentType())
5581 break;
Steve Naroff35d85152007-05-07 00:24:15 +00005582 if (!resultType->isScalarType()) // C99 6.5.3.3p1
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005583 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5584 << resultType << Input->getSourceRange());
Chris Lattnerbe31ed82007-06-02 19:11:33 +00005585 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005586 // In C++, it's bool. C++ 5.3.1p8
5587 resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy;
Steve Naroff35d85152007-05-07 00:24:15 +00005588 break;
Chris Lattner30b5dd02007-08-24 21:16:53 +00005589 case UnaryOperator::Real:
Chris Lattner30b5dd02007-08-24 21:16:53 +00005590 case UnaryOperator::Imag:
Chris Lattner709322b2009-02-17 08:12:06 +00005591 resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real);
Chris Lattner30b5dd02007-08-24 21:16:53 +00005592 break;
Chris Lattner86554282007-06-08 22:32:33 +00005593 case UnaryOperator::Extension:
Chris Lattner86554282007-06-08 22:32:33 +00005594 resultType = Input->getType();
Steve Naroff043d45d2007-05-15 02:32:35 +00005595 break;
Steve Naroff35d85152007-05-07 00:24:15 +00005596 }
5597 if (resultType.isNull())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005598 return ExprError();
Douglas Gregor084d8552009-03-13 23:49:33 +00005599
5600 InputArg.release();
Steve Narofff6009ed2009-01-21 00:14:39 +00005601 return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc));
Steve Naroff35d85152007-05-07 00:24:15 +00005602}
Chris Lattnereefa10e2007-05-28 06:56:27 +00005603
Douglas Gregor084d8552009-03-13 23:49:33 +00005604// Unary Operators. 'Tok' is the token for the operator.
5605Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
5606 tok::TokenKind Op, ExprArg input) {
5607 Expr *Input = (Expr*)input.get();
5608 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
5609
5610 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) {
5611 // Find all of the overloaded operators visible from this
5612 // point. We perform both an operator-name lookup from the local
5613 // scope and an argument-dependent lookup based on the types of
5614 // the arguments.
5615 FunctionSet Functions;
5616 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
5617 if (OverOp != OO_None) {
5618 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
5619 Functions);
Mike Stump11289f42009-09-09 15:08:12 +00005620 DeclarationName OpName
Douglas Gregor084d8552009-03-13 23:49:33 +00005621 = Context.DeclarationNames.getCXXOperatorName(OverOp);
5622 ArgumentDependentLookup(OpName, &Input, 1, Functions);
5623 }
5624
5625 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input));
5626 }
5627
5628 return CreateBuiltinUnaryOp(OpLoc, Opc, move(input));
5629}
5630
Steve Naroff66356bd2007-09-16 14:56:35 +00005631/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005632Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
5633 SourceLocation LabLoc,
5634 IdentifierInfo *LabelII) {
Chris Lattnereefa10e2007-05-28 06:56:27 +00005635 // Look up the record for this label identifier.
Chris Lattner3318e862009-04-18 20:01:55 +00005636 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Mike Stump4e1f26a2009-02-19 03:04:26 +00005637
Daniel Dunbar88402ce2008-08-04 16:51:22 +00005638 // If we haven't seen this label yet, create a forward reference. It
5639 // will be validated and/or cleaned up in ActOnFinishFunctionBody.
Steve Naroff846b1ec2009-03-13 15:38:40 +00005640 if (LabelDecl == 0)
Steve Narofff6009ed2009-01-21 00:14:39 +00005641 LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005642
Chris Lattnereefa10e2007-05-28 06:56:27 +00005643 // Create the AST node. The address of a label always has type 'void*'.
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005644 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
5645 Context.getPointerType(Context.VoidTy)));
Chris Lattnereefa10e2007-05-28 06:56:27 +00005646}
5647
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005648Sema::OwningExprResult
5649Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt,
5650 SourceLocation RPLoc) { // "({..})"
5651 Stmt *SubStmt = static_cast<Stmt*>(substmt.get());
Chris Lattner366727f2007-07-24 16:58:17 +00005652 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
5653 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
5654
Eli Friedman52cc0162009-01-24 23:09:00 +00005655 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Chris Lattnera69b0762009-04-25 19:11:05 +00005656 if (isFileScope)
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005657 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedman52cc0162009-01-24 23:09:00 +00005658
Chris Lattner366727f2007-07-24 16:58:17 +00005659 // FIXME: there are a variety of strange constraints to enforce here, for
5660 // example, it is not possible to goto into a stmt expression apparently.
5661 // More semantic analysis is needed.
Mike Stump4e1f26a2009-02-19 03:04:26 +00005662
Chris Lattner366727f2007-07-24 16:58:17 +00005663 // If there are sub stmts in the compound stmt, take the type of the last one
5664 // as the type of the stmtexpr.
5665 QualType Ty = Context.VoidTy;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005666
Chris Lattner944d3062008-07-26 19:51:01 +00005667 if (!Compound->body_empty()) {
5668 Stmt *LastStmt = Compound->body_back();
5669 // If LastStmt is a label, skip down through into the body.
5670 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt))
5671 LastStmt = Label->getSubStmt();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005672
Chris Lattner944d3062008-07-26 19:51:01 +00005673 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt))
Chris Lattner366727f2007-07-24 16:58:17 +00005674 Ty = LastExpr->getType();
Chris Lattner944d3062008-07-26 19:51:01 +00005675 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005676
Eli Friedmanba961a92009-03-23 00:24:07 +00005677 // FIXME: Check that expression type is complete/non-abstract; statement
5678 // expressions are not lvalues.
5679
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005680 substmt.release();
5681 return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc));
Chris Lattner366727f2007-07-24 16:58:17 +00005682}
Steve Naroff78864672007-08-01 22:05:33 +00005683
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005684Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
5685 SourceLocation BuiltinLoc,
5686 SourceLocation TypeLoc,
5687 TypeTy *argty,
5688 OffsetOfComponent *CompPtr,
5689 unsigned NumComponents,
5690 SourceLocation RPLoc) {
5691 // FIXME: This function leaks all expressions in the offset components on
5692 // error.
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00005693 // FIXME: Preserve type source info.
5694 QualType ArgTy = GetTypeFromParser(argty);
Chris Lattnerf17bd422007-08-30 17:45:32 +00005695 assert(!ArgTy.isNull() && "Missing type argument!");
Mike Stump4e1f26a2009-02-19 03:04:26 +00005696
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005697 bool Dependent = ArgTy->isDependentType();
5698
Chris Lattnerf17bd422007-08-30 17:45:32 +00005699 // We must have at least one component that refers to the type, and the first
5700 // one is known to be a field designator. Verify that the ArgTy represents
5701 // a struct/union/class.
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005702 if (!Dependent && !ArgTy->isRecordType())
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005703 return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005704
Eli Friedmanba961a92009-03-23 00:24:07 +00005705 // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable
5706 // with an incomplete type would be illegal.
Douglas Gregor26897462009-03-11 16:48:53 +00005707
Eli Friedman988a16b2009-02-27 06:44:11 +00005708 // Otherwise, create a null pointer as the base, and iteratively process
5709 // the offsetof designators.
5710 QualType ArgTyPtr = Context.getPointerType(ArgTy);
5711 Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005712 Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref,
Eli Friedman988a16b2009-02-27 06:44:11 +00005713 ArgTy, SourceLocation());
Eli Friedman16c88df2009-01-26 01:33:06 +00005714
Chris Lattner78502cf2007-08-31 21:49:13 +00005715 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
5716 // GCC extension, diagnose them.
Eli Friedman988a16b2009-02-27 06:44:11 +00005717 // FIXME: This diagnostic isn't actually visible because the location is in
5718 // a system header!
Chris Lattner78502cf2007-08-31 21:49:13 +00005719 if (NumComponents != 1)
Chris Lattnerf490e152008-11-19 05:27:50 +00005720 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
5721 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005722
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005723 if (!Dependent) {
Eli Friedman8469bc72009-05-03 21:22:18 +00005724 bool DidWarnAboutNonPOD = false;
Mike Stump11289f42009-09-09 15:08:12 +00005725
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005726 // FIXME: Dependent case loses a lot of information here. And probably
5727 // leaks like a sieve.
5728 for (unsigned i = 0; i != NumComponents; ++i) {
5729 const OffsetOfComponent &OC = CompPtr[i];
5730 if (OC.isBrackets) {
5731 // Offset of an array sub-field. TODO: Should we allow vector elements?
5732 const ArrayType *AT = Context.getAsArrayType(Res->getType());
5733 if (!AT) {
5734 Res->Destroy(Context);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005735 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
5736 << Res->getType());
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005737 }
5738
5739 // FIXME: C++: Verify that operator[] isn't overloaded.
5740
Eli Friedman988a16b2009-02-27 06:44:11 +00005741 // Promote the array so it looks more like a normal array subscript
5742 // expression.
5743 DefaultFunctionArrayConversion(Res);
5744
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005745 // C99 6.5.2.1p1
5746 Expr *Idx = static_cast<Expr*>(OC.U.E);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005747 // FIXME: Leaks Res
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005748 if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType())
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005749 return ExprError(Diag(Idx->getLocStart(),
Chris Lattner003af242009-04-25 22:50:55 +00005750 diag::err_typecheck_subscript_not_integer)
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005751 << Idx->getSourceRange());
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005752
5753 Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(),
5754 OC.LocEnd);
5755 continue;
Chris Lattnerf17bd422007-08-30 17:45:32 +00005756 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005757
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005758 const RecordType *RC = Res->getType()->getAs<RecordType>();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005759 if (!RC) {
5760 Res->Destroy(Context);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005761 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
5762 << Res->getType());
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005763 }
Chris Lattner98dbf0a2007-08-30 17:59:59 +00005764
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005765 // Get the decl corresponding to this.
5766 RecordDecl *RD = RC->getDecl();
Anders Carlsson2bbb86b2009-05-01 23:20:30 +00005767 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
Anders Carlsson38ebcaa2009-05-02 18:36:10 +00005768 if (!CRD->isPOD() && !DidWarnAboutNonPOD) {
Anders Carlsson8b98d022009-05-02 17:45:47 +00005769 ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type)
5770 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
5771 << Res->getType());
Anders Carlsson38ebcaa2009-05-02 18:36:10 +00005772 DidWarnAboutNonPOD = true;
5773 }
Anders Carlsson2bbb86b2009-05-01 23:20:30 +00005774 }
Mike Stump11289f42009-09-09 15:08:12 +00005775
John McCall9f3059a2009-10-09 21:13:30 +00005776 LookupResult R;
5777 LookupQualifiedName(R, RD, OC.U.IdentInfo, LookupMemberName);
5778
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005779 FieldDecl *MemberDecl
John McCall9f3059a2009-10-09 21:13:30 +00005780 = dyn_cast_or_null<FieldDecl>(R.getAsSingleDecl(Context));
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005781 // FIXME: Leaks Res
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005782 if (!MemberDecl)
Douglas Gregore40876a2009-10-13 21:16:44 +00005783 return ExprError(Diag(BuiltinLoc, diag::err_no_member)
5784 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, OC.LocEnd));
Mike Stump4e1f26a2009-02-19 03:04:26 +00005785
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005786 // FIXME: C++: Verify that MemberDecl isn't a static field.
5787 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedman64fc3c62009-04-26 20:50:44 +00005788 if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) {
Anders Carlsson3cbc8592009-05-01 19:30:39 +00005789 Res = BuildAnonymousStructUnionMemberReference(
5790 SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>();
Eli Friedman64fc3c62009-04-26 20:50:44 +00005791 } else {
5792 // MemberDecl->getType() doesn't get the right qualifiers, but it
5793 // doesn't matter here.
5794 Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd,
5795 MemberDecl->getType().getNonReferenceType());
5796 }
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005797 }
Chris Lattnerf17bd422007-08-30 17:45:32 +00005798 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005799
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005800 return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf,
5801 Context.getSizeType(), BuiltinLoc));
Chris Lattnerf17bd422007-08-30 17:45:32 +00005802}
5803
5804
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005805Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
5806 TypeTy *arg1,TypeTy *arg2,
5807 SourceLocation RPLoc) {
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00005808 // FIXME: Preserve type source info.
5809 QualType argT1 = GetTypeFromParser(arg1);
5810 QualType argT2 = GetTypeFromParser(arg2);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005811
Steve Naroff78864672007-08-01 22:05:33 +00005812 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
Mike Stump4e1f26a2009-02-19 03:04:26 +00005813
Douglas Gregorf907cbf2009-05-19 22:28:02 +00005814 if (getLangOptions().CPlusPlus) {
5815 Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus)
5816 << SourceRange(BuiltinLoc, RPLoc);
5817 return ExprError();
5818 }
5819
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005820 return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc,
5821 argT1, argT2, RPLoc));
Steve Naroff78864672007-08-01 22:05:33 +00005822}
5823
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005824Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
5825 ExprArg cond,
5826 ExprArg expr1, ExprArg expr2,
5827 SourceLocation RPLoc) {
5828 Expr *CondExpr = static_cast<Expr*>(cond.get());
5829 Expr *LHSExpr = static_cast<Expr*>(expr1.get());
5830 Expr *RHSExpr = static_cast<Expr*>(expr2.get());
Mike Stump4e1f26a2009-02-19 03:04:26 +00005831
Steve Naroff9efdabc2007-08-03 21:21:27 +00005832 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
5833
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005834 QualType resType;
Douglas Gregor56751b52009-09-25 04:25:58 +00005835 bool ValueDependent = false;
Douglas Gregor0df91122009-05-19 22:43:30 +00005836 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005837 resType = Context.DependentTy;
Douglas Gregor56751b52009-09-25 04:25:58 +00005838 ValueDependent = true;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005839 } else {
5840 // The conditional expression is required to be a constant expression.
5841 llvm::APSInt condEval(32);
5842 SourceLocation ExpLoc;
5843 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005844 return ExprError(Diag(ExpLoc,
5845 diag::err_typecheck_choose_expr_requires_constant)
5846 << CondExpr->getSourceRange());
Steve Naroff9efdabc2007-08-03 21:21:27 +00005847
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005848 // If the condition is > zero, then the AST type is the same as the LSHExpr.
5849 resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType();
Douglas Gregor56751b52009-09-25 04:25:58 +00005850 ValueDependent = condEval.getZExtValue() ? LHSExpr->isValueDependent()
5851 : RHSExpr->isValueDependent();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005852 }
5853
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005854 cond.release(); expr1.release(); expr2.release();
5855 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
Douglas Gregor56751b52009-09-25 04:25:58 +00005856 resType, RPLoc,
5857 resType->isDependentType(),
5858 ValueDependent));
Steve Naroff9efdabc2007-08-03 21:21:27 +00005859}
5860
Steve Naroffc540d662008-09-03 18:15:37 +00005861//===----------------------------------------------------------------------===//
5862// Clang Extensions.
5863//===----------------------------------------------------------------------===//
5864
5865/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005866void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Steve Naroffc540d662008-09-03 18:15:37 +00005867 // Analyze block parameters.
5868 BlockSemaInfo *BSI = new BlockSemaInfo();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005869
Steve Naroffc540d662008-09-03 18:15:37 +00005870 // Add BSI to CurBlock.
5871 BSI->PrevBlockInfo = CurBlock;
5872 CurBlock = BSI;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005873
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00005874 BSI->ReturnType = QualType();
Steve Naroffc540d662008-09-03 18:15:37 +00005875 BSI->TheScope = BlockScope;
Mike Stumpa6703322009-02-19 22:01:56 +00005876 BSI->hasBlockDeclRefExprs = false;
Daniel Dunbarb9a68612009-07-29 01:59:17 +00005877 BSI->hasPrototype = false;
Chris Lattner45542ea2009-04-19 05:28:12 +00005878 BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking;
5879 CurFunctionNeedsScopeChecking = false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005880
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005881 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc);
Douglas Gregor91f84212008-12-11 16:49:14 +00005882 PushDeclContext(BlockScope, BSI->TheDecl);
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005883}
5884
Mike Stump82f071f2009-02-04 22:31:32 +00005885void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpf70bcf72009-05-07 18:43:07 +00005886 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
Mike Stump82f071f2009-02-04 22:31:32 +00005887
5888 if (ParamInfo.getNumTypeObjects() == 0
5889 || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) {
Douglas Gregor758a8692009-06-17 21:51:59 +00005890 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Mike Stump82f071f2009-02-04 22:31:32 +00005891 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5892
Mike Stumpd456c482009-04-28 01:10:27 +00005893 if (T->isArrayType()) {
5894 Diag(ParamInfo.getSourceRange().getBegin(),
5895 diag::err_block_returns_array);
5896 return;
5897 }
5898
Mike Stump82f071f2009-02-04 22:31:32 +00005899 // The parameter list is optional, if there was none, assume ().
5900 if (!T->isFunctionType())
5901 T = Context.getFunctionType(T, NULL, 0, 0, 0);
5902
5903 CurBlock->hasPrototype = true;
5904 CurBlock->isVariadic = false;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00005905 // Check for a valid sentinel attribute on this block.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00005906 if (CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Mike Stump11289f42009-09-09 15:08:12 +00005907 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00005908 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00005909 // FIXME: remove the attribute.
5910 }
John McCall9dd450b2009-09-21 23:43:11 +00005911 QualType RetTy = T.getTypePtr()->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00005912
Chris Lattner6de05082009-04-11 19:27:54 +00005913 // Do not allow returning a objc interface by-value.
5914 if (RetTy->isObjCInterfaceType()) {
5915 Diag(ParamInfo.getSourceRange().getBegin(),
5916 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5917 return;
5918 }
Mike Stump82f071f2009-02-04 22:31:32 +00005919 return;
5920 }
5921
Steve Naroffc540d662008-09-03 18:15:37 +00005922 // Analyze arguments to block.
5923 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function &&
5924 "Not a function declarator!");
5925 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005926
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005927 CurBlock->hasPrototype = FTI.hasPrototype;
5928 CurBlock->isVariadic = true;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005929
Steve Naroffc540d662008-09-03 18:15:37 +00005930 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
5931 // no arguments, not a function that takes a single void argument.
5932 if (FTI.hasPrototype &&
5933 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattner83f095c2009-03-28 19:18:32 +00005934 (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&&
5935 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) {
Steve Naroffc540d662008-09-03 18:15:37 +00005936 // empty arg list, don't push any params.
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005937 CurBlock->isVariadic = false;
Steve Naroffc540d662008-09-03 18:15:37 +00005938 } else if (FTI.hasPrototype) {
5939 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
Chris Lattner83f095c2009-03-28 19:18:32 +00005940 CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>());
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005941 CurBlock->isVariadic = FTI.isVariadic;
Steve Naroffc540d662008-09-03 18:15:37 +00005942 }
Jay Foad7d0479f2009-05-21 09:52:38 +00005943 CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(),
Chris Lattner6de05082009-04-11 19:27:54 +00005944 CurBlock->Params.size());
Fariborz Jahanian960910a2009-05-19 17:08:59 +00005945 CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic);
Douglas Gregor758a8692009-06-17 21:51:59 +00005946 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005947 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
5948 E = CurBlock->TheDecl->param_end(); AI != E; ++AI)
5949 // If this has an identifier, add it to the scope stack.
5950 if ((*AI)->getIdentifier())
5951 PushOnScopeChains(*AI, CurBlock->TheScope);
Chris Lattner6de05082009-04-11 19:27:54 +00005952
Fariborz Jahanian6607b212009-05-14 20:53:39 +00005953 // Check for a valid sentinel attribute on this block.
Mike Stump11289f42009-09-09 15:08:12 +00005954 if (!CurBlock->isVariadic &&
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00005955 CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Mike Stump11289f42009-09-09 15:08:12 +00005956 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00005957 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00005958 // FIXME: remove the attribute.
5959 }
Mike Stump11289f42009-09-09 15:08:12 +00005960
Chris Lattner6de05082009-04-11 19:27:54 +00005961 // Analyze the return type.
5962 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
John McCall9dd450b2009-09-21 23:43:11 +00005963 QualType RetTy = T->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00005964
Chris Lattner6de05082009-04-11 19:27:54 +00005965 // Do not allow returning a objc interface by-value.
5966 if (RetTy->isObjCInterfaceType()) {
5967 Diag(ParamInfo.getSourceRange().getBegin(),
5968 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5969 } else if (!RetTy->isDependentType())
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00005970 CurBlock->ReturnType = RetTy;
Steve Naroffc540d662008-09-03 18:15:37 +00005971}
5972
5973/// ActOnBlockError - If there is an error parsing a block, this callback
5974/// is invoked to pop the information about the block from the action impl.
5975void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
5976 // Ensure that CurBlock is deleted.
5977 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005978
Chris Lattner45542ea2009-04-19 05:28:12 +00005979 CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking;
5980
Steve Naroffc540d662008-09-03 18:15:37 +00005981 // Pop off CurBlock, handle nested blocks.
Chris Lattner41b86942009-04-21 22:38:46 +00005982 PopDeclContext();
Steve Naroffc540d662008-09-03 18:15:37 +00005983 CurBlock = CurBlock->PrevBlockInfo;
Steve Naroffc540d662008-09-03 18:15:37 +00005984 // FIXME: Delete the ParmVarDecl objects as well???
Steve Naroffc540d662008-09-03 18:15:37 +00005985}
5986
5987/// ActOnBlockStmtExpr - This is called when the body of a block statement
5988/// literal was successfully completed. ^(int x){...}
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005989Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
5990 StmtArg body, Scope *CurScope) {
Chris Lattner9eac9312009-03-27 04:18:06 +00005991 // If blocks are disabled, emit an error.
5992 if (!LangOpts.Blocks)
5993 Diag(CaretLoc, diag::err_blocks_disable);
Mike Stump11289f42009-09-09 15:08:12 +00005994
Steve Naroffc540d662008-09-03 18:15:37 +00005995 // Ensure that CurBlock is deleted.
5996 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock);
Steve Naroffc540d662008-09-03 18:15:37 +00005997
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005998 PopDeclContext();
5999
Steve Naroffc540d662008-09-03 18:15:37 +00006000 // Pop off CurBlock, handle nested blocks.
6001 CurBlock = CurBlock->PrevBlockInfo;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006002
Steve Naroffc540d662008-09-03 18:15:37 +00006003 QualType RetTy = Context.VoidTy;
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00006004 if (!BSI->ReturnType.isNull())
6005 RetTy = BSI->ReturnType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006006
Steve Naroffc540d662008-09-03 18:15:37 +00006007 llvm::SmallVector<QualType, 8> ArgTypes;
6008 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i)
6009 ArgTypes.push_back(BSI->Params[i]->getType());
Mike Stump4e1f26a2009-02-19 03:04:26 +00006010
Mike Stump3bf1ab42009-07-28 22:04:01 +00006011 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>();
Steve Naroffc540d662008-09-03 18:15:37 +00006012 QualType BlockTy;
6013 if (!BSI->hasPrototype)
Mike Stump3bf1ab42009-07-28 22:04:01 +00006014 BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0,
6015 NoReturn);
Steve Naroffc540d662008-09-03 18:15:37 +00006016 else
Jay Foad7d0479f2009-05-21 09:52:38 +00006017 BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(),
Mike Stump3bf1ab42009-07-28 22:04:01 +00006018 BSI->isVariadic, 0, false, false, 0, 0,
6019 NoReturn);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006020
Eli Friedmanba961a92009-03-23 00:24:07 +00006021 // FIXME: Check that return/parameter types are complete/non-abstract
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006022 DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end());
Steve Naroffc540d662008-09-03 18:15:37 +00006023 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006024
Chris Lattner45542ea2009-04-19 05:28:12 +00006025 // If needed, diagnose invalid gotos and switches in the block.
6026 if (CurFunctionNeedsScopeChecking)
6027 DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get()));
6028 CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking;
Mike Stump11289f42009-09-09 15:08:12 +00006029
Anders Carlssonb781bcd2009-05-01 19:49:17 +00006030 BSI->TheDecl->setBody(body.takeAs<CompoundStmt>());
Mike Stump3bf1ab42009-07-28 22:04:01 +00006031 CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody());
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006032 return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy,
6033 BSI->hasBlockDeclRefExprs));
Steve Naroffc540d662008-09-03 18:15:37 +00006034}
6035
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006036Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
6037 ExprArg expr, TypeTy *type,
6038 SourceLocation RPLoc) {
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00006039 QualType T = GetTypeFromParser(type);
Chris Lattner56382aa2009-04-05 15:49:53 +00006040 Expr *E = static_cast<Expr*>(expr.get());
6041 Expr *OrigExpr = E;
Mike Stump11289f42009-09-09 15:08:12 +00006042
Anders Carlsson7e13ab82007-10-15 20:28:48 +00006043 InitBuiltinVaListType();
Eli Friedman121ba0c2008-08-09 23:32:40 +00006044
6045 // Get the va_list type
6046 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedmane2cad652009-05-16 12:46:54 +00006047 if (VaListType->isArrayType()) {
6048 // Deal with implicit array decay; for example, on x86-64,
6049 // va_list is an array, but it's supposed to decay to
6050 // a pointer for va_arg.
Eli Friedman121ba0c2008-08-09 23:32:40 +00006051 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedmane2cad652009-05-16 12:46:54 +00006052 // Make sure the input expression also decays appropriately.
6053 UsualUnaryConversions(E);
6054 } else {
6055 // Otherwise, the va_list argument must be an l-value because
6056 // it is modified by va_arg.
Mike Stump11289f42009-09-09 15:08:12 +00006057 if (!E->isTypeDependent() &&
Douglas Gregorad3150c2009-05-19 23:10:31 +00006058 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedmane2cad652009-05-16 12:46:54 +00006059 return ExprError();
6060 }
Eli Friedman121ba0c2008-08-09 23:32:40 +00006061
Douglas Gregorad3150c2009-05-19 23:10:31 +00006062 if (!E->isTypeDependent() &&
6063 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006064 return ExprError(Diag(E->getLocStart(),
6065 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattner56382aa2009-04-05 15:49:53 +00006066 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner3f5cd772009-04-05 00:59:53 +00006067 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006068
Eli Friedmanba961a92009-03-23 00:24:07 +00006069 // FIXME: Check that type is complete/non-abstract
Anders Carlsson7e13ab82007-10-15 20:28:48 +00006070 // FIXME: Warn if a non-POD type is passed in.
Mike Stump4e1f26a2009-02-19 03:04:26 +00006071
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006072 expr.release();
6073 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(),
6074 RPLoc));
Anders Carlsson7e13ab82007-10-15 20:28:48 +00006075}
6076
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006077Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregor3be4b122008-11-29 04:51:27 +00006078 // The type of __null will be int or long, depending on the size of
6079 // pointers on the target.
6080 QualType Ty;
6081 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth())
6082 Ty = Context.IntTy;
6083 else
6084 Ty = Context.LongTy;
6085
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006086 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregor3be4b122008-11-29 04:51:27 +00006087}
6088
Chris Lattner9bad62c2008-01-04 18:04:52 +00006089bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
6090 SourceLocation Loc,
6091 QualType DstType, QualType SrcType,
6092 Expr *SrcExpr, const char *Flavor) {
6093 // Decode the result (notice that AST's are still created for extensions).
6094 bool isInvalid = false;
6095 unsigned DiagKind;
6096 switch (ConvTy) {
6097 default: assert(0 && "Unknown conversion type");
6098 case Compatible: return false;
Chris Lattner940cfeb2008-01-04 18:22:42 +00006099 case PointerToInt:
Chris Lattner9bad62c2008-01-04 18:04:52 +00006100 DiagKind = diag::ext_typecheck_convert_pointer_int;
6101 break;
Chris Lattner940cfeb2008-01-04 18:22:42 +00006102 case IntToPointer:
6103 DiagKind = diag::ext_typecheck_convert_int_pointer;
6104 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006105 case IncompatiblePointer:
6106 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
6107 break;
Eli Friedman80160bd2009-03-22 23:59:44 +00006108 case IncompatiblePointerSign:
6109 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
6110 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006111 case FunctionVoidPointer:
6112 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
6113 break;
6114 case CompatiblePointerDiscardsQualifiers:
Douglas Gregoraa1e21d2008-09-12 00:47:35 +00006115 // If the qualifiers lost were because we were applying the
6116 // (deprecated) C++ conversion from a string literal to a char*
6117 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
6118 // Ideally, this check would be performed in
6119 // CheckPointerTypesForAssignment. However, that would require a
6120 // bit of refactoring (so that the second argument is an
6121 // expression, rather than a type), which should be done as part
6122 // of a larger effort to fix CheckPointerTypesForAssignment for
6123 // C++ semantics.
6124 if (getLangOptions().CPlusPlus &&
6125 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
6126 return false;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006127 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
6128 break;
Steve Naroff081c7422008-09-04 15:10:53 +00006129 case IntToBlockPointer:
6130 DiagKind = diag::err_int_to_block_pointer;
6131 break;
6132 case IncompatibleBlockPointer:
Mike Stumpd79b5a82009-04-21 22:51:42 +00006133 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff081c7422008-09-04 15:10:53 +00006134 break;
Steve Naroff8afa9892008-10-14 22:18:38 +00006135 case IncompatibleObjCQualifiedId:
Mike Stump4e1f26a2009-02-19 03:04:26 +00006136 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff8afa9892008-10-14 22:18:38 +00006137 // it can give a more specific diagnostic.
6138 DiagKind = diag::warn_incompatible_qualified_id;
6139 break;
Anders Carlssondb5a9b62009-01-30 23:17:46 +00006140 case IncompatibleVectors:
6141 DiagKind = diag::warn_incompatible_vectors;
6142 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006143 case Incompatible:
6144 DiagKind = diag::err_typecheck_convert_incompatible;
6145 isInvalid = true;
6146 break;
6147 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006148
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00006149 Diag(Loc, DiagKind) << DstType << SrcType << Flavor
6150 << SrcExpr->getSourceRange();
Chris Lattner9bad62c2008-01-04 18:04:52 +00006151 return isInvalid;
6152}
Anders Carlssone54e8a12008-11-30 19:50:32 +00006153
Chris Lattnerc71d08b2009-04-25 21:59:05 +00006154bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){
Eli Friedmanbb967cc2009-04-25 22:26:58 +00006155 llvm::APSInt ICEResult;
6156 if (E->isIntegerConstantExpr(ICEResult, Context)) {
6157 if (Result)
6158 *Result = ICEResult;
6159 return false;
6160 }
6161
Anders Carlssone54e8a12008-11-30 19:50:32 +00006162 Expr::EvalResult EvalResult;
6163
Mike Stump4e1f26a2009-02-19 03:04:26 +00006164 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
Anders Carlssone54e8a12008-11-30 19:50:32 +00006165 EvalResult.HasSideEffects) {
6166 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
6167
6168 if (EvalResult.Diag) {
6169 // We only show the note if it's not the usual "invalid subexpression"
6170 // or if it's actually in a subexpression.
6171 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
6172 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
6173 Diag(EvalResult.DiagLoc, EvalResult.Diag);
6174 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006175
Anders Carlssone54e8a12008-11-30 19:50:32 +00006176 return true;
6177 }
6178
Eli Friedmanbb967cc2009-04-25 22:26:58 +00006179 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
6180 E->getSourceRange();
Anders Carlssone54e8a12008-11-30 19:50:32 +00006181
Eli Friedmanbb967cc2009-04-25 22:26:58 +00006182 if (EvalResult.Diag &&
6183 Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored)
6184 Diag(EvalResult.DiagLoc, EvalResult.Diag);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006185
Anders Carlssone54e8a12008-11-30 19:50:32 +00006186 if (Result)
6187 *Result = EvalResult.Val.getInt();
6188 return false;
6189}
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006190
Mike Stump11289f42009-09-09 15:08:12 +00006191Sema::ExpressionEvaluationContext
6192Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) {
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006193 // Introduce a new set of potentially referenced declarations to the stack.
6194 if (NewContext == PotentiallyPotentiallyEvaluated)
6195 PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls());
Mike Stump11289f42009-09-09 15:08:12 +00006196
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006197 std::swap(ExprEvalContext, NewContext);
6198 return NewContext;
6199}
6200
Mike Stump11289f42009-09-09 15:08:12 +00006201void
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006202Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext,
6203 ExpressionEvaluationContext NewContext) {
6204 ExprEvalContext = NewContext;
6205
6206 if (OldContext == PotentiallyPotentiallyEvaluated) {
6207 // Mark any remaining declarations in the current position of the stack
6208 // as "referenced". If they were not meant to be referenced, semantic
6209 // analysis would have eliminated them (e.g., in ActOnCXXTypeId).
6210 PotentiallyReferencedDecls RemainingDecls;
6211 RemainingDecls.swap(PotentiallyReferencedDeclStack.back());
6212 PotentiallyReferencedDeclStack.pop_back();
Mike Stump11289f42009-09-09 15:08:12 +00006213
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006214 for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(),
6215 IEnd = RemainingDecls.end();
6216 I != IEnd; ++I)
6217 MarkDeclarationReferenced(I->first, I->second);
6218 }
6219}
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006220
6221/// \brief Note that the given declaration was referenced in the source code.
6222///
6223/// This routine should be invoke whenever a given declaration is referenced
6224/// in the source code, and where that reference occurred. If this declaration
6225/// reference means that the the declaration is used (C++ [basic.def.odr]p2,
6226/// C99 6.9p3), then the declaration will be marked as used.
6227///
6228/// \param Loc the location where the declaration was referenced.
6229///
6230/// \param D the declaration that has been referenced by the source code.
6231void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) {
6232 assert(D && "No declaration?");
Mike Stump11289f42009-09-09 15:08:12 +00006233
Douglas Gregor77b50e12009-06-22 23:06:13 +00006234 if (D->isUsed())
6235 return;
Mike Stump11289f42009-09-09 15:08:12 +00006236
Douglas Gregor3beaf9b2009-10-08 21:35:42 +00006237 // Mark a parameter or variable declaration "used", regardless of whether we're in a
6238 // template or not. The reason for this is that unevaluated expressions
6239 // (e.g. (void)sizeof()) constitute a use for warning purposes (-Wunused-variables and
6240 // -Wunused-parameters)
6241 if (isa<ParmVarDecl>(D) ||
6242 (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod()))
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006243 D->setUsed(true);
Mike Stump11289f42009-09-09 15:08:12 +00006244
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006245 // Do not mark anything as "used" within a dependent context; wait for
6246 // an instantiation.
6247 if (CurContext->isDependentContext())
6248 return;
Mike Stump11289f42009-09-09 15:08:12 +00006249
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006250 switch (ExprEvalContext) {
6251 case Unevaluated:
6252 // We are in an expression that is not potentially evaluated; do nothing.
6253 return;
Mike Stump11289f42009-09-09 15:08:12 +00006254
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006255 case PotentiallyEvaluated:
6256 // We are in a potentially-evaluated expression, so this declaration is
6257 // "used"; handle this below.
6258 break;
Mike Stump11289f42009-09-09 15:08:12 +00006259
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006260 case PotentiallyPotentiallyEvaluated:
6261 // We are in an expression that may be potentially evaluated; queue this
6262 // declaration reference until we know whether the expression is
6263 // potentially evaluated.
6264 PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D));
6265 return;
6266 }
Mike Stump11289f42009-09-09 15:08:12 +00006267
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006268 // Note that this declaration has been used.
Fariborz Jahanian3a363432009-06-22 17:30:33 +00006269 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Fariborz Jahanian477d2422009-06-22 23:34:40 +00006270 unsigned TypeQuals;
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00006271 if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) {
6272 if (!Constructor->isUsed())
6273 DefineImplicitDefaultConstructor(Loc, Constructor);
Mike Stump11289f42009-09-09 15:08:12 +00006274 } else if (Constructor->isImplicit() &&
Mike Stump12b8ce12009-08-04 21:02:39 +00006275 Constructor->isCopyConstructor(Context, TypeQuals)) {
Fariborz Jahanian477d2422009-06-22 23:34:40 +00006276 if (!Constructor->isUsed())
6277 DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals);
6278 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00006279 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
6280 if (Destructor->isImplicit() && !Destructor->isUsed())
6281 DefineImplicitDestructor(Loc, Destructor);
Mike Stump11289f42009-09-09 15:08:12 +00006282
Fariborz Jahanian41f79272009-06-25 21:45:19 +00006283 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) {
6284 if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
6285 MethodDecl->getOverloadedOperator() == OO_Equal) {
6286 if (!MethodDecl->isUsed())
6287 DefineImplicitOverloadedAssign(Loc, MethodDecl);
6288 }
6289 }
Fariborz Jahanian49796cc72009-06-24 22:09:44 +00006290 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00006291 // Implicit instantiation of function templates and member functions of
Douglas Gregor4adbc6d2009-06-26 00:10:03 +00006292 // class templates.
Douglas Gregor06db9f52009-10-12 20:18:28 +00006293 if (!Function->getBody() &&
6294 Function->getTemplateSpecializationKind()
6295 == TSK_ImplicitInstantiation) {
6296 bool AlreadyInstantiated = false;
6297 if (FunctionTemplateSpecializationInfo *SpecInfo
6298 = Function->getTemplateSpecializationInfo()) {
6299 if (SpecInfo->getPointOfInstantiation().isInvalid())
6300 SpecInfo->setPointOfInstantiation(Loc);
6301 else
6302 AlreadyInstantiated = true;
6303 } else if (MemberSpecializationInfo *MSInfo
6304 = Function->getMemberSpecializationInfo()) {
6305 if (MSInfo->getPointOfInstantiation().isInvalid())
6306 MSInfo->setPointOfInstantiation(Loc);
6307 else
6308 AlreadyInstantiated = true;
6309 }
6310
6311 if (!AlreadyInstantiated)
6312 PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc));
6313 }
6314
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006315 // FIXME: keep track of references to static functions
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006316 Function->setUsed(true);
6317 return;
Douglas Gregor77b50e12009-06-22 23:06:13 +00006318 }
Mike Stump11289f42009-09-09 15:08:12 +00006319
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006320 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Douglas Gregora6ef8f02009-07-24 20:34:43 +00006321 // Implicit instantiation of static data members of class templates.
Mike Stump11289f42009-09-09 15:08:12 +00006322 if (Var->isStaticDataMember() &&
Douglas Gregor06db9f52009-10-12 20:18:28 +00006323 Var->getInstantiatedFromStaticDataMember()) {
6324 MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
6325 assert(MSInfo && "Missing member specialization information?");
6326 if (MSInfo->getPointOfInstantiation().isInvalid() &&
6327 MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) {
6328 MSInfo->setPointOfInstantiation(Loc);
6329 PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc));
6330 }
6331 }
Mike Stump11289f42009-09-09 15:08:12 +00006332
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006333 // FIXME: keep track of references to static data?
Douglas Gregora6ef8f02009-07-24 20:34:43 +00006334
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006335 D->setUsed(true);
Douglas Gregora6ef8f02009-07-24 20:34:43 +00006336 return;
Sam Weinigbae69142009-09-11 03:29:30 +00006337 }
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006338}
Anders Carlsson7f84ed92009-10-09 23:51:55 +00006339
6340bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
6341 CallExpr *CE, FunctionDecl *FD) {
6342 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
6343 return false;
6344
6345 PartialDiagnostic Note =
6346 FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here)
6347 << FD->getDeclName() : PDiag();
6348 SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation();
6349
6350 if (RequireCompleteType(Loc, ReturnType,
6351 FD ?
6352 PDiag(diag::err_call_function_incomplete_return)
6353 << CE->getSourceRange() << FD->getDeclName() :
6354 PDiag(diag::err_call_incomplete_return)
6355 << CE->getSourceRange(),
6356 std::make_pair(NoteLoc, Note)))
6357 return true;
6358
6359 return false;
6360}
6361
John McCalld5707ab2009-10-12 21:59:07 +00006362// Diagnose the common s/=/==/ typo. Note that adding parentheses
6363// will prevent this condition from triggering, which is what we want.
6364void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
6365 SourceLocation Loc;
6366
6367 if (isa<BinaryOperator>(E)) {
6368 BinaryOperator *Op = cast<BinaryOperator>(E);
6369 if (Op->getOpcode() != BinaryOperator::Assign)
6370 return;
6371
6372 Loc = Op->getOperatorLoc();
6373 } else if (isa<CXXOperatorCallExpr>(E)) {
6374 CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(E);
6375 if (Op->getOperator() != OO_Equal)
6376 return;
6377
6378 Loc = Op->getOperatorLoc();
6379 } else {
6380 // Not an assignment.
6381 return;
6382 }
6383
John McCalld5707ab2009-10-12 21:59:07 +00006384 SourceLocation Open = E->getSourceRange().getBegin();
John McCalle724ae92009-10-12 22:25:59 +00006385 SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd());
John McCalld5707ab2009-10-12 21:59:07 +00006386
6387 Diag(Loc, diag::warn_condition_is_assignment)
6388 << E->getSourceRange()
6389 << CodeModificationHint::CreateInsertion(Open, "(")
6390 << CodeModificationHint::CreateInsertion(Close, ")");
6391}
6392
6393bool Sema::CheckBooleanCondition(Expr *&E, SourceLocation Loc) {
6394 DiagnoseAssignmentAsCondition(E);
6395
6396 if (!E->isTypeDependent()) {
6397 DefaultFunctionArrayConversion(E);
6398
6399 QualType T = E->getType();
6400
6401 if (getLangOptions().CPlusPlus) {
6402 if (CheckCXXBooleanCondition(E)) // C++ 6.4p4
6403 return true;
6404 } else if (!T->isScalarType()) { // C99 6.8.4.1p1
6405 Diag(Loc, diag::err_typecheck_statement_requires_scalar)
6406 << T << E->getSourceRange();
6407 return true;
6408 }
6409 }
6410
6411 return false;
6412}